mediacube-ui 0.1.7

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 (599) hide show
  1. package/.browserslistrc +3 -0
  2. package/.eslintrc.js +34 -0
  3. package/.prettierrc.js +9 -0
  4. package/.storybook/components.js +6 -0
  5. package/.storybook/decorators.js +5 -0
  6. package/.storybook/main.js +51 -0
  7. package/.storybook/plugins.js +28 -0
  8. package/.storybook/preview-body.html +9 -0
  9. package/.storybook/preview.js +59 -0
  10. package/CHANGELOG.md +13 -0
  11. package/README.md +138 -0
  12. package/babel.config.js +3 -0
  13. package/dist/demo.html +19 -0
  14. package/dist/mcui.common.js +516 -0
  15. package/dist/mcui.common.js.map +1 -0
  16. package/dist/mcui.css +1 -0
  17. package/dist/mcui.umd.js +526 -0
  18. package/dist/mcui.umd.js.map +1 -0
  19. package/dist/mcui.umd.min.js +2 -0
  20. package/dist/mcui.umd.min.js.map +1 -0
  21. package/jest.config.js +4 -0
  22. package/package.json +115 -0
  23. package/public/img/mc_dashboard.svg +11 -0
  24. package/public/img/preview.png +0 -0
  25. package/src/App.vue +30 -0
  26. package/src/assets/fonts/inter/Inter-Bold.woff +0 -0
  27. package/src/assets/fonts/inter/Inter-Bold.woff2 +0 -0
  28. package/src/assets/fonts/inter/Inter-Italic.woff +0 -0
  29. package/src/assets/fonts/inter/Inter-Italic.woff2 +0 -0
  30. package/src/assets/fonts/inter/Inter-Medium.woff +0 -0
  31. package/src/assets/fonts/inter/Inter-Medium.woff2 +0 -0
  32. package/src/assets/fonts/inter/Inter-Regular.woff +0 -0
  33. package/src/assets/fonts/inter/Inter-Regular.woff2 +0 -0
  34. package/src/assets/fonts/inter/Inter-SemiBold.woff +0 -0
  35. package/src/assets/fonts/inter/Inter-SemiBold.woff2 +0 -0
  36. package/src/assets/fonts/inter/inter.css +44 -0
  37. package/src/assets/icons/a_circle.svg +3 -0
  38. package/src/assets/icons/access_time.svg +5 -0
  39. package/src/assets/icons/account_circle.svg +1 -0
  40. package/src/assets/icons/account_edit.svg +3 -0
  41. package/src/assets/icons/add.svg +3 -0
  42. package/src/assets/icons/add_circle.svg +3 -0
  43. package/src/assets/icons/address.svg +6 -0
  44. package/src/assets/icons/ads_banner.svg +3 -0
  45. package/src/assets/icons/album.svg +1 -0
  46. package/src/assets/icons/alert_solid.svg +3 -0
  47. package/src/assets/icons/alternate_email.svg +1 -0
  48. package/src/assets/icons/amocrm.svg +4 -0
  49. package/src/assets/icons/amper_music.svg +4 -0
  50. package/src/assets/icons/analytics.svg +3 -0
  51. package/src/assets/icons/animation_motion.svg +4 -0
  52. package/src/assets/icons/api.svg +1 -0
  53. package/src/assets/icons/apple_icon.svg +3 -0
  54. package/src/assets/icons/applications.svg +3 -0
  55. package/src/assets/icons/applications_new.svg +3 -0
  56. package/src/assets/icons/apps.svg +3 -0
  57. package/src/assets/icons/archive.svg +1 -0
  58. package/src/assets/icons/archive_in.svg +3 -0
  59. package/src/assets/icons/archive_out.svg +3 -0
  60. package/src/assets/icons/arrow-stats-down.svg +3 -0
  61. package/src/assets/icons/arrow-stats-up.svg +3 -0
  62. package/src/assets/icons/arrow_backward.svg +3 -0
  63. package/src/assets/icons/arrow_downward.svg +3 -0
  64. package/src/assets/icons/arrow_drop_down.svg +3 -0
  65. package/src/assets/icons/arrow_drop_up.svg +3 -0
  66. package/src/assets/icons/arrow_forward.svg +3 -0
  67. package/src/assets/icons/arrow_leftward.svg +3 -0
  68. package/src/assets/icons/arrow_rightward.svg +3 -0
  69. package/src/assets/icons/arrow_to_grow_circle.svg +3 -0
  70. package/src/assets/icons/arrow_up_down.svg +3 -0
  71. package/src/assets/icons/arrow_upward.svg +3 -0
  72. package/src/assets/icons/arrows.svg +6 -0
  73. package/src/assets/icons/artist.svg +8 -0
  74. package/src/assets/icons/assessment.svg +1 -0
  75. package/src/assets/icons/assets_unassigned.svg +3 -0
  76. package/src/assets/icons/assignment.svg +9 -0
  77. package/src/assets/icons/assignment_ind.svg +1 -0
  78. package/src/assets/icons/assist_icon.svg +13 -0
  79. package/src/assets/icons/attach_money.svg +1 -0
  80. package/src/assets/icons/audiotrack.svg +1 -0
  81. package/src/assets/icons/backspace.svg +1 -0
  82. package/src/assets/icons/bank_building_blue.svg +4 -0
  83. package/src/assets/icons/bank_card.svg +3 -0
  84. package/src/assets/icons/bank_card_arrow.svg +3 -0
  85. package/src/assets/icons/bank_card_clock.svg +3 -0
  86. package/src/assets/icons/bank_card_double.svg +3 -0
  87. package/src/assets/icons/bank_card_virtual_blue.svg +7 -0
  88. package/src/assets/icons/bankwire.svg +70 -0
  89. package/src/assets/icons/bell.svg +3 -0
  90. package/src/assets/icons/binance_coin_colored.svg +4 -0
  91. package/src/assets/icons/bitcoin.svg +6 -0
  92. package/src/assets/icons/bitcoin_cash_colored.svg +4 -0
  93. package/src/assets/icons/bitcoin_colored.svg +4 -0
  94. package/src/assets/icons/bloggerhood.svg +19 -0
  95. package/src/assets/icons/board.svg +7 -0
  96. package/src/assets/icons/book.svg +3 -0
  97. package/src/assets/icons/bug.svg +10 -0
  98. package/src/assets/icons/bug_big.svg +3 -0
  99. package/src/assets/icons/bug_report.svg +3 -0
  100. package/src/assets/icons/building.svg +17 -0
  101. package/src/assets/icons/building_colored.svg +18 -0
  102. package/src/assets/icons/business_center.svg +1 -0
  103. package/src/assets/icons/calendar.svg +3 -0
  104. package/src/assets/icons/calendar_sixteen.svg +5 -0
  105. package/src/assets/icons/calendar_two_weeks.svg +3 -0
  106. package/src/assets/icons/calendar_user.svg +11 -0
  107. package/src/assets/icons/camera_alt.svg +1 -0
  108. package/src/assets/icons/camera_plus.svg +1 -0
  109. package/src/assets/icons/camera_video.svg +3 -0
  110. package/src/assets/icons/cancel.svg +4 -0
  111. package/src/assets/icons/cancel_alt.svg +1 -0
  112. package/src/assets/icons/capitalist.svg +23 -0
  113. package/src/assets/icons/capitalist_colored.svg +4 -0
  114. package/src/assets/icons/card.svg +1 -0
  115. package/src/assets/icons/card_off.svg +7 -0
  116. package/src/assets/icons/card_off_circle.svg +4 -0
  117. package/src/assets/icons/card_to_card_blue.svg +11 -0
  118. package/src/assets/icons/cash-ad.svg +7 -0
  119. package/src/assets/icons/cash.svg +7 -0
  120. package/src/assets/icons/category.svg +6 -0
  121. package/src/assets/icons/cellphone.svg +1 -0
  122. package/src/assets/icons/channels_icon.svg +12 -0
  123. package/src/assets/icons/chart_bar.svg +3 -0
  124. package/src/assets/icons/chart_line.svg +3 -0
  125. package/src/assets/icons/chat.svg +3 -0
  126. package/src/assets/icons/chat_forum.svg +3 -0
  127. package/src/assets/icons/chat_messages.svg +3 -0
  128. package/src/assets/icons/check-rhombus.svg +3 -0
  129. package/src/assets/icons/check.svg +4 -0
  130. package/src/assets/icons/check_all.svg +6 -0
  131. package/src/assets/icons/check_circle.svg +4 -0
  132. package/src/assets/icons/check_circle_solid.svg +3 -0
  133. package/src/assets/icons/check_polygonal.svg +3 -0
  134. package/src/assets/icons/checkbox--checked.svg +3 -0
  135. package/src/assets/icons/checkbox.svg +3 -0
  136. package/src/assets/icons/click.svg +3 -0
  137. package/src/assets/icons/clickup.svg +14 -0
  138. package/src/assets/icons/clip.svg +3 -0
  139. package/src/assets/icons/clock_check.svg +6 -0
  140. package/src/assets/icons/clock_solid.svg +5 -0
  141. package/src/assets/icons/close.svg +3 -0
  142. package/src/assets/icons/close_circle_solid.svg +3 -0
  143. package/src/assets/icons/cloud_upload.svg +1 -0
  144. package/src/assets/icons/coin_speed.svg +7 -0
  145. package/src/assets/icons/comment.svg +4 -0
  146. package/src/assets/icons/company.svg +1 -0
  147. package/src/assets/icons/confetti.svg +18 -0
  148. package/src/assets/icons/connection.svg +3 -0
  149. package/src/assets/icons/contacts.svg +1 -0
  150. package/src/assets/icons/contracts.svg +3 -0
  151. package/src/assets/icons/convert.svg +6 -0
  152. package/src/assets/icons/copy.svg +3 -0
  153. package/src/assets/icons/copyright.svg +3 -0
  154. package/src/assets/icons/credit-card.svg +5 -0
  155. package/src/assets/icons/crypto.svg +8 -0
  156. package/src/assets/icons/crypto_blue.svg +9 -0
  157. package/src/assets/icons/cryptowallet.svg +5 -0
  158. package/src/assets/icons/cryptowallet_blue.svg +6 -0
  159. package/src/assets/icons/dashboard.svg +1 -0
  160. package/src/assets/icons/date_range.svg +1 -0
  161. package/src/assets/icons/deeplinks.svg +3 -0
  162. package/src/assets/icons/delete-account.svg +5 -0
  163. package/src/assets/icons/delete.svg +3 -0
  164. package/src/assets/icons/delete_alt.svg +1 -0
  165. package/src/assets/icons/deprecated.svg +1 -0
  166. package/src/assets/icons/desktop_device.svg +3 -0
  167. package/src/assets/icons/dialog.svg +3 -0
  168. package/src/assets/icons/discord.svg +9 -0
  169. package/src/assets/icons/discord_colored.svg +4 -0
  170. package/src/assets/icons/dislike.svg +3 -0
  171. package/src/assets/icons/doc-export.svg +10 -0
  172. package/src/assets/icons/document.svg +1 -0
  173. package/src/assets/icons/dollar.svg +3 -0
  174. package/src/assets/icons/donate_blue.svg +7 -0
  175. package/src/assets/icons/dot-status.svg +3 -0
  176. package/src/assets/icons/download.svg +3 -0
  177. package/src/assets/icons/drag.svg +1 -0
  178. package/src/assets/icons/eWallet.svg +25 -0
  179. package/src/assets/icons/e_wallet_blue.svg +9 -0
  180. package/src/assets/icons/edit.svg +3 -0
  181. package/src/assets/icons/edit_solid.svg +4 -0
  182. package/src/assets/icons/email.svg +12 -0
  183. package/src/assets/icons/email_circle.svg +5 -0
  184. package/src/assets/icons/email_colored.svg +5 -0
  185. package/src/assets/icons/enrollment.svg +1 -0
  186. package/src/assets/icons/epayments_colored.svg +4 -0
  187. package/src/assets/icons/epidemic-sound.svg +66 -0
  188. package/src/assets/icons/epidemic_sound_circle.svg +4 -0
  189. package/src/assets/icons/error.svg +3 -0
  190. package/src/assets/icons/ethereum_colored.svg +8 -0
  191. package/src/assets/icons/event.svg +1 -0
  192. package/src/assets/icons/event_alt.svg +1 -0
  193. package/src/assets/icons/exit_to_app.svg +1 -0
  194. package/src/assets/icons/explicit.svg +1 -0
  195. package/src/assets/icons/face.svg +1 -0
  196. package/src/assets/icons/face_alt.svg +1 -0
  197. package/src/assets/icons/facebook.svg +3 -0
  198. package/src/assets/icons/facebook_colored.svg +4 -0
  199. package/src/assets/icons/fast.svg +10 -0
  200. package/src/assets/icons/favorite.svg +1 -0
  201. package/src/assets/icons/file.svg +1 -0
  202. package/src/assets/icons/file_add.svg +3 -0
  203. package/src/assets/icons/file_copy.svg +4 -0
  204. package/src/assets/icons/file_download.svg +1 -0
  205. package/src/assets/icons/file_export.svg +3 -0
  206. package/src/assets/icons/file_eye.svg +3 -0
  207. package/src/assets/icons/file_new.svg +3 -0
  208. package/src/assets/icons/filter_list.svg +3 -0
  209. package/src/assets/icons/find_in_page.svg +1 -0
  210. package/src/assets/icons/fire.svg +3 -0
  211. package/src/assets/icons/fire_colored.svg +8 -0
  212. package/src/assets/icons/fire_solid.svg +3 -0
  213. package/src/assets/icons/flag_ar.svg +19 -0
  214. package/src/assets/icons/flag_en.svg +6 -0
  215. package/src/assets/icons/flag_es.svg +564 -0
  216. package/src/assets/icons/flag_pt.svg +43 -0
  217. package/src/assets/icons/flag_ru.svg +6 -0
  218. package/src/assets/icons/fly_dollar.svg +13 -0
  219. package/src/assets/icons/fly_euro.svg +5 -0
  220. package/src/assets/icons/freeze.svg +3 -0
  221. package/src/assets/icons/fullscreen.svg +1 -0
  222. package/src/assets/icons/get_app.svg +4 -0
  223. package/src/assets/icons/glasses.svg +3 -0
  224. package/src/assets/icons/google_colored.svg +6 -0
  225. package/src/assets/icons/googleplus_colored.svg +5 -0
  226. package/src/assets/icons/graph-no-data.svg +3 -0
  227. package/src/assets/icons/group.svg +3 -0
  228. package/src/assets/icons/group_connection.svg +9 -0
  229. package/src/assets/icons/growth_arrow_circle.svg +3 -0
  230. package/src/assets/icons/help.svg +1 -0
  231. package/src/assets/icons/help_invert.svg +1 -0
  232. package/src/assets/icons/help_ukraine_colored.svg +14 -0
  233. package/src/assets/icons/home.svg +3 -0
  234. package/src/assets/icons/iban.svg +9 -0
  235. package/src/assets/icons/iban_blue.svg +10 -0
  236. package/src/assets/icons/id_square.svg +3 -0
  237. package/src/assets/icons/id_thin.svg +5 -0
  238. package/src/assets/icons/image.svg +1 -0
  239. package/src/assets/icons/info.svg +3 -0
  240. package/src/assets/icons/info_rounded_square.svg +5 -0
  241. package/src/assets/icons/info_solid.svg +4 -0
  242. package/src/assets/icons/instagram.svg +23 -0
  243. package/src/assets/icons/instagram_colored.svg +18 -0
  244. package/src/assets/icons/keyboard.svg +1 -0
  245. package/src/assets/icons/keyboard_arrow_left.svg +4 -0
  246. package/src/assets/icons/keyboard_arrow_right.svg +4 -0
  247. package/src/assets/icons/keyboard_arrow_right_thin.svg +3 -0
  248. package/src/assets/icons/language.svg +3 -0
  249. package/src/assets/icons/layers.svg +3 -0
  250. package/src/assets/icons/lightning.svg +3 -0
  251. package/src/assets/icons/lightning_circle.svg +4 -0
  252. package/src/assets/icons/like.svg +3 -0
  253. package/src/assets/icons/link.svg +3 -0
  254. package/src/assets/icons/link_broken.svg +7 -0
  255. package/src/assets/icons/link_external.svg +3 -0
  256. package/src/assets/icons/link_external_new.svg +3 -0
  257. package/src/assets/icons/linkedin.svg +9 -0
  258. package/src/assets/icons/linkedin_colored.svg +6 -0
  259. package/src/assets/icons/list.svg +1 -0
  260. package/src/assets/icons/litecoin_colored.svg +4 -0
  261. package/src/assets/icons/live_help.svg +1 -0
  262. package/src/assets/icons/loader.svg +3 -0
  263. package/src/assets/icons/location_city.svg +1 -0
  264. package/src/assets/icons/location_on.svg +3 -0
  265. package/src/assets/icons/lock.svg +3 -0
  266. package/src/assets/icons/lock_old.svg +1 -0
  267. package/src/assets/icons/logout.svg +3 -0
  268. package/src/assets/icons/magic_blink.svg +3 -0
  269. package/src/assets/icons/mail_outline.svg +1 -0
  270. package/src/assets/icons/mc_assist.svg +4 -0
  271. package/src/assets/icons/mc_dashboard.svg +5 -0
  272. package/src/assets/icons/mc_id.svg +3 -0
  273. package/src/assets/icons/mc_pay.svg +10 -0
  274. package/src/assets/icons/mc_pay_app.svg +6 -0
  275. package/src/assets/icons/mc_pay_compact.svg +4 -0
  276. package/src/assets/icons/mc_pay_menu.svg +4 -0
  277. package/src/assets/icons/mc_studio.svg +3 -0
  278. package/src/assets/icons/mc_vidwide.svg +11 -0
  279. package/src/assets/icons/mcadslogo.svg +37 -0
  280. package/src/assets/icons/mediacube.svg +1 -0
  281. package/src/assets/icons/menu.svg +3 -0
  282. package/src/assets/icons/menu_new.svg +3 -0
  283. package/src/assets/icons/message.svg +3 -0
  284. package/src/assets/icons/messenger.svg +6 -0
  285. package/src/assets/icons/messenger_colored.svg +10 -0
  286. package/src/assets/icons/minus.svg +5 -0
  287. package/src/assets/icons/mobile_device.svg +3 -0
  288. package/src/assets/icons/more_horiz.svg +1 -0
  289. package/src/assets/icons/music.svg +1 -0
  290. package/src/assets/icons/music_icon.svg +8 -0
  291. package/src/assets/icons/new.svg +1 -0
  292. package/src/assets/icons/notes.svg +3 -0
  293. package/src/assets/icons/objects.svg +3 -0
  294. package/src/assets/icons/obs.svg +3 -0
  295. package/src/assets/icons/okru.svg +12 -0
  296. package/src/assets/icons/okru_colored.svg +4 -0
  297. package/src/assets/icons/ondemand_video.svg +1 -0
  298. package/src/assets/icons/partners.svg +3 -0
  299. package/src/assets/icons/pause.svg +1 -0
  300. package/src/assets/icons/payment.svg +1 -0
  301. package/src/assets/icons/payoneer.svg +13 -0
  302. package/src/assets/icons/payoneer_colored.svg +19 -0
  303. package/src/assets/icons/payoneer_cy.svg +13 -0
  304. package/src/assets/icons/paypal.svg +1 -0
  305. package/src/assets/icons/paypal_colored.svg +6 -0
  306. package/src/assets/icons/percent.svg +3 -0
  307. package/src/assets/icons/personal_email_colored.svg +11 -0
  308. package/src/assets/icons/phone_colored.svg +4 -0
  309. package/src/assets/icons/photo_add.svg +3 -0
  310. package/src/assets/icons/picture.svg +3 -0
  311. package/src/assets/icons/picture_thin.svg +3 -0
  312. package/src/assets/icons/play-videos.svg +4 -0
  313. package/src/assets/icons/play.svg +1 -0
  314. package/src/assets/icons/print.svg +1 -0
  315. package/src/assets/icons/prototype.svg +1 -0
  316. package/src/assets/icons/public.svg +1 -0
  317. package/src/assets/icons/qiwi.svg +11 -0
  318. package/src/assets/icons/qiwi_colored.svg +4 -0
  319. package/src/assets/icons/ready.svg +1 -0
  320. package/src/assets/icons/receipt.svg +1 -0
  321. package/src/assets/icons/receipt_thin.svg +6 -0
  322. package/src/assets/icons/recording_circle.svg +3 -0
  323. package/src/assets/icons/recruiters.svg +3 -0
  324. package/src/assets/icons/redo.svg +3 -0
  325. package/src/assets/icons/reload.svg +3 -0
  326. package/src/assets/icons/reload_right.svg +3 -0
  327. package/src/assets/icons/remove_red_eye.svg +1 -0
  328. package/src/assets/icons/repair.svg +6 -0
  329. package/src/assets/icons/requisites.svg +7 -0
  330. package/src/assets/icons/reset.svg +7 -0
  331. package/src/assets/icons/resize_video.svg +3 -0
  332. package/src/assets/icons/revenue.svg +3 -0
  333. package/src/assets/icons/review.svg +1 -0
  334. package/src/assets/icons/ripple_colored.svg +4 -0
  335. package/src/assets/icons/role.svg +3 -0
  336. package/src/assets/icons/safety.svg +5 -0
  337. package/src/assets/icons/sand_clock.svg +4 -0
  338. package/src/assets/icons/save.svg +1 -0
  339. package/src/assets/icons/search.svg +3 -0
  340. package/src/assets/icons/send.svg +1 -0
  341. package/src/assets/icons/send_solid.svg +3 -0
  342. package/src/assets/icons/settings.svg +4 -0
  343. package/src/assets/icons/settings_solid.svg +3 -0
  344. package/src/assets/icons/settings_tools.svg +3 -0
  345. package/src/assets/icons/shield_colored.svg +5 -0
  346. package/src/assets/icons/shop.svg +1 -0
  347. package/src/assets/icons/shopping_cart.svg +1 -0
  348. package/src/assets/icons/sign_out.svg +8 -0
  349. package/src/assets/icons/skype.svg +56 -0
  350. package/src/assets/icons/skype_colored.svg +4 -0
  351. package/src/assets/icons/slack.svg +6 -0
  352. package/src/assets/icons/smile_star_eye.svg +6 -0
  353. package/src/assets/icons/sort_asc.svg +4 -0
  354. package/src/assets/icons/sort_az.svg +4 -0
  355. package/src/assets/icons/sort_desc.svg +4 -0
  356. package/src/assets/icons/sort_directions.svg +3 -0
  357. package/src/assets/icons/sort_list.svg +1 -0
  358. package/src/assets/icons/sort_za.svg +4 -0
  359. package/src/assets/icons/spy_colored.svg +15 -0
  360. package/src/assets/icons/staff.svg +10 -0
  361. package/src/assets/icons/star.svg +1 -0
  362. package/src/assets/icons/star_round.svg +3 -0
  363. package/src/assets/icons/star_round_solid.svg +3 -0
  364. package/src/assets/icons/stars.svg +4 -0
  365. package/src/assets/icons/stats_icon.svg +8 -0
  366. package/src/assets/icons/steam.svg +12 -0
  367. package/src/assets/icons/steam_colored.svg +15 -0
  368. package/src/assets/icons/studio_icon.svg +7 -0
  369. package/src/assets/icons/subscriptions.svg +1 -0
  370. package/src/assets/icons/suitcase.svg +4 -0
  371. package/src/assets/icons/supervised_user_circle.svg +1 -0
  372. package/src/assets/icons/support.svg +7 -0
  373. package/src/assets/icons/swap_cubes.svg +5 -0
  374. package/src/assets/icons/swap_horizontal_circle.svg +3 -0
  375. package/src/assets/icons/switches.svg +3 -0
  376. package/src/assets/icons/table.svg +1 -0
  377. package/src/assets/icons/telegram.svg +40 -0
  378. package/src/assets/icons/telegram_colored.svg +12 -0
  379. package/src/assets/icons/tether.svg +8 -0
  380. package/src/assets/icons/tether_colored.svg +4 -0
  381. package/src/assets/icons/three_dots.svg +3 -0
  382. package/src/assets/icons/thumb_down.svg +4 -0
  383. package/src/assets/icons/thumb_up.svg +4 -0
  384. package/src/assets/icons/time.svg +3 -0
  385. package/src/assets/icons/time_thin.svg +3 -0
  386. package/src/assets/icons/timelapse.svg +4 -0
  387. package/src/assets/icons/timeline.svg +1 -0
  388. package/src/assets/icons/tipalti.svg +48 -0
  389. package/src/assets/icons/transaction.svg +1 -0
  390. package/src/assets/icons/twitter_colored.svg +4 -0
  391. package/src/assets/icons/unarchive.svg +1 -0
  392. package/src/assets/icons/unfold_more.svg +1 -0
  393. package/src/assets/icons/unlock.svg +3 -0
  394. package/src/assets/icons/upload_img.svg +1 -0
  395. package/src/assets/icons/user.svg +3 -0
  396. package/src/assets/icons/user_edit.svg +3 -0
  397. package/src/assets/icons/user_kyc.svg +8 -0
  398. package/src/assets/icons/viber.svg +17 -0
  399. package/src/assets/icons/viber_colored.svg +8 -0
  400. package/src/assets/icons/videoblocks.svg +8 -0
  401. package/src/assets/icons/vidiq-logo-mono.svg +10 -0
  402. package/src/assets/icons/vidiq_circle.svg +5 -0
  403. package/src/assets/icons/visibility.svg +4 -0
  404. package/src/assets/icons/visibility_off.svg +7 -0
  405. package/src/assets/icons/vkontakte.svg +1 -0
  406. package/src/assets/icons/vkontakte_colored.svg +4 -0
  407. package/src/assets/icons/wallet.svg +5 -0
  408. package/src/assets/icons/warning.svg +3 -0
  409. package/src/assets/icons/webmoney.svg +10 -0
  410. package/src/assets/icons/webmoney_colored.svg +4 -0
  411. package/src/assets/icons/website_colored.svg +4 -0
  412. package/src/assets/icons/whatsapp.svg +12 -0
  413. package/src/assets/icons/whatsapp_colored.svg +4 -0
  414. package/src/assets/icons/wise_colored.svg +4 -0
  415. package/src/assets/icons/yandexmoney.svg +1 -0
  416. package/src/assets/icons/yoomoney_colored.svg +4 -0
  417. package/src/assets/icons/youtube.svg +3 -0
  418. package/src/assets/icons/youtube_circled.svg +4 -0
  419. package/src/assets/icons/youtube_circled_second.svg +4 -0
  420. package/src/assets/icons/youtube_colored.svg +4 -0
  421. package/src/assets/icons/zcash_colored.svg +4 -0
  422. package/src/assets/img/no_table_data.png +0 -0
  423. package/src/assets/img/no_user.png +0 -0
  424. package/src/assets/logo.png +0 -0
  425. package/src/assets/tokens/tokens.json +1101 -0
  426. package/src/elements/McAvatar/McAvatar.stories.js +122 -0
  427. package/src/elements/McAvatar/McAvatar.vue +325 -0
  428. package/src/elements/McBadge/McBadge.stories.js +80 -0
  429. package/src/elements/McBadge/McBadge.vue +120 -0
  430. package/src/elements/McButton/McButton.stories.js +205 -0
  431. package/src/elements/McButton/McButton.vue +877 -0
  432. package/src/elements/McChip/McChip.stories.js +140 -0
  433. package/src/elements/McChip/McChip.vue +246 -0
  434. package/src/elements/McCropper/McCropper.stories.js +47 -0
  435. package/src/elements/McCropper/McCropper.vue +131 -0
  436. package/src/elements/McDate/McDate.stories.js +105 -0
  437. package/src/elements/McDate/McDate.vue +102 -0
  438. package/src/elements/McDatePicker/McDatePicker.stories.js +205 -0
  439. package/src/elements/McDatePicker/McDatePicker.vue +793 -0
  440. package/src/elements/McField/McFieldCheckbox/McFieldCheckbox.vue +334 -0
  441. package/src/elements/McField/McFieldCheckbox/McFieldCheckox.stories.js +130 -0
  442. package/src/elements/McField/McFieldRadio/McFieldRadioButton/McFieldRadioButton.stories.js +115 -0
  443. package/src/elements/McField/McFieldRadio/McFieldRadioButton/McFieldRadioButton.vue +185 -0
  444. package/src/elements/McField/McFieldRadio/McFieldRadioGroup/McFieldRadioGroup.stories.js +162 -0
  445. package/src/elements/McField/McFieldRadio/McFieldRadioGroup/McFieldRadioGroup.vue +194 -0
  446. package/src/elements/McField/McFieldSelect/McFieldSelect.stories.js +271 -0
  447. package/src/elements/McField/McFieldSelect/McFieldSelect.vue +900 -0
  448. package/src/elements/McField/McFieldText/McFieldText.stories.js +232 -0
  449. package/src/elements/McField/McFieldText/McFieldText.vue +856 -0
  450. package/src/elements/McField/McFieldToggle/McFieldToggle.stories.js +82 -0
  451. package/src/elements/McField/McFieldToggle/McFieldToggle.vue +262 -0
  452. package/src/elements/McInfinityLoadingIndicator/McInfinityLoadingIndicator.stories.js +52 -0
  453. package/src/elements/McInfinityLoadingIndicator/McInfinityLoadingIndicator.vue +97 -0
  454. package/src/elements/McNotification/McNotification.stories.js +125 -0
  455. package/src/elements/McNotification/McNotification.vue +203 -0
  456. package/src/elements/McProgress/McProgress.stories.js +76 -0
  457. package/src/elements/McProgress/McProgress.vue +229 -0
  458. package/src/elements/McRangeSlider/McRangeSlider.stories.js +129 -0
  459. package/src/elements/McRangeSlider/McRangeSlider.vue +196 -0
  460. package/src/elements/McSeparator/McSeparator.stories.js +84 -0
  461. package/src/elements/McSeparator/McSeparator.vue +158 -0
  462. package/src/elements/McSlideUpDown/McSlideUpDown.stories.js +77 -0
  463. package/src/elements/McSlideUpDown/McSlideUpDown.vue +157 -0
  464. package/src/elements/McSvgIcon/McSvgIcon.stories.js +44 -0
  465. package/src/elements/McSvgIcon/McSvgIcon.vue +176 -0
  466. package/src/elements/McTabs/McTab/McTab.stories.js +20 -0
  467. package/src/elements/McTabs/McTab/McTab.vue +192 -0
  468. package/src/elements/McTabs/McTabs/McTabs.stories.js +112 -0
  469. package/src/elements/McTabs/McTabs/McTabs.vue +493 -0
  470. package/src/elements/McTitle/McTitle.stories.js +130 -0
  471. package/src/elements/McTitle/McTitle.vue +462 -0
  472. package/src/elements/McTooltip/McTooltip.stories.js +130 -0
  473. package/src/elements/McTooltip/McTooltip.vue +288 -0
  474. package/src/examples/Welcome.js +131 -0
  475. package/src/examples/Welcome.stories.js +18 -0
  476. package/src/examples/elements/MyElButton/MyElButton.js +36 -0
  477. package/src/examples/elements/MyElButton/MyElButton.stories.js +52 -0
  478. package/src/examples/elements/MyElTask/MyElTask.stories.js +61 -0
  479. package/src/examples/elements/MyElTask/MyElTask.vue +113 -0
  480. package/src/examples/elements/MyElToast/MyElToast.stories.js +106 -0
  481. package/src/examples/elements/MyElToast/MyElToast.vue +19 -0
  482. package/src/examples/patterns/MyPtTaskList/MyPtTaskList.stories.js +69 -0
  483. package/src/examples/patterns/MyPtTaskList/MyPtTaskList.vue +121 -0
  484. package/src/examples/templates/TmDrawerWrapper/TmDrawerWrapper.vue +77 -0
  485. package/src/helpers/delayedAction.js +26 -0
  486. package/src/main.js +14 -0
  487. package/src/mocks/authUser.js +163 -0
  488. package/src/mocks/categories.js +107 -0
  489. package/src/mocks/chatComments.js +113 -0
  490. package/src/mocks/filterMocks.js +115 -0
  491. package/src/mocks/menuApps.js +40 -0
  492. package/src/mocks/menuLangs.js +18 -0
  493. package/src/mocks/menuMain.js +53 -0
  494. package/src/mocks/tableInfusersBody.js +8317 -0
  495. package/src/patterns/McAccordion/McAccordion.stories.js +37 -0
  496. package/src/patterns/McAccordion/McAccordion.vue +53 -0
  497. package/src/patterns/McCells/McCell/McCell.stories.js +78 -0
  498. package/src/patterns/McCells/McCell/McCell.vue +100 -0
  499. package/src/patterns/McChat/McChat.stories.js +135 -0
  500. package/src/patterns/McChat/McChat.vue +304 -0
  501. package/src/patterns/McChat/McChatComment/McChatComment.stories.js +74 -0
  502. package/src/patterns/McChat/McChatComment/McChatComment.vue +240 -0
  503. package/src/patterns/McChat/McChatForm/McChatForm.stories.js +65 -0
  504. package/src/patterns/McChat/McChatForm/McChatForm.vue +146 -0
  505. package/src/patterns/McCollapse/McCollapse.stories.js +114 -0
  506. package/src/patterns/McCollapse/McCollapse.vue +280 -0
  507. package/src/patterns/McDrawer/McDrawer.stories.js +105 -0
  508. package/src/patterns/McDrawer/McDrawer.vue +143 -0
  509. package/src/patterns/McDropdown/McDropdown.stories.js +102 -0
  510. package/src/patterns/McDropdown/McDropdown.vue +210 -0
  511. package/src/patterns/McDropdown/McDropdownPanel/McDropdownPanel.stories.js +44 -0
  512. package/src/patterns/McDropdown/McDropdownPanel/McDropdownPanel.vue +38 -0
  513. package/src/patterns/McFakeScroll/McFakeScroll.stories.js +47 -0
  514. package/src/patterns/McFakeScroll/McFakeScroll.vue +276 -0
  515. package/src/patterns/McFilter/McFilter.stories.js +114 -0
  516. package/src/patterns/McFilter/McFilter.vue +800 -0
  517. package/src/patterns/McFilter/McFilterChip/McFilterChip.stories.js +59 -0
  518. package/src/patterns/McFilter/McFilterChip/McFilterChip.vue +83 -0
  519. package/src/patterns/McFilter/McFilterTags/McFilterTags.stories.js +83 -0
  520. package/src/patterns/McFilter/McFilterTags/McFilterTags.vue +356 -0
  521. package/src/patterns/McFilter/McFilterTypeDate/McFilterTypeDate.stories.js +50 -0
  522. package/src/patterns/McFilter/McFilterTypeDate/McFilterTypeDate.vue +66 -0
  523. package/src/patterns/McFilter/McFilterTypeRange/McFilterTypeRange.stories.js +51 -0
  524. package/src/patterns/McFilter/McFilterTypeRange/McFilterTypeRange.vue +131 -0
  525. package/src/patterns/McFilter/McFilterTypeRelation/McFilterTypeRelation.stories.js +53 -0
  526. package/src/patterns/McFilter/McFilterTypeRelation/McFilterTypeRelation.vue +204 -0
  527. package/src/patterns/McFilter/McFilterTypeText/McFilterTypeText.stories.js +51 -0
  528. package/src/patterns/McFilter/McFilterTypeText/McFilterTypeText.vue +62 -0
  529. package/src/patterns/McGrid/McGridCol/McGridCol.stories.js +20 -0
  530. package/src/patterns/McGrid/McGridCol/McGridCol.vue +165 -0
  531. package/src/patterns/McGrid/McGridRow/McGridRow.stories.js +151 -0
  532. package/src/patterns/McGrid/McGridRow/McGridRow.vue +150 -0
  533. package/src/patterns/McModal/McModal.stories.js +53 -0
  534. package/src/patterns/McModal/McModal.vue +530 -0
  535. package/src/patterns/McPreview/McPreview.stories.js +51 -0
  536. package/src/patterns/McPreview/McPreview.vue +181 -0
  537. package/src/patterns/McSideBar/McSideBar/McSideBar.stories.js +143 -0
  538. package/src/patterns/McSideBar/McSideBar/McSideBar.vue +395 -0
  539. package/src/patterns/McSideBar/McSideBarBottom/McSideBarBottom.stories.js +65 -0
  540. package/src/patterns/McSideBar/McSideBarBottom/McSideBarBottom.vue +124 -0
  541. package/src/patterns/McSideBar/McSideBarButton/McSideBarButton.stories.js +89 -0
  542. package/src/patterns/McSideBar/McSideBarButton/McSideBarButton.vue +277 -0
  543. package/src/patterns/McSideBar/McSideBarCenter/McSideBarCenter.stories.js +88 -0
  544. package/src/patterns/McSideBar/McSideBarCenter/McSideBarCenter.vue +337 -0
  545. package/src/patterns/McSideBar/McSideBarTop/McSideBarTop.stories.js +63 -0
  546. package/src/patterns/McSideBar/McSideBarTop/McSideBarTop.vue +236 -0
  547. package/src/patterns/McStack/McStack.stories.js +88 -0
  548. package/src/patterns/McStack/McStack.vue +119 -0
  549. package/src/patterns/McTable/McTable/McTable.stories.js +309 -0
  550. package/src/patterns/McTable/McTable/McTable.vue +824 -0
  551. package/src/patterns/McTable/McTableCol/McTableCol.stories.js +20 -0
  552. package/src/patterns/McTable/McTableCol/McTableCol.vue +282 -0
  553. package/src/patterns/McTableCard/McTableCard.stories.js +108 -0
  554. package/src/patterns/McTableCard/McTableCard.vue +134 -0
  555. package/src/patterns/McTableCard/McTableCardHeader/McTableCardHeader.stories.js +70 -0
  556. package/src/patterns/McTableCard/McTableCardHeader/McTableCardHeader.vue +72 -0
  557. package/src/patterns/McTopBar/McTopBar.stories.js +60 -0
  558. package/src/patterns/McTopBar/McTopBar.vue +152 -0
  559. package/src/service/GlobalStyles/GlobalStyles.stories.js +27 -0
  560. package/src/service/GlobalStyles/GlobalStyles.vue +21 -0
  561. package/src/service/HelloWorld.vue +102 -0
  562. package/src/styles/_functions.scss +187 -0
  563. package/src/styles/_mixins.scss +366 -0
  564. package/src/styles/_spacing.scss +66 -0
  565. package/src/styles/_variables.scss +23 -0
  566. package/src/styles/global.scss +244 -0
  567. package/src/styles/main.scss +5 -0
  568. package/src/styles/table.scss +10 -0
  569. package/src/styles/toast.scss +84 -0
  570. package/src/templates/layouts/McContentFixed/McContentFixed.vue +59 -0
  571. package/src/templates/layouts/McMain/McMain.stories.js +136 -0
  572. package/src/templates/layouts/McMain/McMain.vue +114 -0
  573. package/src/templates/layouts/McRoot/McRoot.stories.js +31 -0
  574. package/src/templates/layouts/McRoot/McRoot.vue +44 -0
  575. package/src/tokens/animations.scss +50 -0
  576. package/src/tokens/border-radius.scss +26 -0
  577. package/src/tokens/box-shadows.scss +31 -0
  578. package/src/tokens/colors.scss +72 -0
  579. package/src/tokens/durations.scss +7 -0
  580. package/src/tokens/easings.scss +6 -0
  581. package/src/tokens/font-families.scss +8 -0
  582. package/src/tokens/font-sizes.scss +23 -0
  583. package/src/tokens/font-weights.scss +9 -0
  584. package/src/tokens/gradients.scss +15 -0
  585. package/src/tokens/letter-spacings.scss +6 -0
  586. package/src/tokens/line-heights.scss +22 -0
  587. package/src/tokens/media-queries.scss +32 -0
  588. package/src/tokens/opacities.scss +8 -0
  589. package/src/tokens/sizes.scss +44 -0
  590. package/src/tokens/spacings.scss +36 -0
  591. package/src/tokens/z-indexes.scss +12 -0
  592. package/src/utils/filters.js +11 -0
  593. package/src/utils/getTokens.js +41 -0
  594. package/src/utils/load-icons.js +3 -0
  595. package/src/utils/treeSearch.js +30 -0
  596. package/src/utils/webFontLoader.js +12 -0
  597. package/tests/unit/TaskList.spec.js +14 -0
  598. package/tests/unit/__snapshots__/storybook.spec.js.snap +930 -0
  599. package/tests/unit/storybook.spec.js +3 -0
