rujira.ui 0.1.0

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 (303) hide show
  1. package/.eslintrc.cjs +21 -0
  2. package/.tool-versions +1 -0
  3. package/i18n/.github/workflows/validate.yml +13 -0
  4. package/i18n/README.md +7 -0
  5. package/i18n/translations/template.json +448 -0
  6. package/i18n/update-template.js +19 -0
  7. package/i18n/validate.js +10 -0
  8. package/lib/esm/i18n/translations/template.json +448 -0
  9. package/lib/esm/src/components/buttons/Button.js +37 -0
  10. package/lib/esm/src/components/buttons/Popout.js +56 -0
  11. package/lib/esm/src/components/buttons/TxButton.js +42 -0
  12. package/lib/esm/src/components/buttons/__Popout.js +34 -0
  13. package/lib/esm/src/components/cards/Card.js +8 -0
  14. package/lib/esm/src/components/cards/GradientCard.js +8 -0
  15. package/lib/esm/src/components/footer/Footer.js +11 -0
  16. package/lib/esm/src/components/header/Accounts.js +211 -0
  17. package/lib/esm/src/components/header/Header.js +69 -0
  18. package/lib/esm/src/components/header/QuickLauncher.js +10 -0
  19. package/lib/esm/src/components/header/ResolveLink.js +13 -0
  20. package/lib/esm/src/components/icons/IconDenom.js +358 -0
  21. package/lib/esm/src/components/icons/Icons.js +228 -0
  22. package/lib/esm/src/components/icons/Networks.js +32 -0
  23. package/lib/esm/src/components/icons/Wallets.js +62 -0
  24. package/lib/esm/src/components/inputs/Checkbox.js +12 -0
  25. package/lib/esm/src/components/inputs/DecimalInput.js +35 -0
  26. package/lib/esm/src/components/inputs/DenomInput.js +22 -0
  27. package/lib/esm/src/components/inputs/DenomSelect.js +66 -0
  28. package/lib/esm/src/components/inputs/Input.js +25 -0
  29. package/lib/esm/src/components/inputs/Numeric.js +18 -0
  30. package/lib/esm/src/components/inputs/Radio.js +12 -0
  31. package/lib/esm/src/components/inputs/Select.js +29 -0
  32. package/lib/esm/src/components/inputs/Textarea.js +25 -0
  33. package/lib/esm/src/components/inputs/Toggle.js +13 -0
  34. package/lib/esm/src/components/loader/Loader.js +3 -0
  35. package/lib/esm/src/components/logos/RujiraLogo.js +2 -0
  36. package/lib/esm/src/components/notices/Warning.js +10 -0
  37. package/lib/esm/src/components/numbers/Decimal.js +14 -0
  38. package/lib/esm/src/components/numbers/Fiat.js +19 -0
  39. package/lib/esm/src/components/progress/Progress.js +9 -0
  40. package/lib/esm/src/components/slider/Slider.js +5 -0
  41. package/lib/esm/src/context/Affiliate.js +34 -0
  42. package/lib/esm/src/context/GlobalModal.js +35 -0
  43. package/lib/esm/src/d.js +1 -0
  44. package/lib/esm/src/helpers/index.js +65 -0
  45. package/lib/esm/src/helpers/number.js +8 -0
  46. package/lib/esm/src/hooks/useClickOutside.js +19 -0
  47. package/lib/esm/src/hooks/useLocalStorage.js +12 -0
  48. package/lib/esm/src/hooks/useQueryParam.js +31 -0
  49. package/lib/esm/src/hooks/useWindowSize.js +19 -0
  50. package/lib/esm/src/i18n/i18n.js +90 -0
  51. package/lib/esm/src/i18n/index.js +1 -0
  52. package/lib/esm/src/index.js +38 -0
  53. package/lib/esm/src/services/account.js +42 -0
  54. package/lib/esm/tsconfig.tsbuildinfo +1 -0
  55. package/package.json +47 -0
  56. package/src/assets/ghost-tokens/akt.png +0 -0
  57. package/src/assets/ghost-tokens/ampkuji.png +0 -0
  58. package/src/assets/ghost-tokens/arb.png +0 -0
  59. package/src/assets/ghost-tokens/atom.png +0 -0
  60. package/src/assets/ghost-tokens/axlusdc.png +0 -0
  61. package/src/assets/ghost-tokens/cro.png +0 -0
  62. package/src/assets/ghost-tokens/dot.png +0 -0
  63. package/src/assets/ghost-tokens/fet.png +0 -0
  64. package/src/assets/ghost-tokens/fuzn.png +0 -0
  65. package/src/assets/ghost-tokens/glmr.png +0 -0
  66. package/src/assets/ghost-tokens/gpaxg.png +0 -0
  67. package/src/assets/ghost-tokens/inj.png +0 -0
  68. package/src/assets/ghost-tokens/juno.png +0 -0
  69. package/src/assets/ghost-tokens/kuji.png +0 -0
  70. package/src/assets/ghost-tokens/luna.png +0 -0
  71. package/src/assets/ghost-tokens/lunc.png +0 -0
  72. package/src/assets/ghost-tokens/mnta.png +0 -0
  73. package/src/assets/ghost-tokens/ntrn.png +0 -0
  74. package/src/assets/ghost-tokens/osmo.png +0 -0
  75. package/src/assets/ghost-tokens/scrt.png +0 -0
  76. package/src/assets/ghost-tokens/shd.png +0 -0
  77. package/src/assets/ghost-tokens/sol.png +0 -0
  78. package/src/assets/ghost-tokens/stars.png +0 -0
  79. package/src/assets/ghost-tokens/statom.png +0 -0
  80. package/src/assets/ghost-tokens/stosmo.png +0 -0
  81. package/src/assets/ghost-tokens/usdc.png +0 -0
  82. package/src/assets/ghost-tokens/usk.png +0 -0
  83. package/src/assets/ghost-tokens/wavax.png +0 -0
  84. package/src/assets/ghost-tokens/wbnb.png +0 -0
  85. package/src/assets/ghost-tokens/wbtc.png +0 -0
  86. package/src/assets/ghost-tokens/weth.png +0 -0
  87. package/src/assets/ghost-tokens/wftm.png +0 -0
  88. package/src/assets/ghost-tokens/wglmr.png +0 -0
  89. package/src/assets/ghost-tokens/wmatic.png +0 -0
  90. package/src/assets/mono.woff +0 -0
  91. package/src/assets/tokens/acre.png +0 -0
  92. package/src/assets/tokens/akt.png +0 -0
  93. package/src/assets/tokens/amber.png +0 -0
  94. package/src/assets/tokens/ampkuji.png +0 -0
  95. package/src/assets/tokens/ampluna.png +0 -0
  96. package/src/assets/tokens/ampmnta.png +0 -0
  97. package/src/assets/tokens/ampwhale.png +0 -0
  98. package/src/assets/tokens/andr.png +0 -0
  99. package/src/assets/tokens/aqla.png +0 -0
  100. package/src/assets/tokens/aqua.png +0 -0
  101. package/src/assets/tokens/arb.png +0 -0
  102. package/src/assets/tokens/arch.png +0 -0
  103. package/src/assets/tokens/astro.png +0 -0
  104. package/src/assets/tokens/atom.png +0 -0
  105. package/src/assets/tokens/auto.png +0 -0
  106. package/src/assets/tokens/avax.png +0 -0
  107. package/src/assets/tokens/axl.png +0 -0
  108. package/src/assets/tokens/axlusdc.png +0 -0
  109. package/src/assets/tokens/axlusdt.png +0 -0
  110. package/src/assets/tokens/bad.png +0 -0
  111. package/src/assets/tokens/bch.png +0 -0
  112. package/src/assets/tokens/bfit.png +0 -0
  113. package/src/assets/tokens/bnb.png +0 -0
  114. package/src/assets/tokens/btc.png +0 -0
  115. package/src/assets/tokens/cheq.png +0 -0
  116. package/src/assets/tokens/cmdx.png +0 -0
  117. package/src/assets/tokens/cmst.png +0 -0
  118. package/src/assets/tokens/cnto.png +0 -0
  119. package/src/assets/tokens/core.png +0 -0
  120. package/src/assets/tokens/crbrus.png +0 -0
  121. package/src/assets/tokens/cre.png +0 -0
  122. package/src/assets/tokens/cro.png +0 -0
  123. package/src/assets/tokens/cub.png +0 -0
  124. package/src/assets/tokens/dai.png +0 -0
  125. package/src/assets/tokens/default.png +0 -0
  126. package/src/assets/tokens/doge.png +0 -0
  127. package/src/assets/tokens/dot.png +0 -0
  128. package/src/assets/tokens/dvpn.png +0 -0
  129. package/src/assets/tokens/dydx.png +0 -0
  130. package/src/assets/tokens/dym.png +0 -0
  131. package/src/assets/tokens/eth.png +0 -0
  132. package/src/assets/tokens/evmos.png +0 -0
  133. package/src/assets/tokens/flix.png +0 -0
  134. package/src/assets/tokens/frnz.png +0 -0
  135. package/src/assets/tokens/fury.legacy.png +0 -0
  136. package/src/assets/tokens/fury.png +0 -0
  137. package/src/assets/tokens/fuzn.png +0 -0
  138. package/src/assets/tokens/glmr.png +0 -0
  139. package/src/assets/tokens/glto.png +0 -0
  140. package/src/assets/tokens/gpaxg.png +0 -0
  141. package/src/assets/tokens/grav.png +0 -0
  142. package/src/assets/tokens/inj.png +0 -0
  143. package/src/assets/tokens/jkl.png +0 -0
  144. package/src/assets/tokens/juno.png +0 -0
  145. package/src/assets/tokens/kart.png +0 -0
  146. package/src/assets/tokens/kuji.png +0 -0
  147. package/src/assets/tokens/kune.png +0 -0
  148. package/src/assets/tokens/link.png +0 -0
  149. package/src/assets/tokens/loop.png +0 -0
  150. package/src/assets/tokens/ltc.png +0 -0
  151. package/src/assets/tokens/luna.png +0 -0
  152. package/src/assets/tokens/lunc.png +0 -0
  153. package/src/assets/tokens/lvn.png +0 -0
  154. package/src/assets/tokens/mars.png +0 -0
  155. package/src/assets/tokens/mnta.png +0 -0
  156. package/src/assets/tokens/mntl.png +0 -0
  157. package/src/assets/tokens/nami.png +0 -0
  158. package/src/assets/tokens/nausd.png +0 -0
  159. package/src/assets/tokens/nbtc.png +0 -0
  160. package/src/assets/tokens/neok.png +0 -0
  161. package/src/assets/tokens/newt.png +0 -0
  162. package/src/assets/tokens/nstk.png +0 -0
  163. package/src/assets/tokens/ntrn.png +0 -0
  164. package/src/assets/tokens/odin.png +0 -0
  165. package/src/assets/tokens/osmo.png +0 -0
  166. package/src/assets/tokens/pepe.png +0 -0
  167. package/src/assets/tokens/plnk.png +0 -0
  168. package/src/assets/tokens/plq.png +0 -0
  169. package/src/assets/tokens/qcaqla.png +0 -0
  170. package/src/assets/tokens/qcatom.png +0 -0
  171. package/src/assets/tokens/qcfuzn.png +0 -0
  172. package/src/assets/tokens/qckuji.png +0 -0
  173. package/src/assets/tokens/qcmnta.png +0 -0
  174. package/src/assets/tokens/rac.legacy.png +0 -0
  175. package/src/assets/tokens/rac.png +0 -0
  176. package/src/assets/tokens/ratom.png +0 -0
  177. package/src/assets/tokens/regen.png +0 -0
  178. package/src/assets/tokens/rfuzn.png +0 -0
  179. package/src/assets/tokens/rio.png +0 -0
  180. package/src/assets/tokens/rkuji.png +0 -0
  181. package/src/assets/tokens/roar.png +0 -0
  182. package/src/assets/tokens/ruji.png +0 -0
  183. package/src/assets/tokens/rune.png +0 -0
  184. package/src/assets/tokens/sayve.png +0 -0
  185. package/src/assets/tokens/scrt.png +0 -0
  186. package/src/assets/tokens/shd.legacy.png +0 -0
  187. package/src/assets/tokens/shd.png +0 -0
  188. package/src/assets/tokens/silk.png +0 -0
  189. package/src/assets/tokens/sol.png +0 -0
  190. package/src/assets/tokens/somm.png +0 -0
  191. package/src/assets/tokens/stars.png +0 -0
  192. package/src/assets/tokens/statom.png +0 -0
  193. package/src/assets/tokens/stinj.png +0 -0
  194. package/src/assets/tokens/stluna.png +0 -0
  195. package/src/assets/tokens/stosmo.png +0 -0
  196. package/src/assets/tokens/strd.png +0 -0
  197. package/src/assets/tokens/swth.png +0 -0
  198. package/src/assets/tokens/tia.png +0 -0
  199. package/src/assets/tokens/tori.png +0 -0
  200. package/src/assets/tokens/umee.png +0 -0
  201. package/src/assets/tokens/uni.png +0 -0
  202. package/src/assets/tokens/usdc.png +0 -0
  203. package/src/assets/tokens/usk.png +0 -0
  204. package/src/assets/tokens/usk_black.png +0 -0
  205. package/src/assets/tokens/ustc.png +0 -0
  206. package/src/assets/tokens/wavax.png +0 -0
  207. package/src/assets/tokens/wbtc.png +0 -0
  208. package/src/assets/tokens/wftm.png +0 -0
  209. package/src/assets/tokens/whale.png +0 -0
  210. package/src/assets/tokens/whlocal.png +0 -0
  211. package/src/assets/tokens/wink.png +0 -0
  212. package/src/assets/tokens/wmatic.png +0 -0
  213. package/src/assets/tokens/wsteth.png +0 -0
  214. package/src/assets/tokens/wtao.png +0 -0
  215. package/src/assets/tokens/xastro.png +0 -0
  216. package/src/assets/tokens/yieldeth.png +0 -0
  217. package/src/assets/tokens/yum.png +0 -0
  218. package/src/components/buttons/Button.tsx +80 -0
  219. package/src/components/buttons/Popout.tsx +74 -0
  220. package/src/components/buttons/TxButton.tsx +103 -0
  221. package/src/components/buttons/__Popout.tsx +56 -0
  222. package/src/components/cards/Card.tsx +17 -0
  223. package/src/components/cards/GradientCard.tsx +17 -0
  224. package/src/components/footer/Footer.tsx +117 -0
  225. package/src/components/header/Accounts.tsx +1021 -0
  226. package/src/components/header/Header.tsx +745 -0
  227. package/src/components/header/QuickLauncher.tsx +67 -0
  228. package/src/components/header/ResolveLink.tsx +81 -0
  229. package/src/components/icons/IconDenom.tsx +400 -0
  230. package/src/components/icons/Icons.tsx +686 -0
  231. package/src/components/icons/Networks.tsx +687 -0
  232. package/src/components/icons/Wallets.tsx +947 -0
  233. package/src/components/inputs/Checkbox.tsx +35 -0
  234. package/src/components/inputs/DecimalInput.tsx +72 -0
  235. package/src/components/inputs/DenomInput.tsx +65 -0
  236. package/src/components/inputs/DenomSelect.tsx +178 -0
  237. package/src/components/inputs/Input.tsx +66 -0
  238. package/src/components/inputs/Numeric.tsx +49 -0
  239. package/src/components/inputs/Radio.tsx +33 -0
  240. package/src/components/inputs/Select.tsx +69 -0
  241. package/src/components/inputs/Textarea.tsx +65 -0
  242. package/src/components/inputs/Toggle.tsx +38 -0
  243. package/src/components/loader/Loader.tsx +103 -0
  244. package/src/components/logos/RujiraLogo.tsx +83 -0
  245. package/src/components/notices/Warning.tsx +42 -0
  246. package/src/components/numbers/Decimal.tsx +43 -0
  247. package/src/components/numbers/Fiat.tsx +56 -0
  248. package/src/components/progress/Progress.tsx +40 -0
  249. package/src/components/slider/Slider.tsx +12 -0
  250. package/src/context/Affiliate.tsx +65 -0
  251. package/src/context/GlobalModal.tsx +115 -0
  252. package/src/d.ts +4 -0
  253. package/src/helpers/index.ts +73 -0
  254. package/src/helpers/number.ts +12 -0
  255. package/src/hooks/useClickOutside.ts +27 -0
  256. package/src/hooks/useLocalStorage.ts +20 -0
  257. package/src/hooks/useQueryParam.ts +46 -0
  258. package/src/hooks/useWindowSize.ts +26 -0
  259. package/src/i18n/i18n.tsx +102 -0
  260. package/src/i18n/index.ts +1 -0
  261. package/src/index.ts +54 -0
  262. package/src/scss/base/_colors.scss +23 -0
  263. package/src/scss/base/_display.scss +85 -0
  264. package/src/scss/base/_filters.scss +20 -0
  265. package/src/scss/base/_flex.scss +612 -0
  266. package/src/scss/base/_important.scss +3 -0
  267. package/src/scss/base/_normalize.scss +351 -0
  268. package/src/scss/base/_spacing.scss +290 -0
  269. package/src/scss/base/_tooltip.scss +9 -0
  270. package/src/scss/base/_typography.scss +279 -0
  271. package/src/scss/base/_variables.scss +72 -0
  272. package/src/scss/components/_button-group.scss +61 -0
  273. package/src/scss/components/_button.scss +459 -0
  274. package/src/scss/components/_decimal.scss +40 -0
  275. package/src/scss/components/_denom-select.scss +270 -0
  276. package/src/scss/components/_fiat.scss +34 -0
  277. package/src/scss/components/_footer.scss +27 -0
  278. package/src/scss/components/_header.scss +665 -0
  279. package/src/scss/components/_input.scss +82 -0
  280. package/src/scss/components/_loader.scss +20 -0
  281. package/src/scss/components/_modal.scss +138 -0
  282. package/src/scss/components/_numeric-input.scss +98 -0
  283. package/src/scss/components/_popout.scss +63 -0
  284. package/src/scss/components/_progress.scss +62 -0
  285. package/src/scss/components/_radio-checkbox.scss +79 -0
  286. package/src/scss/components/_select.scss +106 -0
  287. package/src/scss/components/_slider.scss +34 -0
  288. package/src/scss/components/_toggle.scss +120 -0
  289. package/src/scss/components/_warning.scss +65 -0
  290. package/src/scss/index.scss +37 -0
  291. package/src/scss/styledcomponents/_card.scss +130 -0
  292. package/src/scss/styledcomponents/_drawer.scss +36 -0
  293. package/src/scss/styledcomponents/_general.scss +20 -0
  294. package/src/scss/styledcomponents/_table.scss +302 -0
  295. package/src/scss/styledcomponents/_tabs.scss +97 -0
  296. package/src/scss/styledcomponents/_tag.scss +155 -0
  297. package/src/scss/unsorted/_general.scss +259 -0
  298. package/src/services/account.ts +53 -0
  299. package/tsconfig.json +25 -0
  300. package/tsconfig.node.json +11 -0
  301. package/vite.config.ts +7 -0
  302. package/vitest-setup.js +1 -0
  303. package/vitest.config.js +13 -0
