pixel-react 1.6.7 → 1.6.9

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.
Files changed (881) hide show
  1. package/.prettierrc.js +13 -13
  2. package/.storybook/main.ts +26 -26
  3. package/.storybook/preview-head.html +2 -2
  4. package/.storybook/preview.ts +26 -26
  5. package/.yarnrc.yml +1 -1
  6. package/README.md +75 -75
  7. package/index.scss +4 -4
  8. package/lib/components/AddVariables/types.d.ts +67 -3
  9. package/lib/components/AppHeader/types.d.ts +2 -0
  10. package/lib/components/Charts/BarChart/BarChart.d.ts +1 -0
  11. package/lib/components/Charts/DashboardDonutChart/types.d.ts +6 -0
  12. package/lib/components/CreateVariable/types.d.ts +2 -2
  13. package/lib/components/FileDropzone/RadioFilePreview.d.ts +4 -0
  14. package/lib/components/FileDropzone/types.d.ts +61 -0
  15. package/lib/components/InputWithDropdown/InputWithDropdown.d.ts +1 -1
  16. package/lib/components/MenuOption/types.d.ts +3 -2
  17. package/lib/components/Modal/types.d.ts +1 -1
  18. package/lib/components/PopUpModal/types.d.ts +2 -1
  19. package/lib/components/Search/Search.d.ts +1 -1
  20. package/lib/components/Search/types.d.ts +4 -0
  21. package/lib/components/Table/Types.d.ts +1 -1
  22. package/lib/components/Tabs/types.d.ts +1 -0
  23. package/lib/index.css +1 -0
  24. package/lib/index.d.ts +168 -31
  25. package/lib/index.esm.css +1 -0
  26. package/lib/index.esm.js +567 -327
  27. package/lib/index.esm.js.map +1 -1
  28. package/lib/index.js +568 -326
  29. package/lib/index.js.map +1 -1
  30. package/lib/tsconfig.tsbuildinfo +1 -1
  31. package/lib/utils/FormatString/FormatString.d.ts +1 -0
  32. package/package.json +81 -81
  33. package/rollup.config.mjs +67 -67
  34. package/src/StyleGuide/ColorPalette/ColorPalette.scss +62 -62
  35. package/src/StyleGuide/ColorPalette/ColorPalette.stories.tsx +16 -16
  36. package/src/StyleGuide/ColorPalette/ColorPalette.tsx +67 -67
  37. package/src/StyleGuide/ColorPalette/colorPaletteList.ts +294 -279
  38. package/src/StyleGuide/ColorPalette/index.ts +1 -1
  39. package/src/StyleGuide/ColorPalette/types.ts +19 -19
  40. package/src/StyleGuide/Typography/Typography.scss +99 -99
  41. package/src/StyleGuide/Typography/Typography.stories.tsx +16 -16
  42. package/src/StyleGuide/Typography/Typography.tsx +60 -60
  43. package/src/StyleGuide/Typography/TypographyList.ts +3 -3
  44. package/src/StyleGuide/Typography/types.ts +9 -9
  45. package/src/assets/Themes/BaseTheme.scss +281 -279
  46. package/src/assets/Themes/DarkTheme.scss +288 -286
  47. package/src/assets/Themes/Theme.scss +16 -16
  48. package/src/assets/icons/Arrow.svg +4 -4
  49. package/src/assets/icons/Header_preset.svg +18 -18
  50. package/src/assets/icons/accordion_header_icon.svg +10 -10
  51. package/src/assets/icons/active_license_icon.svg +3 -3
  52. package/src/assets/icons/add_archive.svg +9 -9
  53. package/src/assets/icons/add_label_icon.svg +3 -3
  54. package/src/assets/icons/add_locator.svg +4 -4
  55. package/src/assets/icons/add_testcase.svg +3 -3
  56. package/src/assets/icons/add_user.svg +9 -9
  57. package/src/assets/icons/add_variable.svg +11 -11
  58. package/src/assets/icons/add_variable_icon.svg +4 -4
  59. package/src/assets/icons/alert.svg +17 -17
  60. package/src/assets/icons/all_borders.svg +3 -3
  61. package/src/assets/icons/all_projects.svg +3 -3
  62. package/src/assets/icons/android.svg +9 -9
  63. package/src/assets/icons/android_icon.svg +6 -6
  64. package/src/assets/icons/apk_file_type.svg +4 -4
  65. package/src/assets/icons/app_switch.svg +11 -11
  66. package/src/assets/icons/arrow_down.svg +3 -3
  67. package/src/assets/icons/arrow_right.svg +4 -4
  68. package/src/assets/icons/arrow_up.svg +3 -3
  69. package/src/assets/icons/arrows_down_icon.svg +3 -3
  70. package/src/assets/icons/arrows_right_icon.svg +10 -10
  71. package/src/assets/icons/arrows_top_icon.svg +3 -3
  72. package/src/assets/icons/attachment_icon.svg +3 -3
  73. package/src/assets/icons/authorization_icon.svg +4 -4
  74. package/src/assets/icons/automation_testcase.svg +4 -4
  75. package/src/assets/icons/back_icon.svg +3 -3
  76. package/src/assets/icons/backward.svg +10 -10
  77. package/src/assets/icons/backward_icon.svg +3 -3
  78. package/src/assets/icons/beautify_icon.svg +3 -3
  79. package/src/assets/icons/bold.svg +3 -3
  80. package/src/assets/icons/border_bottom.svg +3 -3
  81. package/src/assets/icons/border_left.svg +3 -3
  82. package/src/assets/icons/border_right.svg +3 -3
  83. package/src/assets/icons/border_top.svg +3 -3
  84. package/src/assets/icons/browser_stack.svg +9 -9
  85. package/src/assets/icons/browserstack_icon.svg +24 -24
  86. package/src/assets/icons/calendar_icon.svg +9 -9
  87. package/src/assets/icons/capture_icon.svg +2 -2
  88. package/src/assets/icons/check_mark.svg +3 -3
  89. package/src/assets/icons/chrome.svg +12 -12
  90. package/src/assets/icons/client_profile.svg +4 -4
  91. package/src/assets/icons/clock_icon.svg +11 -11
  92. package/src/assets/icons/clone_icon.svg +3 -3
  93. package/src/assets/icons/close_pill.svg +3 -3
  94. package/src/assets/icons/cloud_server_host_icon.svg +3 -3
  95. package/src/assets/icons/collapse-icon.svg +6 -6
  96. package/src/assets/icons/compressed_file_type.svg +4 -4
  97. package/src/assets/icons/continue_without_sign.svg +3 -3
  98. package/src/assets/icons/copy-icon.svg +3 -3
  99. package/src/assets/icons/csv_file_type.svg +4 -4
  100. package/src/assets/icons/dashboard_icon.svg +31 -31
  101. package/src/assets/icons/dashboard_mobile_icon.svg +47 -47
  102. package/src/assets/icons/dashboard_web_icon.svg +9 -9
  103. package/src/assets/icons/data_provider.svg +8 -8
  104. package/src/assets/icons/dataset_list.svg +3 -3
  105. package/src/assets/icons/delete.svg +3 -3
  106. package/src/assets/icons/delete_info.svg +17 -17
  107. package/src/assets/icons/details.svg +3 -3
  108. package/src/assets/icons/double_underline.svg +5 -5
  109. package/src/assets/icons/download-icon.svg +3 -3
  110. package/src/assets/icons/download_file_icon.svg +3 -3
  111. package/src/assets/icons/download_icon.svg +4 -4
  112. package/src/assets/icons/drag_icon.svg +4 -4
  113. package/src/assets/icons/drawer_maximize.svg +6 -6
  114. package/src/assets/icons/dropzone_icon.svg +18 -18
  115. package/src/assets/icons/edge.svg +30 -30
  116. package/src/assets/icons/edit_icon.svg +5 -5
  117. package/src/assets/icons/error.svg +17 -17
  118. package/src/assets/icons/excel_corner_menu.svg +3 -3
  119. package/src/assets/icons/executions_icon.svg +3 -3
  120. package/src/assets/icons/expand-icon.svg +6 -6
  121. package/src/assets/icons/export.svg +4 -4
  122. package/src/assets/icons/export_collection_icon.svg +13 -13
  123. package/src/assets/icons/eye_closed.svg +3 -3
  124. package/src/assets/icons/eye_open_icon.svg +3 -3
  125. package/src/assets/icons/failed_status_icon.svg +12 -12
  126. package/src/assets/icons/file.svg +11 -11
  127. package/src/assets/icons/fill_color.svg +7 -7
  128. package/src/assets/icons/filter.svg +4 -4
  129. package/src/assets/icons/fire_fox.svg +106 -106
  130. package/src/assets/icons/fireflink_finder_logo.svg +7 -7
  131. package/src/assets/icons/fireflink_icon.svg +4 -4
  132. package/src/assets/icons/fireflink_logo.svg +13 -13
  133. package/src/assets/icons/fireflink_platform.svg +4 -4
  134. package/src/assets/icons/firefox.svg +84 -84
  135. package/src/assets/icons/flaky_status_icon.svg +12 -12
  136. package/src/assets/icons/formate_painter.svg +5 -5
  137. package/src/assets/icons/formula_icon.svg +3 -3
  138. package/src/assets/icons/forward.svg +3 -3
  139. package/src/assets/icons/forward_icon.svg +3 -3
  140. package/src/assets/icons/full_access_icon.svg +4 -4
  141. package/src/assets/icons/gif_file_type.svg +4 -4
  142. package/src/assets/icons/global_variable_icon.svg +4 -4
  143. package/src/assets/icons/hamburger_menu.svg +3 -3
  144. package/src/assets/icons/hide_access_icon.svg +3 -3
  145. package/src/assets/icons/hide_icon.svg +9 -9
  146. package/src/assets/icons/history_icon.svg +19 -19
  147. package/src/assets/icons/html_file_type.svg +4 -4
  148. package/src/assets/icons/impactList.svg +6 -6
  149. package/src/assets/icons/import.svg +4 -4
  150. package/src/assets/icons/import_icon.svg +4 -0
  151. package/src/assets/icons/info.svg +17 -17
  152. package/src/assets/icons/info_icon.svg +5 -5
  153. package/src/assets/icons/info_user.svg +5 -5
  154. package/src/assets/icons/internet_explorer.svg +3 -3
  155. package/src/assets/icons/ipk_file_type.svg +4 -4
  156. package/src/assets/icons/italic.svg +3 -3
  157. package/src/assets/icons/jira.svg +3 -3
  158. package/src/assets/icons/jpg_file_type.svg +4 -4
  159. package/src/assets/icons/json_file_type.svg +4 -4
  160. package/src/assets/icons/label_icon.svg +8 -8
  161. package/src/assets/icons/label_plus.svg +3 -3
  162. package/src/assets/icons/lambda_icon.svg +3 -3
  163. package/src/assets/icons/left_arrow_icon.svg +3 -3
  164. package/src/assets/icons/license_expired.svg +20 -20
  165. package/src/assets/icons/license_info.svg +28 -28
  166. package/src/assets/icons/license_warning.svg +10 -10
  167. package/src/assets/icons/link_expired.svg +186 -186
  168. package/src/assets/icons/linked_defects.svg +11 -11
  169. package/src/assets/icons/linux.svg +42 -42
  170. package/src/assets/icons/local.svg +3 -3
  171. package/src/assets/icons/local_variable_icon.svg +4 -4
  172. package/src/assets/icons/logo.svg +17 -17
  173. package/src/assets/icons/mac.svg +9 -9
  174. package/src/assets/icons/machine_disable_icon.svg +18 -18
  175. package/src/assets/icons/machine_enable_icon.svg +10 -10
  176. package/src/assets/icons/manage_apps.svg +3 -3
  177. package/src/assets/icons/manual_locator.svg +7 -7
  178. package/src/assets/icons/manual_testcase.svg +3 -3
  179. package/src/assets/icons/maximize_icon.svg +5 -5
  180. package/src/assets/icons/maximize_script.svg +12 -12
  181. package/src/assets/icons/maximize_tree.svg +3 -3
  182. package/src/assets/icons/minimize_script.svg +5 -5
  183. package/src/assets/icons/mobile_icon.svg +3 -3
  184. package/src/assets/icons/moon_stars.svg +10 -10
  185. package/src/assets/icons/more.svg +10 -10
  186. package/src/assets/icons/move_icon.svg +5 -5
  187. package/src/assets/icons/ms_dynamic.svg +4 -4
  188. package/src/assets/icons/ms_dynamic_icon.svg +15 -15
  189. package/src/assets/icons/nlp_help_icon.svg +3 -3
  190. package/src/assets/icons/no_access_icon.svg +4 -4
  191. package/src/assets/icons/no_border.svg +3 -3
  192. package/src/assets/icons/no_data.svg +13 -13
  193. package/src/assets/icons/no_license_found.svg +22 -22
  194. package/src/assets/icons/notification_icon.svg +3 -3
  195. package/src/assets/icons/opera.svg +9 -9
  196. package/src/assets/icons/passed_status_icon.svg +12 -12
  197. package/src/assets/icons/pdf_file_type.svg +4 -4
  198. package/src/assets/icons/plus_icon.svg +11 -11
  199. package/src/assets/icons/plus_user_icon.svg +3 -3
  200. package/src/assets/icons/png_file_type.svg +4 -4
  201. package/src/assets/icons/project_env_variable_icon.svg +4 -4
  202. package/src/assets/icons/project_status_icon.svg +10 -10
  203. package/src/assets/icons/quick_run_setting_icon.svg +5 -5
  204. package/src/assets/icons/refresh-icon.svg +4 -4
  205. package/src/assets/icons/refresh_icon.svg +4 -4
  206. package/src/assets/icons/reload.svg +3 -3
  207. package/src/assets/icons/remove.svg +11 -11
  208. package/src/assets/icons/remove_user.svg +3 -3
  209. package/src/assets/icons/replace.svg +11 -11
  210. package/src/assets/icons/replace_file.svg +13 -13
  211. package/src/assets/icons/replace_icon.svg +6 -6
  212. package/src/assets/icons/reset-link.svg +52 -52
  213. package/src/assets/icons/right_arrow_icon.svg +4 -4
  214. package/src/assets/icons/rotate_icon.svg +10 -10
  215. package/src/assets/icons/run_automation_scripts_icon.svg +33 -33
  216. package/src/assets/icons/run_icon.svg +26 -26
  217. package/src/assets/icons/run_manual_testcase_icon.svg +4 -4
  218. package/src/assets/icons/safari.svg +93 -93
  219. package/src/assets/icons/safari_icon.svg +12 -12
  220. package/src/assets/icons/sales_force.svg +7 -7
  221. package/src/assets/icons/salesforce_icon.svg +14 -14
  222. package/src/assets/icons/sample_template_first.svg +29 -29
  223. package/src/assets/icons/sample_template_second.svg +47 -47
  224. package/src/assets/icons/sause_lab.svg +3 -3
  225. package/src/assets/icons/save_as_step.svg +3 -3
  226. package/src/assets/icons/search.svg +3 -3
  227. package/src/assets/icons/send_step.svg +4 -4
  228. package/src/assets/icons/skipped_status_icon.svg +12 -12
  229. package/src/assets/icons/standard_template.svg +30 -30
  230. package/src/assets/icons/strike_through.svg +3 -3
  231. package/src/assets/icons/success.svg +17 -17
  232. package/src/assets/icons/suites_icon.svg +3 -3
  233. package/src/assets/icons/sun_icon.svg +10 -10
  234. package/src/assets/icons/swipe_icon.svg +9 -9
  235. package/src/assets/icons/switch_license_icon.svg +123 -123
  236. package/src/assets/icons/system_warning.svg +61 -61
  237. package/src/assets/icons/tap_icon.svg +3 -3
  238. package/src/assets/icons/text_align_center.svg +3 -3
  239. package/src/assets/icons/text_align_left.svg +3 -3
  240. package/src/assets/icons/text_align_right.svg +3 -3
  241. package/src/assets/icons/text_color.svg +3 -3
  242. package/src/assets/icons/tick_icon.svg +4 -4
  243. package/src/assets/icons/toast_close.svg +3 -3
  244. package/src/assets/icons/txt_file_type.svg +4 -4
  245. package/src/assets/icons/underline.svg +4 -4
  246. package/src/assets/icons/update_icon.svg +3 -3
  247. package/src/assets/icons/user_password_lock.svg +220 -220
  248. package/src/assets/icons/user_profile.svg +3 -3
  249. package/src/assets/icons/user_warning.svg +235 -235
  250. package/src/assets/icons/user_with_system.svg +637 -637
  251. package/src/assets/icons/variable_icon.svg +4 -4
  252. package/src/assets/icons/vertical_separator.svg +3 -3
  253. package/src/assets/icons/view_access_icon.svg +4 -4
  254. package/src/assets/icons/view_icon.svg +3 -3
  255. package/src/assets/icons/warning.svg +17 -17
  256. package/src/assets/icons/warning_status_icon.svg +12 -12
  257. package/src/assets/icons/web&mobile_icon.svg +3 -3
  258. package/src/assets/icons/web_icon.svg +3 -3
  259. package/src/assets/icons/web_mobile_icon.svg +29 -29
  260. package/src/assets/icons/web_services_icon.svg +30 -30
  261. package/src/assets/icons/window_maximize.svg +3 -4
  262. package/src/assets/icons/window_minimize.svg +3 -3
  263. package/src/assets/icons/window_restore.svg +4 -0
  264. package/src/assets/icons/windows.svg +10 -10
  265. package/src/assets/icons/wrong_mark.svg +3 -3
  266. package/src/assets/icons/wswb_delete_icon.svg +3 -3
  267. package/src/assets/icons/wswb_plus_icon.svg +4 -4
  268. package/src/assets/icons/xls_file_type.svg +4 -4
  269. package/src/assets/icons/xlsx_file_type.svg +4 -4
  270. package/src/assets/icons/xml_file_type.svg +4 -4
  271. package/src/assets/styles/_colors.scss +151 -151
  272. package/src/assets/styles/_fonts.scss +45 -45
  273. package/src/assets/styles/_mixins.scss +21 -21
  274. package/src/assets/utils/functionUtils.ts +96 -96
  275. package/src/components/Accordion/Accordion.scss +46 -46
  276. package/src/components/Accordion/Accordion.stories.tsx +35 -35
  277. package/src/components/Accordion/Accordion.tsx +68 -68
  278. package/src/components/Accordion/index.ts +1 -1
  279. package/src/components/Accordion/types.ts +40 -40
  280. package/src/components/AddResourceButton/AddButton.scss +36 -36
  281. package/src/components/AddResourceButton/AddButton.stories.tsx +126 -126
  282. package/src/components/AddResourceButton/AddButton.tsx +121 -121
  283. package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +161 -161
  284. package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +38 -38
  285. package/src/components/AddResourceButton/index.ts +1 -1
  286. package/src/components/AddResourceButton/type.ts +92 -92
  287. package/src/components/AddVariables/AddVariables.scss +14 -14
  288. package/src/components/AddVariables/AddVariables.stories.tsx +82 -44
  289. package/src/components/AddVariables/AddVariables.tsx +129 -113
  290. package/src/components/AddVariables/index.ts +1 -1
  291. package/src/components/AddVariables/types.ts +103 -36
  292. package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +189 -189
  293. package/src/components/AllProjectsDropdown/AllProjectsDropdown.stories.tsx +117 -117
  294. package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +152 -152
  295. package/src/components/AllProjectsDropdown/types.ts +12 -12
  296. package/src/components/AppHeader/AppHeader.scss +215 -182
  297. package/src/components/AppHeader/AppHeader.stories.tsx +553 -425
  298. package/src/components/AppHeader/AppHeader.tsx +197 -198
  299. package/src/components/AppHeader/index.ts +1 -1
  300. package/src/components/AppHeader/types.ts +54 -52
  301. package/src/components/AttachImage/AttachImage.scss +76 -76
  302. package/src/components/AttachImage/AttachImage.stories.tsx +24 -24
  303. package/src/components/AttachImage/AttachImage.tsx +60 -60
  304. package/src/components/AttachImage/index.ts +2 -2
  305. package/src/components/AttachImage/types.ts +26 -26
  306. package/src/components/AttachmentButton/AttachmentButton.scss +9 -9
  307. package/src/components/AttachmentButton/AttachmentButton.stories.tsx +81 -81
  308. package/src/components/AttachmentButton/AttachmentButton.tsx +129 -129
  309. package/src/components/AttachmentButton/types.ts +13 -13
  310. package/src/components/Avatar/Avatar.scss +27 -27
  311. package/src/components/Avatar/Avatar.stories.tsx +76 -76
  312. package/src/components/Avatar/Avatar.tsx +41 -41
  313. package/src/components/Avatar/types.ts +35 -35
  314. package/src/components/Button/Button.scss +155 -155
  315. package/src/components/Button/Button.stories.tsx +81 -81
  316. package/src/components/Button/Button.tsx +73 -73
  317. package/src/components/Button/index.ts +1 -1
  318. package/src/components/Button/types.ts +69 -69
  319. package/src/components/Charts/BarChart/BarChart.scss +69 -66
  320. package/src/components/Charts/BarChart/BarChart.stories.tsx +67 -67
  321. package/src/components/Charts/BarChart/BarChart.tsx +342 -328
  322. package/src/components/Charts/BarChart/types.ts +12 -12
  323. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +164 -157
  324. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +55 -54
  325. package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +531 -502
  326. package/src/components/Charts/DashboardDonutChart/types.ts +58 -52
  327. package/src/components/Charts/DonutChart/DonutChart.scss +76 -76
  328. package/src/components/Charts/DonutChart/DonutChart.stories.tsx +30 -30
  329. package/src/components/Charts/DonutChart/DonutChart.tsx +246 -246
  330. package/src/components/Charts/DonutChart/index.ts +1 -1
  331. package/src/components/Charts/DonutChart/type.ts +23 -23
  332. package/src/components/Charts/IconRadialChart/IconRadialChart.scss +25 -25
  333. package/src/components/Charts/IconRadialChart/IconRadialChart.stories.tsx +51 -51
  334. package/src/components/Charts/IconRadialChart/IconRadialChart.tsx +173 -173
  335. package/src/components/Charts/IconRadialChart/types.ts +28 -28
  336. package/src/components/Charts/LineChart/LineChart.scss +92 -88
  337. package/src/components/Charts/LineChart/LineChart.stories.tsx +255 -255
  338. package/src/components/Charts/LineChart/LineChart.tsx +286 -282
  339. package/src/components/Charts/LineChart/index.ts +1 -1
  340. package/src/components/Charts/LineChart/types.ts +29 -29
  341. package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +86 -86
  342. package/src/components/Charts/MultiRadialChart/MultiRadialChart.stories.tsx +116 -116
  343. package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +292 -292
  344. package/src/components/Charts/MultiRadialChart/index.ts +1 -1
  345. package/src/components/Charts/MultiRadialChart/types.ts +25 -25
  346. package/src/components/Charts/PieChart/PieChart.scss +41 -41
  347. package/src/components/Charts/PieChart/PieChart.stories.tsx +46 -46
  348. package/src/components/Charts/PieChart/PieChart.tsx +192 -192
  349. package/src/components/Charts/PieChart/index.ts +1 -1
  350. package/src/components/Charts/PieChart/types.ts +28 -28
  351. package/src/components/Charts/RadialChart/RadialChart.scss +16 -16
  352. package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -36
  353. package/src/components/Charts/RadialChart/RadialChart.tsx +180 -180
  354. package/src/components/Charts/RadialChart/index.ts +1 -1
  355. package/src/components/Charts/RadialChart/types.ts +32 -32
  356. package/src/components/Checkbox/Checkbox.scss +146 -146
  357. package/src/components/Checkbox/Checkbox.stories.tsx +123 -123
  358. package/src/components/Checkbox/Checkbox.tsx +58 -58
  359. package/src/components/Checkbox/types.ts +34 -34
  360. package/src/components/Chip/Chip.scss +85 -85
  361. package/src/components/Chip/Chip.stories.tsx +116 -116
  362. package/src/components/Chip/Chip.tsx +35 -35
  363. package/src/components/Chip/index.ts +1 -1
  364. package/src/components/Chip/types.ts +19 -19
  365. package/src/components/Comment/Comments.scss +166 -166
  366. package/src/components/Comment/Comments.stories.tsx +212 -212
  367. package/src/components/Comment/Comments.tsx +51 -51
  368. package/src/components/Comment/comment/Comment.tsx +206 -206
  369. package/src/components/Comment/comment/useNode.ts +51 -51
  370. package/src/components/Comment/index.ts +1 -1
  371. package/src/components/Comment/type.ts +36 -36
  372. package/src/components/ConnectingBranch/BranchComponents/MachineInstances.tsx +128 -128
  373. package/src/components/ConnectingBranch/ConnectingBranch.scss +233 -233
  374. package/src/components/ConnectingBranch/ConnectingBranch.stories.tsx +21 -21
  375. package/src/components/ConnectingBranch/ConnectingBranch.tsx +182 -182
  376. package/src/components/ConnectingBranch/data.ts +137 -137
  377. package/src/components/ConnectingBranch/index.ts +1 -1
  378. package/src/components/ConnectingBranch/types.ts +21 -21
  379. package/src/components/CreateVariable/CreateVariableSlider.scss +18 -18
  380. package/src/components/CreateVariable/CreateVariableSlider.stories.tsx +66 -66
  381. package/src/components/CreateVariable/CreateVariableSlider.tsx +95 -95
  382. package/src/components/CreateVariable/index.ts +1 -1
  383. package/src/components/CreateVariable/types.ts +58 -58
  384. package/src/components/DatePicker/DatePicker.scss +413 -402
  385. package/src/components/DatePicker/DatePicker.stories.tsx +193 -174
  386. package/src/components/DatePicker/DatePicker.tsx +502 -451
  387. package/src/components/DatePicker/Timepicker.tsx +372 -372
  388. package/src/components/DatePicker/types.ts +105 -105
  389. package/src/components/DownloadClient/DownloadClient.scss +80 -80
  390. package/src/components/DownloadClient/DownloadClient.stories.tsx +26 -26
  391. package/src/components/DownloadClient/DownloadClient.tsx +81 -81
  392. package/src/components/DownloadClient/type.ts +40 -40
  393. package/src/components/DragAndDrop/DragAndDrop.d.ts +5 -5
  394. package/src/components/DragAndDrop/DragAndDrop.stories.tsx +25 -25
  395. package/src/components/DragAndDrop/DragAndDrop.ts +7 -7
  396. package/src/components/DragAndDrop/DragAndDropList.scss +69 -69
  397. package/src/components/DragAndDrop/DragAndDropList.tsx +151 -151
  398. package/src/components/Drawer/Drawer.scss +139 -139
  399. package/src/components/Drawer/Drawer.stories.tsx +155 -155
  400. package/src/components/Drawer/Drawer.tsx +232 -232
  401. package/src/components/Drawer/Types.ts +157 -157
  402. package/src/components/EditTextField/EditTextField.scss +97 -97
  403. package/src/components/EditTextField/EditTextField.stories.tsx +127 -127
  404. package/src/components/EditTextField/EditTextField.tsx +181 -181
  405. package/src/components/EditTextField/index.ts +1 -1
  406. package/src/components/EditTextField/types.ts +55 -55
  407. package/src/components/Editor/Editor.scss +56 -56
  408. package/src/components/Editor/Editor.stories.tsx +54 -54
  409. package/src/components/Editor/Editor.tsx +250 -250
  410. package/src/components/Editor/VariableDropdown.scss +27 -27
  411. package/src/components/Editor/VariableDropdown.tsx +57 -57
  412. package/src/components/Editor/constants.ts +180 -180
  413. package/src/components/Editor/types.ts +89 -89
  414. package/src/components/Excel/ColorBarSelector/ColorBarSelector.scss +15 -15
  415. package/src/components/Excel/ColorBarSelector/ColorBarSelector.tsx +43 -43
  416. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +27 -27
  417. package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +42 -42
  418. package/src/components/Excel/ExcelFile/ExcelFile.scss +68 -68
  419. package/src/components/Excel/ExcelFile/ExcelFile.tsx +491 -491
  420. package/src/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.tsx +131 -131
  421. package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +238 -238
  422. package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +168 -168
  423. package/src/components/Excel/ExcelFile/ExcelFileComponents/Copied.tsx +25 -25
  424. package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +56 -56
  425. package/src/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.tsx +37 -37
  426. package/src/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.tsx +85 -85
  427. package/src/components/Excel/ExcelFile/ExcelFileComponents/FloatingRect.tsx +31 -31
  428. package/src/components/Excel/ExcelFile/ExcelFileComponents/HeaderRow.tsx +5 -5
  429. package/src/components/Excel/ExcelFile/ExcelFileComponents/Row.tsx +5 -5
  430. package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +154 -154
  431. package/src/components/Excel/ExcelFile/ExcelFileComponents/Selected.tsx +32 -32
  432. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +146 -146
  433. package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +479 -479
  434. package/src/components/Excel/ExcelFile/ExcelFileComponents/Table.tsx +19 -19
  435. package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +548 -548
  436. package/src/components/Excel/ExcelFile/ExcelFileComponents/areModelsEqual.ts +18 -18
  437. package/src/components/Excel/ExcelFile/ExcelFileComponents/context.ts +12 -12
  438. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.ts +153 -153
  439. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.ts +31 -31
  440. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/index.ts +2 -2
  441. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.ts +152 -152
  442. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-hash.ts +10 -10
  443. package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-set.ts +69 -69
  444. package/src/components/Excel/ExcelFile/ExcelFileComponents/index.ts +49 -49
  445. package/src/components/Excel/ExcelFile/ExcelFileComponents/matrix.ts +382 -382
  446. package/src/components/Excel/ExcelFile/ExcelFileComponents/point-range.ts +82 -82
  447. package/src/components/Excel/ExcelFile/ExcelFileComponents/point.ts +15 -15
  448. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +673 -673
  449. package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +819 -819
  450. package/src/components/Excel/ExcelFile/ExcelFileComponents/selection.ts +257 -257
  451. package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +255 -255
  452. package/src/components/Excel/ExcelFile/ExcelFileComponents/typings/fast-formula-parser.d.ts +58 -58
  453. package/src/components/Excel/ExcelFile/ExcelFileComponents/use-dispatch.ts +8 -8
  454. package/src/components/Excel/ExcelFile/ExcelFileComponents/use-selector.ts +9 -9
  455. package/src/components/Excel/ExcelFile/ExcelFileComponents/util.ts +172 -172
  456. package/src/components/Excel/ExcelFile.stories.tsx +167 -167
  457. package/src/components/Excel/ExcelToolBar/ExcelToolBar.scss +96 -96
  458. package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +397 -397
  459. package/src/components/Excel/Types.ts +196 -196
  460. package/src/components/Excel/dataConversion.ts +173 -173
  461. package/src/components/Excel/index.ts +1 -1
  462. package/src/components/ExpandableMenu/ExpandableMenu.scss +110 -110
  463. package/src/components/ExpandableMenu/ExpandableMenu.stories.tsx +67 -67
  464. package/src/components/ExpandableMenu/ExpandableMenu.tsx +101 -101
  465. package/src/components/ExpandableMenu/index.ts +1 -1
  466. package/src/components/ExpandableMenu/types.ts +34 -34
  467. package/src/components/FF_Captcha/Recaptcha.scss +10 -10
  468. package/src/components/FF_Captcha/Recaptcha.tsx +40 -40
  469. package/src/components/FF_Captcha/captcha.stories.tsx +40 -40
  470. package/src/components/FF_Captcha/types.ts +22 -22
  471. package/src/components/FieldSet/FieldSet.scss +10 -10
  472. package/src/components/FieldSet/FieldSet.stories.tsx +104 -104
  473. package/src/components/FieldSet/FieldSet.tsx +29 -29
  474. package/src/components/FieldSet/index.ts +1 -1
  475. package/src/components/FieldSet/types.ts +8 -8
  476. package/src/components/FileDropzone/Dropzone.tsx +105 -57
  477. package/src/components/FileDropzone/FileDropzone.scss +163 -135
  478. package/src/components/FileDropzone/FileDropzone.stories.tsx +219 -98
  479. package/src/components/FileDropzone/FileDropzone.tsx +144 -111
  480. package/src/components/FileDropzone/FilePreview.tsx +77 -77
  481. package/src/components/FileDropzone/RadioFilePreview.tsx +76 -0
  482. package/src/components/FileDropzone/index.ts +1 -1
  483. package/src/components/FileDropzone/types.ts +199 -126
  484. package/src/components/Form/Form.d.ts +2 -2
  485. package/src/components/Form/Form.scss +158 -158
  486. package/src/components/Form/Form.stories.tsx +508 -508
  487. package/src/components/Form/Form.ts +2 -2
  488. package/src/components/Form/Forms.tsx +41 -41
  489. package/src/components/Form/validation.json +29 -29
  490. package/src/components/GridLayout/GridLayout.scss +69 -69
  491. package/src/components/GridLayout/GridLayout.stories.tsx +90 -90
  492. package/src/components/GridLayout/GridLayout.tsx +39 -39
  493. package/src/components/GridLayout/GridLayoutStory.scss +25 -25
  494. package/src/components/GridLayout/types.ts +84 -84
  495. package/src/components/HighlightText/HighlightText.scss +3 -3
  496. package/src/components/HighlightText/HighlightText.stories.tsx +22 -22
  497. package/src/components/HighlightText/HighlightText.tsx +33 -33
  498. package/src/components/HighlightText/index.ts +1 -1
  499. package/src/components/HighlightText/types.ts +4 -4
  500. package/src/components/Icon/Icon.stories.tsx +65 -65
  501. package/src/components/Icon/Icon.tsx +88 -88
  502. package/src/components/Icon/Icons.scss +50 -50
  503. package/src/components/Icon/iconList.ts +494 -489
  504. package/src/components/Icon/index.ts +1 -1
  505. package/src/components/Icon/types.ts +14 -14
  506. package/src/components/IconButton/IconButton.scss +54 -54
  507. package/src/components/IconButton/IconButton.stories.tsx +34 -34
  508. package/src/components/IconButton/IconButton.tsx +32 -32
  509. package/src/components/IconButton/index.ts +1 -1
  510. package/src/components/IconButton/types.ts +5 -5
  511. package/src/components/IconRadioGroup/IconRadioGroup.scss +64 -64
  512. package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +108 -108
  513. package/src/components/IconRadioGroup/IconRadioGroup.tsx +73 -73
  514. package/src/components/IconRadioGroup/index.ts +1 -1
  515. package/src/components/IconRadioGroup/type.ts +49 -49
  516. package/src/components/Input/Input.scss +171 -159
  517. package/src/components/Input/Input.stories.tsx +141 -141
  518. package/src/components/Input/Input.tsx +120 -114
  519. package/src/components/Input/types.ts +85 -85
  520. package/src/components/InputWithDropdown/InputWithDropdown.scss +220 -213
  521. package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +169 -169
  522. package/src/components/InputWithDropdown/InputWithDropdown.tsx +129 -122
  523. package/src/components/InputWithDropdown/index.ts +1 -1
  524. package/src/components/InputWithDropdown/types.ts +113 -113
  525. package/src/components/LabelEditTextField/LabelEditTextField.scss +86 -86
  526. package/src/components/LabelEditTextField/LabelEditTextField.stories.tsx +192 -192
  527. package/src/components/LabelEditTextField/LabelEditTextField.tsx +246 -246
  528. package/src/components/LabelEditTextField/index.ts +1 -1
  529. package/src/components/LabelEditTextField/types.ts +46 -46
  530. package/src/components/LazyLoad/LazyLoad.d.ts +3 -3
  531. package/src/components/LazyLoad/LazyLoad.stories.tsx +33 -33
  532. package/src/components/LazyLoad/LazyLoad.ts +2 -2
  533. package/src/components/LazyLoad/LazyLoading.tsx +19 -19
  534. package/src/components/LazyLoad/index.ts +1 -1
  535. package/src/components/MachineInputField/MachineInputField.scss +59 -59
  536. package/src/components/MachineInputField/MachineInputField.stories.tsx +32 -32
  537. package/src/components/MachineInputField/MachineInputField.tsx +87 -87
  538. package/src/components/MachineInputField/index.ts +1 -1
  539. package/src/components/MachineInputField/types.ts +13 -13
  540. package/src/components/MenuOption/MenuOption.scss +97 -97
  541. package/src/components/MenuOption/MenuOption.stories.tsx +158 -157
  542. package/src/components/MenuOption/MenuOption.tsx +219 -219
  543. package/src/components/MenuOption/types.ts +230 -228
  544. package/src/components/MiniModal/MiniModal.scss +170 -170
  545. package/src/components/MiniModal/MiniModal.stories.tsx +735 -735
  546. package/src/components/MiniModal/MiniModal.tsx +344 -344
  547. package/src/components/MiniModal/index.ts +1 -1
  548. package/src/components/MiniModal/types.ts +123 -123
  549. package/src/components/Modal/Modal.stories.tsx +70 -70
  550. package/src/components/Modal/Modal.tsx +100 -100
  551. package/src/components/Modal/index.tsx +1 -1
  552. package/src/components/Modal/modal.scss +51 -51
  553. package/src/components/Modal/types.ts +43 -43
  554. package/src/components/ModulesChip/ModuleChip.scss +33 -20
  555. package/src/components/ModulesChip/ModuleChip.stories.tsx +41 -41
  556. package/src/components/ModulesChip/ModuleChip.tsx +28 -31
  557. package/src/components/ModulesChip/types.ts +14 -14
  558. package/src/components/MultiSelect/Dropdown.scss +78 -78
  559. package/src/components/MultiSelect/Dropdown.tsx +142 -135
  560. package/src/components/MultiSelect/MultiSelect.scss +246 -246
  561. package/src/components/MultiSelect/MultiSelect.stories.tsx +290 -287
  562. package/src/components/MultiSelect/MultiSelect.tsx +483 -482
  563. package/src/components/MultiSelect/MultiSelectTypes.ts +47 -47
  564. package/src/components/MultiSelect/dropdownTypes.ts +19 -19
  565. package/src/components/MultiSelect/index.ts +1 -1
  566. package/src/components/NLPInput/NLPInput.scss +246 -246
  567. package/src/components/NLPInput/NlpInput.stories.tsx +136 -136
  568. package/src/components/NLPInput/NlpInput.tsx +374 -374
  569. package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +60 -60
  570. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +83 -83
  571. package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +180 -180
  572. package/src/components/NLPInput/index.ts +1 -1
  573. package/src/components/NLPInput/type.tsx +124 -124
  574. package/src/components/Paper/Paper.scss +13 -13
  575. package/src/components/Paper/Paper.stories.tsx +77 -77
  576. package/src/components/Paper/Paper.tsx +14 -14
  577. package/src/components/Paper/types.ts +19 -19
  578. package/src/components/PhoneInput/PhoneInput.d.ts +3 -3
  579. package/src/components/PhoneInput/PhoneInput.stories.tsx +95 -95
  580. package/src/components/PhoneInput/PhoneInput.tsx +90 -90
  581. package/src/components/PhoneInput/index.ts +1 -1
  582. package/src/components/PhoneInput/phoneInput.scss +3 -3
  583. package/src/components/PhoneInput/types.ts +10 -10
  584. package/src/components/PopUpModal/PopUpModal.scss +36 -36
  585. package/src/components/PopUpModal/PopUpModal.stories.tsx +67 -62
  586. package/src/components/PopUpModal/PopUpModal.tsx +87 -86
  587. package/src/components/PopUpModal/types.ts +16 -15
  588. package/src/components/RadioButton/RadioButton.scss +106 -106
  589. package/src/components/RadioButton/RadioButton.stories.tsx +43 -43
  590. package/src/components/RadioButton/RadioButton.tsx +41 -41
  591. package/src/components/RadioButton/index.ts +1 -1
  592. package/src/components/RadioButton/radioButtonTypes.tsx +62 -62
  593. package/src/components/RadioGroup/RadioGroup.scss +11 -11
  594. package/src/components/RadioGroup/RadioGroup.stories.tsx +150 -150
  595. package/src/components/RadioGroup/RadioGroup.tsx +49 -49
  596. package/src/components/RadioGroup/index.ts +1 -1
  597. package/src/components/RadioGroup/radioGroupTypes.tsx +96 -96
  598. package/src/components/Search/Search.scss +103 -103
  599. package/src/components/Search/Search.stories.tsx +45 -26
  600. package/src/components/Search/Search.tsx +130 -127
  601. package/src/components/Search/index.ts +1 -1
  602. package/src/components/Search/types.ts +19 -15
  603. package/src/components/Select/Select.scss +213 -213
  604. package/src/components/Select/Select.stories.tsx +355 -355
  605. package/src/components/Select/Select.tsx +278 -278
  606. package/src/components/Select/components/Dropdown.scss +61 -61
  607. package/src/components/Select/components/Dropdown.tsx +140 -140
  608. package/src/components/Select/components/types.ts +24 -24
  609. package/src/components/Select/index.ts +1 -1
  610. package/src/components/Select/types.ts +134 -134
  611. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +128 -128
  612. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +56 -56
  613. package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +167 -167
  614. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.scss +51 -51
  615. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.tsx +107 -107
  616. package/src/components/SequentialConnectingBranch/components/AddBrowserModal/types.ts +5 -5
  617. package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +190 -190
  618. package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +236 -236
  619. package/src/components/SequentialConnectingBranch/components/Branches/types.ts +25 -25
  620. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.scss +3 -3
  621. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +68 -68
  622. package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +17 -17
  623. package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.scss +31 -31
  624. package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.tsx +85 -85
  625. package/src/components/SequentialConnectingBranch/components/DatasetListModal/types.ts +4 -4
  626. package/src/components/SequentialConnectingBranch/index.ts +1 -1
  627. package/src/components/SequentialConnectingBranch/types.ts +60 -60
  628. package/src/components/StateDropdown/StateDropdown.stories.tsx +104 -104
  629. package/src/components/StateDropdown/StateDropdown.tsx +245 -245
  630. package/src/components/StateDropdown/StateDropdownTypes.tsx +27 -27
  631. package/src/components/StatusButton/StatusButton.scss +90 -90
  632. package/src/components/StatusButton/StatusButton.stories.tsx +91 -91
  633. package/src/components/StatusButton/StatusButton.tsx +46 -46
  634. package/src/components/StatusButton/index.ts +1 -1
  635. package/src/components/StatusButton/types.ts +45 -45
  636. package/src/components/StatusCard/StatusCard.scss +94 -94
  637. package/src/components/StatusCard/StatusCard.stories.tsx +58 -58
  638. package/src/components/StatusCard/StatusCard.tsx +49 -49
  639. package/src/components/StatusCard/index.ts +1 -1
  640. package/src/components/StatusCard/types.ts +10 -10
  641. package/src/components/Table/Table.scss +117 -116
  642. package/src/components/Table/Table.stories.tsx +373 -373
  643. package/src/components/Table/Table.tsx +178 -178
  644. package/src/components/Table/Types.ts +124 -124
  645. package/src/components/Table/index.ts +1 -1
  646. package/src/components/TableTree/Components/TableBody.tsx +35 -35
  647. package/src/components/TableTree/Components/TableCell.tsx +59 -59
  648. package/src/components/TableTree/Components/TableHead.tsx +39 -39
  649. package/src/components/TableTree/Components/TableRow.tsx +37 -37
  650. package/src/components/TableTree/TableTree.scss +205 -205
  651. package/src/components/TableTree/TableTree.stories.tsx +179 -179
  652. package/src/components/TableTree/TableTree.tsx +245 -245
  653. package/src/components/TableTree/TableTreeStories.scss +22 -22
  654. package/src/components/TableTree/Utils/getAllChildIds.ts +12 -12
  655. package/src/components/TableTree/data.ts +322 -322
  656. package/src/components/TableTree/index.ts +1 -1
  657. package/src/components/TableTree/types.ts +68 -68
  658. package/src/components/TableWithAccordion/TableWithAccordion.scss +54 -54
  659. package/src/components/TableWithAccordion/TableWithAccordion.stories.tsx +94 -94
  660. package/src/components/TableWithAccordion/TableWithAccordion.tsx +174 -174
  661. package/src/components/TableWithAccordion/data.ts +36 -36
  662. package/src/components/TableWithAccordion/types.ts +69 -69
  663. package/src/components/Tabs/Tabs.scss +132 -78
  664. package/src/components/Tabs/Tabs.stories.tsx +153 -134
  665. package/src/components/Tabs/Tabs.tsx +71 -62
  666. package/src/components/Tabs/index.ts +1 -1
  667. package/src/components/Tabs/types.ts +48 -48
  668. package/src/components/TextArea/Textarea.scss +144 -144
  669. package/src/components/TextArea/Textarea.stories.tsx +92 -92
  670. package/src/components/TextArea/Textarea.tsx +84 -84
  671. package/src/components/TextArea/Types.ts +82 -82
  672. package/src/components/TextArea/index.tsx +1 -1
  673. package/src/components/ThemeProvider/ThemeProvider.tsx +27 -27
  674. package/src/components/ThemeProvider/index.ts +1 -1
  675. package/src/components/ThemeProvider/types.ts +14 -14
  676. package/src/components/Toast/Toast.scss +121 -121
  677. package/src/components/Toast/Toast.stories.tsx +144 -144
  678. package/src/components/Toast/Toast.tsx +117 -117
  679. package/src/components/Toast/index.ts +1 -1
  680. package/src/components/Toast/types.ts +27 -27
  681. package/src/components/Toastify/Toastify.stories.tsx +71 -71
  682. package/src/components/Toastify/Toastify.tsx +94 -94
  683. package/src/components/Toastify/index.ts +1 -1
  684. package/src/components/Toastify/types.ts +9 -9
  685. package/src/components/Toggle/Toggle.scss +133 -133
  686. package/src/components/Toggle/Toggle.stories.tsx +132 -132
  687. package/src/components/Toggle/Toggle.tsx +96 -96
  688. package/src/components/Toggle/index.ts +1 -1
  689. package/src/components/Toggle/types.ts +43 -43
  690. package/src/components/ToggleSwitch/ToggleSwitch.scss +58 -58
  691. package/src/components/ToggleSwitch/ToggleSwitch.stories.tsx +52 -52
  692. package/src/components/ToggleSwitch/ToggleSwitch.tsx +30 -30
  693. package/src/components/ToggleSwitch/index.ts +1 -1
  694. package/src/components/Tooltip/Tooltip.scss +27 -27
  695. package/src/components/Tooltip/Tooltip.stories.tsx +98 -98
  696. package/src/components/Tooltip/Tooltip.tsx +194 -194
  697. package/src/components/Tooltip/index.ts +1 -1
  698. package/src/components/Tooltip/types.ts +66 -66
  699. package/src/components/Typography/Typography.scss +25 -25
  700. package/src/components/Typography/Typography.stories.tsx +59 -59
  701. package/src/components/Typography/Typography.tsx +41 -41
  702. package/src/components/Typography/index.ts +1 -1
  703. package/src/components/Typography/types.ts +57 -57
  704. package/src/components/VariableInput/VariableInput.scss +127 -127
  705. package/src/components/VariableInput/VariableInput.stories.tsx +32 -32
  706. package/src/components/VariableInput/VariableInput.tsx +352 -352
  707. package/src/components/VariableInput/types.ts +56 -56
  708. package/src/hooks/keyboardevents/useEscKeyEvent.tsx +30 -30
  709. package/src/hooks/useClickOutside.tsx +30 -30
  710. package/src/hooks/useFileDropzone.tsx +275 -274
  711. package/src/hooks/usePortalPosition.tsx +53 -53
  712. package/src/hooks/useTheme.tsx +13 -13
  713. package/src/index.ts +203 -200
  714. package/src/utils/FormatString/FormatString.stories.tsx +58 -0
  715. package/src/utils/FormatString/FormatString.tsx +41 -0
  716. package/src/utils/TableCell/TableCell.ts +16 -16
  717. package/src/utils/capitalize/capitalize.stories.tsx +44 -44
  718. package/src/utils/capitalize/capitalize.tsx +4 -4
  719. package/src/utils/checkDuplicates/CheckDuplicates.stories.tsx +40 -40
  720. package/src/utils/checkDuplicates/checkDuplicates.ts +13 -13
  721. package/src/utils/checkEmpty/checkEmpty.stories.tsx +34 -34
  722. package/src/utils/checkEmpty/checkEmpty.ts +24 -24
  723. package/src/utils/compareArrays/compareArrays.stories.tsx +62 -62
  724. package/src/utils/compareArrays/compareArrays.ts +31 -31
  725. package/src/utils/compareObjects/compareObjects.stories.tsx +51 -51
  726. package/src/utils/compareObjects/compareObjects.ts +53 -53
  727. package/src/utils/debounce/debounce.stories.tsx +81 -81
  728. package/src/utils/debounce/debounce.ts +28 -28
  729. package/src/utils/downloadFile/saveFileFromBlob.stories.tsx +62 -62
  730. package/src/utils/downloadFile/saveFileFromBlob.ts +40 -40
  731. package/src/utils/ffID/ffID.stories.tsx +35 -35
  732. package/src/utils/ffID/ffid.ts +7 -7
  733. package/src/utils/findAndInsert/findAndInsert.stories.tsx +119 -119
  734. package/src/utils/findAndInsert/findAndInsert.ts +49 -49
  735. package/src/utils/getEncryptedData/getEncryptedData.stories.tsx +55 -55
  736. package/src/utils/getEncryptedData/getEncryptedData.ts +8 -8
  737. package/src/utils/getExtension/getExtension.stories.tsx +23 -23
  738. package/src/utils/getExtension/getExtension.ts +28 -28
  739. package/src/utils/getSelectOptionValue/getSelectOptionValue.ts +31 -31
  740. package/src/utils/getSequentialPayload/getSequentialPayload.stories.tsx +72 -72
  741. package/src/utils/getSequentialPayload/getSequentialPayload.ts +16 -16
  742. package/src/utils/getSequentialPayload/types.ts +32 -32
  743. package/src/utils/throttle/throttle.stories.tsx +100 -100
  744. package/src/utils/throttle/throttle.ts +33 -33
  745. package/src/utils/truncateText/truncateText.stories.tsx +37 -37
  746. package/src/utils/truncateText/truncateText.ts +4 -4
  747. package/tsconfig.json +55 -55
  748. package/vite.config.js +14 -14
  749. package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +0 -6
  750. package/lib/StyleGuide/Typography/Typography.stories.d.ts +0 -6
  751. package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
  752. package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
  753. package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
  754. package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
  755. package/lib/components/Accordion/Accordion.stories.d.ts +0 -6
  756. package/lib/components/AddButton/AddButton.d.ts +0 -5
  757. package/lib/components/AddButton/AddButton.stories.d.ts +0 -6
  758. package/lib/components/AddButton/index.d.ts +0 -1
  759. package/lib/components/AddButton/types.d.ts +0 -4
  760. package/lib/components/AddResourceButton/AddButton.stories.d.ts +0 -8
  761. package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +0 -7
  762. package/lib/components/AppHeader/AppHeader.stories.d.ts +0 -7
  763. package/lib/components/AttachImage/AttachImage.stories.d.ts +0 -7
  764. package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +0 -9
  765. package/lib/components/Avatar/Avatar.stories.d.ts +0 -10
  766. package/lib/components/Button/Button.stories.d.ts +0 -13
  767. package/lib/components/Charts/BarChart/BarChart.stories.d.ts +0 -6
  768. package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +0 -7
  769. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +0 -6
  770. package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +0 -8
  771. package/lib/components/Charts/LineChart/LineChart.stories.d.ts +0 -7
  772. package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +0 -8
  773. package/lib/components/Charts/PieChart/PieChart.stories.d.ts +0 -7
  774. package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +0 -6
  775. package/lib/components/Checkbox/Checkbox.stories.d.ts +0 -8
  776. package/lib/components/Chip/Chip.stories.d.ts +0 -14
  777. package/lib/components/ConnectingBranch/ConnectingBranch.stories.d.ts +0 -6
  778. package/lib/components/DatePicker/DatePicker.stories.d.ts +0 -9
  779. package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +0 -6
  780. package/lib/components/Drawer/Drawer.stories.d.ts +0 -12
  781. package/lib/components/EditTextField/EditTextField.stories.d.ts +0 -10
  782. package/lib/components/Editor/Editor.stories.d.ts +0 -6
  783. package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +0 -4
  784. package/lib/components/Excel/ExcelFile.stories.d.ts +0 -6
  785. package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +0 -14
  786. package/lib/components/ExcelFile/ColorBarSelector/ColorBarSelector.d.ts +0 -8
  787. package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +0 -4
  788. package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +0 -7
  789. package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +0 -4
  790. package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +0 -5
  791. package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +0 -3
  792. package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +0 -5
  793. package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +0 -5
  794. package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +0 -8
  795. package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +0 -10
  796. package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +0 -3
  797. package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +0 -3
  798. package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +0 -5
  799. package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +0 -3
  800. package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +0 -80
  801. package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +0 -3
  802. package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +0 -174
  803. package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +0 -1
  804. package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +0 -8
  805. package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +0 -22
  806. package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +0 -17
  807. package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +0 -2
  808. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +0 -21
  809. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +0 -3
  810. package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +0 -24
  811. package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +0 -13
  812. package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +0 -67
  813. package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +0 -22
  814. package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +0 -11
  815. package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +0 -27
  816. package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +0 -95
  817. package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +0 -178
  818. package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +0 -3
  819. package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +0 -3
  820. package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +0 -44
  821. package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +0 -19
  822. package/lib/components/ExcelFile/ExcelFile.stories.d.ts +0 -6
  823. package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +0 -12
  824. package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +0 -15
  825. package/lib/components/ExcelFile/ImportExcelStyles.d.ts +0 -24
  826. package/lib/components/ExcelFile/Types.d.ts +0 -129
  827. package/lib/components/ExcelFile/index.d.ts +0 -1
  828. package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +0 -7
  829. package/lib/components/FF_Captcha/captcha.stories.d.ts +0 -8
  830. package/lib/components/FileDropzone/FileDropzone.stories.d.ts +0 -8
  831. package/lib/components/Form/Form.stories.d.ts +0 -7
  832. package/lib/components/GridLayout/GridLayout.stories.d.ts +0 -8
  833. package/lib/components/HighlightText/HighlightText.stories.d.ts +0 -6
  834. package/lib/components/Icon/Icon.stories.d.ts +0 -8
  835. package/lib/components/IconButton/IconButton.stories.d.ts +0 -7
  836. package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +0 -7
  837. package/lib/components/Input/Input.stories.d.ts +0 -9
  838. package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +0 -9
  839. package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +0 -13
  840. package/lib/components/LazyLoad/LazyLoad.stories.d.ts +0 -6
  841. package/lib/components/MachineInputField/MachineInputField.stories.d.ts +0 -6
  842. package/lib/components/MenuOption/MenuOption.stories.d.ts +0 -16
  843. package/lib/components/MiniModal/MiniModal.stories.d.ts +0 -10
  844. package/lib/components/Modal/Modal.stories.d.ts +0 -7
  845. package/lib/components/ModulesChip/ModuleChip.stories.d.ts +0 -6
  846. package/lib/components/MultiSelect/MultiSelect.stories.d.ts +0 -11
  847. package/lib/components/NLPInput/NlpInput.stories.d.ts +0 -7
  848. package/lib/components/Paper/Paper.stories.d.ts +0 -11
  849. package/lib/components/RadioButton/RadioButton.stories.d.ts +0 -10
  850. package/lib/components/RadioGroup/RadioGroup.stories.d.ts +0 -9
  851. package/lib/components/Search/Search.stories.d.ts +0 -6
  852. package/lib/components/Select/Select.stories.d.ts +0 -14
  853. package/lib/components/Select/components/Dropdown/Dropdown.d.ts +0 -4
  854. package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +0 -17
  855. package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +0 -6
  856. package/lib/components/StateDropdown/StateDropdown.stories.d.ts +0 -10
  857. package/lib/components/StatusButton/StatusButton.stories.d.ts +0 -14
  858. package/lib/components/StatusCard/StatusCard.stories.d.ts +0 -11
  859. package/lib/components/Table/Table.stories.d.ts +0 -13
  860. package/lib/components/TableTree/TableTree.stories.d.ts +0 -7
  861. package/lib/components/Tabs/Tabs.stories.d.ts +0 -9
  862. package/lib/components/TextArea/Textarea.stories.d.ts +0 -9
  863. package/lib/components/Toast/Toast.stories.d.ts +0 -6
  864. package/lib/components/Toastify/Toastify.stories.d.ts +0 -6
  865. package/lib/components/Toggle/Toggle.stories.d.ts +0 -12
  866. package/lib/components/Tooltip/Tooltip.stories.d.ts +0 -15
  867. package/lib/components/Typography/Typography.stories.d.ts +0 -10
  868. package/lib/components/VariableInput/VariableInput.stories.d.ts +0 -6
  869. package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +0 -6
  870. package/lib/utils/compareArrays/compareArrays.stories.d.ts +0 -6
  871. package/lib/utils/compareObjects/compareObjects.stories.d.ts +0 -6
  872. package/lib/utils/debounce/debounce.stories.d.ts +0 -6
  873. package/lib/utils/ffID/ffID.stories.d.ts +0 -6
  874. package/lib/utils/find/findAndInsert.d.ts +0 -7
  875. package/lib/utils/find/findAndInsert.stories.d.ts +0 -7
  876. package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +0 -7
  877. package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +0 -6
  878. package/lib/utils/getExtension/getExtension.stories.d.ts +0 -6
  879. package/lib/utils/getSequentialPayload/getSequentialPayload.stories.d.ts +0 -10
  880. package/lib/utils/throttle/throttle.stories.d.ts +0 -6
  881. package/lib/utils/truncateText/truncateText.stories.d.ts +0 -6