@@ -0,0 +1,43 @@
1
+ <svg data-token-name="flag_pt" data-keep-original="keep" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 4H22V19H10V4Z" fill="#FF0000"/>
3
+ <path d="M2 4H10V19H2V4Z" fill="#006600"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.6104 13.4042C11.601 13.372 6.98535 10.4034 6.9541 9.9269L7.20723 9.49224C7.6666 10.178 12.3854 13.0661 12.851 12.9631L12.6104 13.4042Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.15248 9.43106C7.06186 9.6822 8.35873 10.5064 9.91498 11.4852C11.4744 12.4608 12.8181 13.0629 12.915 12.9792L12.9619 12.889C12.9431 12.9212 12.8994 12.9309 12.8275 12.9083C12.4056 12.7828 11.3087 12.2644 9.94936 11.4144C8.58686 10.5644 7.40561 9.78201 7.22124 9.45038C7.20686 9.41929 7.20041 9.38494 7.20249 9.35057H7.19624L7.15874 9.4214L7.15248 9.43106ZM12.6306 13.417C12.615 13.4492 12.5806 13.4492 12.5212 13.4428C12.1462 13.4009 11.0025 12.8278 9.64936 11.9939C8.07436 11.0216 6.77436 10.1394 6.91811 9.90758L6.95561 9.83674L6.96186 9.83996C6.83686 10.2328 9.52748 11.8169 9.68686 11.9199C11.2431 12.9116 12.5556 13.4943 12.6712 13.343L12.6306 13.417Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.0066 10.2167C11.0129 10.207 12.2566 10.075 12.9754 9.77879L12.8191 9.52121C12.3973 9.76269 11.1473 9.92367 9.99727 9.94621C8.64102 9.93333 7.68164 9.80132 7.20039 9.4697L7.05664 9.74659C7.93789 10.133 8.84414 10.2134 10.0066 10.2167Z" fill="#FFFF00"/>
7
+ <path d="M10.0066 10.2167C11.0129 10.207 12.2566 10.075 12.9754 9.77879L12.8191 9.52121C12.3973 9.76269 11.1473 9.92367 9.99727 9.94621C8.64102 9.93333 7.68164 9.80132 7.20039 9.4697L7.05664 9.74659C7.93789 10.133 8.84414 10.2134 10.0066 10.2167" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.0152 9.78523C12.9902 9.82708 12.5215 9.99129 11.834 10.1136C11.2279 10.2083 10.6157 10.2545 10.0027 10.2521C9.41545 10.2544 8.82869 10.2156 8.24648 10.1362C7.52461 10.0203 7.15273 9.85928 7.01211 9.80133L7.04648 9.73049C7.44336 9.89148 7.81836 9.98807 8.25586 10.0589C8.83382 10.1393 9.41641 10.1791 9.99961 10.178C10.6094 10.1787 11.2184 10.1324 11.8215 10.0396C12.5246 9.92045 12.909 9.76913 12.9652 9.70151L13.0152 9.78845V9.78523ZM12.8777 9.52443C12.8027 9.58883 12.4215 9.72727 11.7527 9.83674C11.1752 9.92282 10.5925 9.96586 10.009 9.96553C9.32148 9.96553 8.75586 9.91401 8.32773 9.84962C7.64648 9.75947 7.28398 9.59204 7.15273 9.54697L7.19336 9.47614C7.29648 9.53087 7.64336 9.67576 8.33398 9.77557C8.88916 9.85219 9.44886 9.88876 10.009 9.88504C10.5883 9.88522 11.1669 9.84218 11.7402 9.75625C12.4121 9.65966 12.7746 9.4858 12.8309 9.44072L12.8777 9.52443ZM6.69648 11.4659C7.31523 11.8104 8.69336 11.9811 9.99648 11.9939C11.184 11.9972 12.7277 11.8072 13.3059 11.4917L13.2902 11.1472C13.109 11.4369 11.4527 11.717 9.98398 11.7074C8.51523 11.6945 7.14961 11.4627 6.69336 11.16V11.4659" fill="#FFFF00"/>
9
+ <path d="M6.69648 11.4659C7.31523 11.8104 8.69336 11.9811 9.99648 11.9939C11.184 11.9972 12.7277 11.8072 13.3059 11.4917L13.2902 11.1472C13.109 11.4369 11.4527 11.717 9.98398 11.7074C8.51523 11.6945 7.14961 11.4627 6.69336 11.16V11.4659M13.0152 9.78523C12.9902 9.82708 12.5215 9.99129 11.834 10.1136C11.2279 10.2083 10.6157 10.2545 10.0027 10.2521C9.41545 10.2544 8.82869 10.2156 8.24648 10.1362C7.52461 10.0203 7.15273 9.85928 7.01211 9.80133L7.04648 9.73049C7.44336 9.89148 7.81836 9.98807 8.25586 10.0589C8.83381 10.1393 9.41641 10.1791 9.99961 10.178C10.6094 10.1787 11.2184 10.1324 11.8215 10.0396C12.5246 9.92045 12.909 9.76913 12.9652 9.70151L13.0152 9.78845V9.78523ZM12.8777 9.52443C12.8027 9.58883 12.4215 9.72727 11.7527 9.83674C11.1752 9.92282 10.5925 9.96586 10.009 9.96553C9.32148 9.96553 8.75586 9.91401 8.32773 9.84962C7.64648 9.75947 7.28398 9.59204 7.15273 9.54697L7.19336 9.47614C7.29648 9.53087 7.64336 9.67576 8.33398 9.77557C8.88916 9.85219 9.44886 9.88876 10.009 9.88504C10.5883 9.88522 11.1669 9.84218 11.7402 9.75625C12.4121 9.65966 12.7746 9.4858 12.8309 9.44072L12.8777 9.52443V9.52443Z" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.3375 11.4176V11.4981C13.25 11.6076 12.7062 11.7686 12.025 11.8845C11.3482 11.9847 10.665 12.0321 9.98125 12.0261C9.33291 12.0318 8.68512 11.9855 8.04375 11.8877C7.56517 11.8307 7.09753 11.7005 6.65625 11.5013V11.408C6.95937 11.614 7.77812 11.7686 8.05312 11.8136C8.54687 11.8909 9.18125 11.9489 9.98125 11.9489C10.8219 11.9489 11.4937 11.8877 12.0125 11.8072C12.5031 11.7331 13.2 11.5432 13.3375 11.4176ZM13.3375 11.1278V11.2083C13.25 11.3146 12.7062 11.4756 12.025 11.5915C11.3483 11.6928 10.6651 11.7412 9.98125 11.7364C9.33296 11.7403 8.6853 11.694 8.04375 11.5979C7.56517 11.5409 7.09753 11.4107 6.65625 11.2116V11.115C6.95937 11.3242 7.78125 11.4756 8.05312 11.5206C8.69151 11.617 9.33607 11.6633 9.98125 11.6591C10.8219 11.6591 11.4969 11.5947 12.0125 11.5142C12.5031 11.4434 13.2 11.2534 13.3375 11.1278ZM9.99375 13.343C8.56875 13.3366 7.34688 12.9438 7.0875 12.8794L7.275 13.182C8.15153 13.5019 9.07648 13.6578 10.0063 13.6424C11.0906 13.6102 12.0375 13.5233 12.7031 13.1885L12.8969 12.8729C12.4438 13.0951 10.8969 13.343 9.99062 13.343" fill="#FFFF00"/>
11
+ <path d="M9.99375 13.343C8.56875 13.3366 7.34688 12.9438 7.0875 12.8794L7.275 13.182C8.15153 13.5019 9.07648 13.6578 10.0063 13.6424C11.0906 13.6102 12.0375 13.5233 12.7031 13.1885L12.8969 12.8729C12.4438 13.0951 10.8969 13.343 9.99062 13.343M13.3375 11.4176V11.4981C13.25 11.6076 12.7062 11.7686 12.025 11.8845C11.3482 11.9847 10.665 12.0321 9.98125 12.0261C9.33291 12.0318 8.68512 11.9855 8.04375 11.8877C7.56517 11.8307 7.09753 11.7005 6.65625 11.5013V11.408C6.95937 11.614 7.77812 11.7686 8.05312 11.8136C8.54687 11.8909 9.18125 11.9489 9.98125 11.9489C10.8219 11.9489 11.4937 11.8877 12.0125 11.8072C12.5031 11.7331 13.2 11.5432 13.3375 11.4176V11.4176ZM13.3375 11.1278V11.2083C13.25 11.3146 12.7062 11.4756 12.025 11.5915C11.3483 11.6928 10.6651 11.7412 9.98125 11.7364C9.33296 11.7403 8.6853 11.694 8.04375 11.5979C7.56517 11.5409 7.09753 11.4107 6.65625 11.2116V11.115C6.95937 11.3242 7.78125 11.4756 8.05312 11.5206C8.69151 11.617 9.33607 11.6633 9.98125 11.6591C10.8219 11.6591 11.4969 11.5947 12.0125 11.5142C12.5031 11.4434 13.2 11.2534 13.3375 11.1278V11.1278Z" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
12
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.7791 13.1176C12.7506 13.1611 12.7215 13.204 12.6916 13.2464C12.3791 13.3623 11.8791 13.4847 11.6729 13.5169C11.1194 13.6231 10.5577 13.677 9.99473 13.6778C8.73223 13.6585 7.69785 13.4042 7.21348 13.1852L7.17285 13.1176L7.1791 13.1047L7.24473 13.1337C8.13411 13.4369 9.06418 13.5945 10.001 13.6006C10.5885 13.6006 11.1729 13.533 11.6447 13.446C12.3697 13.2947 12.6635 13.182 12.7541 13.1305L12.776 13.1176H12.7791ZM12.9447 12.8343C12.9242 12.872 12.9033 12.9096 12.8822 12.947C12.7135 13.0114 12.2572 13.1466 11.5916 13.2432C11.1541 13.3044 10.8822 13.3655 10.0104 13.3816C9.01367 13.3713 8.02312 13.2196 7.0666 12.9309L7.03223 12.8504C8.00405 13.1271 9.00546 13.2785 10.0135 13.3011C10.8104 13.285 11.151 13.2239 11.5854 13.1627C12.3604 13.0403 12.751 12.9051 12.8666 12.8697C12.8667 12.8675 12.8667 12.8654 12.8666 12.8633L12.9479 12.8311L12.9447 12.8343Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.9621 11.1955C12.9652 12.1614 12.484 13.0307 12.0996 13.4106C11.5319 13.9811 10.7738 14.306 9.98086 14.3186C9.03399 14.3347 8.14336 13.7004 7.90274 13.4203C7.36444 12.8321 7.05806 12.0585 7.04336 11.2502C7.09961 10.1941 7.50274 9.46004 8.08399 8.95455C8.64863 8.47564 9.35892 8.21688 10.0902 8.22368C10.5172 8.245 10.935 8.35797 11.3171 8.55536C11.6992 8.75274 12.037 9.03017 12.309 9.36989C12.6996 9.85928 12.8715 10.3905 12.9621 11.1955ZM9.98711 7.89205C10.8613 7.89202 11.7001 8.24805 12.3206 8.88253C12.9411 9.51701 13.293 10.3785 13.2996 11.2792C13.2996 11.7261 13.2142 12.1686 13.0482 12.5815C12.8822 12.9944 12.6389 13.3696 12.3322 13.6856C12.0254 14.0016 11.6613 14.2523 11.2605 14.4233C10.8598 14.5944 10.4303 14.6824 9.99649 14.6824C9.56272 14.6824 9.13319 14.5944 8.73244 14.4233C8.33168 14.2523 7.96755 14.0016 7.66083 13.6856C7.3541 13.3696 7.1108 12.9944 6.9448 12.5815C6.7788 12.1686 6.69336 11.7261 6.69336 11.2792C6.69024 9.41174 8.17149 7.89205 9.98711 7.89205Z" fill="#FFFF00"/>
14
+ <path d="M9.98711 7.89205C10.8613 7.89202 11.7001 8.24805 12.3206 8.88253C12.9411 9.51701 13.293 10.3785 13.2996 11.2792C13.2996 11.7261 13.2142 12.1686 13.0482 12.5815C12.8822 12.9944 12.6389 13.3696 12.3322 13.6856C12.0254 14.0016 11.6613 14.2523 11.2605 14.4233C10.8598 14.5944 10.4303 14.6824 9.99649 14.6824C9.56272 14.6824 9.13319 14.5944 8.73244 14.4233C8.33168 14.2523 7.96755 14.0016 7.66083 13.6856C7.3541 13.3696 7.1108 12.9944 6.9448 12.5815C6.7788 12.1686 6.69336 11.7261 6.69336 11.2792C6.69024 9.41174 8.17149 7.89205 9.98711 7.89205M12.9621 11.1955C12.9652 12.1614 12.484 13.0307 12.0996 13.4106C11.5319 13.9811 10.7738 14.306 9.98086 14.3186C9.03399 14.3347 8.14336 13.7004 7.90274 13.4203C7.36444 12.8321 7.05806 12.0585 7.04336 11.2502C7.09961 10.1941 7.50274 9.46004 8.08399 8.95455C8.64863 8.47564 9.35892 8.21688 10.0902 8.22368C10.5172 8.245 10.935 8.35797 11.3171 8.55536C11.6992 8.75274 12.037 9.03017 12.309 9.36989C12.6996 9.85928 12.8715 10.3905 12.9621 11.1955V11.1955Z" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
15
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.99707 7.87595C11.8158 7.87595 13.2971 9.40208 13.2971 11.2759C13.2971 13.1498 11.8158 14.6759 10.0002 14.6759C8.18457 14.6759 6.7002 13.1498 6.7002 11.2759C6.7002 9.40208 8.18145 7.87595 10.0002 7.87595H9.99707ZM6.76895 11.2727C6.76895 13.1015 8.22832 14.5987 9.99707 14.5987C11.7658 14.5987 13.2252 13.1015 13.2252 11.2727C13.2252 9.44394 11.7658 7.94678 9.99707 7.94678C8.22832 7.94678 6.76895 9.44394 6.76895 11.2727Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.0004 8.15928C10.8011 8.16183 11.5683 8.49067 12.1344 9.074C12.7006 9.65734 13.0198 10.4478 13.0223 11.2727C13.0198 12.098 12.7007 12.8888 12.1346 13.4726C11.5686 14.0564 10.8014 14.386 10.0004 14.3894C8.34414 14.3894 6.97852 12.9856 6.97852 11.2727C6.98181 10.448 7.30124 9.65809 7.86724 9.07494C8.43324 8.49178 9.19995 8.16267 10.0004 8.15928ZM7.05039 11.2727C7.05039 12.947 8.38164 14.3121 10.0004 14.3121C11.6191 14.3121 12.9504 12.9438 12.9504 11.2727C12.9504 9.59849 11.6191 8.23334 10.0004 8.23334C9.21902 8.23673 8.47058 8.55803 7.91806 9.1273C7.36554 9.69656 7.05368 10.4677 7.05039 11.2727Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
17
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.134 7.85985H9.84961V14.6953H10.1309L10.134 7.85985Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
18
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.1035 7.82121H10.1754V14.7339H10.1066V7.82121H10.1035ZM9.82227 7.82121H9.89727V14.7339H9.82539V7.82121H9.82227Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
19
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.2992 11.408V11.1568L13.0992 10.9636L11.9648 10.6545L10.3336 10.4839L8.36484 10.5869L6.96484 10.9282L6.68359 11.1439V11.3983L7.39922 11.0667L9.09922 10.793H10.7336L11.9336 10.9282L12.7648 11.1343L13.2992 11.408Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
20
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10 10.7511C10.7781 10.7511 11.5312 10.8252 12.1344 10.9443C12.7531 11.0731 13.1875 11.2341 13.3375 11.4112V11.5013C13.1562 11.276 12.5719 11.115 12.1187 11.0184C11.525 10.9025 10.775 10.8252 9.99687 10.8252C9.18125 10.8252 8.41875 10.9089 7.83125 11.0248C7.3625 11.1214 6.73438 11.3146 6.65625 11.5013V11.408C6.69687 11.2792 7.16563 11.086 7.82188 10.9475C8.4125 10.8284 9.175 10.7511 9.99687 10.7511H10ZM10 10.4581C10.7156 10.4567 11.43 10.5213 12.1344 10.6513C12.7531 10.7801 13.1875 10.9411 13.3375 11.1214V11.2083C13.1562 10.9862 12.5719 10.822 12.1187 10.7286C11.525 10.6095 10.775 10.5354 9.99687 10.5354C9.27161 10.5331 8.54768 10.5999 7.83437 10.735C7.38125 10.822 6.72812 11.0216 6.65625 11.2083V11.1182C6.7 10.9894 7.175 10.7866 7.82188 10.6578C8.41563 10.5386 9.175 10.4581 10 10.4581ZM9.98125 8.97065C11.2094 8.96421 12.2813 9.14773 12.7719 9.40531L12.95 9.72728C12.525 9.48902 11.3688 9.24432 9.98438 9.27652C8.85625 9.28618 7.65 9.40531 7.04688 9.74015L7.25938 9.37311C7.75625 9.10587 8.925 8.97065 9.98125 8.97065Z" fill="#FFFF00"/>
21
+ <path d="M9.98125 8.97065C11.2094 8.96421 12.2813 9.14773 12.7719 9.40531L12.95 9.72728C12.525 9.48902 11.3687 9.24432 9.98438 9.27652C8.85625 9.28618 7.65 9.40531 7.04688 9.74015L7.25938 9.37311C7.75625 9.10587 8.925 8.97065 9.98125 8.97065M10 10.7511C10.7781 10.7511 11.5312 10.8252 12.1344 10.9443C12.7531 11.0731 13.1875 11.2341 13.3375 11.4112V11.5013C13.1562 11.276 12.5719 11.115 12.1187 11.0184C11.525 10.9025 10.775 10.8252 9.99687 10.8252C9.18125 10.8252 8.41875 10.9089 7.83125 11.0248C7.3625 11.1214 6.73438 11.3146 6.65625 11.5013V11.408C6.69687 11.2792 7.16563 11.086 7.82188 10.9475C8.4125 10.8284 9.175 10.7511 9.99687 10.7511H10ZM10 10.4581C10.7156 10.4567 11.43 10.5213 12.1344 10.6513C12.7531 10.7801 13.1875 10.9411 13.3375 11.1214V11.2083C13.1562 10.9862 12.5719 10.822 12.1187 10.7286C11.525 10.6095 10.775 10.5354 9.99687 10.5354C9.27161 10.5331 8.54768 10.5999 7.83437 10.735C7.38125 10.822 6.72812 11.0216 6.65625 11.2083V11.1182C6.7 10.9894 7.175 10.7866 7.82188 10.6578C8.41563 10.5386 9.175 10.4581 10 10.4581V10.4581Z" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
22
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.99941 9.23466C10.6406 9.22351 11.2816 9.26984 11.915 9.37311C12.415 9.4697 12.8932 9.61137 12.9619 9.68864L13.015 9.78523C12.8494 9.67576 12.4338 9.55019 11.9025 9.44716C11.3713 9.34413 10.6932 9.30871 9.99629 9.31193C9.20566 9.30871 8.59004 9.35057 8.06504 9.44716C7.70313 9.49942 7.35176 9.6114 7.02441 9.77879L7.07754 9.67898C7.26504 9.58239 7.55566 9.46326 8.04941 9.36989C8.59629 9.26686 9.21816 9.23788 9.99941 9.23466ZM9.99941 8.94489C10.6682 8.93845 11.3307 8.97709 11.8463 9.07368C12.1804 9.12478 12.5037 9.23363 12.8025 9.39565L12.8807 9.52443C12.7494 9.37311 12.2557 9.22822 11.815 9.15095C11.3025 9.05758 10.6682 9.02216 9.99941 9.01572C9.37689 9.01 8.75498 9.05739 8.14004 9.15739C7.8185 9.20355 7.50621 9.30247 7.21504 9.45038L7.28379 9.34413C7.46504 9.24754 7.75879 9.15739 8.12754 9.08334C8.74653 8.98202 9.3727 8.93463 9.99941 8.94167V8.94489ZM11.6369 12.6894C11.0953 12.5928 10.5459 12.5497 9.99629 12.5606C7.94941 12.5864 7.29004 12.9953 7.20879 13.1176L7.05254 12.86C7.57754 12.4737 8.69004 12.2547 10.0088 12.2741C10.6932 12.2869 11.2838 12.3352 11.7775 12.435L11.6369 12.6926" fill="#FFFF00"/>
23
+ <path d="M11.6369 12.6894C11.0953 12.5928 10.5459 12.5497 9.99629 12.5606C7.94941 12.5864 7.29004 12.9953 7.20879 13.1176L7.05254 12.86C7.57754 12.4737 8.69004 12.2547 10.0088 12.2741C10.6932 12.2869 11.2838 12.3352 11.7775 12.435L11.6369 12.6926M9.99941 9.23466C10.6406 9.22351 11.2816 9.26984 11.915 9.37311C12.415 9.4697 12.8932 9.61137 12.9619 9.68864L13.015 9.78523C12.8494 9.67576 12.4338 9.55019 11.9025 9.44716C11.3713 9.34413 10.6932 9.30871 9.99629 9.31193C9.20566 9.30871 8.59004 9.35057 8.06504 9.44716C7.70313 9.49942 7.35176 9.6114 7.02441 9.77879L7.07754 9.67898C7.26504 9.58239 7.55566 9.46326 8.04941 9.36989C8.59629 9.26686 9.21816 9.23788 9.99941 9.23466V9.23466ZM9.99941 8.94489C10.6682 8.93845 11.3307 8.97709 11.8463 9.07368C12.1804 9.12478 12.5037 9.23363 12.8025 9.39565L12.8807 9.52443C12.7494 9.37311 12.2557 9.22822 11.815 9.15095C11.3025 9.05758 10.6682 9.02216 9.99941 9.01572C9.37689 9.01 8.75498 9.05739 8.14004 9.15739C7.8185 9.20355 7.50621 9.30247 7.21504 9.45038L7.28379 9.34413C7.46504 9.24754 7.75879 9.15739 8.12754 9.08334C8.74653 8.98202 9.3727 8.93463 9.99941 8.94167V8.94489Z" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
24
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.98672 12.5252C10.5555 12.5349 11.1117 12.5574 11.6523 12.6604L11.6148 12.7313C11.1148 12.6347 10.5773 12.6025 9.98984 12.6025C9.23047 12.596 8.46797 12.6701 7.80234 12.8665C7.59297 12.9277 7.24609 13.0661 7.20859 13.182L7.17109 13.1176C7.18359 13.0468 7.38984 12.9051 7.78359 12.7956C8.54609 12.5703 9.25859 12.5284 9.98672 12.5252ZM10.0117 12.229C10.612 12.2283 11.2112 12.2822 11.8023 12.39L11.7617 12.464C11.1845 12.3549 10.5986 12.3021 10.0117 12.3063C9.25547 12.3063 8.45234 12.3642 7.72109 12.5831C7.48672 12.654 7.07734 12.8085 7.06484 12.9277L7.02734 12.8568C7.03359 12.7474 7.38672 12.6025 7.70547 12.5091C8.43984 12.2869 9.24609 12.2322 10.0117 12.229Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
25
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M12.9182 12.8987L12.6744 13.2947L11.965 12.6475L10.1338 11.3758L8.06504 10.207L6.99316 9.83031L7.22129 9.39243L7.29941 9.35057L7.96504 9.52121L10.165 10.69L11.4338 11.5142L12.4994 12.303L12.9338 12.8182L12.9182 12.8987Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
26
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.95566 9.83996C7.14316 9.71117 8.52441 10.3422 9.97441 11.2438C11.415 12.1453 12.7963 13.1627 12.6713 13.3527L12.6307 13.4203L12.6119 13.4364C12.615 13.4331 12.6369 13.4042 12.6119 13.3366C12.5494 13.1273 11.5682 12.3223 9.94629 11.3114C8.36191 10.3422 7.04316 9.75625 6.91504 9.92368L6.95566 9.83996ZM12.9682 12.8955C13.0869 12.6508 11.8057 11.6559 10.215 10.6867C8.59004 9.73693 7.41504 9.17671 7.19941 9.34413L7.15566 9.4375C7.15566 9.44072 7.15566 9.43106 7.16816 9.4214C7.20566 9.38921 7.27129 9.38921 7.29941 9.38921C7.66816 9.39564 8.72129 9.8947 10.1994 10.7672C10.8494 11.1536 12.9369 12.5381 12.9275 12.9244C12.9275 12.9566 12.9307 12.9631 12.9182 12.9824L12.9713 12.8987L12.9682 12.8955Z" fill="#FFFF00" stroke="black" stroke-width="0.136364" stroke-linecap="round" stroke-linejoin="round"/>
27
+ <path d="M8.02051 11.6516C8.021 11.9182 8.07281 12.182 8.17294 12.4279C8.27307 12.6737 8.41953 12.8966 8.60384 13.0837C8.78591 13.2742 9.00275 13.4257 9.24189 13.5294C9.48102 13.6331 9.73771 13.6871 9.99718 13.6882C10.5223 13.6881 11.0259 13.4732 11.3972 13.0906C11.5808 12.9024 11.7266 12.6788 11.8262 12.4324C11.9257 12.1861 11.977 11.9219 11.9772 11.655V8.93503L8.02051 8.92816V11.6516Z" fill="white" stroke="black" stroke-width="0.169697"/>
28
+ <path d="M8.0918 11.655C8.0925 11.9108 8.14235 12.1638 8.23846 12.3996C8.33458 12.6354 8.47506 12.8492 8.6518 13.0288C9.00669 13.3963 9.4886 13.6038 9.9918 13.6057C10.4941 13.606 10.976 13.401 11.3318 13.0356C11.5079 12.8558 11.6478 12.6418 11.7433 12.4061C11.8389 12.1703 11.8882 11.9174 11.8885 11.6619V9.01745H8.09846V11.655H8.0918ZM11.1318 9.81079V11.4902L11.1285 11.6653C11.1296 11.8188 11.1007 11.9708 11.0434 12.1125C10.9861 12.2541 10.9017 12.3824 10.7951 12.4896C10.5832 12.7087 10.2954 12.8323 9.99514 12.833C9.6818 12.833 9.40513 12.6956 9.19847 12.4827C8.98576 12.2643 8.86587 11.9679 8.86513 11.6585V9.80392L11.1318 9.81079Z" fill="#FF0000" stroke="black" stroke-width="0.121212"/>
29
+ <path d="M8.33984 9.70775C8.34318 9.51887 8.47318 9.47422 8.47318 9.47422C8.47651 9.47422 8.61651 9.5223 8.61651 9.71119H8.33984" fill="#FFFF00"/>
30
+ <path d="M8.22619 9.47765L8.20285 9.69402H8.34285C8.34285 9.51543 8.47619 9.48796 8.47619 9.48796C8.47952 9.48796 8.60952 9.52574 8.61285 9.69402H8.75285L8.72619 9.47422H8.22619V9.47765ZM8.19285 9.69745H8.75952C8.76952 9.69745 8.77952 9.70776 8.77952 9.72149C8.77952 9.73867 8.76952 9.74897 8.75952 9.74897H8.19285C8.18285 9.74897 8.17285 9.73867 8.17285 9.72149C8.17285 9.70776 8.18285 9.69745 8.19618 9.69745H8.19285Z" fill="#FFFF00" stroke="black" stroke-width="0.121212"/>
31
+ <path d="M8.40083 9.69402C8.40083 9.58068 8.4775 9.54978 8.4775 9.54978C8.4775 9.54978 8.55417 9.58412 8.55417 9.69402H8.40083ZM8.2075 9.38493H8.75083C8.76083 9.38493 8.77083 9.39866 8.77083 9.4124C8.77083 9.4227 8.76083 9.43301 8.75083 9.43301H8.2075C8.1975 9.43301 8.1875 9.4227 8.1875 9.40897C8.1875 9.39866 8.1975 9.38836 8.2075 9.38836V9.38493ZM8.22083 9.43644H8.73417C8.74417 9.43644 8.75417 9.44674 8.75417 9.46048C8.75417 9.47422 8.74417 9.48452 8.73417 9.48452H8.2175C8.20417 9.48452 8.1975 9.47422 8.1975 9.46048C8.1975 9.44674 8.20417 9.43644 8.2175 9.43644H8.22083ZM8.3875 9.0724H8.4275V9.09987H8.4575V9.0724H8.50083V9.10331H8.53083V9.06897H8.57083V9.13765C8.57083 9.15139 8.56417 9.15826 8.55417 9.15826H8.4075C8.3975 9.15826 8.3875 9.15139 8.3875 9.14109V9.0724ZM8.54083 9.16513L8.55083 9.38493H8.4075L8.4175 9.16169H8.54083" fill="#FFFF00"/>
32
+ <path d="M8.54083 9.16513L8.55083 9.38493H8.4075L8.4175 9.16169H8.54083M8.40083 9.69402C8.40083 9.58068 8.4775 9.54978 8.4775 9.54978C8.4775 9.54978 8.55417 9.58412 8.55417 9.69402H8.40083ZM8.2075 9.38493H8.75083C8.76083 9.38493 8.77083 9.39866 8.77083 9.4124C8.77083 9.4227 8.76083 9.43301 8.75083 9.43301H8.2075C8.1975 9.43301 8.1875 9.4227 8.1875 9.40897C8.1875 9.39866 8.1975 9.38836 8.2075 9.38836V9.38493ZM8.22083 9.43644H8.73417C8.74417 9.43644 8.75417 9.44674 8.75417 9.46048C8.75417 9.47422 8.74417 9.48452 8.73417 9.48452H8.2175C8.20417 9.48452 8.1975 9.47422 8.1975 9.46048C8.1975 9.44674 8.20417 9.43644 8.2175 9.43644H8.22083ZM8.3875 9.0724H8.4275V9.09987H8.4575V9.0724H8.50083V9.10331H8.53083V9.06897H8.57083V9.13765C8.57083 9.15139 8.56417 9.15826 8.55417 9.15826H8.4075C8.3975 9.15826 8.3875 9.15139 8.3875 9.14109V9.0724Z" stroke="black" stroke-width="0.121212"/>
33
+ <path d="M8.36673 9.26816V9.38492H8.2334V9.26816H8.36673Z" fill="#FFFF00" stroke="black" stroke-width="0.121212"/>
34
+ <path d="M8.20898 9.17887H8.24899V9.21321H8.27899V9.17887H8.31899V9.21321H8.34899V9.17887H8.38899V9.24755C8.38899 9.26129 8.38232 9.26816 8.37232 9.26816H8.22898C8.22368 9.26816 8.21859 9.26599 8.21484 9.26213C8.21109 9.25826 8.20898 9.25302 8.20898 9.24755V9.17887Z" fill="#FFFF00" stroke="black" stroke-width="0.121212"/>
35
+ <path d="M8.46191 9.23382C8.46191 9.21321 8.49191 9.21321 8.49191 9.23382V9.28877H8.46191V9.23382Z" fill="black"/>
36
+ <path d="M8.28613 9.30937C8.28613 9.28876 8.3128 9.28876 8.3128 9.30937V9.35058H8.28613V9.30937Z" fill="black"/>
37
+ <path d="M9.75294 11.3562C9.75234 11.4287 9.77856 11.4987 9.82627 11.552C9.84853 11.5776 9.87575 11.5982 9.90617 11.6124C9.93659 11.6266 9.96955 11.6341 10.0029 11.6344C10.0729 11.6344 10.1363 11.6001 10.1796 11.552C10.2273 11.4987 10.2535 11.4287 10.2529 11.3562V10.9853H9.75294V11.3562Z" fill="#003399"/>
38
+ <path d="M9.86934 11.1777C9.89695 11.1777 9.91934 11.1546 9.91934 11.1261C9.91934 11.0977 9.89695 11.0746 9.86934 11.0746C9.84172 11.0746 9.81934 11.0977 9.81934 11.1261C9.81934 11.1546 9.84172 11.1777 9.86934 11.1777Z" fill="white"/>
39
+ <path d="M10.1457 11.1777C10.1733 11.1777 10.1957 11.1546 10.1957 11.1261C10.1957 11.0977 10.1733 11.0746 10.1457 11.0746C10.1181 11.0746 10.0957 11.0977 10.0957 11.1261C10.0957 11.1546 10.1181 11.1777 10.1457 11.1777Z" fill="white"/>
40
+ <path d="M10.0051 11.315C10.0327 11.315 10.0551 11.292 10.0551 11.2635C10.0551 11.2351 10.0327 11.212 10.0051 11.212C9.97746 11.212 9.95508 11.2351 9.95508 11.2635C9.95508 11.292 9.97746 11.315 10.0051 11.315Z" fill="white"/>
41
+ <path d="M9.86934 11.4593C9.89695 11.4593 9.91934 11.4362 9.91934 11.4078C9.91934 11.3793 9.89695 11.3562 9.86934 11.3562C9.84172 11.3562 9.81934 11.3793 9.81934 11.4078C9.81934 11.4362 9.84172 11.4593 9.86934 11.4593Z" fill="white"/>
42
+ <path d="M10.1457 11.4593C10.1733 11.4593 10.1957 11.4362 10.1957 11.4078C10.1957 11.3793 10.1733 11.3562 10.1457 11.3562C10.1181 11.3562 10.0957 11.3793 10.0957 11.4078C10.0957 11.4362 10.1181 11.4593 10.1457 11.4593Z" fill="white"/>
43
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg data-token-name="flag_ru" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 4H22V19H2V4Z" fill="white"/>
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 9H22V19H2V9Z" fill="#0039A6"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2 14H22V19H2V14Z" fill="#D52B1E"/>
5
+ <rect x="1.5" y="3.5" width="21" height="16" stroke="#EDF0F3"/>
6
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg data-token-name="fly_dollar" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M23.7305 11.3262C22.0073 8.92112 18.4447 12.4607 11.9428 13.1801C9.53552 13.4461 7.36646 15.3723 4.57003 15.1887C3.42343 15.1133 1.82233 11.9523 0.623675 12.4562C0.00699442 12.7158 -0.275985 13.5823 0.358049 14.2333L7.39782 22.282C7.39782 22.282 7.75555 22.6772 8.96088 22.4035C9.25788 22.4872 13.7228 20.7728 16.3043 17.3406C16.9223 16.5189 17.6592 15.8346 18.422 15.2629C20.8987 13.5082 23.591 12.8968 23.591 12.8968C23.9354 12.6244 24.0162 12.3347 23.9975 12.0834C24.0202 11.6639 23.7305 11.3262 23.7305 11.3262Z" fill="#218321"/>
3
+ <path d="M7.53588 6.97545C4.94703 10.3899 0.413302 12.0074 0.413302 12.0074C-0.432538 12.6883 0.281909 13.4909 0.281909 13.4909L7.42502 21.5288C7.42502 21.5288 7.78224 21.9301 8.9853 21.6517C8.9853 21.6517 13.519 20.0375 16.1072 16.623C18.7754 13.1045 23.587 11.9937 23.587 11.9937C24.4322 11.3128 23.7184 10.5089 23.7184 10.5089L16.5753 2.47229C16.5753 2.47229 16.2181 2.07036 15.015 2.34742C15.015 2.34742 10.2041 3.45565 7.53588 6.97545Z" fill="#A7D28B"/>
4
+ <path d="M14.625 13.5C16.489 13.5 18 11.8211 18 9.75C18 7.67893 16.489 6 14.625 6C12.761 6 11.25 7.67893 11.25 9.75C11.25 11.8211 12.761 13.5 14.625 13.5Z" fill="#218321"/>
5
+ <path d="M8.71135 21C8.13894 21 7.92907 20.7881 7.90048 20.7558L1.78711 13.659C1.77542 13.6455 1.46549 13.2927 1.50318 12.8442C1.52592 12.5722 1.66756 12.3299 1.92356 12.1238L1.96449 12.0992C2.00412 12.0837 5.96882 10.4631 8.19092 7.53413L8.32086 7.63105L8.19092 7.53413C10.5417 4.43517 14.5967 3.10538 14.637 3.09246C15.7707 2.83012 16.1417 3.20489 16.1814 3.24882L22.2142 10.385C22.2252 10.3966 22.5345 10.7507 22.4968 11.1998C22.4741 11.4711 22.3324 11.7135 22.0764 11.9196L22.0121 11.9512C21.9725 11.9609 18.0299 12.9353 15.7461 15.9451C13.4726 18.9433 9.50403 20.883 9.4644 20.9018C9.16292 20.9729 8.91472 21 8.71135 21ZM8.14543 20.5432C8.14608 20.5432 8.43911 20.812 9.35719 20.6C9.36239 20.5929 13.2615 18.6861 15.4881 15.7513C17.7213 12.808 21.4819 11.7568 21.8991 11.6475C22.066 11.5047 22.1583 11.3464 22.1732 11.1765C22.2005 10.8663 21.9705 10.5995 21.9686 10.5969L15.9358 3.46012C15.9345 3.46012 15.6434 3.19196 14.7247 3.4039C14.698 3.41295 10.7385 4.71301 8.45081 7.72862C6.2638 10.6111 2.44789 12.2485 2.11068 12.3893C1.93655 12.5347 1.84169 12.6969 1.82674 12.8707C1.80075 13.1783 2.02946 13.4439 2.03141 13.4464L8.14543 20.5432Z" fill="#218321"/>
6
+ <path d="M14.2537 15.0185L14.25 19.0951L14.5591 19.5C15.1617 18.8933 15.7407 18.2111 16.2413 17.4439C16.7606 16.6492 17.3638 15.969 18 15.3946L17.6996 15L14.2537 15.0185Z" fill="#FCB100"/>
7
+ <path d="M17.9881 14.8637L9.68807 5.25C9.01377 5.79257 8.36602 6.42535 7.81517 7.17366C7.27692 7.90444 6.65041 8.54761 6 9.11484L6.9703 10.2383L6.96964 10.2389L14.3199 18.75C14.9703 18.1821 15.5895 17.5325 16.1284 16.801C16.6793 16.0534 17.3264 15.4212 18 14.8787L17.9874 14.8637H17.9881Z" fill="#FCB100"/>
8
+ <path d="M9.35578 15.2815C8.31886 14.0527 6.12382 16.0465 5.49781 15.3048C5.19479 14.9456 5.38992 14.4798 5.78817 14.144C6.45747 13.5775 6.9403 13.9074 7.24332 13.6508C7.45843 13.4696 7.44711 13.2477 7.31924 13.0951C7.02222 12.7439 6.26301 12.9272 5.67296 13.2683L5.38593 12.9285C5.20678 12.7166 4.88978 12.6893 4.678 12.8685C4.46622 13.0484 4.43958 13.3643 4.61873 13.5762L4.91575 13.9287C4.46489 14.5271 4.31171 15.3215 4.84516 15.9525C5.84145 17.132 8.0638 15.1715 8.76307 16.0005C9.00548 16.2884 8.93755 16.8375 8.42742 17.2679C7.66288 17.915 6.97027 17.6118 6.65926 17.8744C6.50742 18.0016 6.48012 18.2442 6.64195 18.4368C6.89968 18.7413 7.72082 18.676 8.51 18.1842C8.51133 18.1856 8.51133 18.1869 8.51133 18.1882L8.83566 18.5721C9.0148 18.784 9.33247 18.8099 9.54425 18.632C9.7567 18.4521 9.78267 18.1349 9.60352 17.923L9.27919 17.5392C9.27587 17.5352 9.27054 17.5325 9.26654 17.5285C9.79865 16.8768 9.97846 16.0178 9.35578 15.2815Z" fill="#218321"/>
9
+ <path d="M21.7465 21.9552C21.7527 21.9497 21.7596 21.9456 21.7659 21.9407C21.8129 21.8937 21.8495 21.8398 21.891 21.788C21.92 21.7521 21.9525 21.7175 21.9794 21.6809C22.0036 21.6463 22.0237 21.6111 22.0458 21.5758C23.0273 20.0644 22.3845 17.5019 20.4415 15.5586C18.4977 13.6152 15.934 12.9725 14.423 13.9545C14.387 13.976 14.3518 13.996 14.3172 14.0209C14.2806 14.0478 14.2453 14.0803 14.2108 14.1087C14.1596 14.1508 14.1057 14.1868 14.058 14.2344C14.0518 14.2407 14.0476 14.2476 14.0428 14.2538C14.0352 14.2614 14.0262 14.2662 14.0179 14.2745L14.0221 14.278C13.3308 15.0119 13.3225 16.1474 14.0179 16.8433C14.7147 17.5399 15.8497 17.5302 16.5844 16.8391L16.592 16.8474C16.5775 16.8613 16.5616 16.8702 16.5478 16.8841C15.8158 17.6159 15.7985 18.7832 16.507 19.4929C17.2162 20.2013 18.3851 20.184 19.1164 19.4521C19.1302 19.4383 19.1392 19.4224 19.153 19.4079L19.1606 19.4162C18.4694 20.1501 18.4604 21.2856 19.1572 21.9822C19.8532 22.6774 20.9882 22.6691 21.7223 21.978L21.7265 21.9822C21.7334 21.9725 21.7389 21.9635 21.7465 21.9552Z" fill="white"/>
10
+ <path d="M13.991 17.2777C14.5882 17.855 15.5209 17.9022 16.2123 17.4442C16.5017 16.9658 16.5848 16.511 16.5848 16.3687C15.13 17.4187 13.8314 16.3745 13.5408 15.75C13.4201 16.2896 13.5665 16.8663 13.991 17.2777ZM18.8022 19.7271C18.9986 19.4599 19.1509 19.2015 19.2221 19.0268C18.296 19.8483 16.5255 19.2468 15.9889 17.9437C15.7529 18.5496 15.8735 19.2475 16.3653 19.7233C17.0258 20.3625 18.1015 20.3574 18.8022 19.7271ZM21.3426 22.0203L21.3618 21.9973C21.3683 21.9922 21.3749 21.9884 21.3802 21.9833C21.4257 21.9399 21.4606 21.8902 21.4995 21.843C21.5279 21.8092 21.5582 21.7779 21.5839 21.7435C21.6076 21.7122 21.6267 21.679 21.6478 21.6465C21.6907 21.5827 21.7137 21.5075 21.75 21.4398C20.0836 22.1613 18.8398 20.9372 18.4911 20.3268C18.2966 20.9117 18.4232 21.5668 18.8925 22.0216C19.5556 22.6639 20.638 22.6563 21.3387 22.0178L21.3426 22.0203Z" fill="#C7CCD1"/>
11
+ <path d="M9.05953 8.50202L9.07727 8.48808C9.12098 8.445 9.15456 8.39558 9.19194 8.3487C9.21855 8.31576 9.24769 8.28471 9.2724 8.2505C9.29521 8.21882 9.31358 8.18651 9.33385 8.1542C10.2335 6.76862 9.64365 4.41878 7.86276 2.63787C6.08124 0.856327 3.73206 0.266492 2.3465 1.16613C2.31419 1.18641 2.28125 1.20478 2.24957 1.22759C2.21536 1.2523 2.18431 1.28144 2.15137 1.30805C2.10449 1.34606 2.05507 1.37901 2.01199 1.42272C2.00629 1.42842 2.00249 1.43539 1.99805 1.44046C1.99108 1.4468 1.98221 1.4525 1.97525 1.45947L1.97841 1.46264C1.34487 2.13547 1.33727 3.17639 1.97525 3.81438C2.61322 4.45236 3.65414 4.44476 4.32696 3.81121L4.33393 3.81818C4.32062 3.83022 4.30605 3.83909 4.29338 3.85176C3.62246 4.52269 3.60662 5.59275 4.25664 6.24341C4.90665 6.89407 5.97734 6.8776 6.64826 6.20667C6.66093 6.19399 6.66917 6.17942 6.68184 6.16612L6.68881 6.17309C6.05526 6.84592 6.04703 7.88684 6.68564 8.52483C7.32362 9.16281 8.3639 9.15521 9.03672 8.52103L9.03989 8.52483C9.04686 8.51786 9.05256 8.50962 9.05953 8.50202Z" fill="white"/>
12
+ <path d="M1.991 3.7787C2.58825 4.3565 3.52105 4.4037 4.21257 3.94451C4.50196 3.4662 4.58437 3.01212 4.58437 2.8699C3.13013 3.919 1.83081 2.87436 1.54075 2.25C1.42012 2.79018 1.56646 3.36735 1.991 3.7787ZM6.80395 6.2264C6.99974 5.95918 7.15202 5.70216 7.22256 5.52742C6.2957 6.34885 4.52504 5.74681 3.98909 4.44387C3.75309 5.04974 3.87373 5.74744 4.36485 6.22321C5.0267 6.86288 6.1032 6.85714 6.80395 6.2264ZM9.3426 8.5204C9.34985 8.51338 9.35579 8.50509 9.36238 8.49744L9.38084 8.48341C9.42632 8.44004 9.46126 8.3903 9.50016 8.3431C9.52784 8.30994 9.55817 8.27869 9.58388 8.24425C9.60761 8.21236 9.62673 8.17984 9.64782 8.14731C9.69067 8.08354 9.71374 8.00764 9.75 7.94004C8.0835 8.66134 6.83955 7.43813 6.49082 6.8278C6.29636 7.41262 6.42292 8.06759 6.89229 8.52167C7.55612 9.16389 8.63856 9.15624 9.33865 8.51785L9.3426 8.5204Z" fill="#C7CCD1"/>
13
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg data-token-name="fly_euro" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.25488 12.001H12.7479" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M13.8906 14.655C12.8296 15.115 11.5576 14.926 10.6906 14.058C9.55364 12.921 9.55364 11.078 10.6906 9.941C11.5586 9.073 12.8306 8.884 13.8906 9.344" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.804 18.213V18.213C17.299 17.712 14.715 17.774 12.237 18.393L12 18.453C9.366 19.111 6.619 19.177 3.957 18.644L3.804 18.613C3.336 18.52 3 18.109 3 17.633V6.79399C3 6.16299 3.577 5.68999 4.196 5.81299V5.81299C6.701 6.31399 9.285 6.25199 11.763 5.63299L12.236 5.51499C14.714 4.89599 17.299 4.83399 19.803 5.33499L20.195 5.41299C20.664 5.50699 21 5.91699 21 6.39399V17.233C21 17.864 20.423 18.337 19.804 18.213V18.213Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.9871 3.00008C11.5326 3.00912 11.1684 3.3588 11.1749 3.78383V5.0077L10.9331 4.78161C10.7784 4.63089 10.5657 4.5495 10.3401 4.54649C10.0048 4.5495 9.70509 4.73941 9.57616 5.0288C9.45046 5.3212 9.52459 5.65279 9.76633 5.87284L11.1749 7.19015V10.1624L8.41904 8.67928L7.90333 6.87966C7.81308 6.54205 7.49398 6.3039 7.12654 6.29486C6.86224 6.28883 6.61405 6.40037 6.45289 6.59329C6.29173 6.78923 6.24016 7.04244 6.31107 7.27757L6.40132 7.58504L5.26676 6.97612C5.1475 6.90679 5.01213 6.87062 4.87353 6.86459C4.84775 6.86459 4.81874 6.86459 4.79295 6.8676C4.42873 6.88871 4.11931 7.12986 4.03873 7.46446C3.95815 7.79907 4.12253 8.14271 4.44162 8.30851L5.57619 8.92044L5.2442 9.00484C4.95411 9.07116 4.72526 9.27915 4.64468 9.55045C4.56733 9.81874 4.64791 10.1081 4.86064 10.3041C5.07337 10.5 5.38279 10.5723 5.66966 10.497L7.59712 10.0147L10.3497 11.5008L7.59712 12.9869L5.66966 12.5046C5.5923 12.4835 5.51172 12.4745 5.42792 12.4775C5.01213 12.4835 4.67047 12.7759 4.62212 13.1617C4.577 13.5446 4.8413 13.9033 5.2442 13.9967L5.57619 14.0812L4.44162 14.6931C4.1741 14.8227 4.00327 15.0819 4.00005 15.3653C3.99682 15.6487 4.15798 15.9109 4.42228 16.0496C4.68659 16.1852 5.01213 16.1792 5.26676 16.0255L6.40132 15.4165L6.31107 15.724C6.22727 15.9923 6.30785 16.2817 6.51736 16.4806C6.72686 16.6796 7.03307 16.758 7.32315 16.6826C7.61002 16.6103 7.83242 16.3962 7.90333 16.1219L8.41904 14.3223L11.1749 12.8392V15.8114L9.76633 17.1287C9.55038 17.3217 9.46335 17.6111 9.54071 17.8793C9.61484 18.1506 9.84046 18.3617 10.1306 18.431C10.4174 18.5033 10.7268 18.4219 10.9331 18.22L11.1749 17.9939V19.2178C11.1716 19.4951 11.3264 19.7543 11.5842 19.896C11.8421 20.0347 12.1579 20.0347 12.4158 19.896C12.6736 19.7543 12.8284 19.4951 12.8251 19.2178V17.9939L13.0669 18.22C13.2732 18.4219 13.5826 18.5033 13.8694 18.431C14.1595 18.3617 14.3852 18.1506 14.4593 17.8793C14.5366 17.6111 14.4496 17.3217 14.2337 17.1287L12.8251 15.8114V12.8392L15.581 14.3223L16.0967 16.1219C16.1676 16.3962 16.39 16.6103 16.6768 16.6826C16.9669 16.758 17.2731 16.6796 17.4826 16.4806C17.6922 16.2817 17.7727 15.9923 17.6889 15.724L17.5987 15.4165L18.7332 16.0255C18.9879 16.1792 19.3134 16.1852 19.5777 16.0496C19.842 15.9109 20.0032 15.6487 20 15.3653C19.9967 15.0819 19.8259 14.8227 19.5584 14.6931L18.4238 14.0812L18.7558 13.9967C19.1619 13.9033 19.4294 13.5386 19.3747 13.1497C19.3231 12.7608 18.9653 12.4714 18.5495 12.4775C18.4722 12.4775 18.4013 12.4865 18.3303 12.5046L16.4029 12.9869L13.6503 11.5008L16.4029 10.0147L18.3303 10.497C18.6172 10.5723 18.9266 10.5 19.1394 10.3041C19.3521 10.1081 19.4327 9.81874 19.3553 9.55045C19.2747 9.27915 19.0459 9.07116 18.7558 9.00484L18.4238 8.92044L19.5584 8.30851C19.8807 8.1397 20.0419 7.79002 19.9548 7.45542C19.8678 7.1178 19.5519 6.87966 19.1813 6.8676C19.0265 6.86158 18.8686 6.89775 18.7332 6.97612L17.5987 7.58504L17.6889 7.27757C17.7631 7.03641 17.705 6.78019 17.5407 6.58425C17.3731 6.39132 17.1184 6.2828 16.8509 6.29486C16.4899 6.31596 16.1837 6.55109 16.0967 6.87966L15.581 8.67928L12.8251 10.1624V7.19015L14.2337 5.87284C14.4786 5.65279 14.5528 5.31215 14.4238 5.01975C14.2917 4.72735 13.9823 4.53744 13.6406 4.54347C13.4246 4.5495 13.2184 4.63391 13.0669 4.78161L12.8251 5.0077V3.78383C12.8284 3.57584 12.7413 3.37387 12.5834 3.22616C12.4255 3.07846 12.2095 2.99707 11.9871 3.00008Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg data-token-name="full_screen" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"/></svg>
@@ -0,0 +1,4 @@
1
+ <svg data-token-name="get_app" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path d="M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z"/>
3
+ <path d="M0 0h24v24H0z" fill="none"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="glasses" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.903 4L19.574 5.142C20.056 5.471 20.37 5.995 20.434 6.576L21.464 16M9.50001 16.473C9.50001 15.161 10.619 14.098 12 14.098C13.381 14.098 14.5 15.161 14.5 16.473M6.09701 4L4.42601 5.142C3.94401 5.471 3.63001 5.995 3.56701 6.576L2.53601 16M20.4749 14.0251C21.8417 15.3919 21.8417 17.608 20.4749 18.9748C19.1081 20.3417 16.892 20.3417 15.5252 18.9748C14.1583 17.608 14.1583 15.3919 15.5252 14.0251C16.892 12.6583 19.1081 12.6583 20.4749 14.0251ZM8.47488 14.0251C9.84172 15.3919 9.84172 17.608 8.47488 18.9748C7.10804 20.3417 4.89197 20.3417 3.52513 18.9748C2.15829 17.608 2.15829 15.3919 3.52513 14.0251C4.89197 12.6583 7.10804 12.6583 8.47488 14.0251Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg data-token-name="google_colored" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.0026 12.228C22.0035 11.5466 21.9447 10.8663 21.8269 10.1947H12.2051V14.046H17.716C17.6033 14.6611 17.3646 15.2474 17.0144 15.7697C16.6642 16.292 16.2097 16.7393 15.6783 17.0848V19.5847H18.9673C20.8931 17.8445 22.0026 15.271 22.0026 12.228Z" fill="#4285F4"/>
3
+ <path d="M12.1999 21.9999C14.9533 21.9999 17.2716 21.1139 18.9622 19.5861L15.6732 17.0862C14.7577 17.6945 13.5787 18.0418 12.1999 18.0418C9.5387 18.0418 7.2799 16.2835 6.47218 13.9141H3.08398V16.4904C3.93318 18.1466 5.23534 19.5388 6.84507 20.5117C8.4548 21.4846 10.3088 21.9999 12.1999 21.9999Z" fill="#34A853"/>
4
+ <path d="M6.47462 13.9142C6.0476 12.6726 6.0476 11.3281 6.47462 10.0865V7.51024H3.08642C2.37205 8.90346 2 10.4411 2 12.0004C2 13.5596 2.37205 15.0972 3.08642 16.4905L6.47462 13.9142Z" fill="#FBBC04"/>
5
+ <path d="M12.1999 5.95885C13.655 5.93555 15.0609 6.47435 16.1139 7.45879L19.0259 4.60473C17.1794 2.9049 14.7331 1.97166 12.1999 2.00066C10.3087 2.00074 8.4548 2.51599 6.84507 3.48888C5.23534 4.46178 3.93318 5.85402 3.08398 7.51018L6.47218 10.0865C7.2799 7.71711 9.5387 5.95885 12.1999 5.95885Z" fill="#EA4335"/>
6
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg data-token-name="googleplus_colored" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z" fill="#EA4335"/>
3
+ <path d="M17.0945 9.858C17.5752 9.858 18.0556 9.858 18.5384 9.858C18.541 10.3331 18.5457 10.8105 18.5483 11.2854C19.0311 11.2901 19.5166 11.2925 19.9996 11.2949C19.9996 11.7699 19.9996 12.2424 19.9996 12.7175C19.5168 12.7198 19.0313 12.7222 18.5483 12.7246C18.5435 13.202 18.541 13.6769 18.5384 14.1543C18.0556 14.152 17.5723 14.1543 17.0919 14.1543C17.0873 13.6769 17.0873 13.202 17.0822 12.727C16.5994 12.722 16.1139 12.7198 15.6309 12.7173C15.6309 12.2422 15.6309 11.7697 15.6309 11.2946C16.1139 11.2923 16.597 11.2899 17.0822 11.2851C17.0846 10.8105 17.0895 10.3331 17.0945 9.858Z" fill="white"/>
4
+ <path d="M4.00312 12.0064C3.90357 9.42853 6.1995 7.04628 8.82332 7.01538C10.1606 6.9032 11.4616 7.41393 12.4737 8.24692C12.0585 8.69583 11.6361 9.13956 11.185 9.55497C10.294 9.02263 9.22132 8.61694 8.18005 8.97724C6.50058 9.44755 5.48349 11.3977 6.10499 13.0136C6.61969 14.7012 8.70684 15.6273 10.3426 14.9184C11.1896 14.6201 11.748 13.8515 11.993 13.0257C11.0223 13.0067 10.0514 13.0185 9.08067 12.9922C9.07825 12.4242 9.07583 11.8583 9.07825 11.2903C10.6971 11.2879 12.3183 11.2832 13.9395 11.2975C14.0391 12.6892 13.8303 14.1785 12.9104 15.2955C11.6506 16.89 9.32329 17.3579 7.42998 16.7324C5.42063 16.0834 3.95939 14.0925 4.00312 12.0064Z" fill="white"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="graph-no-data" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8.50116 22H3.09591C2.48991 22 2 21.5334 2 20.9587V17.0413C2 16.4655 2.49107 16 3.09591 16H8.5M8.50116 22H15.5M8.50116 22V9.14533C8.50116 8.512 8.99223 8 9.59707 8H15.4988M15.5 22V3.11059C15.5 2.49765 15.9912 2 16.5961 2H20.9039C21.5088 2 22 2.49647 22 3.11059V20.8894C22 21.5024 21.51 22 20.9039 22H15.5Z" stroke="#202427" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="group" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 19C2 16.8 3.8 15 6 15H10C12.2 15 14 16.8 14 19M16 14H19C20.7 14 22 15.3 22 17M11.5 8.5C11.5 10.433 9.933 12 8 12C6.067 12 4.5 10.433 4.5 8.5C4.5 6.567 6.067 5 8 5C9.933 5 11.5 6.567 11.5 8.5ZM20 8.5C20 9.88071 18.8807 11 17.5 11C16.1193 11 15 9.88071 15 8.5C15 7.11929 16.1193 6 17.5 6C18.8807 6 20 7.11929 20 8.5Z" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg data-token-name="group_connection" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.6555 13.6545C12.5697 12.7403 12.5697 11.2581 11.6555 10.3439C10.7413 9.42965 9.25906 9.42965 8.34484 10.3439C7.43063 11.2581 7.43063 12.7403 8.34484 13.6545C9.25905 14.5688 10.7413 14.5688 11.6555 13.6545Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M19.4484 13.4895C20.2713 12.6666 20.2713 11.3325 19.4484 10.5097C18.6256 9.68687 17.2915 9.68687 16.4687 10.5097C15.6459 11.3325 15.6459 12.6666 16.4687 13.4895C17.2915 14.3123 18.6256 14.3123 19.4484 13.4895Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M7.51094 20.382C8.33377 19.5592 8.33377 18.2251 7.51094 17.4023C6.6881 16.5794 5.35402 16.5794 4.53119 17.4023C3.70835 18.2251 3.70835 19.5592 4.53119 20.382C5.35403 21.2049 6.6881 21.2049 7.51094 20.382Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M7.51094 6.59688C8.33377 5.77404 8.33377 4.43996 7.51094 3.61713C6.6881 2.79429 5.35402 2.79429 4.53119 3.61713C3.70835 4.43997 3.70835 5.77404 4.53119 6.59688C5.35403 7.41971 6.6881 7.41971 7.51094 6.59688Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M7.07031 17.0695L8.83031 14.0195" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M7.07031 6.92969L8.83031 9.97969" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M15.8498 12H12.3398" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="growth_arrow_circle" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17 9.5L12.6244 13.8756L10.1244 11.3756L7 14.5M17 9.5H13.8756M17 9.5V12.6244M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg data-token-name="help" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"/></svg>
@@ -0,0 +1 @@
1
+ <svg data-token-name="help_invert" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z"/></svg>
@@ -0,0 +1,14 @@
1
+ <svg data-token-name="help_invert" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z" fill="url(#paint0_linear_8335_38758)"/>
3
+ <circle cx="12" cy="12" r="11" fill="white"/>
4
+ <path d="M7.92557 18.1585L7.02003 15.8001C6.9754 15.6839 7.00692 15.5498 7.09887 15.4692C9.32533 13.5173 10.808 13.7375 13.5414 15.2856C13.5712 15.3025 13.6046 15.3141 13.6382 15.3192C14.7269 15.4851 15.3922 15.7471 15.423 16.1643C15.4245 16.1845 15.4267 16.207 15.4298 16.227C15.5934 17.334 12.2035 16.0842 11.4599 16.5728C11.296 16.6806 11.5066 16.8328 11.6971 16.7956C12.7979 16.5809 14.67 17.4547 15.4241 16.9309C15.9518 16.4519 15.9265 16.1897 15.7318 15.8613C15.6471 15.7183 15.6794 15.5308 15.8143 15.4387C17.0174 14.6172 18.0411 13.7509 18.4136 14.0665C18.5216 14.1579 18.6362 14.259 18.7742 14.2776C19.0062 14.3088 19.0384 14.4731 18.9649 14.8319C18.9597 14.8571 18.951 14.8817 18.9393 14.9044C17.5301 17.6554 14.4907 19.0499 13.3332 18.9936C13.3134 18.9926 13.2955 18.9934 13.2758 18.9955C12.3366 19.0951 9.87766 17.5028 8.40762 18.3093C8.23372 18.4048 7.99857 18.3486 7.92557 18.1585Z" fill="#D7A37D"/>
5
+ <path d="M5.81639 15.0146L5.1419 15.3098C5.02874 15.3593 4.97095 15.5193 5.01457 15.6623L5.97986 18.8266C6.02754 18.9829 6.17355 19.0475 6.28571 18.9619L6.89776 18.4947C6.98564 18.4277 7.02276 18.2893 6.98576 18.1666L6.0829 15.1742C6.04183 15.0381 5.92395 14.9675 5.81639 15.0146Z" fill="#100F0D"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.7 9H10.2998C11.3968 11.2202 14.1364 12.8763 14.3021 12.9566C14.3607 12.9851 14.4261 13 14.4927 13C14.5592 13 14.6247 12.9851 14.6833 12.9566C14.849 12.8763 17.603 11.2202 18.7 9Z" fill="#F9D548"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M18.7001 9H10.2999C10.143 8.63554 10.0396 8.25593 10.0106 7.86557C9.9177 6.61822 10.4389 5.6191 11.4053 5.1931C11.7192 5.07138 12.0509 5.00643 12.386 5.00109C12.7776 4.99465 13.1664 5.06974 13.5296 5.22194C13.8927 5.37414 14.2227 5.60035 14.5 5.88717C14.8973 5.47581 15.4003 5.19164 15.949 5.06857C16.4977 4.9455 17.0689 4.98873 17.5947 5.1931C18.5611 5.61906 19.0823 6.61822 18.9894 7.86557C18.9604 8.25593 18.857 8.63554 18.7001 9Z" fill="#215CB5"/>
8
+ <defs>
9
+ <linearGradient id="paint0_linear_8335_38758" x1="12" y1="0" x2="12" y2="24" gradientUnits="userSpaceOnUse">
10
+ <stop stop-color="#2860B2"/>
11
+ <stop offset="1" stop-color="#F2D24C"/>
12
+ </linearGradient>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="envelope" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M19.842 8.299L19.3815 8.891L19.3818 8.89123L19.842 8.299ZM13.842 3.632L13.3813 4.22384L13.3815 4.224L13.842 3.632ZM10.158 3.632L9.69758 3.03995L9.69752 3.04L10.158 3.632ZM4.158 8.299L4.61818 8.89123L4.61848 8.891L4.158 8.299ZM9 16.25C8.58579 16.25 8.25 16.5858 8.25 17C8.25 17.4142 8.58579 17.75 9 17.75V16.25ZM15 17.75C15.4142 17.75 15.75 17.4142 15.75 17C15.75 16.5858 15.4142 16.25 15 16.25V17.75ZM20.3025 7.707L14.3025 3.04L13.3815 4.224L19.3815 8.891L20.3025 7.707ZM14.3027 3.04016C12.9486 1.98618 11.0523 1.98644 9.69758 3.03995L10.6184 4.22404C11.4317 3.59155 12.5694 3.59182 13.3813 4.22384L14.3027 3.04016ZM9.69752 3.04L3.69752 7.707L4.61848 8.891L10.6185 4.224L9.69752 3.04ZM3.69783 7.70677C2.78363 8.41711 2.25 9.50986 2.25 10.667H3.75C3.75 9.97213 4.07037 9.31688 4.61817 8.89123L3.69783 7.70677ZM2.25 10.667V18H3.75V10.667H2.25ZM2.25 18C2.25 20.0712 3.92879 21.75 6 21.75V20.25C4.75721 20.25 3.75 19.2428 3.75 18H2.25ZM6 21.75H18V20.25H6V21.75ZM18 21.75C20.0712 21.75 21.75 20.0712 21.75 18H20.25C20.25 19.2428 19.2428 20.25 18 20.25V21.75ZM21.75 18V10.667H20.25V18H21.75ZM21.75 10.667C21.75 9.50986 21.2164 8.41711 20.3022 7.70677L19.3818 8.89123C19.9296 9.31688 20.25 9.97213 20.25 10.667H21.75ZM9 17.75H15V16.25H9V17.75Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2.64941 11.3333L3.98275 10L5.31608 11.3333" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M21.3151 12.6667L19.9818 14L18.6484 12.6667" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M5.47363 7.36889C6.9243 5.33422 9.29319 4 11.9821 4C16.3999 4 19.9821 7.58223 19.9821 12C19.9821 12.608 19.9083 13.1982 19.7803 13.7671" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M18.4905 7.36891C16.4443 8.05691 14.2603 8.44447 11.9821 8.44447C9.70386 8.44447 7.51986 8.05691 5.47363 7.36891" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M18.487 16.6276C17.0372 18.6622 14.6683 19.9964 11.9785 19.9964C7.56074 19.9964 3.97852 16.4142 3.97852 11.9964C3.97852 11.3884 4.05229 10.7982 4.18029 10.2293" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M5.47168 16.6276C7.5179 15.9396 9.70191 15.552 11.9801 15.552C14.2584 15.552 16.4424 15.9396 18.4886 16.6276" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M14.3388 17.6569C15.6406 14.5327 15.6406 9.46735 14.3388 6.34315C13.037 3.21895 10.9265 3.21895 9.62475 6.34315C8.323 9.46733 8.323 14.5327 9.62475 17.6569C10.9265 20.781 13.037 20.781 14.3388 17.6569Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
9
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="24" height="24" rx="12" fill="#8756FF"/>
3
+ <path d="M4 11.2857L5.14286 10.1429L6.28571 11.2857" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M19.9996 12.4286L18.8567 13.5714L17.7139 12.4286" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6.4209 7.88762C7.66433 6.14362 9.6948 5 11.9996 5C15.7862 5 18.8567 8.07048 18.8567 11.8571C18.8567 12.3783 18.7935 12.8842 18.6838 13.3718" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M17.5782 7.88763C15.8243 8.47735 13.9523 8.80954 11.9996 8.80954C10.0468 8.80954 8.1748 8.47735 6.4209 7.88763" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M17.5755 15.8236C16.3328 17.5676 14.3023 18.7112 11.9968 18.7112C8.21012 18.7112 5.13965 15.6407 5.13965 11.8541C5.13965 11.3329 5.20289 10.827 5.3126 10.3394" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M6.41895 15.8236C8.17285 15.2339 10.0448 14.9017 11.9976 14.9017C13.9504 14.9017 15.8224 15.2339 17.5763 15.8236" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M14.02 16.7059C15.1358 14.028 15.1358 9.68629 14.02 7.00841C12.9042 4.33053 11.0952 4.33053 9.97942 7.00841C8.86363 9.68628 8.86363 14.028 9.97942 16.7059C11.0952 19.3837 12.9042 19.3837 14.02 16.7059Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
10
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="id_square" width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.66667 11.5V6.5M11.0854 11.5H8.58333V6.5H11.0854C11.9715 6.5 12.75 7.28059 12.75 8.16667V9.83333C12.75 10.7194 11.9715 11.5 11.0854 11.5ZM14.095 16.5H3.90577C2.57698 16.5 1.5 15.4231 1.5 14.0944V3.90564C1.5 2.57693 2.57698 1.5 3.90577 1.5H14.0942C15.423 1.5 16.5 2.57693 16.5 3.90564V14.0936C16.5008 15.4231 15.4238 16.5 14.095 16.5Z" stroke="currentColor" stroke-width="1.2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg data-token-name="id_thin" width="24" height="24" viewBox="0 0 32 32" fill="none"
2
+ xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M10.6667 20V12M19.3366 20H15.3333V12H19.3366C20.7545 12 22 13.2489 22 14.6667V17.3333C22 18.7511 20.7545 20 19.3366 20ZM24.152 28H7.84924C5.72318 28 4 26.2769 4 24.151V7.84903C4 5.72308 5.72318 4 7.84924 4H24.1508C26.2768 4 28 5.72308 28 7.84903V24.1497C28.0013 26.2769 26.2781 28 24.152 28Z"
4
+ stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg data-token-name="image" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M21 19V5c0-1.1-.9-2-2-2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z"/></svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="info" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 17V11M12 7.5V7M19.0711 4.92894C22.9763 8.83419 22.9763 15.1658 19.0711 19.0711C15.1658 22.9763 8.83416 22.9763 4.92894 19.0711C1.02369 15.1658 1.02369 8.83416 4.92894 4.92894C8.83418 1.02369 15.1658 1.02369 19.0711 4.92894Z" stroke="black" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg data-token-name="info_rounded_square" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 21H8C5.239 21 3 18.761 3 16V8C3 5.239 5.239 3 8 3H16C18.761 3 21 5.239 21 8V16C21 18.761 18.761 21 16 21Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M12.25 16.184V11.434H11.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M11.9602 7.99H11.9502C11.8102 7.99 11.7002 8.1 11.7002 8.24C11.7002 8.37 11.8102 8.49 11.9502 8.48C12.0802 8.47 12.2002 8.36 12.1902 8.22C12.1902 8.08 12.0702 7.97 11.9402 7.97" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg data-token-name="info_solid" width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19.0711 19.0711C22.9763 15.1658 22.9763 8.83419 19.0711 4.92894C15.1658 1.02369 8.83418 1.02369 4.92894 4.92894C1.02369 8.83416 1.02369 15.1658 4.92894 19.0711C8.83416 22.9763 15.1658 22.9763 19.0711 19.0711ZM12.75 7C12.75 6.58579 12.4142 6.25 12 6.25C11.5858 6.25 11.25 6.58579 11.25 7V7.5C11.25 7.91421 11.5858 8.25 12 8.25C12.4142 8.25 12.75 7.91421 12.75 7.5V7ZM12.75 11C12.75 10.5858 12.4142 10.25 12 10.25C11.5858 10.25 11.25 10.5858 11.25 11V17C11.25 17.4142 11.5858 17.75 12 17.75C12.4142 17.75 12.75 17.4142 12.75 17V11Z" />
3
+ </svg>
4
+
@@ -0,0 +1,23 @@
1
+ <svg data-token-name="instagram" width="24" height="24" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
2
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
3
+ <path fill="none" d="M0,0h24v24H0V0z"/>
4
+ <g>
5
+ <g>
6
+ <g>
7
+ <path d="M15.8,2H8.2C4.8,2,2,4.8,2,8.2v7.5C2,19.2,4.8,22,8.2,22h7.5c3.5,0,6.3-2.8,6.3-6.3V8.2C22,4.8,19.2,2,15.8,2z
8
+ M20.1,15.8c0,2.4-2,4.4-4.4,4.4H8.2c-2.4,0-4.4-2-4.4-4.4V8.2c0-2.4,2-4.4,4.4-4.4h7.5c2.4,0,4.4,2,4.4,4.4V15.8z"/>
9
+ </g>
10
+ </g>
11
+ <g>
12
+ <g>
13
+ <path d="M12,7c-2.8,0-5,2.2-5,5s2.2,5,5,5s5-2.2,5-5S14.8,7,12,7z M12,15.1c-1.7,0-3.1-1.4-3.1-3.1s1.4-3.1,3.1-3.1
14
+ s3.1,1.4,3.1,3.1S13.7,15.1,12,15.1z"/>
15
+ </g>
16
+ </g>
17
+ <g>
18
+ <g>
19
+ <circle cx="17.4" cy="6.6" r="0.7"/>
20
+ </g>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg data-token-name="instagram_colored" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z" fill="url(#paint0_radial)"/>
3
+ <path d="M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z" fill="url(#paint1_radial)"/>
4
+ <path d="M12.0007 5C10.0996 5 9.86097 5.00831 9.11429 5.04229C8.36908 5.07642 7.8604 5.1944 7.41532 5.3675C6.95492 5.54629 6.56437 5.78546 6.17528 6.17469C5.7859 6.56377 5.54673 6.95431 5.36736 7.41456C5.19381 7.85979 5.07569 8.3686 5.04215 9.11352C5.00875 9.86019 5 10.0989 5 12C5 13.9011 5.00846 14.1389 5.04229 14.8856C5.07656 15.6308 5.19454 16.1395 5.3675 16.5846C5.54644 17.045 5.78561 17.4355 6.17485 17.8246C6.56379 18.214 6.95433 18.4537 7.41444 18.6325C7.85982 18.8056 8.36864 18.9236 9.11371 18.9577C9.86038 18.9917 10.0988 19 11.9998 19C13.901 19 14.1389 18.9917 14.8856 18.9577C15.6308 18.9236 16.14 18.8056 16.5854 18.6325C17.0457 18.4537 17.4356 18.214 17.8246 17.8246C18.214 17.4355 18.4531 17.045 18.6325 16.5847C18.8046 16.1395 18.9227 15.6307 18.9577 14.8857C18.9912 14.1391 19 13.9011 19 12C19 10.0989 18.9912 9.86033 18.9577 9.11367C18.9227 8.36846 18.8046 7.85979 18.6325 7.41471C18.4531 6.95431 18.214 6.56377 17.8246 6.17469C17.4352 5.78531 17.0458 5.54615 16.585 5.3675C16.1387 5.1944 15.6298 5.07642 14.8845 5.04229C14.1379 5.00831 13.9002 5 11.9985 5H12.0007ZM11.3727 6.26146C11.5591 6.26117 11.767 6.26146 12.0007 6.26146C13.8697 6.26146 14.0912 6.26817 14.8293 6.30171C15.5118 6.33292 15.8822 6.44696 16.1289 6.54277C16.4556 6.66965 16.6885 6.82131 16.9334 7.06631C17.1784 7.31131 17.33 7.54465 17.4572 7.87131C17.553 8.11777 17.6672 8.48819 17.6983 9.17069C17.7318 9.9086 17.7391 10.1303 17.7391 11.9984C17.7391 13.8665 17.7318 14.0882 17.6983 14.8261C17.6671 15.5086 17.553 15.879 17.4572 16.1255C17.3303 16.4521 17.1784 16.6847 16.9334 16.9296C16.6884 17.1746 16.4558 17.3263 16.1289 17.4531C15.8825 17.5494 15.5118 17.6631 14.8293 17.6944C14.0913 17.7279 13.8697 17.7352 12.0007 17.7352C10.1315 17.7352 9.90997 17.7279 9.17204 17.6944C8.48954 17.6629 8.11912 17.5488 7.87222 17.453C7.54555 17.3261 7.31221 17.1745 7.06721 16.9295C6.82221 16.6845 6.67054 16.4517 6.54337 16.1249C6.44756 15.8784 6.33337 15.508 6.30231 14.8255C6.26876 14.0876 6.26205 13.8659 6.26205 11.9966C6.26205 10.1274 6.26876 9.90685 6.30231 9.16894C6.33351 8.48644 6.44756 8.11602 6.54337 7.86927C6.67025 7.5426 6.82221 7.30927 7.06721 7.06427C7.31221 6.81927 7.54555 6.6676 7.87222 6.54044C8.11897 6.44419 8.48954 6.33044 9.17204 6.29908C9.8178 6.26992 10.0681 6.26117 11.3727 6.25971V6.26146ZM15.7372 7.42375C15.2735 7.42375 14.8972 7.79956 14.8972 8.26346C14.8972 8.72721 15.2735 9.10346 15.7372 9.10346C16.201 9.10346 16.5772 8.72721 16.5772 8.26346C16.5772 7.79971 16.201 7.42346 15.7372 7.42346V7.42375ZM12.0007 8.40521C10.0154 8.40521 8.40583 10.0148 8.40583 12C8.40583 13.9852 10.0154 15.5941 12.0007 15.5941C13.9859 15.5941 15.5949 13.9852 15.5949 12C15.5949 10.0148 13.9858 8.40521 12.0005 8.40521H12.0007ZM12.0007 9.66667C13.2893 9.66667 14.334 10.7113 14.334 12C14.334 13.2886 13.2893 14.3333 12.0007 14.3333C10.7119 14.3333 9.6673 13.2886 9.6673 12C9.6673 10.7113 10.7119 9.66667 12.0007 9.66667Z" fill="white"/>
5
+ <defs>
6
+ <radialGradient id="paint0_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(6.37503 25.8485) rotate(-90) scale(23.7858 22.1226)">
7
+ <stop stop-color="#FFDD55"/>
8
+ <stop offset="0.1" stop-color="#FFDD55"/>
9
+ <stop offset="0.5" stop-color="#FF543E"/>
10
+ <stop offset="1" stop-color="#C837AB"/>
11
+ </radialGradient>
12
+ <radialGradient id="paint1_radial" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(-4.02013 1.72892) rotate(78.6806) scale(10.6323 43.827)">
13
+ <stop stop-color="#3771C8"/>
14
+ <stop offset="0.128" stop-color="#3771C8"/>
15
+ <stop offset="1" stop-color="#6600FF" stop-opacity="0"/>
16
+ </radialGradient>
17
+ </defs>
18
+ </svg>
@@ -0,0 +1 @@
1
+ <svg data-token-name="keyboard" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20 5H4c-1.1 0-1.99.9-1.99 2L2 17c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm-9 3h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z"/><path d="M0 0h24v24H0zm0 0h24v24H0z" fill="none"/></svg>
@@ -0,0 +1,4 @@
1
+ <svg data-token-name="keyboard_arrow_left" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"/>
3
+ <path fill="none" d="M0 0h24v24H0V0z"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg data-token-name="keyboard_arrow_right" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
2
+ <path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"/>
3
+ <path fill="none" d="M0 0h24v24H0V0z"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="keyboard_arrow_right_thin" width="24" height="24" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.6665 26.6654L23.3332 19.9987L16.6665 13.332" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="language" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M4 8C8.89843 9.33333 15.1026 9.33333 20 8M20 16C15.1016 14.6667 8.89743 14.6667 4 16M12 3C16.982 3 21 7.018 21 12C21 16.982 16.982 21 12 21C7.018 21 3 16.982 3 12C3 7.018 7.018 3 12 3ZM10.1685 4.05999C7.27848 8.88499 7.27848 15.116 10.1685 19.941C11.0145 21.354 12.9875 21.354 13.8335 19.941C16.7235 15.116 16.7235 8.88499 13.8335 4.05999C12.9865 2.64699 11.0145 2.64699 10.1685 4.05999Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="swap_horizontal_circle" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.436 14.484L21 16.976L11.987 21L3 16.976L8.564 14.491M15.436 9.509L21 12L11.987 16.024L3 12L8.564 9.516M3 7.024L11.987 11.049L21 7.024L12.013 3L3 7.024Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="lightning" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.8478 11.306C17.9432 11.151 17.9955 10.9734 17.9993 10.7915C18.0031 10.6096 17.9583 10.4299 17.8696 10.2711C17.7808 10.1122 17.6513 9.97989 17.4944 9.88777C17.3375 9.79566 17.1588 9.74706 16.9768 9.747H13.4998V0.747002L6.15183 12.689C6.05642 12.8439 6.00408 13.0215 6.00023 13.2034C5.99638 13.3853 6.04116 13.5649 6.12994 13.7237C6.21872 13.8825 6.34828 14.0147 6.50525 14.1067C6.66222 14.1987 6.8409 14.2472 7.02283 14.247H10.4998V23.247L17.8478 11.306Z" fill="currentColor"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg data-token-name="lightning_circle" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M11.6874 6.24141C11.7494 6.14178 11.8356 6.0677 11.9341 6.02934C12.0326 5.99097 12.1385 5.99022 12.2374 6.02718C12.3362 6.06413 12.4231 6.13699 12.4861 6.23572C12.5491 6.33445 12.5851 6.4542 12.5891 6.57852V10.4926H15.5066C15.5964 10.4943 15.6842 10.5249 15.7607 10.5812C15.8373 10.6376 15.8999 10.7177 15.9419 10.813C15.9838 10.9084 16.0037 11.0156 15.9994 11.1234C15.9951 11.2312 15.9668 11.3356 15.9174 11.4257L12.3106 17.7586C12.2486 17.8582 12.1624 17.9323 12.0639 17.9707C11.9654 18.009 11.8595 18.0098 11.7606 17.9728C11.6618 17.9359 11.5749 17.863 11.5119 17.7643C11.4489 17.6656 11.4129 17.5458 11.4089 17.4215V13.5074H8.49339C8.4036 13.5057 8.31583 13.4751 8.23926 13.4188C8.16269 13.3624 8.10014 13.2823 8.05815 13.187C8.01616 13.0916 7.99627 12.9844 8.00058 12.8766C8.00488 12.7688 8.03321 12.6644 8.08261 12.5743L11.6874 6.24141Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="like" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8 10.572L11.649 5.821C12.328 4.936 13.654 4.914 14.363 5.775C14.628 6.096 14.772 6.5 14.772 6.916V10.187H17.868C18.469 10.187 19.03 10.487 19.364 10.986L19.693 11.477C19.988 11.918 20.074 12.467 19.927 12.976L18.568 17.698C18.346 18.469 17.641 19 16.839 19H10.55C10.05 19 9.572 18.792 9.232 18.426L8 17.1M6.944 19H5.056C4.473 19 4 18.527 4 17.944V10.556C4 9.973 4.473 9.5 5.056 9.5H6.944C7.527 9.5 8 9.973 8 10.556V17.944C8 18.527 7.527 19 6.944 19Z" stroke="#202427" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="link" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.0001 13L10.9531 13.953C11.3246 14.3245 11.7655 14.6191 12.2509 14.8201C12.7362 15.0212 13.2563 15.1246 13.7816 15.1246C14.3069 15.1246 14.8271 15.0212 15.3124 14.8201C15.7977 14.6191 16.2387 14.3245 16.6101 13.953L19.6411 10.922C20.5114 10.0517 21.0003 8.87128 21.0003 7.6405C21.0003 6.40972 20.5114 5.22934 19.6411 4.359C18.7708 3.48875 17.5904 2.99986 16.3596 2.99986C15.1289 2.99986 13.9485 3.48875 13.0781 4.359L12.1911 5.247M14.0001 10L13.0471 9.047C12.6757 8.67554 12.2347 8.38089 11.7494 8.17985C11.2641 7.97882 10.7439 7.87535 10.2186 7.87535C9.69333 7.87535 9.17317 7.97882 8.68785 8.17985C8.20254 8.38089 7.76157 8.67554 7.39013 9.047L4.35914 12.078C3.48889 12.9483 3 14.1287 3 15.3595C3 16.5903 3.48889 17.7707 4.35914 18.641C5.22948 19.5112 6.40985 20.0001 7.64064 20.0001C8.87142 20.0001 10.0518 19.5112 10.9221 18.641L11.8091 17.753" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg data-token-name="link_broken" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.9198 16.646L8.94875 18.617C7.58775 19.978 5.38175 19.978 4.02075 18.617C2.65975 17.256 2.65975 15.05 4.02075 13.689L5.99175 11.718" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M14.7275 8.762H17.5155C19.4395 8.762 21.0005 10.322 21.0005 12.247C21.0005 14.171 19.4405 15.732 17.5155 15.732H14.7275" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M8.41016 4.36L8.91016 5.84" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M12.4402 4.49L11.6602 6.07" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M5.38965 6.96L6.85965 7.69" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="link_external" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12 12L21 3M21 3V10M21 3H14M9 3H5C3.895 3 3 3.895 3 5V19C3 20.105 3.895 21 5 21H19C20.105 21 21 20.105 21 19V15" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="link_external_new" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 3H21M21 3V8M21 3L14 10M19 14V19C19 20.105 18.105 21 17 21H5C3.895 21 3 20.105 3 19V7C3 5.895 3.895 5 5 5H10" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg data-token-name="linkedin" width="24" height="24" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
2
+ viewBox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve">
3
+ <path fill="none" d="M0,0h24v24H0V0z"/>
4
+ <path d="M20.2,2H3.8C2.8,2,2,2.8,2,3.8v16.3c0,1,0.8,1.8,1.8,1.8h16.3c1,0,1.8-0.8,1.8-1.8V3.8C22,2.8,21.2,2,20.2,2z M8.2,19.2
5
+ c0,0.3-0.2,0.5-0.5,0.5H5.4c-0.3,0-0.5-0.2-0.5-0.5V9.9c0-0.3,0.2-0.5,0.5-0.5h2.2c0.3,0,0.5,0.2,0.5,0.5C8.2,9.9,8.2,19.2,8.2,19.2
6
+ z M6.6,8.5c-1.2,0-2.1-0.9-2.1-2.1s0.9-2.1,2.1-2.1s2.1,0.9,2.1,2.1S7.7,8.5,6.6,8.5z M19.9,19.3c0,0.3-0.2,0.5-0.5,0.5H17
7
+ c-0.3,0-0.5-0.2-0.5-0.5v-4.4c0-0.7,0.2-2.9-1.7-2.9c-1.5,0-1.8,1.5-1.8,2.2v5.1c0,0.3-0.2,0.5-0.5,0.5h-2.3c-0.3,0-0.5-0.2-0.5-0.5
8
+ V9.8c0-0.3,0.2-0.5,0.5-0.5h2.3c0.3,0,0.5,0.2,0.5,0.5v0.8c0.5-0.8,1.4-1.5,3.1-1.5c3.8,0,3.8,3.6,3.8,5.6L19.9,19.3L19.9,19.3z"/>
9
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg data-token-name="linkedin_colored" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z" fill="#0077B5"/>
3
+ <path d="M18.792 17.4955C17.9978 17.4765 17.2225 17.4765 16.4283 17.4955C16.2581 17.4955 16.2202 17.4574 16.2202 17.2863C16.2202 15.879 16.2202 14.4526 16.2202 13.0453C16.2202 12.722 16.2013 12.3987 16.1068 12.0944C15.8231 11.1055 14.6885 10.7441 13.8754 11.4098C13.4405 11.7521 13.2703 12.2275 13.2703 12.7981C13.2703 14.1293 13.2703 15.4606 13.2703 16.7918C13.2703 16.963 13.2514 17.1341 13.2703 17.3243C13.2892 17.4765 13.2136 17.5145 13.0812 17.4955C12.2681 17.4955 11.4739 17.4955 10.6607 17.4955C10.5095 17.4955 10.4716 17.4574 10.4716 17.3053C10.4905 16.1072 10.4906 14.9091 10.4906 13.6919C10.4906 12.2085 10.4905 10.7251 10.4716 9.26075C10.4716 9.08959 10.5095 9.05156 10.6607 9.05156C11.4739 9.05156 12.2681 9.05156 13.0812 9.05156C13.2325 9.05156 13.2703 9.08959 13.2703 9.24174C13.2703 9.54602 13.2703 9.85031 13.2703 10.2116C13.327 10.1546 13.3459 10.1356 13.3649 10.1166C14.1023 9.03254 15.1424 8.72825 16.3715 8.91843C17.7898 9.14665 18.6974 10.1356 18.9244 11.657C18.9811 12.0183 19 12.3797 19 12.741C19 14.2624 19 15.7649 19 17.2863C19 17.4384 18.9622 17.4955 18.792 17.4955Z" fill="white"/>
4
+ <path d="M8.95895 13.2735C8.95895 14.6048 8.95895 15.936 8.95895 17.2673C8.95895 17.4384 8.92113 17.4955 8.75094 17.4955C7.95673 17.4765 7.16251 17.4955 6.3683 17.4955C6.21702 17.4955 6.1792 17.4574 6.1792 17.3053C6.1792 14.6238 6.1792 11.9233 6.1792 9.24173C6.1792 9.10861 6.21702 9.05156 6.3683 9.05156C7.18142 9.05156 7.99455 9.05156 8.80767 9.05156C8.97786 9.05156 8.99677 9.10861 8.99677 9.26075C8.95895 10.592 8.95895 11.9233 8.95895 13.2735Z" fill="white"/>
5
+ <path d="M9.09135 6.84548C8.90225 7.6062 8.12694 8.04361 7.23818 7.89147C6.29268 7.73932 5.7632 6.80745 6.10358 5.89459C6.3305 5.32406 6.87889 4.98174 7.57855 5.00075C8.63751 4.98174 9.33717 5.83754 9.09135 6.84548Z" fill="white"/>
6
+ </svg>
@@ -0,0 +1 @@
1
+ <svg data-token-name="list" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z"/><path d="M0 0h24v24H0z" fill="none"/></svg>
@@ -0,0 +1,4 @@
1
+ <svg data-token-name="litecoin_colored" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12Z" fill="#3D5E98"/>
3
+ <path d="M11.9226 14.2308L12.5643 12.0297L14.0837 11.524L14.4616 10.2304L14.4487 10.1983L12.9531 10.696L14.0307 7H10.9746L9.5654 11.8234L8.38878 12.2149L8 13.5486L9.17571 13.1574L8.34515 16H16.4786L17 14.2308H11.9226Z" fill="white"/>
4
+ </svg>
@@ -0,0 +1 @@
1
+ <svg data-token-name="live_help" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M19 2H5c-1.11 0-2 .9-2 2v14c0 1.1.89 2 2 2h4l3 3 3-3h4c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-6 16h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"/></svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="loader" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3 12C3 16.9705 7.0295 21 12 21C16.9705 21 21 16.9705 21 12C21 7.0295 16.9705 3 12 3C9.18725 3 6.676 4.29025 5.02575 6.31125" stroke="black" stroke-width="2" stroke-miterlimit="10" stroke-linecap="round"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg data-token-name="location_city" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z"/><path d="M0 0h24v24H0z" fill="none"/></svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="location_on" width="24" height="24" viewBox="0 0 24 24" fill="black" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5 10C5 15.25 12 21 12 21C12 21 19 15.25 19 10C19 6.134 15.866 3 12 3C8.134 3 5 6.134 5 10ZM9 10C9 11.657 10.343 13 12 13C13.657 13 15 11.657 15 10C15 8.343 13.657 7 12 7C10.343 7 9 8.343 9 10Z" />
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="lock" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8 10V7C8 4.791 9.791 3 12 3C14.209 3 16 4.791 16 7V10M17 21H7C5.895 21 5 20.105 5 19V12C5 10.895 5.895 10 7 10H17C18.105 10 19 10.895 19 12V19C19 20.105 18.105 21 17 21Z" stroke="#202427" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg data-token-name="lock_old" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none"/><path d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"/></svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="logout" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6 15V18C6 18.7956 6.31607 19.5587 6.87868 20.1213C7.44129 20.6839 8.20435 21 9 21H18C18.7956 21 19.5587 20.6839 20.1213 20.1213C20.6839 19.5587 21 18.7956 21 18V6C21 5.20435 20.6839 4.44129 20.1213 3.87868C19.5587 3.31607 18.7956 3 18 3H9C8.20435 3 7.44129 3.31607 6.87868 3.87868C6.31607 4.44129 6 5.20435 6 6V9M12 15L15 12M15 12L12 9M15 12H3" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="magic_blink" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6 3C6 4.06087 5.57857 5.07828 4.82843 5.82843C4.07828 6.57857 3.06087 7 2 7C3.06087 7 4.07828 7.42143 4.82843 8.17157C5.57857 8.92172 6 9.93913 6 11M6 3C6 4.06087 6.42143 5.07828 7.17157 5.82843C7.92172 6.57857 8.93913 7 10 7C8.93913 7 7.92172 7.42143 7.17157 8.17157C6.42143 8.92172 6 9.93913 6 11M6 3V2M6 11V12M17 15C17 13.6739 16.4732 12.4021 15.5355 11.4645C14.5979 10.5268 13.3261 10 12 10C13.3261 10 14.5979 9.47322 15.5355 8.53553C16.4732 7.59785 17 6.32608 17 5M17 15C17 13.6739 17.5268 12.4021 18.4645 11.4645C19.4021 10.5268 20.6739 10 22 10C20.6739 10 19.4021 9.47322 18.4645 8.53553C17.5268 7.59785 17 6.32608 17 5M17 15V16M17 5V4M10 21V22M10 14V13M10 13.5C10 14.5609 9.57857 15.5783 8.82843 16.3284C8.07828 17.0786 7.06087 17.5 6 17.5C7.06087 17.5 8.07828 17.9214 8.82843 18.6716C9.57857 19.4217 10 20.4391 10 21.5C10 20.4391 10.4214 19.4217 11.1716 18.6716C11.9217 17.9214 12.9391 17.5 14 17.5C12.9391 17.5 11.9217 17.0786 11.1716 16.3284C10.4214 15.5783 10 14.5609 10 13.5Z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1 @@
1
+ <svg data-token-name="mail_outline" width="24" height="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0z"/><path d="M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z"/></svg>
@@ -0,0 +1,4 @@
1
+ <svg data-token-name="mc_assist" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.6 2H10.4C5.8 2 2 5.8 2 10.4V20.7C2 21.4 2.6 22 3.3 22H13.6C18.2 22 22 18.2 22 13.6V10.4C22 5.8 18.2 2 13.6 2ZM16.9 13.7C16.9 14.8 16 15.6 15 15.6H11.3L8.8 18.1C8.7 18.2 8.7 18.2 8.6 18.2C8.4 18.2 8.3 18.1 8.3 17.9V15.6C7.3 15.5 6.5 14.7 6.5 13.7V9.5C6.5 8.4 7.4 7.6 8.4 7.6H15.2C16.1 7.6 16.9 8.4 16.9 9.3V13.7Z" fill="#703CEE"/>
3
+ <path d="M15.0004 8.5H8.40039C7.80039 8.5 7.40039 9 7.40039 9.5V13.6C7.40039 14.2 7.90039 14.6 8.40039 14.6H9.10039V16V16.1C9.20039 16.2 9.30039 16.2 9.30039 16.1L10.8004 14.6H14.8004C15.4004 14.6 15.8004 14.1 15.8004 13.6V9.5C16.0004 9 15.5004 8.5 15.0004 8.5ZM11.7004 13.7C11.5004 13.7 11.3004 13.5 11.3004 13.3C11.3004 13.1 11.5004 12.9 11.7004 12.9C11.9004 12.9 12.1004 13.1 12.1004 13.3C12.1004 13.5 11.9004 13.7 11.7004 13.7ZM12.1004 11.8C12.1004 11.8 12.1004 11.9 12.1004 11.8V12.1V12.2C12.1004 12.4 11.9004 12.6 11.7004 12.5C11.5004 12.4 11.3004 12.3 11.4004 12.1V11.8C11.4004 11.5 11.6004 11.2 11.9004 11C12.1004 10.9 12.3004 10.7 12.3004 10.5C12.3004 10.2 12.1004 10 11.8004 10C11.7004 10 11.5004 10 11.4004 10.2C11.3004 10.3 11.2004 10.4 11.2004 10.6V10.7C11.2004 10.9 11.0004 11.1 10.8004 11C10.6004 10.9 10.4004 10.8 10.5004 10.6C10.5004 9.9 11.1004 9.3 11.8004 9.4C12.3004 9.4 12.8004 9.8 12.9004 10.3C13.1004 10.9 12.8004 11.6 12.1004 11.8Z" fill="#703CEE"/>
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.5942 2H10.4058C5.76813 2 2 5.76813 2 10.4058V20.7163C2 21.4202 2.5797 22 3.28363 22H13.5942C18.2319 22 22 18.2319 22 13.5942V10.4058C22 5.76813 18.2733 2 13.5942 2Z" fill="#703CEE"/>
3
+ <path d="M12 7C12 6.44772 12.4477 6 13 6H15.5C16.0523 6 16.5 6.44772 16.5 7V17C16.5 17.5523 16.0523 18 15.5 18H12V7Z" fill="white"/>
4
+ <path d="M6 12C6 11.4477 6.44772 11 7 11H10.5V18H7C6.44772 18 6 17.5523 6 17V12Z" fill="white"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg data-token-name="mc_id" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.6 2H10.4C5.8 2 2 5.8 2 10.4V20.7C2 21.4 2.6 22 3.3 22H13.6C18.2 22 22 18.2 22 13.6V10.4C22 5.8 18.2 2 13.6 2ZM9.2 6.3C9.8 5.7 10.6 5.4 11.5 5.4C12.4 5.4 13.1 5.7 13.8 6.3C14.4 6.9 14.7 7.7 14.7 8.6C14.7 9.5 14.4 10.2 13.8 10.9C13.2 11.5 12.4 11.8 11.5 11.8C10.6 11.8 9.9 11.5 9.2 10.9C8.6 10.3 8.3 9.5 8.3 8.6C8.3 7.7 8.6 6.9 9.2 6.3ZM16.5 18C16.1 18.4 15.5 18.6 14.8 18.6H8.4C7.7 18.6 7.1 18.4 6.7 18C6.3 17.6 6 17 6 16.3C6 16 6 15.8 6 15.5C6 15.2 6.1 15 6.1 14.7C6.2 14.4 6.2 14.1 6.3 13.9C6.4 13.6 6.5 13.4 6.6 13.1C6.7 12.8 6.9 12.6 7.1 12.4C7.3 12.2 7.6 12 7.9 11.9C8.2 11.8 8.5 11.7 8.9 11.7C9 11.7 9.2 11.8 9.4 11.9C9.6 12 9.7 12.1 9.9 12.3C10.1 12.4 10.3 12.5 10.6 12.6C10.9 12.7 11.2 12.7 11.5 12.7C11.8 12.7 12.1 12.7 12.4 12.6C12.7 12.5 12.9 12.4 13.1 12.3C13.3 12.2 13.5 12.1 13.6 12C13.9 11.8 14 11.8 14.1 11.8C14.4 11.8 14.8 11.9 15.1 12C15.4 12.1 15.6 12.3 15.9 12.5C16.1 12.7 16.3 12.9 16.4 13.2C16.5 13.5 16.7 13.7 16.7 14C16.8 14.3 16.9 14.5 16.9 14.8C17 15.1 17 15.4 17 15.6C17 15.9 17 16.1 17 16.4C17.1 17.1 16.9 17.6 16.5 18Z" fill="#E30040"/>
3
+ </svg>