@@ -0,0 +1,228 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { memo } from "react";
3
+ const SVG = ({ d, ...rest }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 640", ...rest, children: _jsx("path", { fill: "currentColor", fillRule: "nonzero", d: d }) }));
4
+ const _AngleDown = (props) => (_jsx(SVG, { ...props, d: "M331.25 427.25c-6.2 6.2-16.4 6.2-22.6 0l-192-192c-6.2-6.2-6.2-16.4 0-22.6 6.2-6.2 16.4-6.2 22.6 0l180.7 180.7 180.7-180.7c6.2-6.2 16.4-6.2 22.6 0 6.2 6.2 6.2 16.4 0 22.6l-192 192Z" }));
5
+ export const AngleDown = memo(_AngleDown);
6
+ AngleDown.displayName = "AngleDown";
7
+ const _AngleLeft = (props) => (_jsx(SVG, { ...props, d: "M212.65 331.25c-6.2-6.2-6.2-16.4 0-22.6l192-192c6.2-6.2 16.4-6.2 22.6 0 6.2 6.2 6.2 16.4 0 22.6l-180.7 180.7 180.7 180.7c6.2 6.2 6.2 16.4 0 22.6-6.2 6.2-16.4 6.2-22.6 0l-192-192Z" }));
8
+ export const AngleLeft = memo(_AngleLeft);
9
+ AngleLeft.displayName = "AngleLeft";
10
+ const _AngleRight = (props) => (_jsx(SVG, { ...props, d: "M427.25 308.65c6.2 6.2 6.2 16.4 0 22.6l-192 192c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l180.7-180.7-180.7-180.7c-6.2-6.2-6.2-16.4 0-22.6 6.2-6.2 16.4-6.2 22.6 0l192 192Z" }));
11
+ export const AngleRight = memo(_AngleRight);
12
+ AngleRight.displayName = "AngleRight";
13
+ const _AngleUp = (props) => (_jsx(SVG, { ...props, d: "M308.65 212.65c6.2-6.2 16.4-6.2 22.6 0l192 192c6.2 6.2 6.2 16.4 0 22.6-6.2 6.2-16.4 6.2-22.6 0l-180.7-180.7-180.7 180.7c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l192-192Z" }));
14
+ export const AngleUp = memo(_AngleUp);
15
+ AngleUp.displayName = "AngleUp";
16
+ const _AngleUpDown = (props) => (_jsx(SVG, { ...props, d: "M123.25,4.7 C117.05,-1.5 106.85,-1.5 100.65,4.7 L4.65,100.7 C-1.55,106.9 -1.55,117.1 4.65,123.3 C10.85,129.5 21.05,129.5 27.25,123.3 L95.95,54.6 L95.95,432 C95.95,440.8 103.15,448 111.95,448 C120.75,448 127.95,440.8 127.95,432 L127.95,54.6 L196.65,123.3 C202.85,129.5 213.05,129.5 219.25,123.3 C225.45,117.1 225.45,106.9 219.25,100.7 L123.25,4.7 Z M475.25,347.3 C481.45,341.1 481.45,330.9 475.25,324.7 C469.05,318.5 458.85,318.5 452.65,324.7 L383.95,393.4 L383.95,16 C383.95,7.2 376.75,0 367.95,0 C359.15,0 351.95,7.2 351.95,16 L351.95,393.4 L283.25,324.7 C277.05,318.5 266.85,318.5 260.65,324.7 C254.45,330.9 254.45,341.1 260.65,347.3 L356.65,443.3 C362.85,449.5 373.05,449.5 379.25,443.3 L475.25,347.3 Z" }));
17
+ export const AngleUpDown = memo(_AngleUpDown);
18
+ AngleUpDown.displayName = "AngleUpDown";
19
+ const _ArrowDown = (props) => (_jsx(SVG, { ...props, d: "M308.65 539.3c6.2 6.2 16.4 6.2 22.6 0l176-176c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-148.7 148.7V112c0-8.8-7.2-16-16-16s-16 7.2-16 16v377.4l-148.7-148.7c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l176 176Z" }));
20
+ export const ArrowDown = memo(_ArrowDown);
21
+ ArrowDown.displayName = "ArrowDown";
22
+ const _ArrowLeft = (props) => (_jsx(SVG, { ...props, d: "M100.65 308.65c-6.2 6.2-6.2 16.4 0 22.6l176 176c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6l-148.7-148.7h377.4c8.8 0 16-7.2 16-16s-7.2-16-16-16h-377.4l148.7-148.7c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-176 176Z" }));
23
+ export const ArrowLeft = memo(_ArrowLeft);
24
+ ArrowLeft.displayName = "ArrowLeft";
25
+ const _ArrowRightLeft = (props) => (_jsx(SVG, { ...props, d: "M539.3 203.25c6.2-6.2 6.2-16.4 0-22.6l-96-96c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l68.7 68.7H112c-8.8 0-16 7.2-16 16s7.2 16 16 16h377.4l-68.7 68.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l96-96Zm-342.6 352c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6l-68.7-68.7H528c8.8 0 16-7.2 16-16s-7.2-16-16-16H150.6l68.7-68.7c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-96 96c-6.2 6.2-6.2 16.4 0 22.6l96 96Z" }));
26
+ export const ArrowRightLeft = memo(_ArrowRightLeft);
27
+ ArrowRightLeft.displayName = "ArrowRightLeft";
28
+ const _ArrowRight = (props) => (_jsx(SVG, { ...props, d: "M539.3 331.25c6.2-6.2 6.2-16.4 0-22.6l-176-176c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l148.7 148.7H112c-8.8 0-16 7.2-16 16s7.2 16 16 16h377.4l-148.7 148.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l176-176Z" }));
29
+ export const ArrowRight = memo(_ArrowRight);
30
+ ArrowRight.displayName = "ArrowRight";
31
+ const _ArrowUp = (props) => (_jsx(SVG, { ...props, d: "M331.25 100.65c-6.2-6.2-16.4-6.2-22.6 0l-176 176c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l148.7-148.7v377.4c0 8.8 7.2 16 16 16s16-7.2 16-16v-377.4l148.7 148.7c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6l-176-176Z" }));
32
+ export const ArrowUp = memo(_ArrowUp);
33
+ ArrowUp.displayName = "ArrowUp";
34
+ const _ArrowUpRight = (props) => (_jsx(SVG, { ...props, d: "M463.95 160c8.8 0 16 7.2 16 16v224c0 8.8-7.2 16-16 16s-16-7.2-16-16V214.6l-260.7 260.7c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6L425.35 192h-185.4c-8.8 0-16-7.2-16-16s7.2-16 16-16h224Z" }));
35
+ export const ArrowUpRight = memo(_ArrowUpRight);
36
+ ArrowUpRight.displayName = "ArrowUpRight";
37
+ const _Book = (props) => (_jsx(SVG, { ...props, d: "M101 128c0-35.3 28.7-64 64-64h336c26.5 0 48 21.5 48 48v320c0 20.9-13.4 38.7-32 45.3V544h16c8.8 0 16 7.2 16 16s-7.2 16-16 16H165c-35.3 0-64-28.7-64-64V128Zm64 352c-17.7 0-32 14.3-32 32s14.3 32 32 32h320v-64H165Zm-32-23.4c9.4-5.4 20.3-8.6 32-8.6h32V96h-32c-17.7 0-32 14.3-32 32v328.6ZM229 96v352h272c8.8 0 16-7.2 16-16V112c0-8.8-7.2-16-16-16H229Z" }));
38
+ export const Book = memo(_Book);
39
+ Book.displayName = "Book";
40
+ const _Bolt = (props) => (_jsx(SVG, { ...props, d: "M402.8 70.3c4.6-4.1 10.5-6.3 16.6-6.3 17.2 0 29.2 17.1 23.4 33.3L374.7 288H485c14.9 0 27 12.1 27 27 0 7.8-3.3 15.1-9.1 20.3L237.1 569.8c-4.5 4-10.4 6.2-16.5 6.2-17.2 0-29.2-17.1-23.5-33.3L265.3 352H153.8c-14.2 0-25.8-11.6-25.8-25.8 0-7.4 3.2-14.4 8.7-19.3L402.8 70.3Zm.5 42.4L170.1 320H288c5.2 0 10.1 2.5 13.1 6.8s3.7 9.7 2 14.6l-66.5 186.2L471.8 320H352c-5.2 0-10.1-2.5-13.1-6.8s-3.7-9.7-2-14.6l66.4-186v.1Z" }));
41
+ export const Bolt = memo(_Bolt);
42
+ Bolt.displayName = "Bolt";
43
+ const _Building = (props) => (_jsx(SVG, { ...props, d: "M327.9 66.1c-4.9-2.8-10.9-2.8-15.8 0L79.8 197.7C70 203.3 64 213.6 64 224.8 64 242 78 256 95.2 256h449.6c17.2 0 31.2-14 31.2-31.2 0-11.2-6-21.6-15.8-27.1L327.9 66.1ZM370.6 224c3.5-7.3 5.4-15.4 5.4-24 0-30.9-25.1-56-56-56s-56 25.1-56 56c0 8.6 1.9 16.7 5.4 24H98.3L320 98.4 541.7 224H370.6ZM320 176c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24ZM128 416c-8.8 0-16 7.2-16 16s7.2 16 16 16h384c8.8 0 16-7.2 16-16s-7.2-16-16-16V288h-32v128h-80V288h-32v128h-96V288h-32v128h-80V288h-32v128Zm-24 64c-8.8 0-16 7.2-16 16s7.2 16 16 16h432c8.8 0 16-7.2 16-16s-7.2-16-16-16H104Zm-24 64c-8.8 0-16 7.2-16 16s7.2 16 16 16h480c8.8 0 16-7.2 16-16s-7.2-16-16-16H80Z" }));
44
+ export const Building = memo(_Building);
45
+ Building.displayName = "Building";
46
+ const _ChartUpDown = (props) => (_jsx(SVG, { ...props, d: "M96 112c0-8.8-7.2-16-16-16s-16 7.2-16 16v352c0 44.2 35.8 80 80 80h416c8.8 0 16-7.2 16-16s-7.2-16-16-16H144c-26.5 0-48-21.5-48-48V112Zm336 48h57.4L352 297.4l-68.7-68.7c-3-3-7.1-4.7-11.3-4.7-4.2 0-8.3 1.7-11.3 4.7l-96 96c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l84.7-84.7 68.7 68.7c6.2 6.2 16.4 6.2 22.6 0L512 182.6V240c0 8.8 7.2 16 16 16s16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-96c-8.8 0-16 7.2-16 16s7.2 16 16 16Zm0 288h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16s-16 7.2-16 16v57.4l-68.7-68.7-22.6 22.6 68.7 68.7H432c-8.8 0-16 7.2-16 16s7.2 16 16 16Z" }));
47
+ export const ChartUpDown = memo(_ChartUpDown);
48
+ ChartUpDown.displayName = "ChartUpDown";
49
+ const _ChartUp = (props) => (_jsx(SVG, { ...props, d: "M96 112c0-8.8-7.2-16-16-16s-16 7.2-16 16v352c0 44.2 35.8 80 80 80h416c8.8 0 16-7.2 16-16s-7.2-16-16-16H144c-26.5 0-48-21.5-48-48V112Zm288 96c0 8.8 7.2 16 16 16h89.4L384 329.4l-84.7-84.7c-6.2-6.2-16.4-6.2-22.6 0l-112 112c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0L288 278.6l84.7 84.7c6.2 6.2 16.4 6.2 22.6 0L512 246.6V336c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16H400c-8.8 0-16 7.2-16 16Z" }));
50
+ export const ChartUp = memo(_ChartUp);
51
+ ChartUp.displayName = "ChartUp";
52
+ const _Chart = (props) => (_jsx(SVG, { ...props, d: "M96 112c0-8.8-7.2-16-16-16s-16 7.2-16 16v352c0 44.2 35.8 80 80 80h416c8.8 0 16-7.2 16-16s-7.2-16-16-16H144c-26.5 0-48-21.5-48-48V112Zm288 0c0-8.8-7.2-16-16-16s-16 7.2-16 16v48.8c-18.3 3.7-32 19.8-32 39.2v80c0 19.4 13.8 35.5 32 39.2V368c0 8.8 7.2 16 16 16s16-7.2 16-16v-48.8c18.3-3.7 32-19.8 32-39.2v-80c0-19.4-13.8-35.5-32-39.2V112Zm-144 16c-8.8 0-16 7.2-16 16v48.8c-18.3 3.7-32 19.8-32 39.2v112c0 19.4 13.8 35.5 32 39.2V432c0 8.8 7.2 16 16 16s16-7.2 16-16v-48.8c18.3-3.7 32-19.8 32-39.2V232c0-19.4-13.8-35.5-32-39.2V144c0-8.8-7.2-16-16-16Zm144 72v80c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-80c0-4.4 3.6-8 8-8h16c4.4 0 8 3.6 8 8Zm104 88h16c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8v-48c0-4.4 3.6-8 8-8Zm-8-32v.8c-18.3 3.7-32 19.8-32 39.2v48c0 19.4 13.8 35.5 32 39.2V432c0 8.8 7.2 16 16 16s16-7.2 16-16v-48.8c18.3-3.7 32-19.8 32-39.2v-48c0-19.4-13.8-35.5-32-39.2V208c0-8.8-7.2-16-16-16s-16 7.2-16 16v48Zm-232-32c4.4 0 8 3.6 8 8v112c0 4.4-3.6 8-8 8h-16c-4.4 0-8-3.6-8-8V232c0-4.4 3.6-8 8-8h16Z" }));
53
+ export const Chart = memo(_Chart);
54
+ Chart.displayName = "Chart";
55
+ const _Check = (props) => (_jsx(SVG, { ...props, d: "M539.25 172.65c6.2 6.2 6.2 16.4 0 22.6l-272 272c-6.2 6.2-16.4 6.2-22.6 0l-144-144c-6.2-6.2-6.2-16.4 0-22.6 6.2-6.2 16.4-6.2 22.6 0l132.7 132.7 260.7-260.7c6.2-6.2 16.4-6.2 22.6 0Z" }));
56
+ export const Check = memo(_Check);
57
+ Check.displayName = "Check";
58
+ const _CircleUser = (props) => (_jsx(SVG, { ...props, d: "M476.1 480.6c-14-55.5-64.2-96.6-124.1-96.6h-64c-59.9 0-110.1 41.1-124.1 96.6C122 439.9 96 383 96 320 96 196.3 196.3 96 320 96s224 100.3 224 224c0 63-26 119.9-67.9 160.6ZM447.6 504c-36.1 25.2-80.1 40-127.6 40s-91.5-14.8-127.7-39.9c4-49.3 45.3-88.1 95.7-88.1h64c50.4 0 91.6 38.8 95.7 88.1l-.1-.1ZM320 576c141.385 0 256-114.615 256-256S461.385 64 320 64 64 178.615 64 320s114.615 256 256 256Zm0-256c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48Zm-80-48c0 44.183 35.817 80 80 80s80-35.817 80-80-35.817-80-80-80-80 35.817-80 80Z" }));
59
+ export const CircleUser = memo(_CircleUser);
60
+ CircleUser.displayName = "CircleUser";
61
+ const _Copy = (props) => (_jsx(SVG, { ...props, d: "M128 544h224c17.7 0 32-14.3 32-32v-64h32v64c0 35.3-28.7 64-64 64H128c-35.3 0-64-28.7-64-64V288c0-35.3 28.7-64 64-64h64v32h-64c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32Zm160-160h224c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H288c-17.7 0-32 14.3-32 32v224c0 17.7 14.3 32 32 32Zm-64-32V128c0-35.3 28.7-64 64-64h224c35.3 0 64 28.7 64 64v224c0 35.3-28.7 64-64 64H288c-35.3 0-64-28.7-64-64Z" }));
62
+ export const Copy = memo(_Copy);
63
+ Copy.displayName = "Copy";
64
+ const _Deposit = (props) => (_jsx(SVG, { ...props, d: "M320 96c62.879 0 120.981 33.545 152.42 88 31.44 54.455 31.44 121.545 0 176-31.439 54.455-89.541 88-152.42 88-62.879 0-120.981-33.545-152.42-88-31.44-54.455-31.44-121.545 0-176C199.019 129.545 257.12 96 320 96Zm0 384c114.875 0 208-93.125 208-208S434.875 64 320 64s-208 93.125-208 208 93.125 208 208 208Zm-192-64h-8c-30.9 0-56 25.1-56 56v48c0 30.9 25.1 56 56 56h400c30.9 0 56-25.1 56-56v-48c0-30.9-25.1-56-56-56h-8c-8.6 11.5-18.3 22.2-28.8 32H520c13.3 0 24 10.7 24 24v48c0 13.3-10.7 24-24 24H120c-13.3 0-24-10.7-24-24v-48c0-13.3 10.7-24 24-24h36.8c-10.5-9.8-20.2-20.5-28.8-32Zm208-248c0-8.8-7.2-16-16-16s-16 7.2-16 16v17.3c-8.3 1.5-16.7 4.3-24.1 8.7-13 7.7-23.9 21.1-23.8 40.5.1 18.4 10.8 30.1 22.7 37.3 10.5 6.3 23.8 10.4 34.8 13.7l1.6.5c12.5 3.8 22.2 6.9 29 11.2 5.9 3.7 7.7 7 7.7 11.6.1 6.6-2.7 10.8-7.8 14-5.8 3.6-14.5 5.6-23.7 5.3-11.8-.4-22.7-4.1-36.3-8.7-2.3-.8-4.7-1.6-7.1-2.4-8.4-2.8-17.4 1.7-20.2 10.1-2.8 8.4 1.7 17.4 10.1 20.2 2 .7 4.1 1.4 6.2 2.1 9.2 3.2 19.7 6.8 30.9 8.9V376c0 8.8 7.2 16 16 16s16-7.2 16-16v-17.1c8.7-1.4 17.4-4.3 25.1-9.1 13.3-8.3 23.2-22.2 22.9-41.6-.2-18.5-10.6-30.6-22.7-38.2-11-6.9-25-11.2-36.3-14.6l-.5-.1c-12.6-3.8-22.3-6.8-29.2-10.9-6-3.6-7.2-6.4-7.3-10.1 0-5.4 2.4-9.4 8.1-12.8 6.2-3.7 15.1-5.7 23.6-5.5 10.1.2 21 2.3 32.1 5.3 8.5 2.3 17.3-2.8 19.6-11.3 2.3-8.5-2.8-17.3-11.3-19.6-7.5-2-15.6-3.9-24.1-5.1V168Z" }));
65
+ export const Deposit = memo(_Deposit);
66
+ Deposit.displayName = "Deposit";
67
+ const _Discord = (props) => (_jsx(SVG, { ...props, d: "M524.53 133.837a1.5 1.5 0 0 0-.763-.7A485.065 485.065 0 0 0 404.08 96.03a1.816 1.816 0 0 0-1.923.91 337.461 337.461 0 0 0-14.9 30.6 447.848 447.848 0 0 0-134.426 0 309.54 309.54 0 0 0-15.135-30.6 1.89 1.89 0 0 0-1.924-.91 483.689 483.689 0 0 0-119.688 37.107 1.712 1.712 0 0 0-.788.676C39.067 247.652 18.186 358.69 28.43 468.354c.058.544.334 1.04.765 1.376a487.666 487.666 0 0 0 146.825 74.189 1.9 1.9 0 0 0 2.063-.676A348.2 348.2 0 0 0 208.12 494.4a1.86 1.86 0 0 0-1.02-2.588 321.173 321.173 0 0 1-45.867-21.853 1.885 1.885 0 0 1-.185-3.126 251.047 251.047 0 0 0 9.109-7.137 1.819 1.819 0 0 1 1.9-.256c96.229 43.917 200.41 43.917 295.5 0 .632-.301 1.381-.21 1.924.233a234.533 234.533 0 0 0 9.132 7.16 1.884 1.884 0 0 1-.162 3.126 301.407 301.407 0 0 1-45.89 21.83 1.875 1.875 0 0 0-1 2.61 391.055 391.055 0 0 0 30.014 48.816 1.864 1.864 0 0 0 2.063.7A486.048 486.048 0 0 0 610.7 469.73c.438-.32.716-.813.765-1.352 12.264-126.783-20.532-236.912-86.934-334.541ZM222.49 401.58c-28.971 0-52.843-26.587-52.843-59.24 0-32.651 23.409-59.24 52.844-59.24 29.665 0 53.306 26.82 52.843 59.239 0 32.654-23.41 59.24-52.843 59.24Zm195.38 0c-28.97 0-52.842-26.587-52.842-59.24 0-32.651 23.409-59.24 52.843-59.24 29.667 0 53.307 26.82 52.844 59.239 0 32.654-23.177 59.24-52.844 59.24Z" }));
68
+ export const Discord = memo(_Discord);
69
+ Discord.displayName = "Discord";
70
+ const _Earth = (props) => (_jsx(SVG, { ...props, d: "M320 544C196.3 544 96 443.7 96 320c0-11.8.9-23.3 2.7-34.6l3 6.7c9.3 21 27.3 37 49.2 43.9l63 19.7c15.5 4.9 26.1 19.2 26.1 35.5v15c0 17 9.6 32.6 24.8 40.2 4.4 2.2 7.2 6.7 7.2 11.6v22.7c0 26.2 21.2 47.4 47.4 47.4 21.8 0 40.7-14.8 46-35.9l4.4-17.6c2.6-10.2 9.2-19 18.3-24.2l11.6-6.6c19.9-11.4 32.2-32.6 32.2-55.6v-8.3c0-17-6.7-33.3-18.7-45.3l-3.9-3.9c-12-12-28.3-18.7-45.3-18.7h-48.7c-5 0-9.9-1.2-14.3-3.4l-45.9-22.9c-2.1-1-3.8-2.7-4.8-4.8l-.7-1.4c-2.3-4.6-.4-10.2 4.2-12.5 2.2-1.1 4.8-1.3 7.1-.5l24.2 8.1c15 5 31.5-.7 40.3-13.8 8.6-12.9 7.7-30-2.2-41.9l-17.9-21.5c-2.5-3-2.5-7.4.1-10.3l20.1-23.5c13.2-15.4 15.3-37.4 5.2-55.1L323.6 96c77.5 1.2 145.4 41.8 184.7 102.6l-38.2 15.3c-23.6 9.4-35.7 35.6-27.7 59.7l16.9 50.7c5.2 15.6 18 27.4 33.9 31.4l45.8 11.5C517.3 468.3 427.5 544 320 544ZM112 236.7c29.3-73 95.8-127 176-138.4l14.9 26.1c3.4 5.9 2.7 13.2-1.7 18.4l-20.1 23.5c-12.7 14.8-12.9 36.6-.4 51.6l17.9 21.5c.9 1.1 1 2.6.2 3.7-.8 1.2-2.2 1.7-3.6 1.2l-24.2-8.2c-10.4-3.5-21.7-2.7-31.5 2.2-20.4 10.2-28.7 35-18.5 55.4l.7 1.4c4.1 8.3 10.9 15 19.2 19.2l45.9 22.9c8.9 4.4 18.7 6.8 28.6 6.8h48.8c8.5 0 16.6 3.4 22.6 9.4l3.9 3.9c6 6 9.4 14.1 9.4 22.6v8.3c0 11.5-6.2 22.1-16.1 27.8l-11.6 6.6c-16.7 9.6-28.8 25.5-33.5 44.2l-4.4 17.6c-1.7 6.9-7.9 11.7-15 11.7-8.5 0-15.4-6.9-15.4-15.4v-22.8c0-17-9.6-32.6-24.8-40.2-4.4-2.2-7.2-6.7-7.2-11.6v-15c0-30.3-19.7-57-48.6-66.1l-63-19.7c-13.2-4.1-23.9-13.7-29.5-26.3l-19-42.3ZM544 320c0 5.2-.2 10.3-.5 15.4l-42.6-10.6c-5.3-1.3-9.6-5.3-11.3-10.5l-16.9-50.7c-2.7-8 1.4-16.8 9.2-19.9l41.8-16.7c13 28.3 20.2 59.9 20.2 93.1l.1-.1ZM320 576c141.385 0 256-114.615 256-256S461.385 64 320 64 64 178.615 64 320s114.615 256 256 256Z" }));
71
+ export const Earth = memo(_Earth);
72
+ Earth.displayName = "Earth";
73
+ const _Edit = (props) => (_jsx(SVG, { ...props, d: "m520.6 107.45 12.1 12.1c12.5 12.5 12.5 32.8 0 45.3l-26.7 26.7-57.4-57.4 26.7-26.7c12.5-12.5 32.8-12.5 45.3 0ZM255 327.75l171-171 57.4 57.4-171 171c-4.2 4.2-9.6 7.2-15.4 8.6l-65.6 15.1 15.1-65.7c1.3-5.8 4.3-11.2 8.6-15.4h-.1Zm197.7-243-220.3 220.4c-8.5 8.5-14.4 19.2-17.1 30.9l-20.9 90.6c-1.2 5.4.4 11 4.3 14.9 3.9 3.9 9.5 5.5 14.9 4.3l90.6-20.9c11.7-2.7 22.4-8.6 30.9-17.1l220.3-220.4c25-25 25-65.5 0-90.5l-12.1-12.2c-25-25-65.5-25-90.5 0h-.1ZM146 126.15c-44.2 0-80 35.8-80 80v288c0 44.2 35.8 80 80 80h288c44.2 0 80-35.8 80-80v-128c0-8.8-7.2-16-16-16s-16 7.2-16 16v128c0 26.5-21.5 48-48 48H146c-26.5 0-48-21.5-48-48v-288c0-26.5 21.5-48 48-48h128c8.8 0 16-7.2 16-16s-7.2-16-16-16H146Z" }));
74
+ export const Edit = memo(_Edit);
75
+ Edit.displayName = "Edit";
76
+ const _Ellipsis = (props) => (_jsx(SVG, { ...props, d: "M512 320c0 17.673-14.327 32-32 32-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32Zm-160 0c0 17.673-14.327 32-32 32-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32Zm-192 32c-17.673 0-32-14.327-32-32 0-17.673 14.327-32 32-32 17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32Z" }));
77
+ export const Ellipsis = memo(_Ellipsis);
78
+ Ellipsis.displayName = "Ellipsis";
79
+ const _External = (props) => (_jsx(SVG, { ...props, d: "M400 64c-8.8 0-16 7.2-16 16s7.2 16 16 16h121.4L276.7 340.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0L544 118.6V240c0 8.8 7.2 16 16 16s16-7.2 16-16V80c0-8.8-7.2-16-16-16H400ZM128 96c-35.3 0-64 28.7-64 64v352c0 35.3 28.7 64 64 64h352c35.3 0 64-28.7 64-64V368c0-8.8-7.2-16-16-16s-16 7.2-16 16v144c0 17.7-14.3 32-32 32H128c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h144c8.8 0 16-7.2 16-16s-7.2-16-16-16H128Z" }));
80
+ export const External = memo(_External);
81
+ External.displayName = "External";
82
+ const _ExclamationCircle = (props) => (_jsx(SVG, { ...props, d: "M320 96c123.712 0 224 100.288 224 224S443.712 544 320 544 96 443.712 96 320 196.288 96 320 96Zm0 480c141.385 0 256-114.615 256-256S461.385 64 320 64 64 178.615 64 320s114.615 256 256 256Zm0-384c-8.8 0-16 7.2-16 16v128c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16Zm24 224c0-13.255-10.745-24-24-24s-24 10.745-24 24 10.745 24 24 24 24-10.745 24-24Z" }));
83
+ export const ExclamationCircle = memo(_ExclamationCircle);
84
+ ExclamationCircle.displayName = "ExclamationCircle";
85
+ const _ExclamationTriangle = (props) => (_jsx(SVG, { ...props, d: "M98.5 484.4c-1.6 2.8-2.5 6-2.5 9.3 0 10.2 8.2 18.4 18.4 18.4h411.2c10.2 0 18.4-8.2 18.4-18.4 0-3.3-.9-6.4-2.5-9.3l-201-344.6c-4.3-7.3-12.1-11.8-20.5-11.8s-16.2 4.5-20.5 11.8l-201 344.6Zm-27.6-16.2 201-344.6c10-17.1 28.3-27.6 48.1-27.6s38.1 10.5 48.1 27.6l201 344.6c4.5 7.7 6.9 16.5 6.9 25.4 0 27.8-22.6 50.4-50.4 50.4H114.4C86.6 544 64 521.4 64 493.6c0-8.9 2.4-17.7 6.9-25.4ZM320 224c8.8 0 16 7.2 16 16v128c0 8.8-7.2 16-16 16s-16-7.2-16-16V240c0-8.8 7.2-16 16-16Zm-24 224c0-13.255 10.745-24 24-24s24 10.745 24 24-10.745 24-24 24-24-10.745-24-24Z" }));
86
+ export const ExclamationTriangle = memo(_ExclamationTriangle);
87
+ ExclamationTriangle.displayName = "ExclamationTriangle";
88
+ const _EyeSlash = (props) => (_jsx(SVG, { ...props, d: "M25.917 67.378c-6.899-5.4-16.998-4.2-22.497 2.7-5.5 6.898-4.2 16.997 2.7 22.496l607.924 479.94c6.9 5.5 16.998 4.3 22.498-2.599 5.499-6.9 4.3-16.998-2.6-22.497L25.917 67.378Zm579.529 264.867a31.797 31.797 0 0 0 0-24.597c-14.899-35.696-46.195-87.69-92.989-131.084-46.994-43.795-111.686-80.59-192.476-80.59-51.194 0-95.988 14.798-133.884 36.795l27.297 21.498c31.196-16.098 66.792-26.297 106.587-26.297 70.391 0 127.684 31.996 170.779 71.991 43.094 39.995 71.89 87.99 85.19 119.985-9.2 22.097-25.898 51.994-49.495 81.49l25.097 19.798c25.597-31.996 43.695-64.392 53.894-88.99ZM88.409 218.659c-25.596 31.996-43.694 64.392-53.893 88.989a31.797 31.797 0 0 0 0 24.597c14.898 35.695 46.194 87.689 92.989 131.083 46.994 43.795 111.686 80.59 192.476 80.59 51.193 0 95.988-14.798 133.883-36.795l-27.296-21.497c-31.197 16.098-66.792 26.296-106.587 26.296-70.391 0-127.684-31.996-170.78-71.99-43.094-39.996-71.89-87.99-85.189-119.986 9.2-22.097 25.897-51.993 49.494-81.49L88.41 218.66ZM319.981 447.93c16.698 0 32.696-3.2 47.394-9.099l-30.896-24.397c-5.4.9-10.899 1.4-16.498 1.4-50.994 0-92.789-39.795-95.788-90.089l-30.897-24.397c-.9 6-1.3 12.199-1.3 18.498 0 70.691 57.294 127.984 127.985 127.984v.1Zm127.984-127.984c0-70.691-57.293-127.984-127.984-127.984-16.698 0-32.696 3.2-47.394 9.099l30.896 24.397c5.4-.9 10.899-1.4 16.498-1.4 50.994 0 92.788 39.795 95.788 90.089l30.896 24.397c.9-6 1.3-12.199 1.3-18.498v-.1Z" }));
89
+ export const EyeSlash = memo(_EyeSlash);
90
+ EyeSlash.displayName = "EyeSlash";
91
+ const _Eye = (props) => (_jsx(SVG, { ...props, d: "M149.175 200c43.1-40 100.4-72 170.8-72s127.7 32 170.8 72c43.1 40 71.9 88 85.2 120-13.3 32-42.1 80-85.2 120s-100.4 72-170.8 72-127.7-32-170.8-72c-43.1-40-71.9-88-85.2-120 13.3-32 42.1-80 85.2-120Zm170.8-104c-80.8 0-145.5 36.8-192.6 80.6-46.8 43.4-78.1 95.4-92.9 131.1-3.3 7.9-3.3 16.7 0 24.6 14.8 35.7 46.1 87.7 92.9 131.1 47.1 43.8 111.8 80.6 192.6 80.6s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1 3.3-7.9 3.3-16.7 0-24.6-14.9-35.7-46.2-87.7-93-131.1-47.1-43.8-111.8-80.6-192.6-80.6Zm-96 224c0-53.02 42.98-96 96-96s96 42.98 96 96-42.98 96-96 96-96-42.98-96-96Zm224 0c0-70.692-57.308-128-128-128-70.692 0-128 57.308-128 128 0 70.692 57.308 128 128 128 70.692 0 128-57.308 128-128Z" }));
92
+ export const Eye = memo(_Eye);
93
+ Eye.displayName = "Eye";
94
+ const _Gavel = (props) => (_jsx(SVG, { ...props, d: "M379.275 68.65c6.2 6.2 6.2 16.4 0 22.6l-12.7 12.7 169.4 169.4 12.7-12.7c6.2-6.2 16.4-6.2 22.6 0 6.2 6.2 6.2 16.4 0 22.6l-24 24-96 96-24 24c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l12.7-12.7-169.4-169.4-12.7 12.7c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l24-24 96-96 24-24c6.2-6.2 16.4-6.2 22.6 0Zm-108.7 131.3 169.4 169.4 73.4-73.4-169.4-169.4-73.4 73.4Zm-62.6 184-112 112 48 48 112-112-48-48Zm-22.6-22.6c12.5-12.5 32.8-12.5 45.3 0l12.7 12.7 49.8-49.8 22.6 22.6-49.8 49.8 12.7 12.7c12.5 12.5 12.5 32.8 0 45.3l-112 112c-12.5 12.5-32.8 12.5-45.3 0l-48-48c-12.5-12.5-12.5-32.8 0-45.3l112-112Z" }));
95
+ export const Gavel = memo(_Gavel);
96
+ Gavel.displayName = "Gavel";
97
+ const _Gear = (props) => (_jsx(SVG, { ...props, d: "m279 126.8 4.9-24.3-15.7-3.1 15.7 3.1c.3-1.5 1-2.8 1.9-3.8 11.1-1.8 22.6-2.7 34.2-2.7 11.6 0 23.1.9 34.2 2.6 1 1.1 1.6 2.4 1.9 3.8l4.9 24.4c2.9 14.4 13.2 25.2 25.5 30.3l1.5.6c12.3 5.2 27.3 4.8 39.5-3.3l20.6-13.8c1.2-.8 2.6-1.3 4.1-1.3 9.1 6.7 17.7 14 25.6 21.9l.8.8c7.9 8 15.3 16.5 21.9 25.6-.1 1.4-.5 2.8-1.3 4.1l-13.8 20.6c-8.1 12.2-8.5 27.1-3.3 39.5l.6 1.5c5.1 12.4 15.9 22.6 30.3 25.5l24.3 4.9c1.5.3 2.8 1 3.8 1.9 1.7 11.1 2.6 22.4 2.6 34v.4c0 11.6-.9 22.9-2.6 34-1.1 1-2.4 1.6-3.8 1.9l-24.1 5.1c-14.4 2.9-25.2 13.2-30.3 25.5l-.6 1.5c-5.2 12.3-4.8 27.3 3.3 39.5l13.8 20.6c.8 1.2 1.3 2.6 1.3 4.1-13.6 18.5-29.9 34.9-48.4 48.4-1.4-.1-2.8-.5-4.1-1.3l-20.6-13.8c-12.2-8.1-27.1-8.5-39.5-3.3l-1.5.6c-12.4 5.1-22.6 15.9-25.5 30.3l-4.9 24.3c-.3 1.5-1 2.8-1.9 3.8-11.1 1.7-22.6 2.6-34.2 2.6-11.6 0-23.1-.9-34.2-2.6-1-1.1-1.6-2.4-1.9-3.8l-5-24.2c-2.9-14.4-13.2-25.2-25.5-30.3l-1.5-.6c-12.3-5.2-27.3-4.8-39.5 3.3l-20.6 13.8c-1.2.8-2.6 1.3-4.1 1.3-18.5-13.6-34.9-29.9-48.4-48.4.1-1.4.5-2.8 1.3-4.1l13.8-20.6c8.1-12.2 8.5-27.1 3.3-39.5l-.6-1.5c-5.1-12.4-15.9-22.6-30.3-25.5l-24.3-4.9c-1.5-.3-2.8-1-3.8-1.9-1.9-11.2-2.8-22.7-2.8-34.3 0-11.6.9-23.1 2.6-34.2 1.1-1 2.4-1.6 3.8-1.9l24.4-4.9c14.4-2.9 25.2-13.2 30.3-25.5l.6-1.5c5.2-12.3 4.8-27.3-3.3-39.5l-13.8-20.8c-.8-1.2-1.3-2.6-1.3-4.1 6.7-9.1 14-17.7 22-25.7l.8-.8c8-7.9 16.6-15.3 25.7-22 1.4.1 2.8.5 4.1 1.3l20.6 13.8c12.2 8.1 27.1 8.5 39.5 3.3l1.5-.6c12.4-5.1 22.7-15.9 25.5-30.3v.2ZM320 64c-14.8 0-29.3 1.3-43.4 3.7-2 .3-3.9 1-5.6 2.1-9.4 5.6-16.3 15.1-18.6 26.4l-4.9 24.3c-.5 2.6-2.6 5.4-6.3 6.9h-.1l-1.7.7h-.1c-3.7 1.5-7.1 1-9.4-.4L209.5 114c-9.6-6.4-21.2-8.2-31.7-5.6-1.9.5-3.8 1.3-5.4 2.5-11.8 8.3-22.8 17.5-33 27.6l-.8.8c-10.2 10.3-19.4 21.3-27.7 33-1.2 1.6-2 3.5-2.5 5.4-2.6 10.6-.8 22.1 5.6 31.7l13.8 20.6c1.5 2.2 2 5.7.4 9.4v.1l-.7 1.7v.1c-1.5 3.7-4.3 5.8-6.9 6.3l-24.3 4.9c-11.4 2.3-20.8 9.2-26.4 18.6-1 1.7-1.7 3.6-2.1 5.6-2.5 14-3.8 28.5-3.8 43.3 0 14.8 1.3 29.3 3.7 43.4.3 2 1 3.9 2.1 5.6 5.6 9.4 15.1 16.3 26.4 18.6l24.3 4.9c2.6.5 5.4 2.6 6.9 6.3v.1l.7 1.7v.1c1.5 3.7 1 7.1-.4 9.4L114 430.5c-6.4 9.6-8.2 21.2-5.6 31.7.5 1.9 1.3 3.8 2.5 5.4 16.8 23.8 37.6 44.6 61.5 61.5 1.6 1.2 3.5 2 5.4 2.5 10.6 2.6 22.1.8 31.7-5.6l20.6-13.8c2.2-1.5 5.7-2 9.4-.4h.1l1.7.7h.1c3.7 1.5 5.8 4.3 6.3 6.9l4.9 24.3c2.3 11.4 9.2 20.8 18.6 26.4 1.7 1 3.6 1.7 5.6 2.1 14.1 2.4 28.6 3.7 43.4 3.7 14.8 0 29.3-1.3 43.4-3.7 2-.3 3.9-1 5.6-2.1 9.4-5.6 16.3-15.1 18.6-26.4l4.9-24.3c.5-2.6 2.6-5.4 6.3-6.9h.1l1.7-.7h.1c3.7-1.5 7.1-1 9.4.4l20.2 13.8c9.6 6.4 21.2 8.2 31.7 5.6 1.9-.5 3.8-1.3 5.4-2.5 23.8-16.8 44.6-37.6 61.5-61.4 1.2-1.6 2-3.5 2.5-5.4 2.6-10.6.8-22.1-5.6-31.7L512.2 410c-1.5-2.2-2-5.7-.4-9.4v-.1l.7-1.7v-.1c1.5-3.7 4.3-5.8 6.9-6.3l24.3-4.9-3.1-15.7 3.1 15.7c11.4-2.3 20.8-9.2 26.4-18.6 1-1.7 1.7-3.6 2.1-5.6 2.4-14 3.7-28.5 3.7-43.2v-.4c0-14.7-1.3-29.1-3.7-43.2-.3-2-1-3.9-2.1-5.6-5.6-9.4-15.1-16.3-26.4-18.6l-24.3-4.9c-2.6-.5-5.4-2.6-6.9-6.3v-.1l-.7-1.7v-.1c-1.5-3.7-1-7.1.4-9.4l13.8-20.3c6.4-9.6 8.2-21.2 5.6-31.7-.5-1.9-1.3-3.8-2.5-5.4-8.3-11.7-17.5-22.7-27.6-32.9l-.9-.9c-10.1-10.1-21.1-19.3-32.9-27.6-1.6-1.2-3.5-2-5.4-2.5-10.6-2.6-22.1-.8-31.7 5.6l-20.7 13.6c-2.2 1.5-5.7 2-9.4.4h-.1l-1.7-.7h-.1c-3.7-1.5-5.8-4.3-6.3-6.9l-4.9-24.3c-2.3-11.4-9.2-20.8-18.6-26.4-1.7-1-3.6-1.7-5.6-2.1-13.9-2.4-28.4-3.7-43.2-3.7Zm-64 256c0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64Zm160 0c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96Z" }));
98
+ export const Gear = memo(_Gear);
99
+ Gear.displayName = "Gear";
100
+ const _GitHub = (props) => (_jsx(SVG, { ...props, d: "M237.9 467.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6Zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2 .6-2-1.3-4.3-4.3-5.2-2.6-.7-5.5.3-6.2 2.3Zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9ZM316.8 78C178.1 78 72 183.3 72 322c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5 21.3 0 42.8 2.9 62.8 8.5 0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C500.2 527.8 568 432.9 568 322c0-138.7-112.5-244-251.2-244ZM169.2 422.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1Zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7Zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1Zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2Z" }));
101
+ export const GitHub = memo(_GitHub);
102
+ GitHub.displayName = "GitHub";
103
+ const _GitLab = (props) => (_jsx(SVG, { ...props, d: "m567.5 268.127-.7-1.8-69.7-181.78c-1.4-3.57-3.9-6.59-7.2-8.64-2.4-1.55-5.1-2.515-8-2.81-2.9-.295-5.7.083-8.4 1.11-2.7 1.02-5.1 2.66-7.1 4.78-1.9 2.12-3.3 4.67-4.1 7.44l-47 144H224.8l-47.1-144c-.8-2.77-2.2-5.31-4.1-7.43-2-2.12-4.4-3.75-7.1-4.77a18.1 18.1 0 0 0-8.38-1.113 18.4 18.4 0 0 0-8.04 2.793 18.09 18.09 0 0 0-7.16 8.64l-69.653 181.78-.724 1.8a129.57 129.57 0 0 0-3.52 82c7.747 26.9 24.047 50.7 46.447 67.6l.27.2.59.4 105.97 79.5 52.6 39.7 32 24.2c3.7 1.9 8.3 4.3 13 4.3 4.7 0 9.3-2.4 13-4.3l32-24.2 52.6-39.7 106.7-79.9.3-.3c22.4-16.9 38.7-40.6 45.6-67.5 8.6-27 7.4-55.8-2.6-82Z" }));
104
+ export const GitLab = memo(_GitLab);
105
+ GitLab.displayName = "GitLab";
106
+ const _GlassChart = (props) => (_jsx(SVG, { ...props, d: "M272 96c62.879 0 120.981 33.545 152.42 88 31.44 54.455 31.44 121.545 0 176-31.439 54.455-89.541 88-152.42 88-62.879 0-120.981-33.545-152.42-88-31.44-54.455-31.44-121.545 0-176C151.019 129.545 209.12 96 272 96Zm0 384c51.7 0 99-18.8 135.3-50l141.4 141.3c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6L430 407.3c31.2-36.4 50-83.7 50-135.3 0-114.9-93.1-208-208-208S64 157.1 64 272s93.1 208 208 208Zm-80-192v64c0 8.8 7.2 16 16 16s16-7.2 16-16v-64c0-8.8-7.2-16-16-16s-16 7.2-16 16Zm64-96v160c0 8.8 7.2 16 16 16s16-7.2 16-16V192c0-8.8-7.2-16-16-16s-16 7.2-16 16Zm64 64v96c0 8.8 7.2 16 16 16s16-7.2 16-16v-96c0-8.8-7.2-16-16-16s-16 7.2-16 16Z" }));
107
+ export const GlassChart = memo(_GlassChart);
108
+ GlassChart.displayName = "GlassChart";
109
+ const _Glass = (props) => (_jsx(SVG, { ...props, d: "M448 272c0-62.879-33.545-120.981-88-152.42-54.455-31.44-121.545-31.44-176 0C129.545 151.019 96 209.12 96 272c0 62.879 33.545 120.981 88 152.42 54.455 31.44 121.545 31.44 176 0 54.455-31.439 88-89.541 88-152.42Zm-40.7 158c-36.3 31.2-83.6 50-135.3 50-114.9 0-208-93.1-208-208S157.1 64 272 64s208 93.1 208 208c0 51.7-18.8 99-50 135.3l141.3 141.4c6.2 6.2 6.2 16.4 0 22.6-6.2 6.2-16.4 6.2-22.6 0L407.3 430Z" }));
110
+ export const Glass = memo(_Glass);
111
+ Glass.displayName = "Glass";
112
+ const _Grid = (props) => (_jsx(SVG, { ...props, d: "M144 128c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-96Zm-48 16c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48v-96Zm48 240c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-96Zm-48 16c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48v-96Zm400-272h-96c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16Zm-96-32h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48v-96c0-26.5 21.5-48 48-48Zm0 288c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16h96c8.8 0 16-7.2 16-16v-96c0-8.8-7.2-16-16-16h-96Zm-48 16c0-26.5 21.5-48 48-48h96c26.5 0 48 21.5 48 48v96c0 26.5-21.5 48-48 48h-96c-26.5 0-48-21.5-48-48v-96Z" }));
113
+ export const Grid = memo(_Grid);
114
+ Grid.displayName = "Grid";
115
+ const _Info = (props) => (_jsx(SVG, { ...props, d: "M320 96c123.712 0 224 100.288 224 224S443.712 544 320 544 96 443.712 96 320 196.288 96 320 96Zm0 480c141.385 0 256-114.615 256-256S461.385 64 320 64 64 178.615 64 320s114.615 256 256 256Zm-48-160c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c8.8 0 16-7.2 16-16s-7.2-16-16-16h-32V304c0-8.8-7.2-16-16-16h-40c-8.8 0-16 7.2-16 16s7.2 16 16 16h24v96h-32Zm48-168c13.255 0 24-10.745 24-24s-10.745-24-24-24-24 10.745-24 24 10.745 24 24 24Z" }));
116
+ export const Info = memo(_Info);
117
+ Info.displayName = "Info";
118
+ const _Key = (props) => (_jsx(SVG, { ...props, d: "M256 240c0-79.5 64.5-144 144-144s144 64.5 144 144-64.5 144-144 144c-11.1 0-22-1.3-32.4-3.6-5.4-1.2-11 .4-14.9 4.3L321.4 416H272c-8.8 0-16 7.2-16 16v48h-48c-8.8 0-16 7.2-16 16v48H96v-81.4l162.8-162.8c4.2-4.2 5.7-10.5 3.9-16.2-4.4-13.8-6.7-28.4-6.7-43.7v.1ZM400 64c-97.2 0-176 78.8-176 176 0 15.1 1.9 29.8 5.5 43.9L68.7 444.7c-3 3-4.7 7.1-4.7 11.3v104c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16v-48h40c4.2 0 8.3-1.7 11.3-4.7l30-30c10 1.8 20.2 2.7 30.7 2.7 97.2 0 176-78.8 176-176S497.2 64 400 64Zm32 168c13.255 0 24-10.745 24-24s-10.745-24-24-24-24 10.745-24 24 10.745 24 24 24Z" }));
119
+ export const Key = memo(_Key);
120
+ Key.displayName = "Key";
121
+ const _LinkAngle = (props) => (_jsx(SVG, { ...props, d: "M591.5 320.5c50-50 50-131 0-181s-131-50-181 0l-22.6 22.6c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l22.6-22.6c37.5-37.5 98.3-37.5 135.8 0 37.5 37.5 37.5 98.3 0 135.8L444.3 422.4c-37.4 37.4-98.1 37.4-135.6 0-35.6-35.6-37.6-92.6-4.7-130.6l5.3-6.1c5.8-6.7 5.1-16.8-1.6-22.6-6.7-5.8-16.8-5.1-22.6 1.6l-5.3 6.1c-43.9 50.7-41.2 126.7 6.2 174.1 49.9 49.9 130.9 49.9 180.8 0l124.7-124.4Zm-543 0c-50 50-50 131 0 181s131 50 181 0l22.6-22.6c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-22.6 22.6c-37.5 37.5-98.3 37.5-135.8 0-37.5-37.5-37.5-98.3 0-135.8l124.6-124.5c37.4-37.4 98.1-37.4 135.6 0 35.6 35.6 37.6 92.6 4.7 130.6l-5.3 6.1c-5.8 6.7-5.1 16.8 1.6 22.6 6.7 5.8 16.8 5.1 22.6-1.6l5.3-6.1c43.9-50.7 41.2-126.7-6.2-174.1-50.1-50.1-131-50.1-181-.2L48.5 320.5Z" }));
122
+ export const LinkAngle = memo(_LinkAngle);
123
+ LinkAngle.displayName = "LinkAngle";
124
+ const _LinkDisconnect = (props) => (_jsx(SVG, { ...props, d: "M25.917 67.378c-6.899-5.4-16.998-4.2-22.497 2.7-5.5 6.898-4.2 16.997 2.7 22.496l607.924 479.94c6.9 5.5 16.998 4.3 22.498-2.599 5.499-6.9 4.3-16.998-2.6-22.497L25.917 67.378Zm614.024 316.56c0-70.691-57.293-127.984-127.984-127.984h-31.996c-8.799 0-15.998 7.2-15.998 15.998 0 8.799 7.2 15.998 15.998 15.998h31.996c52.994 0 95.988 42.995 95.988 95.988 0 24.197-8.899 46.294-23.697 63.092l25.197 19.898c18.998-22.297 30.496-51.294 30.496-82.99ZM459.864 511.922l-40.495-31.996h-83.49c-52.894 0-95.888-42.894-95.888-95.888 0-13.898 3-27.196 8.399-39.195l-25.697-20.297c-9.399 17.797-14.598 38.095-14.598 59.492-.1 70.691 57.093 127.884 127.784 127.884h123.985ZM399.97 255.854c0 13.898-3 27.197-8.399 39.195l25.697 20.298c9.399-17.798 14.598-38.096 14.598-59.493.1-70.691-57.093-127.884-127.784-127.884H180.098l40.495 31.996h83.49c52.893 0 95.888 42.895 95.888 95.888ZM55.713 192.862l-25.196-19.898C11.519 195.362.02 224.258.02 255.954c0 70.691 57.293 127.984 127.985 127.984H160c8.798 0 15.998-7.199 15.998-15.998s-7.2-15.998-15.998-15.998h-31.996c-52.994 0-95.989-42.994-95.989-95.988 0-24.197 8.9-46.294 23.697-63.092Z" }));
125
+ export const LinkDisconnect = memo(_LinkDisconnect);
126
+ LinkDisconnect.displayName = "LinkDisconnect";
127
+ const _LinkConnect = (props) => (_jsx(SVG, { ...props, d: "M128 128C57.3 128 0 185.3 0 256s57.3 128 128 128h32c8.8 0 16-7.2 16-16s-7.2-16-16-16h-32c-53 0-96-43-96-96s43-96 96-96h176.1c52.9 0 95.9 42.9 95.9 95.9 0 50.3-38.9 92-89 95.6l-8.1.6c-8.8.6-15.4 8.3-14.8 17.1.6 8.8 8.3 15.4 17.1 14.8l8.1-.6c66.9-4.8 118.7-60.5 118.7-127.5 0-70.7-57.2-127.9-127.9-127.9H128Zm384 384c70.7 0 128-57.3 128-128s-57.3-128-128-128h-32c-8.8 0-16 7.2-16 16s7.2 16 16 16h32c53 0 96 43 96 96s-43 96-96 96H335.9c-52.9 0-95.9-42.9-95.9-95.9 0-50.3 38.9-92 89-95.6l8.1-.6c8.8-.6 15.4-8.3 14.8-17.1-.6-8.8-8.3-15.4-17.1-14.8l-8.1.6C259.8 261.4 208 317.1 208 384.1c0 70.7 57.2 127.9 127.9 127.9H512Z" }));
128
+ export const LinkConnect = memo(_LinkConnect);
129
+ LinkConnect.displayName = "LinkConnect";
130
+ const _Medium = (props) => (_jsx(SVG, { ...props, d: "M180.5 138C80.813 138 0 219.371 0 319.738s80.819 181.738 180.5 181.738S361 420.111 361 319.738 280.191 138 180.5 138Zm288.25 10.646c-49.845 0-90.245 76.619-90.245 171.095s40.406 171.1 90.251 171.1c49.845 0 90.251-76.619 90.251-171.1H559c0-94.503-40.4-171.095-90.248-171.095h-.002Zm139.506 17.821c-17.526 0-31.735 68.628-31.735 153.274s14.2 153.274 31.735 153.274S640 404.369 640 319.738c0-84.649-14.215-153.271-31.742-153.271h-.002Z" }));
131
+ export const Medium = memo(_Medium);
132
+ Medium.displayName = "Medium";
133
+ const _MessageCode = (props) => (_jsx(SVG, { ...props, d: "M256 480c0-17.7-14.3-32-32-32h-96c-17.7 0-32-14.3-32-32V128c0-17.7 14.3-32 32-32h384c17.7 0 32 14.3 32 32v288c0 17.7-14.3 32-32 32H373.3c-6.9 0-13.7 2.2-19.2 6.4L256 528v-48ZM128 64c-35.3 0-64 28.7-64 64v288c0 35.3 28.7 64 64 64h96v80c0 6.1 3.4 11.6 8.8 14.3 5.4 2.7 11.9 2.1 16.8-1.5L373.3 480H512c35.3 0 64-28.7 64-64V128c0-35.3-28.7-64-64-64H128Zm155.3 155.3c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-64 64c-6.2 6.2-6.2 16.4 0 22.6l64 64c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6L230.6 272l52.7-52.7Zm96-22.6c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l52.7 52.7-52.7 52.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l64-64c6.2-6.2 6.2-16.4 0-22.6l-64-64Z" }));
134
+ export const MessageCode = memo(_MessageCode);
135
+ MessageCode.displayName = "MessageCode";
136
+ const _Minus = (props) => (_jsx(SVG, { ...props, d: "M576 320c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16s7.2-16 16-16h480c8.8 0 16 7.2 16 16Z" }));
137
+ export const Minus = memo(_Minus);
138
+ Minus.displayName = "Minus";
139
+ const _MoneyTransfer = (props) => (_jsx(SVG, { ...props, d: "m548.7 91.25 36.7 36.7H96c-35.3 0-64 28.7-64 64v220.1l14.1-14.1 17.9-17.9v-124.1c53 0 96-43 96-96H585.4l-36.7 36.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l64-64c3-3 4.7-7.1 4.7-11.3 0-4.2-1.7-8.3-4.7-11.3l-64-64c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6ZM128 159.95c0 35.3-28.7 64-64 64v-32c0-17.7 14.3-32 32-32h32Zm-73.4 352H544c35.3 0 64-28.7 64-64v-220.1l-14.1 14.1-17.9 17.9v124.1c-53 0-96 43-96 96H54.6l36.7-36.7c6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0l-64 64c-3 3-4.7 7.1-4.7 11.3 0 4.2 1.7 8.3 4.7 11.3l64 64c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6l-36.7-36.7Zm521.4-96v32c0 17.7-14.3 32-32 32h-32c0-35.3 28.7-64 64-64Zm-320-96c0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64Zm160 0c0-53.02-42.98-96-96-96s-96 42.98-96 96a96 96 0 1 0 192 0Z" }));
140
+ export const MoneyTransfer = memo(_MoneyTransfer);
141
+ MoneyTransfer.displayName = "MoneyTransfer";
142
+ const _NFT = (props) => (_jsx(SVG, { ...props, d: "M351.8 559.55a64.158 64.158 0 0 1-64 0L128 467.25c-19.8-11.4-32-32.6-32-55.4v-184.6c0-22.9 12.2-44 32-55.4l159.8-92.3c19.8-11.4 44.2-11.4 64 0l159.8 92.3c19.8 11.4 32 32.6 32 55.4v184.6c0 22.9-12.2 44-32 55.4l-159.8 92.3Zm-48-27.7c9.9 5.7 22.1 5.7 32 0l159.8-92.3c9.9-5.7 16-16.3 16-27.7v-184.6c0-11.4-6.1-22-16-27.7l-159.8-92.3c-9.9-5.7-22.1-5.7-32 0L144 199.55c-9.9 5.7-16 16.3-16 27.7v184.6c0 11.4 6.1 22 16 27.7l159.8 92.3Zm-113.1-298.3 33.1 82.9v-76.9c0-8.8 7.2-16 16-16s16 7.2 16 16v160c0 7.7-5.4 14.3-13 15.7-7.6 1.4-15-2.6-17.9-9.8l-33.1-82.8v76.9c0 8.8-7.2 16-16 16s-16-7.2-16-16v-160c0-7.7 5.4-14.3 13-15.7 7.6-1.4 15 2.6 17.9 9.8v-.1Zm97.1 5.9c0-8.8 7.2-16 16-16h48c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v48h32c8.8 0 16 7.2 16 16s-7.2 16-16 16h-32v64c0 8.8-7.2 16-16 16s-16-7.2-16-16v-160Zm112-16h64c8.8 0 16 7.2 16 16s-7.2 16-16 16h-16v144c0 8.8-7.2 16-16 16s-16-7.2-16-16v-144h-16c-8.8 0-16-7.2-16-16s7.2-16 16-16Z" }));
143
+ export const NFT = memo(_NFT);
144
+ NFT.displayName = "NFT";
145
+ const _Orca = (props) => (_jsx(SVG, { ...props, d: "M471.616 64.769c28.082-2.783 54.884 2.003 80.35 14.08 9.127 4.319 12.133 12.243 11.71 21.882-.969 22.217-8.181 42.697-17.787 62.375-18.365 37.599-42.83 70.567-75.297 97.302-1.38 1.135-2.905 3.317-2.783 4.875 1.948 24.788-4.196 48.195-12.187 71.201-10.018 28.85-22.706 56.454-41.817 80.584-3.529 4.475-7.747 8.604-12.322 11.966-8.448 6.188-16.105 3.817-18.03-6.423-2.027-10.796-3.318-22.127-2.338-32.99 2.059-22.895 5.81-45.624 8.87-68.43l.09-.746.144-1.858c-12.132 7.88-23.707 16.473-36.24 23.307-25.9 14.135-54.495 18.977-83.411 22.383-15.104 1.78-30.275 3.34-45.19 6.155-29.785 5.599-40.837 22.26-35.606 53.059 1.67-1.113 3.117-2.004 4.486-2.983l2.76-1.948c25.867-17.753 54.305-22.417 84.97-14.881 4.496 1.113 8.904 3.183 12.91 5.576 1.937 1.169 4.074 4.252 3.852 6.188-.223 1.937-3.017 4.208-5.198 5.154-9.394 4.073-19.311 7.09-28.427 11.664-16.974 8.515-30.03 20.97-34.872 40.126-3.684 14.614-1.502 29.072 2.672 43.208 3.205 10.818 7.112 21.426 10.618 32.167 1.224 3.706 2.504 7.435 3.139 11.252.79 4.809 2.16 10.185-2.505 13.802-5.008 3.896-11.42 4.196-16.306 1.013-10.607-6.912-21.537-13.902-30.497-22.728-38.455-37.988-59.28-84.157-61.718-138.418-1.759-39.446 7.313-76.644 22.684-112.628 6.155-14.403 17.23-23.664 30.876-30.52a787.644 787.644 0 0 0 32.155-16.974c9.628-5.42 17.742-12.689 23.374-22.339 1.748-2.983 3.284-6.21 4.196-9.527 2.226-8.059-2.404-13.78-10.44-11.61a82.432 82.432 0 0 0-23.418 10.263c-8.348 5.454-15.45 12.767-23.686 19.768l1.881-7.001c3.395-12.9.123-23.597-11.13-30.587-7.758-4.808-16.562-8.08-25.11-11.442l-15.505-5.977c-15.516-5.899-31.087-11.676-46.447-17.964-5.543-2.27-10.596-6.423-14.993-10.63-6.344-6.077-5.187-12.277 2.594-16.362 10.284-5.376 21.481-6.967 32.756-7.824l6.155-.423c37.699-2.37 75.286 0 112.573 5.253 31.277 4.386 60.66-1.024 88.932-13.534 24.209-10.73 47.86-22.74 71.802-34.06 24.443-11.541 49.53-21.114 76.711-23.785v-.011Zm32.623 90.969c.668-6.968-3.005-9.539-9.438-6.946a27.648 27.648 0 0 0-5.376 2.939c-13.624 9.438-23.997 21.648-30.787 36.775-.646 1.413-1.113 2.894-1.491 4.296l-1.158 4.62c-.111 8.425 3.217 10.773 9.394 8.236a24.21 24.21 0 0 0 5.332-3.006c13.167-9.872 23.83-21.893 30.786-36.92a31.854 31.854 0 0 0 2.738-9.994Z" }));
146
+ export const Orca = memo(_Orca);
147
+ Orca.displayName = "Orca";
148
+ const _PieChart = (props) => (_jsx(SVG, { ...props, d: "M528.3 272H353V96.7c93.3 7.7 167.6 82.1 175.3 175.3ZM337 304h208.5c8.4 0 15.4-6.5 15.5-14.9V288c0-123.7-100.3-224-224-224h-1.1c-8.4 0-14.9 7.1-14.9 15.5V288c0 8.8 7.2 16 16 16Zm-86.6 70.6 141.9 142C361.9 534 326.6 544 289 544c-114.9 0-208-93.1-208-208 0-98.3 68.3-180.8 160-202.4V352c0 8.5 3.4 16.6 9.4 22.6ZM256 98.3C139.1 114.3 49 214.7 49 336c0 132.5 107.5 240 240 240 51.8 0 99.8-16.4 139-44.3 7.7-5.5 8.2-16.5 1.5-23.1L273 352V113.6c0-9.2-7.8-16.6-17-15.4v.1Zm250.6 378L414.3 384h141.1c-8.3 35-25.4 66.6-48.9 92.3h.1ZM590.8 369c1.3-9.2-6.1-17-15.4-17H375.6c-14.3 0-21.4 17.2-11.3 27.3l131.4 131.4c5.8 5.8 15.2 6.3 21.2.7 39.3-36.7 66.2-86.5 73.9-142.3v-.1Z" }));
149
+ export const PieChart = memo(_PieChart);
150
+ PieChart.displayName = "PieChart";
151
+ const _Plus = (props) => (_jsx(SVG, { ...props, d: "M336 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v224H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h224v224c0 8.8 7.2 16 16 16s16-7.2 16-16V336h224c8.8 0 16-7.2 16-16s-7.2-16-16-16H336V80Z" }));
152
+ export const Plus = memo(_Plus);
153
+ Plus.displayName = "Plus";
154
+ const _Rocket = (props) => (_jsx(SVG, { ...props, d: "M283.292 356.657c-10-10-21.4-18.1-33.8-24.1 30.1-122.3 83.5-181.9 135.6-210.5 53.5-29.4 111.4-29.4 154.6-21.8 7.6 43.2 7.7 101.1-21.8 154.6-28.6 52.1-88.2 105.5-210.5 135.6-6-12.4-14.1-23.9-24.1-33.8Zm36.7 88.6c0-8.2-.8-16.3-2.4-24.3 37.8-9.5 70.4-21.3 98.4-34.7v80.1c0 12.1-6.8 23.2-17.7 28.6l-78.3 39.1v-88.9.1Zm128 21.1v-97.4c131.7-79.9 136.5-202.5 122.7-276.9-2.2-11.6-11.2-20.7-22.8-22.8-74.4-13.8-197-9-276.9 122.7h-97.4c-24.2 0-46.4 13.7-57.2 35.4l-50.7 101.4c-2.5 5-2.2 10.9.7 15.6 2.9 4.7 8.1 7.6 13.6 7.6h114.7c24.7 0 48.5 9.8 65.9 27.3 17.4 17.5 27.3 41.2 27.3 65.9v114.8c0 5.5 2.9 10.7 7.6 13.6 4.7 2.9 10.6 3.2 15.6.7l101.5-50.7c21.7-10.8 35.4-33 35.4-57.2Zm-229-144c-7.9-1.6-16.1-2.4-24.3-2.4h-88.8l39.1-78.3c5.4-10.8 16.5-17.7 28.6-17.7h80.1c-13.5 28-25.2 60.5-34.7 98.4Zm-11.2 189c-11 11-29.4 19.4-52.6 24.9-20.6 4.9-42.1 6.8-59 7.4.6-17 2.5-38.4 7.4-59 5.5-23.2 13.9-41.6 24.9-52.6 21.9-21.9 57.4-21.9 79.3 0s21.9 57.4 0 79.3Zm22.7 22.6c34.4-34.4 34.4-90.1 0-124.5-34.4-34.4-90.1-34.4-124.5 0-34.3 34.2-41 100.5-41.9 138.2-.4 16 12.2 28.6 28.2 28.2 37.7-.9 104-7.6 138.2-41.9Zm225.5-326c0 13.254-10.745 24-24 24-13.254 0-24-10.746-24-24 0-13.255 10.746-24 24-24 13.255 0 24 10.745 24 24Zm-24-56a56 56 0 1 0 0 112 56 56 0 0 0 0-112Z" }));
155
+ export const Rocket = memo(_Rocket);
156
+ Rocket.displayName = "Rocket";
157
+ const _Seedling = (props) => (_jsx(SVG, { ...props, d: "M544 96c0 95.3-69.4 174.4-160.5 189.4 2.7 10.2 4.7 20.7 6.1 31.4C495.4 298.9 576 206.9 576 96c0-17.7-14.3-32-32-32h-32c-81 0-152 43-191.4 107.5 7.8 8.3 15.1 17.2 21.8 26.4C374.7 137.3 438.5 96 512 96h32Zm-416 64c106 0 192 86 192 192h-32c-106 0-192-86-192-192h32Zm-32-32c-17.7 0-32 14.3-32 32 0 123.7 100.3 224 224 224h32v176c0 8.8 7.2 16 16 16s16-7.2 16-16V352c0-123.7-100.3-224-224-224H96Z" }));
158
+ export const Seedling = memo(_Seedling);
159
+ Seedling.displayName = "Seedling";
160
+ const _Sort = (props) => (_jsx(SVG, { ...props, d: "M314.4 98.2c1.4-1.3 3.5-2.2 5.6-2.2 2.1 0 4.2.8 5.6 2.2l120.2 113.5c1.4 1.3 2.2 3.2 2.2 5.2 0 3.9-3.2 7.1-7.1 7.1H199.1c-3.9 0-7.1-3.2-7.1-7.1 0-2 .8-3.8 2.2-5.2L314.4 98.2Zm-22-23.3L172.3 188.4c-7.9 7.4-12.3 17.7-12.3 28.5 0 21.6 17.5 39.1 39.1 39.1h241.8c21.6 0 39.1-17.5 39.1-39.1 0-10.8-4.4-21.1-12.3-28.5L347.6 74.9c-7.5-7-17.4-10.9-27.6-10.9-10.2 0-20.1 3.9-27.6 10.9ZM314.4 541.8c1.4 1.3 3.5 2.2 5.6 2.2 2.1 0 4.2-.8 5.6-2.2l120.2-113.5c1.4-1.3 2.2-3.2 2.2-5.2 0-3.9-3.2-7.1-7.1-7.1H199.1c-3.9 0-7.1 3.2-7.1 7.1 0 2 .8 3.8 2.2 5.2l120.2 113.5Zm-22 23.3L172.3 451.6c-7.9-7.4-12.3-17.7-12.3-28.5 0-21.6 17.5-39.1 39.1-39.1h241.8c21.6 0 39.1 17.5 39.1 39.1 0 10.8-4.4 21.1-12.3 28.5L347.6 565.1c-7.4 7-17.3 10.9-27.6 10.9s-20.1-3.9-27.6-10.9Z" }));
161
+ export const Sort = memo(_Sort);
162
+ Sort.displayName = "Sort";
163
+ const _Sliders = (props) => (_jsx(SVG, { ...props, d: "M64 480c0 8.8 7.2 16 16 16h65.6c7.4 36.5 39.7 64 78.4 64s71-27.5 78.4-64H560c8.8 0 16-7.2 16-16s-7.2-16-16-16H302.4c-7.4-36.5-39.7-64-78.4-64s-71 27.5-78.4 64H80c-8.8 0-16 7.2-16 16Zm112 0c0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48-48-21.49-48-48Zm192-160a48 48 0 0 1 96 0c0 26.51-21.49 48-48 48s-48-21.49-48-48Zm48-80c-38.7 0-71 27.5-78.4 64H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h257.6c7.4 36.5 39.7 64 78.4 64s71-27.5 78.4-64H560c8.8 0 16-7.2 16-16s-7.2-16-16-16h-65.6c-7.4-36.5-39.7-64-78.4-64Zm-160-32c-26.51 0-48-21.49-48-48s21.49-48 48-48 48 21.49 48 48-21.49 48-48 48Zm78.4-64c-7.4-36.5-39.7-64-78.4-64s-71 27.5-78.4 64H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h97.6c7.4 36.5 39.7 64 78.4 64s71-27.5 78.4-64H560c8.8 0 16-7.2 16-16s-7.2-16-16-16H334.4Z" }));
164
+ export const Sliders = memo(_Sliders);
165
+ Sliders.displayName = "Sliders";
166
+ const _SortDown = (props) => (_jsx(SVG, { ...props, d: "M314.4 541.8c1.4 1.3 3.5 2.2 5.6 2.2 2.1 0 4.2-.8 5.6-2.2l120.2-113.5c1.4-1.3 2.2-3.2 2.2-5.2 0-3.9-3.2-7.1-7.1-7.1H199.1c-3.9 0-7.1 3.2-7.1 7.1 0 2 .8 3.8 2.2 5.2l120.2 113.5Zm-22 23.3L172.3 451.6c-7.9-7.4-12.3-17.7-12.3-28.5 0-21.6 17.5-39.1 39.1-39.1h241.8c21.6 0 39.1 17.5 39.1 39.1 0 10.8-4.4 21.1-12.3 28.5L347.6 565.1c-7.4 7-17.3 10.9-27.6 10.9s-20.1-3.9-27.6-10.9Z" }));
167
+ export const SortDown = memo(_SortDown);
168
+ SortDown.displayName = "SortDown";
169
+ const _SortUp = (props) => (_jsx(SVG, { ...props, d: "M314.4 98.2c1.4-1.3 3.5-2.2 5.6-2.2 2.1 0 4.2.8 5.6 2.2l120.2 113.5c1.4 1.3 2.2 3.2 2.2 5.2 0 3.9-3.2 7.1-7.1 7.1H199.1c-3.9 0-7.1-3.2-7.1-7.1 0-2 .8-3.8 2.2-5.2L314.4 98.2Zm-22-23.3L172.3 188.4c-7.9 7.4-12.3 17.7-12.3 28.5 0 21.6 17.5 39.1 39.1 39.1h241.8c21.6 0 39.1-17.5 39.1-39.1 0-10.8-4.4-21.1-12.3-28.5L347.6 74.9c-7.5-7-17.4-10.9-27.6-10.9-10.2 0-20.1 3.9-27.6 10.9Z" }));
170
+ export const SortUp = memo(_SortUp);
171
+ SortUp.displayName = "SortUp";
172
+ const _StakeMinus = (props) => (_jsx(SVG, { ...props, d: "M440 128h112c8.8 0 16 7.2 16 16s-7.2 16-16 16H440c-8.8 0-16-7.2-16-16s7.2-16 16-16Zm-141.8 68.7c6.9-3.1 14.3-4.7 21.8-4.7s15 1.6 21.8 4.7l217.4 97.5c10.2 4.6 16.8 14.7 16.8 25.9s-6.6 21.3-16.8 25.9l-217.4 97.3c-6.9 3.1-14.3 4.7-21.8 4.7s-15-1.6-21.8-4.7L80.8 345.9C70.6 341.3 64 331.2 64 320s6.6-21.3 16.8-25.9l217.4-97.5v.1ZM320 224c-3 0-6 .6-8.8 1.9L101.3 320l210 94.1c2.8 1.2 5.7 1.9 8.8 1.9 3.1 0 6-.6 8.8-1.9l210-94.1-210-94.1c-2.8-1.2-5.7-1.9-8.8-1.9h-.1ZM80.8 422.1l45.9-20.6 39.1 17.5-64.5 29 210 94.1c2.8 1.2 5.7 1.9 8.8 1.9 3.1 0 6-.6 8.8-1.9l210-94.1-64.5-28.9 39.1-17.5 45.9 20.6c10.2 4.6 16.8 14.7 16.8 25.9s-6.6 21.3-16.8 25.9l-217.6 97.3c-6.9 3.1-14.3 4.7-21.8 4.7s-15-1.6-21.8-4.7L80.8 473.9C70.6 469.3 64 459.2 64 448s6.6-21.3 16.8-25.9Z" }));
173
+ export const StakeMinus = memo(_StakeMinus);
174
+ StakeMinus.displayName = "StakeMinus";
175
+ const _StakePlus = (props) => (_jsx(SVG, { ...props, d: "M512 88c0-8.8-7.2-16-16-16s-16 7.2-16 16v40h-40c-8.8 0-16 7.2-16 16s7.2 16 16 16h40v40c0 8.8 7.2 16 16 16s16-7.2 16-16v-40h40c8.8 0 16-7.2 16-16s-7.2-16-16-16h-40V88ZM320 192c-7.5 0-15 1.6-21.8 4.7L80.8 294.1C70.6 298.7 64 308.8 64 320s6.6 21.3 16.8 25.9l217.4 97.5c6.9 3.1 14.3 4.7 21.8 4.7s15-1.6 21.8-4.7l217.4-97.5c10.2-4.6 16.8-14.7 16.8-25.9s-6.6-21.3-16.8-25.9l-217.4-97.4c-6.9-3.1-14.3-4.7-21.8-4.7Zm-8.8 33.9c2.8-1.2 5.7-1.9 8.8-1.9 3.1 0 6 .6 8.8 1.9l210 94.1-210 94.1c-2.8 1.2-5.7 1.9-8.8 1.9-3.1 0-6-.6-8.8-1.9L101.3 320l210-94.1h-.1ZM126.7 401.5l-45.9 20.6C70.6 426.7 64 436.8 64 448s6.6 21.3 16.8 25.9l217.4 97.5c6.9 3.1 14.3 4.7 21.8 4.7s15-1.6 21.8-4.7l217.4-97.5c10.2-4.6 16.8-14.7 16.8-25.9s-6.6-21.3-16.8-25.9l-45.9-20.6-39.1 17.5 64.5 29-210 94.1c-2.8 1.2-5.7 1.9-8.8 1.9-3.1 0-6-.6-8.8-1.9L101.3 448l64.5-28.9-39.1-17.6Z" }));
176
+ export const StakePlus = memo(_StakePlus);
177
+ StakePlus.displayName = "StakePlus";
178
+ const _Stake = (props) => (_jsx(SVG, { ...props, d: "M298.2 68.7C305 65.6 312.5 64 320 64s15 1.6 21.8 4.7l217.4 97.5c10.2 4.6 16.8 14.7 16.8 25.9s-6.6 21.3-16.8 25.9l-217.4 97.3c-6.9 3.1-14.3 4.7-21.8 4.7s-15-1.6-21.8-4.7L80.8 217.9C70.6 213.3 64 203.2 64 192s6.6-21.3 16.8-25.9l217.4-97.4ZM320 96c-3 0-6 .6-8.8 1.9L101.3 192l210 94.1c2.8 1.2 5.7 1.9 8.8 1.9 3.1 0 6-.6 8.8-1.9l210-94.1-210-94.1C326 96.6 323 96 320 96ZM80.8 422.1l45.9-20.6 39.1 17.5-64.5 29 210 94.1c2.8 1.2 5.7 1.9 8.8 1.9 3.1 0 6-.6 8.8-1.9l210-94.1-64.5-28.9 39.1-17.5 45.9 20.6c10.2 4.6 16.8 14.7 16.8 25.9s-6.6 21.3-16.8 25.9l-217.6 97.3c-6.9 3.1-14.3 4.7-21.8 4.7s-15-1.6-21.8-4.7L80.8 473.9C70.6 469.3 64 459.2 64 448s6.6-21.3 16.8-25.9Zm45.9-148.6 39.1 17.5-64.5 29 210 94.1c2.8 1.2 5.7 1.9 8.8 1.9 3.1 0 6-.6 8.8-1.9l210-94.1-64.5-28.9 39.1-17.5 45.9 20.6c10.2 4.6 16.8 14.7 16.8 25.9s-6.6 21.3-16.8 25.9l-217.6 97.3c-6.9 3.1-14.3 4.7-21.8 4.7s-15-1.6-21.8-4.7L80.8 345.9C70.6 341.3 64 331.2 64 320s6.6-21.3 16.8-25.9l45.9-20.6Z" }));
179
+ export const Stake = memo(_Stake);
180
+ Stake.displayName = "Stake";
181
+ const _StarSolid = (props) => (_jsx(SVG, { ...props, d: "M348.756 82c-5.3-11-16.5-18-28.8-18s-23.4 7-28.8 18l-64.3 132.3-143.6 21.2c-12 1.8-22 10.2-25.7 21.7-3.7 11.5-.7 24.2 7.9 32.7l104.2 103.1-24.6 145.7c-2 12 3 24.2 12.9 31.3 9.9 7.1 23 8 33.8 2.3l128.3-68.5 128.3 68.5c10.8 5.7 23.9 4.9 33.8-2.3 9.9-7.2 14.9-19.3 12.9-31.3l-24.7-145.7 104.2-103.1c8.6-8.5 11.7-21.2 7.9-32.7-3.8-11.5-13.7-19.9-25.7-21.7l-143.7-21.2-64.3-132.3Z" }));
182
+ export const StarSolid = memo(_StarSolid);
183
+ StarSolid.displayName = "StarSolid";
184
+ const _Star = (props) => (_jsx(SVG, { ...props, d: "m258.475 232.8 61.4-126.5 61.4 126.5c4.6 9.5 13.6 16.1 24.1 17.7l137.4 20.3-99.8 98.8c-7.4 7.3-10.8 17.8-9 28.1l23.5 139.5-122.5-65.5c-9.4-5-20.7-5-30.2 0l-122.6 65.5 23.5-139.5c1.7-10.3-1.6-20.7-9-28.1l-99.7-98.8 137.4-20.3c10.5-1.5 19.5-8.2 24.1-17.7Zm198.4 340.3c8.1 4.3 17.9 3.7 25.3-1.7 7.4-5.4 11.2-14.5 9.7-23.5l-26.3-155.5 111.2-110.2c6.5-6.4 8.7-15.9 5.9-24.5-2.8-8.6-10.3-14.9-19.3-16.3l-153.3-22.6-68.6-141.3c-4-8.3-12.4-13.5-21.6-13.5-9.2 0-17.6 5.2-21.6 13.5l-68.6 141.3-153.2 22.7c-9 1.3-16.5 7.6-19.3 16.3-2.8 8.7-.5 18.1 5.9 24.5l111.1 110.1-26.2 155.5c-1.5 9 2.2 18.1 9.7 23.5 7.5 5.4 17.3 6 25.3 1.7l137-73.2 137 73.2h-.1Z" }));
185
+ export const Star = memo(_Star);
186
+ Star.displayName = "Star";
187
+ const _Stopwatch = (props) => (_jsx(SVG, { ...props, d: "M224 80c0-8.8 7.2-16 16-16h160c8.8 0 16 7.2 16 16s-7.2 16-16 16h-64v64.6c49.4 3.8 94 24.8 127.7 57l37-37c6.2-6.2 16.4-6.2 22.6 0 6.2 6.2 6.2 16.4 0 22.6l-38.2 38.2C512 276.6 528 320.4 528 368c0 114.9-93.1 208-208 208s-208-93.1-208-208c0-109.5 84.6-199.2 192-207.4V96h-64c-8.8 0-16-7.2-16-16Zm-80 288c0 97.202 78.798 176 176 176s176-78.798 176-176-78.798-176-176-176-176 78.798-176 176Zm192-96v112c0 8.8-7.2 16-16 16s-16-7.2-16-16V272c0-8.8 7.2-16 16-16s16 7.2 16 16Z" }));
188
+ export const Stopwatch = memo(_Stopwatch);
189
+ Stopwatch.displayName = "Stopwatch";
190
+ const _Swap = (props) => (_jsx(SVG, { ...props, d: "M491.3 100.65c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l52.7 52.7H408c-20.1 0-39.1 9.5-51.2 25.6l-48.8 65.1 20 26.7 54.4-72.5c6-8.1 15.5-12.8 25.6-12.8h113.4l-52.7 52.7c-6.2 6.2-6.2 16.4 0 22.6 6.2 6.2 16.4 6.2 22.6 0l80-80c6.2-6.2 6.2-16.4 0-22.6l-80-80v-.1Zm-302.5 324.9c-3 4-7.8 6.4-12.8 6.4H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c15.1 0 29.3-7.1 38.4-19.2l53.6-71.5-20-26.7-59.2 78.9v.1Zm279.9 113.7c6.2 6.2 16.4 6.2 22.6 0l80-80c6.2-6.2 6.2-16.4 0-22.6l-80-80c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l52.7 52.7H408c-10.1 0-19.6-4.7-25.6-12.8l-168-224c-9.1-12.1-23.3-19.2-38.4-19.2H80c-8.8 0-16 7.2-16 16s7.2 16 16 16h96c5 0 9.8 2.4 12.8 6.4l168 224c12.1 16.1 31.1 25.6 51.2 25.6h113.4l-52.7 52.7c-6.2 6.2-6.2 16.4 0 22.6Z" }));
191
+ export const Swap = memo(_Swap);
192
+ Swap.displayName = "Swap";
193
+ const _Telegram = (props) => (_jsx(SVG, { ...props, d: "M320 72C183.033 72 72 183.033 72 320c0 136.967 111.033 248 248 248 136.967 0 248-111.033 248-248 0-136.967-111.033-248-248-248Zm114.952 168.66c-3.732 39.215-19.881 134.378-28.1 178.3-3.476 18.584-10.322 24.816-16.948 25.425-14.4 1.326-25.338-9.517-39.287-18.661-21.827-14.308-34.158-23.215-55.346-37.177-24.485-16.135-8.612-25 5.342-39.5 3.652-3.793 67.107-61.51 68.335-66.746.153-.655.3-3.1-1.154-4.384-1.454-1.284-3.59-.849-5.135-.5-2.189.497-37.058 23.545-104.608 69.142-9.897 6.796-18.861 10.107-26.894 9.934-8.855-.191-25.888-5.006-38.551-9.123-15.531-5.048-27.875-7.717-26.8-16.291.56-4.467 6.71-9.033 18.45-13.7 72.297-31.499 120.507-52.265 144.628-62.3 68.872-28.647 83.183-33.623 92.511-33.79 2.052-.033 6.639.475 9.61 2.886a10.452 10.452 0 0 1 3.53 6.716c.503 3.23.643 6.507.417 9.769Z" }));
194
+ export const Telegram = memo(_Telegram);
195
+ Telegram.displayName = "Telegram";
196
+ const _Terminal = (props) => (_jsx(SVG, { ...props, d: "M480 128c17.7 0 32 14.3 32 32v320c0 17.7-14.3 32-32 32H160c-17.7 0-32-14.3-32-32V160c0-17.7 14.3-32 32-32h320ZM160 96c-35.3 0-64 28.7-64 64v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V160c0-35.3-28.7-64-64-64H160Zm19.9 117.6c-5.8 6.7-5 16.8 1.7 22.6l97.8 83.8-97.8 83.9c-6.7 5.8-7.5 15.8-1.7 22.6 5.8 6.8 15.9 7.5 22.6 1.7l112-96c3.5-3 5.6-7.5 5.6-12.1s-2-9.1-5.6-12.1l-112-96c-6.7-5.8-16.8-5-22.6 1.7v-.1ZM304 416c-8.8 0-16 7.2-16 16s7.2 16 16 16h160c8.8 0 16-7.2 16-16s-7.2-16-16-16H304Z" }));
197
+ export const Terminal = memo(_Terminal);
198
+ Terminal.displayName = "Terminal";
199
+ const _Timer = (props) => (_jsx(SVG, { ...props, d: "M320 64c-8.8 0-16 7.2-16 16v96c0 8.8 7.2 16 16 16s16-7.2 16-16V96.6c116.2 8.2 208 105.1 208 223.4 0 123.7-100.3 224-224 224S96 443.7 96 320c0-61.9 25.1-117.8 65.6-158.4 6.2-6.2 6.2-16.4 0-22.6-6.2-6.2-16.4-6.2-22.6 0-46.3 46.3-75 110.3-75 181 0 141.4 114.6 256 256 256s256-114.6 256-256S461.4 64 320 64Zm-84.7 148.7c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l96 96c6.2 6.2 16.4 6.2 22.6 0 6.2-6.2 6.2-16.4 0-22.6l-96-96Z" }));
200
+ export const Timer = memo(_Timer);
201
+ Timer.displayName = "Timer";
202
+ const _TrendDown = (props) => (_jsx(SVG, { ...props, d: "M399.95 463.95c0 8.8 7.2 16 16 16h176c8.8 0 16-7.2 16-16v-176c0-8.8-7.2-16-16-16s-16 7.2-16 16v137.4l-212.7-212.7c-6.2-6.2-16.4-6.2-22.6 0l-116.7 116.7-164.7-164.7c-6.2-6.2-16.4-6.2-22.6 0-6.2 6.2-6.2 16.4 0 22.6l176 176c6.2 6.2 16.4 6.2 22.6 0l116.7-116.7 201.4 201.4h-137.4c-8.8 0-16 7.2-16 16Z" }));
203
+ export const TrendDown = memo(_TrendDown);
204
+ TrendDown.displayName = "TrendDown";
205
+ const _TrendUp = (props) => (_jsx(SVG, { ...props, d: "M399.95 176c0-8.8 7.2-16 16-16h176c8.8 0 16 7.2 16 16v176c0 8.8-7.2 16-16 16s-16-7.2-16-16V214.6l-212.7 212.7c-6.2 6.2-16.4 6.2-22.6 0l-116.7-116.7-164.7 164.7c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l176-176c6.2-6.2 16.4-6.2 22.6 0l116.7 116.7L553.35 192h-137.4c-8.8 0-16-7.2-16-16Z" }));
206
+ export const TrendUp = memo(_TrendUp);
207
+ TrendUp.displayName = "TrendUp";
208
+ const _Undo = (props) => (_jsx(SVG, { ...props, d: "M112 256c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16s16 7.2 16 16v92.6C167.2 139.5 238.5 96 320 96c123.7 0 224 100.3 224 224S443.7 544 320 544c-79.9 0-150-41.8-189.7-104.8-6.5-10.4 1.4-23.2 13.7-23.2 6 0 11.4 3.2 14.7 8.2C192.9 477 252.4 512 320 512c106 0 192-86 192-192s-86-192-192-192c-71.1 0-133.1 38.6-166.3 96H240c8.8 0 16 7.2 16 16s-7.2 16-16 16H112Z" }));
209
+ export const Undo = memo(_Undo);
210
+ Undo.displayName = "Undo";
211
+ const _Users = (props) => (_jsx(SVG, { ...props, d: "M96 144c0-26.51 21.49-48 48-48s48 21.49 48 48-21.49 48-48 48-48-21.49-48-48Zm128 0c0-44.183-35.817-80-80-80s-80 35.817-80 80 35.817 80 80 80 80-35.817 80-80Zm96 80c35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64Zm0 160a96 96 0 1 0 0-192 96 96 0 0 0 0 192Zm-58.7 64h117.4c54.2 0 98.4 42.5 101.2 96H160.1c2.8-53.5 47-96 101.2-96Zm0-32C187.7 416 128 475.7 128 549.3c0 14.7 11.9 26.7 26.7 26.7h330.6c14.7 0 26.7-11.9 26.7-26.7 0-73.6-59.7-133.3-133.3-133.3H261.3ZM512 96c26.51 0 48 21.49 48 48s-21.49 48-48 48-48-21.49-48-48 21.49-48 48-48Zm0 128c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80Zm16 64c44.2 0 80 35.8 80 80 0 8.8 7.2 16 16 16s16-7.2 16-16c0-61.9-50.1-112-112-112h-84c2.6 10.2 4 21 4 32h80Zm-336 0c0-11 1.4-21.8 4-32h-84C50.1 256 0 306.1 0 368c0 8.8 7.2 16 16 16s16-7.2 16-16c0-44.2 35.8-80 80-80h80Z" }));
212
+ export const Users = memo(_Users);
213
+ Users.displayName = "Users";
214
+ const _Window = (props) => (_jsx(SVG, { ...props, d: "M496 96H272c-26.5 0-48 21.5-48 48v16h-32v-16c0-44.2 35.8-80 80-80h224c44.2 0 80 35.8 80 80v224c0 44.2-35.8 80-80 80h-16v-32h16c26.5 0 48-21.5 48-48V144c0-26.5-21.5-48-48-48ZM384 224H128c-17.7 0-32 14.3-32 32v64h320v-64c0-17.7-14.3-32-32-32ZM96 512c0 17.7 14.3 32 32 32h256c17.7 0 32-14.3 32-32V352H96v160Zm32-320h256c35.3 0 64 28.7 64 64v256c0 35.3-28.7 64-64 64H128c-35.3 0-64-28.7-64-64V256c0-35.3 28.7-64 64-64Z" }));
215
+ export const Window = memo(_Window);
216
+ Window.displayName = "Window";
217
+ const _Wink = (props) => (_jsx(SVG, { ...props, d: "M320 72c136.966 0 248 111.034 248 248S456.966 568 320 568 72 456.966 72 320 183.034 72 320 72Zm-66.078 347.441c-8.99-6.117-21.222-3.8-27.432 5.19-6.209 8.99-3.892 21.315 5.097 27.524 2.132 1.39 36.237 24.281 85.447 24.281 25.023 0 53.845-5.93 84.335-23.446 9.453-5.468 12.697-17.609 7.229-27.062-5.468-9.453-17.608-12.696-27.061-7.228-68.302 39.294-125.02 2.502-127.615.741ZM242.894 266.99c-17.701 0-32.066 22.242-32.066 49.674s14.365 49.674 32.066 49.674c17.7 0 32.066-22.242 32.066-49.674s-14.365-49.674-32.066-49.674Zm118.625 51.527a19.761 19.761 0 0 0-9.36 26.413c3.428 7.136 10.472 11.306 17.886 11.306 2.873-.093 5.838-.741 8.526-2.039 32.436-15.477 59.498-1.39 60.888-.556 9.453 5.283 21.5 1.946 26.876-7.506 5.375-9.546 2.039-21.594-7.414-26.97-1.854-1.019-45.69-25.3-97.402-.648Zm47.172-64.78c-.371 10.936 8.155 20.11 19.09 20.481 35.866 1.298 53.29 26.32 54.216 27.71 3.8 5.746 10.102 8.897 16.589 8.897 3.614.093 7.321-1.02 10.658-3.15 9.175-5.932 11.862-18.165 5.93-27.433-1.111-1.76-28.821-43.557-86.002-45.596-10.936-.278-20.11 8.155-20.481 19.09Zm-193.507-87.208c-2.039.556-50.138 14.55-69.136 68.58-3.615 10.287 1.76 21.594 12.14 25.3a20.025 20.025 0 0 0 6.58 1.113 19.763 19.763 0 0 0 18.628-13.253c11.863-33.827 40.963-43.094 42.538-43.557 10.473-2.966 16.496-13.902 13.624-24.374-2.966-10.565-13.902-16.682-24.374-13.809Z" }));
218
+ export const Wink = memo(_Wink);
219
+ Wink.displayName = "Wink";
220
+ const _Withdraw = (props) => (_jsx(SVG, { ...props, d: "M80 96c-26.5 0-48 21.5-48 48v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-44.2 35.8-80 80-80h480c44.2 0 80 35.8 80 80v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-26.5-21.5-48-48-48H80Zm416 64c8.8 0 16 7.2 16 16v344c0 30.9-25.1 56-56 56H184c-30.9 0-56-25.1-56-56V176c0-8.8 7.2-16 16-16s16 7.2 16 16v272c53 0 96 43 96 96h128c0-53 43-96 96-96V176c0-8.8 7.2-16 16-16ZM224 544c0-35.3-28.7-64-64-64v40c0 13.3 10.7 24 24 24h40Zm232 0c13.3 0 24-10.7 24-24v-40c-35.3 0-64 28.7-64 64h40ZM320 272c-47 0-80 31.3-80 64s33 64 80 64 80-31.3 80-64-33-64-80-64Zm112 64c0 55.6-53 96-112 96s-112-40.4-112-96 53-96 112-96 112 40.4 112 96Z" }));
221
+ export const Withdraw = memo(_Withdraw);
222
+ Withdraw.displayName = "Withdraw";
223
+ const _X = (props) => (_jsx(SVG, { ...props, d: "M452.4 112H523L368.8 288.2 550.2 528h-142L296.9 382.6 169.7 528H99l164.9-188.5L90 112h145.6l100.5 132.9L452.4 112Zm-24.8 373.8h39.1L214.3 152h-42l255.3 333.8Z" }));
224
+ export const X = memo(_X);
225
+ X.displayName = "X";
226
+ const _Xmark = (props) => (_jsx(SVG, { ...props, d: "M516.65 100.65c6.2-6.2 16.4-6.2 22.6 0 6.2 6.2 6.2 16.4 0 22.6l-196.7 196.7 196.7 196.7c6.2 6.2 6.2 16.4 0 22.6-6.2 6.2-16.4 6.2-22.6 0l-196.7-196.7-196.7 196.7c-6.2 6.2-16.4 6.2-22.6 0-6.2-6.2-6.2-16.4 0-22.6l196.7-196.7-196.7-196.7c-6.2-6.2-6.2-16.4 0-22.6 6.2-6.2 16.4-6.2 22.6 0l196.7 196.7 196.7-196.7Z" }));
227
+ export const Xmark = memo(_Xmark);
228
+ Xmark.displayName = "Xmark";
@@ -0,0 +1,32 @@
1
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { memo } from "react";
3
+ const _Avalanche = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 300 300", ...props, children: _jsxs("g", { fill: "none", fillRule: "evenodd", children: [_jsx("path", { fill: "#FFF", fillRule: "nonzero", d: "M57.224 51.332h185.353v168.575H57.224z" }), _jsx("path", { d: "M300 150c0 82.844-67.156 150-150 150C67.157 300 0 232.844 0 150 0 67.157 67.157 0 150 0c82.844 0 150 67.157 150 150Zm-192.506 59.692h-29.11c-6.118 0-9.14 0-10.981-1.178-1.99-1.29-3.206-3.427-3.354-5.786-.11-2.173 1.4-4.827 4.422-10.134L140.35 65.9c3.059-5.38 4.606-8.07 6.56-9.065a7.416 7.416 0 0 1 6.706 0c1.953.995 3.5 3.685 6.559 9.065l14.777 25.795.075.131c3.303 5.772 4.979 8.699 5.71 11.77.81 3.354.81 6.891 0 10.245-.737 3.095-2.395 6.043-5.749 11.902l-37.755 66.742-.098.17c-3.325 5.82-5.01 8.77-7.346 10.994a21.977 21.977 0 0 1-8.954 5.198c-3.059.846-6.486.846-13.34.846Zm73.515 0h41.712c6.154 0 9.25 0 11.093-1.214a7.374 7.374 0 0 0 3.354-5.822c.106-2.103-1.372-4.654-4.269-9.652-.1-.17-.2-.343-.301-.52l-20.894-35.743-.238-.402c-2.936-4.965-4.418-7.473-6.322-8.442a7.337 7.337 0 0 0-6.669 0c-1.916.995-3.464 3.611-6.522 8.88l-20.82 35.745-.071.123c-3.048 5.26-4.571 7.89-4.461 10.047.147 2.359 1.363 4.532 3.353 5.822 1.806 1.178 4.9 1.178 11.055 1.178Z", fill: "#E84142" })] }) }));
4
+ export const Avalanche = memo(_Avalanche);
5
+ Avalanche.displayName = "Avalanche";
6
+ const _Bitcoin = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 300 300", ...props, children: _jsxs("g", { fillRule: "nonzero", fill: "none", children: [_jsx("path", { d: "M295.512 186.286C275.476 266.644 194.077 315.548 113.7 295.509 33.358 275.476-15.552 194.081 4.493 113.73 24.52 33.364 105.919-15.544 186.27 4.49c80.37 20.033 129.278 101.437 109.24 181.798l.001-.001Z", fill: "#F7931A" }), _jsx("path", { d: "M215.624 128.382c2.995-19.965-12.253-30.697-33.105-37.856l6.764-27.043-16.515-4.102-6.585 26.331c-4.342-1.08-8.801-2.096-13.233-3.104l6.633-26.506L143.078 52l-6.768 27.035c-3.593-.815-7.122-1.621-10.546-2.47l.019-.086-22.775-5.669-4.394 17.583s12.253 2.8 11.995 2.972c6.688 1.664 7.898 6.077 7.697 9.575l-7.706 30.809c.46.117 1.058.285 1.717.55-.55-.137-1.137-.286-1.745-.431l-10.8 43.16c-.818 2.024-2.893 5.064-7.568 3.91.165.239-12.004-2.986-12.004-2.986L72 194.796l21.492 5.34c3.999 1 7.917 2.046 11.775 3.029l-6.834 27.354 16.497 4.102 6.768-27.064c4.507 1.22 8.88 2.345 13.162 3.405l-6.746 26.936L144.631 242l6.833-27.303c28.163 5.313 49.34 3.171 58.252-22.22 7.183-20.442-.357-32.234-15.173-39.923 10.791-2.48 18.92-9.556 21.087-24.17l-.005-.004-.001.002Zm-37.735 52.742c-5.104 20.443-39.634 9.392-50.83 6.621l9.07-36.239c11.194 2.786 47.095 8.299 41.761 29.618Zm5.108-53.038c-4.656 18.594-33.396 9.147-42.72 6.83l8.223-32.866c9.323 2.316 39.347 6.64 34.499 26.036h-.002Z", fill: "#FFF" })] }) }));
7
+ export const Bitcoin = memo(_Bitcoin);
8
+ Bitcoin.displayName = "Bitcoin";
9
+ const _BitcoinCash = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 300 300", ...props, children: _jsxs("g", { fillRule: "nonzero", fill: "none", children: [_jsx("circle", { fill: "#0AC18E", cx: "150", cy: "150", r: "150" }), _jsx("path", { d: "M196.79 99.632c-7.539-17.094-24.861-20.749-46.067-17.208l-6.814-26.421-16.066 4.15 6.7 26.344c-4.226 1.066-8.566 1.98-12.868 3.198l-6.7-26.192-16.066 4.15 6.814 26.42c-3.464.99-32.436 8.414-32.436 8.414l4.416 17.208s11.802-3.312 11.688-3.045c6.548-1.713 9.632 1.56 11.079 4.644l18.73 72.412c.229 2.093-.152 5.672-4.644 6.89.266.153-11.688 3.008-11.688 3.008l1.751 20.064s28.706-7.348 32.475-8.3l6.89 26.726 16.067-4.15-6.891-26.916a457.34 457.34 0 0 0 12.906-3.198l6.853 26.764 16.066-4.15-6.891-26.688c24.746-6.015 42.22-21.624 38.642-45.495-2.284-14.39-18.008-26.192-31.066-27.525 8.033-7.12 12.107-17.513 7.12-31.104Zm-7.73 63.008c3.199 23.642-29.656 26.535-40.507 29.39l-9.441-35.368c10.888-2.855 44.543-14.847 49.949 5.978Zm-19.796-48.16c3.388 21.015-24.708 23.451-33.77 25.774l-8.603-32.094c9.099-2.246 35.482-13.135 42.373 6.32Z", fill: "#FFF" })] }) }));
10
+ export const BitcoinCash = memo(_BitcoinCash);
11
+ BitcoinCash.displayName = "BitcoinCash";
12
+ const _BinanceSmartChain = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 300 300", ...props, children: _jsxs("g", { fill: "none", fillRule: "evenodd", children: [_jsx("path", { d: "M150 0c82.849 0 150 67.151 150 150s-67.151 150-150 150S0 232.849 0 150 67.151 0 150 0Z", fill: "#F0B90B" }), _jsx("path", { d: "m82.44 150 .108 39.663 33.702 19.832v23.221l-53.425-31.334v-62.98L82.44 150Zm0-39.663v23.113l-19.627-11.611V98.726l19.627-11.61 19.723 11.61-19.723 11.61Zm47.885-11.611 19.627-11.61 19.723 11.61-19.723 11.61-19.627-11.61Z", fill: "#FFF", fillRule: "nonzero" }), _jsx("path", { d: "M96.623 181.442v-23.22l19.627 11.61v23.113l-19.627-11.503Zm33.702 36.37 19.627 11.611 19.723-11.61v23.112l-19.723 11.611-19.627-11.61v-23.113Zm67.5-119.086 19.627-11.61 19.723 11.61v23.113l-19.723 11.61v-23.112l-19.627-11.611Zm19.627 90.937L217.56 150l19.627-11.61v62.98l-53.425 31.334v-23.22l33.69-19.82Z", fill: "#FFF", fillRule: "nonzero" }), _jsx("path", { fill: "#FFF", fillRule: "nonzero", d: "m203.377 181.442-19.627 11.503v-23.113l19.627-11.611z" }), _jsx("path", { d: "m203.377 118.558.109 23.22-33.798 19.833v39.76l-19.628 11.502-19.627-11.503v-39.76L96.635 141.78v-23.221l19.711-11.61 33.594 19.927 33.798-19.928 19.724 11.61h-.085ZM96.623 78.906l53.329-31.442 53.425 31.442-19.627 11.61-33.798-19.927-33.702 19.928-19.627-11.61Z", fill: "#FFF", fillRule: "nonzero" })] }) }));
13
+ export const BinanceSmartChain = memo(_BinanceSmartChain);
14
+ BinanceSmartChain.displayName = "BinanceSmartChain";
15
+ const _Cosmos = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 300 300", fill: "none", ...props, children: _jsxs("g", { fill: "none", fillRule: "evenodd", children: [_jsx("path", { d: "M150 0c82.842 0 150 67.157 150 150 0 82.842-67.158 150-150 150C67.157 300 0 232.842 0 150 0 67.157 67.157 0 150 0Z", fill: "#171717" }), _jsx("path", { d: "M149.711 63.461c47.794 0 86.538 38.745 86.538 86.539 0 47.793-38.744 86.538-86.538 86.538S63.173 197.793 63.173 150c0-47.794 38.744-86.539 86.538-86.539Z", fill: "#000" }), _jsx("path", { d: "M152.356 25.657c-1.192-1.097-1.807-1.118-1.91-1.118-.104 0-.719.02-1.91 1.117-1.223 1.126-2.685 3.068-4.26 6.065-3.145 5.981-6.154 15.022-8.749 26.688-2.917 13.118-5.221 29.153-6.675 47.102a547.027 547.027 0 0 1 21.592 11.06 547.203 547.203 0 0 1 21.596-11.062c-1.454-17.948-3.759-33.982-6.676-47.1-2.594-11.666-5.603-20.707-8.748-26.688-1.575-2.997-3.037-4.939-4.26-6.064Zm-8.059 94.28a539.2 539.2 0 0 0-15.915-8.126 538.369 538.369 0 0 0-.916 17.838 598.511 598.511 0 0 1 16.831-9.711Zm-21.112-17.124c4.215-49.22 14.831-84.144 27.26-84.144 12.43 0 23.046 34.923 27.261 84.142 44.759-20.96 80.33-29.234 86.545-18.476 6.214 10.757-18.742 37.407-59.285 65.665 40.543 28.257 65.5 54.907 59.285 65.664-6.215 10.758-41.786 2.484-86.545-18.476-4.215 49.219-14.83 84.143-27.26 84.143-12.43 0-23.046-34.925-27.26-84.145-44.76 20.962-80.334 29.236-86.549 18.478-6.215-10.757 18.741-37.407 59.285-65.664-40.544-28.258-65.5-54.907-59.285-65.665 6.215-10.758 41.788-2.484 86.548 18.478Zm-22.09 43.63c-14.828-10.234-27.572-20.247-37.482-29.331-8.812-8.078-15.142-15.204-18.753-20.916-1.81-2.862-2.761-5.098-3.125-6.719-.354-1.578-.065-2.119-.014-2.205.05-.088.375-.61 1.922-1.093 1.588-.496 4.002-.79 7.388-.656 6.756.27 16.096 2.185 27.503 5.773 12.827 4.035 27.874 10.057 44.156 17.773a546.306 546.306 0 0 0-1.212 24.215 546.612 546.612 0 0 0-20.383 13.16Zm0 7.113c-14.828 10.234-27.572 20.247-37.482 29.331-8.812 8.078-15.142 15.204-18.753 20.916-1.81 2.862-2.761 5.098-3.125 6.719-.354 1.578-.065 2.119-.014 2.206.05.087.375.609 1.922 1.092 1.588.496 4.002.79 7.388.656 6.756-.27 16.096-2.185 27.503-5.773 12.827-4.035 27.874-10.057 44.156-17.773a546.32 546.32 0 0 1-1.212-24.215 546.24 546.24 0 0 1-20.383-13.159Zm20.227 6.156A539.257 539.257 0 0 1 106.32 150a539.255 539.255 0 0 1 15.003-9.713 596.383 596.383 0 0 0 0 19.425Zm5.943 3.66a589.174 589.174 0 0 1 0-26.746 589.299 589.299 0 0 1 23.179-13.373 589.474 589.474 0 0 1 23.182 13.376 588.95 588.95 0 0 1 0 26.742 589.414 589.414 0 0 1-23.182 13.375 589.48 589.48 0 0 1-23.179-13.373Zm.201 6.978c.207 5.95.512 11.898.916 17.838a539.913 539.913 0 0 0 15.915-8.127 598.509 598.509 0 0 1-16.83-9.71Zm22.978 13.078a546.615 546.615 0 0 1-21.593 11.06c1.455 17.95 3.76 33.984 6.676 47.102 2.595 11.666 5.604 20.707 8.748 26.688 1.576 2.997 3.038 4.939 4.261 6.064 1.191 1.097 1.806 1.118 1.91 1.118.103 0 .718-.02 1.91-1.118 1.223-1.125 2.685-3.067 4.26-6.064 3.145-5.981 6.154-15.022 8.748-26.688 2.917-13.118 5.222-29.152 6.676-47.1a546.792 546.792 0 0 1-21.596-11.062Zm27.758 7.504c16.28 7.715 31.326 13.737 44.152 17.77 11.407 3.589 20.747 5.505 27.503 5.774 3.385.135 5.8-.16 7.388-.656 1.547-.483 1.872-1.005 1.922-1.092.05-.087.34-.627-.014-2.206-.364-1.62-1.316-3.857-3.125-6.719-3.61-5.712-9.94-12.838-18.753-20.916-9.91-9.084-22.654-19.097-37.482-29.331a546.52 546.52 0 0 1-20.38 13.157 546.035 546.035 0 0 1-1.211 24.219Zm21.59-44.489c14.83-10.234 27.573-20.247 37.483-29.331 8.812-8.078 15.142-15.204 18.753-20.916 1.81-2.862 2.761-5.098 3.125-6.719.354-1.579.064-2.119.014-2.205-.05-.088-.375-.61-1.922-1.093-1.588-.496-4.003-.79-7.388-.656-6.756.27-16.096 2.185-27.503 5.773-12.826 4.035-27.872 10.056-44.152 17.771.567 7.778.976 15.877 1.212 24.219a546.893 546.893 0 0 1 20.379 13.157Zm-20.223-6.154a538.957 538.957 0 0 1 15 9.71 538.962 538.962 0 0 1-15 9.71c.105-6.472.105-12.947 0-19.42Zm-6.144-10.638c-.206-5.952-.511-11.9-.915-17.842a539.434 539.434 0 0 0-15.92 8.129 595.875 595.875 0 0 1 16.835 9.713Zm-.915 58.539a539.434 539.434 0 0 1-15.92-8.129 595.875 595.875 0 0 0 16.835-9.713c-.206 5.952-.511 11.9-.915 17.842Z", fill: "#FFF", opacity: ".67" }), _jsx("path", { d: "M66.504 113.221c5.1 0 9.235 4.137 9.235 9.24 0 5.102-4.135 9.24-9.235 9.24s-9.235-4.138-9.235-9.24c0-5.103 4.134-9.24 9.235-9.24Zm146.777-31.64a9.24 9.24 0 1 1 0 18.48 9.24 9.24 0 0 1 0-18.48Zm-81.445 145.023c5.103 0 9.24 4.135 9.24 9.235s-4.137 9.235-9.24 9.235c-5.104 0-9.24-4.134-9.24-9.235 0-5.1 4.136-9.235 9.24-9.235Zm18.095-92.316c8.64 0 15.643 7.004 15.643 15.643 0 8.64-7.003 15.643-15.643 15.643s-15.643-7.003-15.643-15.643 7.004-15.643 15.643-15.643Z", fill: "#FFF" })] }) }));
16
+ export const Cosmos = memo(_Cosmos);
17
+ Cosmos.displayName = "Cosmos";
18
+ const _Doge = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 300 300", fill: "none", ...props, children: _jsxs("g", { fill: "none", fillRule: "evenodd", children: [_jsx("circle", { fill: "#988430", fillRule: "nonzero", cx: "150", cy: "150", r: "150" }), _jsx("circle", { fill: "#7A6A2A", fillRule: "nonzero", cx: "150", cy: "150", r: "145.195" }), _jsx("circle", { fill: "#BA9F33", fillRule: "nonzero", cx: "150", cy: "150", r: "142.136" }), _jsx("path", { d: "M65.582 133.98c-.85-.775-1.747-1.553-2.572-2.329a241.465 241.465 0 0 0-2.524-2.33l-2.524-2.4c-.413-.412-.85-.775-1.263-1.19-.413-.363-.897-.776-1.31-1.14-3.35-3.18-6.72-6.359-10.024-9.54a1883.92 1883.92 0 0 1 10.195 9.418l1.189 1.19c.413.411.85.776 1.262 1.189l2.523 2.33c.85.776 1.676 1.553 2.525 2.4.85.846 1.675 1.625 2.525 2.4l-.002.003Zm-44.465-.48s12.184 1.262 18.131 2.111c5.509.778 22.742 3.423 22.742 3.423L21.117 133.5Zm0 0c3.422.292 6.845.655 10.267 1.02 1.747.17 3.422.363 5.098.533l2.57.293c.85.12 1.676.241 2.526.363l10.195 1.625 5.096.85c1.675.291 3.35.608 5.097.9-1.675-.17-3.422-.414-5.097-.657l-5.096-.728-10.195-1.504c-.85-.121-1.676-.293-2.525-.413l-2.573-.296c-1.675-.17-3.422-.412-5.098-.608-3.422-.41-6.844-.85-10.267-1.382l.002.005Zm39.66 8.708s-13.009 3.302-17.403 4.565c-4.32 1.189-17.403 5.17-17.403 5.17l34.805-9.733.002-.002Z", fill: "#CFB66C" }), _jsx("path", { d: "M60.776 142.208c-2.888.85-5.76 1.675-8.69 2.453l-8.69 2.33c-2.887.849-5.76 1.675-8.64 2.524l-4.32 1.189c-1.431.413-2.887.776-4.367 1.19 1.43-.48 2.888-.97 4.32-1.384l4.32-1.382c2.888-.9 5.76-1.749 8.64-2.646 2.936-.728 5.825-1.506 8.761-2.21 2.79-.704 5.728-1.406 8.666-2.062v-.002Zm-32.984 17.744c1.43-.534 17.936-8.227 21.771-10.024 1.92-.9 7.501-2.88 7.501-2.88l-29.272 12.904Z", fill: "#CFB66C" }), _jsx("path", { d: "M27.792 159.952c1.26-.48 2.451-1.067 3.664-1.626l3.592-1.675 7.21-3.47c2.4-1.141 4.732-2.4 7.208-3.472 1.262-.533 2.524-.97 3.785-1.383l1.92-.606c.655-.17 1.263-.365 1.92-.534-2.4 1.14-4.926 2.112-7.33 3.227-2.4 1.19-4.854 2.161-7.33 3.229l-7.33 3.227c-2.461.997-4.861 2.064-7.31 3.083h.001Zm1.6 6.72s14.95-8.762 20.096-11.578c2.694-1.504 11.408-5.825 11.408-5.825l-31.504 17.403Z", fill: "#CFB66C" }), _jsx("path", { d: "M29.394 166.675c2.523-1.553 5.096-3.131 7.668-4.733l3.84-2.33c1.31-.777 2.573-1.505 3.91-2.28 1.31-.778 2.572-1.554 3.906-2.282.636-.393 1.301-.733 1.99-1.02l2.04-1.019c2.694-1.31 5.388-2.646 8.228-3.787-2.573 1.627-5.22 3.011-7.864 4.442-1.31.728-2.646 1.384-3.957 2.112-1.31.728-2.573 1.505-3.909 2.21a90.143 90.143 0 0 1-3.907 2.207l-3.957 2.16-7.985 4.32h-.003Zm31.382-15.486s-9.296 7.136-12.306 9.417c-3.01 2.282-11.868 8.69-11.868 8.69l24.174-18.107Z", fill: "#CFB66C" }), _jsx("path", { fill: "#E2CC85", d: "m114.126 208.738-4.756-9.005 2.766-11.263 19.733-7.62-8.399-17.232 4.151-17.404 7.792-15.584 24.078-3.785 17.693-16.869 38.205 2.888 7.499 40.85-14.442 51.432-8.227 26.627-33.35 1.262-15.485-10.728-18.131-7.574z" }), _jsx("path", { d: "M172.622 208.446s-4.612 2.112-12.48 1.626c-2.276-3.058-18.222-4.49-18.222-4.49s-1.99-.606-5.51.85c-3.543 1.44-6.893 1.262-10.024 2.038-3.132.776-6.24-3.3-8.64-4.15-2.4-.898-5.583-3.058-5.583-3.058l-6.72-.656-13.494-5.704-21.439-21.358-5.825 9.12-1.797 11.286 6.482 13.375 17.45 15.897 34.03 8.64 20.17-5.942 25.266-10.68 6.336-6.795v.001Z", fill: "#F1D789" }), _jsx("path", { fill: "#F4ECB4", d: "m51.723 132.962 4.32-13.082 5.147-8.448 16.576-1.384-4.976 14.515-13.857 24.661 5.752 22.014-10.194 5.096-3.133-4.804-2.523-11.02-.169-12.379z" }), _jsx("path", { d: "m70.315 207.549-3.179-4.442s-.85-2.112-.363-3.957c.48-1.868.411-1.99.17-2.694-.242-.704-2.282-3.131-2.16-5.22.12-2.111-.17-2.815 1.382-4.489 1.625-1.625 1.14-4.441 1.14-4.441l2.113 1.31.48-.728s.776.606.776 1.554c.17-1.31-.535-7.38 1.067-8.762 1.601-1.382 4.441 6.48 4.441 6.48l-1.747-11.408-4.491-11.698-7.986-10.68-.48-11.772v-1.02s-3.665 5.632-4.684 10.08c-.728 3.058 1.019 6.772.656 11.165-.293 4.37-.656 4.029.41 5.76 1.068 1.731 3.666 5.291 2.647 7.864-.897 2.21-3.957.656-3.957.656s-.606 1.795-1.432 2.451c-.29-1.067-.606-1.747-1.188-2.4-.05.413-.17.972-.17.972s-.534-1.676-1.069-3.788c-.726-2.814-1.504-6.528-2.208-8.518-.291 1.14-1.019 4.611-1.019 4.611l.413 5.341 1.99 7.33 1.92 4.8 1.869 5.873 1.624 3.946 1.31 3.01 1.141 6.772 5.509 5.824 2.938 1.312 2.134-1.093.003-.001Z", fill: "#F3E19D" }), _jsx("path", { d: "M54.611 122.282s-3.957 6.72-5.096 13.494c-1.139 6.774-2.16 13.933-1.44 23.155.728 9.298 2.112 15 3.229 19.079 1.92 6.772 6.893 16.19 6.893 16.19l.17-.365a25.58 25.58 0 0 1-1.991-4.976c-.656-2.573-.9-5.63-1.506-7.014-.534-1.383-1.432-2.573-1.868-4.272-.413-1.626-.48-4.199-1.748-6.115-.534-.778-1.19-2.816-1.384-4.855-.243-3.059.122-6.481-.17-9.296-.534-4.685-.897-7.864-.412-10.317.485-2.452 3.011-9.416 4.565-14.95 1.019-3.544.411-6.53 2.28-9.613 1.869-3.057 3.011-5.752 3.422-7.62.48-1.7-4.95 7.475-4.95 7.475h.006Z", fill: "#F2E8B0" }), _jsx("path", { d: "M73.374 119.587s-2.038.608-3.01 1.675c-.97 1.02-1.383 1.87-2.694 3.592-1.31 1.724-1.384 3.132-2.452 5.292-1.068 2.112-3.423 5.29-3.714 6.432-.291 1.14-.776 6.48-1.382 9.004-.535 2.525.606 5.632.606 5.632l1.382-.292s0 1.796 1.384 3.01c1.383 1.19 1.626-4.03 1.626-4.03l5.17-17.45 7.79-5.292.85-4.272-5.559-3.3h.003Z", fill: "#F5EEC0" }), _jsx("path", { d: "M77.16 127.5s-3.666.242-5.46 1.554c-.729.533-1.02.97-1.796 1.626-1.432 1.189-2.89 2.282-3.592 3.84-.778 1.552-1.627 3.907-2.21 8.349-.243 1.869-.243 3.592-.412 5.097-.244 2.039-.607 3.664-.413 4.8.243 2.33 2.646 3.544 2.88 6.19l4.976-2.524 4.685-18.472 9.952-6.24-5.632-6.31-2.984 2.08.006.01Z", fill: "#E6DB9D" }), _jsx("path", { d: "m50.909 251.886.062-.552c.727-6.24.85-10.97 1.383-13.93.776-4.2 1.31-5.76 1.188-7.332-.17-2.523-.363-4.368-.12-6.31.364-2.573 2.888-5.63 2.816-7.743-.05-1.675-.899-2.766-1.627-3.785-.728-1.02-1.31-1.87-1.31-1.87s4.976-3.422 4.928-17.209c.101.029.2.07.291.122l2.451 6.965 1.675 2.038 6.432 11.99 8.277 8.036 12.232 8.227 7.67 8.347.777 22.258-10.024 13.01-1.642 2.972a142.578 142.578 0 0 1-35.46-25.235v.001Z", fill: "#E5CB7A" }), _jsx("path", { d: "M81.53 273.18s.17-2.767 2.45-4.564c.366.606.607 1.19.535 1.626.413-.727 3.301-5.388 9.83-6.602 6.53-1.189 8.108-5.946 8.108-5.946l13.857-12.596 15.85-14.588 19.272-6.772 9.006-2.21s.17.656-.17 2.112c1.674-.12 5.388-.97 9.247-2.33 1.554-.606 3.011-.85 3.787-.048 1.141 1.068 1.31 3.592 1.383 5.096 1.869-.412 4.029-2.208 5.76-2.038 2.768.291 5.219 3.544 8.035 3.544 3.714 0 5.387-2.282 7.986-4.078 1.553-1.068 3.785-2.4 5.048-3.301 3.01-2.21 34.854-11.943 34.854-11.943l11.165.728 1.797 11.99-.96 31.345c-.119.113-.237.232-.357.345l-50.765 26.514-70.368 10.787a141.138 141.138 0 0 1-44.986-15.473l-.36-1.6-.004.001Z", fill: "#D8C173" }), _jsx("path", { d: "M55.176 255.874c1-2.092 1.9-3.84 2.058-4.466.124 1.26.353 4.027.814 6.968a152.141 152.141 0 0 1-2.872-2.504v.002Z", fill: "#F1D789" }), _jsx("path", { d: "m106.58 285.371 9.1-2.531.776.243s.413.243.413 1.067c1.14-.654 2.112-.534 2.816-.97.363.777.726 3.35 2.33 3.665 1.673.365 3.47-.728 5.29-2.11 1.796-1.433 3.84-3.23 5.388-3.957a28.928 28.928 0 0 1 1.505 3.227c2.039-1.626 5.583-8.227 10.63-8.107a19.155 19.155 0 0 1 7.012-8.47c4.685-3.18 7.62-3.423 11.286-3.132a19.3 19.3 0 0 1 5.292-4.733c.606.243 2.281 1.263 4.37.291 2.111-.97 4.489-4.732 7.62-5.217a7.36 7.36 0 0 1 4.854 1.019s9.12-9.054 15.413-12.064c-.243-.728-.728-3.47 6.65-9.54.413.366.121 1.385.413 1.44.12 0 1.92-.775 4.198-2.524 2.816-2.11 6.189-4.32 8.227-4.926 3.84-1.141 7.914 1.188 7.914 1.188a3.648 3.648 0 0 1 1.14-.534c.97-.17 1.674-.291 2.209-.48-.048 1.262.656 3.422 0 5.291a11.8 11.8 0 0 0 2.4 1.02c-.412.897-1.31 3.179-2.815 4.271 1.261.607 1.43 1.31 3.227 1.92-.728 1.02-1.92 2.768-2.45 3.84-.535 1.141-2.454 5.874-3.303 7.67-.898 1.796-2.11 5.097-2.695 5.76-.584.662-2.694 3.47-4.32 4.852 1.44-.534 7.332-2.33 9.83-3.01-.743 1.092-4.514 6.687-8.14 12.068a142.422 142.422 0 0 1-116.592 13.497l.011-.024Z", fill: "#E0CD81" }), _jsx("path", { d: "M77.76 126.845s-2.11 0-2.523.291c-.413.291 2.112.9 2.888 1.19.776.292 2.451 1.626 2.888 2.695.413 1.019 15.17 6.965 15.17 6.965l10.436-.535 3.599-4.971-6.845-5.995 4.8-14.15-6.359 1.019-15.29 9.12-7.671 2.937-1.093 1.434Z", fill: "#DFC57C" }), _jsx("path", { d: "M100.68 131.53c.307.497.856.793 1.44.776 2.16 0 4.149.534 4.974 1.625 1.384 1.749 5.22 7.331 5.22 7.331l9.174 3.301.592-10.803-10.024-6.965-11.408 4.199v.534h.026l.006.002Z", fill: "#E5CC7C" }), _jsx("path", { d: "M98.88 135.534s1.674.122 3.786-.656c2.112-.777 5.582-2.45 7.088-1.795 2.11.898 1.673 3.714 3.956 6.24 1.383 1.554 3.908 1.506 5.34 3.181s6.358.898 6.358.898l1.869 10.08-7.5 9.612-2.452 11.941h-10.141l-9.264-3.675-4.563-11.04 2.281-11.165 3.242-13.62Z", fill: "#D2C281" }), _jsx("path", { d: "M118.496 136.02c.252.077.513.118.776.12-.291.244-.9.777-.656 2.16.243 1.385 1.02 3.132.365 4.2.522.57.912 1.25 1.14 1.99.413 1.19.535 2.281 3.228 2.452a5.67 5.67 0 0 0-1.067.85s1.868 1.626 2.816 3.13c.97-.042 3.542-.842 3.542-.842l.534.365 1.141-.48s-1.067-.413-.291-3.01c.728-2.281 1.384-2.16 1.44-2.33.056-.169.534-2.572.534-3.543.364-1.261.655-5.096.655-5.096l-.776-8.47-4.368-2.647-3.552-3.429-3.35 6.31-2.207 2.2-.17 5.461.266.608Z", fill: "#E2C270" }), _jsx("path", { d: "M129.005 128.933s.776 2.208 1.069 3.907c.103-.33.16-.673.17-1.02 0 0 .606 3.351.726 4.735.243-.05.48-.121.534.12.054.242.608 2.938.48 4.442a12.104 12.104 0 0 1 4.077-4.077c.971-.608 2.112-1.262 3.302-1.312 1.869-.048 3.227 1.19 5.461 1.19 5.387 0 10.267-3.956 13.86-5.17 2.644-.898 4.926-1.553 6.527-3.01.778-.655 2.162-2.11 3.423-4.272 1.675-2.88 3.422-5.388 5.17-5.703-.79.146-1.595.202-2.4.17 0 0 .535-.535 1.44-1.263.906-.728 1.991-1.625 3.543-1.625 2.768 0 4.15.411 5.704.411 1.554-.048 2.451-.411 2.451-.411s1.628 1.14 5.292 1.14c3.665.049 6.116.364 8.035.535 1.918.171 8.349-.534 10.193-.48a8.931 8.931 0 0 1 3.472.85l-5.947-17.28-21.363-18.672-12.718 9.004-19.565 19.564-18.931 7.014-3.957 4.442v6.77h-.048Z", fill: "#CCB360" }), _jsx("path", { d: "M171.482 119.029s.534-.533 1.43-1.261c.896-.728 1.992-1.627 3.544-1.627 2.766 0 4.15.413 5.704.413 1.554-.048 2.451-.413 2.451-.413s1.629 1.139 5.291 1.139c3.666.048 6.117.363 8.036.533 1.918.17 8.348-.533 10.193-.48a8.885 8.885 0 0 1 3.47.85l-2.694-7.793-3.13-5.945-8.932-9.783-10.802-6.358c-.048-.048-3.713-1.02-3.713-1.02l-9.71 5.874-8.809 22.792-.17 4.8 5.703 2.695c1.432-2.4 3.011-4.32 4.491-4.563-1.336.145-2.355.145-2.355.145l.002.002Z", fill: "#D5B457" }), _jsx("path", { d: "M171.36 120.656c-.85.048-1.552-.122-1.747-.728-.728-2.038-1.31-2.33-1.92-2.33-.61 0-1.432 1.31-1.92 1.43-.488.12-1.067-1.503-1.067-1.503l-.535-.243s-3.131 2.038-5.339 4.441c-2.208 2.403-5.826 6.482-7.451 7.208-1.626.727-7.21.971-9.12 1.384-1.91.413-4.029 1.797-4.32 2.112-.291.315.851.655 1.02.97.17.291-1.87.17-2.04.48-.12.243.48 1.625.778 2.33.521-.26 1.092-.4 1.674-.413 1.869-.048 3.229 1.19 5.46 1.19 5.39 0 10.268-3.957 13.86-5.171 2.646-.898 4.928-1.554 6.53-3.01.775-.654 2.16-2.112 3.422-4.272.921-1.48 1.82-2.864 2.72-3.883l-.005.008Z", fill: "#D2B257" }), _jsx("path", { d: "M94.08 240.778s-.48-1.797-4.928-6.432c-1.262-1.31-2.038-2.4-2.888-3.18-2.112-1.992-3.35-2.524-4.854-3.665-3.301-2.451-6.893-2.451-9.66-5.461-2.766-3.01-5.99-8.76-8.23-14.637-2.208-5.873-2.816-7.742-2.816-7.912 0-.17.608-1.31 1.384-1.14.776.169.776 1.673.971 2.038.387.595.825 1.155 1.31 1.673 1.141 1.312 2.767 2.88 3.593 5.22-.17-1.99-.85-4.199-.85-4.199s4.272 2.695 7.912 5.509c3.666 2.816 5.17 3.787 6.24 5.582 1.07 1.796 3.592 6.53 4.8 7.914 1.208 1.384 17.76 6.602 17.76 6.602l7.874 5.87 3.908 8.568-3.059 4.8-5.873 1.262-9.54-4.272-3.054-4.142v.002Z", fill: "#D2B159" }), _jsx("path", { d: "M72.888 211.262s1.99 3.18 6.845 6.19c4.37 2.646 11.286 5.049 17.453 6.48 3.542.85 7.086 1.505 10.265 1.554 8.568.12 14.466-2.33 21.773-3.13 3.957-.414 8.811-.729 13.86-1.92 6.48-1.554 10.314-3.303 15.534-5.76 3.785-1.748 7.257-3.058 10.072-4.734 3.956-2.33 6.844-4.926 10.195-5.702-.413 1.14-.85 3.18-4.15 5.291 1.747-.05 4.15-.17 4.15-.17s-2.33 1.383-6.432 4.49c-2.525 1.92-5.874 5.17-9.296 7.33-2.21 1.384-4.613 2.4-6.19 3.229-3.84 2.112-5.39 3.179-7.913 5.76.898-.048.972 0 .972 0s-3.181.412-5.461 1.625c-.48 0-1.312-.17-2.768.243-1.141.364-2.647 1.19-4.199 1.626-2.21.656-2.936.365-2.936.365l.364.728s-2.88-.05-3.84.048c.17.048.121.121.121.121a1.474 1.474 0 0 0-.48.17c-.462.3-.97.52-1.504.654-.291.048-.534.048-.899.122.122.291 1.069 1.92 1.506 2.88-.364.243-5.826 4.37-5.826 4.37.17.266.308.551.413.85.17.532.243 1.31.413 1.673.41.728.654.85.654.85s-.654.121-1.797.412c-.97.243-2.16.655-3.84.898a15.22 15.22 0 0 1-1.553.121c.243.535 1.31 2.573-.656 4.927-1.967 2.353-2.573 2.696-3.18 4.2a6.51 6.51 0 0 0-.97-.608c-.655-.291-1.554-.727-1.87-1.31-.183.777-.427 1.54-.728 2.281-.606 1.626-1.504 3.229-1.673 4.442-.656-.728-1.869-2.16-3.544-1.87-1.675.292-3.01 2.574-3.301 3.23 0-.413-.291-.728-.363-.244-.05.535-.971 6.116-6.117 10.63-.048-1.14-.048-3.665-.17-4.489-.48.48-1.067 1.189-4.563 2.695-3.422 1.504-2.88 3.01-2.88 3.01s-.291-2.4 1.554-4.929c1.869-2.523 3.01-3.713 3.01-3.907a1.08 1.08 0 0 0-.244-.534c-.243-.244-.728-.535-.728-.728.291-.12 3.18-1.504 3.01-4.37-.17-2.571-1.261-3.907-2.039-4.853-.12-.121 1.143-1.019.972-1.31-.122-.17-1.674-1.312-1.87-1.92.047-.363.128-.72.244-1.067.17-.535.291-.9.243-1.263-.121-.606-.777-2.281-.971-2.451.17.048 1.382 0 1.382 0s-.97-1.554-1.14-2.282c-.172-.728-.535-2.646-.728-3.01.412.049 1.432.12 1.432 0 .05-.364-.898-.97-.48-1.44.29.049.85.292 1.382.972-.291-.778-.776-2.282-1.797-2.888.48-.17 2.112-.608 3.544.242s1.92 2.038 1.92 2.038.85.656 2.162 1.627c1.504 1.189 3.42 2.88 6.48 4.077.656.365 2.33.365 3.544.122a5.45 5.45 0 0 0 1.504-.607c.169-.1.348-.181.534-.243a11.634 11.634 0 0 0-.897-1.506c.412 0 .897.05.897.05s.291-.656-1.019-1.92c.291-.291.656-.48.656-.971-.413-.048-1.14-.655-1.31-.898.241-.17.606-.728 1.019-.897-.365-.292-1.263-1.506-1.675-1.626a7.63 7.63 0 0 0 1.14-.534s-2.038-.535-2.694-.972c-.656-.48-1.626-1.31-2.208-1.553-.608-.243-1.675-.363-2.112-.85.411.122 1.067 0 1.554 0 .363 0 .534.048.654.048-.048-.17-.048-.534.9-.654a4.434 4.434 0 0 0 1.31-.413s-.9-.048-1.92-1.02c-1.021-.97-1.87-1.746-2.452-1.868-.606-.122-1.747.413-2.45.363-.972-.12-1.385-.606-1.385-.606s-3.227.291-10.387-4.077c-6.19-3.787-8.885-7.136-8.885-7.136-.58-.21-1.14-.47-1.673-.778-2.33-1.212-5.559-3.737-5.461-7.04l-.013.024Z", fill: "#C2A44D" }), _jsx("path", { d: "M162.184 65.582a3.15 3.15 0 0 1 1.44.972c1.14 1.31 1.869 3.785-.728 6.432 1.02.363 1.44.48 2.33.363-.898 1.069-2.936 3.35-3.058 5.34-.122 1.626.898 2.113.898 2.113s-1.554 1.795-1.626 4.8a19.45 19.45 0 0 1 2.4-2.282c1.797-1.432 4.272-3.058 5.947-4.077-.023.427.035.855.17 1.261 0 0 3.13-2.573 5.76-1.43 1.189.534.654 2.208.654 2.208s1.627-.607 2.768.534c1.141 1.14 2.754 4.083 3.581 5.224.363.534 1.31 1.554 2.28 3.131a39.605 39.605 0 0 1 3.302 6.965c.048-1.262.364-3.227 3.957-1.99 3.592 1.262 7.669 3.908 11.091 9.12 3.423 5.21 4.27 11.094 5.994 13.334 1.747 2.16 3.544 5.752 3.666 7.258.121 1.505-.535 6.358 3.057 19.49 1.02-4.078 2.573-13.132 2.573-13.132l.85-7.986.97-24.708-25.8-21.436-20.17-14.636-13.132 1.262.824 1.869.002.001Z", fill: "#CAA13E" }), _jsx("path", { d: "M210.122 102.354s-.365-2.4-6.432-6.48c-6.07-4.03-10.802-4.03-15.17-7.452-3.35-2.694-6.845-8.884-9.12-10.923-2.21-2.014-2.573-7.84-2.573-7.84l7.451-6.24 11.082-16.017 9.368-10.316 4.49 6.24 6.24 7.33 3.47 14.709 1.262 21.53-10.08 15.46.012-.001Z", fill: "#B59544" }), _jsx("path", { d: "M217.622 128.16a27.36 27.36 0 0 0-1.19-9.66c-1.6-4.975-5.096-13.81-6.72-17.12-.656-3.665-.17-3.956.534-4.369.704-.413 3.35-1.92 4.8-7.208 1.45-5.288 5.948-5.46 5.948-5.46l2.766-2.039 4.2 10.509 3.664 9.491 1.14 7.258.85 6.188-1.99 13.084-9.829 8.883-4.174-9.557h.001Z", fill: "#C89D3A" }), _jsx("path", { d: "M80.462 273.982v-.268c.205-.128.385-.29.533-.48.17-.244.293-.535.413-.607.243-.121 1.384-.48 1.99-.365.607.116 2.21.776 3.06.728 1.747-.048 3.785-1.384 7.014-.776 4.854.898 5.995 4.199 8.811 6.068 1.92 1.312 3.907.728 4.199.728h.654c.122 0 1.02-1.02 1.506-.97.97.048 1.067.85 1.673.898 1.432.17 4.2-.728 5.584-.364.833.261 1.486.913 1.747 1.746.292.898.048 2.038-.656 2.694-1.504 1.383-2.936 2.695-3.227 3.84.37.283.726.584 1.066.903a141.304 141.304 0 0 1-34.367-13.76v-.015Z", fill: "#CEB052" }), _jsx("path", { d: "M209.709 225.486s3.785-5.048 5.097-7.548c1.31-2.578-4.15-35.218-4.15-35.218l10.971-35.946-.293-11.699s.535-10.801 1.797-15.486c1.506 2.694 6.19 5.947 7.21 7.67.48-3.302 2.11-10.267 1.869-17.694.897 1.382 3.057 15.291 3.057 15.291l2.16 9.368 2.816 9.952 3.131 10.51 1.87 7.258 1.066 1.747.9 3.058.85 3.302 2.45 7.743 1.44 6.358 1.141 11.53c.248.882.427 1.783.535 2.694.048 1.262-.17 1.99-.17 2.21 0 .219.413 2.766.243 4.684-.243 1.92-.243 3.423-1.749 4.8-1.505 1.378-2.45 9.612-2.45 9.612l-2.695-1.796s.534-2.452-.728-4.684c-1.263-2.232-3.714-2.695-5.098-2.33-1.382.291-4.149.726-5.048 1.504-.85.776-2.936 3.18-4.854 4.272-2.4 1.44-6.31 1.554-8.397 2.038-2.112.48-4.442 1.92-6.894 3.592a38.493 38.493 0 0 1-6.068 3.2l-.01.008Z", fill: "#CCA847" }), _jsx("path", { d: "M209.709 278.52s.16.104.469.274a142.56 142.56 0 0 0 45.44-33.68c-.14-4.912-.32-9.948-.519-11.813-.411-3.957-.12-7.986-.241-10.315-.122-2.33-1.432-11.821-2.039-14.272-.656-2.452-1.92-3.666-2.112-3.666-.17.05-1.19 4.613-1.19 5.76 0 1.147-.243 3.909-.243 4.613-.17-.05-.242-.48-.242-.656-.243.606-.534 1.675-.656 1.797-.122.121.17-1.02 0-1.263-.17-.243-.48-.121-.413-.728.029-.36.086-.716.17-1.067 0 0-.728 1.067-1.261 3.786-.534 2.694-.534 2.768-.728 3.01-.17.292-1.14 1.262-1.19 1.626-.048.655.899 1.31.97 1.674.049.608-.849 3.422-1.14 4.8-.291 1.378-.17 4.077-.48 5.46-.243 1.263-.48 1.991-1.31 2.524.606.122 1.188.291 1.188.291s.85 3.592-1.31 6.651c-.776 1.068-.97 1.554-1.795 2.525-1.627 1.795-2.89 3.84-3.011 5.17a8.685 8.685 0 0 1-.17-1.19s-2.523 2.937-3.592 4.612c-1.382 2.16-3.3 2.039-3.84 2.573-.54.534-.656 1.504-.48 2.282-.48.12-1.382.29-1.99 2.16-.292.97-1.02 1.92-2.16 2.572-1.141.653-2.525.85-3.23 1.02.607.17.85.17 1.142.363-.364.606-2.039 1.553-3.908 2.768-1.868 1.14-2.768 2.814-3.228 3.907-.48 1.02-1.19 1.675-2.33 1.797.48.291 1.19.97 1.554 1.189-.535.121-1.44.121-3.058 1.505-1.7 1.408-2.282 1.821-3.06 1.943l-.007-.002Z", fill: "#C39D3C" }), _jsx("path", { d: "M175.936 289.768a13.726 13.726 0 0 1 2.997-1.589c3.785-1.504 7.79-1.795 9.368-2.28 1.505-.48 2.694-1.142 4.563-1.505-.05.425-.091.825-.136 1.203a141.451 141.451 0 0 1-16.8 4.171h.008Z", fill: "#D2BA6B" }), _jsx("path", { d: "M245.76 190.195s-.776 4.199-2.16 6.845c-1.384 2.646-2.88 6.31-2.88 6.31.01-.825.107-1.648.291-2.452-1.747 1.019-5.995 3.472-7.2 4.563-1.14 1.019-3.059 2.816-3.544 3.665 1.141-3.348 2.33-6.358 2.525-7.742-1.747 1.262-9.904 7.986-14.15 12.427l-13.23 10.704a45.782 45.782 0 0 1-4.708 2.205c-2.28.97-4.974 1.795-6.965 2.573.535-1.432 1.383-2.696 2.573-3.909 1.262-1.189 5.048-5.291 5.63-7.2.535-1.99.656-3.18-.048-4.854-.656.17-2.16.243-3.179.534-1.019.291-2.112 1.382-2.112 1.382s.776-4.441 2.451-8.64c-1.262.048-3.422.412-3.422.412s3.01-5.048 8.16-8.567a26.54 26.54 0 0 0-4.611 1.43c-3.01 1.263-6.31 3.132-8.762 4.151 1.383-1.92 11.091-15.776 16.869-28.69 5.76-12.888 7.912-16.188 9.174-23.105.655-3.423.48-8.48.655-13.01.17-4.491.728-8.52.365-11.214 1.504 1.869 7.136 7.136 7.33 18.909.169 11.77-5.388 27.67-11.287 36.236 1.44.413 5.171.9 9.005-5.76 3.833-6.659 3.787-8.518 5.17-11.286.17 1.384.12 1.869.12 1.869s5.585-6.771 8.23-15.291c.534 3.665 2.112 6.894-.365 13.617-2.208 6.067-5.096 7.549-5.096 7.549s1.432-.243 3.542-1.506c.365.898.293 1.92.9 2.282.606.362 1.431.971 1.553 1.554.654-.972 1.674-2.21 1.99-3.132-.243 1.92-.412 10.316.48 14.588 1.87-.17 3.788-.292 5.098-3.666-.898 3.302-.898 5.291-.291 8.107.995-.678 1.893-1.893 1.893-1.893l.006.005Z", fill: "#C0993A" }), _jsx("path", { d: "M182.694 56.408s-1.868.776-5.048.776c-2.766 0-1.99-1.067-6.31-1.067-6.65 0-29.878 3.84-33.957 3.785-2.646-.048 8.931 1.141 8.931 1.141l29.59.413 5.945-.48 2.21-4.496-1.36-.072Z", fill: "#A88F33" }), _jsx("path", { d: "M105.971 114.248s-3.787 2.888-5.389 5.098c-1.601 2.21-2.45 3.664-4.272 5.46.428.017.855-.04 1.263-.17 0 0 0 .48-.291.607.51-.057 1.017.12 1.382.48-.534.291-1.99 1.749-.85 3.472.85 1.31 2.647 1.43 2.647 1.43s-.413 1.191 1.31 1.07c3.714-.17 7.864-1.797 9.781-1.385 1.92.48 3.011.656 4.37 3.012 1.44 2.33 2.694 2.694 2.694 2.694s.85-2.162.656-5.389a16.026 16.026 0 0 0 1.14-5.46l-1.262-9.297-5.508-6.966-7.136 3.957-.535 1.382v.005Z", fill: "#E3C571" }), _jsx("path", { d: "M112.742 112.864s.535 1.262 2.768 1.382c-.243.535-.243.608-.17 1.02l.12 1.019c.247-.12.469-.282.657-.48.121.534-.122 1.382 0 1.99.075.37.197.729.363 1.067.035-.083.076-.163.122-.241.048-.122.48 1.31 1.675 2.4a.995.995 0 0 1 .12-.48c.018.304.119.598.291.85a.886.886 0 0 1-.242-.17s.12 3.84.776 5.825c.11-.128.208-.266.292-.412 0-.12-.048 1.068-.17 1.92-.17.85-.048 2.038-.048 2.038a6.37 6.37 0 0 1 1.43-.85c.728-.292 1.92-1.19 2.647-3.18.421-1.128.746-2.289.971-3.47.235.451.397.937.48 1.44.05.606 1.19.29 1.19.29l.244-2.646 1.44-5.995 1.31-3.714 6.31-9.829 11.402-8.78 9.952 2.281 8.397-11.408-14.466-8.69-13.69 1.433-12.423 17.208-9.95 15.608-1.798 2.572v.002Z", fill: "#D8B65B" }), _jsx("path", { d: "M184.442 87.962s-.85.17-3.301 1.44-4.15 1.673-5.098 3.542c-.947 1.869-1.019 3.35-1.019 3.35s1.675-.728 2.646-.97c1.02-.242 2.16-.17 2.039.242a2.814 2.814 0 0 1-.48.776s1.92-.048 1.869.9c-.052.947-.364 1.99-.727 2.45-.365.48-1.869 1.191-2.038 1.75-.413 1.14.17 1.188-.05 2.11-.17.9-.97 2.646-3.592 5.704-2.694 3.06-3.84 5.22-3.84 5.22s-1.31-2.452-1.99-4.564c-.48.242-3.058 1.674-3.058 1.674l-5.971-20.8.12-1.384s.534-.655.656-1.87c-.898-.29-1.02-.534-2.21-1.673s-2.16-2.525-4.148-3.472c-.292-.534-.656-1.26-2.112-1.553-1.456-.293-2.33-.533-2.33-.533s.776-.293 1.14-.9c-.898.122-1.625.413-3.591.365-1.99-.05-2.21-.121-3.301.048-1.091.17-2.4.656-2.888-1.019-.534-.413-1.675-.048-2.646 1.383-.972 1.43-1.31 2.572-3.18 3.13a6.514 6.514 0 0 1-.85 2.33c-.534.9-1.383 1.797-2.524 3.132-1.797 2.112-1.506 5.582-4.37 8.228-2.888 2.645.48-7.33.48-7.33l4.612-11.04 13.13-12.84 20.39-1.383 1.99 10.56 9.952 3.422 6.286 9.587.004-.012Z", fill: "#D3AE4D" }), _jsx("path", { d: "m187.67 90.291-8.568-12.353-5.995-4.613s-4.272-7.863-4.563-8.106c-.243-.17-4.272-.606-6.845-.776l.48 1.189a3.15 3.15 0 0 1 1.44.971c1.141 1.31 1.869 3.786-.728 6.432 1.02.363 1.44.48 2.33.363-.898 1.07-2.936 3.35-3.058 5.341-.121 1.626.898 2.11.898 2.11s-1.554 1.797-1.626 4.8a19.45 19.45 0 0 1 2.4-2.281c1.797-1.44 4.272-3.06 5.947-4.078-.022.427.035.855.17 1.262 0 0 3.13-2.573 5.76-1.432 1.189.534.654 2.21.654 2.21s1.628-.607 2.768.534c1.141 1.14 2.767 4.077 3.592 5.22.364.534 1.31 1.553 2.28 3.129a39.57 39.57 0 0 1 3.303 6.966c.048-.971.243-2.33 1.92-2.33l-2.549-4.563-.01.005Z", fill: "#CAA13E" }), _jsx("path", { d: "M59.224 125.389s-.606-1.506 0-4.442 1.554-4.32 1.869-8.64c.315-4.32 3.131-9.709 3.131-9.709l7.79-3.542 5.51 1.504 1.626 7.38-6.966 3.84s-.363 1.625-2.33 2.935c-1.966 1.31-4.684 2.33-5.339 3.666a10.686 10.686 0 0 0-.85 2.573s-1.99-.413-3.179.897c-1.262 1.336-1.214 2.525-1.262 3.544v-.006Z", fill: "#F4EFC8" }), _jsx("path", { d: "M74.952 123.422s-.656.413-1.14 1.44c-.48-.776-1.628-5.388-1.676-9.539-.048-4.15-.296-5.179.664-6.61.96-1.43 4.725-2.937 4.19-5.513-.534-2.451-2.768-3.47-5.51-2.766-1.92.48-3.349 4.563-5.34 6.601-1.505 1.554-3.3 1.31-3.785 2.16-.656 1.141-.05 2.282-.243 3.01-.05.243-.656 1.553-1.749 3.131-2.208 3.18-5.945 7.67-6.432 11.7.17-2.282.05-2.33.656-4.855l-.365-.607 2.4-7.864 1.554-6.48 3.472-10.85 6.115-11.092 5.947-6.651 6.19.413.727 9.296 3.544 17.452 7.451 9.175-11.942 8.037-4.733.412h.005Z", fill: "#EBCC73" }), _jsx("path", { d: "M78.666 126.72s-1.02.243-1.384.05c-.365-.194-.727-.413-.607-.656.12-.244.776-.655.776-.85a.68.68 0 0 0-.606-.728c-.559-.072-.728.291-.728.291s-.535-.411-.97-.48c.258-.031.517-.048.776-.05a7.566 7.566 0 0 0-2.112-.606c.607-.363 1.797-1.432 2.573-1.432s1.262-.12 1.14-.533c-.12-.412-.727-1.019-1.382-1.262.242-.291.413-.728-.17-1.92-.607-1.189-.364-1.99-.169-2.28.17-.365.776-1.02 1.067-1.432.292-.413.535-.971 1.02-1.262.243-.17 1.019-.48 1.796-.776.85-.292 1.554-.656 2.039-.292.534.364.291.85.291.85s1.675-.608 3.18.17c1.505.726 5.17 1.188 5.17 1.188l1.314 2.647-8.69 7.451-3.592 1.797-.728.12-.004-.005Z", fill: "#E5C66B" }), _jsx("path", { d: "M90.728 114.54s-2.694 1.796-3.3 2.45c.362.05.969.293.726.656-.292.364-2.039 1.626-3.01 2.816-1.02 1.19-1.99 2.695-2.33 3.423-.363.654-3.13 2.573-4.076 2.814 1.99 0 5.995-2.451 7.499-2.451-.048.728.413 1.554 1.262 1.626.85.072 3.301.534 6.602-1.504 3.3-1.99 2.21-3.472 3.592-4.442 2.646-1.749 3.713-3.302 5.17-4.272 1.455-.97 2.209-1.19 2.209-1.19s.048-.728.48-.655a.653.653 0 0 1 .534.413s2.525-1.797 5.76-2.282a.336.336 0 0 1-.17-.17s.242-.12.292-.242c0 0 .17-.244.291-.122.122.122.291 1.02.535 1.384.534-.243 1.553-2.525 1.553-2.525l2.453-7.014v-6.408l-1.92.365-14.4 6.115-8.74 9.054-1.018 2.16h.006Z", fill: "#E6BD62" }), _jsx("path", { d: "M132.184 83.107a8.14 8.14 0 0 0 2.216-.899c-.291.778-.291 1.627-1.554 3.472-1.262 1.845-1.31 2.112-2.33 4.029-1.018 1.99-1.14 4.854-2.111 6.115.435-.212.902-.35 1.382-.411 0 0-.97.85-1.382 1.747-.413.898-1.141 2.766-2.936 3.909-1.795 1.142-4.079 1.869-6.53 4.563-2.453 2.645-4.976 5.995-6.24 7.2.656-1.14 1.554-3.422 1.797-4.926.243-1.504-.05-3.303.363-5.292.413-1.988.413-3.422 2.4-6.894 1.987-3.472 5.389-15.534 5.389-15.534l7.33-2.33 2.21 5.243-.004.008Z", fill: "#B6933F" }), _jsx("path", { d: "M126.893 78.666s-2.208 3.179-2.815 5.995c-.606 2.816-.05 2.573-.412 3.957a5.16 5.16 0 0 0 0 2.572 9.134 9.134 0 0 1 3.054-3.01c2.088-1.262 3.787-2.16 4.8-3.228 1.02-1.14 1.869-3.01 4.077-4.442-.898-.121-2.16-.534-2.4-.48.899-1.019 3.592-2.572 6.31-4.441 2.695-1.92 2.525-2.695 6.895-4.611-1.432.243-2.112-.122-3.303 0 .48-1.02 2.16-1.506 3.84-3.18 1.68-1.673-1.067-4.15-1.067-4.15l-12.8 7.742-6.189 7.282.01-.006Z", fill: "#C49937" }), _jsx("path", { fill: "#DFC068", d: "m92.16 72.888.291-2.33 3.666-5.873 3.835-10.315V40.267l-.291-8.155.606-5.341.461-1.697.486-.656 3.13 1.625 4.322 5.874.412 11.336-4.2 17.888-11.99 13.083z" }), _jsx("path", { d: "M101.7 23.762s-1.92.05-2.33 8.035c-.41 7.985-.608 12.184-.9 16.14-.29 3.957-.97 6.359-1.31 8.69-.34 2.331-.534 5.509-1.626 7.451-.48.898-1.505 3.714-3.908 5.826-2.695 2.33-6.72 3.957-7.33 4.078-1.069.242-6.482.776-8.69 1.99-.776.414-2.112.898-3.592 2.282-2.937 2.645-6.844 7.378-9.66 13.082-4.32 8.52-8.64 32.573-8.64 32.573l.97-1.626s.122-2.16 2.282-5.947c2.112-3.786 1.506-8.034 4.442-15.291 1.14-2.767 2.573-6.359 4.32-9.418 2.768-4.976 6.117-9.248 9.491-11.577 5.509-3.786 11.578-4.612 11.578-4.612l6.53-4.32s1.14-2.208 2.646-4.732c2.11-3.543 4.8-7.5 5.387-13.252.9-8.52-1.262-14.102-1.14-19.15.12-5.048.169-8.762 1.19-9.66 1.02-.9.29-.56.29-.56v-.002Z", fill: "#A88F33" }), _jsx("path", { d: "M101.7 61.869s2.88-7.088 4.198-13.375c.243-1.262.728-2.523.85-3.542.606-5.947.775-8.398 0-11.651-.607-2.4-2.937-4.563-4.151-6.24-1.189-1.749-1.747-2.4-1.504-2.768.243-.368 1.189-.97 2.11-.898 1.98.058 3.85.925 5.171 2.4 1.87 2.16 3.35 9.491 3.35 9.491l1.556 9.674 3.957 12.184-15.535 4.734-.003-.01Z", fill: "#C99E3D" }), _jsx("path", { d: "M128.762 54.491s-.535.242-1.504 0a2.165 2.165 0 0 1-.972 2.039c-1.019-.413-10.56.412-10.56.412s-4.441-.777-5.825-6.65c-.97-3.91.728-9.297.17-12.84-.85-5.22-2.039-6.24-2.16-7.865-.122-1.624-.244-2.038-.244-3.057-.534-.122-.85-.292-1.382-.292-.122-.48.12-.899-.413-1.748.291.121 2.282.364 4.611 2.572 1.92 1.797 1.92 2.452 2.21 2.816.363.364 3.3 2.88 4.563 5.39 1.262 2.508 3.714 10.508 4.272 11.818.17.535.534 1.07 1.44 2.282 1.408 1.749 3.47 4.64 5.8 5.12l-.006.003Z", fill: "#B58634" }), _jsx("path", { d: "M113.035 30a67.26 67.26 0 0 1 3.955 7.38c1.432 3.226 2.282 5.873 4.079 8.033-.971-2.815-2.695-8.349-3.714-10.315-1.14-2.08-3.47-4.32-4.32-5.096V30Z", fill: "#A88F33" }), _jsx("path", { d: "M96.53 69.904s-2.452.606-7.015 3.01a75.981 75.981 0 0 1-4.32 2.038c-3.595 1.626-7.451 3.128-10.51 3.957.243.291.363.411.363.411s0 1.19.656 1.869c-.363.365-5.22 3.665-3.786 14.709.97-.364 2.11-.85 2.28-.85.293.05.365.85.728.85.364 0 1.554-.48 2.816-2.112-.048.656-.776 7.257 3.132 11.699.728-.85 2.572-3.666 2.572-3.666l.048-.897s.17-3.132 1.19-5.996c1.022-2.864 3.01-4.976 3.01-4.976L98.08 75.12l-1.554-5.218.004.002Z", fill: "#E6C367" }), _jsx("path", { d: "M86.82 91.68c-.475.336-.999.598-1.553.776-.17-.606-.413-2.694 1.02-4.733 1.675-2.453 5.339-5.632 6.358-8.16.656-1.627.365-5.704 6.19-10.923 5.826-5.22 8.106-7.014 8.106-7.014l9.417-4.733 11.578 4.563L122.184 84l-4.466 10.56-17.76-3.349-13.139.469h.002Z", fill: "#DCBA5A" }), _jsx("path", { d: "m93.6 85.558 2.21-2.766v-1.966s2.45-.656 5.096-3.35c2.644-2.695 6.31-7.865 9.539-7.55 3.229.365 3.544 7.015 3.665 8.885.122 1.87.535 6.115 1.19 8.399.727 2.281-7.865 10.921-7.865 10.921l-5.835 4.442-8-17.015Z", fill: "#E9CE77" }), _jsx("path", { d: "M100.437 108.592s1.797-2.816.48-3.422c.776-1.748 2.208-3.592 2.208-3.592s1.019-2.524 4.32-5.63c3.3-3.108 5.34-5.172 5.875-7.258.33-1.36.509-2.752.534-4.15.357.29.739.55 1.141.775.535.243 3.058 2.33 2.695 6.53-.364 4.2-1.92 5.947-1.92 5.947s-1.504 1.504-2.572 2.282c-1.142.776-1.553 1.673-3.472 1.747.198-.157.42-.28.656-.365 0 0-1.99-.242-3.059.728-1.069.97-3.34 3.957-4.481 4.856-1.141.728-2.4 1.554-2.4 1.554l-.005-.002Z", fill: "#CDAE50" }), _jsx("path", { d: "M181.14 61.382a29.23 29.23 0 0 0-8.93-1.747c-5.098-.17-12.55.122-19.855.17-7.864.048-15-2.695-24.902-3.18-1.626-.97-5.76-5.219-18.666 3.786.776-.048 9.37-1.99 12.354 1.749 3.01 3.714 2.16 10.024 1.749 11.528-.778 3.35-3.303 8.229-4.32 11.651-1.018 3.423-.778 5.221-1.506 7.621-.728 2.4-2.33 3.592-1.384 6.358 1.262-.776 1.92-.776 4.029-5.508 2.109-4.733 1.675-8.108 5.171-12.112 3.422-4.03 9.12-9.54 11.286-10.924 2.167-1.384 19.368-10.315 37.38-1.795 4.344-.46 7.596-7.598 7.596-7.598l-.001.001Z", fill: "#D2A83E" }), _jsx("path", { d: "M116.043 58.08a2.224 2.224 0 0 0-.12-.534 3.896 3.896 0 0 0-.656-.972s-4.272-.776-6.432-.534c-3.787.413-7.21 5.098-8.811 7.5-1.602 2.404-3.592 6.116-5.752 8.034a.8.8 0 0 0-.122-.534s.122.17-.12.413c-.241.243-.243.363-.121.48l.365.363c.12 0 3.47-1.506 8.033-5.76 4.855-4.442 8.568-6.72 10.51-7.5 1.036-.441 2.12-.761 3.228-.956h-.002Z", fill: "#C29637" }), _jsx("path", { d: "M198.909 39.83s-.778.97-1.749 2.039c-2.16 2.281-4.976 4.853-7.38 7.499-2.28 2.525-4.852 4.491-7.742 7.792-2.89 3.3-6.24 6.965-7.088 8.034-.776 1.068-1.382 2.816-1.382 3.713-.413-.291-.898-.606-.898-.606.204.38.449.74.728 1.069.607.85 1.552 1.92 2.039 2.572a7.84 7.84 0 0 1 1.26 2.767c.292.048 2.16.413 4.492-3.423 2.331-3.835 5.387-8.033 5.387-8.033l4.854-7.21 3.06-6.115 3.84-6.845.584-3.253h-.005Z", fill: "#AC8132" }), _jsx("path", { d: "M203.885 34.928s-2.938 2.4-4.079 3.84c-1.14 1.44-3.84 5.22-3.84 5.22l.972-.122 4.928-4.368 1.92-3.423.097-1.14.002-.007Z", fill: "#A88F33" }), _jsx("path", { d: "M202.986 227.816s-.048-1.99 1.068-3.18c1.141-1.19 4.03-2.937 6.845-9.49 2.816-6.554 3.13-8.034 3.13-8.034s-5.048 4.32-8.16 5.34c.728-1.506 1.14-2.574 1.505-3.351-.412-.363-2.16-.776-2.33-.97.97-.971 1.505-3.35 3.471-4.928 2.525-1.92 7.136-5.219 10.72-8.16 3.584-2.94 10.63-9.78 11.53-11.771.534.776.654 1.26.654 1.26s-3.542 4.614-5.387 7.55c-1.627 2.524-1.506 3.956-1.506 3.956l3.35-1.44s.97 3.592-3.422 9.055c1.92-.728 2.695-.291 3.786-.9-1.797 1.143-4.272 2.697-6.602 6.967-2.281 4.272-5.388 9.248-10.63 12.354-5.098 3.276-8.035 5.728-8.035 5.728l.013.014Z", fill: "#A67A2E" }), _jsx("path", { d: "M189.83 63.909s-1.99 4.149-2.281 7.377c-.048.778-.243 1.384-.243 2.282-.048 2.888.17 6.117-.48 7.62-.244-.606-.365-1.018-.608-1.26-.364 1.02-1.02 4.198-1.554 5.387-.242-.776-.776-3.47-.726-6.65.05-3.179.12-3.787.12-4.441-.12.97-.776 2.282-1.02 3.058-.363-.655-.776-1.504-1.262-2.208-.291.48-.654 1.188-.97 1.553-.05-.291-.17-1.069-.243-2.16-.048-1.262-.121-2.888-.048-3.229.12-.654 1.141-3.227 3.301-5.582 2.573-2.816 5.22-8.227 5.995-9.902.776-1.676 4.077-8.64 4.077-8.64h2.525l-3.666 8.348s-2.208 4.564-3.349 6.24c-1.14 1.677-3.544 6.482-4.612 8.35.776-1.018 1.432-1.553 2.21-2.524.751-.68 2.838-3.616 2.838-3.616l-.004-.003Z", fill: "#8C6228" }), _jsx("path", { d: "M203.933 34.611a10.45 10.45 0 0 1-1.92 3.472c-1.506 1.797-4.735 4.199-6.31 6.115-1.44 1.87-4.32 6.967-3.012 13.01.48-1.31 1.384-3.907 3.787-6.845 2.404-2.937 4.976-6.31 6.24-8.931 1.261-2.646 1.43-4.733 1.43-4.733l.48-.606-.29-1.384-.413-.098h.008Z", fill: "#CBA94C" }), _jsx("path", { d: "M253.083 195.606s-.971-2.644-1.262-5.048c-.291-2.403.48-2.88-.413-5.63-.534-1.675-1.504-1.44-1.747-1.675-.243-.235-.413-2.767-.365-4.15.048-1.385-.048-3.18-.291-3.957-.363-.292-.607-.535-1.141-2.33-.606-1.797-.898-2.694-1.189-3.227-.291-.533-1.142-1.02-1.142-1.554 0-1.069.971-1.625.971-1.92-.048-.606-.776-.12-.971-.291-.242-.291.608-2.038.293-2.282-.122-.12-.972.9-1.19.608-.244-.292-.535-3.18-.972-5.097-.411-1.869-.85-3.227-.898-3.786-.048-.534-3.35-9.952-4.15-12.233a57.838 57.838 0 0 1-1.626-5.874c-.243-1.14-.412-3.472-.534-3.229-.122.243-.048 1.432-.243 1.384-.17-.05-.776-4.198-.97-4.854-.17-.656-1.19-2.88-1.44-4.49-.243-1.627-.776-5.875-1.14-8.763-.365-2.888-.535-4.077-.535-4.8a29.91 29.91 0 0 0-.291-5.291c-.48-3.06-1.44-6.773-2.282-8.931-1.625-4.079-5.947-14.516-6.72-17.112 0-.656.85-.292.85-.292s2.11 5.292 3.664 9.368c1.505 4.079 2.937 7.67 3.302 8.036.291.363 2.573 4.368 3.592 10.921 1.02 6.554 1.383 12.597 1.99 16.626.292 1.92.535 3.957 1.141 5.995.655 2.21 1.674 4.491 3.01 7.986 1.14 2.937 1.99 5.388 2.451 7.5.535 2.695.535 4.733.85 6.07.293 1.14.728 3.42 1.749 6.72 1.02 3.298 2.523 7.548 3.542 10.193 1.992 5.291 2.88 9.709 3.18 12.064.266 2.427 1.166 10.825.922 13.349l.005-.004Z", fill: "#A88F33" }), _jsx("path", { d: "m204.054 34.32-.121.291s.363.122.291.608c.005.666-.035 1.33-.122 1.99-.12.85-.363 1.505-.41 2.039 0 1.14.169 2.451-1.44 5.704-.48.898-.777 1.674-1.02 2.208-.606 1.31-.728 1.506-1.262 2.112.85-.48 3.908-2.4 5.46-2.112-1.067.606-2.694 1.797-3.713 3.35.243.048 1.262.244 2.88 0 2.694-.412 5.704-1.384 8.349-1.19 2.89.17 1.748-3.47 1.748-3.47l-3.334-7.33-6.31-4.44-.996.242v-.002Z", fill: "#BE9C44" }), _jsx("path", { d: "M220.51 89.224s-2.816-2.816-3.956-12.48c-1.141-9.709-.898-24-.898-24l-2.282-5.582s-.48-3.714-1.675-5.096c-1.195-1.383-3.542-3.714-4.611-4.855-1.069-1.14-2.282-2.694-3.01-2.937.364-.607 1.99-4.03 8.228-4.078 6.236-.047 8.16 3.423 8.81 4.686.652 1.262 3.593 6.72 4.684 17.12 1.02 10.387 1.069 11.164.9 14.756-.122 1.99-.778 6.602-1.92 11.528-1.044 4.176-2.185 8.837-4.273 10.948l.003-.01Z", fill: "#A17C34" }), _jsx("path", { d: "M211.68 97.5a4.766 4.766 0 0 0 2.694-.607c.898-.048 4.15.365 6.65-2.815.17.727.608 2.695-.534 4.442.608-.608 1.505-.85 1.627-1.02.048.898.897 3.665-2.695 10.388.97-1.067 2.11-1.02 3.13-1.14.05 1.262.728 5.508-1.067 7.791-1.189 1.554-3.131 1.067-3.131 1.067.028-.339.028-.68 0-1.019-.048-.656-.292-1.31-.12-1.747a8.707 8.707 0 0 1-2.525-1.749c-2.112-1.99-4.855-5.387-5.048-7.912-.243-2.816 2.281-3.422 2.281-3.422a2.7 2.7 0 0 1-.534-.656c-.122-.411-.243-1.067-.728-1.6Z", fill: "#8C6228" }), _jsx("path", { d: "M192.96 66.966s-.122-.17-.776.607c.122-.776.243-1.506.291-2.21.31-.652.71-1.256 1.19-1.795-.364.726-.607 1.382-.607 1.382s.899-1.675 2.21-2.694c.897-.728 2.038-1.067 2.522-1.747.535-.728.413-.85.535-.971 0 0 1.19-.776 3.011-3.06.242-.29.606-.606.85-.897.41-.17 1.382-.607 2.523-1.19 1.19-.655 2.525-1.553 3.35-1.92 1.626-.729 3.35-.655 4.15-1.797.607-.17 1.261-1.99 1.141-3.543.898.363 5.51 3.227 7.088 9.49 1.141 4.441-.899 11.286-1.748 14.589-.85 3.302-.97 5.752-2.16 7.256-1.506 1.992-6.359 4.8-7.55 6.19-1.018 1.14-4.076 4.029-3.956 6.115.122 1.554 2.038 2.4 2.453 2.695.414.294.411.656 1.189.48.777-.176 1.067-.535 1.384-.535.363.048.363.122.532.122a1.75 1.75 0 0 0 .365-.05s-.121 2.21-5.291 2.88c-.365.05-.728.17-1.19.243.608-.29.97-.29 1.627-1.188-.728-.122-2.816-.244-3.35-.413.169-.291.727-1.069 1.188-1.432.413-.363-.048-.48-.411-.291-.625.425-1.225.887-1.797 1.382-.606.534-1.14 1.262-2.112 1.92-.291-.971-.243-2.816.9-4.15-.293.048-.852.897-1.385.728a7.73 7.73 0 0 1 .17-2.647c.291-1.093 1.869-3.01 1.869-3.01l7.62-13.617 1.626-10.315-17.451 3.39v.003Z", fill: "#92723A" }), _jsx("path", { d: "M192.549 67.549s-.413.291.413.85c-.122.169-.413.775-.778 1.188-.411.48-.85.778-1.02 1.19-.362.85-.654 1.433-.654 1.797 0 .365-.121 2.695-1.14 4.199-.365.534-.778 1.432-1.07 2.038-.606 1.067-1.14 1.92-1.262 2.4-.241.85-.41 3.18-.41 3.18s.534-.657.727-.898c-.293.606-.608 1.26-1.069 1.747.292-.243 1.141-.85 2.573-2.112 1.99-1.674 5.098-4.49 8.885-6.72-1.142.413-2.112.413-2.888.534.606-.606 6.067-7.014 8.931-7.62.174-.22.26-.498.243-.778l-2.452-.242-4.976 1.068-.727-3.84-3.326 2.014v.005Z", fill: "#B18E3E" }), _jsx("path", { d: "M200.462 89.394s-.656.654-1.262 2.281a7.648 7.648 0 0 1-1.19-1.627c-.898-1.504-2.28-3.422-5.51-2.33-.047-1.019-.12-1.553 0-2.281.535-.12 2.16-1.43 3.786-3.349 1.143-1.31 2.21-2.816 2.938-4.733.48-.365 1.31-.971 2.4-1.675 1.554-1.067 3.422-2.525 3.714-4.15-.728.29-2.282 1.019-4.613.899.899-.413 2.281-.85 2.112-2.647.365-.243.656-.412.656-.412a2.4 2.4 0 0 0-.85-.122c-.05-.17-.121-.411-.534-.291-.413.12-.48.121-.535.291-.17.05-.728 0-1.14.293-.413.293-1.554 1.26-1.99 1.43.169-.291.41-.726.41-.726s-1.188.12-2.038.48c-1.554.534-3.349 1.505-5.17 2.451.17-.291.244-.48.364-.534.12-.055.412-.12.412-.17 0-.05-.12-.48-.048-.654a22.269 22.269 0 0 1 1.92-3.301c.85-1.143 1.02-2.768 1.02-2.768l3.713-1.869 10.437-2.4 6.773.413-.85 4.685-4 8.179-3.422 7.451-3.909 4.565-3.592 2.62h-.002Z", fill: "#543E26" }), _jsx("path", { d: "M217.38 69.12s-4.08 5.048-5.22 5.826c.728-1.554 5.22-10.802 6.845-13.375-.363-.291-.85-.291.291-4.8-.97 2.28-1.31 3.47-2.11 4.077-.8.606-.9.413-1.44.413.102-.185.144-.397.12-.607 0 0-3.423-.412-5.76-.412-2.338 0-6.965 1.262-9.54 2.281-2.038.85-3.179.85-3.907 1.383-.728.606-1.14 1.262-1.505 1.432-.292.17-1.674.606-1.99 1.067-.292.48-.777 1.019-.777 1.14 0 .122-.121.293.243.17.12-.048 1.02-.534 2.039-1.14 1.382-.777 3.057-1.674 4.272-2.209 3.47-1.384 4.563-1.14 6.115-1.432 1.626-.29 3.957-.97 5.509-.97 1.553-.049 4.491 0 5.171.12-.291.244-.534.535-.413 1.554 0 .292-.243.607-.48 1.31-.726 1.991-2.11 5.292-2.88 6.967-1.067 2.28-2.28 4.199-2.88 5.387-.6 1.19-1.92 4.32-3.227 5.996-1.307 1.675-1.99 2.694-2.4 3.059-.41.365-3.35 2.523-3.131 3.3.534-.169 3.909-1.44 6.358-4.198 2.45-2.758 2.938-4.441 4.855-5.947 1.916-1.506 3.422-4.029 4.32-6.115.752-1.943.582-2.549 1.528-4.272l-.007-.005Z", fill: "#806031" }), _jsx("path", { d: "M129.491 106.797s-.534 2.208-1.749 3.3c-1.188 1.07-3.3 1.991-3.542 3.788-.291 1.795 2.112 2.694 2.112 2.694S125 118.74 125 120.365c0 1.675-.048 1.99.122 3.592a1.6 1.6 0 0 0-.48.48s.12 1.553 1.31 2.523c1.19.97 2.208 1.554 2.814 1.31.093.198.174.401.244.608 0 0 .899-2.281 1.505-4.272.607-2.038 1.141-1.748 1.383-4.49.241-2.743 2.88-7.452 2.88-7.452l1.8-4.024-2.936-2.282-4.15.437v.002Z", fill: "#B6903C" }), _jsx("path", { d: "M134.952 110.752a17.67 17.67 0 0 0-1.672 1.99c-.776 1.07-1.382 2.039-2.523 2.453-1.141.415-1.869.411-1.797 1.554.072 1.142 1.14 1.625 1.747 2.208.656.606 1.19 1.625.9 2.768.363-.17 1.019-.365 1.625-1.675.606-1.31 4.848-9.296 4.848-9.296h-3.128v-.002Z", fill: "#685026" }), _jsx("path", { d: "M151.68 92.33s.363-.97 0-1.674c-.365-.728-2.573-.971-3.666-1.797-1.14-.85-2.524-1.44-3.665-1.067.17-.413.85-1.312.291-1.506-.534-.17-2.523.728-3.058 1.141-.534.413-1.748.898-1.99 1.19-.242.293-.656.85-.9.607-.242-.17-.362-.606-.775-.365-.413.242-2.4 1.869-2.767 2.816-.366.947-1.19 3.06-3.665 5.461-2.475 2.402-3.544 3.957-2.816 4.854.728.898 1.069.244 1.19 1.02a6.546 6.546 0 0 1-.121 2.281c-.292 1.263-.776 2.451-.122 2.695 1.675.534 3.302-.48 3.666-.17.728.654-.413 3.01 1.31 3.47 1.749.48 3.472-.412 3.472-.412l6.358-3.423 6.117-3.227 3.13-6.19-1.679-5.17-.32-.534h.01Z", fill: "#D4B968" }), _jsx("path", { d: "M145.68 107.112s-1.069-1.626.243-3.06c1.312-1.433 3.18-2.038 3.907-2.935a1.12 1.12 0 0 0-.534-.363 4.834 4.834 0 0 1 2.112-1.992c-.363-.364-.85-.655-1.382-.655-1.19 0-1.92.728-3.012.728-1.067 0-1.188-.534-1.188-.534s1.796-.17 1.625-.971c-.17-.85-.48-.85-.48-.85s3.47-1.44 4.077-2.208c.606-.768.534-1.675.656-2.038.411 0 2.814-1.263 3.786-.728.97.534.29 1.99.29 1.99s2.94-2.21 4.438-4.376c1.31.122 1.92-.898 2.88-.898 1.19 0 3.059 1.626 3.422 5.096.243 1.99.606 3.132.243 6.652-.17 1.99-.121 6.24.48 8.348.411 1.676 1.383 1.506 1.383 1.506a2.72 2.72 0 0 1-.85 1.31c-.656.607-.728 2.21-.656 2.816a12 12 0 0 0 .365 1.31s-.776.898-.971 1.506c-.17.607-.97 1.02-1.554 1.02-.584 0-.291-.05-1.067 0s-1.02.17-1.506 0-.85-.365-.654-1.92c.17-1.554-5.995-5.17-5.995-5.17l-10.08-3.592.022.008Z", fill: "#CCA849" }), _jsx("path", { d: "M134.102 122.451s2.208 2.938 11.287 2.938c4.32 0 5.825-.413 6.72-.656.971-.243 4.611-1.674 8.277-5.995 3.3-3.908 2.572-5.51 2.572-5.51l-1.92-.29-6.24.85-18.464 7.863-2.24.8h.008Z", fill: "#585136" }), _jsx("path", { d: "M140.874 123.18s-7.864 1.748-7.864-3.228c0-4.854 4.854-9.952 6.068-10.85 1.263-.899 4.272-1.92 4.272-1.92h7.258l1.382 3.666-.606 7.912-10.51 4.418v.001Z", fill: "#252211" }), _jsx("path", { d: "M148.131 108.666s-1.504-1.384-4.926.48c-3.423 1.864-6.19 5.76-6.36 9.297-.17 3.13 2.573 5.461 6.845 5.583 3.179.12 5.097-.244 6.068-.48a282.812 282.812 0 0 1-1.505-1.87l-.12-13.009-.002-.001Z", fill: "#C3B378" }), _jsx("path", { d: "M146.651 109.44s-.363-.291-1.44.291c-.897.48-2.208 1.749-3.227 2.647-.656.534-1.069.776-1.44 1.188-1.506 1.797-2.768 4.735-2.038 6.19.73 1.457 3.13 3.132 9.248 1.991l-1.12-12.305.017-.002Z", fill: "#E6D89C" }), _jsx("path", { d: "M144.66 112.451s-.97 1.506-.97 3.909c0 2.451 1.384 6.358 6.481 6.65 3.907.243 6.528-5.63 9.368-7.912 2.16-1.748 3.47-1.797 3.47-1.797s-2.207-2.4-8.105-5.509c-5.826-3.131-12.355-3.544-15.9 1.262 1.676-.121 7.089-1.505 7.089-1.505l2.646.85-4.078 4.054v-.002Z", fill: "#252211" }), _jsx("path", { d: "M152.282 115.63c-.17-.363-.292-.85.412-.97s1.02-.049 1.263.48c.243.53.48.972.12 1.191-.363.194-1.31 0-1.797-.704l.002.003Zm-1.141-3.422s-.243.17-.122-.17c.048-.41.365-1.14 1.141-.97.776.172.608 1.02.48 1.263-.128.243-.776.655-1.262.48a.405.405 0 0 1-.244-.606l.007.003Z", fill: "#6F674D" }), _jsx("path", { d: "M85.44 113.76s1.92 1.44 4.15 1.384c2.208-.05 5.048-2.33 6.359-3.787.776-.85 1.44-1.747 2.16-2.451.608-.607 1.019-.898 1.31-1.31.413-.48.85-1.383 1.069-1.676-.534.413-1.31 1.142-2.112 1.627-.776.48-2.451 1.383-3.131 1.626-.655.243-7.451 3.84-7.451 3.84l-2.354.747Z", fill: "#AC924C" }), _jsx("path", { d: "M88.374 95.826s1.068-.728 3.132-1.19c1.99-.48 5.995-.85 5.995-.85l3.3 1.44 1.311 4.976-2.4 5.17-3.058 1.92-3.472-5.582-4.8-5.875-.008-.01Z", fill: "#9F8E57" }), _jsx("path", { d: "m84.054 100.267-1.142.853s.293-.534.534-2.16c.242-1.626 1.506-5.582 3.35-7.864 1.846-2.282 1.798-2.16 1.798-2.16a1.214 1.214 0 0 0-.972.242c.244-.538 1.797-2.458 3.35-3.418 1.554-.96 2.16-1.262 3.786-.48s2.039 1.189 3.23 1.14c1.19-.047 2.207-1.31 2.207-1.31s.243.776-.654 2.573c-.898 1.797-4.442 5.461-4.442 5.461l-7.379 5.048-3.666 2.08v-.005Z", fill: "#EAC970" }), _jsx("path", { d: "M89.514 95.22s5.34.727 6.966-.777c.048.17.243.17.243.291a.424.424 0 0 1-.121.242 3.91 3.91 0 0 1 .534-.048c.214.064.434.104.656.122.18-.004.358-.02.534-.05a.907.907 0 0 1-.364.608c.243 0 .48.048.48.242 0 .193.048.777-.244.899a1.1 1.1 0 0 1-.728-.05c.02.46.144.909.365 1.312.48.898 1.504 1.92 2.88 1.626 0 0 .727 1.747-2.331 5.63-.411.535-.85 1.263-1.382 1.869-.21.459-.372.939-.48 1.432 0 0 5.17-1.99 6.65-6.53 1.506-4.563 1.798-9.052 1.506-13.25-.05-1.191-.243-2.04-.534-2.647-.728-1.506-2.768-1.263-3.592-.413-1.19 1.19-3.18 4.15-5.947 6.189-2.816 2.038-2.936 2.4-5.098 3.302h.007Z", fill: "#D7BC6B" }), _jsx("path", { d: "M83.107 101.773s-1.019.606-1.553 2.88c-.535 2.33.48 5.17 1.067 6.067.587.898 1.92 3.35 4.685 3.472a5.136 5.136 0 0 0 1.99-.413 12.592 12.592 0 0 0 2.694-1.675c1.19-.898 2.16-1.674 2.039-1.747-.291-.122-7.33-5.947-7.33-5.947l-2.646-2.954-.947.32.001-.003Z", fill: "#585136" }), _jsx("path", { d: "M89.76 111.432s1.432-.12 2.282-.654c.85-.535-4.976-6.31-4.976-6.31l.412 6.24 2.282.724Z", fill: "#453A25" }), _jsx("path", { d: "M83.568 101.334s-.728 1.384-.728 1.75c-.122 1.188.243 4.926.534 6.114.292 1.263 1.87 3.18 3.91 3.18 1.26 0 3.009-.776 3.009-.97 0-.243-1.797-.48-2.282-1.384-.291-.48-.413-1.674-.48-2.88-.048-.776-.048-1.626.243-1.92.656-.728.776-2.816.776-2.816l2.33-4.328h-3.064l-3.666 2.282-.582.972Z", fill: "#84754B" }), _jsx("path", { d: "M82.67 102.67s2.4-3.179 4.564-3.908c2.163-.73 3.13-.292 3.13-.292l-1.262 3.23-1.796 1.99.121 1.019s-.293 2.694 1.504 4.563c1.797 1.869 3.131 1.797 3.909 1.797s3.01-.656 4.15-3.35c1.02-2.524 1.87-5.76-.17-9.005-1.991-3.23-5.51-3.354-6.19-3.354-.68 0-6.019.267-7.96 7.306v.004Z", fill: "#252211" }), _jsx("path", { d: "M144.296 113.47c-.898-.412-.048-2.936.85-3.713.897-.778 2.038-1.674 4.03-1.797.726-.048 1.43.413 1.31.9-.17.897-1.432 2.16-2.572 3.057-1.578 1.238-2.599 2.014-3.618 1.553Z", fill: "#F7F7E7" }), _jsx("path", { d: "M95.752 99.709c.656-.048 1.506.48 1.675 1.19.17.776-.413 2.33-1.675 2.33-1.02 0-1.554-1.263-1.554-1.626.012-.298.095-.59.244-.85.048-.073.17-.923 1.31-1.044Z", fill: "#F8F6DE" }), _jsx("path", { d: "M86.286 100.267s-1.675.776-2.45 2.4a6.368 6.368 0 0 0-.48 3.84c.12.607.727 2.11 1.14 2.645.413.534.971.9 1.384.85.413-.05 1.26-1.141 1.26-1.796 0-.654.05-3.422.85-4.928.704-1.504-1.699-3.01-1.699-3.01h-.005Z", fill: "#D4C38B" }), _jsx("path", { d: "M86.53 100.146c-.292.17-.776.412-.656.728.121.29 1.14.48 1.505 1.19.413.728.413 1.504.291 1.869.317-.15.605-.357.85-.608.534-.607 1.189-1.43 1.747-1.43.365 0 .728.169 1.069.169.534 0 1.067-.17 1.14-.728.12-.728-1.018-1.384-1.674-1.262.121-.48.29-1.19-.244-1.676s-2.208.365-2.572.608c-.365.244-1.456 1.141-1.456 1.141v-.001Z", fill: "#E2D59D" }), _jsx("path", { d: "m125.098 151.14 3.592-1.06 1.019.728s.726 1.554 1.869 1.747c-.365.776-1.312 1.44-1.263 1.99.05.551.535.972.535.972s-3.23 5.339 3.13 10.72c-1.505.606-3.422 1.44-4.44 1.92.726.17 2.28.48 2.935 1.069.656.588.656.776 1.263 1.14.606.365.97.85.85 1.068-.414-.244-1.798-.97-2.04-.292-.24.679-5.994.413-5.994.413l-9.71 1.869s.364-.971-.655-1.869c-1.189-1.067-2.645.048-4.199-1.14-2.038-1.554-2.112-3.351-2.766-4.03.654-.412 1.99-1.019 5.17-1.44-.122-.243-.535-.97-.292-1.625.292-.85 1.504-1.384 1.141-2.4.535-.122.776-.122 2.112-1.797 1.263-1.675 2.039-2.038 3.01-2.16.971-.121 1.553 0 3.35-1.675 1.261-1.189.85-2.208.85-2.208s.824-.267.534-1.942l-.001.003Z", fill: "#CBAC5A" }), _jsx("path", { d: "M114.491 151.68c.048-.243.243-.365 1.554-.243 1.31.121 9.611-.776 11.869-.898 2.281-.17 10.315-.05 14.224.776 3.908.826 7.864 1.797 9.78 2.282 1.92.534 2.525.726 2.452.97-.048.243-.48.48-.728.412-.242-.048-6.602-1.99-8.567-2.4-1.965-.41-8.763-1.505-12.48-1.44-3.47.05-4.854-.048-7.79.291-2.938.365-7.792.85-9.248.656-1.44-.17-1.143-.17-1.069-.412l.003.006Z", fill: "#D6BC6F" }), _jsx("path", { d: "M134.029 170.704s4.976 2.694 6.773 5.995c1.31 2.451-.776 3.666-.776 3.666s2.816 0 2.45 1.553c-.169.97-4.854 3.59-7.985 4.975-3.179 1.384-3.057 1.312-4.611 1.553-1.506.244-5.632-.48-6.482.728-.85 1.208-.48 2.453-.243 2.647.243.17 2.21.413 2.21.413s-.413 1.14-4.49 1.262c-4.077.122-5.097.411-5.34.85-.244.41.775.17 2.646.48 1.869.29 4.49.48 4.49.48s-.85.728-3.058 1.31c-2.525.654-6.482 1.262-7.67 1.99.606.413 1.505 1.02 1.92 1.068-1.02.243-2.453.777-2.695.97.363.244.85.535.85.535s-2.04 2.451-3.23 3.06c-1.188.607-8.033 3.785-10.388 3.179-5.874-1.554-6.602-7.986-8.034-8.47-2.16-.729-3.179.726-5.097-.294.85-.606 1.312-.97 2.21-1.382-.972-.48-5.996-3.666-5.996-3.666a37.235 37.235 0 0 0-1.747-3.348c-.971-1.676-2.4-3.91-3.472-5.876-2.33-4.32-2.451-6.31-4.563-8.761.365-.48 1.625-.413 1.625-.413l17.696 5.826 31.378.908 8.16-11.65 3.47.414-.001-.002Z", fill: "#DFC677" }), _jsx("path", { d: "M87.549 188.47c.19.211.41.391.654.535.608.413 1.506.899 2.112 1.625.243-.363.85-1.019 1.92 0 1.07 1.02 2.4.293 3.227.535.85.293.898.413.898.413s.48-.413 1.554-.85c.656-.243 1.432-.413 2.281-.654.776-.17 1.626-.413 2.21-.413.534.363 2.451 2.4 10.145-.607 7.258-2.816 8.932-3.13 10.146-2.696.122-.29.243-.85 2.112-.776 0-.776-1.554-3.422-1.554-3.422l-8.568-2.936H110l-14.053 2.573-7.787 4.443-.606 2.24-.005-.01Z", fill: "#C4A859" }), _jsx("path", { d: "M82.864 183.544s.17 1.31 2.112 2.694c1.92 1.383 2.523 2.208 2.523 2.208s.365-.48.656-.97c.291-.534.535-1.14 1.02-1.31.97-.412 3.179.364 3.665.242.413-.12.291-.97.728-.97 1.02-.05 1.674.655 2.038.655.365 0 1.261-.048 1.383-.242.121-.193.17-2.21 1.553-3.18 1.506-1.068 3.35-.607 3.84-.364 0 .363.048 1.263 1.02 1.31.97.049 1.067-.121 1.92.17.852.291 1.868-.048 2.33 1.383.412-.12 1.383-.242 1.14-1.626.48-.363.9-.606 1.92-2.038.243-.364.654-.776.971-1.31.85 0 1.869-.17 3.227 1.018-.412.292-.656.48-.776.776.356.352.68.734.97 1.141.365.48.608 1.069 1.069 1.19 1.019.292 2.694-.121 4.563 0 1.797.122 3.3.777 3.957 1.19.243-.12.243-.17.85-.049.606.122 1.067.17.412-.606.363.17.776.534 1.141.17.365-.365.654-.898 1.674-1.02 1.019-.121 1.384.048 1.796-1.019.535-1.31-1.31-1.31-1.31-1.31s.85-.778 1.797-1.797c1.14-1.067 2.451-2.451 2.766-4.15.535-3.132-2.523-3.543-2.523-3.543l-14.83 4.563-18.132-.899-15.46 7.695-.01-.002Z", fill: "#927D49" }), _jsx("path", { d: "M69.54 140.704s-.48.606-.777 2.038c-.296 1.432-.17 1.263-.413 2.282-.243 1.02-3.23 11.165-2.11 14.587 1.12 3.423 3.06 4.685 4.272 7.451.243.607.48.972.606 1.506.413 1.795.05 3.18.535 4.976.17.606.608 1.31 1.262 2.038 1.44 1.504 3.787 2.936 4.8 3.956 1.43 1.505 3.47 4.564 6.067 4.854 1.384.17 3.35-.413 4.976-1.382 1.44-.9 2.33-2.16 3.84-2.88 1.068-.535 2.208-.728 3.228-.972 2.112-.412 4.03-.48 5.17-.243 1.748.365 5.874 1.627 8.16 1.627a22.197 22.197 0 0 0 5.292-.728c3.47-1.019 7.669-2.768 10.437-3.544 1.625-.48 2.936-.606 4.272-.897 2.281-.535 4.198-1.263 5.291-2.647-.728-.85-1.626-2.16-6.482-2.112-5.508.122-11.868 3.18-15 3.666-3.13.486-4.49.898-7.985-.365-3.427-1.275-3.541-2.118-3.541-2.118s-3.598-2.517-5.104-8.933c-1.506-6.416 0-11.091 3.909-15.534 1.019-1.141.776-2.16.776-2.16s2.573-3.47 1.869-6.72c-.776-3.23-5.752-2.573-5.752-2.573l-27.597 4.827h-.002Z", fill: "#6E6342" }), _jsx("path", { d: "M73.69 151.506a2.515 2.515 0 0 0-.292 1.31c.048.654.244 1.504 2.208 3.422 1.676 1.674 1.31 3.543 1.31 3.543s.844.17 3.132-.901c1.797-.85 2.4.656 2.4.656a5.074 5.074 0 0 1 1.675-.534 3.666 3.666 0 0 0 1.504-.48s2.112 2.16 3.957 3.179c1.675.899 2.646 1.505 3.472.899.776-.534.776-1.627.726-2.112a6.302 6.302 0 0 0-.726-1.262c-.534-.776-1.384-1.676-1.44-2.4-.122-1.674 1.262-3.666.97-4.15-.293-.486-1.383-.607-4.077.364-2.79.922-14.83-1.53-14.83-1.53l.01-.004Z", fill: "#39331F" }), _jsx("path", { d: "M80.048 162.355s-1.382-1.31-.898-7.67a7.9 7.9 0 0 1 1.748.17s.753 4.927-.85 7.5Z", fill: "#292311" }), _jsx("path", { d: "M70.195 135.85c.193-.143.372-.304.535-.48-.48.897-2.696 4.49-.9 10.145 1.797 5.63 6.31 9.829 11.87 10.024 5.558.195 8.48-2.525 11.82-6.601 1.31-1.626 2.816-3.666 4.15-5.048 1.99-2.162 3.544-2.768 3.544-4.855 0-4.272-4.37-6.19-10.801-8.107-6.432-1.917-12.234-1.68-15.243-.368-2.936 1.43-4.199 2.936-4.976 5.291l.001-.001Z", fill: "#252211" }), _jsx("path", { d: "m90.85 164.272.48-.243s.12-1.92.897-1.869c.776.122 1.141 1.142 1.067 1.506-.048.363-.241.97-1.019.897-1.019.024-1.43-.291-1.43-.291h.005Z", fill: "#3F3824" }), _jsx("path", { d: "M88.69 156.117s.48-.17 1.067.413c.48 0 2.573-.244 3.229.17.656.412.85.775.85.775s-2.452.535-3.788 0c-1.358-.46-1.358-1.358-1.358-1.358Z", fill: "#2D2815" }), _jsx("path", { d: "M99.491 156.48c0-.122-1.31-1.02-2.694-1.312-.243-.048-.293.122-.48.122-.122-.048-.17-.413-.17-.413l-.787.414s-.122.17.291.48c.363.291.971.535 1.141 1.02.17.484.17.654.243.727.048.048.898 0 1.31-.243.413-.243 1.191-.64 1.141-.8l.005.005Z", fill: "#82764F" }), _jsx("path", { d: "M87.234 161.408s.241-1.674 1.868-1.747c1.674-.122 1.99 1.504 1.99 1.504l-.97.971c0-.024-.728-1.043-2.88-.728h-.008Z", fill: "#2D2816" }), _jsx("path", { d: "M97.792 154.198s-.9.972-2.888 1.263c-.17-.243-.534-.728 0-1.504s1.14-1.02 1.747-.778a1.42 1.42 0 0 1 1.141 1.02Z", fill: "#574F35" }), _jsx("path", { d: "M101.456 155.389c.05-.243-.12-.291 0-.413s.778-.363.9-.243c.047.05 0 .243 0 .48s0 .48-.122.654c-.17.243-.655.365-.898.293-.243-.072-.291-.413-.291-.48.12-.048.411-.17.411-.291Zm4.144-2.621c0-.122.413-.365.656-.365.363 0 .363.291.413.365.12.048.12-.05.241.17.122.219.293.606.17.85-.123.242-.606.41-.726.362-.17-.121-.704-1.212-.754-1.382Z", fill: "#82764F" }), _jsx("path", { d: "M97.258 155.947s.534.12 1.262.728c-.243.17-.608.363-.608.363s-.048-.558-.654-1.092v.001Z", fill: "#6E6342" }), _jsx("path", { d: "M96.069 150.606c-.122-.12.363-.41.654-.363.291.048.413.243.728.291.315.048.365-.121.48-.243.115-.121.535-.048.607 0 .044.054.085.11.121.17a.672.672 0 0 1 .242-.48.766.766 0 0 1 .656-.122c.048.17.291.776.243.898-.048.121-.776.293-.9.17.122.292.657.899.729 1.019.072.12-.535.412-.776.364-.34-.024-2.427-1.238-2.79-1.699l.006-.005Zm3.179-4.028a.563.563 0 0 0-.243-.292c-.17-.048-.728 0-.728.292 0 .29.48 1.92 1.019 2.768.608.85 1.02 1.552 1.432 1.747a.563.563 0 0 0 .728-.243c.048-.122.17-1.02.122-3.132-.048-2.112-.122-4.15-.244-4.272-.121-.121-.606-.12-.776.122-.17.242-1.262 2.646-1.312 3.01h.002Z", fill: "#585136" }), _jsx("path", { d: "M97.088 159.005s-.85-.535-1.675-.17c-.776.365-.728 1.797-.728 1.797a1.15 1.15 0 0 0 1.069-.122c.534-.363 1.212-.97 1.334-1.504v-.001Z", fill: "#574F35" }), _jsx("path", { d: "M98.69 160.923c-.048-.48-.48-.48-.48-.728a.546.546 0 0 1 .532-.413c.244 0 .48.292.778.48.291.17.728.48.776.85.048.37-.48 1.382-1.067 1.382s-.413-1.092-.535-1.577l-.004.006Zm4.684-.656s-.97.291-.899 0c.072-.291.293-.363.608-.363a.96.96 0 0 1 .607-.293.526.526 0 0 1 .363.122s.656-.291.85-.122c.193.17.049.17.169.365.153.217.253.466.293.728 0 .194-.728.606-1.312.534-.679-.145-.559-.85-.679-.97Zm5.655-1.093s.291.17.05.365c-.17.17-1.02.48-1.75.535-.727 0-1.382.12-1.382-.122s.607-.728.97-.85a.774.774 0 0 1 .608-.29c.291 0 1.43-.122 1.747-.17.291-.05.534.12.363.363-.072.17-.606.17-.606.17Zm1.675-7.494s-.365.776-.776.776c-.413-.048-.413-.17-.413-.291 0-.17.413-.607.363-.728-.12 0-.412 0-.363-.291 0-.244.413-.535.776-.48a1.6 1.6 0 0 1 .971-.364c.413 0 .776.12.776.364 0 .243-.48.776-.656.899-.193.193-.436.32-.678.12v-.005Zm-5.534 14.344s-.48.05-.48.291c0 .122.12.122.29.05.1-.006.197-.022.292-.05.048.05.048.291.413.291.3-.04.588-.139.85-.29.29-.12.534-.244.534-.48-.122-.414-.365-.609-.728-.609a.968.968 0 0 0-.535.122s-.121-.243-.534 0c-.413.243-.365.243-.243.365.217.193.145.32.145.32l-.004-.01Zm-2.743 2.525c0-.122.607-.365.776-.291.17.048.655.97.655 1.067 0 .121-.607.413-.85.413s-.654-.413-.654-.48c0-.048.29-.12.29-.17.073-.12-.217-.413-.217-.534v-.005Zm-1.92-3.544c.122-.048.122-.17.291-.291a.418.418 0 0 1 .365-.048.59.59 0 0 1 .413-.293c.291-.048.534 0 .48.121 0 .365.243.607.243.898 0 .291-.17.656-.776.9-.606.169-1.432.169-1.553.12-.122-.047-.244-.534-.122-.777s.46-.509.656-.63h.003Z", fill: "#82764F" }), _jsx("path", { d: "M101.28 165.17s-.413.243-.413.364c-.036.118-.053.24-.048.364 0 .072.535-.048.607-.122.024-.048-.146-.48-.146-.606Z", fill: "#6E6342" }), _jsx("path", { d: "M97.67 164.029c.242.05.655 0 .97.121.243.122.413.365.17.656-.244.292-.48.728-1.02.655-.606-.048-1.188-.363-1.188-.607-.021-.31.084-.616.29-.85.244-.193.364-.071.777.025h.001Z", fill: "#585136" }), _jsx("path", { d: "M97.38 164.272s-.777.606-.972.9c-.243.29-1.432 1.794-1.795 2.11.12-.213.258-.416.411-.607-.48.307-.84.77-1.02 1.31-.29.9 1.628 1.385 2.889 1.75 1.26.364 1.749.48 1.749.48a13.555 13.555 0 0 1-1.19-2.209c-.48-1.14-.729-1.262-.414-1.796.244-.535.608-.898.608-1.31-.145-.385-.267-.628-.267-.628Z", fill: "#574F35" }), _jsx("path", { d: "M69.709 166.19c.176.033.358.033.534 0 .363-.05 4.15-1.44 8.107-1.19a43.37 43.37 0 0 1 8.762 1.44c4.976 1.31 11.165 3.907 15.17 5.389 1.067.411 2.112 1.14 2.88 1.43 3.059 1.19 3.179 1.19 4.976 1.506 2.112.291 4.272-.413 6.53-.898 2.766-.608 7.498-.899 11.649-1.505a23.797 23.797 0 0 0 3.957-.898s-3.301 3.3-11.215 4.49c-3.199.485-6.45.526-9.659.121-2.525-.243-4.198-.608-5.46-.971-1.433-.413-4.37-1.506-7.986-2.4-2.525-.656-5.341-1.14-8.568-1.747-7.962-1.458-16.602-3.131-19.68-4.757l.003-.01Z", fill: "#252211" }), _jsx("path", { d: "M65.582 135.413 45.363 116.53" }), _jsx("path", { d: "M60.776 151.19c-1.92 1.626-3.957 3.18-5.946 4.684l-5.995 4.606c-2.038 1.504-4.029 3.058-6.069 4.563a112.902 112.902 0 0 1-6.24 4.32c1.92-1.625 3.957-3.131 5.996-4.611 2.038-1.48 4.152-2.931 6.118-4.432l5.995-4.613c2.063-1.504 4.053-3.057 6.141-4.513v-.004ZM50.17 168.18s2.16-1.796 4.854-4.32c3.349-3.129 7.451-7.135 8.762-7.862l-13.618 12.184.002-.001Z", fill: "#CFB66C" }), _jsx("path", { d: "M50.17 168.18a84.408 84.408 0 0 1 3.35-3.132l1.747-1.504c.535-.48 1.143-1.02 1.675-1.554 1.068-1.067 2.112-2.21 3.18-3.3a20.406 20.406 0 0 1 1.675-1.554c.293-.26.62-.48.97-.656.292-.17.607-.48 1.019-.534-.242.364-.533.534-.776.85-.292.242-.535.534-.776.775-.535.535-1.141 1.02-1.676 1.506-1.14.971-2.33 1.92-3.47 2.936-1.14 1.016-2.208 2.112-3.35 3.131-1.237 1.045-2.378 2.064-3.568 3.04v-.005Zm14.515-9.71s-7.912 7.744-9.54 9.005l9.54-9.005Z", fill: "#CFB66C" }), _jsx("path", { d: "M64.685 158.47a25.835 25.835 0 0 1-2.285 2.33l-2.4 2.282c-.776.776-1.506 1.553-2.33 2.33-.85.727-1.625 1.44-2.524 2.111l2.33-2.281c.777-.776 1.626-1.43 2.452-2.208l2.33-2.282c.8-.8 1.577-1.578 2.427-2.282Zm.363 4.199a50.46 50.46 0 0 1-2.573 5.947c-2.038 4.078-5.096 9.174-6.432 11.773l9.005-17.72Z", fill: "#CFB66C" }), _jsx("path", { d: "M65.048 162.67c0 .898-.243 1.676-.534 2.452a24.106 24.106 0 0 1-.97 2.281 39.156 39.156 0 0 1-1.19 2.21c-.413.704-.898 1.43-1.263 2.16l-2.451 4.32c-.85 1.44-1.675 2.888-2.573 4.272.607-1.554 1.432-3.01 2.21-4.442.85-1.44 1.625-2.88 2.4-4.37.378-.742.718-1.503 1.019-2.28.363-.777.726-1.505 1.02-2.209.362-.776.654-1.506 1.018-2.208.412-.754.752-1.482 1.31-2.186h.004Z", fill: "#CFB66C" }), _jsx("path", { d: "M73.69 182.573s-2.4 3.179-2.16 7.208c.654-2.11 1.48-5.34 2.16-7.208Zm2.281 3.187s-.85 8.64-1.553 12.888c.995-4.91 1.188-4.498 1.553-12.888Zm15.898 13.398s-3.592 10.56-3.666 13.495c.778-3.018 2.282-9.183 3.666-13.503v.008Z", fill: "#DEC270" }), _jsx("path", { d: "M100.267 181.92s5.826 9.611 10.195 17.814c-1.182-4.128-3.902-11.699-10.195-17.814Z", fill: "#CBAF59" }), _jsx("path", { d: "M115.923 196.069a176.726 176.726 0 0 1 8.64 17.451c-.485-4.126-1.797-11.189-8.64-17.451Z", fill: "#E3C677" }), _jsx("path", { d: "M161.942 210.24c.97-.606 2.888-3.909 4.564-4.733 1.673-.85 2.936-1.019 4.441-2.694 1.504-1.749 1.92-2.816 5.218-4.199 4.613-1.992 1.44-4.564 1.44-4.564.508-.5 1.051-.961 1.625-1.383 1.19-.897 2.573-1.99 2.453-3.909-.17-3.227-.776-7.912-3.422-10.63 2.573-.534 7.499-.898 10.56-1.674 3.542-.899 5.17-2.161 5.17-2.161s-2.039-3.47 1.262-6.965c3.3-3.494 5.995-5.582 7.985-9.491-2.281-.291-5.76-1.504-14.636 1.869.479.225.941.484 1.384.776 0 0-5.461 1.505-7.452 3.18-3.472 2.936-3.908 5.34-7.67 7.136-3.762 1.797-7.549 1.31-10.678 2.767-3.13 1.456-3.592 2.694-4.735 3.229.243.29-.048.776.413 1.188-.291.413-1.99 3.18-3.714 3.18.17.656 1.626 1.14 1.626 1.14s-1.067.778-3.786.972c1.383 1.44 2.695 3.01 6.31 5.29-.29.607-1.505 1.506-1.018 2.647.534 1.141 1.92 2.695 7.45 3.957-2.815.12-6.114.776-10.56.17-4.44-.535-5.169-.85-7.911-.17.291.291 1.067.291 1.747 1.067-.728.048-5.291-.534-6.845 1.506-1.625 2.11-2.33 5.582-2.208 7.912-.85.413-1.675 1.14-1.262 2.646.413 1.506 2.573 1.99 3.957 2.936 1.382 1.02 1.504 1.383 2.816 1.141 1.382-.291 3.42-1.674 4.61-1.674 1.191 0 2.04.898 2.04.898s3.228-1.554 3.543-1.262c.291.29.048 2.16.363 2.45.32.22 3.957-1.94 4.928-2.548h-.008Z", fill: "#ECD592" }), _jsx("path", { d: "M232.5 113.107c-15.169-39.174-52.67-46.432-52.67-46.432H72.838l.415 39.903H94.56v89.102H72.838v39.83h104.03c25.073 0 45.17-25.195 45.17-25.195 32.184-45.678 10.461-97.208 10.461-97.208h.002Zm-55.073 70.363s-8.16 11.773-17.038 11.773h-17.76l-.421-88.568H165s10.56 2.208 17.938 23.106c0 0 9.78 29.92-5.51 53.69Z", "fill-opacity": ".8", fill: "#FFF" })] }) }));
19
+ export const Doge = memo(_Doge);
20
+ Doge.displayName = "Doge";
21
+ const _Ethereum = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 300 300", ...props, children: _jsxs("g", { fillRule: "nonzero", fill: "none", children: [_jsx("path", { fill: "#343434", d: "m150.08 0-2.013 6.837v198.366l2.013 2.008 92.078-54.428z" }), _jsx("path", { fill: "#8C8C8C", d: "M150.08 0 58 152.783l92.08 54.428v-96.282z" }), _jsx("path", { fill: "#3C3C3B", d: "m150.08 224.644-1.134 1.383v70.662L150.08 300l92.134-129.755z" }), _jsx("path", { fill: "#8C8C8C", d: "M150.08 300v-75.356L58 170.245z" }), _jsx("path", { fill: "#141414", d: "m150.08 207.211 92.078-54.428-92.078-41.854z" }), _jsx("path", { fill: "#393939", d: "m58 152.783 92.08 54.428v-96.282z" })] }) }));
22
+ export const Ethereum = memo(_Ethereum);
23
+ Ethereum.displayName = "Ethereum";
24
+ const _Kujira = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 300 300", ...props, children: _jsxs("g", { fill: "none", fillRule: "evenodd", children: [_jsx("circle", { fill: "#22242F", cx: "150", cy: "150", r: "147" }), _jsx("path", { d: "M150 0c82.843 0 150 67.157 150 150s-67.157 150-150 150S0 232.843 0 150 67.157 0 150 0Zm0 15C75.442 15 15 75.442 15 150c0 74.558 60.442 135 135 135 74.558 0 135-60.442 135-135 0-74.558-60.442-135-135-135Z", fill: "#E53935", fillRule: "nonzero" }), _jsx("path", { d: "m90.43 54 12.357 8.661L89.958 81 128 81v15l-.894-.001.754.528L119.834 108 147 108v79H64l-.001-68.894-6.64 9.494L45 118.939 90.43 54Zm7.569 98.999h-19V172h19v-19.001Zm34 0h-19V172h19v-19.001Zm-34-30h-19v19h19v-19Zm34 0h-19v19h19v-19Zm-22.187-27H79.465l-8.395 12h30.347l8.395-12ZM173 240v-15h18.999v-53H162v-64h75v64h-30.001l.001 68h-34Zm55.279-56.625L249 227.852l-13.673 6.382-20.721-44.478 13.673-6.381Zm-59.673 0 13.673 6.381-14.346 30.792-13.673-6.381 14.346-30.792Zm53.393-60.376h-45V157h45v-34.001Zm-35.546-65.306 23.286 23.306L237 81v15h-75V81l26.402-.001-12.617-12.629 10.668-10.677ZM64 198h15v34H64v-34Zm22 0h15v34H86v-34Zm23 0h15v34h-15v-34Zm23 1h15v15h-15v-15Z", fill: "#E53935" })] }) }));
25
+ export const Kujira = memo(_Kujira);
26
+ Kujira.displayName = "Kujira";
27
+ const _Litecoin = (props) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 300 300", ...props, children: _jsxs("g", { fillRule: "nonzero", fill: "none", children: [_jsx("circle", { fill: "#FFF", cx: "150", cy: "150", r: "134" }), _jsx("path", { d: "M150 0C67.156 0 0 67.157 0 150s67.157 150 150 150c82.842 0 150-67.157 150-150A149.568 149.568 0 0 0 150.87 0h-.872Zm2.542 155.085-15.618 52.663h83.535a4.213 4.213 0 0 1 4.358 4.068v1.38l-7.263 25.06a5.412 5.412 0 0 1-5.448 3.996H84.26l21.429-73.003-23.971 7.264 5.448-16.707 23.97-7.264 30.146-102.42a5.484 5.484 0 0 1 5.448-3.996h32.324a4.213 4.213 0 0 1 4.358 4.068v1.38l-25.423 86.44 23.97-7.263-5.084 17.433-24.334 6.9Z", fill: "#345D9D" })] }) }));
28
+ export const Litecoin = memo(_Litecoin);
29
+ Litecoin.displayName = "Litecoin";
30
+ const _Thorchain = (props) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 300 300", ...props, children: [_jsx("defs", { children: _jsxs("linearGradient", { x1: "0%", y1: "50%", x2: "100%", y2: "50%", id: "tcn", children: [_jsx("stop", { stopColor: "#0CF", offset: "0%" }), _jsx("stop", { stopColor: "#3F9", offset: "100%" })] }) }), _jsx("path", { d: "m20 300 209.008-88.203-66.12-67.219L20 300ZM96.767 77.453l66.12 67.125L281 0 96.767 77.453Z", fill: "url(#tcn)", fillRule: "nonzero" })] }));
31
+ export const Thorchain = memo(_Thorchain);
32
+ Thorchain.displayName = "Thorchain";