@@ -1,12 +1,12 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g clip-path="url(#clip0_5540_15038)">
3
- <path d="M16.6261 16.6281C20.2867 12.9675 20.2867 7.03249 16.6261 3.37187C12.9655 -0.288738 7.03044 -0.288737 3.36982 3.37187C-0.290788 7.03249 -0.290788 12.9675 3.36982 16.6281C7.03044 20.2887 12.9655 20.2887 16.6261 16.6281Z" fill="#809AFF"/>
4
- <path fill-rule="evenodd" clip-rule="evenodd" d="M19.2399 11.5904C18.5728 15.4935 15.4933 18.5729 11.5903 19.24L6.54334 14.1931C5.33564 13.1964 4.56592 11.6881 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604C11.688 4.56604 13.1963 5.33581 14.193 6.54346L19.2399 11.5904Z" fill="#3F5AC4"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M7.45635 10.3226L9.00393 11.7438C9.22967 11.9516 9.57908 11.9406 9.79139 11.7217L12.5523 9.07827C12.7769 8.86233 12.7837 8.50506 12.5676 8.28038C12.3516 8.05604 11.9946 8.04901 11.77 8.26495L9.3785 10.5547L8.22088 9.49166C7.99154 9.28065 7.63424 9.29545 7.42311 9.52502C7.21201 9.75436 7.22689 10.1114 7.45635 10.3226ZM9.99986 4.56604C13.001 4.56604 15.4338 6.99885 15.4338 9.99999C15.4338 13.0011 13.001 15.4339 9.99986 15.4339C6.99873 15.4339 4.56592 13.0011 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604Z" fill="white"/>
6
- </g>
7
- <defs>
8
- <clipPath id="clip0_5540_15038">
9
- <rect width="20" height="20" fill="white"/>
10
- </clipPath>
11
- </defs>
12
- </svg>
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_5540_15038)">
3
+ <path d="M16.6261 16.6281C20.2867 12.9675 20.2867 7.03249 16.6261 3.37187C12.9655 -0.288738 7.03044 -0.288737 3.36982 3.37187C-0.290788 7.03249 -0.290788 12.9675 3.36982 16.6281C7.03044 20.2887 12.9655 20.2887 16.6261 16.6281Z" fill="#809AFF"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.2399 11.5904C18.5728 15.4935 15.4933 18.5729 11.5903 19.24L6.54334 14.1931C5.33564 13.1964 4.56592 11.6881 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604C11.688 4.56604 13.1963 5.33581 14.193 6.54346L19.2399 11.5904Z" fill="#3F5AC4"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.45635 10.3226L9.00393 11.7438C9.22967 11.9516 9.57908 11.9406 9.79139 11.7217L12.5523 9.07827C12.7769 8.86233 12.7837 8.50506 12.5676 8.28038C12.3516 8.05604 11.9946 8.04901 11.77 8.26495L9.3785 10.5547L8.22088 9.49166C7.99154 9.28065 7.63424 9.29545 7.42311 9.52502C7.21201 9.75436 7.22689 10.1114 7.45635 10.3226ZM9.99986 4.56604C13.001 4.56604 15.4338 6.99885 15.4338 9.99999C15.4338 13.0011 13.001 15.4339 9.99986 15.4339C6.99873 15.4339 4.56592 13.0011 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604Z" fill="white"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_5540_15038">
9
+ <rect width="20" height="20" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M0 1.6C0 0.716352 0.691648 0 1.54483 0H11.8952C12.7484 0 13.44 0.716352 13.44 1.6V4C13.44 4.88365 12.7484 5.6 11.8952 5.6H1.54483C0.691648 5.6 0 4.88365 0 4V1.6Z" fill="currentColor"/>
3
- <path d="M5.43994 10.0104C5.43994 9.60702 5.71215 9.28 6.04794 9.28H7.87194C8.20773 9.28 8.47994 9.60702 8.47994 10.0104V15.2696C8.47994 15.673 8.20773 16 7.87194 16H6.04794C5.71215 16 5.43994 15.673 5.43994 15.2696V10.0104Z" fill="currentColor"/>
4
- <path d="M14.0801 3.44H14.5601C14.6484 3.44 14.7201 3.51164 14.7201 3.6V6.56C14.7201 6.64837 14.6484 6.72 14.5601 6.72H7.80011C7.00481 6.72 6.36011 7.36471 6.36011 8.16V8.64H7.64011V8.16C7.64011 8.07164 7.71174 8 7.80011 8H14.5601C15.3555 8 16.0001 7.3553 16.0001 6.56V3.6C16.0001 2.80471 15.3555 2.16 14.5601 2.16H14.0801V3.44Z" fill="currentColor"/>
5
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 1.6C0 0.716352 0.691648 0 1.54483 0H11.8952C12.7484 0 13.44 0.716352 13.44 1.6V4C13.44 4.88365 12.7484 5.6 11.8952 5.6H1.54483C0.691648 5.6 0 4.88365 0 4V1.6Z" fill="currentColor"/>
3
+ <path d="M5.43994 10.0104C5.43994 9.60702 5.71215 9.28 6.04794 9.28H7.87194C8.20773 9.28 8.47994 9.60702 8.47994 10.0104V15.2696C8.47994 15.673 8.20773 16 7.87194 16H6.04794C5.71215 16 5.43994 15.673 5.43994 15.2696V10.0104Z" fill="currentColor"/>
4
+ <path d="M14.0801 3.44H14.5601C14.6484 3.44 14.7201 3.51164 14.7201 3.6V6.56C14.7201 6.64837 14.6484 6.72 14.5601 6.72H7.80011C7.00481 6.72 6.36011 7.36471 6.36011 8.16V8.64H7.64011V8.16C7.64011 8.07164 7.71174 8 7.80011 8H14.5601C15.3555 8 16.0001 7.3553 16.0001 6.56V3.6C16.0001 2.80471 15.3555 2.16 14.5601 2.16H14.0801V3.44Z" fill="currentColor"/>
5
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M0.296875 0H15.7023V3.77095H12.9706V2.73171H6.14841L10.5613 8L6.14841 13.2683H12.9707V12.2291H15.7024V16H0.296875L6.99784 8L0.296875 0Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.296875 0H15.7023V3.77095H12.9706V2.73171H6.14841L10.5613 8L6.14841 13.2683H12.9707V12.2291H15.7024V16H0.296875L6.99784 8L0.296875 0Z" fill="currentColor"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M1.90479 8.57157H14.0953M14.0953 8.57157L9.52383 12.9797M14.0953 8.57157L9.52383 4.16341" stroke="currentcolor" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
3
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.90479 8.57157H14.0953M14.0953 8.57157L9.52383 12.9797M14.0953 8.57157L9.52383 4.16341" stroke="currentcolor" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M4.81324e-07 8.49429L11.5311 8.49429L7.67581 12.3559L9.33213 14L16 7.33333L9.33213 0.666667L7.68783 2.31076L11.5311 6.16757L6.84733e-07 6.16757L4.81324e-07 8.49429Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4.81324e-07 8.49429L11.5311 8.49429L7.67581 12.3559L9.33213 14L16 7.33333L9.33213 0.666667L7.68783 2.31076L11.5311 6.16757L6.84733e-07 6.16757L4.81324e-07 8.49429Z" fill="currentColor"/>
3
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M14.3023 1.71582C14.0651 1.7172 13.838 1.81245 13.6708 1.98077C13.6708 1.98077 9.91509 5.72922 7.63431 8.00848L6.02693 6.40109C5.67669 6.05175 5.1098 6.05175 4.75956 6.40109C4.41022 6.75132 4.41022 7.31822 4.75956 7.66845L7.00284 9.91173C7.35309 10.261 7.91995 10.261 8.2702 9.91173C10.3923 7.79041 14.9382 3.24814 14.9382 3.24814C15.2875 2.8979 15.2875 2.33101 14.9382 1.98077C14.7699 1.81138 14.5411 1.71603 14.3023 1.71582Z" fill="currentColor"/>
3
- <path d="M8.00172 1C4.14578 1.00003 1 4.14236 1 7.99832C1 11.8542 4.14578 15 8.00172 15C11.166 15 13.944 12.8676 14.763 9.8111C14.9214 9.22021 15 8.61007 15 7.99832C15 7.51546 14.6089 7.12387 14.1261 7.12323C13.6432 7.12387 13.2521 7.51546 13.2521 7.99832C13.2521 8.45716 13.1897 8.91556 13.071 9.35875C12.4548 11.6582 10.3823 13.2521 8.00172 13.2522C5.09163 13.2521 2.74786 10.9084 2.74786 7.99832C2.74786 5.08823 5.09162 2.74788 8.00172 2.74788C8.46061 2.74791 8.91551 2.81042 9.35875 2.92902C9.82555 3.05418 10.3054 2.77725 10.4306 2.31044C10.4307 2.31004 10.4308 2.3096 10.4309 2.30919C10.5561 1.84238 10.2791 1.36252 9.81234 1.23736C9.81192 1.23726 9.81152 1.23712 9.8111 1.23702C9.22011 1.07869 8.61357 1.00003 8.00172 1Z" fill="currentColor"/>
4
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.3023 1.71582C14.0651 1.7172 13.838 1.81245 13.6708 1.98077C13.6708 1.98077 9.91509 5.72922 7.63431 8.00848L6.02693 6.40109C5.67669 6.05175 5.1098 6.05175 4.75956 6.40109C4.41022 6.75132 4.41022 7.31822 4.75956 7.66845L7.00284 9.91173C7.35309 10.261 7.91995 10.261 8.2702 9.91173C10.3923 7.79041 14.9382 3.24814 14.9382 3.24814C15.2875 2.8979 15.2875 2.33101 14.9382 1.98077C14.7699 1.81138 14.5411 1.71603 14.3023 1.71582Z" fill="currentColor"/>
3
+ <path d="M8.00172 1C4.14578 1.00003 1 4.14236 1 7.99832C1 11.8542 4.14578 15 8.00172 15C11.166 15 13.944 12.8676 14.763 9.8111C14.9214 9.22021 15 8.61007 15 7.99832C15 7.51546 14.6089 7.12387 14.1261 7.12323C13.6432 7.12387 13.2521 7.51546 13.2521 7.99832C13.2521 8.45716 13.1897 8.91556 13.071 9.35875C12.4548 11.6582 10.3823 13.2521 8.00172 13.2522C5.09163 13.2521 2.74786 10.9084 2.74786 7.99832C2.74786 5.08823 5.09162 2.74788 8.00172 2.74788C8.46061 2.74791 8.91551 2.81042 9.35875 2.92902C9.82555 3.05418 10.3054 2.77725 10.4306 2.31044C10.4307 2.31004 10.4308 2.3096 10.4309 2.30919C10.5561 1.84238 10.2791 1.36252 9.81234 1.23736C9.81192 1.23726 9.81152 1.23712 9.8111 1.23702C9.22011 1.07869 8.61357 1.00003 8.00172 1Z" fill="currentColor"/>
4
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.87449 8.3684C5.01449 8.44507 5.12449 8.55673 5.20449 8.7034H6.00949C5.89949 8.35673 5.69949 8.0884 5.40949 7.8984C5.11949 7.70507 4.77783 7.6084 4.38449 7.6084C4.05116 7.6084 3.74783 7.68507 3.47449 7.8384C3.20449 7.9884 2.99116 8.20006 2.83449 8.4734C2.68116 8.7434 2.60449 9.05007 2.60449 9.3934C2.60449 9.73673 2.68116 10.0434 2.83449 10.3134C2.99116 10.5834 3.20449 10.7951 3.47449 10.9484C3.74783 11.0984 4.05283 11.1734 4.38949 11.1734C4.68949 11.1734 4.95949 11.1117 5.19949 10.9884C5.44283 10.8617 5.64116 10.6951 5.79449 10.4884C5.94783 10.2817 6.04783 10.0567 6.09449 9.8134V9.2034H4.20449V9.7384H5.40449C5.35116 9.99173 5.23949 10.1901 5.06949 10.3334C4.89949 10.4734 4.68116 10.5434 4.41449 10.5434C4.19783 10.5434 4.00783 10.4967 3.84449 10.4034C3.68116 10.3101 3.55283 10.1767 3.45949 10.0034C3.36949 9.83007 3.32449 9.62673 3.32449 9.3934C3.32449 9.16673 3.36949 8.96673 3.45949 8.7934C3.54949 8.62007 3.67449 8.48673 3.83449 8.3934C3.99449 8.30007 4.17783 8.2534 4.38449 8.2534C4.57116 8.2534 4.73449 8.29173 4.87449 8.3684ZM7.31238 11.1434V7.6534H6.61238V11.1434H7.31238ZM10.159 8.2184V7.6534H8.00398V11.1434H8.70398V9.6684H9.81898V9.1134H8.70398V8.2184H10.159Z" fill="white"/>
4
- </svg>
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M4.87449 8.3684C5.01449 8.44507 5.12449 8.55673 5.20449 8.7034H6.00949C5.89949 8.35673 5.69949 8.0884 5.40949 7.8984C5.11949 7.70507 4.77783 7.6084 4.38449 7.6084C4.05116 7.6084 3.74783 7.68507 3.47449 7.8384C3.20449 7.9884 2.99116 8.20006 2.83449 8.4734C2.68116 8.7434 2.60449 9.05007 2.60449 9.3934C2.60449 9.73673 2.68116 10.0434 2.83449 10.3134C2.99116 10.5834 3.20449 10.7951 3.47449 10.9484C3.74783 11.0984 4.05283 11.1734 4.38949 11.1734C4.68949 11.1734 4.95949 11.1117 5.19949 10.9884C5.44283 10.8617 5.64116 10.6951 5.79449 10.4884C5.94783 10.2817 6.04783 10.0567 6.09449 9.8134V9.2034H4.20449V9.7384H5.40449C5.35116 9.99173 5.23949 10.1901 5.06949 10.3334C4.89949 10.4734 4.68116 10.5434 4.41449 10.5434C4.19783 10.5434 4.00783 10.4967 3.84449 10.4034C3.68116 10.3101 3.55283 10.1767 3.45949 10.0034C3.36949 9.83007 3.32449 9.62673 3.32449 9.3934C3.32449 9.16673 3.36949 8.96673 3.45949 8.7934C3.54949 8.62007 3.67449 8.48673 3.83449 8.3934C3.99449 8.30007 4.17783 8.2534 4.38449 8.2534C4.57116 8.2534 4.73449 8.29173 4.87449 8.3684ZM7.31238 11.1434V7.6534H6.61238V11.1434H7.31238ZM10.159 8.2184V7.6534H8.00398V11.1434H8.70398V9.6684H9.81898V9.1134H8.70398V8.2184H10.159Z" fill="white"/>
4
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="20" height="16" rx="4" fill="#DED1E5"/>
3
- <path d="M8.44 7.096C8.312 6.86133 8.136 6.68267 7.912 6.56C7.688 6.43733 7.42667 6.376 7.128 6.376C6.79733 6.376 6.504 6.45067 6.248 6.6C5.992 6.74933 5.792 6.96267 5.648 7.24C5.504 7.51733 5.432 7.83733 5.432 8.2C5.432 8.57333 5.504 8.89867 5.648 9.176C5.79733 9.45333 6.00267 9.66667 6.264 9.816C6.52533 9.96533 6.82933 10.04 7.176 10.04C7.60267 10.04 7.952 9.928 8.224 9.704C8.496 9.47467 8.67467 9.15733 8.76 8.752H6.84V7.896H9.864V8.872C9.78933 9.26133 9.62933 9.62133 9.384 9.952C9.13867 10.2827 8.82133 10.5493 8.432 10.752C8.048 10.9493 7.616 11.048 7.136 11.048C6.59733 11.048 6.10933 10.928 5.672 10.688C5.24 10.4427 4.89867 10.104 4.648 9.672C4.40267 9.24 4.28 8.74933 4.28 8.2C4.28 7.65067 4.40267 7.16 4.648 6.728C4.89867 6.29067 5.24 5.952 5.672 5.712C6.10933 5.46667 6.59467 5.344 7.128 5.344C7.75733 5.344 8.304 5.49867 8.768 5.808C9.232 6.112 9.552 6.54133 9.728 7.096H8.44ZM15.7086 5.416L13.6606 11H12.3006L10.2526 5.416H11.4526L12.9886 9.856L14.5166 5.416H15.7086Z" fill="currentColor"/>
4
- </svg>
1
+ <svg width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="20" height="16" rx="4" fill="#DED1E5"/>
3
+ <path d="M8.44 7.096C8.312 6.86133 8.136 6.68267 7.912 6.56C7.688 6.43733 7.42667 6.376 7.128 6.376C6.79733 6.376 6.504 6.45067 6.248 6.6C5.992 6.74933 5.792 6.96267 5.648 7.24C5.504 7.51733 5.432 7.83733 5.432 8.2C5.432 8.57333 5.504 8.89867 5.648 9.176C5.79733 9.45333 6.00267 9.66667 6.264 9.816C6.52533 9.96533 6.82933 10.04 7.176 10.04C7.60267 10.04 7.952 9.928 8.224 9.704C8.496 9.47467 8.67467 9.15733 8.76 8.752H6.84V7.896H9.864V8.872C9.78933 9.26133 9.62933 9.62133 9.384 9.952C9.13867 10.2827 8.82133 10.5493 8.432 10.752C8.048 10.9493 7.616 11.048 7.136 11.048C6.59733 11.048 6.10933 10.928 5.672 10.688C5.24 10.4427 4.89867 10.104 4.648 9.672C4.40267 9.24 4.28 8.74933 4.28 8.2C4.28 7.65067 4.40267 7.16 4.648 6.728C4.89867 6.29067 5.24 5.952 5.672 5.712C6.10933 5.46667 6.59467 5.344 7.128 5.344C7.75733 5.344 8.304 5.49867 8.768 5.808C9.232 6.112 9.552 6.54133 9.728 7.096H8.44ZM15.7086 5.416L13.6606 11H12.3006L10.2526 5.416H11.4526L12.9886 9.856L14.5166 5.416H15.7086Z" fill="currentColor"/>
4
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M0 1.66683C0 0.930456 0.596955 0.333496 1.33333 0.333496H14.6667C15.403 0.333496 16 0.930456 16 1.66683C16 2.4032 15.403 3.00016 14.6667 3.00016H1.33333C0.596953 3.00016 0 2.4032 0 1.66683ZM0 7.00016C0 6.26379 0.596955 5.66683 1.33333 5.66683H9.33333C10.0697 5.66683 10.6667 6.26379 10.6667 7.00016C10.6667 7.73654 10.0697 8.3335 9.33333 8.3335H1.33333C0.596953 8.3335 0 7.73654 0 7.00016ZM1.33333 11.0002C0.596955 11.0002 0 11.5971 0 12.3335C0 13.0699 0.596953 13.6668 1.33333 13.6668H14.6667C15.403 13.6668 16 13.0699 16 12.3335C16 11.5971 15.403 11.0002 14.6667 11.0002H1.33333Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 1.66683C0 0.930456 0.596955 0.333496 1.33333 0.333496H14.6667C15.403 0.333496 16 0.930456 16 1.66683C16 2.4032 15.403 3.00016 14.6667 3.00016H1.33333C0.596953 3.00016 0 2.4032 0 1.66683ZM0 7.00016C0 6.26379 0.596955 5.66683 1.33333 5.66683H9.33333C10.0697 5.66683 10.6667 6.26379 10.6667 7.00016C10.6667 7.73654 10.0697 8.3335 9.33333 8.3335H1.33333C0.596953 8.3335 0 7.73654 0 7.00016ZM1.33333 11.0002C0.596955 11.0002 0 11.5971 0 12.3335C0 13.0699 0.596953 13.6668 1.33333 13.6668H14.6667C15.403 13.6668 16 13.0699 16 12.3335C16 11.5971 15.403 11.0002 14.6667 11.0002H1.33333Z" fill="currentColor"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3.71305 9.66393C5.04428 10.4052 6.50768 10.7961 7.94891 10.7961H8.00016C9.00732 10.803 10.0251 10.6177 11.002 10.2561L12.2785 11.5326C12.3944 11.6486 12.5463 11.7067 12.6985 11.7067C12.8507 11.7067 13.0026 11.6486 13.1185 11.5326C13.3504 11.3008 13.3504 10.9248 13.1185 10.693L2.89276 0.467238C2.66089 0.235367 2.28496 0.235367 2.05308 0.467238C1.82121 0.699108 1.82121 1.07504 2.05308 1.30691L2.82682 2.08064C1.84059 2.78094 0.969356 3.67405 0.272807 4.70528C-0.0909357 5.24433 -0.0909357 5.94088 0.272807 6.48025C1.17123 7.81053 2.36089 8.91145 3.71274 9.66424L3.71305 9.66393ZM7.92234 7.17586C7.10986 7.13617 6.45644 6.48274 6.41675 5.67026L7.92234 7.17586ZM1.25716 5.36933C1.91277 4.39841 2.74182 3.56718 3.68024 2.93375L5.39333 4.64684C5.28583 4.94215 5.2274 5.26027 5.2274 5.59214C5.2274 7.12117 6.47144 8.36521 8.00047 8.36521C8.33234 8.36521 8.65045 8.30646 8.94576 8.19896L10.0629 9.31613C9.3995 9.50894 8.72233 9.60831 8.05203 9.60831H8.00484H7.99672C6.7408 9.61675 5.46083 9.27738 4.29117 8.62645C3.10119 7.96397 2.05215 6.9918 1.25779 5.81557C1.16623 5.67995 1.16623 5.50495 1.25779 5.36964L1.25716 5.36933ZM9.58103 5.47651L10.6163 6.51181C10.7179 6.224 10.7732 5.91463 10.7732 5.59245C10.7732 4.06342 9.52916 2.81938 8.00012 2.81938C7.67794 2.81938 7.36857 2.87469 7.08077 2.97625L8.11606 4.01154C8.89792 4.06842 9.52416 4.69465 9.58103 5.47651ZM12.2875 1.52096C13.6394 2.27376 14.8291 3.37468 15.7275 4.70497L15.7272 4.70465C16.0909 5.2437 16.0909 5.94025 15.7272 6.47931C15.0356 7.50335 14.1716 8.39114 13.1938 9.08925L12.341 8.23646C13.2706 7.60491 14.0922 6.77867 14.7431 5.81494C14.8347 5.67963 14.8347 5.50464 14.7431 5.36901C13.9488 4.19279 12.8997 3.22062 11.7097 2.55813C10.5401 1.90721 9.25854 1.5669 8.00419 1.57628H7.99606H7.94888C7.28764 1.57628 6.61953 1.67284 5.96485 1.86033L5.02393 0.919414C5.97673 0.570046 6.96796 0.3888 7.94888 0.3888H8.00013H8.05137C9.49291 0.3888 10.9563 0.779729 12.2875 1.52096Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="16" height="12" viewBox="0 0 16 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.71305 9.66393C5.04428 10.4052 6.50768 10.7961 7.94891 10.7961H8.00016C9.00732 10.803 10.0251 10.6177 11.002 10.2561L12.2785 11.5326C12.3944 11.6486 12.5463 11.7067 12.6985 11.7067C12.8507 11.7067 13.0026 11.6486 13.1185 11.5326C13.3504 11.3008 13.3504 10.9248 13.1185 10.693L2.89276 0.467238C2.66089 0.235367 2.28496 0.235367 2.05308 0.467238C1.82121 0.699108 1.82121 1.07504 2.05308 1.30691L2.82682 2.08064C1.84059 2.78094 0.969356 3.67405 0.272807 4.70528C-0.0909357 5.24433 -0.0909357 5.94088 0.272807 6.48025C1.17123 7.81053 2.36089 8.91145 3.71274 9.66424L3.71305 9.66393ZM7.92234 7.17586C7.10986 7.13617 6.45644 6.48274 6.41675 5.67026L7.92234 7.17586ZM1.25716 5.36933C1.91277 4.39841 2.74182 3.56718 3.68024 2.93375L5.39333 4.64684C5.28583 4.94215 5.2274 5.26027 5.2274 5.59214C5.2274 7.12117 6.47144 8.36521 8.00047 8.36521C8.33234 8.36521 8.65045 8.30646 8.94576 8.19896L10.0629 9.31613C9.3995 9.50894 8.72233 9.60831 8.05203 9.60831H8.00484H7.99672C6.7408 9.61675 5.46083 9.27738 4.29117 8.62645C3.10119 7.96397 2.05215 6.9918 1.25779 5.81557C1.16623 5.67995 1.16623 5.50495 1.25779 5.36964L1.25716 5.36933ZM9.58103 5.47651L10.6163 6.51181C10.7179 6.224 10.7732 5.91463 10.7732 5.59245C10.7732 4.06342 9.52916 2.81938 8.00012 2.81938C7.67794 2.81938 7.36857 2.87469 7.08077 2.97625L8.11606 4.01154C8.89792 4.06842 9.52416 4.69465 9.58103 5.47651ZM12.2875 1.52096C13.6394 2.27376 14.8291 3.37468 15.7275 4.70497L15.7272 4.70465C16.0909 5.2437 16.0909 5.94025 15.7272 6.47931C15.0356 7.50335 14.1716 8.39114 13.1938 9.08925L12.341 8.23646C13.2706 7.60491 14.0922 6.77867 14.7431 5.81494C14.8347 5.67963 14.8347 5.50464 14.7431 5.36901C13.9488 4.19279 12.8997 3.22062 11.7097 2.55813C10.5401 1.90721 9.25854 1.5669 8.00419 1.57628H7.99606H7.94888C7.28764 1.57628 6.61953 1.67284 5.96485 1.86033L5.02393 0.919414C5.97673 0.570046 6.96796 0.3888 7.94888 0.3888H8.00013H8.05137C9.49291 0.3888 10.9563 0.779729 12.2875 1.52096Z" fill="currentColor"/>
3
+ </svg>
@@ -1,9 +1,9 @@
1
- <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M11.024 6.97605L6.97599 11.0241C6.45599 10.5041 6.13599 9.79205 6.13599 9.00005C6.13599 7.41605 7.41599 6.13605 8.99999 6.13605C9.79199 6.13605 10.504 6.45605 11.024 6.97605Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
3
- <path d="M3.87988 13.608C3.07988 12.92 2.35188 12.072 1.71188 11.072C0.991875 9.94404 0.991875 8.04804 1.71188 6.92003C2.65588 5.44003 3.80788 4.28003 5.09588 3.50403" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
4
- <path d="M13.656 4.01597C12.256 2.95997 10.656 2.38397 9 2.38397" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
5
- <path d="M6.13599 15.0241C7.04799 15.4081 8.01599 15.6161 8.99999 15.6161C11.824 15.6161 14.456 13.9521 16.288 11.0721C17.008 9.94409 17.008 8.04808 16.288 6.92008C16.024 6.50408 15.736 6.11208 15.44 5.74408" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
6
- <path d="M11.8079 9.56C11.5999 10.688 10.6799 11.608 9.55188 11.816" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
7
- <path d="M6.97601 11.024L1 17.0001" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
8
- <path d="M17.0001 1L11.024 6.97601" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
9
- </svg>
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.024 6.97605L6.97599 11.0241C6.45599 10.5041 6.13599 9.79205 6.13599 9.00005C6.13599 7.41605 7.41599 6.13605 8.99999 6.13605C9.79199 6.13605 10.504 6.45605 11.024 6.97605Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M3.87988 13.608C3.07988 12.92 2.35188 12.072 1.71188 11.072C0.991875 9.94404 0.991875 8.04804 1.71188 6.92003C2.65588 5.44003 3.80788 4.28003 5.09588 3.50403" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M13.656 4.01597C12.256 2.95997 10.656 2.38397 9 2.38397" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6.13599 15.0241C7.04799 15.4081 8.01599 15.6161 8.99999 15.6161C11.824 15.6161 14.456 13.9521 16.288 11.0721C17.008 9.94409 17.008 8.04808 16.288 6.92008C16.024 6.50408 15.736 6.11208 15.44 5.74408" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M11.8079 9.56C11.5999 10.688 10.6799 11.608 9.55188 11.816" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M6.97601 11.024L1 17.0001" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M17.0001 1L11.024 6.97601" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </svg>
@@ -1,19 +1,19 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <mask id="path-1-inside-1_2947_13205" fill="currentColor">
3
- <path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z"/>
4
- <path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z"/>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z"/>
6
- <path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z"/>
7
- <path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z"/>
8
- </mask>
9
- <path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z" fill="currentColor"/>
10
- <path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z" fill="currentColor"/>
11
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z" fill="currentColor"/>
12
- <path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z" fill="currentColor"/>
13
- <path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z" fill="currentColor"/>
14
- <path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
15
- <path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
16
- <path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
17
- <path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
18
- <path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
19
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-inside-1_2947_13205" fill="currentColor">
3
+ <path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z"/>
4
+ <path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z"/>
6
+ <path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z"/>
7
+ <path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z"/>
8
+ </mask>
9
+ <path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z" fill="currentColor"/>
10
+ <path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z" fill="currentColor"/>
11
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z" fill="currentColor"/>
12
+ <path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z" fill="currentColor"/>
13
+ <path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z" fill="currentColor"/>
14
+ <path d="M7.63624 1.5C9.29576 1.5 9.69963 1.54828 10.3071 1.6209L10.3555 1.6267C10.5059 1.64474 10.6742 1.66492 10.8747 1.68562L10.8997 1.68812C11.0622 1.70542 11.2223 1.74042 11.3772 1.7925L11.4084 1.80312L11.4322 1.81187H11.4359L11.44 1.81344C11.7875 1.94044 12.098 2.15188 12.3435 2.42873C12.589 2.70558 12.7617 3.03914 12.8462 3.39937L12.8756 3.68062C12.9509 4.40688 13.0109 5.50219 13.0419 6.77594C13.0464 6.9684 13.1261 7.15143 13.264 7.28579C13.4018 7.42016 13.5868 7.49515 13.7794 7.49469C13.8825 7.49428 13.9846 7.47349 14.0796 7.43352C14.1747 7.39355 14.261 7.33518 14.3334 7.26176C14.4059 7.18835 14.4631 7.10134 14.5018 7.00574C14.5406 6.91014 14.56 6.80783 14.559 6.70469C14.5444 4.76719 14.3859 3.52625 14.3859 3.52625C14.314 2.83126 14.0484 2.17042 13.6194 1.61891C13.1904 1.06739 12.6153 0.64735 11.9594 0.406563C11.9247 0.39375 11.89 0.38125 11.855 0.369063C11.5957 0.28191 11.3276 0.223538 11.0556 0.195L11.0297 0.192187C10.8197 0.170636 10.6453 0.14994 10.4827 0.130637C9.84117 0.0544934 9.38206 0 7.63624 0C5.79355 0 5.25185 0.0607585 4.50652 0.144357C4.36705 0.16 4.22045 0.176443 4.05686 0.193437L4.03092 0.19625C3.74536 0.226245 3.46422 0.289163 3.19311 0.38375V0.369375C2.51701 0.599223 1.92102 1.01815 1.4758 1.57647C1.03058 2.13479 0.754828 2.80908 0.681235 3.51938C0.551235 4.76937 0.484985 5.97469 0.484985 7.90812C0.484985 9.84156 0.551235 11.0472 0.681235 12.2972C0.77005 13.1502 1.14949 13.9467 1.75592 14.5531C2.36234 15.1596 3.15886 15.539 4.01186 15.6278L4.0378 15.6303C4.24679 15.652 4.42044 15.6728 4.5824 15.6922C5.12105 15.7567 5.53034 15.8058 6.67999 15.8197C6.7785 15.8209 6.87629 15.8027 6.96777 15.7661C7.05924 15.7294 7.1426 15.6752 7.21309 15.6063C7.28359 15.5375 7.33982 15.4554 7.37859 15.3649C7.41736 15.2743 7.43791 15.177 7.43905 15.0784C7.44123 14.8808 7.36531 14.6903 7.22779 14.5483C7.09028 14.4064 6.90228 14.3244 6.70467 14.3203C5.73124 14.3003 5.14217 14.2481 4.75655 14.2019L4.753 14.2014C4.59232 14.1822 4.41118 14.1605 4.19217 14.1378L4.16717 14.135C3.65643 14.0819 3.17949 13.8548 2.81639 13.4917C2.4533 13.1286 2.22617 12.6517 2.17311 12.1409C2.0603 11.0569 1.98561 9.92219 1.98561 7.90719C1.98561 5.89219 2.06092 4.75781 2.17311 3.67375C2.21249 3.29234 2.34953 2.92753 2.571 2.61453C2.79248 2.30153 3.09091 2.05091 3.43749 1.88687L3.68499 1.80062C3.8468 1.74414 4.01457 1.70639 4.18499 1.68812L4.21186 1.68562C4.3708 1.66885 4.51117 1.65318 4.64628 1.6381L4.67124 1.63531C5.39592 1.55375 5.87499 1.5 7.63624 1.5Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
15
+ <path d="M11.3506 12.6722H12.744C12.9243 12.6722 13.0972 12.6006 13.2247 12.4731C13.3521 12.3456 13.4237 12.1728 13.4237 11.9925C13.4237 11.8122 13.3521 11.6394 13.2247 11.5119C13.0972 11.3844 12.9243 11.3128 12.744 11.3128H12.0303V10.3206C12.0303 10.1404 11.9587 9.96748 11.8312 9.84001C11.7038 9.71255 11.5309 9.64094 11.3506 9.64094C11.1703 9.64094 10.9975 9.71255 10.87 9.84001C10.7425 9.96748 10.6709 10.1404 10.6709 10.3206V11.9925C10.6711 12.1727 10.7428 12.3455 10.8702 12.4729C10.9976 12.6004 11.1704 12.672 11.3506 12.6722Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.4172 16C9.15748 16 7.31936 14.1619 7.31936 11.9025C7.32052 10.816 7.75262 9.77443 8.52086 9.00619C9.2891 8.23795 10.3307 7.80585 11.4172 7.80469C13.6765 7.80469 15.515 9.64281 15.515 11.9025C15.515 14.1622 13.6765 16 11.4172 16ZM11.4172 9.30469C10.9034 9.30469 10.4011 9.45705 9.9739 9.7425C9.5467 10.0279 9.21373 10.4337 9.01711 10.9084C8.82048 11.383 8.76904 11.9054 8.86928 12.4093C8.96951 12.9132 9.21693 13.3761 9.58024 13.7394C9.94355 14.1027 10.4064 14.3502 10.9104 14.4504C11.4143 14.5506 11.9366 14.4992 12.4113 14.3026C12.886 14.1059 13.2917 13.773 13.5772 13.3458C13.8626 12.9186 14.015 12.4163 14.015 11.9025C14.0142 11.2137 13.7403 10.5534 13.2533 10.0664C12.7663 9.57937 12.1059 9.30543 11.4172 9.30469Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
17
+ <path d="M10.934 4.16094H4.11342C3.9186 4.16493 3.7331 4.24512 3.59674 4.38432C3.46037 4.52351 3.38399 4.71061 3.38399 4.90547C3.38399 5.10033 3.46037 5.28743 3.59674 5.42662C3.7331 5.56581 3.9186 5.64601 4.11342 5.65H10.934C11.1289 5.64601 11.3144 5.56581 11.4507 5.42662C11.5871 5.28743 11.6635 5.10033 11.6635 4.90547C11.6635 4.71061 11.5871 4.52351 11.4507 4.38432C11.3144 4.24512 11.1289 4.16493 10.934 4.16094Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
18
+ <path d="M4.11342 8.835C3.916 8.835 3.72667 8.75658 3.58707 8.61698C3.44747 8.47738 3.36905 8.28805 3.36905 8.09063C3.36905 7.89321 3.44747 7.70387 3.58707 7.56427C3.72667 7.42468 3.916 7.34625 4.11342 7.34625H8.0028C8.20022 7.34625 8.38955 7.42468 8.52915 7.56427C8.66875 7.70387 8.74717 7.89321 8.74717 8.09063C8.74717 8.28805 8.66875 8.47738 8.52915 8.61698C8.38955 8.75658 8.20022 8.835 8.0028 8.835H4.11342Z" stroke="white" stroke-width="0.2" mask="url(#path-1-inside-1_2947_13205)"/>
19
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3.93514 10.6865V7.89453H3.37514V9.04253H2.17914V7.89453H1.61914V10.6865H2.17914V9.49853H3.37514V10.6865H3.93514ZM6.38633 8.34653V7.89453H4.33833V8.34653H5.08233V10.6865H5.64233V8.34653H6.38633ZM9.83892 10.6865V7.89453H9.20692L8.31892 9.97053L7.43092 7.89453H6.79492V10.6865H7.35492V8.87053L8.10692 10.6865H8.53092L9.27892 8.87053V10.6865H9.83892ZM11.8726 10.2425H10.9526V7.89453H10.3926V10.6865H11.8726V10.2425Z" fill="white"/>
4
- </svg>
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.93514 10.6865V7.89453H3.37514V9.04253H2.17914V7.89453H1.61914V10.6865H2.17914V9.49853H3.37514V10.6865H3.93514ZM6.38633 8.34653V7.89453H4.33833V8.34653H5.08233V10.6865H5.64233V8.34653H6.38633ZM9.83892 10.6865V7.89453H9.20692L8.31892 9.97053L7.43092 7.89453H6.79492V10.6865H7.35492V8.87053L8.10692 10.6865H8.53092L9.27892 8.87053V10.6865H9.83892ZM11.8726 10.2425H10.9526V7.89453H10.3926V10.6865H11.8726V10.2425Z" fill="white"/>
4
+ </svg>
@@ -1,6 +1,6 @@
1
- <svg width="17" height="13" viewBox="0 0 17 13" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M5.59083 0.184937H1.22727C0.825606 0.184937 0.500015 0.510527 0.500015 0.912192V5.27575C0.500015 5.67742 0.825606 6.00301 1.22727 6.00301H5.59083C5.9925 6.00301 6.31809 5.67742 6.31809 5.27575V0.912192C6.31809 0.510527 5.9925 0.184937 5.59083 0.184937ZM4.86358 4.5485H1.95453V1.63945H4.86358V4.5485Z" fill="currentColor"/>
3
- <path d="M15.7725 2.3667H8.49988C8.09822 2.3667 7.77263 2.69229 7.77263 3.09395C7.77263 3.49562 8.09822 3.82121 8.49988 3.82121H15.7725C16.1742 3.82121 16.4998 3.49562 16.4998 3.09395C16.4998 2.69232 16.1741 2.3667 15.7725 2.3667Z" fill="currentColor"/>
4
- <path d="M15.7725 9.63934H8.49988C8.09822 9.63934 7.77263 9.96496 7.77263 10.3666C7.77263 10.7682 8.09822 11.0939 8.49988 11.0939H15.7725C16.1742 11.0939 16.4998 10.7682 16.4998 10.3666C16.4998 9.96496 16.1741 9.63934 15.7725 9.63934Z" fill="currentColor"/>
5
- <path d="M5.08175 8.39496L2.66071 10.7869L1.75018 9.8415C1.47083 9.55271 1.01026 9.54505 0.721464 9.8244C0.432666 10.1037 0.425011 10.5643 0.704359 10.8531L2.12542 12.3302C2.26093 12.4684 2.446 12.547 2.6396 12.5484H2.64833C2.839 12.5478 3.02183 12.4723 3.15741 12.3382L6.09992 9.42913C6.40434 9.16714 6.43874 8.70792 6.17675 8.4035C5.91475 8.09908 5.45554 8.06468 5.15112 8.32667C5.12651 8.34787 5.10333 8.37068 5.08175 8.39496Z" fill="currentColor"/>
6
- </svg>
1
+ <svg width="17" height="13" viewBox="0 0 17 13" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.59083 0.184937H1.22727C0.825606 0.184937 0.500015 0.510527 0.500015 0.912192V5.27575C0.500015 5.67742 0.825606 6.00301 1.22727 6.00301H5.59083C5.9925 6.00301 6.31809 5.67742 6.31809 5.27575V0.912192C6.31809 0.510527 5.9925 0.184937 5.59083 0.184937ZM4.86358 4.5485H1.95453V1.63945H4.86358V4.5485Z" fill="currentColor"/>
3
+ <path d="M15.7725 2.3667H8.49988C8.09822 2.3667 7.77263 2.69229 7.77263 3.09395C7.77263 3.49562 8.09822 3.82121 8.49988 3.82121H15.7725C16.1742 3.82121 16.4998 3.49562 16.4998 3.09395C16.4998 2.69232 16.1741 2.3667 15.7725 2.3667Z" fill="currentColor"/>
4
+ <path d="M15.7725 9.63934H8.49988C8.09822 9.63934 7.77263 9.96496 7.77263 10.3666C7.77263 10.7682 8.09822 11.0939 8.49988 11.0939H15.7725C16.1742 11.0939 16.4998 10.7682 16.4998 10.3666C16.4998 9.96496 16.1741 9.63934 15.7725 9.63934Z" fill="currentColor"/>
5
+ <path d="M5.08175 8.39496L2.66071 10.7869L1.75018 9.8415C1.47083 9.55271 1.01026 9.54505 0.721464 9.8244C0.432666 10.1037 0.425011 10.5643 0.704359 10.8531L2.12542 12.3302C2.26093 12.4684 2.446 12.547 2.6396 12.5484H2.64833C2.839 12.5478 3.02183 12.4723 3.15741 12.3382L6.09992 9.42913C6.40434 9.16714 6.43874 8.70792 6.17675 8.4035C5.91475 8.09908 5.45554 8.06468 5.15112 8.32667C5.12651 8.34787 5.10333 8.37068 5.08175 8.39496Z" fill="currentColor"/>
6
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd"
3
- d="M12.3145 4.21158H7.23353C7.09525 4.21158 6.98337 4.0997 6.98337 3.96158C6.98337 3.82389 7.09525 3.71173 7.23353 3.71173H12.3144C12.4526 3.71173 12.5644 3.82392 12.5644 3.96158C12.5645 4.0997 12.4526 4.21158 12.3145 4.21158ZM14.5616 14.3913C14.5616 14.5295 14.4494 14.6414 14.3116 14.6414H7.23353C7.09525 14.6414 6.98337 14.5295 6.98337 14.3913C6.98337 14.2536 7.09525 14.1413 7.23353 14.1413H14.3116C14.4494 14.1413 14.5616 14.2536 14.5616 14.3913ZM14.5616 12.3054C14.5616 12.4435 14.4494 12.5554 14.3116 12.5554H8.68625C8.54812 12.5554 8.43625 12.4435 8.43625 12.3054C8.43625 12.1676 8.54812 12.0554 8.68625 12.0554H14.3116C14.4494 12.0554 14.5616 12.1676 14.5616 12.3054ZM14.5616 8.13343C14.5616 8.27171 14.4494 8.38359 14.3116 8.38359H11.2879C11.1498 8.38359 11.0379 8.27171 11.0379 8.13343C11.0379 7.99574 11.1498 7.88355 11.2879 7.88355H14.3116C14.4494 7.88355 14.5616 7.99574 14.5616 8.13343ZM14.5616 10.2194C14.5616 10.3575 14.4494 10.4694 14.3116 10.4694H11.2879C11.1498 10.4694 11.0379 10.3575 11.0379 10.2194C11.0379 10.0817 11.1498 9.9694 11.2879 9.9694H14.3116C14.4494 9.9694 14.5616 10.0817 14.5616 10.2194ZM14.5616 6.04758C14.5616 6.18571 14.4494 6.29758 14.3116 6.29758H8.68625C8.54812 6.29758 8.43625 6.18571 8.43625 6.04758C8.43625 5.90974 8.54812 5.79758 8.68625 5.79758H14.3116C14.4494 5.79755 14.5616 5.90974 14.5616 6.04758ZM5.04287 16.501H16.5019V3.43842H14.8144C14.6763 3.43842 14.5644 3.3267 14.5644 3.18858V1.50101H5.04287V6.92158H6.31356V5.5007C6.31356 5.40295 6.37062 5.3138 6.45978 5.27324C6.54881 5.23255 6.65346 5.24789 6.72718 5.3123L10.955 8.98796C11.0097 9.03543 11.041 9.10412 11.041 9.17665C11.041 9.24887 11.0097 9.31787 10.955 9.36549L6.72718 13.041C6.6809 13.0814 6.62253 13.1026 6.56312 13.1026C6.52818 13.1026 6.49281 13.0951 6.45978 13.0801C6.37059 13.0395 6.31356 12.9503 6.31356 12.8526V11.4316H5.04287V16.501ZM1.50195 7.42158V10.9317H6.56343C6.70125 10.9317 6.81343 11.0436 6.81343 11.1817V12.3038L10.4101 9.17665L6.81343 6.04949V7.17158C6.81343 7.30986 6.70125 7.42158 6.56343 7.42158H1.50195ZM15.0644 1.85448L16.1485 2.93851H15.0644V1.85448ZM16.9288 3.01195L14.991 1.0741C14.9441 1.02723 14.8806 1.00098 14.8144 1.00098H4.79287C4.65474 1.00098 4.54287 1.11285 4.54287 1.25098V6.92155H1.25195C1.11383 6.92155 1.00195 7.03343 1.00195 7.17155V11.1817C1.00195 11.3198 1.11383 11.4315 1.25195 11.4315H4.54287V16.751C4.54287 16.8891 4.65474 17.001 4.79287 17.001H16.752C16.8901 17.001 17.002 16.8891 17.002 16.751V3.18854C17.002 3.12223 16.9757 3.05882 16.9288 3.01195Z"
4
- fill="currentColor" stroke="currentColor" stroke-width="0.2" />
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd"
3
+ d="M12.3145 4.21158H7.23353C7.09525 4.21158 6.98337 4.0997 6.98337 3.96158C6.98337 3.82389 7.09525 3.71173 7.23353 3.71173H12.3144C12.4526 3.71173 12.5644 3.82392 12.5644 3.96158C12.5645 4.0997 12.4526 4.21158 12.3145 4.21158ZM14.5616 14.3913C14.5616 14.5295 14.4494 14.6414 14.3116 14.6414H7.23353C7.09525 14.6414 6.98337 14.5295 6.98337 14.3913C6.98337 14.2536 7.09525 14.1413 7.23353 14.1413H14.3116C14.4494 14.1413 14.5616 14.2536 14.5616 14.3913ZM14.5616 12.3054C14.5616 12.4435 14.4494 12.5554 14.3116 12.5554H8.68625C8.54812 12.5554 8.43625 12.4435 8.43625 12.3054C8.43625 12.1676 8.54812 12.0554 8.68625 12.0554H14.3116C14.4494 12.0554 14.5616 12.1676 14.5616 12.3054ZM14.5616 8.13343C14.5616 8.27171 14.4494 8.38359 14.3116 8.38359H11.2879C11.1498 8.38359 11.0379 8.27171 11.0379 8.13343C11.0379 7.99574 11.1498 7.88355 11.2879 7.88355H14.3116C14.4494 7.88355 14.5616 7.99574 14.5616 8.13343ZM14.5616 10.2194C14.5616 10.3575 14.4494 10.4694 14.3116 10.4694H11.2879C11.1498 10.4694 11.0379 10.3575 11.0379 10.2194C11.0379 10.0817 11.1498 9.9694 11.2879 9.9694H14.3116C14.4494 9.9694 14.5616 10.0817 14.5616 10.2194ZM14.5616 6.04758C14.5616 6.18571 14.4494 6.29758 14.3116 6.29758H8.68625C8.54812 6.29758 8.43625 6.18571 8.43625 6.04758C8.43625 5.90974 8.54812 5.79758 8.68625 5.79758H14.3116C14.4494 5.79755 14.5616 5.90974 14.5616 6.04758ZM5.04287 16.501H16.5019V3.43842H14.8144C14.6763 3.43842 14.5644 3.3267 14.5644 3.18858V1.50101H5.04287V6.92158H6.31356V5.5007C6.31356 5.40295 6.37062 5.3138 6.45978 5.27324C6.54881 5.23255 6.65346 5.24789 6.72718 5.3123L10.955 8.98796C11.0097 9.03543 11.041 9.10412 11.041 9.17665C11.041 9.24887 11.0097 9.31787 10.955 9.36549L6.72718 13.041C6.6809 13.0814 6.62253 13.1026 6.56312 13.1026C6.52818 13.1026 6.49281 13.0951 6.45978 13.0801C6.37059 13.0395 6.31356 12.9503 6.31356 12.8526V11.4316H5.04287V16.501ZM1.50195 7.42158V10.9317H6.56343C6.70125 10.9317 6.81343 11.0436 6.81343 11.1817V12.3038L10.4101 9.17665L6.81343 6.04949V7.17158C6.81343 7.30986 6.70125 7.42158 6.56343 7.42158H1.50195ZM15.0644 1.85448L16.1485 2.93851H15.0644V1.85448ZM16.9288 3.01195L14.991 1.0741C14.9441 1.02723 14.8806 1.00098 14.8144 1.00098H4.79287C4.65474 1.00098 4.54287 1.11285 4.54287 1.25098V6.92155H1.25195C1.11383 6.92155 1.00195 7.03343 1.00195 7.17155V11.1817C1.00195 11.3198 1.11383 11.4315 1.25195 11.4315H4.54287V16.751C4.54287 16.8891 4.65474 17.001 4.79287 17.001H16.752C16.8901 17.001 17.002 16.8891 17.002 16.751V3.18854C17.002 3.12223 16.9757 3.05882 16.9288 3.01195Z"
4
+ fill="currentColor" stroke="currentColor" stroke-width="0.2" />
5
5
  </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.6006 9.17662L6.68843 12.5781V11.1817C6.68843 11.1128 6.6324 11.0567 6.56343 11.0567H1.37695V7.29659H6.56343C6.63246 7.29659 6.68843 7.24065 6.68843 7.17159V5.77518L10.6006 9.17662ZM14.9394 1.55273L16.4502 3.06355H14.9394V1.55273Z" fill="currentColor" stroke="currentColor" stroke-width="0.2"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.3145 4.21158H7.23353C7.09525 4.21158 6.98337 4.0997 6.98337 3.96158C6.98337 3.82389 7.09525 3.71173 7.23353 3.71173H12.3144C12.4526 3.71173 12.5644 3.82392 12.5644 3.96158C12.5645 4.0997 12.4526 4.21158 12.3145 4.21158ZM14.5616 14.3913C14.5616 14.5295 14.4494 14.6414 14.3116 14.6414H7.23353C7.09525 14.6414 6.98337 14.5295 6.98337 14.3913C6.98337 14.2536 7.09525 14.1413 7.23353 14.1413H14.3116C14.4494 14.1413 14.5616 14.2536 14.5616 14.3913ZM14.5616 12.3054C14.5616 12.4435 14.4494 12.5554 14.3116 12.5554H8.68625C8.54812 12.5554 8.43625 12.4435 8.43625 12.3054C8.43625 12.1676 8.54812 12.0554 8.68625 12.0554H14.3116C14.4494 12.0554 14.5616 12.1676 14.5616 12.3054ZM14.5616 8.13343C14.5616 8.27171 14.4494 8.38359 14.3116 8.38359H11.2879C11.1498 8.38359 11.0379 8.27171 11.0379 8.13343C11.0379 7.99574 11.1498 7.88355 11.2879 7.88355H14.3116C14.4494 7.88355 14.5616 7.99574 14.5616 8.13343ZM14.5616 10.2194C14.5616 10.3575 14.4494 10.4694 14.3116 10.4694H11.2879C11.1498 10.4694 11.0379 10.3575 11.0379 10.2194C11.0379 10.0817 11.1498 9.9694 11.2879 9.9694H14.3116C14.4494 9.9694 14.5616 10.0817 14.5616 10.2194ZM14.5616 6.04758C14.5616 6.18571 14.4494 6.29758 14.3116 6.29758H8.68625C8.54812 6.29758 8.43625 6.18571 8.43625 6.04758C8.43625 5.90974 8.54812 5.79758 8.68625 5.79758H14.3116C14.4494 5.79755 14.5616 5.90974 14.5616 6.04758ZM5.04287 16.501H16.5019V3.43842H14.8144C14.6763 3.43842 14.5644 3.3267 14.5644 3.18858V1.50101H5.04287V6.92158H6.31356V5.5007C6.31356 5.40295 6.37062 5.3138 6.45978 5.27324C6.54881 5.23255 6.65346 5.24789 6.72718 5.3123L10.955 8.98796C11.0097 9.03543 11.041 9.10412 11.041 9.17665C11.041 9.24887 11.0097 9.31787 10.955 9.36549L6.72718 13.041C6.6809 13.0814 6.62253 13.1026 6.56312 13.1026C6.52818 13.1026 6.49281 13.0951 6.45978 13.0801C6.37059 13.0395 6.31356 12.9503 6.31356 12.8526V11.4316H5.04287V16.501ZM1.50195 7.42158V10.9317H6.56343C6.70125 10.9317 6.81343 11.0436 6.81343 11.1817V12.3038L10.4101 9.17665L6.81343 6.04949V7.17158C6.81343 7.30986 6.70125 7.42158 6.56343 7.42158H1.50195ZM15.0644 1.85448L16.1485 2.93851H15.0644V1.85448ZM16.9288 3.01195L14.991 1.0741C14.9441 1.02723 14.8806 1.00098 14.8144 1.00098H4.79287C4.65474 1.00098 4.54287 1.11285 4.54287 1.25098V6.92155H1.25195C1.11383 6.92155 1.00195 7.03343 1.00195 7.17155V11.1817C1.00195 11.3198 1.11383 11.4315 1.25195 11.4315H4.54287V16.751C4.54287 16.8891 4.65474 17.001 4.79287 17.001H16.752C16.8901 17.001 17.002 16.8891 17.002 16.751V3.18854C17.002 3.12223 16.9757 3.05882 16.9288 3.01195Z" fill="currentColor" stroke="currentColor" stroke-width="0.2"/>
4
+ </svg>
@@ -1,17 +1,17 @@
1
- <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <mask id="path-1-inside-1_15_1182" fill="white">
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M21.5326 0.217769C20.5315 -0.0725897 19.4684 -0.0725897 18.4674 0.217769C17.821 0.4053 17.2694 0.730828 16.7257 1.1273C16.2076 1.50513 15.618 2.00757 14.9165 2.6054L14.9165 2.60544L14.556 2.9126C13.9283 3.44749 13.757 3.58556 13.5806 3.68605C13.399 3.78954 13.2051 3.86986 13.0035 3.92509C12.8077 3.97875 12.5889 4.00232 11.7668 4.06791L11.2947 4.10558C10.3759 4.17888 9.6038 4.2405 8.97024 4.33971C8.30544 4.44384 7.68528 4.60362 7.09554 4.92817C6.18235 5.43072 5.4307 6.18235 4.92817 7.09554C4.6036 7.68528 4.44382 8.30544 4.33971 8.97024C4.2405 9.60367 4.17891 10.3757 4.10563 11.2942L4.10558 11.2947L4.06791 11.7668C4.00232 12.5889 3.97875 12.8077 3.9251 13.0035C3.86986 13.2051 3.78954 13.399 3.68605 13.5806C3.58554 13.757 3.44749 13.9284 2.91258 14.556L2.60542 14.9165C2.00757 15.618 1.50514 16.2076 1.1273 16.7258C0.730829 17.2693 0.4053 17.8209 0.217769 18.4674C-0.0725897 19.4685 -0.0725897 20.5314 0.217769 21.5325C0.4053 22.179 0.730829 22.7306 1.1273 23.2743C1.50512 23.7925 2.00757 24.382 2.6054 25.0834L2.91258 25.4439C3.44749 26.0715 3.58554 26.243 3.68605 26.4194C3.78954 26.601 3.86986 26.7949 3.9251 26.9966C3.97875 27.1922 4.00232 27.4111 4.06791 28.2331L4.10558 28.7052C4.17888 29.6241 4.24048 30.3961 4.33971 31.0296C4.44382 31.6944 4.6036 32.3146 4.92817 32.9044C5.4307 33.8176 6.18235 34.5692 7.09554 35.0717C7.68528 35.3964 8.30544 35.5561 8.97024 35.6603C9.60384 35.7595 10.376 35.8211 11.2949 35.8944L11.7668 35.932C12.5889 35.9976 12.8077 36.0212 13.0035 36.0748C13.2051 36.13 13.399 36.2105 13.5806 36.3139C13.757 36.4143 13.9283 36.5525 14.556 37.0873L14.9165 37.3946L14.9215 37.3988C15.6208 37.9947 16.2088 38.4958 16.7257 38.8726C17.2694 39.2691 17.821 39.5946 18.4674 39.7822C19.4684 40.0725 20.5315 40.0725 21.5326 39.7822C22.179 39.5946 22.7305 39.2691 23.2743 38.8726C23.7917 38.4954 24.3805 37.9936 25.0807 37.3968L25.0834 37.3946L25.4439 37.0873C26.0716 36.5525 26.2431 36.4143 26.4193 36.3139C26.601 36.2105 26.7948 36.13 26.9965 36.0748C27.1923 36.0212 27.411 35.9976 28.2332 35.932L28.7051 35.8944C29.624 35.8211 30.3962 35.7595 31.0298 35.6603C31.6945 35.5561 32.3147 35.3964 32.9045 35.0717C33.8175 34.5692 34.5693 33.8176 35.0719 32.9044C35.3964 32.3146 35.5562 31.6944 35.6602 31.0296C35.7595 30.3961 35.8211 29.6239 35.8943 28.705L35.9321 28.2331C35.9977 27.4111 36.0211 27.1922 36.0749 26.9966C36.1301 26.7949 36.2104 26.601 36.3138 26.4194C36.4144 26.243 36.5525 26.0715 37.0874 25.4439L37.3947 25.0834L37.4 25.0772C37.9954 24.3783 38.4959 23.7909 38.8727 23.2743C39.2692 22.7306 39.5947 22.179 39.7821 21.5325C40.0726 20.5314 40.0726 19.4685 39.7821 18.4674C39.5947 17.8209 39.2692 17.2693 38.8727 16.7258C38.4948 16.2076 37.9925 15.618 37.3945 14.9165L37.0874 14.556C36.5525 13.9284 36.4144 13.757 36.3138 13.5806C36.2104 13.399 36.1301 13.2051 36.0749 13.0035C36.0211 12.8077 35.9977 12.5889 35.9321 11.7668L35.8943 11.2949C35.8211 10.376 35.7595 9.60384 35.6602 8.97024C35.5562 8.30544 35.3964 7.68528 35.0719 7.09554C34.5693 6.18235 33.8175 5.4307 32.9045 4.92817C32.3147 4.60362 31.6945 4.44384 31.0298 4.33971C30.3962 4.2405 29.624 4.17888 28.7051 4.10558L28.2332 4.06791C27.411 4.00232 27.1923 3.97875 26.9965 3.92509C26.7948 3.86986 26.601 3.78954 26.4193 3.68605C26.2431 3.58556 26.0716 3.44749 25.4439 2.9126L25.0836 2.60544L25.0811 2.60331C24.3806 2.0064 23.7918 1.50469 23.2743 1.1273C22.7305 0.730828 22.179 0.4053 21.5326 0.217769ZM20 14.1428C21.4202 14.1428 22.5715 12.9916 22.5715 11.5714C22.5715 10.1513 21.4202 8.99999 20 8.99999C18.5799 8.99999 17.4286 10.1513 17.4286 11.5714C17.4286 12.9916 18.5799 14.1428 20 14.1428ZM20 17.5714H18.2857C17.8311 17.5714 17.3951 17.752 17.0736 18.0735C16.7521 18.395 16.5715 18.831 16.5715 19.2857C16.5715 19.7404 16.7521 20.1764 17.0736 20.4979C17.3951 20.8194 17.8311 21 18.2857 21H20V29.2857C20 29.7404 20.1806 30.1764 20.5021 30.4979C20.8236 30.8194 21.2597 31 21.7143 31C22.169 31 22.605 30.8194 22.9265 30.4979C23.248 30.1764 23.4286 29.7404 23.4286 29.2857V21C23.4286 20.0907 23.0674 19.2186 22.4244 18.5756C21.7814 17.9326 20.9093 17.5714 20 17.5714Z"/>
4
- </mask>
5
- <path fill-rule="evenodd" clip-rule="evenodd" d="M21.5326 0.217769C20.5315 -0.0725897 19.4684 -0.0725897 18.4674 0.217769C17.821 0.4053 17.2694 0.730828 16.7257 1.1273C16.2076 1.50513 15.618 2.00757 14.9165 2.6054L14.9165 2.60544L14.556 2.9126C13.9283 3.44749 13.757 3.58556 13.5806 3.68605C13.399 3.78954 13.2051 3.86986 13.0035 3.92509C12.8077 3.97875 12.5889 4.00232 11.7668 4.06791L11.2947 4.10558C10.3759 4.17888 9.6038 4.2405 8.97024 4.33971C8.30544 4.44384 7.68528 4.60362 7.09554 4.92817C6.18235 5.43072 5.4307 6.18235 4.92817 7.09554C4.6036 7.68528 4.44382 8.30544 4.33971 8.97024C4.2405 9.60367 4.17891 10.3757 4.10563 11.2942L4.10558 11.2947L4.06791 11.7668C4.00232 12.5889 3.97875 12.8077 3.9251 13.0035C3.86986 13.2051 3.78954 13.399 3.68605 13.5806C3.58554 13.757 3.44749 13.9284 2.91258 14.556L2.60542 14.9165C2.00757 15.618 1.50514 16.2076 1.1273 16.7258C0.730829 17.2693 0.4053 17.8209 0.217769 18.4674C-0.0725897 19.4685 -0.0725897 20.5314 0.217769 21.5325C0.4053 22.179 0.730829 22.7306 1.1273 23.2743C1.50512 23.7925 2.00757 24.382 2.6054 25.0834L2.91258 25.4439C3.44749 26.0715 3.58554 26.243 3.68605 26.4194C3.78954 26.601 3.86986 26.7949 3.9251 26.9966C3.97875 27.1922 4.00232 27.4111 4.06791 28.2331L4.10558 28.7052C4.17888 29.6241 4.24048 30.3961 4.33971 31.0296C4.44382 31.6944 4.6036 32.3146 4.92817 32.9044C5.4307 33.8176 6.18235 34.5692 7.09554 35.0717C7.68528 35.3964 8.30544 35.5561 8.97024 35.6603C9.60384 35.7595 10.376 35.8211 11.2949 35.8944L11.7668 35.932C12.5889 35.9976 12.8077 36.0212 13.0035 36.0748C13.2051 36.13 13.399 36.2105 13.5806 36.3139C13.757 36.4143 13.9283 36.5525 14.556 37.0873L14.9165 37.3946L14.9215 37.3988C15.6208 37.9947 16.2088 38.4958 16.7257 38.8726C17.2694 39.2691 17.821 39.5946 18.4674 39.7822C19.4684 40.0725 20.5315 40.0725 21.5326 39.7822C22.179 39.5946 22.7305 39.2691 23.2743 38.8726C23.7917 38.4954 24.3805 37.9936 25.0807 37.3968L25.0834 37.3946L25.4439 37.0873C26.0716 36.5525 26.2431 36.4143 26.4193 36.3139C26.601 36.2105 26.7948 36.13 26.9965 36.0748C27.1923 36.0212 27.411 35.9976 28.2332 35.932L28.7051 35.8944C29.624 35.8211 30.3962 35.7595 31.0298 35.6603C31.6945 35.5561 32.3147 35.3964 32.9045 35.0717C33.8175 34.5692 34.5693 33.8176 35.0719 32.9044C35.3964 32.3146 35.5562 31.6944 35.6602 31.0296C35.7595 30.3961 35.8211 29.6239 35.8943 28.705L35.9321 28.2331C35.9977 27.4111 36.0211 27.1922 36.0749 26.9966C36.1301 26.7949 36.2104 26.601 36.3138 26.4194C36.4144 26.243 36.5525 26.0715 37.0874 25.4439L37.3947 25.0834L37.4 25.0772C37.9954 24.3783 38.4959 23.7909 38.8727 23.2743C39.2692 22.7306 39.5947 22.179 39.7821 21.5325C40.0726 20.5314 40.0726 19.4685 39.7821 18.4674C39.5947 17.8209 39.2692 17.2693 38.8727 16.7258C38.4948 16.2076 37.9925 15.618 37.3945 14.9165L37.0874 14.556C36.5525 13.9284 36.4144 13.757 36.3138 13.5806C36.2104 13.399 36.1301 13.2051 36.0749 13.0035C36.0211 12.8077 35.9977 12.5889 35.9321 11.7668L35.8943 11.2949C35.8211 10.376 35.7595 9.60384 35.6602 8.97024C35.5562 8.30544 35.3964 7.68528 35.0719 7.09554C34.5693 6.18235 33.8175 5.4307 32.9045 4.92817C32.3147 4.60362 31.6945 4.44384 31.0298 4.33971C30.3962 4.2405 29.624 4.17888 28.7051 4.10558L28.2332 4.06791C27.411 4.00232 27.1923 3.97875 26.9965 3.92509C26.7948 3.86986 26.601 3.78954 26.4193 3.68605C26.2431 3.58556 26.0716 3.44749 25.4439 2.9126L25.0836 2.60544L25.0811 2.60331C24.3806 2.0064 23.7918 1.50469 23.2743 1.1273C22.7305 0.730828 22.179 0.4053 21.5326 0.217769ZM20 14.1428C21.4202 14.1428 22.5715 12.9916 22.5715 11.5714C22.5715 10.1513 21.4202 8.99999 20 8.99999C18.5799 8.99999 17.4286 10.1513 17.4286 11.5714C17.4286 12.9916 18.5799 14.1428 20 14.1428ZM20 17.5714H18.2857C17.8311 17.5714 17.3951 17.752 17.0736 18.0735C16.7521 18.395 16.5715 18.831 16.5715 19.2857C16.5715 19.7404 16.7521 20.1764 17.0736 20.4979C17.3951 20.8194 17.8311 21 18.2857 21H20V29.2857C20 29.7404 20.1806 30.1764 20.5021 30.4979C20.8236 30.8194 21.2597 31 21.7143 31C22.169 31 22.605 30.8194 22.9265 30.4979C23.248 30.1764 23.4286 29.7404 23.4286 29.2857V21C23.4286 20.0907 23.0674 19.2186 22.4244 18.5756C21.7814 17.9326 20.9093 17.5714 20 17.5714Z" fill="url(#paint0_linear_15_1182)"/>
6
- <path d="M18.4674 0.217769L18.1888 -0.742648L18.1887 -0.742627L18.4674 0.217769ZM21.5326 0.217769L21.8112 -0.742627L21.8112 -0.742648L21.5326 0.217769ZM16.7257 1.1273L16.1365 0.319278L16.1365 0.319311L16.7257 1.1273ZM14.9165 2.6054L15.5567 3.37367L15.5651 3.3665L14.9165 2.6054ZM14.9165 2.60544L14.2762 1.83717L14.2678 1.84432L14.9165 2.60544ZM14.556 2.9126L15.2046 3.67372L15.2046 3.67371L14.556 2.9126ZM13.5806 3.68605L13.0855 2.81718L13.0855 2.81719L13.5806 3.68605ZM13.0035 3.92509L12.7393 2.96063L12.7392 2.96066L13.0035 3.92509ZM11.7668 4.06791L11.8464 5.06475L11.8464 5.06474L11.7668 4.06791ZM11.2947 4.10558L11.3742 5.10242L11.3743 5.10242L11.2947 4.10558ZM8.97024 4.33971L8.81554 3.35175L8.8155 3.35175L8.97024 4.33971ZM7.09554 4.92817L6.6134 4.05207L6.61339 4.05207L7.09554 4.92817ZM4.92817 7.09554L5.80425 7.57769L5.80427 7.57766L4.92817 7.09554ZM4.33971 8.97024L5.32766 9.12498L5.32767 9.12496L4.33971 8.97024ZM4.10563 11.2942L5.10245 11.3738L5.10246 11.3737L4.10563 11.2942ZM4.10558 11.2947L3.10876 11.2151L3.10875 11.2152L4.10558 11.2947ZM4.06791 11.7668L5.06475 11.8464V11.8464L4.06791 11.7668ZM3.9251 13.0035L2.96066 12.7392L2.96063 12.7393L3.9251 13.0035ZM3.68605 13.5806L4.55487 14.0757L4.55491 14.0757L3.68605 13.5806ZM2.91258 14.556L2.15148 13.9074L2.15145 13.9074L2.91258 14.556ZM2.60542 14.9165L3.36652 15.5651L3.36655 15.5651L2.60542 14.9165ZM1.1273 16.7258L1.93521 17.3151L1.93528 17.315L1.1273 16.7258ZM0.217769 18.4674L1.17819 18.746L1.17819 18.746L0.217769 18.4674ZM0.217769 21.5325L1.17819 21.2539L1.17819 21.2539L0.217769 21.5325ZM1.1273 23.2743L0.319278 23.8635L0.319297 23.8635L1.1273 23.2743ZM2.6054 25.0834L3.36654 24.4349L3.36646 24.4348L2.6054 25.0834ZM2.91258 25.4439L2.15144 26.0925L2.15152 26.0926L2.91258 25.4439ZM3.68605 26.4194L2.81713 26.9143L2.81716 26.9144L3.68605 26.4194ZM3.9251 26.9966L2.96062 27.2607L2.9607 27.261L3.9251 26.9966ZM4.06791 28.2331L5.06475 28.1536L5.06474 28.1535L4.06791 28.2331ZM4.10558 28.7052L5.10242 28.6257L5.10242 28.6257L4.10558 28.7052ZM4.33971 31.0296L5.32767 30.8749L5.32766 30.8749L4.33971 31.0296ZM4.92817 32.9044L5.80428 32.4223L5.80426 32.4222L4.92817 32.9044ZM7.09554 35.0717L7.57783 34.1957L7.57766 34.1956L7.09554 35.0717ZM8.97024 35.6603L8.81535 36.6482L8.81552 36.6483L8.97024 35.6603ZM11.2949 35.8944L11.3743 34.8975L11.3743 34.8975L11.2949 35.8944ZM11.7668 35.932L11.8464 34.9352L11.8463 34.9351L11.7668 35.932ZM13.0035 36.0748L12.7393 37.0393H12.7393L13.0035 36.0748ZM13.5806 36.3139L13.0858 37.1829L13.0858 37.1829L13.5806 36.3139ZM14.556 37.0873L15.2047 36.3263L15.2045 36.3261L14.556 37.0873ZM14.9165 37.3946L14.2678 38.1556L14.2678 38.1556L14.9165 37.3946ZM14.9215 37.3988L14.2727 38.1598L14.2729 38.1599L14.9215 37.3988ZM16.7257 38.8726L17.3149 38.0646L17.3147 38.0645L16.7257 38.8726ZM18.4674 39.7822L18.1886 40.7426L18.1889 40.7427L18.4674 39.7822ZM21.5326 39.7822L21.8111 40.7427L21.8114 40.7426L21.5326 39.7822ZM23.2743 38.8726L22.6852 38.0645L22.6851 38.0646L23.2743 38.8726ZM25.0807 37.3968L24.4323 36.6355L24.4321 36.6358L25.0807 37.3968ZM25.0834 37.3946L25.7317 38.1559L25.7321 38.1556L25.0834 37.3946ZM25.4439 37.0873L24.7954 36.326L24.7951 36.3263L25.4439 37.0873ZM26.4193 36.3139L25.9245 35.4449L25.9243 35.445L26.4193 36.3139ZM26.9965 36.0748L26.7324 35.1103L26.7324 35.1103L26.9965 36.0748ZM28.2332 35.932L28.1538 34.9351L28.1537 34.9352L28.2332 35.932ZM28.7051 35.8944L28.6257 34.8975L28.6257 34.8975L28.7051 35.8944ZM31.0298 35.6603L31.1845 36.6483L31.1847 36.6482L31.0298 35.6603ZM32.9045 35.0717L32.4223 34.1957L32.4222 34.1957L32.9045 35.0717ZM35.0719 32.9044L35.948 33.3865L35.948 33.3864L35.0719 32.9044ZM35.6602 31.0296L34.6723 30.8749L34.6722 30.875L35.6602 31.0296ZM35.8943 28.705L34.8975 28.6252L34.8974 28.6256L35.8943 28.705ZM35.9321 28.2331L36.9289 28.313L36.9289 28.3127L35.9321 28.2331ZM36.0749 26.9966L37.0391 27.2618L37.0394 27.2606L36.0749 26.9966ZM36.3138 26.4194L35.4451 25.924L35.4448 25.9246L36.3138 26.4194ZM37.0874 25.4439L37.8484 26.0926L37.8485 26.0926L37.0874 25.4439ZM37.3947 25.0834L38.1557 25.7321L38.1559 25.732L37.3947 25.0834ZM37.4 25.0772L36.6388 24.4286L36.6388 24.4287L37.4 25.0772ZM38.8727 23.2743L39.6806 23.8636L39.6807 23.8635L38.8727 23.2743ZM39.7821 21.5325L38.8218 21.2538L38.8217 21.254L39.7821 21.5325ZM39.7821 18.4674L38.8217 18.7459L38.8218 18.7461L39.7821 18.4674ZM38.8727 16.7258L38.0648 17.315L38.0648 17.3151L38.8727 16.7258ZM37.3945 14.9165L36.6333 15.565L36.6335 15.5652L37.3945 14.9165ZM37.0874 14.556L37.8486 13.9075L37.8485 13.9074L37.0874 14.556ZM36.3138 13.5806L35.4448 14.0754L35.4452 14.0762L36.3138 13.5806ZM36.0749 13.0035L37.0394 12.7393L37.0392 12.7384L36.0749 13.0035ZM35.9321 11.7668L36.9289 11.6873L36.9289 11.687L35.9321 11.7668ZM35.8943 11.2949L34.8974 11.3743L34.8975 11.3747L35.8943 11.2949ZM35.6602 8.97024L34.6722 9.12484L34.6723 9.12497L35.6602 8.97024ZM35.0719 7.09554L35.948 6.61347L35.948 6.61341L35.0719 7.09554ZM32.9045 4.92817L33.3867 4.0521L33.3866 4.05206L32.9045 4.92817ZM31.0298 4.33971L31.1845 3.35175L31.1845 3.35175L31.0298 4.33971ZM28.7051 4.10558L28.6256 5.10241L28.6256 5.10242L28.7051 4.10558ZM28.2332 4.06791L28.3128 3.07108L28.3127 3.07108L28.2332 4.06791ZM26.9965 3.92509L27.2607 2.96063L27.2607 2.96062L26.9965 3.92509ZM26.4193 3.68605L25.924 4.55477L25.9243 4.55494L26.4193 3.68605ZM25.4439 2.9126L24.7951 3.67359L24.7953 3.67377L25.4439 2.9126ZM25.0836 2.60544L25.7323 1.84445L25.7322 1.84433L25.0836 2.60544ZM25.0811 2.60331L25.7297 1.8422L25.7296 1.84217L25.0811 2.60331ZM23.2743 1.1273L23.8635 0.319312L23.8634 0.319278L23.2743 1.1273ZM17.0736 18.0735L17.7807 18.7806L17.7807 18.7806L17.0736 18.0735ZM17.0736 20.4979L17.7807 19.7908L17.7807 19.7908L17.0736 20.4979ZM20 21H21V20H20V21ZM20.5021 30.4979L21.2092 29.7908L21.2092 29.7908L20.5021 30.4979ZM22.9265 30.4979L22.2194 29.7908L22.2194 29.7908L22.9265 30.4979ZM22.4244 18.5756L21.7173 19.2827H21.7173L22.4244 18.5756ZM18.7459 1.17819C19.565 0.940605 20.4349 0.940605 21.254 1.17819L21.8112 -0.742648C20.6281 -1.08578 19.3718 -1.08578 18.1888 -0.742648L18.7459 1.17819ZM17.3148 1.93531C17.8106 1.57388 18.2551 1.3206 18.746 1.17817L18.1887 -0.742627C17.3869 -0.509998 16.7283 -0.112221 16.1365 0.319278L17.3148 1.93531ZM15.5651 3.3665C16.2767 2.76012 16.8341 2.28589 17.3149 1.93528L16.1365 0.319311C15.581 0.724374 14.9593 1.25503 14.2679 1.8443L15.5651 3.3665ZM15.5566 3.37366L15.5567 3.37362L14.2763 1.83718L14.2763 1.83722L15.5566 3.37366ZM15.2046 3.67371L15.5651 3.36655L14.2678 1.84432L13.9074 2.15149L15.2046 3.67371ZM14.0756 4.55492C14.3539 4.39637 14.6095 4.18091 15.2046 3.67372L13.9074 2.15148C13.2472 2.71406 13.16 2.77475 13.0855 2.81718L14.0756 4.55492ZM13.2677 4.88956C13.55 4.81221 13.8214 4.69975 14.0757 4.55491L13.0855 2.81719C12.9765 2.87933 12.8601 2.92751 12.7393 2.96063L13.2677 4.88956ZM11.8464 5.06474C12.6259 5.00254 12.9589 4.97418 13.2678 4.88953L12.7392 2.96066C12.6565 2.98332 12.5519 3.00209 11.6873 3.07108L11.8464 5.06474ZM11.3743 5.10242L11.8464 5.06475L11.6873 3.07108L11.2152 3.10875L11.3743 5.10242ZM9.12495 5.32767C9.71284 5.23561 10.4423 5.17676 11.3742 5.10242L11.2152 3.10875C10.3095 3.181 9.49475 3.24539 8.81554 3.35175L9.12495 5.32767ZM7.57767 5.80426C8.02556 5.55778 8.51892 5.42259 9.12499 5.32766L8.8155 3.35175C8.09197 3.46508 7.34499 3.64946 6.6134 4.05207L7.57767 5.80426ZM5.80427 7.57766C6.21545 6.83048 6.83046 6.21548 7.57768 5.80426L6.61339 4.05207C5.53423 4.64597 4.64596 5.53421 4.05207 6.61341L5.80427 7.57766ZM5.32767 9.12496C5.42257 8.51891 5.55776 8.02557 5.80425 7.57769L4.05208 6.61338C3.64944 7.34498 3.46506 8.09198 3.35175 8.81553L5.32767 9.12496ZM5.10246 11.3737C5.17679 10.442 5.23561 9.71273 5.32766 9.12498L3.35175 8.81551C3.24539 9.49461 3.18103 10.3093 3.1088 11.2147L5.10246 11.3737ZM5.10241 11.3744L5.10245 11.3738L3.1088 11.2145L3.10876 11.2151L5.10241 11.3744ZM5.06475 11.8464L5.10242 11.3743L3.10875 11.2152L3.07108 11.6873L5.06475 11.8464ZM4.88953 13.2678C4.97418 12.9589 5.00254 12.6259 5.06475 11.8464L3.07108 11.6873C3.00209 12.5519 2.98332 12.6565 2.96066 12.7392L4.88953 13.2678ZM4.55491 14.0757C4.69975 13.8215 4.81221 13.55 4.88956 13.2677L2.96063 12.7393C2.92751 12.8601 2.87933 12.9765 2.81719 13.0855L4.55491 14.0757ZM3.67368 15.2047C4.18097 14.6094 4.39633 14.3539 4.55487 14.0757L2.81723 13.0855C2.77476 13.16 2.714 13.2473 2.15148 13.9074L3.67368 15.2047ZM3.36655 15.5651L3.67371 15.2046L2.15145 13.9074L1.84428 14.2679L3.36655 15.5651ZM1.93528 17.315C2.28591 16.8342 2.76017 16.2766 3.36652 15.5651L1.84431 14.2678C1.25498 14.9594 0.724372 15.5811 0.319312 16.1366L1.93528 17.315ZM1.17819 18.746C1.32062 18.2549 1.57388 17.8104 1.93521 17.3151L0.319382 16.1365C-0.112223 16.7282 -0.510022 17.3868 -0.742651 18.1889L1.17819 18.746ZM1.17819 21.2539C0.940605 20.4348 0.940605 19.5651 1.17819 18.746L-0.742648 18.1889C-1.08578 19.3719 -1.08578 20.628 -0.742648 21.811L1.17819 21.2539ZM1.93531 22.6852C1.57389 22.1895 1.32062 21.745 1.17819 21.2539L-0.742651 21.811C-0.510024 22.6131 -0.112232 23.2717 0.319278 23.8635L1.93531 22.6852ZM3.36646 24.4348C2.7601 23.7234 2.28587 23.1659 1.9353 22.6852L0.319297 23.8635C0.724372 24.419 1.25505 25.0407 1.84434 25.7321L3.36646 24.4348ZM3.67373 24.7954L3.36654 24.4349L1.84425 25.732L2.15144 26.0925L3.67373 24.7954ZM4.55497 25.9245C4.39638 25.646 4.18096 25.3905 3.67364 24.7953L2.15152 26.0926C2.71401 26.7526 2.77471 26.8399 2.81713 26.9143L4.55497 25.9245ZM4.88957 26.7324C4.81221 26.4499 4.69974 26.1786 4.55494 25.9244L2.81716 26.9144C2.87933 27.0235 2.92751 27.1399 2.96062 27.2607L4.88957 26.7324ZM5.06474 28.1535C5.00255 27.3741 4.97419 27.0409 4.88949 26.7321L2.9607 27.261C2.98331 27.3435 3.00209 27.448 3.07108 28.3126L5.06474 28.1535ZM5.10242 28.6257L5.06475 28.1536L3.07108 28.3126L3.10875 28.7848L5.10242 28.6257ZM5.32766 30.8749C5.23559 30.287 5.17676 29.5577 5.10242 28.6257L3.10875 28.7847C3.181 29.6905 3.24537 30.5051 3.35175 31.1844L5.32766 30.8749ZM5.80426 32.4222C5.55776 31.9743 5.42257 31.481 5.32767 30.8749L3.35175 31.1844C3.46506 31.9079 3.64944 32.6549 4.05208 33.3865L5.80426 32.4222ZM7.57766 34.1956C6.83046 33.7845 6.21546 33.1695 5.80428 32.4223L4.05205 33.3865C4.64595 34.4657 5.53424 35.354 6.61341 35.9478L7.57766 34.1956ZM9.12513 34.6724C8.51878 34.5773 8.02556 34.4422 7.57783 34.1957L6.61324 35.9478C7.34499 36.3506 8.09211 36.5348 8.81535 36.6482L9.12513 34.6724ZM11.3743 34.8975C10.4424 34.8233 9.71286 34.7644 9.12497 34.6723L8.81552 36.6483C9.49481 36.7546 10.3097 36.819 11.2154 36.8912L11.3743 34.8975ZM11.8463 34.9351L11.3743 34.8975L11.2154 36.8912L11.6874 36.9288L11.8463 34.9351ZM13.2676 35.1103C12.9589 35.0258 12.6261 34.9974 11.8464 34.9352L11.6873 36.9288C12.5517 36.9978 12.6565 37.0166 12.7393 37.0393L13.2676 35.1103ZM14.0754 35.4449C13.8216 35.3004 13.5503 35.1877 13.2676 35.1103L12.7393 37.0393C12.8599 37.0723 12.9763 37.1205 13.0858 37.1829L14.0754 35.4449ZM15.2045 36.3261C14.6098 35.8194 14.3539 35.6034 14.0754 35.4449L13.0858 37.1829C13.1601 37.2252 13.2469 37.2857 13.9075 37.8485L15.2045 36.3261ZM15.5652 36.6336L15.2047 36.3263L13.9073 37.8483L14.2678 38.1556L15.5652 36.6336ZM15.5702 36.6378L15.5652 36.6335L14.2678 38.1556L14.2727 38.1598L15.5702 36.6378ZM17.3147 38.0645C16.8352 37.7149 16.2794 37.2421 15.5701 36.6377L14.2729 38.1599C14.9621 38.7473 15.5823 39.2766 16.1366 39.6807L17.3147 38.0645ZM18.7462 38.8219C18.2551 38.6793 17.8105 38.426 17.3149 38.0646L16.1365 39.6806C16.7284 40.1122 17.3869 40.5098 18.1886 40.7426L18.7462 38.8219ZM21.2541 38.8218C20.4349 39.0593 19.565 39.0593 18.7459 38.8218L18.1889 40.7427C19.3719 41.0857 20.6281 41.0857 21.8111 40.7427L21.2541 38.8218ZM22.6851 38.0646C22.1894 38.426 21.7449 38.6793 21.2538 38.8219L21.8114 40.7426C22.6131 40.5098 23.2716 40.1122 23.8635 39.6806L22.6851 38.0646ZM24.4321 36.6358C23.7218 37.2411 23.1653 37.7146 22.6852 38.0645L23.8633 39.6807C24.4182 39.2761 25.0392 38.7461 25.7293 38.1579L24.4321 36.6358ZM24.435 36.6332L24.4323 36.6355L25.7291 38.1582L25.7317 38.1559L24.435 36.6332ZM24.7951 36.3263L24.4347 36.6335L25.7321 38.1556L26.0926 37.8483L24.7951 36.3263ZM25.9243 35.445C25.6462 35.6035 25.3904 35.8192 24.7954 36.326L26.0923 37.8485C26.7529 37.2859 26.84 37.2251 26.9144 37.1827L25.9243 35.445ZM26.7324 35.1103C26.4496 35.1877 26.1783 35.3004 25.9245 35.4449L26.9141 37.1829C27.0236 37.1205 27.14 37.0723 27.2606 37.0393L26.7324 35.1103ZM28.1537 34.9352C27.3737 34.9974 27.0412 35.0258 26.7324 35.1103L27.2605 37.0393C27.3435 37.0166 27.4483 36.9978 28.3128 36.9288L28.1537 34.9352ZM28.6257 34.8975L28.1538 34.9351L28.3127 36.9288L28.7846 36.8912L28.6257 34.8975ZM30.875 34.6723C30.2872 34.7644 29.5576 34.8233 28.6257 34.8975L28.7846 36.8912C29.6904 36.819 30.5052 36.7546 31.1845 36.6483L30.875 34.6723ZM32.4222 34.1957C31.9744 34.4422 31.4812 34.5773 30.8749 34.6724L31.1847 36.6482C31.9079 36.5348 32.655 36.3506 33.3868 35.9478L32.4222 34.1957ZM34.1958 32.4223C33.7846 33.1694 33.1695 33.7844 32.4223 34.1957L33.3867 35.9478C34.4656 35.354 35.354 34.4658 35.948 33.3865L34.1958 32.4223ZM34.6722 30.875C34.5774 31.4809 34.4422 31.9743 34.1957 32.4223L35.948 33.3864C36.3505 32.6549 36.535 31.9079 36.6482 31.1843L34.6722 30.875ZM34.8974 28.6256C34.8232 29.5575 34.7643 30.2871 34.6723 30.8749L36.6482 31.1844C36.7546 30.5051 36.819 29.6902 36.8911 28.7845L34.8974 28.6256ZM34.9353 28.1532L34.8975 28.6252L36.8911 28.7849L36.9289 28.313L34.9353 28.1532ZM35.1107 26.7314C35.0256 27.0407 34.9974 27.3748 34.9353 28.1535L36.9289 28.3127C36.998 27.4473 37.0166 27.3437 37.0391 27.2618L35.1107 26.7314ZM35.4448 25.9246C35.3 26.1789 35.1877 26.4503 35.1104 26.7325L37.0394 27.2606C37.0726 27.1395 37.1207 27.0232 37.1828 26.9142L35.4448 25.9246ZM36.3264 24.7952C35.8189 25.3906 35.6037 25.6459 35.4451 25.924L37.1825 26.9148C37.2251 26.84 37.2861 26.7524 37.8484 26.0926L36.3264 24.7952ZM36.6337 24.4347L36.3264 24.7952L37.8485 26.0926L38.1557 25.7321L36.6337 24.4347ZM36.6388 24.4287L36.6335 24.4349L38.1559 25.732L38.1612 25.7257L36.6388 24.4287ZM38.0648 22.6851C37.7151 23.1644 37.2428 23.7198 36.6388 24.4286L38.1612 25.7257C38.7481 25.0369 39.2767 24.4174 39.6806 23.8636L38.0648 22.6851ZM38.8217 21.254C38.6793 21.7451 38.4261 22.1895 38.0647 22.6851L39.6807 23.8635C40.1123 23.2717 40.5101 22.613 40.7426 21.8109L38.8217 21.254ZM38.8218 18.7461C39.0594 19.5652 39.0594 20.4348 38.8218 21.2538L40.7425 21.8111C41.0858 20.628 41.0858 19.3719 40.7425 18.1888L38.8218 18.7461ZM38.0648 17.3151C38.4261 17.8104 38.6793 18.2549 38.8217 18.7459L40.7426 18.189C40.51 17.3869 40.1123 16.7282 39.6806 16.1364L38.0648 17.3151ZM36.6335 15.5652C37.2398 16.2765 37.7141 16.8342 38.0648 17.315L39.6806 16.1365C39.2755 15.5811 38.7451 14.9595 38.1555 14.2678L36.6335 15.5652ZM36.3262 15.2045L36.6333 15.565L38.1557 14.268L37.8486 13.9075L36.3262 15.2045ZM35.4452 14.0762C35.6038 14.3541 35.8189 14.6093 36.3263 15.2047L37.8485 13.9074C37.2861 13.2475 37.2251 13.1599 37.1824 13.085L35.4452 14.0762ZM35.1105 13.2676C35.1877 13.5497 35.3 13.8211 35.4448 14.0754L37.1828 13.0858C37.1208 12.9768 37.0726 12.8605 37.0394 12.7393L35.1105 13.2676ZM34.9353 11.8464C34.9974 12.6252 35.0257 12.9591 35.1107 13.2685L37.0392 12.7384C37.0166 12.6563 36.998 12.5525 36.9289 11.6873L34.9353 11.8464ZM34.8975 11.3747L34.9353 11.8467L36.9289 11.687L36.8911 11.215L34.8975 11.3747ZM34.6723 9.12497C34.7643 9.71286 34.8232 10.4424 34.8974 11.3743L36.8911 11.2154C36.8189 10.3097 36.7546 9.49481 36.6482 8.81552L34.6723 9.12497ZM34.1957 7.57761C34.4422 8.02556 34.5774 8.51896 34.6722 9.12484L36.6482 8.81565C36.535 8.09193 36.3505 7.34499 35.948 6.61347L34.1957 7.57761ZM32.4223 5.80424C33.1694 6.21547 33.7846 6.83053 34.1958 7.57766L35.948 6.61341C35.354 5.53417 34.4656 4.64594 33.3867 4.0521L32.4223 5.80424ZM30.875 5.32766C31.4811 5.42259 31.9744 5.55778 32.4224 5.80427L33.3866 4.05206C32.655 3.64946 31.908 3.46508 31.1845 3.35175L30.875 5.32766ZM28.6256 5.10242C29.5576 5.17676 30.2872 5.23561 30.8751 5.32767L31.1845 3.35175C30.5052 3.24539 29.6904 3.181 28.7847 3.10875L28.6256 5.10242ZM28.1536 5.06474L28.6256 5.10241L28.7847 3.10875L28.3128 3.07108L28.1536 5.06474ZM26.7323 4.88956C27.0411 4.97418 27.3739 5.00253 28.1537 5.06475L28.3127 3.07108C27.4481 3.0021 27.3435 2.98332 27.2607 2.96063L26.7323 4.88956ZM25.9243 4.55494C26.1785 4.69974 26.4499 4.81221 26.7323 4.88957L27.2607 2.96062C27.1398 2.92751 27.0235 2.87933 26.9143 2.81716L25.9243 4.55494ZM24.7953 3.67377C25.3907 4.18107 25.6461 4.39632 25.924 4.55477L26.9146 2.81733C26.84 2.77481 26.7526 2.7139 26.0924 2.15143L24.7953 3.67377ZM24.4348 3.36643L24.7951 3.67359L26.0926 2.15161L25.7323 1.84445L24.4348 3.36643ZM24.4324 3.36441L24.4349 3.36654L25.7322 1.84433L25.7297 1.8422L24.4324 3.36441ZM22.6851 1.93528C23.1653 2.28547 23.722 2.759 24.4325 3.36445L25.7296 1.84217C25.0392 1.2538 24.4183 0.723912 23.8635 0.319312L22.6851 1.93528ZM21.254 1.17817C21.7449 1.3206 22.1894 1.57388 22.6851 1.93531L23.8634 0.319278C23.2716 -0.112221 22.6131 -0.509998 21.8112 -0.742627L21.254 1.17817ZM21.5715 11.5714C21.5715 12.4393 20.8679 13.1428 20 13.1428V15.1428C21.9725 15.1428 23.5715 13.5439 23.5715 11.5714H21.5715ZM20 9.99999C20.8679 9.99999 21.5715 10.7035 21.5715 11.5714H23.5715C23.5715 9.59898 21.9725 7.99999 20 7.99999V9.99999ZM18.4286 11.5714C18.4286 10.7035 19.1321 9.99999 20 9.99999V7.99999C18.0276 7.99999 16.4286 9.59898 16.4286 11.5714H18.4286ZM20 13.1428C19.1321 13.1428 18.4286 12.4393 18.4286 11.5714H16.4286C16.4286 13.5439 18.0276 15.1428 20 15.1428V13.1428ZM18.2857 18.5714H20V16.5714H18.2857V18.5714ZM17.7807 18.7806C17.9146 18.6467 18.0963 18.5714 18.2857 18.5714V16.5714C17.5659 16.5714 16.8755 16.8574 16.3665 17.3664L17.7807 18.7806ZM17.5715 19.2857C17.5715 19.0963 17.6467 18.9146 17.7807 18.7806L16.3665 17.3664C15.8574 17.8754 15.5715 18.5658 15.5715 19.2857H17.5715ZM17.7807 19.7908C17.6467 19.6568 17.5715 19.4751 17.5715 19.2857H15.5715C15.5715 20.0056 15.8574 20.696 16.3665 21.205L17.7807 19.7908ZM18.2857 20C18.0963 20 17.9146 19.9247 17.7807 19.7908L16.3665 21.205C16.8755 21.714 17.5659 22 18.2857 22V20ZM20 20H18.2857V22H20V20ZM21 29.2857V21H19V29.2857H21ZM21.2092 29.7908C21.0753 29.6568 21 29.4751 21 29.2857H19C19 30.0056 19.286 30.696 19.795 31.205L21.2092 29.7908ZM21.7143 30C21.5249 30 21.3432 29.9247 21.2092 29.7908L19.795 31.205C20.3041 31.714 20.9944 32 21.7143 32V30ZM22.2194 29.7908C22.0854 29.9247 21.9038 30 21.7143 30V32C22.4342 32 23.1246 31.714 23.6336 31.205L22.2194 29.7908ZM22.4286 29.2857C22.4286 29.4752 22.3533 29.6568 22.2194 29.7908L23.6336 31.205C24.1426 30.696 24.4286 30.0056 24.4286 29.2857H22.4286ZM22.4286 21V29.2857H24.4286V21H22.4286ZM21.7173 19.2827C22.1727 19.7382 22.4286 20.3559 22.4286 21H24.4286C24.4286 19.8255 23.962 18.699 23.1315 17.8685L21.7173 19.2827ZM20 18.5714C20.6441 18.5714 21.2618 18.8273 21.7173 19.2827L23.1315 17.8685C22.301 17.038 21.1746 16.5714 20 16.5714V18.5714Z" fill="url(#paint1_linear_15_1182)" mask="url(#path-1-inside-1_15_1182)"/>
7
- <defs>
8
- <linearGradient id="paint0_linear_15_1182" x1="20" y1="1.0899" x2="20.6375" y2="39.9999" gradientUnits="userSpaceOnUse">
9
- <stop stop-color="#2591E4"/>
10
- <stop offset="1" stop-color="#1769B0"/>
11
- </linearGradient>
12
- <linearGradient id="paint1_linear_15_1182" x1="20.9771" y1="39.4328" x2="20" y2="1.42296" gradientUnits="userSpaceOnUse">
13
- <stop stop-color="#2591E4"/>
14
- <stop offset="1" stop-color="#1769B0"/>
15
- </linearGradient>
16
- </defs>
17
- </svg>
1
+ <svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="path-1-inside-1_15_1182" fill="white">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M21.5326 0.217769C20.5315 -0.0725897 19.4684 -0.0725897 18.4674 0.217769C17.821 0.4053 17.2694 0.730828 16.7257 1.1273C16.2076 1.50513 15.618 2.00757 14.9165 2.6054L14.9165 2.60544L14.556 2.9126C13.9283 3.44749 13.757 3.58556 13.5806 3.68605C13.399 3.78954 13.2051 3.86986 13.0035 3.92509C12.8077 3.97875 12.5889 4.00232 11.7668 4.06791L11.2947 4.10558C10.3759 4.17888 9.6038 4.2405 8.97024 4.33971C8.30544 4.44384 7.68528 4.60362 7.09554 4.92817C6.18235 5.43072 5.4307 6.18235 4.92817 7.09554C4.6036 7.68528 4.44382 8.30544 4.33971 8.97024C4.2405 9.60367 4.17891 10.3757 4.10563 11.2942L4.10558 11.2947L4.06791 11.7668C4.00232 12.5889 3.97875 12.8077 3.9251 13.0035C3.86986 13.2051 3.78954 13.399 3.68605 13.5806C3.58554 13.757 3.44749 13.9284 2.91258 14.556L2.60542 14.9165C2.00757 15.618 1.50514 16.2076 1.1273 16.7258C0.730829 17.2693 0.4053 17.8209 0.217769 18.4674C-0.0725897 19.4685 -0.0725897 20.5314 0.217769 21.5325C0.4053 22.179 0.730829 22.7306 1.1273 23.2743C1.50512 23.7925 2.00757 24.382 2.6054 25.0834L2.91258 25.4439C3.44749 26.0715 3.58554 26.243 3.68605 26.4194C3.78954 26.601 3.86986 26.7949 3.9251 26.9966C3.97875 27.1922 4.00232 27.4111 4.06791 28.2331L4.10558 28.7052C4.17888 29.6241 4.24048 30.3961 4.33971 31.0296C4.44382 31.6944 4.6036 32.3146 4.92817 32.9044C5.4307 33.8176 6.18235 34.5692 7.09554 35.0717C7.68528 35.3964 8.30544 35.5561 8.97024 35.6603C9.60384 35.7595 10.376 35.8211 11.2949 35.8944L11.7668 35.932C12.5889 35.9976 12.8077 36.0212 13.0035 36.0748C13.2051 36.13 13.399 36.2105 13.5806 36.3139C13.757 36.4143 13.9283 36.5525 14.556 37.0873L14.9165 37.3946L14.9215 37.3988C15.6208 37.9947 16.2088 38.4958 16.7257 38.8726C17.2694 39.2691 17.821 39.5946 18.4674 39.7822C19.4684 40.0725 20.5315 40.0725 21.5326 39.7822C22.179 39.5946 22.7305 39.2691 23.2743 38.8726C23.7917 38.4954 24.3805 37.9936 25.0807 37.3968L25.0834 37.3946L25.4439 37.0873C26.0716 36.5525 26.2431 36.4143 26.4193 36.3139C26.601 36.2105 26.7948 36.13 26.9965 36.0748C27.1923 36.0212 27.411 35.9976 28.2332 35.932L28.7051 35.8944C29.624 35.8211 30.3962 35.7595 31.0298 35.6603C31.6945 35.5561 32.3147 35.3964 32.9045 35.0717C33.8175 34.5692 34.5693 33.8176 35.0719 32.9044C35.3964 32.3146 35.5562 31.6944 35.6602 31.0296C35.7595 30.3961 35.8211 29.6239 35.8943 28.705L35.9321 28.2331C35.9977 27.4111 36.0211 27.1922 36.0749 26.9966C36.1301 26.7949 36.2104 26.601 36.3138 26.4194C36.4144 26.243 36.5525 26.0715 37.0874 25.4439L37.3947 25.0834L37.4 25.0772C37.9954 24.3783 38.4959 23.7909 38.8727 23.2743C39.2692 22.7306 39.5947 22.179 39.7821 21.5325C40.0726 20.5314 40.0726 19.4685 39.7821 18.4674C39.5947 17.8209 39.2692 17.2693 38.8727 16.7258C38.4948 16.2076 37.9925 15.618 37.3945 14.9165L37.0874 14.556C36.5525 13.9284 36.4144 13.757 36.3138 13.5806C36.2104 13.399 36.1301 13.2051 36.0749 13.0035C36.0211 12.8077 35.9977 12.5889 35.9321 11.7668L35.8943 11.2949C35.8211 10.376 35.7595 9.60384 35.6602 8.97024C35.5562 8.30544 35.3964 7.68528 35.0719 7.09554C34.5693 6.18235 33.8175 5.4307 32.9045 4.92817C32.3147 4.60362 31.6945 4.44384 31.0298 4.33971C30.3962 4.2405 29.624 4.17888 28.7051 4.10558L28.2332 4.06791C27.411 4.00232 27.1923 3.97875 26.9965 3.92509C26.7948 3.86986 26.601 3.78954 26.4193 3.68605C26.2431 3.58556 26.0716 3.44749 25.4439 2.9126L25.0836 2.60544L25.0811 2.60331C24.3806 2.0064 23.7918 1.50469 23.2743 1.1273C22.7305 0.730828 22.179 0.4053 21.5326 0.217769ZM20 14.1428C21.4202 14.1428 22.5715 12.9916 22.5715 11.5714C22.5715 10.1513 21.4202 8.99999 20 8.99999C18.5799 8.99999 17.4286 10.1513 17.4286 11.5714C17.4286 12.9916 18.5799 14.1428 20 14.1428ZM20 17.5714H18.2857C17.8311 17.5714 17.3951 17.752 17.0736 18.0735C16.7521 18.395 16.5715 18.831 16.5715 19.2857C16.5715 19.7404 16.7521 20.1764 17.0736 20.4979C17.3951 20.8194 17.8311 21 18.2857 21H20V29.2857C20 29.7404 20.1806 30.1764 20.5021 30.4979C20.8236 30.8194 21.2597 31 21.7143 31C22.169 31 22.605 30.8194 22.9265 30.4979C23.248 30.1764 23.4286 29.7404 23.4286 29.2857V21C23.4286 20.0907 23.0674 19.2186 22.4244 18.5756C21.7814 17.9326 20.9093 17.5714 20 17.5714Z"/>
4
+ </mask>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M21.5326 0.217769C20.5315 -0.0725897 19.4684 -0.0725897 18.4674 0.217769C17.821 0.4053 17.2694 0.730828 16.7257 1.1273C16.2076 1.50513 15.618 2.00757 14.9165 2.6054L14.9165 2.60544L14.556 2.9126C13.9283 3.44749 13.757 3.58556 13.5806 3.68605C13.399 3.78954 13.2051 3.86986 13.0035 3.92509C12.8077 3.97875 12.5889 4.00232 11.7668 4.06791L11.2947 4.10558C10.3759 4.17888 9.6038 4.2405 8.97024 4.33971C8.30544 4.44384 7.68528 4.60362 7.09554 4.92817C6.18235 5.43072 5.4307 6.18235 4.92817 7.09554C4.6036 7.68528 4.44382 8.30544 4.33971 8.97024C4.2405 9.60367 4.17891 10.3757 4.10563 11.2942L4.10558 11.2947L4.06791 11.7668C4.00232 12.5889 3.97875 12.8077 3.9251 13.0035C3.86986 13.2051 3.78954 13.399 3.68605 13.5806C3.58554 13.757 3.44749 13.9284 2.91258 14.556L2.60542 14.9165C2.00757 15.618 1.50514 16.2076 1.1273 16.7258C0.730829 17.2693 0.4053 17.8209 0.217769 18.4674C-0.0725897 19.4685 -0.0725897 20.5314 0.217769 21.5325C0.4053 22.179 0.730829 22.7306 1.1273 23.2743C1.50512 23.7925 2.00757 24.382 2.6054 25.0834L2.91258 25.4439C3.44749 26.0715 3.58554 26.243 3.68605 26.4194C3.78954 26.601 3.86986 26.7949 3.9251 26.9966C3.97875 27.1922 4.00232 27.4111 4.06791 28.2331L4.10558 28.7052C4.17888 29.6241 4.24048 30.3961 4.33971 31.0296C4.44382 31.6944 4.6036 32.3146 4.92817 32.9044C5.4307 33.8176 6.18235 34.5692 7.09554 35.0717C7.68528 35.3964 8.30544 35.5561 8.97024 35.6603C9.60384 35.7595 10.376 35.8211 11.2949 35.8944L11.7668 35.932C12.5889 35.9976 12.8077 36.0212 13.0035 36.0748C13.2051 36.13 13.399 36.2105 13.5806 36.3139C13.757 36.4143 13.9283 36.5525 14.556 37.0873L14.9165 37.3946L14.9215 37.3988C15.6208 37.9947 16.2088 38.4958 16.7257 38.8726C17.2694 39.2691 17.821 39.5946 18.4674 39.7822C19.4684 40.0725 20.5315 40.0725 21.5326 39.7822C22.179 39.5946 22.7305 39.2691 23.2743 38.8726C23.7917 38.4954 24.3805 37.9936 25.0807 37.3968L25.0834 37.3946L25.4439 37.0873C26.0716 36.5525 26.2431 36.4143 26.4193 36.3139C26.601 36.2105 26.7948 36.13 26.9965 36.0748C27.1923 36.0212 27.411 35.9976 28.2332 35.932L28.7051 35.8944C29.624 35.8211 30.3962 35.7595 31.0298 35.6603C31.6945 35.5561 32.3147 35.3964 32.9045 35.0717C33.8175 34.5692 34.5693 33.8176 35.0719 32.9044C35.3964 32.3146 35.5562 31.6944 35.6602 31.0296C35.7595 30.3961 35.8211 29.6239 35.8943 28.705L35.9321 28.2331C35.9977 27.4111 36.0211 27.1922 36.0749 26.9966C36.1301 26.7949 36.2104 26.601 36.3138 26.4194C36.4144 26.243 36.5525 26.0715 37.0874 25.4439L37.3947 25.0834L37.4 25.0772C37.9954 24.3783 38.4959 23.7909 38.8727 23.2743C39.2692 22.7306 39.5947 22.179 39.7821 21.5325C40.0726 20.5314 40.0726 19.4685 39.7821 18.4674C39.5947 17.8209 39.2692 17.2693 38.8727 16.7258C38.4948 16.2076 37.9925 15.618 37.3945 14.9165L37.0874 14.556C36.5525 13.9284 36.4144 13.757 36.3138 13.5806C36.2104 13.399 36.1301 13.2051 36.0749 13.0035C36.0211 12.8077 35.9977 12.5889 35.9321 11.7668L35.8943 11.2949C35.8211 10.376 35.7595 9.60384 35.6602 8.97024C35.5562 8.30544 35.3964 7.68528 35.0719 7.09554C34.5693 6.18235 33.8175 5.4307 32.9045 4.92817C32.3147 4.60362 31.6945 4.44384 31.0298 4.33971C30.3962 4.2405 29.624 4.17888 28.7051 4.10558L28.2332 4.06791C27.411 4.00232 27.1923 3.97875 26.9965 3.92509C26.7948 3.86986 26.601 3.78954 26.4193 3.68605C26.2431 3.58556 26.0716 3.44749 25.4439 2.9126L25.0836 2.60544L25.0811 2.60331C24.3806 2.0064 23.7918 1.50469 23.2743 1.1273C22.7305 0.730828 22.179 0.4053 21.5326 0.217769ZM20 14.1428C21.4202 14.1428 22.5715 12.9916 22.5715 11.5714C22.5715 10.1513 21.4202 8.99999 20 8.99999C18.5799 8.99999 17.4286 10.1513 17.4286 11.5714C17.4286 12.9916 18.5799 14.1428 20 14.1428ZM20 17.5714H18.2857C17.8311 17.5714 17.3951 17.752 17.0736 18.0735C16.7521 18.395 16.5715 18.831 16.5715 19.2857C16.5715 19.7404 16.7521 20.1764 17.0736 20.4979C17.3951 20.8194 17.8311 21 18.2857 21H20V29.2857C20 29.7404 20.1806 30.1764 20.5021 30.4979C20.8236 30.8194 21.2597 31 21.7143 31C22.169 31 22.605 30.8194 22.9265 30.4979C23.248 30.1764 23.4286 29.7404 23.4286 29.2857V21C23.4286 20.0907 23.0674 19.2186 22.4244 18.5756C21.7814 17.9326 20.9093 17.5714 20 17.5714Z" fill="url(#paint0_linear_15_1182)"/>
6
+ <path d="M18.4674 0.217769L18.1888 -0.742648L18.1887 -0.742627L18.4674 0.217769ZM21.5326 0.217769L21.8112 -0.742627L21.8112 -0.742648L21.5326 0.217769ZM16.7257 1.1273L16.1365 0.319278L16.1365 0.319311L16.7257 1.1273ZM14.9165 2.6054L15.5567 3.37367L15.5651 3.3665L14.9165 2.6054ZM14.9165 2.60544L14.2762 1.83717L14.2678 1.84432L14.9165 2.60544ZM14.556 2.9126L15.2046 3.67372L15.2046 3.67371L14.556 2.9126ZM13.5806 3.68605L13.0855 2.81718L13.0855 2.81719L13.5806 3.68605ZM13.0035 3.92509L12.7393 2.96063L12.7392 2.96066L13.0035 3.92509ZM11.7668 4.06791L11.8464 5.06475L11.8464 5.06474L11.7668 4.06791ZM11.2947 4.10558L11.3742 5.10242L11.3743 5.10242L11.2947 4.10558ZM8.97024 4.33971L8.81554 3.35175L8.8155 3.35175L8.97024 4.33971ZM7.09554 4.92817L6.6134 4.05207L6.61339 4.05207L7.09554 4.92817ZM4.92817 7.09554L5.80425 7.57769L5.80427 7.57766L4.92817 7.09554ZM4.33971 8.97024L5.32766 9.12498L5.32767 9.12496L4.33971 8.97024ZM4.10563 11.2942L5.10245 11.3738L5.10246 11.3737L4.10563 11.2942ZM4.10558 11.2947L3.10876 11.2151L3.10875 11.2152L4.10558 11.2947ZM4.06791 11.7668L5.06475 11.8464V11.8464L4.06791 11.7668ZM3.9251 13.0035L2.96066 12.7392L2.96063 12.7393L3.9251 13.0035ZM3.68605 13.5806L4.55487 14.0757L4.55491 14.0757L3.68605 13.5806ZM2.91258 14.556L2.15148 13.9074L2.15145 13.9074L2.91258 14.556ZM2.60542 14.9165L3.36652 15.5651L3.36655 15.5651L2.60542 14.9165ZM1.1273 16.7258L1.93521 17.3151L1.93528 17.315L1.1273 16.7258ZM0.217769 18.4674L1.17819 18.746L1.17819 18.746L0.217769 18.4674ZM0.217769 21.5325L1.17819 21.2539L1.17819 21.2539L0.217769 21.5325ZM1.1273 23.2743L0.319278 23.8635L0.319297 23.8635L1.1273 23.2743ZM2.6054 25.0834L3.36654 24.4349L3.36646 24.4348L2.6054 25.0834ZM2.91258 25.4439L2.15144 26.0925L2.15152 26.0926L2.91258 25.4439ZM3.68605 26.4194L2.81713 26.9143L2.81716 26.9144L3.68605 26.4194ZM3.9251 26.9966L2.96062 27.2607L2.9607 27.261L3.9251 26.9966ZM4.06791 28.2331L5.06475 28.1536L5.06474 28.1535L4.06791 28.2331ZM4.10558 28.7052L5.10242 28.6257L5.10242 28.6257L4.10558 28.7052ZM4.33971 31.0296L5.32767 30.8749L5.32766 30.8749L4.33971 31.0296ZM4.92817 32.9044L5.80428 32.4223L5.80426 32.4222L4.92817 32.9044ZM7.09554 35.0717L7.57783 34.1957L7.57766 34.1956L7.09554 35.0717ZM8.97024 35.6603L8.81535 36.6482L8.81552 36.6483L8.97024 35.6603ZM11.2949 35.8944L11.3743 34.8975L11.3743 34.8975L11.2949 35.8944ZM11.7668 35.932L11.8464 34.9352L11.8463 34.9351L11.7668 35.932ZM13.0035 36.0748L12.7393 37.0393H12.7393L13.0035 36.0748ZM13.5806 36.3139L13.0858 37.1829L13.0858 37.1829L13.5806 36.3139ZM14.556 37.0873L15.2047 36.3263L15.2045 36.3261L14.556 37.0873ZM14.9165 37.3946L14.2678 38.1556L14.2678 38.1556L14.9165 37.3946ZM14.9215 37.3988L14.2727 38.1598L14.2729 38.1599L14.9215 37.3988ZM16.7257 38.8726L17.3149 38.0646L17.3147 38.0645L16.7257 38.8726ZM18.4674 39.7822L18.1886 40.7426L18.1889 40.7427L18.4674 39.7822ZM21.5326 39.7822L21.8111 40.7427L21.8114 40.7426L21.5326 39.7822ZM23.2743 38.8726L22.6852 38.0645L22.6851 38.0646L23.2743 38.8726ZM25.0807 37.3968L24.4323 36.6355L24.4321 36.6358L25.0807 37.3968ZM25.0834 37.3946L25.7317 38.1559L25.7321 38.1556L25.0834 37.3946ZM25.4439 37.0873L24.7954 36.326L24.7951 36.3263L25.4439 37.0873ZM26.4193 36.3139L25.9245 35.4449L25.9243 35.445L26.4193 36.3139ZM26.9965 36.0748L26.7324 35.1103L26.7324 35.1103L26.9965 36.0748ZM28.2332 35.932L28.1538 34.9351L28.1537 34.9352L28.2332 35.932ZM28.7051 35.8944L28.6257 34.8975L28.6257 34.8975L28.7051 35.8944ZM31.0298 35.6603L31.1845 36.6483L31.1847 36.6482L31.0298 35.6603ZM32.9045 35.0717L32.4223 34.1957L32.4222 34.1957L32.9045 35.0717ZM35.0719 32.9044L35.948 33.3865L35.948 33.3864L35.0719 32.9044ZM35.6602 31.0296L34.6723 30.8749L34.6722 30.875L35.6602 31.0296ZM35.8943 28.705L34.8975 28.6252L34.8974 28.6256L35.8943 28.705ZM35.9321 28.2331L36.9289 28.313L36.9289 28.3127L35.9321 28.2331ZM36.0749 26.9966L37.0391 27.2618L37.0394 27.2606L36.0749 26.9966ZM36.3138 26.4194L35.4451 25.924L35.4448 25.9246L36.3138 26.4194ZM37.0874 25.4439L37.8484 26.0926L37.8485 26.0926L37.0874 25.4439ZM37.3947 25.0834L38.1557 25.7321L38.1559 25.732L37.3947 25.0834ZM37.4 25.0772L36.6388 24.4286L36.6388 24.4287L37.4 25.0772ZM38.8727 23.2743L39.6806 23.8636L39.6807 23.8635L38.8727 23.2743ZM39.7821 21.5325L38.8218 21.2538L38.8217 21.254L39.7821 21.5325ZM39.7821 18.4674L38.8217 18.7459L38.8218 18.7461L39.7821 18.4674ZM38.8727 16.7258L38.0648 17.315L38.0648 17.3151L38.8727 16.7258ZM37.3945 14.9165L36.6333 15.565L36.6335 15.5652L37.3945 14.9165ZM37.0874 14.556L37.8486 13.9075L37.8485 13.9074L37.0874 14.556ZM36.3138 13.5806L35.4448 14.0754L35.4452 14.0762L36.3138 13.5806ZM36.0749 13.0035L37.0394 12.7393L37.0392 12.7384L36.0749 13.0035ZM35.9321 11.7668L36.9289 11.6873L36.9289 11.687L35.9321 11.7668ZM35.8943 11.2949L34.8974 11.3743L34.8975 11.3747L35.8943 11.2949ZM35.6602 8.97024L34.6722 9.12484L34.6723 9.12497L35.6602 8.97024ZM35.0719 7.09554L35.948 6.61347L35.948 6.61341L35.0719 7.09554ZM32.9045 4.92817L33.3867 4.0521L33.3866 4.05206L32.9045 4.92817ZM31.0298 4.33971L31.1845 3.35175L31.1845 3.35175L31.0298 4.33971ZM28.7051 4.10558L28.6256 5.10241L28.6256 5.10242L28.7051 4.10558ZM28.2332 4.06791L28.3128 3.07108L28.3127 3.07108L28.2332 4.06791ZM26.9965 3.92509L27.2607 2.96063L27.2607 2.96062L26.9965 3.92509ZM26.4193 3.68605L25.924 4.55477L25.9243 4.55494L26.4193 3.68605ZM25.4439 2.9126L24.7951 3.67359L24.7953 3.67377L25.4439 2.9126ZM25.0836 2.60544L25.7323 1.84445L25.7322 1.84433L25.0836 2.60544ZM25.0811 2.60331L25.7297 1.8422L25.7296 1.84217L25.0811 2.60331ZM23.2743 1.1273L23.8635 0.319312L23.8634 0.319278L23.2743 1.1273ZM17.0736 18.0735L17.7807 18.7806L17.7807 18.7806L17.0736 18.0735ZM17.0736 20.4979L17.7807 19.7908L17.7807 19.7908L17.0736 20.4979ZM20 21H21V20H20V21ZM20.5021 30.4979L21.2092 29.7908L21.2092 29.7908L20.5021 30.4979ZM22.9265 30.4979L22.2194 29.7908L22.2194 29.7908L22.9265 30.4979ZM22.4244 18.5756L21.7173 19.2827H21.7173L22.4244 18.5756ZM18.7459 1.17819C19.565 0.940605 20.4349 0.940605 21.254 1.17819L21.8112 -0.742648C20.6281 -1.08578 19.3718 -1.08578 18.1888 -0.742648L18.7459 1.17819ZM17.3148 1.93531C17.8106 1.57388 18.2551 1.3206 18.746 1.17817L18.1887 -0.742627C17.3869 -0.509998 16.7283 -0.112221 16.1365 0.319278L17.3148 1.93531ZM15.5651 3.3665C16.2767 2.76012 16.8341 2.28589 17.3149 1.93528L16.1365 0.319311C15.581 0.724374 14.9593 1.25503 14.2679 1.8443L15.5651 3.3665ZM15.5566 3.37366L15.5567 3.37362L14.2763 1.83718L14.2763 1.83722L15.5566 3.37366ZM15.2046 3.67371L15.5651 3.36655L14.2678 1.84432L13.9074 2.15149L15.2046 3.67371ZM14.0756 4.55492C14.3539 4.39637 14.6095 4.18091 15.2046 3.67372L13.9074 2.15148C13.2472 2.71406 13.16 2.77475 13.0855 2.81718L14.0756 4.55492ZM13.2677 4.88956C13.55 4.81221 13.8214 4.69975 14.0757 4.55491L13.0855 2.81719C12.9765 2.87933 12.8601 2.92751 12.7393 2.96063L13.2677 4.88956ZM11.8464 5.06474C12.6259 5.00254 12.9589 4.97418 13.2678 4.88953L12.7392 2.96066C12.6565 2.98332 12.5519 3.00209 11.6873 3.07108L11.8464 5.06474ZM11.3743 5.10242L11.8464 5.06475L11.6873 3.07108L11.2152 3.10875L11.3743 5.10242ZM9.12495 5.32767C9.71284 5.23561 10.4423 5.17676 11.3742 5.10242L11.2152 3.10875C10.3095 3.181 9.49475 3.24539 8.81554 3.35175L9.12495 5.32767ZM7.57767 5.80426C8.02556 5.55778 8.51892 5.42259 9.12499 5.32766L8.8155 3.35175C8.09197 3.46508 7.34499 3.64946 6.6134 4.05207L7.57767 5.80426ZM5.80427 7.57766C6.21545 6.83048 6.83046 6.21548 7.57768 5.80426L6.61339 4.05207C5.53423 4.64597 4.64596 5.53421 4.05207 6.61341L5.80427 7.57766ZM5.32767 9.12496C5.42257 8.51891 5.55776 8.02557 5.80425 7.57769L4.05208 6.61338C3.64944 7.34498 3.46506 8.09198 3.35175 8.81553L5.32767 9.12496ZM5.10246 11.3737C5.17679 10.442 5.23561 9.71273 5.32766 9.12498L3.35175 8.81551C3.24539 9.49461 3.18103 10.3093 3.1088 11.2147L5.10246 11.3737ZM5.10241 11.3744L5.10245 11.3738L3.1088 11.2145L3.10876 11.2151L5.10241 11.3744ZM5.06475 11.8464L5.10242 11.3743L3.10875 11.2152L3.07108 11.6873L5.06475 11.8464ZM4.88953 13.2678C4.97418 12.9589 5.00254 12.6259 5.06475 11.8464L3.07108 11.6873C3.00209 12.5519 2.98332 12.6565 2.96066 12.7392L4.88953 13.2678ZM4.55491 14.0757C4.69975 13.8215 4.81221 13.55 4.88956 13.2677L2.96063 12.7393C2.92751 12.8601 2.87933 12.9765 2.81719 13.0855L4.55491 14.0757ZM3.67368 15.2047C4.18097 14.6094 4.39633 14.3539 4.55487 14.0757L2.81723 13.0855C2.77476 13.16 2.714 13.2473 2.15148 13.9074L3.67368 15.2047ZM3.36655 15.5651L3.67371 15.2046L2.15145 13.9074L1.84428 14.2679L3.36655 15.5651ZM1.93528 17.315C2.28591 16.8342 2.76017 16.2766 3.36652 15.5651L1.84431 14.2678C1.25498 14.9594 0.724372 15.5811 0.319312 16.1366L1.93528 17.315ZM1.17819 18.746C1.32062 18.2549 1.57388 17.8104 1.93521 17.3151L0.319382 16.1365C-0.112223 16.7282 -0.510022 17.3868 -0.742651 18.1889L1.17819 18.746ZM1.17819 21.2539C0.940605 20.4348 0.940605 19.5651 1.17819 18.746L-0.742648 18.1889C-1.08578 19.3719 -1.08578 20.628 -0.742648 21.811L1.17819 21.2539ZM1.93531 22.6852C1.57389 22.1895 1.32062 21.745 1.17819 21.2539L-0.742651 21.811C-0.510024 22.6131 -0.112232 23.2717 0.319278 23.8635L1.93531 22.6852ZM3.36646 24.4348C2.7601 23.7234 2.28587 23.1659 1.9353 22.6852L0.319297 23.8635C0.724372 24.419 1.25505 25.0407 1.84434 25.7321L3.36646 24.4348ZM3.67373 24.7954L3.36654 24.4349L1.84425 25.732L2.15144 26.0925L3.67373 24.7954ZM4.55497 25.9245C4.39638 25.646 4.18096 25.3905 3.67364 24.7953L2.15152 26.0926C2.71401 26.7526 2.77471 26.8399 2.81713 26.9143L4.55497 25.9245ZM4.88957 26.7324C4.81221 26.4499 4.69974 26.1786 4.55494 25.9244L2.81716 26.9144C2.87933 27.0235 2.92751 27.1399 2.96062 27.2607L4.88957 26.7324ZM5.06474 28.1535C5.00255 27.3741 4.97419 27.0409 4.88949 26.7321L2.9607 27.261C2.98331 27.3435 3.00209 27.448 3.07108 28.3126L5.06474 28.1535ZM5.10242 28.6257L5.06475 28.1536L3.07108 28.3126L3.10875 28.7848L5.10242 28.6257ZM5.32766 30.8749C5.23559 30.287 5.17676 29.5577 5.10242 28.6257L3.10875 28.7847C3.181 29.6905 3.24537 30.5051 3.35175 31.1844L5.32766 30.8749ZM5.80426 32.4222C5.55776 31.9743 5.42257 31.481 5.32767 30.8749L3.35175 31.1844C3.46506 31.9079 3.64944 32.6549 4.05208 33.3865L5.80426 32.4222ZM7.57766 34.1956C6.83046 33.7845 6.21546 33.1695 5.80428 32.4223L4.05205 33.3865C4.64595 34.4657 5.53424 35.354 6.61341 35.9478L7.57766 34.1956ZM9.12513 34.6724C8.51878 34.5773 8.02556 34.4422 7.57783 34.1957L6.61324 35.9478C7.34499 36.3506 8.09211 36.5348 8.81535 36.6482L9.12513 34.6724ZM11.3743 34.8975C10.4424 34.8233 9.71286 34.7644 9.12497 34.6723L8.81552 36.6483C9.49481 36.7546 10.3097 36.819 11.2154 36.8912L11.3743 34.8975ZM11.8463 34.9351L11.3743 34.8975L11.2154 36.8912L11.6874 36.9288L11.8463 34.9351ZM13.2676 35.1103C12.9589 35.0258 12.6261 34.9974 11.8464 34.9352L11.6873 36.9288C12.5517 36.9978 12.6565 37.0166 12.7393 37.0393L13.2676 35.1103ZM14.0754 35.4449C13.8216 35.3004 13.5503 35.1877 13.2676 35.1103L12.7393 37.0393C12.8599 37.0723 12.9763 37.1205 13.0858 37.1829L14.0754 35.4449ZM15.2045 36.3261C14.6098 35.8194 14.3539 35.6034 14.0754 35.4449L13.0858 37.1829C13.1601 37.2252 13.2469 37.2857 13.9075 37.8485L15.2045 36.3261ZM15.5652 36.6336L15.2047 36.3263L13.9073 37.8483L14.2678 38.1556L15.5652 36.6336ZM15.5702 36.6378L15.5652 36.6335L14.2678 38.1556L14.2727 38.1598L15.5702 36.6378ZM17.3147 38.0645C16.8352 37.7149 16.2794 37.2421 15.5701 36.6377L14.2729 38.1599C14.9621 38.7473 15.5823 39.2766 16.1366 39.6807L17.3147 38.0645ZM18.7462 38.8219C18.2551 38.6793 17.8105 38.426 17.3149 38.0646L16.1365 39.6806C16.7284 40.1122 17.3869 40.5098 18.1886 40.7426L18.7462 38.8219ZM21.2541 38.8218C20.4349 39.0593 19.565 39.0593 18.7459 38.8218L18.1889 40.7427C19.3719 41.0857 20.6281 41.0857 21.8111 40.7427L21.2541 38.8218ZM22.6851 38.0646C22.1894 38.426 21.7449 38.6793 21.2538 38.8219L21.8114 40.7426C22.6131 40.5098 23.2716 40.1122 23.8635 39.6806L22.6851 38.0646ZM24.4321 36.6358C23.7218 37.2411 23.1653 37.7146 22.6852 38.0645L23.8633 39.6807C24.4182 39.2761 25.0392 38.7461 25.7293 38.1579L24.4321 36.6358ZM24.435 36.6332L24.4323 36.6355L25.7291 38.1582L25.7317 38.1559L24.435 36.6332ZM24.7951 36.3263L24.4347 36.6335L25.7321 38.1556L26.0926 37.8483L24.7951 36.3263ZM25.9243 35.445C25.6462 35.6035 25.3904 35.8192 24.7954 36.326L26.0923 37.8485C26.7529 37.2859 26.84 37.2251 26.9144 37.1827L25.9243 35.445ZM26.7324 35.1103C26.4496 35.1877 26.1783 35.3004 25.9245 35.4449L26.9141 37.1829C27.0236 37.1205 27.14 37.0723 27.2606 37.0393L26.7324 35.1103ZM28.1537 34.9352C27.3737 34.9974 27.0412 35.0258 26.7324 35.1103L27.2605 37.0393C27.3435 37.0166 27.4483 36.9978 28.3128 36.9288L28.1537 34.9352ZM28.6257 34.8975L28.1538 34.9351L28.3127 36.9288L28.7846 36.8912L28.6257 34.8975ZM30.875 34.6723C30.2872 34.7644 29.5576 34.8233 28.6257 34.8975L28.7846 36.8912C29.6904 36.819 30.5052 36.7546 31.1845 36.6483L30.875 34.6723ZM32.4222 34.1957C31.9744 34.4422 31.4812 34.5773 30.8749 34.6724L31.1847 36.6482C31.9079 36.5348 32.655 36.3506 33.3868 35.9478L32.4222 34.1957ZM34.1958 32.4223C33.7846 33.1694 33.1695 33.7844 32.4223 34.1957L33.3867 35.9478C34.4656 35.354 35.354 34.4658 35.948 33.3865L34.1958 32.4223ZM34.6722 30.875C34.5774 31.4809 34.4422 31.9743 34.1957 32.4223L35.948 33.3864C36.3505 32.6549 36.535 31.9079 36.6482 31.1843L34.6722 30.875ZM34.8974 28.6256C34.8232 29.5575 34.7643 30.2871 34.6723 30.8749L36.6482 31.1844C36.7546 30.5051 36.819 29.6902 36.8911 28.7845L34.8974 28.6256ZM34.9353 28.1532L34.8975 28.6252L36.8911 28.7849L36.9289 28.313L34.9353 28.1532ZM35.1107 26.7314C35.0256 27.0407 34.9974 27.3748 34.9353 28.1535L36.9289 28.3127C36.998 27.4473 37.0166 27.3437 37.0391 27.2618L35.1107 26.7314ZM35.4448 25.9246C35.3 26.1789 35.1877 26.4503 35.1104 26.7325L37.0394 27.2606C37.0726 27.1395 37.1207 27.0232 37.1828 26.9142L35.4448 25.9246ZM36.3264 24.7952C35.8189 25.3906 35.6037 25.6459 35.4451 25.924L37.1825 26.9148C37.2251 26.84 37.2861 26.7524 37.8484 26.0926L36.3264 24.7952ZM36.6337 24.4347L36.3264 24.7952L37.8485 26.0926L38.1557 25.7321L36.6337 24.4347ZM36.6388 24.4287L36.6335 24.4349L38.1559 25.732L38.1612 25.7257L36.6388 24.4287ZM38.0648 22.6851C37.7151 23.1644 37.2428 23.7198 36.6388 24.4286L38.1612 25.7257C38.7481 25.0369 39.2767 24.4174 39.6806 23.8636L38.0648 22.6851ZM38.8217 21.254C38.6793 21.7451 38.4261 22.1895 38.0647 22.6851L39.6807 23.8635C40.1123 23.2717 40.5101 22.613 40.7426 21.8109L38.8217 21.254ZM38.8218 18.7461C39.0594 19.5652 39.0594 20.4348 38.8218 21.2538L40.7425 21.8111C41.0858 20.628 41.0858 19.3719 40.7425 18.1888L38.8218 18.7461ZM38.0648 17.3151C38.4261 17.8104 38.6793 18.2549 38.8217 18.7459L40.7426 18.189C40.51 17.3869 40.1123 16.7282 39.6806 16.1364L38.0648 17.3151ZM36.6335 15.5652C37.2398 16.2765 37.7141 16.8342 38.0648 17.315L39.6806 16.1365C39.2755 15.5811 38.7451 14.9595 38.1555 14.2678L36.6335 15.5652ZM36.3262 15.2045L36.6333 15.565L38.1557 14.268L37.8486 13.9075L36.3262 15.2045ZM35.4452 14.0762C35.6038 14.3541 35.8189 14.6093 36.3263 15.2047L37.8485 13.9074C37.2861 13.2475 37.2251 13.1599 37.1824 13.085L35.4452 14.0762ZM35.1105 13.2676C35.1877 13.5497 35.3 13.8211 35.4448 14.0754L37.1828 13.0858C37.1208 12.9768 37.0726 12.8605 37.0394 12.7393L35.1105 13.2676ZM34.9353 11.8464C34.9974 12.6252 35.0257 12.9591 35.1107 13.2685L37.0392 12.7384C37.0166 12.6563 36.998 12.5525 36.9289 11.6873L34.9353 11.8464ZM34.8975 11.3747L34.9353 11.8467L36.9289 11.687L36.8911 11.215L34.8975 11.3747ZM34.6723 9.12497C34.7643 9.71286 34.8232 10.4424 34.8974 11.3743L36.8911 11.2154C36.8189 10.3097 36.7546 9.49481 36.6482 8.81552L34.6723 9.12497ZM34.1957 7.57761C34.4422 8.02556 34.5774 8.51896 34.6722 9.12484L36.6482 8.81565C36.535 8.09193 36.3505 7.34499 35.948 6.61347L34.1957 7.57761ZM32.4223 5.80424C33.1694 6.21547 33.7846 6.83053 34.1958 7.57766L35.948 6.61341C35.354 5.53417 34.4656 4.64594 33.3867 4.0521L32.4223 5.80424ZM30.875 5.32766C31.4811 5.42259 31.9744 5.55778 32.4224 5.80427L33.3866 4.05206C32.655 3.64946 31.908 3.46508 31.1845 3.35175L30.875 5.32766ZM28.6256 5.10242C29.5576 5.17676 30.2872 5.23561 30.8751 5.32767L31.1845 3.35175C30.5052 3.24539 29.6904 3.181 28.7847 3.10875L28.6256 5.10242ZM28.1536 5.06474L28.6256 5.10241L28.7847 3.10875L28.3128 3.07108L28.1536 5.06474ZM26.7323 4.88956C27.0411 4.97418 27.3739 5.00253 28.1537 5.06475L28.3127 3.07108C27.4481 3.0021 27.3435 2.98332 27.2607 2.96063L26.7323 4.88956ZM25.9243 4.55494C26.1785 4.69974 26.4499 4.81221 26.7323 4.88957L27.2607 2.96062C27.1398 2.92751 27.0235 2.87933 26.9143 2.81716L25.9243 4.55494ZM24.7953 3.67377C25.3907 4.18107 25.6461 4.39632 25.924 4.55477L26.9146 2.81733C26.84 2.77481 26.7526 2.7139 26.0924 2.15143L24.7953 3.67377ZM24.4348 3.36643L24.7951 3.67359L26.0926 2.15161L25.7323 1.84445L24.4348 3.36643ZM24.4324 3.36441L24.4349 3.36654L25.7322 1.84433L25.7297 1.8422L24.4324 3.36441ZM22.6851 1.93528C23.1653 2.28547 23.722 2.759 24.4325 3.36445L25.7296 1.84217C25.0392 1.2538 24.4183 0.723912 23.8635 0.319312L22.6851 1.93528ZM21.254 1.17817C21.7449 1.3206 22.1894 1.57388 22.6851 1.93531L23.8634 0.319278C23.2716 -0.112221 22.6131 -0.509998 21.8112 -0.742627L21.254 1.17817ZM21.5715 11.5714C21.5715 12.4393 20.8679 13.1428 20 13.1428V15.1428C21.9725 15.1428 23.5715 13.5439 23.5715 11.5714H21.5715ZM20 9.99999C20.8679 9.99999 21.5715 10.7035 21.5715 11.5714H23.5715C23.5715 9.59898 21.9725 7.99999 20 7.99999V9.99999ZM18.4286 11.5714C18.4286 10.7035 19.1321 9.99999 20 9.99999V7.99999C18.0276 7.99999 16.4286 9.59898 16.4286 11.5714H18.4286ZM20 13.1428C19.1321 13.1428 18.4286 12.4393 18.4286 11.5714H16.4286C16.4286 13.5439 18.0276 15.1428 20 15.1428V13.1428ZM18.2857 18.5714H20V16.5714H18.2857V18.5714ZM17.7807 18.7806C17.9146 18.6467 18.0963 18.5714 18.2857 18.5714V16.5714C17.5659 16.5714 16.8755 16.8574 16.3665 17.3664L17.7807 18.7806ZM17.5715 19.2857C17.5715 19.0963 17.6467 18.9146 17.7807 18.7806L16.3665 17.3664C15.8574 17.8754 15.5715 18.5658 15.5715 19.2857H17.5715ZM17.7807 19.7908C17.6467 19.6568 17.5715 19.4751 17.5715 19.2857H15.5715C15.5715 20.0056 15.8574 20.696 16.3665 21.205L17.7807 19.7908ZM18.2857 20C18.0963 20 17.9146 19.9247 17.7807 19.7908L16.3665 21.205C16.8755 21.714 17.5659 22 18.2857 22V20ZM20 20H18.2857V22H20V20ZM21 29.2857V21H19V29.2857H21ZM21.2092 29.7908C21.0753 29.6568 21 29.4751 21 29.2857H19C19 30.0056 19.286 30.696 19.795 31.205L21.2092 29.7908ZM21.7143 30C21.5249 30 21.3432 29.9247 21.2092 29.7908L19.795 31.205C20.3041 31.714 20.9944 32 21.7143 32V30ZM22.2194 29.7908C22.0854 29.9247 21.9038 30 21.7143 30V32C22.4342 32 23.1246 31.714 23.6336 31.205L22.2194 29.7908ZM22.4286 29.2857C22.4286 29.4752 22.3533 29.6568 22.2194 29.7908L23.6336 31.205C24.1426 30.696 24.4286 30.0056 24.4286 29.2857H22.4286ZM22.4286 21V29.2857H24.4286V21H22.4286ZM21.7173 19.2827C22.1727 19.7382 22.4286 20.3559 22.4286 21H24.4286C24.4286 19.8255 23.962 18.699 23.1315 17.8685L21.7173 19.2827ZM20 18.5714C20.6441 18.5714 21.2618 18.8273 21.7173 19.2827L23.1315 17.8685C22.301 17.038 21.1746 16.5714 20 16.5714V18.5714Z" fill="url(#paint1_linear_15_1182)" mask="url(#path-1-inside-1_15_1182)"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_15_1182" x1="20" y1="1.0899" x2="20.6375" y2="39.9999" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#2591E4"/>
10
+ <stop offset="1" stop-color="#1769B0"/>
11
+ </linearGradient>
12
+ <linearGradient id="paint1_linear_15_1182" x1="20.9771" y1="39.4328" x2="20" y2="1.42296" gradientUnits="userSpaceOnUse">
13
+ <stop stop-color="#2591E4"/>
14
+ <stop offset="1" stop-color="#1769B0"/>
15
+ </linearGradient>
16
+ </defs>
17
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8 0C3.57895 0 0 3.57895 0 8C0 12.4211 3.57895 16 8 16C12.4211 16 16 12.4211 16 8C16 3.57895 12.4211 0 8 0ZM8 14.4211C4.47368 14.4211 1.57895 11.5263 1.57895 8C1.57895 4.47368 4.47368 1.57895 8 1.57895C11.5263 1.57895 14.4211 4.47368 14.4211 8C14.4211 11.5263 11.5263 14.4211 8 14.4211Z" fill="#71347B"/>
3
- <path d="M8.42106 6.73685H7.57895C7.42106 6.73685 7.3158 6.84211 7.3158 7V11.7895C7.3158 11.9474 7.42106 12.0526 7.57895 12.0526H8.42106C8.57895 12.0526 8.68422 11.9474 8.68422 11.7895V7C8.68422 6.84211 8.57895 6.73685 8.42106 6.73685Z" fill="#71347B"/>
4
- <path d="M7.31577 4.21053C7.10524 4.42105 7.05261 4.63158 7.05261 4.89474C7.05261 5.15789 7.15788 5.42105 7.31577 5.57895C7.47366 5.78947 7.73682 5.89474 7.99998 5.89474C8.26314 5.89474 8.5263 5.78947 8.68419 5.63158C8.84209 5.47368 8.94735 5.21053 8.94735 4.94737C8.94735 4.68421 8.84209 4.42105 8.68419 4.26316C8.31577 3.84211 7.68419 3.84211 7.31577 4.21053Z" fill="#71347B"/>
5
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8 0C3.57895 0 0 3.57895 0 8C0 12.4211 3.57895 16 8 16C12.4211 16 16 12.4211 16 8C16 3.57895 12.4211 0 8 0ZM8 14.4211C4.47368 14.4211 1.57895 11.5263 1.57895 8C1.57895 4.47368 4.47368 1.57895 8 1.57895C11.5263 1.57895 14.4211 4.47368 14.4211 8C14.4211 11.5263 11.5263 14.4211 8 14.4211Z" fill="#71347B"/>
3
+ <path d="M8.42106 6.73685H7.57895C7.42106 6.73685 7.3158 6.84211 7.3158 7V11.7895C7.3158 11.9474 7.42106 12.0526 7.57895 12.0526H8.42106C8.57895 12.0526 8.68422 11.9474 8.68422 11.7895V7C8.68422 6.84211 8.57895 6.73685 8.42106 6.73685Z" fill="#71347B"/>
4
+ <path d="M7.31577 4.21053C7.10524 4.42105 7.05261 4.63158 7.05261 4.89474C7.05261 5.15789 7.15788 5.42105 7.31577 5.57895C7.47366 5.78947 7.73682 5.89474 7.99998 5.89474C8.26314 5.89474 8.5263 5.78947 8.68419 5.63158C8.84209 5.47368 8.94735 5.21053 8.94735 4.94737C8.94735 4.68421 8.84209 4.42105 8.68419 4.26316C8.31577 3.84211 7.68419 3.84211 7.31577 4.21053Z" fill="#71347B"/>
5
+ </svg>
@@ -1,5 +1,5 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8 0C3.57895 0 0 3.57895 0 8C0 12.4211 3.57895 16 8 16C12.4211 16 16 12.4211 16 8C16 3.57895 12.4211 0 8 0ZM8 14.4211C4.47368 14.4211 1.57895 11.5263 1.57895 8C1.57895 4.47368 4.47368 1.57895 8 1.57895C11.5263 1.57895 14.4211 4.47368 14.4211 8C14.4211 11.5263 11.5263 14.4211 8 14.4211Z" fill="currentColor"/>
3
- <path d="M8.42106 6.73685H7.57895C7.42106 6.73685 7.3158 6.84211 7.3158 7V11.7895C7.3158 11.9474 7.42106 12.0526 7.57895 12.0526H8.42106C8.57895 12.0526 8.68422 11.9474 8.68422 11.7895V7C8.68422 6.84211 8.57895 6.73685 8.42106 6.73685Z" fill="currentColor"/>
4
- <path d="M7.31577 4.21053C7.10524 4.42105 7.05261 4.63158 7.05261 4.89474C7.05261 5.15789 7.15788 5.42105 7.31577 5.57895C7.47366 5.78947 7.73682 5.89474 7.99998 5.89474C8.26314 5.89474 8.5263 5.78947 8.68419 5.63158C8.84209 5.47368 8.94735 5.21053 8.94735 4.94737C8.94735 4.68421 8.84209 4.42105 8.68419 4.26316C8.31577 3.84211 7.68419 3.84211 7.31577 4.21053Z" fill="currentColor"/>
5
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8 0C3.57895 0 0 3.57895 0 8C0 12.4211 3.57895 16 8 16C12.4211 16 16 12.4211 16 8C16 3.57895 12.4211 0 8 0ZM8 14.4211C4.47368 14.4211 1.57895 11.5263 1.57895 8C1.57895 4.47368 4.47368 1.57895 8 1.57895C11.5263 1.57895 14.4211 4.47368 14.4211 8C14.4211 11.5263 11.5263 14.4211 8 14.4211Z" fill="currentColor"/>
3
+ <path d="M8.42106 6.73685H7.57895C7.42106 6.73685 7.3158 6.84211 7.3158 7V11.7895C7.3158 11.9474 7.42106 12.0526 7.57895 12.0526H8.42106C8.57895 12.0526 8.68422 11.9474 8.68422 11.7895V7C8.68422 6.84211 8.57895 6.73685 8.42106 6.73685Z" fill="currentColor"/>
4
+ <path d="M7.31577 4.21053C7.10524 4.42105 7.05261 4.63158 7.05261 4.89474C7.05261 5.15789 7.15788 5.42105 7.31577 5.57895C7.47366 5.78947 7.73682 5.89474 7.99998 5.89474C8.26314 5.89474 8.5263 5.78947 8.68419 5.63158C8.84209 5.47368 8.94735 5.21053 8.94735 4.94737C8.94735 4.68421 8.84209 4.42105 8.68419 4.26316C8.31577 3.84211 7.68419 3.84211 7.31577 4.21053Z" fill="currentColor"/>
5
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M15.9953 8.39562C15.9771 7.12253 15.6657 5.92403 15.0965 4.8755C17.5681 -0.666814 12.5126 0.0960292 12.1756 0.15706C11.127 0.366779 10.0785 0.70381 9.17974 1.13072C5.73452 1.08953 2.7387 2.92822 1.76505 6.7479C3.56255 4.72569 4.83577 3.90184 5.58474 3.60228C5.42745 3.74459 5.27017 3.89437 5.11289 4.04415C3.91455 5.2425 2.94092 6.44081 2.11705 7.71406C1.48042 8.8375 0.768924 9.81115 0.394455 11.0844C-1.62773 18.4242 4.73842 15.3534 5.63717 14.8292C6.61083 15.3085 7.65936 15.5707 8.85771 15.5707C12.0033 15.5707 14.6996 13.5485 15.6732 10.7773H11.8535C10.056 13.6234 5.78695 12.3501 5.63717 9.2794H15.9728C16.0117 8.97231 15.9984 8.61659 15.9953 8.39562ZM1.39058 14.8367C0.861549 14.356 0.791424 13.0391 1.91486 10.7174C2.47658 12.3651 3.63745 13.7132 5.06049 14.5371C4.33399 14.934 2.40845 15.7614 1.39058 14.8367ZM5.58474 7.34706C5.64239 5.69934 7.08264 4.35125 8.88014 4.35125C10.6776 4.35125 12.1007 5.69937 12.1755 7.34706H5.58474ZM11.3892 1.65497C12.0557 1.3329 13.7611 0.683748 14.6846 1.2805C15.3781 1.72869 15.6787 2.60753 14.9093 4.5759C14.0854 3.22778 12.8871 2.17925 11.3892 1.65497Z" fill="#00BBEF"/>
3
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.9953 8.39562C15.9771 7.12253 15.6657 5.92403 15.0965 4.8755C17.5681 -0.666814 12.5126 0.0960292 12.1756 0.15706C11.127 0.366779 10.0785 0.70381 9.17974 1.13072C5.73452 1.08953 2.7387 2.92822 1.76505 6.7479C3.56255 4.72569 4.83577 3.90184 5.58474 3.60228C5.42745 3.74459 5.27017 3.89437 5.11289 4.04415C3.91455 5.2425 2.94092 6.44081 2.11705 7.71406C1.48042 8.8375 0.768924 9.81115 0.394455 11.0844C-1.62773 18.4242 4.73842 15.3534 5.63717 14.8292C6.61083 15.3085 7.65936 15.5707 8.85771 15.5707C12.0033 15.5707 14.6996 13.5485 15.6732 10.7773H11.8535C10.056 13.6234 5.78695 12.3501 5.63717 9.2794H15.9728C16.0117 8.97231 15.9984 8.61659 15.9953 8.39562ZM1.39058 14.8367C0.861549 14.356 0.791424 13.0391 1.91486 10.7174C2.47658 12.3651 3.63745 13.7132 5.06049 14.5371C4.33399 14.934 2.40845 15.7614 1.39058 14.8367ZM5.58474 7.34706C5.64239 5.69934 7.08264 4.35125 8.88014 4.35125C10.6776 4.35125 12.1007 5.69937 12.1755 7.34706H5.58474ZM11.3892 1.65497C12.0557 1.3329 13.7611 0.683748 14.6846 1.2805C15.3781 1.72869 15.6787 2.60753 14.9093 4.5759C14.0854 3.22778 12.8871 2.17925 11.3892 1.65497Z" fill="#00BBEF"/>
3
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3.69805 11.0945V7.60449H2.99805V11.0945H3.69805ZM6.79965 9.20949C6.88965 9.04616 6.93465 8.87116 6.93465 8.68449C6.93465 8.47783 6.88631 8.29283 6.78965 8.12949C6.69631 7.96616 6.55465 7.83783 6.36465 7.74449C6.17465 7.65116 5.94465 7.60449 5.67465 7.60449H4.38965V11.0945H5.08965V9.75449H5.67465C5.96131 9.75449 6.19798 9.70449 6.38465 9.60449C6.57465 9.50449 6.71298 9.37283 6.79965 9.20949ZM6.07465 9.05949C5.98131 9.14616 5.83798 9.18949 5.64465 9.18949H5.08965V8.17449H5.64465C6.02465 8.17449 6.21465 8.34449 6.21465 8.68449C6.21465 8.84449 6.16798 8.96949 6.07465 9.05949ZM8.13164 9.53949L9.40164 11.0945H10.2866L8.80664 9.33449L10.2466 7.60449H9.40164L8.13164 9.16949V7.60449H7.43164V11.0945H8.13164V9.53949Z" fill="white"/>
4
- </svg>
1
+ <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3.69805 11.0945V7.60449H2.99805V11.0945H3.69805ZM6.79965 9.20949C6.88965 9.04616 6.93465 8.87116 6.93465 8.68449C6.93465 8.47783 6.88631 8.29283 6.78965 8.12949C6.69631 7.96616 6.55465 7.83783 6.36465 7.74449C6.17465 7.65116 5.94465 7.60449 5.67465 7.60449H4.38965V11.0945H5.08965V9.75449H5.67465C5.96131 9.75449 6.19798 9.70449 6.38465 9.60449C6.57465 9.50449 6.71298 9.37283 6.79965 9.20949ZM6.07465 9.05949C5.98131 9.14616 5.83798 9.18949 5.64465 9.18949H5.08965V8.17449H5.64465C6.02465 8.17449 6.21465 8.34449 6.21465 8.68449C6.21465 8.84449 6.16798 8.96949 6.07465 9.05949ZM8.13164 9.53949L9.40164 11.0945H10.2866L8.80664 9.33449L10.2466 7.60449H9.40164L8.13164 9.16949V7.60449H7.43164V11.0945H8.13164V9.53949Z" fill="white"/>
4
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8.46841 0H3.90172C3.17467 0 2.58507 0.589598 2.58507 1.31666C2.58507 2.04371 3.17467 2.63331 3.90172 2.63331H4.74886L2.52345 13.3443C2.52187 13.3519 2.52266 13.3591 2.52134 13.3667H1.53174C0.804686 13.3667 0.215088 13.956 0.215088 14.6833C0.215088 15.4107 0.804686 16 1.53174 16H6.09843C6.82575 16 7.41509 15.4107 7.41509 14.6833C7.41509 13.956 6.82575 13.3667 6.09843 13.3667H5.20337L7.43299 2.63331H8.46841C9.19573 2.63331 9.78507 2.04371 9.78507 1.31666C9.78507 0.589598 9.19573 0 8.46841 0Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.46841 0H3.90172C3.17467 0 2.58507 0.589598 2.58507 1.31666C2.58507 2.04371 3.17467 2.63331 3.90172 2.63331H4.74886L2.52345 13.3443C2.52187 13.3519 2.52266 13.3591 2.52134 13.3667H1.53174C0.804686 13.3667 0.215088 13.956 0.215088 14.6833C0.215088 15.4107 0.804686 16 1.53174 16H6.09843C6.82575 16 7.41509 15.4107 7.41509 14.6833C7.41509 13.956 6.82575 13.3667 6.09843 13.3667H5.20337L7.43299 2.63331H8.46841C9.19573 2.63331 9.78507 2.04371 9.78507 1.31666C9.78507 0.589598 9.19573 0 8.46841 0Z" fill="currentColor"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M15.3371 0H7.63428C7.63428 1.92 9.18856 3.47428 11.1085 3.47428H12.5257V4.84572C12.5257 6.76572 14.0799 8.31997 15.9999 8.31997V0.662875C15.9999 0.297156 15.7028 0 15.3371 0ZM11.5201 3.83997H3.8172C3.8172 5.75997 5.37148 7.31422 7.29148 7.31422H8.70861V8.68568C8.70861 10.6057 10.2629 12.1599 12.1829 12.1599V4.50284C12.1829 4.13709 11.8857 3.83997 11.5201 3.83997ZM0.00012207 7.68005H7.703C8.06872 7.68005 8.36587 7.97718 8.36587 8.34293V16.0001C6.44587 16.0001 4.89153 14.4458 4.89153 12.5258V11.1543H3.4744C1.5544 11.1543 0.00012207 9.60005 0.00012207 7.68005Z" fill="currentColor"/>
3
- </svg>
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.3371 0H7.63428C7.63428 1.92 9.18856 3.47428 11.1085 3.47428H12.5257V4.84572C12.5257 6.76572 14.0799 8.31997 15.9999 8.31997V0.662875C15.9999 0.297156 15.7028 0 15.3371 0ZM11.5201 3.83997H3.8172C3.8172 5.75997 5.37148 7.31422 7.29148 7.31422H8.70861V8.68568C8.70861 10.6057 10.2629 12.1599 12.1829 12.1599V4.50284C12.1829 4.13709 11.8857 3.83997 11.5201 3.83997ZM0.00012207 7.68005H7.703C8.06872 7.68005 8.36587 7.97718 8.36587 8.34293V16.0001C6.44587 16.0001 4.89153 14.4458 4.89153 12.5258V11.1543H3.4744C1.5544 11.1543 0.00012207 9.60005 0.00012207 7.68005Z" fill="currentColor"/>
3
+ </svg>