@e-burgos/tucu-ui 2.5.0 → 2.7.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 (1377) hide show
  1. package/CHANGELOG.md +67 -0
  2. package/assets/images/404-dark.svg.mjs +4 -0
  3. package/assets/images/404-light.svg.mjs +4 -0
  4. package/components/auth/forget-password-form.mjs +96 -0
  5. package/components/auth/reset-pin-form.mjs +86 -0
  6. package/components/auth/sign-in-form.mjs +144 -0
  7. package/components/auth/sign-up-form.mjs +226 -0
  8. package/components/blockchain/coin-card.mjs +60 -0
  9. package/components/blockchain/coin-info-card.mjs +62 -0
  10. package/components/blockchain/collection-card.mjs +80 -0
  11. package/components/blockchain/collection-select-list.mjs +128 -0
  12. package/components/blockchain/currency-swap-icons.mjs +34 -0
  13. package/components/blockchain/live-price-feed.mjs +165 -0
  14. package/components/blockchain/nft-grid.mjs +81 -0
  15. package/components/blockchain/transaction-info.mjs +25 -0
  16. package/components/buttons/button/button-drip.mjs +36 -0
  17. package/components/buttons/button/button-loader.mjs +20 -0
  18. package/components/buttons/button/index.mjs +149 -0
  19. package/components/buttons/hamburger.mjs +68 -0
  20. package/components/buttons/topup-button.mjs +33 -0
  21. package/components/cards/author-card.mjs +33 -0
  22. package/components/cards/card-container.mjs +22 -0
  23. package/components/cards/card-title.mjs +38 -0
  24. package/components/cards/card.mjs +44 -0
  25. package/components/cards/color-card.mjs +49 -0
  26. package/components/cards/feature-card.mjs +137 -0
  27. package/components/cards/info-card.mjs +133 -0
  28. package/components/cards/panel-action-card.mjs +50 -0
  29. package/components/cards/panel-card.mjs +37 -0
  30. package/components/carousel/carousel-cards.mjs +66 -0
  31. package/components/carousel/carousel-component.mjs +186 -0
  32. package/components/carousel/carousel-image.mjs +48 -0
  33. package/components/charts/area-chart/area-chart.mjs +123 -0
  34. package/components/charts/bar-chart/bar-chart.mjs +128 -0
  35. package/components/charts/components/chart-container.mjs +26 -0
  36. package/components/charts/components/chart-empty-state.mjs +24 -0
  37. package/components/charts/components/chart-tooltip.mjs +48 -0
  38. package/components/charts/composed-chart/composed-chart.mjs +153 -0
  39. package/components/charts/hooks/use-chart-theme.mjs +99 -0
  40. package/components/charts/line-chart/line-chart.mjs +111 -0
  41. package/components/charts/pie-chart/pie-chart.mjs +84 -0
  42. package/components/charts/radar-chart/radar-chart.mjs +90 -0
  43. package/components/common/avatar.mjs +81 -0
  44. package/components/common/badge.mjs +89 -0
  45. package/components/common/collapse.mjs +58 -0
  46. package/components/common/key-value-row.mjs +28 -0
  47. package/components/common/pagination.mjs +77 -0
  48. package/components/common/scrollbar-native.mjs +27 -0
  49. package/components/common/scrollbar.mjs +196 -0
  50. package/components/common/skeleton.mjs +70 -0
  51. package/components/common/stepper.mjs +57 -0
  52. package/components/common/tooltip.mjs +199 -0
  53. package/components/dialog/drawer-container.mjs +110 -0
  54. package/components/dialog/drawer.mjs +82 -0
  55. package/components/dialog/modal.mjs +205 -0
  56. package/components/dialog/sidebar-menu.mjs +197 -0
  57. package/components/dialog/sidebar.mjs +151 -0
  58. package/components/dialog/tab-modal.mjs +157 -0
  59. package/components/forms/example/error-container-example.mjs +14 -0
  60. package/components/forms/example/form-example.mjs +99 -0
  61. package/components/forms/example/form-methods-example.mjs +136 -0
  62. package/components/forms/example/validations.mjs +63 -0
  63. package/components/forms/form-field.mjs +91 -0
  64. package/components/forms/form.mjs +33 -0
  65. package/components/icons/arrow-link-icon.mjs +31 -0
  66. package/components/icons/arrow-right.mjs +26 -0
  67. package/components/icons/arrow-up.mjs +22 -0
  68. package/components/icons/bitcoin.mjs +36 -0
  69. package/components/icons/bnb.mjs +61 -0
  70. package/components/icons/book.mjs +35 -0
  71. package/components/icons/brands/facebook.mjs +22 -0
  72. package/components/icons/brands/github.mjs +26 -0
  73. package/components/icons/brands/instagram.mjs +33 -0
  74. package/components/icons/brands/telegram.mjs +24 -0
  75. package/components/icons/brands/twitter.mjs +22 -0
  76. package/components/icons/calendar-icon.mjs +24 -0
  77. package/components/icons/cardano.mjs +34 -0
  78. package/components/icons/check.mjs +11 -0
  79. package/components/icons/checkmark.mjs +25 -0
  80. package/components/icons/chevron-down.mjs +26 -0
  81. package/components/icons/chevron-forward.mjs +24 -0
  82. package/components/icons/chevron-left.mjs +30 -0
  83. package/components/icons/chevron-right.mjs +25 -0
  84. package/components/icons/classic-layout-icon.mjs +21 -0
  85. package/components/icons/close.mjs +37 -0
  86. package/components/icons/compact-grid.mjs +100 -0
  87. package/components/icons/compass.mjs +27 -0
  88. package/components/icons/copy.mjs +20 -0
  89. package/components/icons/disk.mjs +35 -0
  90. package/components/icons/document.mjs +25 -0
  91. package/components/icons/doge.mjs +33 -0
  92. package/components/icons/dots-icon.mjs +38 -0
  93. package/components/icons/ethereum-dark.mjs +57 -0
  94. package/components/icons/ethereum.mjs +61 -0
  95. package/components/icons/exchange.mjs +33 -0
  96. package/components/icons/export-icon.mjs +31 -0
  97. package/components/icons/external-link.mjs +36 -0
  98. package/components/icons/eye.mjs +35 -0
  99. package/components/icons/eyeslash.mjs +25 -0
  100. package/components/icons/farm.mjs +56 -0
  101. package/components/icons/flash.mjs +24 -0
  102. package/components/icons/flow.mjs +62 -0
  103. package/components/icons/gas-icon.mjs +20 -0
  104. package/components/icons/guide-icon.mjs +24 -0
  105. package/components/icons/history.mjs +49 -0
  106. package/components/icons/home.mjs +24 -0
  107. package/components/icons/icon-us-flag.mjs +62 -0
  108. package/components/icons/info-circle.mjs +40 -0
  109. package/components/icons/info-icon.mjs +40 -0
  110. package/components/icons/left-align.mjs +40 -0
  111. package/components/icons/level-icon.mjs +22 -0
  112. package/components/icons/link-icon.mjs +71 -0
  113. package/components/icons/live-pricing.mjs +29 -0
  114. package/components/icons/lock-icon.mjs +25 -0
  115. package/components/icons/long-arrow-left.mjs +22 -0
  116. package/components/icons/long-arrow-right.mjs +22 -0
  117. package/components/icons/long-arrow-up.mjs +20 -0
  118. package/components/icons/loop-icon.mjs +26 -0
  119. package/components/icons/media-play-icon.mjs +24 -0
  120. package/components/icons/minimal-layout-icon.mjs +21 -0
  121. package/components/icons/modern-layout-icon.mjs +21 -0
  122. package/components/icons/moon.mjs +27 -0
  123. package/components/icons/more-icon.mjs +25 -0
  124. package/components/icons/normal-grid.mjs +55 -0
  125. package/components/icons/option.mjs +61 -0
  126. package/components/icons/play-icon.mjs +16 -0
  127. package/components/icons/plus-circle.mjs +29 -0
  128. package/components/icons/plus.mjs +37 -0
  129. package/components/icons/pool.mjs +42 -0
  130. package/components/icons/power.mjs +42 -0
  131. package/components/icons/profile.mjs +37 -0
  132. package/components/icons/question-icon.mjs +20 -0
  133. package/components/icons/question-solid-icon.mjs +24 -0
  134. package/components/icons/range-icon.mjs +37 -0
  135. package/components/icons/refresh.mjs +34 -0
  136. package/components/icons/retro-layout-icon.mjs +22 -0
  137. package/components/icons/right-align.mjs +40 -0
  138. package/components/icons/sand-clock.mjs +42 -0
  139. package/components/icons/search.mjs +24 -0
  140. package/components/icons/shut-down-icon.mjs +25 -0
  141. package/components/icons/spike-bar.mjs +38 -0
  142. package/components/icons/star-fill.mjs +16 -0
  143. package/components/icons/star.mjs +16 -0
  144. package/components/icons/sun.mjs +27 -0
  145. package/components/icons/swap-icon.mjs +31 -0
  146. package/components/icons/tag-icon.mjs +27 -0
  147. package/components/icons/tag.mjs +27 -0
  148. package/components/icons/tether.mjs +33 -0
  149. package/components/icons/trading-bot-icon.mjs +27 -0
  150. package/components/icons/trend-arrow-down-icon.mjs +22 -0
  151. package/components/icons/trend-arrow-up-icon.mjs +22 -0
  152. package/components/icons/tucu.mjs +848 -0
  153. package/components/icons/unlocked.mjs +35 -0
  154. package/components/icons/usdc.mjs +40 -0
  155. package/components/icons/verified-icon.mjs +65 -0
  156. package/components/icons/verified.mjs +11 -0
  157. package/components/icons/vote-icon.mjs +27 -0
  158. package/components/icons/warning.mjs +42 -0
  159. package/components/inputs/checkbox.mjs +213 -0
  160. package/components/inputs/file-input.mjs +214 -0
  161. package/components/inputs/helpers/control-colors.mjs +87 -0
  162. package/components/inputs/helpers/control-sizes.mjs +20 -0
  163. package/components/inputs/helpers/field-error-text.mjs +39 -0
  164. package/components/inputs/helpers/field-helper-text.mjs +37 -0
  165. package/components/inputs/helpers/input-label.mjs +30 -0
  166. package/components/inputs/input-searcher.mjs +307 -0
  167. package/components/inputs/input.mjs +442 -0
  168. package/components/inputs/pin-code.mjs +174 -0
  169. package/components/inputs/radio-group.mjs +131 -0
  170. package/components/inputs/radio.mjs +168 -0
  171. package/components/inputs/select.mjs +314 -0
  172. package/components/inputs/switch.mjs +150 -0
  173. package/components/inputs/textarea.mjs +68 -0
  174. package/components/inputs/toggle-bar.mjs +44 -0
  175. package/components/layouts/admin-layout/index.mjs +76 -0
  176. package/components/layouts/clean-layout/index.mjs +12 -0
  177. package/components/layouts/header/admin-header.mjs +78 -0
  178. package/components/layouts/header/admin-right-area.mjs +9 -0
  179. package/components/layouts/header/header.mjs +64 -0
  180. package/components/layouts/header/horizontal-header.mjs +57 -0
  181. package/components/layouts/header/horizontal-right-area.mjs +44 -0
  182. package/components/layouts/horizontal/index.mjs +44 -0
  183. package/components/layouts/macos-layout/index.mjs +25 -0
  184. package/components/layouts/macos-layout/macos-sonoma-clean-layout.mjs +28 -0
  185. package/components/layouts/macos-layout/macos-sonoma-layout.mjs +96 -0
  186. package/components/layouts/macos-layout/macos-sonoma-navbar-layout.mjs +123 -0
  187. package/components/layouts/macos-layout/macos-tahoe-clean-layout.mjs +21 -0
  188. package/components/layouts/macos-layout/macos-tahoe-dock-layout.mjs +125 -0
  189. package/components/layouts/macos-layout/macos-tahoe-layout.mjs +105 -0
  190. package/components/layouts/macos-layout/macos-tahoe-navbar-layout.mjs +138 -0
  191. package/components/layouts/macos-layout/utils.mjs +27 -0
  192. package/components/layouts/menus/collapsible-menu.mjs +150 -0
  193. package/components/layouts/menus/expandable-sidebar.mjs +158 -0
  194. package/components/layouts/menus/horizontal-nav-menu.mjs +208 -0
  195. package/components/layouts/menus/menu-item.mjs +211 -0
  196. package/components/layouts/root-layout.mjs +93 -0
  197. package/components/links/active-link.mjs +26 -0
  198. package/components/links/anchor-link.mjs +15 -0
  199. package/components/list/list-Item.mjs +51 -0
  200. package/components/list/list-container.mjs +119 -0
  201. package/components/loaders/loader.mjs +94 -0
  202. package/components/loaders/progressbar.mjs +90 -0
  203. package/components/loaders/spinner.mjs +28 -0
  204. package/components/logos/defi-app-logo.mjs +219 -0
  205. package/components/logos/logo.mjs +73 -0
  206. package/components/logos/tucu-ui-logo.mjs +73 -0
  207. package/components/macos/sonoma/containers/sidebar.mjs +76 -0
  208. package/components/macos/sonoma/containers/widget.mjs +61 -0
  209. package/components/macos/sonoma/containers/window.mjs +373 -0
  210. package/components/macos/sonoma/controls/search-bar.mjs +107 -0
  211. package/components/macos/sonoma/controls/segmented-control.mjs +75 -0
  212. package/components/macos/sonoma/feedback/command-palette.mjs +164 -0
  213. package/components/macos/sonoma/feedback/macos-sonoma-toast.mjs +75 -0
  214. package/components/macos/sonoma/feedback/notification-banner.mjs +123 -0
  215. package/components/macos/sonoma/feedback/popover.mjs +79 -0
  216. package/components/macos/sonoma/layout/layout-content-sonoma.mjs +45 -0
  217. package/components/macos/sonoma/layout/layout-sidebar-sonoma.mjs +163 -0
  218. package/components/macos/sonoma/layout/toolbar-sonoma.mjs +36 -0
  219. package/components/macos/tahoe/containers/dialog-tahoe.mjs +112 -0
  220. package/components/macos/tahoe/containers/widget-tahoe.mjs +50 -0
  221. package/components/macos/tahoe/containers/window-tahoe.mjs +322 -0
  222. package/components/macos/tahoe/controls/macos-tahoe-toast.mjs +75 -0
  223. package/components/macos/tahoe/controls/notification-banner-tahoe.mjs +127 -0
  224. package/components/macos/tahoe/controls/progress-bar-tahoe.mjs +65 -0
  225. package/components/macos/tahoe/controls/search-bar-tahoe.mjs +105 -0
  226. package/components/macos/tahoe/controls/segmented-control-tahoe.mjs +72 -0
  227. package/components/macos/tahoe/feedback/command-palette-tahoe.mjs +149 -0
  228. package/components/macos/tahoe/feedback/popover-tahoe.mjs +93 -0
  229. package/components/macos/tahoe/layout/dock-tahoe.mjs +279 -0
  230. package/components/macos/tahoe/layout/layout-content-tahoe.mjs +56 -0
  231. package/components/macos/tahoe/layout/layout-sidebar-tahoe.mjs +190 -0
  232. package/components/macos/tahoe/layout/toolbar-tahoe.mjs +35 -0
  233. package/components/notifications/alert.mjs +56 -0
  234. package/components/notifications/notification-card.mjs +46 -0
  235. package/components/notifications/toast.mjs +92 -0
  236. package/components/table/basic-table.mjs +346 -0
  237. package/components/tabs/param-tab.mjs +69 -0
  238. package/components/tabs/tab-select.mjs +181 -0
  239. package/components/tabs/tab.mjs +444 -0
  240. package/components/typography/index.mjs +113 -0
  241. package/components/utils/code-block.mjs +124 -0
  242. package/components/utils/image.mjs +161 -0
  243. package/components/utils/reveal-content.mjs +51 -0
  244. package/components/utils/scroll-to-top.mjs +103 -0
  245. package/datatable/common/constants.mjs +11 -0
  246. package/datatable/common/functions/index.mjs +23 -0
  247. package/datatable/common/functions/user-scopes/index.mjs +7 -0
  248. package/datatable/common/helpers/ExpandedColumn.mjs +15 -0
  249. package/datatable/common/helpers/OffsetColumn.mjs +14 -0
  250. package/datatable/common/helpers/RowActionsColumn.mjs +16 -0
  251. package/datatable/common/helpers/RowSelectionColumn.mjs +28 -0
  252. package/datatable/common/helpers/cn.mjs +6 -0
  253. package/datatable/common/helpers/convertColumns.mjs +25 -0
  254. package/datatable/common/helpers/parseNumericValueToExport.mjs +15 -0
  255. package/datatable/components/Assets/ArrowDoubleIndicator.mjs +41 -0
  256. package/datatable/components/Assets/ArrowIndicator.mjs +24 -0
  257. package/datatable/components/Assets/ArrowLongIndicator.mjs +41 -0
  258. package/datatable/components/Assets/ArrowPaginationIndicator.mjs +38 -0
  259. package/datatable/components/Assets/AssetButton.mjs +34 -0
  260. package/datatable/components/Assets/ColumnIndicator.mjs +40 -0
  261. package/datatable/components/Assets/DeleteIndicator.mjs +29 -0
  262. package/datatable/components/Assets/DownloadIndicator.mjs +29 -0
  263. package/datatable/components/Assets/DragIndicator.mjs +31 -0
  264. package/datatable/components/Assets/EditIndicator.mjs +29 -0
  265. package/datatable/components/Assets/FilterIndicator.mjs +29 -0
  266. package/datatable/components/Assets/MoreIndicator.mjs +31 -0
  267. package/datatable/components/Assets/OpenNewTab.mjs +25 -0
  268. package/datatable/components/Assets/PinIndicator.mjs +33 -0
  269. package/datatable/components/Assets/RowIndicator.mjs +26 -0
  270. package/datatable/components/Assets/ViewDetailsIndicator.mjs +26 -0
  271. package/datatable/components/Assets/VisibilityIndicator.mjs +42 -0
  272. package/datatable/components/Assets/VoidIndicator.mjs +29 -0
  273. package/datatable/components/Common/IconButton/index.mjs +35 -0
  274. package/datatable/components/Common/Spinner.mjs +53 -0
  275. package/datatable/components/Common/Tooltip.mjs +200 -0
  276. package/datatable/components/DataTable/ColumnsVisibilityManager.mjs +101 -0
  277. package/datatable/components/DataTable/DataTable.mjs +11 -0
  278. package/datatable/components/DataTable/DataTableComponent/index.mjs +252 -0
  279. package/datatable/components/DataTable/StateTableHandler/index.mjs +76 -0
  280. package/datatable/components/DataTable/SubComponentDataTable/index.mjs +53 -0
  281. package/datatable/components/DataTable/TableCell/ExpandedRowCell/index.mjs +17 -0
  282. package/datatable/components/DataTable/TableCell/RowActionsCell/index.mjs +183 -0
  283. package/datatable/components/DataTable/TableCell/RowSelectionCell/index.mjs +58 -0
  284. package/datatable/components/DataTable/TableCell/index.mjs +114 -0
  285. package/datatable/components/DataTable/TableHead/index.mjs +62 -0
  286. package/datatable/components/DataTable/TableHeader/ColumnPin/index.mjs +48 -0
  287. package/datatable/components/DataTable/TableHeader/ColumnSearcher/InputSearcher.mjs +28 -0
  288. package/datatable/components/DataTable/TableHeader/ColumnSearcher/index.mjs +54 -0
  289. package/datatable/components/DataTable/TableHeader/ColumnSort/index.mjs +31 -0
  290. package/datatable/components/DataTable/TableHeader/ColumnVisibility/index.mjs +14 -0
  291. package/datatable/components/DataTable/TableHeader/index.mjs +251 -0
  292. package/datatable/components/DataTable/TableRow/index.mjs +79 -0
  293. package/datatable/components/DataTable/TableWrapper/index.mjs +150 -0
  294. package/datatable/components/Footer/index.mjs +51 -0
  295. package/datatable/components/ManualPagination/index.mjs +121 -0
  296. package/datatable/components/Pagination/index.mjs +100 -0
  297. package/datatable/components/RowSelection/index.mjs +23 -0
  298. package/datatable/context/DragDropContentContext.mjs +18 -0
  299. package/datatable/context/DragDropTableContext.mjs +36 -0
  300. package/datatable/context/index.mjs +499 -0
  301. package/datatable/hooks/useColumns.mjs +42 -0
  302. package/datatable/hooks/useComponentEventListener.mjs +24 -0
  303. package/datatable/hooks/useDataTableStore.mjs +188 -0
  304. package/datatable/hooks/useGetCommonPinningStyles.mjs +24 -0
  305. package/datatable/hooks/useInitialState.mjs +61 -0
  306. package/datatable/hooks/useResetCacheVersion.mjs +42 -0
  307. package/datatable/hooks/useScrollableTable.mjs +27 -0
  308. package/docs-kit/components/auto-props-table.mjs +112 -0
  309. package/docs-kit/components/dynamic-sections-page.mjs +124 -0
  310. package/docs-kit/components/hero-card.mjs +140 -0
  311. package/docs-kit/components/lazy-component-section.mjs +87 -0
  312. package/docs-kit/components/nav-options.mjs +24 -0
  313. package/docs-kit/components/playground-button.mjs +22 -0
  314. package/docs-kit/components/prop-playground.mjs +289 -0
  315. package/docs-kit/components/table-of-contents/index.mjs +19 -0
  316. package/docs-kit/components/table-of-contents/toc-default.mjs +240 -0
  317. package/docs-kit/components/table-of-contents/toc-sonoma.mjs +224 -0
  318. package/docs-kit/components/table-of-contents/toc-tahoe.mjs +234 -0
  319. package/docs-kit/components/table-of-contents/use-toc.mjs +131 -0
  320. package/docs-kit/generated/props-metadata.mjs +10952 -0
  321. package/docs-kit/utils/constants.mjs +16 -0
  322. package/hooks/use-anchor-scroll.mjs +23 -0
  323. package/hooks/use-breakpoint.mjs +14 -0
  324. package/hooks/use-element-size.mjs +19 -0
  325. package/hooks/use-event-listener.mjs +19 -0
  326. package/hooks/use-grid-switcher.mjs +8 -0
  327. package/hooks/use-is-mobile.mjs +9 -0
  328. package/hooks/use-is-mounted.mjs +8 -0
  329. package/hooks/use-lock-body-scroll.mjs +12 -0
  330. package/hooks/use-scrollable-slider.mjs +39 -0
  331. package/hooks/use-toast-store.mjs +19 -0
  332. package/hooks/use-window-scroll.mjs +55 -0
  333. package/index.css +1 -1
  334. package/index.d.ts +5608 -11
  335. package/index.js +402 -1
  336. package/index.mjs +769 -435
  337. package/libs/framer-motion/fade-in-bottom.mjs +17 -0
  338. package/libs/local-storage/index.mjs +36 -0
  339. package/package.json +26 -18
  340. package/themes/auth/components/auth-provider.mjs +12 -0
  341. package/themes/components/settings/background-picker.mjs +67 -0
  342. package/themes/components/settings/color-dot.mjs +41 -0
  343. package/themes/components/settings/color-swatch-modal.mjs +178 -0
  344. package/themes/components/settings/default-color-settings.mjs +19 -0
  345. package/themes/components/settings/direction-switcher.mjs +36 -0
  346. package/themes/components/settings/lang-selector.mjs +43 -0
  347. package/themes/components/settings/layout-switcher.mjs +117 -0
  348. package/themes/components/settings/restore-defaults.mjs +11 -0
  349. package/themes/components/settings/settings-button.mjs +126 -0
  350. package/themes/components/settings/settings-drawer.mjs +81 -0
  351. package/themes/components/settings/settings-section-heading.mjs +21 -0
  352. package/themes/components/settings/settings-types.mjs +184 -0
  353. package/themes/components/settings/sonoma-accent-picker.mjs +60 -0
  354. package/themes/components/settings/switch-mode.mjs +38 -0
  355. package/themes/components/settings/switch-variant.mjs +38 -0
  356. package/themes/components/settings/switcher-button.mjs +45 -0
  357. package/themes/components/settings/tahoe-accent-picker.mjs +62 -0
  358. package/themes/components/settings/theme-icons.mjs +82 -0
  359. package/themes/components/settings/theme-switcher.mjs +36 -0
  360. package/themes/components/settings/theme-variant-switcher.mjs +49 -0
  361. package/themes/components/theme-background.mjs +75 -0
  362. package/themes/components/theme-provider/index.mjs +10 -0
  363. package/themes/components/theme-provider/mfe-app-theme-provider.mjs +24 -0
  364. package/themes/components/theme-provider/standalone-app-theme-provider.mjs +30 -0
  365. package/themes/components/theme-provider/theme-wrapper.mjs +129 -0
  366. package/themes/config/index.mjs +752 -0
  367. package/themes/hooks/use-direction.mjs +9 -0
  368. package/themes/hooks/use-theme-color.mjs +133 -0
  369. package/themes/hooks/use-theme.mjs +206 -0
  370. package/themes/pages/access-denied.mjs +24 -0
  371. package/themes/pages/default-error.mjs +24 -0
  372. package/themes/pages/disabled-page.mjs +24 -0
  373. package/themes/pages/fallback-page.mjs +14 -0
  374. package/themes/pages/forbidden.mjs +24 -0
  375. package/themes/pages/no-routes.mjs +24 -0
  376. package/themes/pages/not-found.mjs +26 -0
  377. package/themes/pages/server-error.mjs +24 -0
  378. package/themes/pages/unknown.mjs +24 -0
  379. package/themes/pages/user-blocked.mjs +24 -0
  380. package/themes/router/components/mfe-app-routes-provider.mjs +77 -0
  381. package/themes/router/components/standalone-app-routes-provider.mjs +78 -0
  382. package/themes/router/hooks/use-public-error-routes-config.mjs +43 -0
  383. package/themes/types/index.mjs +4 -0
  384. package/1-CArqgiQa.js +0 -1
  385. package/1-Df9CGZha.js +0 -4
  386. package/__tests__/__mocks__/lucide-react.d.ts +0 -129
  387. package/__tests__/setup.d.ts +0 -0
  388. package/components/auth/forget-password-form.d.ts +0 -16
  389. package/components/auth/index.d.ts +0 -4
  390. package/components/auth/reset-pin-form.d.ts +0 -18
  391. package/components/auth/sign-in-form.d.ts +0 -18
  392. package/components/auth/sign-up-form.d.ts +0 -21
  393. package/components/blockchain/coin-card.d.ts +0 -17
  394. package/components/blockchain/coin-info-card.d.ts +0 -15
  395. package/components/blockchain/coin-listbox.d.ts +0 -19
  396. package/components/blockchain/collection-card.d.ts +0 -19
  397. package/components/blockchain/collection-select-list.d.ts +0 -14
  398. package/components/blockchain/currency-swap-icons.d.ts +0 -7
  399. package/components/blockchain/index.d.ts +0 -9
  400. package/components/blockchain/live-price-feed.d.ts +0 -24
  401. package/components/blockchain/nft-grid.d.ts +0 -11
  402. package/components/blockchain/transaction-info.d.ts +0 -7
  403. package/components/buttons/button/button-drip.d.ts +0 -12
  404. package/components/buttons/button/button-loader.d.ts +0 -9
  405. package/components/buttons/button/index.d.ts +0 -31
  406. package/components/buttons/hamburger.d.ts +0 -6
  407. package/components/buttons/index.d.ts +0 -6
  408. package/components/buttons/topup-button.d.ts +0 -8
  409. package/components/cards/author-card.d.ts +0 -7
  410. package/components/cards/card-container.d.ts +0 -7
  411. package/components/cards/card-title.d.ts +0 -10
  412. package/components/cards/card.d.ts +0 -13
  413. package/components/cards/color-card.d.ts +0 -20
  414. package/components/cards/feature-card.d.ts +0 -23
  415. package/components/cards/index.d.ts +0 -9
  416. package/components/cards/info-card.d.ts +0 -54
  417. package/components/cards/panel-action-card.d.ts +0 -16
  418. package/components/cards/panel-card.d.ts +0 -8
  419. package/components/carousel/carousel-cards.d.ts +0 -19
  420. package/components/carousel/carousel-component.d.ts +0 -41
  421. package/components/carousel/carousel-image.d.ts +0 -18
  422. package/components/carousel/index.d.ts +0 -3
  423. package/components/charts/area-chart/area-chart.d.ts +0 -9
  424. package/components/charts/area-chart/index.d.ts +0 -2
  425. package/components/charts/bar-chart/bar-chart.d.ts +0 -10
  426. package/components/charts/bar-chart/index.d.ts +0 -2
  427. package/components/charts/components/chart-container.d.ts +0 -8
  428. package/components/charts/components/chart-empty-state.d.ts +0 -6
  429. package/components/charts/components/chart-tooltip.d.ts +0 -2
  430. package/components/charts/components/index.d.ts +0 -3
  431. package/components/charts/composed-chart/composed-chart.d.ts +0 -9
  432. package/components/charts/composed-chart/index.d.ts +0 -2
  433. package/components/charts/hooks/index.d.ts +0 -2
  434. package/components/charts/hooks/use-chart-theme.d.ts +0 -13
  435. package/components/charts/index.d.ts +0 -18
  436. package/components/charts/line-chart/index.d.ts +0 -2
  437. package/components/charts/line-chart/line-chart.d.ts +0 -9
  438. package/components/charts/pie-chart/index.d.ts +0 -2
  439. package/components/charts/pie-chart/pie-chart.d.ts +0 -14
  440. package/components/charts/radar-chart/index.d.ts +0 -2
  441. package/components/charts/radar-chart/radar-chart.d.ts +0 -17
  442. package/components/charts/types.d.ts +0 -32
  443. package/components/common/avatar.d.ts +0 -12
  444. package/components/common/badge.d.ts +0 -18
  445. package/components/common/collapse.d.ts +0 -7
  446. package/components/common/index.d.ts +0 -10
  447. package/components/common/key-value-row.d.ts +0 -9
  448. package/components/common/pagination.d.ts +0 -9
  449. package/components/common/scrollbar-native.d.ts +0 -14
  450. package/components/common/scrollbar.d.ts +0 -14
  451. package/components/common/skeleton.d.ts +0 -39
  452. package/components/common/stepper.d.ts +0 -13
  453. package/components/common/tooltip.d.ts +0 -39
  454. package/components/dialog/drawer-container.d.ts +0 -9
  455. package/components/dialog/drawer.d.ts +0 -19
  456. package/components/dialog/index.d.ts +0 -6
  457. package/components/dialog/modal.d.ts +0 -24
  458. package/components/dialog/sidebar-menu.d.ts +0 -14
  459. package/components/dialog/sidebar.d.ts +0 -13
  460. package/components/dialog/tab-modal.d.ts +0 -41
  461. package/components/forms/example/error-container-example.d.ts +0 -3
  462. package/components/forms/example/form-example.d.ts +0 -3
  463. package/components/forms/example/form-methods-example.d.ts +0 -3
  464. package/components/forms/example/index.d.ts +0 -4
  465. package/components/forms/example/validations.d.ts +0 -14
  466. package/components/forms/form-field.d.ts +0 -14
  467. package/components/forms/form.d.ts +0 -13
  468. package/components/forms/hook-form.d.ts +0 -3
  469. package/components/forms/index.d.ts +0 -5
  470. package/components/forms/types/dependencies.type.d.ts +0 -11
  471. package/components/forms/types/extend-react-hook-form.type.d.ts +0 -19
  472. package/components/forms/types/index.d.ts +0 -3
  473. package/components/forms/types/validations.type.d.ts +0 -8
  474. package/components/icons/arrow-link-icon.d.ts +0 -1
  475. package/components/icons/arrow-right.d.ts +0 -1
  476. package/components/icons/arrow-up.d.ts +0 -1
  477. package/components/icons/bitcoin.d.ts +0 -1
  478. package/components/icons/bnb.d.ts +0 -1
  479. package/components/icons/book.d.ts +0 -1
  480. package/components/icons/brands/facebook.d.ts +0 -1
  481. package/components/icons/brands/github.d.ts +0 -1
  482. package/components/icons/brands/instagram.d.ts +0 -1
  483. package/components/icons/brands/telegram.d.ts +0 -1
  484. package/components/icons/brands/twitter.d.ts +0 -1
  485. package/components/icons/calendar-icon.d.ts +0 -1
  486. package/components/icons/cardano.d.ts +0 -1
  487. package/components/icons/check.d.ts +0 -1
  488. package/components/icons/checkmark.d.ts +0 -1
  489. package/components/icons/chevron-down.d.ts +0 -1
  490. package/components/icons/chevron-forward.d.ts +0 -1
  491. package/components/icons/chevron-left.d.ts +0 -1
  492. package/components/icons/chevron-right.d.ts +0 -1
  493. package/components/icons/classic-layout-icon.d.ts +0 -1
  494. package/components/icons/close.d.ts +0 -1
  495. package/components/icons/compact-grid.d.ts +0 -1
  496. package/components/icons/compass.d.ts +0 -1
  497. package/components/icons/copy.d.ts +0 -1
  498. package/components/icons/disk.d.ts +0 -1
  499. package/components/icons/document.d.ts +0 -1
  500. package/components/icons/doge.d.ts +0 -1
  501. package/components/icons/dots-icon.d.ts +0 -1
  502. package/components/icons/ethereum-dark.d.ts +0 -1
  503. package/components/icons/ethereum.d.ts +0 -1
  504. package/components/icons/exchange.d.ts +0 -1
  505. package/components/icons/export-icon.d.ts +0 -1
  506. package/components/icons/external-link.d.ts +0 -1
  507. package/components/icons/eye.d.ts +0 -1
  508. package/components/icons/eyeslash.d.ts +0 -1
  509. package/components/icons/farm.d.ts +0 -1
  510. package/components/icons/flash.d.ts +0 -1
  511. package/components/icons/flow.d.ts +0 -1
  512. package/components/icons/gas-icon.d.ts +0 -1
  513. package/components/icons/guide-icon.d.ts +0 -1
  514. package/components/icons/history.d.ts +0 -1
  515. package/components/icons/home.d.ts +0 -1
  516. package/components/icons/horizontal-three-dots.d.ts +0 -1
  517. package/components/icons/icon-us-flag.d.ts +0 -1
  518. package/components/icons/index.d.ts +0 -98
  519. package/components/icons/info-circle.d.ts +0 -1
  520. package/components/icons/info-icon.d.ts +0 -1
  521. package/components/icons/left-align.d.ts +0 -1
  522. package/components/icons/level-icon.d.ts +0 -1
  523. package/components/icons/link-icon.d.ts +0 -1
  524. package/components/icons/live-pricing.d.ts +0 -1
  525. package/components/icons/lock-icon.d.ts +0 -1
  526. package/components/icons/long-arrow-left.d.ts +0 -1
  527. package/components/icons/long-arrow-right.d.ts +0 -1
  528. package/components/icons/long-arrow-up.d.ts +0 -1
  529. package/components/icons/loop-icon.d.ts +0 -1
  530. package/components/icons/lucide-react/index.d.ts +0 -1
  531. package/components/icons/media-play-icon.d.ts +0 -1
  532. package/components/icons/menu-icon.d.ts +0 -2
  533. package/components/icons/minimal-layout-icon.d.ts +0 -1
  534. package/components/icons/modern-layout-icon.d.ts +0 -1
  535. package/components/icons/moon.d.ts +0 -1
  536. package/components/icons/more-icon.d.ts +0 -1
  537. package/components/icons/normal-grid.d.ts +0 -1
  538. package/components/icons/option.d.ts +0 -1
  539. package/components/icons/play-icon.d.ts +0 -1
  540. package/components/icons/plus-circle.d.ts +0 -1
  541. package/components/icons/plus.d.ts +0 -1
  542. package/components/icons/pool.d.ts +0 -1
  543. package/components/icons/power.d.ts +0 -1
  544. package/components/icons/profile.d.ts +0 -1
  545. package/components/icons/question-icon.d.ts +0 -1
  546. package/components/icons/question-solid-icon.d.ts +0 -1
  547. package/components/icons/range-icon.d.ts +0 -1
  548. package/components/icons/refresh.d.ts +0 -1
  549. package/components/icons/retro-layout-icon.d.ts +0 -1
  550. package/components/icons/right-align.d.ts +0 -1
  551. package/components/icons/sand-clock.d.ts +0 -1
  552. package/components/icons/search.d.ts +0 -1
  553. package/components/icons/shut-down-icon.d.ts +0 -1
  554. package/components/icons/spike-bar.d.ts +0 -1
  555. package/components/icons/star-fill.d.ts +0 -1
  556. package/components/icons/star.d.ts +0 -1
  557. package/components/icons/sun.d.ts +0 -1
  558. package/components/icons/swap-icon.d.ts +0 -1
  559. package/components/icons/tag-icon.d.ts +0 -1
  560. package/components/icons/tag.d.ts +0 -1
  561. package/components/icons/tether.d.ts +0 -1
  562. package/components/icons/trading-bot-icon.d.ts +0 -1
  563. package/components/icons/trend-arrow-down-icon.d.ts +0 -1
  564. package/components/icons/trend-arrow-up-icon.d.ts +0 -1
  565. package/components/icons/tucu.d.ts +0 -1
  566. package/components/icons/unlocked.d.ts +0 -1
  567. package/components/icons/upload.d.ts +0 -1
  568. package/components/icons/usdc.d.ts +0 -1
  569. package/components/icons/verified-icon.d.ts +0 -1
  570. package/components/icons/verified.d.ts +0 -1
  571. package/components/icons/vertical-three-dots.d.ts +0 -1
  572. package/components/icons/vote-icon.d.ts +0 -1
  573. package/components/icons/warning.d.ts +0 -1
  574. package/components/index.d.ts +0 -22
  575. package/components/inputs/checkbox.d.ts +0 -42
  576. package/components/inputs/file-input.d.ts +0 -41
  577. package/components/inputs/helpers/control-colors.d.ts +0 -13
  578. package/components/inputs/helpers/control-sizes.d.ts +0 -2
  579. package/components/inputs/helpers/field-error-text.d.ts +0 -19
  580. package/components/inputs/helpers/field-helper-text.d.ts +0 -18
  581. package/components/inputs/helpers/input-label.d.ts +0 -9
  582. package/components/inputs/index.d.ts +0 -14
  583. package/components/inputs/input-searcher.d.ts +0 -18
  584. package/components/inputs/input.d.ts +0 -29
  585. package/components/inputs/pin-code.d.ts +0 -74
  586. package/components/inputs/radio-group.d.ts +0 -56
  587. package/components/inputs/radio.d.ts +0 -87
  588. package/components/inputs/select.d.ts +0 -38
  589. package/components/inputs/switch.d.ts +0 -17
  590. package/components/inputs/textarea.d.ts +0 -20
  591. package/components/inputs/toggle-bar.d.ts +0 -11
  592. package/components/layouts/admin-layout/index.d.ts +0 -16
  593. package/components/layouts/clean-layout/index.d.ts +0 -5
  594. package/components/layouts/header/admin-header.d.ts +0 -8
  595. package/components/layouts/header/admin-right-area.d.ts +0 -3
  596. package/components/layouts/header/header.d.ts +0 -9
  597. package/components/layouts/header/horizontal-header.d.ts +0 -10
  598. package/components/layouts/header/horizontal-right-area.d.ts +0 -9
  599. package/components/layouts/horizontal/index.d.ts +0 -16
  600. package/components/layouts/index.d.ts +0 -14
  601. package/components/layouts/macos-layout/index.d.ts +0 -23
  602. package/components/layouts/macos-layout/macos-sonoma-clean-layout.d.ts +0 -7
  603. package/components/layouts/macos-layout/macos-sonoma-layout.d.ts +0 -14
  604. package/components/layouts/macos-layout/macos-sonoma-navbar-layout.d.ts +0 -14
  605. package/components/layouts/macos-layout/macos-tahoe-clean-layout.d.ts +0 -7
  606. package/components/layouts/macos-layout/macos-tahoe-dock-layout.d.ts +0 -14
  607. package/components/layouts/macos-layout/macos-tahoe-layout.d.ts +0 -14
  608. package/components/layouts/macos-layout/macos-tahoe-navbar-layout.d.ts +0 -14
  609. package/components/layouts/macos-layout/utils.d.ts +0 -3
  610. package/components/layouts/menus/collapsible-menu.d.ts +0 -3
  611. package/components/layouts/menus/expandable-sidebar.d.ts +0 -8
  612. package/components/layouts/menus/horizontal-nav-menu.d.ts +0 -7
  613. package/components/layouts/menus/menu-item.d.ts +0 -24
  614. package/components/layouts/root-layout.d.ts +0 -18
  615. package/components/links/active-link.d.ts +0 -8
  616. package/components/links/anchor-link.d.ts +0 -3
  617. package/components/links/index.d.ts +0 -2
  618. package/components/list/index.d.ts +0 -2
  619. package/components/list/list-Item.d.ts +0 -13
  620. package/components/list/list-container.d.ts +0 -19
  621. package/components/loaders/index.d.ts +0 -3
  622. package/components/loaders/loader.d.ts +0 -20
  623. package/components/loaders/progressbar.d.ts +0 -64
  624. package/components/loaders/spinner.d.ts +0 -15
  625. package/components/logos/defi-app-logo.d.ts +0 -1
  626. package/components/logos/full-logo.d.ts +0 -1
  627. package/components/logos/index.d.ts +0 -3
  628. package/components/logos/logo.d.ts +0 -13
  629. package/components/logos/tucu-ui-logo.d.ts +0 -8
  630. package/components/macos/index.d.ts +0 -2
  631. package/components/macos/sonoma/containers/sidebar.d.ts +0 -22
  632. package/components/macos/sonoma/containers/widget.d.ts +0 -17
  633. package/components/macos/sonoma/containers/window.d.ts +0 -26
  634. package/components/macos/sonoma/controls/search-bar.d.ts +0 -12
  635. package/components/macos/sonoma/controls/segmented-control.d.ts +0 -16
  636. package/components/macos/sonoma/controls/types.d.ts +0 -10
  637. package/components/macos/sonoma/feedback/command-palette.d.ts +0 -20
  638. package/components/macos/sonoma/feedback/macos-sonoma-toast.d.ts +0 -2
  639. package/components/macos/sonoma/feedback/notification-banner.d.ts +0 -17
  640. package/components/macos/sonoma/feedback/popover.d.ts +0 -22
  641. package/components/macos/sonoma/index.d.ts +0 -13
  642. package/components/macos/sonoma/layout/layout-content-sonoma.d.ts +0 -15
  643. package/components/macos/sonoma/layout/layout-sidebar-sonoma.d.ts +0 -10
  644. package/components/macos/sonoma/layout/toolbar-sonoma.d.ts +0 -6
  645. package/components/macos/tahoe/containers/dialog-tahoe.d.ts +0 -21
  646. package/components/macos/tahoe/containers/widget-tahoe.d.ts +0 -15
  647. package/components/macos/tahoe/containers/window-tahoe.d.ts +0 -36
  648. package/components/macos/tahoe/controls/macos-tahoe-toast.d.ts +0 -2
  649. package/components/macos/tahoe/controls/notification-banner-tahoe.d.ts +0 -17
  650. package/components/macos/tahoe/controls/progress-bar-tahoe.d.ts +0 -10
  651. package/components/macos/tahoe/controls/search-bar-tahoe.d.ts +0 -12
  652. package/components/macos/tahoe/controls/segmented-control-tahoe.d.ts +0 -16
  653. package/components/macos/tahoe/controls/types.d.ts +0 -10
  654. package/components/macos/tahoe/feedback/command-palette-tahoe.d.ts +0 -18
  655. package/components/macos/tahoe/feedback/popover-tahoe.d.ts +0 -22
  656. package/components/macos/tahoe/foundations/background.d.ts +0 -7
  657. package/components/macos/tahoe/index.d.ts +0 -15
  658. package/components/macos/tahoe/layout/dock-tahoe.d.ts +0 -27
  659. package/components/macos/tahoe/layout/layout-content-tahoe.d.ts +0 -17
  660. package/components/macos/tahoe/layout/layout-sidebar-tahoe.d.ts +0 -13
  661. package/components/macos/tahoe/layout/toolbar-tahoe.d.ts +0 -5
  662. package/components/notifications/alert.d.ts +0 -13
  663. package/components/notifications/index.d.ts +0 -3
  664. package/components/notifications/notification-card.d.ts +0 -14
  665. package/components/notifications/toast.d.ts +0 -3
  666. package/components/table/basic-table.d.ts +0 -28
  667. package/components/table/index.d.ts +0 -1
  668. package/components/tabs/index.d.ts +0 -3
  669. package/components/tabs/param-tab.d.ts +0 -19
  670. package/components/tabs/tab-select.d.ts +0 -10
  671. package/components/tabs/tab.d.ts +0 -50
  672. package/components/typography/index.d.ts +0 -73
  673. package/components/utils/code-block.d.ts +0 -8
  674. package/components/utils/image.d.ts +0 -25
  675. package/components/utils/index.d.ts +0 -4
  676. package/components/utils/reveal-content.d.ts +0 -6
  677. package/components/utils/scroll-to-top.d.ts +0 -50
  678. package/demo/components/auto-props-table.d.ts +0 -16
  679. package/demo/components/dynamic-sections-page.d.ts +0 -50
  680. package/demo/components/hero-card.d.ts +0 -21
  681. package/demo/components/index.d.ts +0 -8
  682. package/demo/components/lazy-component-section.d.ts +0 -11
  683. package/demo/components/nav-options.d.ts +0 -2
  684. package/demo/components/playground-button.d.ts +0 -1
  685. package/demo/components/prop-playground.d.ts +0 -31
  686. package/demo/components/table-of-contents/index.d.ts +0 -5
  687. package/demo/components/table-of-contents/toc-default.d.ts +0 -3
  688. package/demo/components/table-of-contents/toc-sonoma.d.ts +0 -3
  689. package/demo/components/table-of-contents/toc-tahoe.d.ts +0 -3
  690. package/demo/components/table-of-contents/types.d.ts +0 -17
  691. package/demo/components/table-of-contents/use-toc.d.ts +0 -26
  692. package/demo/generated/props-metadata.d.ts +0 -23
  693. package/demo/index.d.ts +0 -4
  694. package/demo/pages/blockchain/BlockchainComponents.d.ts +0 -2
  695. package/demo/pages/blockchain/blockchain-components-sections/CoinCardSection.d.ts +0 -3
  696. package/demo/pages/blockchain/blockchain-components-sections/CoinInfoCardSection.d.ts +0 -3
  697. package/demo/pages/blockchain/blockchain-components-sections/CoinListBoxSection.d.ts +0 -3
  698. package/demo/pages/blockchain/blockchain-components-sections/CollectionCardSection.d.ts +0 -3
  699. package/demo/pages/blockchain/blockchain-components-sections/CollectionSelectListSection.d.ts +0 -3
  700. package/demo/pages/blockchain/blockchain-components-sections/CurrencySwapIconsSection.d.ts +0 -3
  701. package/demo/pages/blockchain/blockchain-components-sections/LivePriceFeedSection.d.ts +0 -3
  702. package/demo/pages/blockchain/blockchain-components-sections/NFTGridSection.d.ts +0 -3
  703. package/demo/pages/blockchain/blockchain-components-sections/TransactionInfoSection.d.ts +0 -3
  704. package/demo/pages/blockchain/blockchain-components-sections/index.d.ts +0 -9
  705. package/demo/pages/components/ChartsComponents.d.ts +0 -2
  706. package/demo/pages/components/ComponentsIntroduction.d.ts +0 -1
  707. package/demo/pages/components/InputsComponents.d.ts +0 -2
  708. package/demo/pages/components/UiComponents.d.ts +0 -2
  709. package/demo/pages/components/charts-sections/AreaChartSection.d.ts +0 -3
  710. package/demo/pages/components/charts-sections/BarChartSection.d.ts +0 -3
  711. package/demo/pages/components/charts-sections/ComposedChartSection.d.ts +0 -3
  712. package/demo/pages/components/charts-sections/LineChartSection.d.ts +0 -3
  713. package/demo/pages/components/charts-sections/PieChartSection.d.ts +0 -3
  714. package/demo/pages/components/charts-sections/RadarChartSection.d.ts +0 -3
  715. package/demo/pages/components/charts-sections/index.d.ts +0 -1
  716. package/demo/pages/components/input-components-sections/CheckboxSection.d.ts +0 -3
  717. package/demo/pages/components/input-components-sections/FileInputSection.d.ts +0 -3
  718. package/demo/pages/components/input-components-sections/InputSearcherSection.d.ts +0 -3
  719. package/demo/pages/components/input-components-sections/InputSection.d.ts +0 -3
  720. package/demo/pages/components/input-components-sections/PinCodeSection.d.ts +0 -3
  721. package/demo/pages/components/input-components-sections/RadioGroupSection.d.ts +0 -3
  722. package/demo/pages/components/input-components-sections/RadioSection.d.ts +0 -3
  723. package/demo/pages/components/input-components-sections/SelectSection.d.ts +0 -3
  724. package/demo/pages/components/input-components-sections/SwitchSection.d.ts +0 -3
  725. package/demo/pages/components/input-components-sections/TextareaSection.d.ts +0 -3
  726. package/demo/pages/components/input-components-sections/ToggleBarSection.d.ts +0 -3
  727. package/demo/pages/components/input-components-sections/index.d.ts +0 -11
  728. package/demo/pages/components/ui-components-sections/ActiveLinkSection.d.ts +0 -3
  729. package/demo/pages/components/ui-components-sections/AlertSection.d.ts +0 -3
  730. package/demo/pages/components/ui-components-sections/AnchorLinkSection.d.ts +0 -3
  731. package/demo/pages/components/ui-components-sections/AuthorCardSection.d.ts +0 -3
  732. package/demo/pages/components/ui-components-sections/AvatarSection.d.ts +0 -3
  733. package/demo/pages/components/ui-components-sections/BadgeSection.d.ts +0 -3
  734. package/demo/pages/components/ui-components-sections/BasicTableSection.d.ts +0 -3
  735. package/demo/pages/components/ui-components-sections/ButtonDripSection.d.ts +0 -3
  736. package/demo/pages/components/ui-components-sections/ButtonLoaderSection.d.ts +0 -3
  737. package/demo/pages/components/ui-components-sections/CardContainerSection.d.ts +0 -3
  738. package/demo/pages/components/ui-components-sections/CardSection.d.ts +0 -3
  739. package/demo/pages/components/ui-components-sections/CardTitleSection.d.ts +0 -3
  740. package/demo/pages/components/ui-components-sections/CarouselCardsSection.d.ts +0 -3
  741. package/demo/pages/components/ui-components-sections/CarouselImageSection.d.ts +0 -3
  742. package/demo/pages/components/ui-components-sections/CarouselSection.d.ts +0 -3
  743. package/demo/pages/components/ui-components-sections/CollapseSection.d.ts +0 -3
  744. package/demo/pages/components/ui-components-sections/DefiAppLogoSection.d.ts +0 -3
  745. package/demo/pages/components/ui-components-sections/DrawerSection.d.ts +0 -3
  746. package/demo/pages/components/ui-components-sections/HamburgerSection.d.ts +0 -3
  747. package/demo/pages/components/ui-components-sections/ImageSection.d.ts +0 -3
  748. package/demo/pages/components/ui-components-sections/InfoCardSection.d.ts +0 -3
  749. package/demo/pages/components/ui-components-sections/KeyValueRowSection.d.ts +0 -3
  750. package/demo/pages/components/ui-components-sections/ListContainerSection.d.ts +0 -3
  751. package/demo/pages/components/ui-components-sections/ListItemSection.d.ts +0 -3
  752. package/demo/pages/components/ui-components-sections/LoaderSection.d.ts +0 -3
  753. package/demo/pages/components/ui-components-sections/LogoSection.d.ts +0 -3
  754. package/demo/pages/components/ui-components-sections/ModalSection.d.ts +0 -3
  755. package/demo/pages/components/ui-components-sections/NotificationCardSection.d.ts +0 -3
  756. package/demo/pages/components/ui-components-sections/PaginationSection.d.ts +0 -3
  757. package/demo/pages/components/ui-components-sections/PanelActionCardSection.d.ts +0 -3
  758. package/demo/pages/components/ui-components-sections/PanelCardSection.d.ts +0 -3
  759. package/demo/pages/components/ui-components-sections/ParamTabSection.d.ts +0 -3
  760. package/demo/pages/components/ui-components-sections/ProgressbarSection.d.ts +0 -3
  761. package/demo/pages/components/ui-components-sections/RevealContentSection.d.ts +0 -3
  762. package/demo/pages/components/ui-components-sections/ScrollToTopSection.d.ts +0 -3
  763. package/demo/pages/components/ui-components-sections/ScrollbarSection.d.ts +0 -3
  764. package/demo/pages/components/ui-components-sections/SidebarMenuSection.d.ts +0 -3
  765. package/demo/pages/components/ui-components-sections/SidebarSection.d.ts +0 -3
  766. package/demo/pages/components/ui-components-sections/SkeletonSection.d.ts +0 -3
  767. package/demo/pages/components/ui-components-sections/SpinnerSection.d.ts +0 -3
  768. package/demo/pages/components/ui-components-sections/StepperSection.d.ts +0 -3
  769. package/demo/pages/components/ui-components-sections/TabModalSection.d.ts +0 -3
  770. package/demo/pages/components/ui-components-sections/TabSection.d.ts +0 -3
  771. package/demo/pages/components/ui-components-sections/TabSelectSection.d.ts +0 -3
  772. package/demo/pages/components/ui-components-sections/ToastSection.d.ts +0 -3
  773. package/demo/pages/components/ui-components-sections/TooltipSection.d.ts +0 -3
  774. package/demo/pages/components/ui-components-sections/TopupButtonSection.d.ts +0 -3
  775. package/demo/pages/components/ui-components-sections/TucuUiLogoSection.d.ts +0 -3
  776. package/demo/pages/components/ui-components-sections/TypographySection.d.ts +0 -3
  777. package/demo/pages/components/ui-components-sections/index.d.ts +0 -45
  778. package/demo/pages/design-system/DesignSystem.d.ts +0 -2
  779. package/demo/pages/design-system/LayoutSystem.d.ts +0 -2
  780. package/demo/pages/design-system/ThemingGuide.d.ts +0 -2
  781. package/demo/pages/design-system/design-system-sections/BackgroundsSection.d.ts +0 -3
  782. package/demo/pages/design-system/design-system-sections/BorderRadiusSection.d.ts +0 -3
  783. package/demo/pages/design-system/design-system-sections/ColorSystemSection.d.ts +0 -3
  784. package/demo/pages/design-system/design-system-sections/ComponentAnatomySection.d.ts +0 -3
  785. package/demo/pages/design-system/design-system-sections/DesignPrinciplesSection.d.ts +0 -3
  786. package/demo/pages/design-system/design-system-sections/ImplementationGuidelinesSection.d.ts +0 -3
  787. package/demo/pages/design-system/design-system-sections/LayoutPrinciplesSection.d.ts +0 -3
  788. package/demo/pages/design-system/design-system-sections/ShadowsSection.d.ts +0 -3
  789. package/demo/pages/design-system/design-system-sections/SizingSection.d.ts +0 -3
  790. package/demo/pages/design-system/design-system-sections/SpacingSystemSection.d.ts +0 -3
  791. package/demo/pages/design-system/design-system-sections/TypographySection.d.ts +0 -3
  792. package/demo/pages/design-system/layout-system-sections/BestPracticesSection.d.ts +0 -3
  793. package/demo/pages/design-system/layout-system-sections/CommonErrorsSection.d.ts +0 -3
  794. package/demo/pages/design-system/layout-system-sections/ImplementationExamplesSection.d.ts +0 -3
  795. package/demo/pages/design-system/layout-system-sections/LayoutTypesSection.d.ts +0 -3
  796. package/demo/pages/design-system/layout-system-sections/MenuItemsGuideSection.d.ts +0 -3
  797. package/demo/pages/design-system/layout-system-sections/ThemeProviderRequiredSection.d.ts +0 -3
  798. package/demo/pages/design-system/theming-guide-sections/AdvancedColorSystemSection.d.ts +0 -3
  799. package/demo/pages/design-system/theming-guide-sections/AdvancedFeaturesSection.d.ts +0 -3
  800. package/demo/pages/design-system/theming-guide-sections/BestPracticesSection.d.ts +0 -3
  801. package/demo/pages/design-system/theming-guide-sections/ColorCustomizationSection.d.ts +0 -3
  802. package/demo/pages/design-system/theming-guide-sections/CustomColorPaletteSection.d.ts +0 -3
  803. package/demo/pages/design-system/theming-guide-sections/FileStructureSection.d.ts +0 -3
  804. package/demo/pages/design-system/theming-guide-sections/SettingsPanelSection.d.ts +0 -3
  805. package/demo/pages/design-system/theming-guide-sections/TailwindConfigSection.d.ts +0 -3
  806. package/demo/pages/design-system/theming-guide-sections/ThemeArchitectureSection.d.ts +0 -3
  807. package/demo/pages/design-system/theming-guide-sections/ThemeConfigurationSection.d.ts +0 -3
  808. package/demo/pages/design-system/theming-guide-sections/ThemeHooksSection.d.ts +0 -3
  809. package/demo/pages/design-system/theming-guide-sections/ThemeProviderSection.d.ts +0 -3
  810. package/demo/pages/design-system/theming-guide-sections/UsingThemeSystemSection.d.ts +0 -3
  811. package/demo/pages/features/Accessibility.d.ts +0 -2
  812. package/demo/pages/features/FeaturesIntroduction.d.ts +0 -1
  813. package/demo/pages/features/HooksUtilities.d.ts +0 -2
  814. package/demo/pages/features/IconsSystem.d.ts +0 -2
  815. package/demo/pages/features/RoutingSystem.d.ts +0 -2
  816. package/demo/pages/features/accessibility-sections/BestPracticesSection.d.ts +0 -3
  817. package/demo/pages/features/accessibility-sections/CodeExamplesSection.d.ts +0 -3
  818. package/demo/pages/features/accessibility-sections/ComponentStatusSection.d.ts +0 -3
  819. package/demo/pages/features/accessibility-sections/ImplementationStatusSection.d.ts +0 -3
  820. package/demo/pages/features/accessibility-sections/ImplementedFeaturesSection.d.ts +0 -3
  821. package/demo/pages/features/accessibility-sections/KeyboardNavigationSection.d.ts +0 -3
  822. package/demo/pages/features/accessibility-sections/TestingSection.d.ts +0 -3
  823. package/demo/pages/features/accessibility-sections/WCAGPrinciplesSection.d.ts +0 -3
  824. package/demo/pages/features/hooks-utilities-sections/BestPracticesSection.d.ts +0 -3
  825. package/demo/pages/features/hooks-utilities-sections/HookCategoriesSection.d.ts +0 -3
  826. package/demo/pages/features/hooks-utilities-sections/HookDocumentationSection.d.ts +0 -3
  827. package/demo/pages/features/hooks-utilities-sections/HookFeaturesSection.d.ts +0 -3
  828. package/demo/pages/features/hooks-utilities-sections/LiveDemonstrationsSection.d.ts +0 -3
  829. package/demo/pages/features/icon-system-sections/BestPracticesSection.d.ts +0 -3
  830. package/demo/pages/features/icon-system-sections/CustomIconsSection.d.ts +0 -3
  831. package/demo/pages/features/icon-system-sections/IconArchitectureSection.d.ts +0 -3
  832. package/demo/pages/features/icon-system-sections/IconSizingGuideSection.d.ts +0 -3
  833. package/demo/pages/features/icon-system-sections/IconSystemAPISection.d.ts +0 -3
  834. package/demo/pages/features/icon-system-sections/IconSystemBenefitsSection.d.ts +0 -3
  835. package/demo/pages/features/icon-system-sections/LucideIconsSection.d.ts +0 -3
  836. package/demo/pages/features/icon-system-sections/UsageExamplesSection.d.ts +0 -3
  837. package/demo/pages/features/routing-system-sections/APIReferenceSection.d.ts +0 -3
  838. package/demo/pages/features/routing-system-sections/ArchitecturalPatternsComparisonSection.d.ts +0 -3
  839. package/demo/pages/features/routing-system-sections/BestPracticesSection.d.ts +0 -3
  840. package/demo/pages/features/routing-system-sections/DynamicRoutesSection.d.ts +0 -3
  841. package/demo/pages/features/routing-system-sections/MFESupportSection.d.ts +0 -3
  842. package/demo/pages/features/routing-system-sections/NestedRoutesSection.d.ts +0 -3
  843. package/demo/pages/features/routing-system-sections/RouteConfigurationSection.d.ts +0 -3
  844. package/demo/pages/features/routing-system-sections/StandaloneAppSection.d.ts +0 -3
  845. package/demo/pages/features/routing-system-sections/SystemOverviewSection.d.ts +0 -3
  846. package/demo/pages/features/routing-system-sections/ThemeProviderIntegrationSection.d.ts +0 -3
  847. package/demo/pages/form-system/FormSystem.d.ts +0 -2
  848. package/demo/pages/form-system/code-example-page.d.ts +0 -2
  849. package/demo/pages/form-system/example/constants.d.ts +0 -12
  850. package/demo/pages/form-system/example/simple-form-example.d.ts +0 -3
  851. package/demo/pages/form-system/form-example-page.d.ts +0 -2
  852. package/demo/pages/form-system/form-system-sections/AdvancedFeaturesSection.d.ts +0 -3
  853. package/demo/pages/form-system/form-system-sections/ArchitectureOverviewSection.d.ts +0 -3
  854. package/demo/pages/form-system/form-system-sections/BasicUsageSection.d.ts +0 -3
  855. package/demo/pages/form-system/form-system-sections/BestPracticesSection.d.ts +0 -3
  856. package/demo/pages/form-system/form-system-sections/FormComponentsSection.d.ts +0 -3
  857. package/demo/pages/form-system/form-system-sections/FormMethodsSection.d.ts +0 -3
  858. package/demo/pages/form-system/form-system-sections/LiveDemoSection.d.ts +0 -3
  859. package/demo/pages/form-system/form-system-sections/ValidationSystemSection.d.ts +0 -3
  860. package/demo/pages/index.d.ts +0 -41
  861. package/demo/pages/introduction/BasicUsageDemo.d.ts +0 -1
  862. package/demo/pages/introduction/BasicUsageExampleCode.d.ts +0 -1
  863. package/demo/pages/introduction/BasicUsageWithCustomRouterExampleCode.d.ts +0 -1
  864. package/demo/pages/introduction/ThemeProviderExamples.d.ts +0 -7
  865. package/demo/pages/introduction/index.d.ts +0 -1
  866. package/demo/pages/macos/MacOSShowcase.d.ts +0 -2
  867. package/demo/pages/macos/MacOSSonomaShowcase.d.ts +0 -2
  868. package/demo/pages/macos/MacOSTahoeShowcase.d.ts +0 -2
  869. package/demo/pages/macos/macos-sections/sonoma/MacOSCommandPaletteSection.d.ts +0 -3
  870. package/demo/pages/macos/macos-sections/sonoma/MacOSNotificationBannerSection.d.ts +0 -3
  871. package/demo/pages/macos/macos-sections/sonoma/MacOSPopoverSection.d.ts +0 -3
  872. package/demo/pages/macos/macos-sections/sonoma/MacOSSearchBarSection.d.ts +0 -3
  873. package/demo/pages/macos/macos-sections/sonoma/MacOSSegmentedControlSection.d.ts +0 -3
  874. package/demo/pages/macos/macos-sections/sonoma/MacOSSidebarSection.d.ts +0 -3
  875. package/demo/pages/macos/macos-sections/sonoma/MacOSToolbarSection.d.ts +0 -3
  876. package/demo/pages/macos/macos-sections/sonoma/MacOSWidgetSection.d.ts +0 -3
  877. package/demo/pages/macos/macos-sections/sonoma/MacOSWindowSection.d.ts +0 -3
  878. package/demo/pages/macos/macos-sections/sonoma/SonomaColorsSection.d.ts +0 -3
  879. package/demo/pages/macos/macos-sections/sonoma/SonomaLayoutContentSection.d.ts +0 -3
  880. package/demo/pages/macos/macos-sections/sonoma/SonomaLayoutSidebarSection.d.ts +0 -3
  881. package/demo/pages/macos/macos-sections/sonoma/SonomaMaterialsSection.d.ts +0 -3
  882. package/demo/pages/macos/macos-sections/sonoma/SonomaShapesSection.d.ts +0 -3
  883. package/demo/pages/macos/macos-sections/sonoma/SonomaTypographySection.d.ts +0 -3
  884. package/demo/pages/macos/macos-sections/tahoe/MacOSBackgroundsSection.d.ts +0 -3
  885. package/demo/pages/macos/macos-sections/tahoe/MacOSColorsSection.d.ts +0 -3
  886. package/demo/pages/macos/macos-sections/tahoe/MacOSMaterialsSection.d.ts +0 -3
  887. package/demo/pages/macos/macos-sections/tahoe/MacOSTahoeSection.d.ts +0 -2
  888. package/demo/pages/macos/macos-sections/tahoe/MacOSTextStylesSection.d.ts +0 -3
  889. package/demo/pages/macos/macos-sections/tahoe/TahoeCommandPaletteSection.d.ts +0 -2
  890. package/demo/pages/macos/macos-sections/tahoe/TahoeDialogSection.d.ts +0 -3
  891. package/demo/pages/macos/macos-sections/tahoe/TahoeDockSection.d.ts +0 -3
  892. package/demo/pages/macos/macos-sections/tahoe/TahoeLayoutContentSection.d.ts +0 -3
  893. package/demo/pages/macos/macos-sections/tahoe/TahoeLayoutSidebarSection.d.ts +0 -3
  894. package/demo/pages/macos/macos-sections/tahoe/TahoeNotificationBannerSection.d.ts +0 -3
  895. package/demo/pages/macos/macos-sections/tahoe/TahoePopoverSection.d.ts +0 -3
  896. package/demo/pages/macos/macos-sections/tahoe/TahoeProgressBarSection.d.ts +0 -3
  897. package/demo/pages/macos/macos-sections/tahoe/TahoeSearchBarSection.d.ts +0 -3
  898. package/demo/pages/macos/macos-sections/tahoe/TahoeSegmentedControlSection.d.ts +0 -3
  899. package/demo/pages/macos/macos-sections/tahoe/TahoeToolbarSection.d.ts +0 -3
  900. package/demo/pages/macos/macos-sections/tahoe/TahoeWidgetSection.d.ts +0 -3
  901. package/demo/pages/macos/macos-sections/tahoe/TahoeWindowSection.d.ts +0 -3
  902. package/demo/pages/mcp/MCPServerPage.d.ts +0 -2
  903. package/demo/pages/mcp/mcp-sections/ClientConfigSection.d.ts +0 -3
  904. package/demo/pages/mcp/mcp-sections/DeploymentSection.d.ts +0 -3
  905. package/demo/pages/mcp/mcp-sections/InstallationSection.d.ts +0 -3
  906. package/demo/pages/mcp/mcp-sections/OverviewSection.d.ts +0 -3
  907. package/demo/pages/mcp/mcp-sections/PromptsSection.d.ts +0 -3
  908. package/demo/pages/mcp/mcp-sections/ResourcesSection.d.ts +0 -3
  909. package/demo/pages/mcp/mcp-sections/SecuritySection.d.ts +0 -3
  910. package/demo/pages/mcp/mcp-sections/ToolsSection.d.ts +0 -3
  911. package/demo/pages/tailwind/AccessibilityUtilities.d.ts +0 -1
  912. package/demo/pages/tailwind/BackgroundUtilities.d.ts +0 -1
  913. package/demo/pages/tailwind/BordersUtilities.d.ts +0 -1
  914. package/demo/pages/tailwind/Colors.d.ts +0 -1
  915. package/demo/pages/tailwind/EffectsUtilities.d.ts +0 -1
  916. package/demo/pages/tailwind/FiltersUtilities.d.ts +0 -1
  917. package/demo/pages/tailwind/FlexboxGridUtilities.d.ts +0 -1
  918. package/demo/pages/tailwind/InteractivityUtilities.d.ts +0 -1
  919. package/demo/pages/tailwind/LayoutUtilities.d.ts +0 -1
  920. package/demo/pages/tailwind/SVGUtilities.d.ts +0 -1
  921. package/demo/pages/tailwind/TablesUtilities.d.ts +0 -1
  922. package/demo/pages/tailwind/TailwindIntroduction.d.ts +0 -1
  923. package/demo/pages/tailwind/TransformsUtilities.d.ts +0 -1
  924. package/demo/pages/tailwind/TransitionsAnimations.d.ts +0 -1
  925. package/demo/pages/tailwind/TypographyUtilities.d.ts +0 -1
  926. package/demo/utils/constants.d.ts +0 -13
  927. package/demo/utils/index.d.ts +0 -1
  928. package/documentation/APIReferenceSection-BuGaLjk4.js +0 -213
  929. package/documentation/APIReferenceSection-vOO5q7kb.js +0 -1
  930. package/documentation/ActiveLinkSection-DIb03elW.js +0 -23
  931. package/documentation/ActiveLinkSection-hXSKjm7P.js +0 -79
  932. package/documentation/AdvancedColorSystemSection-BNGCLPR3.js +0 -181
  933. package/documentation/AdvancedColorSystemSection-pzKTpmEy.js +0 -17
  934. package/documentation/AdvancedFeaturesSection-B5lA3r0v.js +0 -1
  935. package/documentation/AdvancedFeaturesSection-Bh-WxfFY.js +0 -117
  936. package/documentation/AdvancedFeaturesSection-DExCw62I.js +0 -70
  937. package/documentation/AdvancedFeaturesSection-rwcki92F.js +0 -32
  938. package/documentation/AlertSection-D9eDywN3.js +0 -96
  939. package/documentation/AlertSection-wm1TI70h.js +0 -26
  940. package/documentation/AnchorLinkSection-CCVHnu-V.js +0 -65
  941. package/documentation/AnchorLinkSection-CXA1DwCn.js +0 -20
  942. package/documentation/ArchitecturalPatternsComparisonSection-D59jbCG8.js +0 -34
  943. package/documentation/ArchitecturalPatternsComparisonSection-Df1CQv6V.js +0 -182
  944. package/documentation/ArchitectureOverviewSection-B8Gu1Qwg.js +0 -1
  945. package/documentation/ArchitectureOverviewSection-CqMMpWAZ.js +0 -210
  946. package/documentation/AreaChartSection-CwmW-uJO.js +0 -132
  947. package/documentation/AreaChartSection-DjxzNYFk.js +0 -22
  948. package/documentation/AuthorCardSection-BszBY56Q.js +0 -79
  949. package/documentation/AuthorCardSection-DX6K6A58.js +0 -18
  950. package/documentation/AvatarSection-BaNCsM7-.js +0 -89
  951. package/documentation/AvatarSection-CHC86-XQ.js +0 -19
  952. package/documentation/BackgroundsSection-BphgbOsP.js +0 -6
  953. package/documentation/BackgroundsSection-DRGHkPRw.js +0 -365
  954. package/documentation/BadgeSection-DPqnIeW_.js +0 -179
  955. package/documentation/BadgeSection-DQuVvzuk.js +0 -49
  956. package/documentation/BarChartSection-192XA4lC.js +0 -127
  957. package/documentation/BarChartSection-CQTrN7II.js +0 -23
  958. package/documentation/BasicTableSection-DS9tghtn.js +0 -133
  959. package/documentation/BasicTableSection-DUxEk0Xz.js +0 -36
  960. package/documentation/BasicUsageSection-Bnk07Qtr.js +0 -45
  961. package/documentation/BasicUsageSection-D1mvyWVC.js +0 -133
  962. package/documentation/BestPracticesSection-B7d1WnXg.js +0 -61
  963. package/documentation/BestPracticesSection-BvEXXuBH.js +0 -1
  964. package/documentation/BestPracticesSection-C9A7z9xg.js +0 -1
  965. package/documentation/BestPracticesSection-CFILeUX1.js +0 -34
  966. package/documentation/BestPracticesSection-CH7suMGV.js +0 -79
  967. package/documentation/BestPracticesSection-C_UO8oF3.js +0 -1
  968. package/documentation/BestPracticesSection-DI3iv7N4.js +0 -151
  969. package/documentation/BestPracticesSection-DfkGrr2Q.js +0 -1
  970. package/documentation/BestPracticesSection-Dl3jrGq4.js +0 -1
  971. package/documentation/BestPracticesSection-DlYPFmx9.js +0 -91
  972. package/documentation/BestPracticesSection-DvxanX6e.js +0 -151
  973. package/documentation/BestPracticesSection-fJ-_uwQu.js +0 -1
  974. package/documentation/BestPracticesSection-klWNOwRv.js +0 -153
  975. package/documentation/BestPracticesSection-nvtTMLIJ.js +0 -137
  976. package/documentation/BorderRadiusSection-BCNMPn6e.js +0 -58
  977. package/documentation/BorderRadiusSection-Cf18TiCF.js +0 -1
  978. package/documentation/ButtonDripSection-BEhYR8Ne.js +0 -110
  979. package/documentation/ButtonDripSection-CI9fFXx_.js +0 -21
  980. package/documentation/ButtonLoaderSection-BW_hgeeM.js +0 -153
  981. package/documentation/ButtonLoaderSection-BZUXqzag.js +0 -31
  982. package/documentation/CardContainerSection-BRPPLI1C.js +0 -61
  983. package/documentation/CardContainerSection-dZUV-wdl.js +0 -22
  984. package/documentation/CardSection-B-RjdTHj.js +0 -26
  985. package/documentation/CardSection-BEcASXn9.js +0 -136
  986. package/documentation/CardTitleSection-CZbYlPce.js +0 -20
  987. package/documentation/CardTitleSection-DC_JgQnV.js +0 -72
  988. package/documentation/CarouselCardsSection-BgSiYzS-.js +0 -38
  989. package/documentation/CarouselCardsSection-CyuFw30M.js +0 -174
  990. package/documentation/CarouselImageSection-CYUZkmE7.js +0 -179
  991. package/documentation/CarouselImageSection-RaIGiFPI.js +0 -39
  992. package/documentation/CarouselSection-BcAird9B.js +0 -25
  993. package/documentation/CarouselSection-CmOg8CA7.js +0 -123
  994. package/documentation/CheckboxSection-Ci3XeeBU.js +0 -29
  995. package/documentation/CheckboxSection-fCbCTXVi.js +0 -175
  996. package/documentation/ClientConfigSection-B1u9ICgp.js +0 -39
  997. package/documentation/ClientConfigSection-DKoyUKX1.js +0 -126
  998. package/documentation/CodeExamplesSection-BUiRFlz_.js +0 -68
  999. package/documentation/CodeExamplesSection-BiY0m_Cj.js +0 -134
  1000. package/documentation/CoinCardSection-bsveQMjk.js +0 -13
  1001. package/documentation/CoinCardSection-zgM8YzAw.js +0 -132
  1002. package/documentation/CoinInfoCardSection-BGxjfX33.js +0 -12
  1003. package/documentation/CoinInfoCardSection-BpDitwaZ.js +0 -148
  1004. package/documentation/CoinListBoxSection-BNhCV6tk.js +0 -129
  1005. package/documentation/CoinListBoxSection-D4FrHQqq.js +0 -24
  1006. package/documentation/CollapseSection-BJ_Eq2XG.js +0 -28
  1007. package/documentation/CollapseSection-BTJCuwtH.js +0 -84
  1008. package/documentation/CollectionCardSection-DhqMENmH.js +0 -17
  1009. package/documentation/CollectionCardSection-Dnw-AMeA.js +0 -78
  1010. package/documentation/CollectionSelectListSection-DjER6UPv.js +0 -149
  1011. package/documentation/CollectionSelectListSection-q3vag31o.js +0 -15
  1012. package/documentation/ColorCustomizationSection-Cc_eIdHN.js +0 -141
  1013. package/documentation/ColorCustomizationSection-K07wRIed.js +0 -1
  1014. package/documentation/ColorSystemSection-BsW26KPw.js +0 -339
  1015. package/documentation/ColorSystemSection-DewtcS09.js +0 -1
  1016. package/documentation/CommonErrorsSection-DUfQIOFx.js +0 -77
  1017. package/documentation/CommonErrorsSection-DYprV2-q.js +0 -1
  1018. package/documentation/ComponentAnatomySection-B48mRC0o.js +0 -1
  1019. package/documentation/ComponentAnatomySection-MVU9xWRw.js +0 -78
  1020. package/documentation/ComponentStatusSection-C8Xgbs1J.js +0 -1
  1021. package/documentation/ComponentStatusSection-TiSLIuX0.js +0 -148
  1022. package/documentation/ComposedChartSection-Be70sMuM.js +0 -113
  1023. package/documentation/ComposedChartSection-Xih3hFxi.js +0 -21
  1024. package/documentation/CurrencySwapIconsSection-D1-0fKb2.js +0 -7
  1025. package/documentation/CurrencySwapIconsSection-LJEH4zY2.js +0 -73
  1026. package/documentation/CustomColorPaletteSection-17OLhGAJ.js +0 -74
  1027. package/documentation/CustomColorPaletteSection-DvcVgPSw.js +0 -19
  1028. package/documentation/CustomIconsSection-BML7Ykph.js +0 -172
  1029. package/documentation/CustomIconsSection-B_twKCge.js +0 -3
  1030. package/documentation/DefiAppLogoSection-DV9roRzn.js +0 -132
  1031. package/documentation/DefiAppLogoSection-yU373rnC.js +0 -38
  1032. package/documentation/DeploymentSection-DdrdxadS.js +0 -36
  1033. package/documentation/DeploymentSection-Zq8li6Rk.js +0 -136
  1034. package/documentation/DesignPrinciplesSection-BFeLS1Jc.js +0 -1
  1035. package/documentation/DesignPrinciplesSection-CQ9uXtm0.js +0 -68
  1036. package/documentation/DrawerSection-BXsL-pSW.js +0 -155
  1037. package/documentation/DrawerSection-tFhF0Yk2.js +0 -42
  1038. package/documentation/DynamicRoutesSection-ByxCJkKq.js +0 -112
  1039. package/documentation/DynamicRoutesSection-DtEe2l3H.js +0 -47
  1040. package/documentation/FileInputSection-CUNjOlBC.js +0 -237
  1041. package/documentation/FileInputSection-D9YC4zr4.js +0 -73
  1042. package/documentation/FileStructureSection-DCuzzRzZ.js +0 -26
  1043. package/documentation/FileStructureSection-RjF24Eeb.js +0 -101
  1044. package/documentation/FormComponentsSection-W4xthxql.js +0 -1
  1045. package/documentation/FormComponentsSection-qIVGkJO5.js +0 -148
  1046. package/documentation/FormMethodsSection-BshjLI6k.js +0 -53
  1047. package/documentation/FormMethodsSection-H0NH1Kq_.js +0 -194
  1048. package/documentation/HamburgerSection-BEuEb_AH.js +0 -97
  1049. package/documentation/HamburgerSection-BhZWXoXB.js +0 -19
  1050. package/documentation/HookCategoriesSection-BKSM-O8G.js +0 -119
  1051. package/documentation/HookCategoriesSection-CV5hBia7.js +0 -1
  1052. package/documentation/HookDocumentationSection-Ch4nDyTq.js +0 -100
  1053. package/documentation/HookDocumentationSection-ijU1LCaj.js +0 -467
  1054. package/documentation/HookFeaturesSection-C_V77TA5.js +0 -1
  1055. package/documentation/HookFeaturesSection-D_dR8OBL.js +0 -70
  1056. package/documentation/IconArchitectureSection-CiVJ4728.js +0 -145
  1057. package/documentation/IconArchitectureSection-ias4EYu3.js +0 -11
  1058. package/documentation/IconSizingGuideSection-C5rHdRmp.js +0 -1
  1059. package/documentation/IconSizingGuideSection-ZHrKT5rP.js +0 -118
  1060. package/documentation/IconSystemAPISection-B-s4deWd.js +0 -1
  1061. package/documentation/IconSystemAPISection-K1q81uHL.js +0 -138
  1062. package/documentation/IconSystemBenefitsSection-BXM5YXn5.js +0 -1
  1063. package/documentation/IconSystemBenefitsSection-DhmIDZc1.js +0 -120
  1064. package/documentation/ImageSection-D3mMNujR.js +0 -82
  1065. package/documentation/ImageSection-q1QmHQ_L.js +0 -508
  1066. package/documentation/ImplementationExamplesSection-BzmiP-T4.js +0 -429
  1067. package/documentation/ImplementationExamplesSection-WGGTXLkG.js +0 -761
  1068. package/documentation/ImplementationGuidelinesSection-D2ms5PqO.js +0 -1
  1069. package/documentation/ImplementationGuidelinesSection-DlpKMLZ_.js +0 -144
  1070. package/documentation/ImplementationStatusSection-BnEi6nv4.js +0 -62
  1071. package/documentation/ImplementationStatusSection-ChX-zdjZ.js +0 -1
  1072. package/documentation/ImplementedFeaturesSection-C7ep5GNQ.js +0 -70
  1073. package/documentation/ImplementedFeaturesSection-CFHFcIUm.js +0 -1
  1074. package/documentation/InfoCardSection-B02qLuF6.js +0 -38
  1075. package/documentation/InfoCardSection-CTygtxPU.js +0 -291
  1076. package/documentation/InputSearcherSection-CJd1uwoE.js +0 -45
  1077. package/documentation/InputSearcherSection-JzvqQlCG.js +0 -267
  1078. package/documentation/InputSection-BPLR_DD_.js +0 -50
  1079. package/documentation/InputSection-DdzpSHWp.js +0 -280
  1080. package/documentation/InstallationSection-BfQULwsk.js +0 -22
  1081. package/documentation/InstallationSection-DAX5Jma4.js +0 -125
  1082. package/documentation/KeyValueRowSection-DpXvuany.js +0 -117
  1083. package/documentation/KeyValueRowSection-Vk2Og3XV.js +0 -17
  1084. package/documentation/KeyboardNavigationSection-DBHb6M7i.js +0 -130
  1085. package/documentation/KeyboardNavigationSection-DSDQWvAN.js +0 -27
  1086. package/documentation/LayoutPrinciplesSection-BbZcW8R3.js +0 -148
  1087. package/documentation/LayoutPrinciplesSection-XpAJdllO.js +0 -1
  1088. package/documentation/LayoutTypesSection-BtXrqAIT.js +0 -450
  1089. package/documentation/LayoutTypesSection-C-7mU0ZX.js +0 -1
  1090. package/documentation/LineChartSection-2vGnmySf.js +0 -130
  1091. package/documentation/LineChartSection-97CrQcFO.js +0 -21
  1092. package/documentation/ListContainerSection-5rcF8Fpk.js +0 -168
  1093. package/documentation/ListContainerSection-DRJITbJp.js +0 -39
  1094. package/documentation/ListItemSection-D0Bbbebh.js +0 -37
  1095. package/documentation/ListItemSection-DnAV85N9.js +0 -132
  1096. package/documentation/LiveDemoSection-BsPDLjy5.js +0 -1
  1097. package/documentation/LiveDemoSection-CcWjO6e8.js +0 -56
  1098. package/documentation/LiveDemonstrationsSection-CFmKZyVT.js +0 -28
  1099. package/documentation/LiveDemonstrationsSection-CqiqsC9o.js +0 -539
  1100. package/documentation/LivePriceFeedSection-2f2Lri-M.js +0 -143
  1101. package/documentation/LivePriceFeedSection-xruqFumk.js +0 -20
  1102. package/documentation/LoaderSection-B3_cpL4h.js +0 -23
  1103. package/documentation/LoaderSection-CVIcsumu.js +0 -96
  1104. package/documentation/LogoSection-Bi9m5Eid.js +0 -265
  1105. package/documentation/LogoSection-DQq_CA5R.js +0 -101
  1106. package/documentation/LucideIconsSection-C1yoAR38.js +0 -169
  1107. package/documentation/LucideIconsSection-DMLkXGfp.js +0 -1
  1108. package/documentation/MFESupportSection-CNJLJykb.js +0 -97
  1109. package/documentation/MFESupportSection-D4qheJMQ.js +0 -222
  1110. package/documentation/MacOSBackgroundsSection-Cqgf2s_S.js +0 -1
  1111. package/documentation/MacOSBackgroundsSection-D2rvKLZc.js +0 -293
  1112. package/documentation/MacOSColorsSection-3kw_FYMA.js +0 -1
  1113. package/documentation/MacOSColorsSection-LeWmqCH6.js +0 -305
  1114. package/documentation/MacOSCommandPaletteSection-ChoMTEdg.js +0 -33
  1115. package/documentation/MacOSCommandPaletteSection-CigtkU3V.js +0 -143
  1116. package/documentation/MacOSMaterialsSection-BpbSIN1m.js +0 -280
  1117. package/documentation/MacOSMaterialsSection-DVc8K0Ra.js +0 -1
  1118. package/documentation/MacOSNotificationBannerSection-D1_xjcml.js +0 -169
  1119. package/documentation/MacOSNotificationBannerSection-GYBjryLN.js +0 -25
  1120. package/documentation/MacOSPopoverSection-B7aiG5Q6.js +0 -266
  1121. package/documentation/MacOSPopoverSection-BiNY5oHn.js +0 -33
  1122. package/documentation/MacOSSearchBarSection-BPmwBz_E.js +0 -108
  1123. package/documentation/MacOSSearchBarSection-DeKloWI2.js +0 -17
  1124. package/documentation/MacOSSegmentedControlSection-D2RWyh1M.js +0 -138
  1125. package/documentation/MacOSSegmentedControlSection-DQYUVgAQ.js +0 -19
  1126. package/documentation/MacOSSidebarSection-CD_Mk8gZ.js +0 -35
  1127. package/documentation/MacOSSidebarSection-CMlYDEdz.js +0 -251
  1128. package/documentation/MacOSTahoeSection-DPuq0Mdo.js +0 -98
  1129. package/documentation/MacOSTahoeSection-NuwSNNQr.js +0 -1
  1130. package/documentation/MacOSTextStylesSection-CC3hy3IX.js +0 -1
  1131. package/documentation/MacOSTextStylesSection-DZ7P33PQ.js +0 -366
  1132. package/documentation/MacOSToolbarSection-B09pIaYX.js +0 -100
  1133. package/documentation/MacOSToolbarSection-CSO5R58s.js +0 -23
  1134. package/documentation/MacOSWidgetSection-BiwLJeZs.js +0 -107
  1135. package/documentation/MacOSWidgetSection-Dd9uuDwE.js +0 -19
  1136. package/documentation/MacOSWindowSection-BFew8rAG.js +0 -237
  1137. package/documentation/MacOSWindowSection-DD9TSZrq.js +0 -22
  1138. package/documentation/MenuItemsGuideSection-BQX2CJl8.js +0 -351
  1139. package/documentation/MenuItemsGuideSection-CpwqiKXd.js +0 -126
  1140. package/documentation/ModalSection-Ba-YDDxD.js +0 -114
  1141. package/documentation/ModalSection-BaKzs5hZ.js +0 -30
  1142. package/documentation/NFTGridSection-Dy-Ul2Ik.js +0 -19
  1143. package/documentation/NFTGridSection-P8SUQfCz.js +0 -160
  1144. package/documentation/NestedRoutesSection-BtgXarM0.js +0 -120
  1145. package/documentation/NestedRoutesSection-CAAjjFZN.js +0 -39
  1146. package/documentation/NotificationCardSection-CahW9xWR.js +0 -120
  1147. package/documentation/NotificationCardSection-DLHftS_t.js +0 -29
  1148. package/documentation/OverviewSection-Dx4cWnvO.js +0 -149
  1149. package/documentation/OverviewSection-yESqzgpR.js +0 -21
  1150. package/documentation/PaginationSection-BTm7MLWb.js +0 -19
  1151. package/documentation/PaginationSection-w-C3_8OX.js +0 -141
  1152. package/documentation/PanelActionCardSection-DB5atYQH.js +0 -29
  1153. package/documentation/PanelActionCardSection-DThpH-iA.js +0 -104
  1154. package/documentation/PanelCardSection-PoZLivo5.js +0 -16
  1155. package/documentation/PanelCardSection-qkmlfddG.js +0 -60
  1156. package/documentation/ParamTabSection-B8Ea5Jyo.js +0 -581
  1157. package/documentation/ParamTabSection-BUFHEsdU.js +0 -94
  1158. package/documentation/PieChartSection-DZ-efnf5.js +0 -91
  1159. package/documentation/PieChartSection-rvFWOh4i.js +0 -19
  1160. package/documentation/PinCodeSection-DY6pf21z.js +0 -235
  1161. package/documentation/PinCodeSection-iYhP8WRn.js +0 -32
  1162. package/documentation/ProgressbarSection-CDDDOLHD.js +0 -22
  1163. package/documentation/ProgressbarSection-DYz8aKoY.js +0 -142
  1164. package/documentation/PromptsSection-DNXFATf2.js +0 -118
  1165. package/documentation/PromptsSection-goD5CutA.js +0 -18
  1166. package/documentation/RadarChartSection-DLousZqi.js +0 -114
  1167. package/documentation/RadarChartSection-DRdLj3Uf.js +0 -21
  1168. package/documentation/RadioGroupSection-BKRE5Sf7.js +0 -37
  1169. package/documentation/RadioGroupSection-DimH8B5V.js +0 -269
  1170. package/documentation/RadioSection-Bs-DIwBf.js +0 -183
  1171. package/documentation/RadioSection-DAHq52V_.js +0 -27
  1172. package/documentation/ResourcesSection-BBvso4xC.js +0 -119
  1173. package/documentation/ResourcesSection-hRVu0-E3.js +0 -13
  1174. package/documentation/RevealContentSection-CE7RMGJq.js +0 -80
  1175. package/documentation/RevealContentSection-GfXzu3Ol.js +0 -21
  1176. package/documentation/RouteConfigurationSection-B8L9XluH.js +0 -88
  1177. package/documentation/RouteConfigurationSection-BYS8XsJC.js +0 -42
  1178. package/documentation/ScrollToTopSection-DKG5MWPc.js +0 -38
  1179. package/documentation/ScrollToTopSection-yVHR_9Pk.js +0 -141
  1180. package/documentation/ScrollbarSection-DQF_A8ik.js +0 -103
  1181. package/documentation/ScrollbarSection-eY8OTJHe.js +0 -30
  1182. package/documentation/SecuritySection-64HgmRhe.js +0 -164
  1183. package/documentation/SecuritySection-Bj_wYKUq.js +0 -27
  1184. package/documentation/SelectSection-DJ3tgyvR.js +0 -52
  1185. package/documentation/SelectSection-Dgxl0it2.js +0 -346
  1186. package/documentation/SettingsPanelSection-SFgqPTH6.js +0 -139
  1187. package/documentation/SettingsPanelSection-v6yvF5g4.js +0 -1
  1188. package/documentation/ShadowsSection-D2Xwyeuv.js +0 -101
  1189. package/documentation/ShadowsSection-OFJWDo8c.js +0 -1
  1190. package/documentation/SidebarMenuSection-BFiHaKIQ.js +0 -108
  1191. package/documentation/SidebarMenuSection-C-6Mru3D.js +0 -47
  1192. package/documentation/SidebarSection-BUYMpIy9.js +0 -26
  1193. package/documentation/SidebarSection-DHG4M5g2.js +0 -70
  1194. package/documentation/SizingSection-CXXXGeBV.js +0 -1
  1195. package/documentation/SizingSection-QO_NL9qO.js +0 -97
  1196. package/documentation/SkeletonSection-C5O2AHio.js +0 -53
  1197. package/documentation/SkeletonSection-D4gNU7bm.js +0 -202
  1198. package/documentation/SonomaColorsSection-DaX0wgtU.js +0 -388
  1199. package/documentation/SonomaColorsSection-qE3LKcsl.js +0 -1
  1200. package/documentation/SonomaLayoutContentSection-KH_Pmq1e.js +0 -16
  1201. package/documentation/SonomaLayoutContentSection-lk3jOdcA.js +0 -67
  1202. package/documentation/SonomaLayoutSidebarSection-B_lVlOoF.js +0 -27
  1203. package/documentation/SonomaLayoutSidebarSection-CGsVHx3w.js +0 -96
  1204. package/documentation/SonomaMaterialsSection-B2GKoQVM.js +0 -334
  1205. package/documentation/SonomaMaterialsSection-CgbY4y-g.js +0 -9
  1206. package/documentation/SonomaShapesSection-CLA0w7wt.js +0 -482
  1207. package/documentation/SonomaShapesSection-aQq097e6.js +0 -10
  1208. package/documentation/SonomaTypographySection-DuZtgZjb.js +0 -1
  1209. package/documentation/SonomaTypographySection-U1N16kAy.js +0 -389
  1210. package/documentation/SpacingSystemSection-BkqBvLpk.js +0 -1
  1211. package/documentation/SpacingSystemSection-DnU8aeIx.js +0 -79
  1212. package/documentation/SpinnerSection-DDwEF3DD.js +0 -78
  1213. package/documentation/SpinnerSection-Su1usSZJ.js +0 -18
  1214. package/documentation/StandaloneAppSection-BC6MhdY2.js +0 -181
  1215. package/documentation/StandaloneAppSection-DANtoenH.js +0 -71
  1216. package/documentation/StepperSection-BLwNTd_9.js +0 -166
  1217. package/documentation/StepperSection-BtE0uEh8.js +0 -29
  1218. package/documentation/SwitchSection-Bm8EmnZc.js +0 -223
  1219. package/documentation/SwitchSection-MO2zu9Js.js +0 -28
  1220. package/documentation/SystemOverviewSection-DXic3wL2.js +0 -1
  1221. package/documentation/SystemOverviewSection-X7-1cqED.js +0 -58
  1222. package/documentation/TabModalSection-ClQQ9-6q.js +0 -200
  1223. package/documentation/TabModalSection-Cy5MPQVA.js +0 -52
  1224. package/documentation/TabSection-CPijk6Ta.js +0 -293
  1225. package/documentation/TabSection-qGiMXnBi.js +0 -85
  1226. package/documentation/TabSelectSection-Bk-DIJad.js +0 -102
  1227. package/documentation/TabSelectSection-BrYYnzPJ.js +0 -420
  1228. package/documentation/TahoeCommandPaletteSection-CXpg1hY6.js +0 -21
  1229. package/documentation/TahoeCommandPaletteSection-uLevgWk8.js +0 -217
  1230. package/documentation/TahoeDialogSection-CD5v8gt3.js +0 -22
  1231. package/documentation/TahoeDialogSection-e1-T1_QN.js +0 -228
  1232. package/documentation/TahoeDockSection-CAo5ifrl.js +0 -29
  1233. package/documentation/TahoeDockSection-DX2OvS5V.js +0 -228
  1234. package/documentation/TahoeLayoutContentSection-BV20aXQn.js +0 -17
  1235. package/documentation/TahoeLayoutContentSection-GRD0fXGl.js +0 -68
  1236. package/documentation/TahoeLayoutSidebarSection-BBtU52ML.js +0 -114
  1237. package/documentation/TahoeLayoutSidebarSection-CtTixYWq.js +0 -36
  1238. package/documentation/TahoeNotificationBannerSection-DRI2NGMf.js +0 -144
  1239. package/documentation/TahoeNotificationBannerSection-E_QfykrY.js +0 -22
  1240. package/documentation/TahoePopoverSection-BALDKfWy.js +0 -220
  1241. package/documentation/TahoePopoverSection-DxyiMe8a.js +0 -24
  1242. package/documentation/TahoeProgressBarSection--ntwmqLK.js +0 -16
  1243. package/documentation/TahoeProgressBarSection-BfluMJvJ.js +0 -124
  1244. package/documentation/TahoeSearchBarSection-Cu3D_UUb.js +0 -117
  1245. package/documentation/TahoeSearchBarSection-D0MgndhN.js +0 -10
  1246. package/documentation/TahoeSegmentedControlSection-1o7lVQYN.js +0 -12
  1247. package/documentation/TahoeSegmentedControlSection-mMZpbchw.js +0 -178
  1248. package/documentation/TahoeToolbarSection-D8WWxm4T.js +0 -17
  1249. package/documentation/TahoeToolbarSection-PFkeKd3i.js +0 -81
  1250. package/documentation/TahoeWidgetSection-BVEBRImz.js +0 -13
  1251. package/documentation/TahoeWidgetSection-rEATjL-l.js +0 -121
  1252. package/documentation/TahoeWindowSection-DGavFNJq.js +0 -289
  1253. package/documentation/TahoeWindowSection-u3bobm-J.js +0 -24
  1254. package/documentation/TailwindConfigSection-Bq962qB7.js +0 -128
  1255. package/documentation/TailwindConfigSection-gSs5teqc.js +0 -23
  1256. package/documentation/TestingSection-C4zu2OqX.js +0 -36
  1257. package/documentation/TestingSection-CubylMzq.js +0 -150
  1258. package/documentation/TextareaSection-De5qUuU6.js +0 -34
  1259. package/documentation/TextareaSection-Dh2N_sLE.js +0 -258
  1260. package/documentation/ThemeArchitectureSection-B8s4f7v9.js +0 -27
  1261. package/documentation/ThemeArchitectureSection-c2yjz-7G.js +0 -143
  1262. package/documentation/ThemeConfigurationSection-BEHURMU6.js +0 -139
  1263. package/documentation/ThemeConfigurationSection-ClZzmEKO.js +0 -1
  1264. package/documentation/ThemeHooksSection-BBqxGbmE.js +0 -173
  1265. package/documentation/ThemeHooksSection-BJ9-8M4s.js +0 -1
  1266. package/documentation/ThemeProviderIntegrationSection-CJxrVkBK.js +0 -122
  1267. package/documentation/ThemeProviderIntegrationSection-iwBZSotn.js +0 -73
  1268. package/documentation/ThemeProviderRequiredSection-BO4kIXXp.js +0 -1
  1269. package/documentation/ThemeProviderRequiredSection-DBZtSffE.js +0 -114
  1270. package/documentation/ThemeProviderSection-DSP62663.js +0 -143
  1271. package/documentation/ThemeProviderSection-DTJSAXbf.js +0 -1
  1272. package/documentation/ToastSection-B8c3PKzz.js +0 -168
  1273. package/documentation/ToastSection-JtNX8amB.js +0 -38
  1274. package/documentation/ToggleBarSection-CDIah9a9.js +0 -186
  1275. package/documentation/ToggleBarSection-Cru1aZle.js +0 -45
  1276. package/documentation/ToolsSection-CZnoKySA.js +0 -58
  1277. package/documentation/ToolsSection-DgggfsKW.js +0 -221
  1278. package/documentation/TooltipSection-CzgM1bYL.js +0 -185
  1279. package/documentation/TooltipSection-U16kRVYC.js +0 -64
  1280. package/documentation/TopupButtonSection-BkbtkCl1.js +0 -98
  1281. package/documentation/TopupButtonSection-CcxFcarn.js +0 -25
  1282. package/documentation/TransactionInfoSection-Bol_mikk.js +0 -86
  1283. package/documentation/TransactionInfoSection-CL6fAjRQ.js +0 -16
  1284. package/documentation/TucuUiLogoSection-BoczvN10.js +0 -26
  1285. package/documentation/TucuUiLogoSection-CuIdpQE7.js +0 -85
  1286. package/documentation/TypographySection--uRpR5g0.js +0 -33
  1287. package/documentation/TypographySection-BaFvpZpE.js +0 -276
  1288. package/documentation/TypographySection-C_BYg98p.js +0 -142
  1289. package/documentation/TypographySection-Ct9gaoxy.js +0 -1
  1290. package/documentation/UsageExamplesSection-BC5Bc2JE.js +0 -84
  1291. package/documentation/UsageExamplesSection-CxLDaga8.js +0 -150
  1292. package/documentation/UsingThemeSystemSection-BTmRwgWH.js +0 -164
  1293. package/documentation/UsingThemeSystemSection-B_CnEDPB.js +0 -106
  1294. package/documentation/ValidationSystemSection-PT3LnSuX.js +0 -53
  1295. package/documentation/ValidationSystemSection-gd_ZxQ3N.js +0 -222
  1296. package/documentation/WCAGPrinciplesSection-BvBX0KP3.js +0 -1
  1297. package/documentation/WCAGPrinciplesSection-D94j2dIa.js +0 -126
  1298. package/hooks/index.d.ts +0 -14
  1299. package/hooks/use-anchor-scroll.d.ts +0 -1
  1300. package/hooks/use-breakpoint.d.ts +0 -1
  1301. package/hooks/use-click-away.d.ts +0 -1
  1302. package/hooks/use-copy-to-clipboard.d.ts +0 -1
  1303. package/hooks/use-element-size.d.ts +0 -9
  1304. package/hooks/use-event-listener.d.ts +0 -7
  1305. package/hooks/use-grid-switcher.d.ts +0 -6
  1306. package/hooks/use-is-mobile.d.ts +0 -4
  1307. package/hooks/use-is-mounted.d.ts +0 -1
  1308. package/hooks/use-lock-body-scroll.d.ts +0 -1
  1309. package/hooks/use-measure.d.ts +0 -1
  1310. package/hooks/use-scrollable-slider.d.ts +0 -7
  1311. package/hooks/use-toast-store.d.ts +0 -17
  1312. package/hooks/use-window-scroll.d.ts +0 -11
  1313. package/index-COp_AWCS.js +0 -1194
  1314. package/index-DYDFy1df.js +0 -77520
  1315. package/libs/framer-motion/fade-in-bottom.d.ts +0 -18
  1316. package/libs/index.d.ts +0 -3
  1317. package/libs/local-storage/index.d.ts +0 -7
  1318. package/libs/range-map.d.ts +0 -1
  1319. package/lucide-react/index.d.ts +0 -1
  1320. package/react-router-dom/index.d.ts +0 -1
  1321. package/swiper-react/index.d.ts +0 -2
  1322. package/tether-DaYvmdAU.js +0 -5
  1323. package/tether-EofDinu3.js +0 -1
  1324. package/themes/auth/components/auth-provider.d.ts +0 -7
  1325. package/themes/auth/components/index.d.ts +0 -1
  1326. package/themes/auth/index.d.ts +0 -1
  1327. package/themes/components/index.d.ts +0 -3
  1328. package/themes/components/settings/background-picker.d.ts +0 -2
  1329. package/themes/components/settings/color-dot.d.ts +0 -5
  1330. package/themes/components/settings/color-swatch-modal.d.ts +0 -7
  1331. package/themes/components/settings/default-color-settings.d.ts +0 -2
  1332. package/themes/components/settings/direction-switcher.d.ts +0 -2
  1333. package/themes/components/settings/index.d.ts +0 -19
  1334. package/themes/components/settings/lang-selector.d.ts +0 -6
  1335. package/themes/components/settings/layout-switcher.d.ts +0 -4
  1336. package/themes/components/settings/restore-defaults.d.ts +0 -2
  1337. package/themes/components/settings/settings-button.d.ts +0 -2
  1338. package/themes/components/settings/settings-drawer.d.ts +0 -2
  1339. package/themes/components/settings/settings-section-heading.d.ts +0 -4
  1340. package/themes/components/settings/settings-types.d.ts +0 -19
  1341. package/themes/components/settings/sonoma-accent-picker.d.ts +0 -2
  1342. package/themes/components/settings/switch-mode.d.ts +0 -6
  1343. package/themes/components/settings/switch-variant.d.ts +0 -5
  1344. package/themes/components/settings/switcher-button.d.ts +0 -7
  1345. package/themes/components/settings/tahoe-accent-picker.d.ts +0 -2
  1346. package/themes/components/settings/theme-icons.d.ts +0 -6
  1347. package/themes/components/settings/theme-switcher.d.ts +0 -2
  1348. package/themes/components/settings/theme-variant-switcher.d.ts +0 -2
  1349. package/themes/components/theme-background.d.ts +0 -33
  1350. package/themes/components/theme-provider/index.d.ts +0 -50
  1351. package/themes/components/theme-provider/mfe-app-theme-provider.d.ts +0 -11
  1352. package/themes/components/theme-provider/standalone-app-theme-provider.d.ts +0 -12
  1353. package/themes/components/theme-provider/theme-wrapper.d.ts +0 -63
  1354. package/themes/config/index.d.ts +0 -395
  1355. package/themes/hooks/index.d.ts +0 -3
  1356. package/themes/hooks/use-direction.d.ts +0 -1
  1357. package/themes/hooks/use-theme-color.d.ts +0 -29
  1358. package/themes/hooks/use-theme.d.ts +0 -118
  1359. package/themes/index.d.ts +0 -7
  1360. package/themes/pages/access-denied.d.ts +0 -6
  1361. package/themes/pages/default-error.d.ts +0 -5
  1362. package/themes/pages/disabled-page.d.ts +0 -5
  1363. package/themes/pages/fallback-page.d.ts +0 -8
  1364. package/themes/pages/forbidden.d.ts +0 -5
  1365. package/themes/pages/index.d.ts +0 -10
  1366. package/themes/pages/no-routes.d.ts +0 -5
  1367. package/themes/pages/not-found.d.ts +0 -5
  1368. package/themes/pages/server-error.d.ts +0 -5
  1369. package/themes/pages/unknown.d.ts +0 -5
  1370. package/themes/pages/user-blocked.d.ts +0 -5
  1371. package/themes/router/components/index.d.ts +0 -2
  1372. package/themes/router/components/mfe-app-routes-provider.d.ts +0 -16
  1373. package/themes/router/components/standalone-app-routes-provider.d.ts +0 -22
  1374. package/themes/router/hooks/index.d.ts +0 -1
  1375. package/themes/router/hooks/use-public-error-routes-config.d.ts +0 -6
  1376. package/themes/router/index.d.ts +0 -2
  1377. package/themes/types/index.d.ts +0 -15
@@ -0,0 +1,848 @@
1
+ import { jsx as c, jsxs as t } from "react/jsx-runtime";
2
+ function d(z) {
3
+ return /* @__PURE__ */ c(
4
+ "svg",
5
+ {
6
+ "data-testid": "tucu-icon",
7
+ width: "24",
8
+ height: "24",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg",
11
+ viewBox: "0 0 1024.000000 1024.000000",
12
+ preserveAspectRatio: "xMidYMid meet",
13
+ ...z,
14
+ children: /* @__PURE__ */ t(
15
+ "g",
16
+ {
17
+ transform: "translate(0.000000,1024.000000) scale(0.100000,-0.100000)",
18
+ fill: z.color || "#000000",
19
+ stroke: "none",
20
+ children: [
21
+ /* @__PURE__ */ c("path", { d: "M5061 9778 c-7 -11 -8 -17 -2 -13 6 3 11 2 11 -4 0 -18 -14 -20 -146 -22 -71 -1 -138 -6 -149 -11 -12 -5 10 -6 59 -3 43 3 169 5 279 5 110 0 198 2 196 5 -3 2 -57 5 -121 6 -101 1 -115 3 -114 17 0 10 5 20 10 23 4 4 4 9 -1 12 -5 3 -15 -3 -22 -15z" }),
22
+ /* @__PURE__ */ c("path", { d: "M5010 9780 c0 -6 -9 -10 -19 -10 -11 0 -22 -3 -24 -7 -3 -5 7 -8 23 -8 33 0 57 20 35 29 -8 3 -15 1 -15 -4z" }),
23
+ /* @__PURE__ */ c("path", { d: "M5106 9777 c-16 -12 -16 -14 -3 -14 9 0 18 6 21 14 3 7 4 13 3 13 -2 0 -11 -6 -21 -13z" }),
24
+ /* @__PURE__ */ c("path", { d: "M4670 9770 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
25
+ /* @__PURE__ */ c("path", { d: "M4891 9772 c-21 -7 -11 -17 19 -17 17 0 30 5 30 12 0 11 -23 14 -49 5z" }),
26
+ /* @__PURE__ */ c("path", { d: "M5210 9766 c0 -2 9 -6 20 -9 11 -3 18 -1 14 4 -5 9 -34 13 -34 5z" }),
27
+ /* @__PURE__ */ c("path", { d: "M4713 9733 c5 -7 1 -12 -10 -11 -28 0 -121 -13 -193 -27 -36 -7 -54 -13 -40 -13 14 -1 45 3 70 8 25 5 79 12 120 16 41 3 78 10 83 15 4 5 4 7 1 4 -4 -3 -14 1 -22 8 -11 8 -14 9 -9 0z" }),
28
+ /* @__PURE__ */ c("path", { d: "M5338 9733 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
29
+ /* @__PURE__ */ c("path", { d: "M5398 9723 c12 -2 32 -2 45 0 12 2 2 4 -23 4 -25 0 -35 -2 -22 -4z" }),
30
+ /* @__PURE__ */ c("path", { d: "M5479 9717 c5 -5 28 -7 52 -5 l44 3 -52 5 c-29 3 -48 1 -44 -3z" }),
31
+ /* @__PURE__ */ c("path", { d: "M4885 9713 c-463 -37 -802 -114 -1200 -272 -171 -68 -447 -205 -564 -281 -51 -34 -95 -59 -98 -56 -2 2 7 12 22 23 55 38 71 54 35 33 -44 -26 -101 -73 -77 -64 9 3 17 4 17 1 0 -8 -202 -148 -207 -143 -3 3 25 26 63 53 88 63 122 93 59 52 -72 -47 -136 -99 -131 -108 3 -4 -27 -34 -67 -67 -40 -32 -96 -81 -125 -108 -44 -41 -55 -48 -64 -36 -8 13 -9 12 -5 -1 4 -10 -10 -31 -35 -55 -79 -76 -273 -291 -349 -386 -171 -215 -289 -399 -408 -636 -253 -505 -366 -965 -378 -1537 -6 -305 6 -496 47 -741 38 -225 69 -352 140 -564 135 -407 321 -752 594 -1104 47 -60 82 -114 79 -119 -3 -6 -2 -7 4 -4 5 3 57 -46 114 -110 221 -246 552 -515 869 -705 731 -439 1551 -606 2428 -493 718 93 1394 407 1966 914 351 312 686 742 884 1137 351 700 467 1523 331 2339 -121 727 -480 1405 -1033 1955 -74 74 -132 137 -128 140 4 3 -10 21 -33 40 l-40 34 34 -37 c19 -20 32 -37 28 -37 -13 0 -176 143 -172 150 2 4 -8 18 -23 31 l-27 24 24 -27 c14 -16 21 -28 18 -28 -4 0 -49 31 -99 68 -503 369 -1083 602 -1726 692 -224 31 -593 48 -767 33z m510 -303 c494 -45 912 -162 1335 -374 308 -155 546 -320 801 -556 168 -155 426 -461 414 -491 -3 -8 7 -27 21 -44 l26 -30 -22 33 c-12 18 -20 36 -17 39 8 7 161 -228 229 -352 247 -451 374 -903 410 -1453 23 -368 -28 -795 -139 -1162 -98 -325 -244 -646 -406 -890 -28 -41 -51 -77 -53 -79 -1 -1 -27 15 -58 36 -30 22 -110 61 -178 88 -607 238 -890 355 -1048 435 -52 26 -165 90 -250 142 l-155 94 -23 58 c-13 31 -36 107 -52 168 -28 107 -29 115 -23 286 4 139 10 190 25 237 11 33 39 161 62 285 l41 225 61 6 c113 11 197 94 229 228 21 88 38 429 33 671 -3 172 -6 200 -24 240 -29 63 -64 91 -117 97 l-45 5 -4 402 c-5 457 -6 465 -90 592 -33 49 -49 87 -57 131 -45 241 -198 429 -443 542 -45 22 -103 44 -127 51 -32 8 -64 31 -127 90 -140 133 -206 160 -389 160 -318 0 -801 -110 -1150 -262 -113 -49 -167 -84 -249 -159 -64 -58 -86 -94 -86 -138 0 -22 -11 -39 -46 -70 -26 -23 -51 -41 -55 -41 -14 0 -38 -55 -48 -111 -6 -30 -26 -100 -46 -155 -21 -62 -38 -131 -41 -176 -6 -67 -4 -80 24 -148 44 -106 51 -141 62 -292 10 -129 23 -276 36 -405 l7 -63 -40 0 c-21 0 -48 -7 -59 -15 -25 -19 -40 -19 -24 0 7 8 27 19 44 24 17 5 23 10 13 10 -25 1 -78 -31 -73 -44 2 -5 -7 -28 -20 -50 -38 -67 -47 -156 -34 -370 15 -264 38 -541 50 -599 30 -146 103 -214 234 -222 l60 -3 22 -133 c50 -290 74 -363 160 -485 l44 -62 0 -113 c0 -145 -13 -221 -45 -270 -56 -84 -269 -208 -469 -273 -59 -19 -320 -99 -580 -176 -697 -208 -630 -184 -702 -252 l-63 -58 -46 78 c-123 206 -249 505 -319 755 -97 343 -129 581 -130 953 -1 399 37 671 139 1011 226 744 717 1396 1385 1841 463 308 1064 516 1627 562 144 12 452 12 578 1z m-815 -1131 c182 -13 306 -39 393 -83 l67 -34 63 25 c106 43 217 73 341 90 103 15 136 15 255 4 75 -7 184 -16 243 -21 137 -11 187 -32 222 -92 35 -61 44 -118 49 -309 l4 -165 36 -66 c56 -106 69 -205 70 -508 1 -215 -3 -280 -22 -410 -50 -346 -96 -494 -193 -626 -65 -86 -178 -173 -211 -161 -7 2 4 11 23 20 39 17 80 46 65 46 -5 0 -19 -6 -29 -14 -10 -8 -23 -12 -29 -8 -6 3 -7 1 -3 -5 4 -7 2 -12 -4 -12 -11 0 -3 150 9 160 3 3 7 25 7 50 1 25 20 122 43 216 23 93 41 181 41 193 0 18 4 22 19 18 10 -2 25 -1 32 4 11 7 9 9 -6 9 -15 0 -17 3 -7 9 11 7 11 9 -2 14 -9 4 -16 -1 -19 -11 -3 -9 -5 -2 -6 16 0 18 -8 49 -18 70 -9 20 -16 40 -15 43 1 9 -11 10 -218 18 -264 11 -354 34 -425 112 -16 18 -23 28 -15 22 17 -12 49 -3 69 21 12 14 12 16 -4 10 -14 -6 -16 -4 -11 7 4 8 -1 3 -12 -10 -16 -20 -20 -21 -25 -7 -4 9 -1 16 6 16 7 0 23 9 37 20 24 18 24 19 3 15 -12 -2 -30 -8 -40 -13 -22 -12 -94 -11 -86 1 3 4 11 6 18 3 9 -3 15 7 18 32 4 38 -5 62 -17 43 -4 -6 -2 -11 5 -11 8 0 9 -3 0 -13 -6 -8 -10 -16 -8 -18 1 -2 0 -3 -2 -1 -2 1 -13 -6 -23 -15 -18 -16 -19 -16 -12 3 5 15 4 16 -5 4 -5 -8 -12 -12 -15 -10 -2 3 2 14 10 24 8 11 14 14 14 8 0 -7 4 -12 8 -12 11 0 13 48 2 55 -6 3 -10 -1 -10 -10 0 -9 -4 -14 -9 -11 -8 6 -21 -14 -27 -41 -2 -11 42 -47 58 -48 3 0 10 -3 14 -7 7 -8 -9 -12 -31 -9 -5 1 -2 -5 8 -12 17 -14 25 -43 9 -33 -5 3 -9 -1 -9 -8 0 -8 6 -12 14 -9 15 6 17 -9 3 -23 -6 -6 -6 -15 0 -24 8 -12 10 -11 10 5 1 11 13 -9 28 -45 40 -96 95 -198 157 -294 36 -56 51 -87 43 -92 -7 -5 -8 -3 -3 5 6 10 3 11 -15 1 -20 -11 -22 -10 -17 4 5 13 3 15 -12 7 -10 -6 -21 -20 -24 -31 -4 -17 -3 -19 8 -10 9 8 15 8 20 0 9 -14 -4 -32 -18 -23 -9 5 -9 3 0 -8 10 -12 8 -15 -7 -16 -15 -1 -18 4 -15 35 2 19 -4 54 -13 76 -17 42 -20 85 -9 103 5 8 0 11 -14 8 -15 -3 -19 0 -15 10 4 12 1 12 -19 3 -13 -6 -22 -15 -19 -20 3 -4 10 -6 15 -3 5 3 6 0 3 -8 -3 -8 -1 -18 5 -22 7 -3 8 0 5 9 -3 9 -2 16 3 16 17 0 23 -13 13 -25 -7 -8 -3 -27 11 -60 24 -54 22 -111 -5 -165 -9 -18 -14 -35 -12 -37 6 -6 36 9 36 19 0 5 5 6 10 3 6 -3 10 -15 10 -26 0 -13 -4 -18 -12 -13 -17 11 -69 13 -92 5 -14 -6 -5 -10 35 -14 80 -10 238 -51 284 -74 22 -12 43 -21 48 -22 4 0 21 -17 38 -36 17 -19 35 -32 40 -29 5 3 8 2 7 -3 -2 -4 2 -9 7 -10 6 -1 9 8 7 20 -3 24 0 22 18 -12 6 -13 7 -21 2 -17 -6 3 -13 2 -17 -4 -8 -12 12 -50 27 -50 7 0 7 4 -1 14 -7 8 -8 17 -3 20 6 3 17 -17 26 -45 15 -44 15 -58 4 -107 l-13 -57 -7 61 c-12 109 -85 212 -185 262 -43 22 -166 55 -263 72 -36 6 -83 17 -105 23 l-40 12 54 6 c76 10 94 31 99 116 3 64 1 72 -34 131 -21 34 -42 62 -46 62 -5 0 -7 -4 -3 -9 3 -5 10 -43 15 -83 10 -79 1 -141 -23 -165 -13 -13 -18 -13 -45 1 -46 24 -67 20 -132 -25 -54 -39 -62 -41 -109 -37 -42 4 -63 14 -118 57 -72 55 -106 63 -153 36 -35 -20 -47 -18 -75 10 -31 30 -33 77 -5 123 24 39 25 49 4 31 -9 -7 -23 -14 -31 -15 -28 -4 -200 -154 -264 -231 -152 -181 -179 -231 -184 -338 -3 -65 -3 -66 5 -20 16 102 23 125 33 118 6 -3 7 -1 3 6 -10 15 33 83 46 75 7 -4 8 -2 4 4 -4 7 -4 17 0 23 4 8 9 7 15 -2 7 -12 9 -12 9 0 0 7 6 11 15 7 8 -3 14 -1 12 5 -1 6 9 18 22 27 23 16 24 16 16 -8 -4 -14 -11 -26 -15 -28 -4 -1 -16 -9 -26 -17 -17 -13 -15 -13 14 -3 17 7 32 17 32 23 0 24 51 115 94 168 55 68 61 90 7 28 -21 -24 -41 -39 -45 -33 -7 11 74 86 83 77 3 -3 33 23 68 57 35 34 63 58 63 52 0 -5 -5 -15 -11 -21 -20 -20 -30 -92 -19 -134 13 -46 38 -60 96 -52 33 4 60 -5 170 -56 72 -34 144 -61 160 -61 l29 0 -36 -19 -36 -19 -77 39 c-43 21 -93 39 -110 39 -56 0 -419 -80 -472 -104 -52 -24 -94 -68 -114 -121 -17 -44 -29 -157 -19 -182 5 -13 5 -22 1 -22 -4 1 -68 65 -143 143 -195 203 -223 269 -254 590 -21 229 -45 332 -96 420 -40 70 -148 200 -134 161 4 -11 9 -31 10 -45 1 -14 3 -32 3 -41 2 -17 42 -63 49 -56 2 3 -8 24 -23 46 -15 23 -25 43 -22 46 9 10 77 -123 92 -181 18 -69 21 -108 7 -100 -5 3 -18 -2 -29 -12 -55 -48 -57 -233 -2 -262 30 -16 60 -12 61 8 1 9 5 -10 10 -43 9 -71 14 -264 6 -271 -3 -3 -24 0 -48 6 -55 15 -95 58 -114 123 -27 88 -47 356 -49 632 -1 234 1 264 17 288 9 15 26 27 37 27 26 0 75 -62 101 -129 12 -31 26 -60 30 -65 5 -5 7 105 6 245 -2 258 6 350 40 444 8 22 18 91 23 153 6 96 12 122 39 176 77 157 249 231 566 245 17 0 95 -4 175 -10z m1956 -1046 c49 -50 54 -130 29 -522 -19 -308 -30 -387 -60 -432 -28 -43 -84 -72 -120 -63 -24 6 -25 9 -25 88 0 122 19 387 36 501 14 99 31 143 102 268 23 41 25 49 12 57 -11 7 -11 10 -2 10 7 0 10 5 7 10 -12 20 -27 10 -21 -14 4 -16 -1 -29 -15 -42 -11 -10 -45 -58 -76 -106 -31 -49 -57 -87 -59 -86 -1 2 4 40 12 86 33 191 118 307 180 245z m-1124 -424 c23 -12 61 -27 87 -35 55 -16 262 -33 379 -31 80 2 85 1 108 -26 36 -42 32 -117 -16 -317 -43 -179 -70 -337 -70 -412 0 -27 -4 -48 -10 -48 -5 0 -10 6 -10 13 0 23 -60 138 -69 133 -5 -3 -15 2 -22 12 -13 15 -12 16 4 3 9 -7 17 -10 17 -6 0 15 -49 75 -143 173 -142 148 -289 386 -346 562 -28 86 -27 90 15 41 20 -23 54 -51 76 -62z m-1673 -273 c2 -98 -6 -59 -12 59 -3 75 -2 92 3 55 4 -30 8 -82 9 -114z m1767 -159 c8 3 14 -1 14 -11 0 -22 -14 -20 -36 7 -10 12 -12 17 -5 10 7 -6 20 -9 27 -6z m50 -9 c4 -7 3 -8 -4 -4 -7 4 -12 1 -12 -7 0 -10 7 -13 19 -10 12 3 26 -5 39 -22 11 -14 57 -65 101 -112 45 -48 78 -89 75 -92 -3 -3 -16 6 -27 21 -16 19 -26 25 -37 18 -8 -5 -18 -6 -22 -4 -4 3 -8 0 -8 -5 0 -16 -16 -13 -34 5 -14 13 -32 18 -86 23 -13 1 -13 2 0 12 12 8 11 9 -5 7 -38 -7 -44 14 -12 46 l30 30 23 -28 c13 -15 25 -22 25 -17 1 6 2 17 3 24 4 22 -5 28 -21 15 -14 -11 -15 -10 -9 10 9 28 -4 28 -40 0 -21 -17 -26 -19 -22 -6 4 10 0 22 -10 30 -8 7 -13 8 -9 2 4 -7 -5 -14 -23 -18 -17 -3 -30 -11 -30 -17 0 -6 7 -8 16 -5 10 4 13 2 9 -7 -4 -6 1 -3 9 7 14 18 21 15 17 -7 -1 -5 3 -6 8 -3 5 4 12 2 16 -4 6 -10 -7 -14 -32 -11 -7 1 -10 -7 -8 -19 4 -21 -9 -28 -20 -10 -3 6 -2 10 4 10 6 0 8 7 5 15 -4 8 -9 13 -14 10 -4 -2 -12 7 -19 21 -15 34 -14 37 9 31 15 -4 22 1 26 19 5 19 11 23 25 19 14 -5 19 -1 19 13 0 29 14 40 26 20z m-1129 -152 c-15 -19 -27 -39 -27 -45 0 -6 -3 -10 -7 -10 -5 1 -11 0 -15 -1 -5 -1 -12 -3 -17 -4 -5 0 -17 -10 -27 -21 -29 -32 -12 -6 32 50 66 84 68 85 78 75 6 -6 -1 -22 -17 -44z m1327 -102 c9 -22 -3 -32 -14 -14 -12 19 -12 30 -1 30 5 0 12 -7 15 -16z m-439 -183 c61 -11 130 -23 155 -27 40 -6 42 -8 20 -15 -14 -4 -38 -7 -55 -7 -29 0 -29 0 -5 8 21 7 22 8 5 9 -12 1 -26 -4 -32 -10 -15 -15 -339 -51 -388 -43 -22 3 -134 8 -250 10 -115 2 -226 8 -245 13 -20 5 -26 9 -15 10 11 1 89 17 174 36 169 38 197 41 281 23 47 -9 70 -9 126 4 38 8 80 14 94 12 14 -2 75 -13 135 -23z m313 -86 c44 -56 33 -176 -25 -275 -101 -171 -331 -259 -379 -144 -8 18 -14 40 -14 48 0 8 38 58 85 112 47 53 84 99 81 101 -2 2 -32 -3 -67 -10 -81 -19 -126 -22 -329 -21 -121 0 -180 4 -222 16 -32 9 -58 13 -58 9 0 -4 23 -36 52 -72 102 -127 118 -166 83 -216 -24 -34 -95 -56 -162 -51 -56 5 -59 6 -125 77 -86 92 -118 156 -125 254 -6 80 11 177 31 177 6 0 43 -9 81 -19 123 -34 287 -62 400 -68 180 -9 493 37 615 90 49 21 56 21 78 -8z m467 -557 c-14 -189 -68 -287 -267 -488 -124 -126 -540 -500 -555 -500 -4 1 28 35 73 78 44 42 67 66 50 52 -91 -76 -137 -121 -131 -130 7 -11 -155 -154 -229 -202 -102 -65 -172 -49 -259 59 -471 592 -556 706 -613 820 -32 62 -37 84 -42 165 l-5 93 102 -125 c124 -152 249 -280 311 -320 109 -70 266 -97 506 -86 211 9 311 27 409 75 147 72 410 306 578 514 39 48 73 87 75 87 3 0 1 -41 -3 -92z m69 -306 c36 -107 38 -154 16 -274 -48 -261 -73 -383 -117 -561 -43 -178 -47 -188 -67 -183 -61 17 -306 57 -406 66 -63 5 -191 10 -285 10 -93 0 -180 3 -192 6 -20 5 -5 20 105 102 324 243 610 491 730 634 38 46 95 122 126 171 32 48 61 85 66 82 5 -3 16 -27 24 -53z m-2057 -84 c81 -135 404 -555 589 -765 99 -113 98 -115 -36 -102 -204 19 -489 6 -648 -29 l-42 -10 0 169 c0 184 13 372 36 519 18 119 53 270 62 270 4 0 22 -24 39 -52z m1279 -958 c71 -6 145 -13 164 -16 l34 -6 -59 -34 c-33 -19 -135 -73 -227 -121 -93 -47 -166 -88 -164 -90 7 -7 129 28 230 67 56 21 164 68 241 105 139 67 141 67 206 62 36 -3 91 -13 122 -22 l56 -16 -64 -187 c-89 -264 -229 -634 -376 -994 l-64 -156 -125 -8 c-155 -9 -472 2 -650 21 -73 9 -135 17 -137 19 -9 8 108 1180 124 1246 12 50 44 100 81 126 l37 26 221 -6 c122 -3 280 -11 350 -16z m-899 -90 l55 -95 -6 98 -5 97 52 0 c76 0 81 -5 63 -73 -18 -70 -32 -222 -46 -507 -41 -840 -38 -800 -65 -800 -39 0 -260 48 -375 82 -89 26 -112 36 -115 53 -7 34 -44 401 -55 550 -6 77 -13 249 -17 381 l-6 241 34 11 c87 28 172 44 264 52 174 13 160 19 222 -90z" }),
32
+ /* @__PURE__ */ c("path", { d: "M5036 9398 c3 -5 11 -7 17 -5 7 2 22 0 35 -4 13 -5 21 -5 18 -1 -3 4 27 9 66 10 40 1 74 5 77 8 3 3 -45 4 -106 3 -62 -1 -110 -6 -107 -11z" }),
33
+ /* @__PURE__ */ c("path", { d: "M4843 9394 c7 -8 97 -7 105 1 3 3 -21 5 -53 5 -32 0 -56 -3 -52 -6z" }),
34
+ /* @__PURE__ */ c("path", { d: "M5281 9396 c8 -9 88 -13 83 -4 -3 4 -24 8 -46 8 -23 0 -39 -2 -37 -4z" }),
35
+ /* @__PURE__ */ c("path", { d: "M4716 9382 c-2 -4 12 -6 32 -4 62 6 69 10 20 11 -26 0 -49 -3 -52 -7z" }),
36
+ /* @__PURE__ */ c("path", { d: "M5475 9380 c44 -5 91 -12 105 -15 17 -4 22 -3 15 4 -5 5 -53 12 -105 15 l-95 5 80 -9z" }),
37
+ /* @__PURE__ */ c("path", { d: "M4640 9372 c0 -5 14 -7 30 -4 17 2 30 6 30 8 0 2 -13 4 -30 4 -16 0 -30 -4 -30 -8z" }),
38
+ /* @__PURE__ */ c("path", { d: "M4583 9363 c9 -2 25 -2 35 0 9 3 1 5 -18 5 -19 0 -27 -2 -17 -5z" }),
39
+ /* @__PURE__ */ c("path", { d: "M5625 9361 c19 -9 113 -15 104 -7 -2 2 -31 6 -64 10 -40 4 -53 3 -40 -3z" }),
40
+ /* @__PURE__ */ c("path", { d: "M4460 9346 c-52 -11 -53 -13 -23 -17 18 -3 30 -3 27 0 -3 3 18 11 48 17 29 7 42 12 28 12 -14 0 -50 -6 -80 -12z" }),
41
+ /* @__PURE__ */ c("path", { d: "M5085 9340 c-33 -5 -85 -10 -115 -13 -71 -7 -232 -38 -226 -44 2 -2 42 2 88 11 108 19 138 24 231 32 43 4 80 11 83 15 3 5 4 8 2 8 -2 -1 -30 -5 -63 -9z" }),
42
+ /* @__PURE__ */ c("path", { d: "M5187 9343 c18 -2 50 -2 70 0 21 2 7 4 -32 4 -38 0 -55 -2 -38 -4z" }),
43
+ /* @__PURE__ */ c("path", { d: "M5737 9343 c-3 -5 7 -8 21 -9 15 0 50 -3 77 -7 l50 -6 -50 13 c-58 16 -92 19 -98 9z" }),
44
+ /* @__PURE__ */ c("path", { d: "M5333 9333 c9 -2 23 -2 30 0 6 3 -1 5 -18 5 -16 0 -22 -2 -12 -5z" }),
45
+ /* @__PURE__ */ c("path", { d: "M4340 9320 l-25 -8 25 0 c14 0 34 3 45 8 l20 9 -20 -1 c-11 0 -31 -4 -45 -8z" }),
46
+ /* @__PURE__ */ c("path", { d: "M5381 9326 c2 -2 18 -6 34 -10 22 -5 26 -4 15 4 -14 9 -59 15 -49 6z" }),
47
+ /* @__PURE__ */ c("path", { d: "M5898 9313 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
48
+ /* @__PURE__ */ c("path", { d: "M4195 9284 c-102 -28 -299 -94 -365 -122 -43 -18 -44 -19 -13 -18 17 1 29 5 25 10 -3 5 4 7 16 4 12 -4 23 0 26 8 3 7 14 11 26 9 11 -2 20 0 20 5 0 5 16 12 35 16 19 3 35 11 35 16 0 6 8 8 18 6 10 -3 24 1 31 9 10 11 16 12 24 4 15 -15 28 -14 25 1 -2 7 3 13 10 14 6 1 15 3 20 4 4 1 10 2 14 1 4 0 22 6 41 14 19 8 45 16 58 19 33 6 77 25 59 25 -8 0 -55 -12 -105 -25z" }),
49
+ /* @__PURE__ */ c("path", { d: "M5471 9297 c2 -2 18 -11 34 -21 l30 -17 -24 20 c-13 12 -28 21 -34 21 -6 0 -8 -1 -6 -3z" }),
50
+ /* @__PURE__ */ c("path", { d: "M5960 9297 c3 -3 17 -8 30 -11 14 -3 50 -12 80 -20 98 -27 105 -29 98 -22 -7 8 -133 45 -183 53 -16 3 -28 3 -25 0z" }),
51
+ /* @__PURE__ */ c("path", { d: "M4698 9273 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
52
+ /* @__PURE__ */ c("path", { d: "M4585 9252 c-33 -8 -55 -17 -50 -18 6 -2 42 5 80 15 39 11 61 19 50 19 -11 0 -47 -7 -80 -16z" }),
53
+ /* @__PURE__ */ c("path", { d: "M5580 9240 c-8 -5 -12 -10 -10 -12 3 -2 18 -14 34 -28 l30 -25 -22 29 c-12 15 -19 32 -16 37 7 11 3 11 -16 -1z" }),
54
+ /* @__PURE__ */ c("path", { d: "M6190 9233 c0 -5 28 -16 63 -27 34 -10 86 -27 115 -37 56 -20 77 -24 52 -10 -14 8 -217 81 -226 81 -2 0 -4 -3 -4 -7z" }),
55
+ /* @__PURE__ */ c("path", { d: "M4101 9208 c-13 -20 -12 -22 1 -11 8 7 18 10 22 6 4 -4 4 0 0 10 -8 21 -6 21 -23 -5z" }),
56
+ /* @__PURE__ */ c("path", { d: "M4151 9221 c-8 -5 -9 -11 -3 -15 5 -3 12 1 16 9 6 17 6 18 -13 6z" }),
57
+ /* @__PURE__ */ c("path", { d: "M4485 9225 c-5 -2 -75 -25 -155 -50 -80 -26 -149 -51 -154 -55 -5 -5 67 16 160 46 204 66 192 62 174 62 -8 0 -19 -1 -25 -3z" }),
58
+ /* @__PURE__ */ c("path", { d: "M5677 9130 c23 -22 50 -40 60 -40 11 0 4 7 -17 18 -19 9 -39 27 -45 40 -5 12 -17 22 -25 22 -9 0 2 -16 27 -40z" }),
59
+ /* @__PURE__ */ c("path", { d: "M6445 9140 c3 -5 13 -10 21 -10 8 0 22 -4 32 -9 45 -25 134 -62 138 -58 5 4 -176 87 -190 87 -4 0 -4 -4 -1 -10z" }),
60
+ /* @__PURE__ */ c("path", { d: "M3645 9080 c-66 -33 -113 -58 -105 -56 27 8 225 98 235 107 22 21 -17 5 -130 -51z" }),
61
+ /* @__PURE__ */ c("path", { d: "M4130 9100 c-8 -5 -10 -10 -5 -10 6 0 17 5 25 10 8 5 11 10 5 10 -5 0 -17 -5 -25 -10z" }),
62
+ /* @__PURE__ */ c("path", { d: "M5776 9091 c-18 -7 -16 -9 14 -19 18 -7 35 -10 37 -8 3 2 -5 7 -16 11 -12 3 -19 11 -16 16 7 10 7 10 -19 0z" }),
63
+ /* @__PURE__ */ c("path", { d: "M4080 9080 c-8 -5 -10 -10 -5 -10 6 0 17 5 25 10 8 5 11 10 5 10 -5 0 -17 -5 -25 -10z" }),
64
+ /* @__PURE__ */ c("path", { d: "M5860 9045 c14 -8 30 -14 35 -14 6 0 -1 6 -15 14 -14 8 -29 14 -35 14 -5 0 1 -6 15 -14z" }),
65
+ /* @__PURE__ */ c("path", { d: "M5911 9033 c-1 -10 99 -73 116 -73 11 0 -85 60 -96 60 -5 0 -12 6 -14 13 -4 8 -6 8 -6 0z" }),
66
+ /* @__PURE__ */ c("path", { d: "M6710 9020 c19 -11 40 -19 45 -19 6 0 -6 8 -25 19 -19 11 -39 19 -45 19 -5 0 6 -8 25 -19z" }),
67
+ /* @__PURE__ */ c("path", { d: "M3491 9011 c-8 -5 -16 -17 -17 -26 -1 -9 1 -14 4 -10 4 4 6 10 5 13 -1 4 8 12 20 19 12 7 18 12 12 12 -5 1 -16 -3 -24 -8z" }),
68
+ /* @__PURE__ */ c("path", { d: "M3892 8973 c-24 -24 -24 -25 -2 -8 42 33 44 35 37 35 -4 0 -19 -12 -35 -27z" }),
69
+ /* @__PURE__ */ c("path", { d: "M6782 8985 c9 -10 21 -16 28 -13 7 2 -1 10 -16 17 -27 12 -28 11 -12 -4z" }),
70
+ /* @__PURE__ */ c("path", { d: "M3388 8954 c-38 -20 -36 -28 2 -9 17 9 30 18 30 20 0 7 -1 6 -32 -11z" }),
71
+ /* @__PURE__ */ c("path", { d: "M6052 8938 c8 -7 32 -30 54 -51 27 -25 41 -33 41 -22 0 8 -2 13 -5 11 -2 -2 -22 13 -45 35 -23 21 -46 39 -50 39 -5 0 -2 -6 5 -12z" }),
72
+ /* @__PURE__ */ c("path", { d: "M3810 8925 c-7 -8 -9 -15 -5 -15 5 0 0 -9 -10 -20 -10 -11 -21 -18 -25 -15 -4 2 -7 -3 -7 -11 0 -9 15 -1 39 23 21 20 38 41 38 45 0 13 -17 9 -30 -7z" }),
73
+ /* @__PURE__ */ c("path", { d: "M3303 8904 c-24 -14 -43 -27 -43 -30 0 -6 67 33 85 48 17 15 1 8 -42 -18z" }),
74
+ /* @__PURE__ */ c("path", { d: "M6915 8915 c22 -18 86 -53 70 -38 -5 6 -28 20 -50 32 -22 13 -31 15 -20 6z" }),
75
+ /* @__PURE__ */ c("path", { d: "M7030 8847 c0 -3 12 -12 26 -22 15 -9 23 -12 20 -6 -7 11 -46 35 -46 28z" }),
76
+ /* @__PURE__ */ c("path", { d: "M3742 8828 c-7 -7 -12 -26 -12 -43 0 -34 -26 -79 -41 -69 -5 3 -8 2 -7 -3 2 -4 -1 -9 -6 -10 -4 0 -25 -20 -47 -44 -35 -38 -59 -102 -59 -154 0 -8 -4 -15 -10 -15 -5 0 -6 -7 -3 -17 4 -11 3 -14 -5 -9 -8 5 -10 2 -6 -8 3 -9 1 -16 -5 -16 -6 0 -8 -7 -4 -17 8 -21 52 88 53 132 0 40 30 86 77 121 57 43 72 65 73 105 0 19 5 40 12 47 7 7 10 12 7 12 -3 0 -10 -5 -17 -12z" }),
77
+ /* @__PURE__ */ c("path", { d: "M6181 8816 c9 -12 23 -32 32 -46 10 -13 17 -20 17 -14 0 6 -15 26 -32 45 -18 20 -26 26 -17 15z" }),
78
+ /* @__PURE__ */ c("path", { d: "M3115 8780 c-3 -6 1 -7 9 -4 18 7 21 14 7 14 -6 0 -13 -4 -16 -10z" }),
79
+ /* @__PURE__ */ c("path", { d: "M7120 8787 c0 -2 27 -23 60 -46 33 -23 60 -40 60 -38 0 3 -21 20 -47 39 -58 41 -73 50 -73 45z" }),
80
+ /* @__PURE__ */ c("path", { d: "M3079 8753 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
81
+ /* @__PURE__ */ c("path", { d: "M3020 8710 c-19 -17 -26 -27 -15 -21 19 9 63 51 54 51 -3 0 -20 -14 -39 -30z" }),
82
+ /* @__PURE__ */ c("path", { d: "M6266 8683 c16 -29 31 -48 32 -42 2 5 -1 16 -7 23 -9 11 -9 15 1 19 8 3 6 6 -6 6 -13 1 -16 6 -12 18 4 10 4 14 0 10 -4 -4 -14 -1 -22 5 -8 7 -2 -11 14 -39z" }),
83
+ /* @__PURE__ */ c("path", { d: "M2949 8653 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
84
+ /* @__PURE__ */ c("path", { d: "M7315 8640 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
85
+ /* @__PURE__ */ c("path", { d: "M2909 8623 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
86
+ /* @__PURE__ */ c("path", { d: "M6301 8615 c1 -19 18 -51 18 -35 0 8 -4 22 -9 30 -5 8 -9 11 -9 5z" }),
87
+ /* @__PURE__ */ c("path", { d: "M2821 8550 c-13 -11 -19 -20 -14 -20 6 0 18 9 28 20 23 25 17 25 -14 0z" }),
88
+ /* @__PURE__ */ c("path", { d: "M6321 8558 c-1 -4 6 -39 14 -78 14 -66 42 -127 53 -116 3 3 0 12 -7 20 -6 8 -14 22 -16 32 -19 78 -43 155 -44 142z" }),
89
+ /* @__PURE__ */ c("path", { d: "M7440 8537 c14 -16 24 -30 23 -33 -4 -5 7 -7 13 -2 2 3 -11 18 -29 34 l-32 29 25 -28z" }),
90
+ /* @__PURE__ */ c("path", { d: "M7557 8425 c10 -13 22 -25 27 -25 5 0 -1 11 -14 25 -30 32 -36 32 -13 0z" }),
91
+ /* @__PURE__ */ c("path", { d: "M3527 8393 c-2 -4 -7 -26 -10 -48 l-6 -40 14 44 c13 40 14 65 2 44z" }),
92
+ /* @__PURE__ */ c("path", { d: "M7643 8342 c28 -30 45 -57 41 -64 -4 -7 -3 -8 4 -4 17 10 3 33 -49 81 l-43 40 47 -53z" }),
93
+ /* @__PURE__ */ c("path", { d: "M2584 8318 l-29 -33 33 29 c30 28 37 36 29 36 -2 0 -16 -15 -33 -32z" }),
94
+ /* @__PURE__ */ c("path", { d: "M6411 8323 c-1 -17 16 -25 25 -12 4 7 3 9 -4 5 -5 -3 -13 0 -15 6 -4 9 -6 10 -6 1z" }),
95
+ /* @__PURE__ */ c("path", { d: "M3495 8272 c-10 -49 -8 -158 4 -178 11 -17 11 -17 5 5 -8 29 -7 120 2 166 7 41 -2 47 -11 7z" }),
96
+ /* @__PURE__ */ c("path", { d: "M6451 8238 c10 -29 18 -65 19 -80 0 -16 4 -28 9 -28 11 0 -3 77 -23 124 -22 54 -25 43 -5 -16z" }),
97
+ /* @__PURE__ */ c("path", { d: "M2484 8208 l-29 -33 33 29 c30 28 37 36 29 36 -2 0 -16 -15 -33 -32z" }),
98
+ /* @__PURE__ */ c("path", { d: "M7780 8186 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
99
+ /* @__PURE__ */ c("path", { d: "M2399 8108 c-54 -71 -57 -75 -36 -59 17 14 80 101 73 101 -3 0 -19 -19 -37 -42z" }),
100
+ /* @__PURE__ */ c("path", { d: "M7820 8136 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
101
+ /* @__PURE__ */ c("path", { d: "M6482 7744 l-2 -382 40 -4 c22 -2 40 0 40 4 0 5 -16 8 -35 8 l-35 0 -3 378 -2 377 -3 -381z" }),
102
+ /* @__PURE__ */ c("path", { d: "M7896 8038 c10 -14 21 -24 23 -22 3 3 -6 15 -18 27 l-24 22 19 -27z" }),
103
+ /* @__PURE__ */ c("path", { d: "M3526 8035 c4 -11 7 -28 8 -37 0 -10 4 -18 9 -18 4 0 6 -4 2 -9 -3 -5 -1 -12 5 -16 16 -10 11 16 -10 60 -11 22 -17 31 -14 20z" }),
104
+ /* @__PURE__ */ c("path", { d: "M3562 7920 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
105
+ /* @__PURE__ */ c("path", { d: "M3566 7858 c2 -18 11 -116 19 -218 17 -208 26 -283 32 -277 2 3 -3 74 -11 158 -8 85 -18 202 -22 262 -3 59 -10 107 -15 107 -4 0 -6 -15 -3 -32z" }),
106
+ /* @__PURE__ */ c("path", { d: "M2192 7815 c-17 -37 -14 -45 4 -12 9 16 14 31 11 33 -2 2 -9 -7 -15 -21z" }),
107
+ /* @__PURE__ */ c("path", { d: "M8050 7813 c0 -5 11 -21 25 -38 l25 -30 -21 38 c-20 36 -29 45 -29 30z" }),
108
+ /* @__PURE__ */ c("path", { d: "M2117 7687 l-17 -32 20 24 c17 20 26 41 18 41 -2 0 -11 -15 -21 -33z" }),
109
+ /* @__PURE__ */ c("path", { d: "M8136 7665 c9 -14 19 -24 21 -21 6 6 -20 46 -30 46 -4 0 0 -11 9 -25z" }),
110
+ /* @__PURE__ */ c("path", { d: "M2072 7610 c-18 -29 -15 -38 4 -12 9 13 14 25 12 27 -2 2 -9 -5 -16 -15z" }),
111
+ /* @__PURE__ */ c("path", { d: "M8180 7596 c0 -11 40 -86 45 -86 3 0 -4 19 -16 43 -23 45 -29 54 -29 43z" }),
112
+ /* @__PURE__ */ c("path", { d: "M8230 7491 c0 -6 4 -13 10 -16 6 -3 7 1 4 9 -7 18 -14 21 -14 7z" }),
113
+ /* @__PURE__ */ c("path", { d: "M1994 7459 c-12 -25 -13 -34 -3 -43 9 -8 10 -8 5 2 -4 7 -4 18 2 25 11 15 23 47 17 47 -2 0 -12 -14 -21 -31z" }),
114
+ /* @__PURE__ */ c("path", { d: "M8273 7408 c27 -70 71 -168 74 -165 4 5 -67 177 -74 177 -3 0 -3 -6 0 -12z" }),
115
+ /* @__PURE__ */ c("path", { d: "M1956 7375 c-9 -26 -7 -32 5 -12 6 10 9 21 6 23 -2 3 -7 -2 -11 -11z" }),
116
+ /* @__PURE__ */ c("path", { d: "M3606 7332 c-3 -6 -1 -14 5 -17 14 -9 20 -2 10 14 -6 8 -11 9 -15 3z" }),
117
+ /* @__PURE__ */ c("path", { d: "M1926 7304 c-4 -9 -4 -19 -1 -22 3 -3 5 0 5 7 0 7 4 9 10 6 6 -3 7 1 4 9 -8 20 -10 20 -18 0z" }),
118
+ /* @__PURE__ */ c("path", { d: "M6641 7268 c6 -12 15 -33 20 -47 5 -17 8 -20 8 -8 1 18 -25 77 -35 77 -2 0 1 -10 7 -22z" }),
119
+ /* @__PURE__ */ c("path", { d: "M3470 7245 c-7 -9 -11 -17 -9 -20 3 -2 10 5 17 15 14 24 10 26 -8 5z" }),
120
+ /* @__PURE__ */ c("path", { d: "M1892 7215 c-15 -32 -15 -35 0 -35 6 0 8 3 5 6 -3 4 -2 15 4 26 6 11 9 22 6 24 -2 2 -9 -7 -15 -21z" }),
121
+ /* @__PURE__ */ c("path", { d: "M8350 7225 c0 -5 5 -17 10 -25 5 -8 10 -10 10 -5 0 6 -5 17 -10 25 -5 8 -10 11 -10 5z" }),
122
+ /* @__PURE__ */ c("path", { d: "M3443 7195 c-3 -9 -3 -18 -1 -21 3 -3 8 4 11 16 6 23 -1 27 -10 5z" }),
123
+ /* @__PURE__ */ c("path", { d: "M6671 7119 c1 -41 5 -87 10 -104 5 -18 6 10 3 70 -7 118 -15 140 -13 34z" }),
124
+ /* @__PURE__ */ c("path", { d: "M8371 7170 c0 -8 4 -22 9 -30 12 -18 12 -2 0 25 -6 13 -9 15 -9 5z" }),
125
+ /* @__PURE__ */ c("path", { d: "M3431 7144 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
126
+ /* @__PURE__ */ c("path", { d: "M3424 7010 c0 -63 1 -89 3 -57 2 31 2 83 0 115 -2 31 -3 5 -3 -58z" }),
127
+ /* @__PURE__ */ c("path", { d: "M8390 7108 c0 -9 5 -20 10 -23 13 -8 13 5 0 25 -8 13 -10 13 -10 -2z" }),
128
+ /* @__PURE__ */ c("path", { d: "M1840 7075 c-7 -20 -10 -39 -7 -42 3 -3 10 12 16 33 14 49 7 56 -9 9z" }),
129
+ /* @__PURE__ */ c("path", { d: "M1812 6983 c-15 -48 -10 -52 10 -8 9 20 12 37 8 40 -4 2 -12 -12 -18 -32z" }),
130
+ /* @__PURE__ */ c("path", { d: "M8420 6990 c-13 -8 -12 -10 3 -10 9 0 17 5 17 10 0 12 -1 12 -20 0z" }),
131
+ /* @__PURE__ */ c("path", { d: "M8446 6940 c4 -19 11 -44 15 -55 6 -14 7 -9 3 15 -4 19 -11 44 -15 55 -6 14 -7 9 -3 -15z" }),
132
+ /* @__PURE__ */ c("path", { d: "M6671 6913 c0 -29 2 -33 8 -18 7 18 4 55 -5 55 -2 0 -4 -17 -3 -37z" }),
133
+ /* @__PURE__ */ c("path", { d: "M1797 6923 c-8 -14 -19 -68 -13 -62 8 8 26 69 21 69 -2 0 -6 -3 -8 -7z" }),
134
+ /* @__PURE__ */ c("path", { d: "M6674 6720 c0 -85 2 -120 3 -77 2 42 2 112 0 155 -1 42 -3 7 -3 -78z" }),
135
+ /* @__PURE__ */ c("path", { d: "M3433 6805 c0 -33 2 -45 4 -27 2 18 2 45 0 60 -2 15 -4 0 -4 -33z" }),
136
+ /* @__PURE__ */ c("path", { d: "M8472 6840 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
137
+ /* @__PURE__ */ c("path", { d: "M1771 6824 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
138
+ /* @__PURE__ */ c("path", { d: "M8481 6794 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
139
+ /* @__PURE__ */ c("path", { d: "M1761 6784 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
140
+ /* @__PURE__ */ c("path", { d: "M8491 6754 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
141
+ /* @__PURE__ */ c("path", { d: "M8501 6704 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
142
+ /* @__PURE__ */ c("path", { d: "M1742 6690 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
143
+ /* @__PURE__ */ c("path", { d: "M8512 6660 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
144
+ /* @__PURE__ */ c("path", { d: "M1722 6586 c-7 -35 -11 -74 -11 -87 1 -13 5 -4 10 21 14 77 20 103 25 111 2 4 0 10 -4 13 -5 3 -14 -23 -20 -58z" }),
145
+ /* @__PURE__ */ c("path", { d: "M3442 6625 c0 -16 2 -22 5 -12 2 9 2 23 0 30 -3 6 -5 -1 -5 -18z" }),
146
+ /* @__PURE__ */ c("path", { d: "M8522 6605 c0 -16 2 -22 5 -12 2 9 2 23 0 30 -3 6 -5 -1 -5 -18z" }),
147
+ /* @__PURE__ */ c("path", { d: "M8534 6510 c5 -33 12 -58 14 -56 6 7 -10 116 -17 116 -4 0 -3 -27 3 -60z" }),
148
+ /* @__PURE__ */ c("path", { d: "M3448 6523 c6 -65 10 -70 11 -15 0 28 -3 52 -7 52 -4 0 -6 -17 -4 -37z" }),
149
+ /* @__PURE__ */ c("path", { d: "M6663 6485 c0 -33 2 -45 4 -27 2 18 2 45 0 60 -2 15 -4 0 -4 -33z" }),
150
+ /* @__PURE__ */ c("path", { d: "M1702 6440 c0 -19 2 -27 5 -17 2 9 2 25 0 35 -3 9 -5 1 -5 -18z" }),
151
+ /* @__PURE__ */ c("path", { d: "M3463 6390 c0 -30 2 -43 4 -27 2 15 2 39 0 55 -2 15 -4 2 -4 -28z" }),
152
+ /* @__PURE__ */ c("path", { d: "M8553 6400 c0 -25 2 -35 4 -22 2 12 2 32 0 45 -2 12 -4 2 -4 -23z" }),
153
+ /* @__PURE__ */ c("path", { d: "M6645 6375 c-3 -26 -4 -49 -2 -51 3 -3 8 16 12 41 3 26 4 49 2 51 -3 3 -8 -16 -12 -41z" }),
154
+ /* @__PURE__ */ c("path", { d: "M1693 6350 c0 -25 2 -35 4 -22 2 12 2 32 0 45 -2 12 -4 2 -4 -23z" }),
155
+ /* @__PURE__ */ c("path", { d: "M8563 6310 c0 -25 2 -35 4 -22 2 12 2 32 0 45 -2 12 -4 2 -4 -23z" }),
156
+ /* @__PURE__ */ c("path", { d: "M3468 6300 c2 -16 6 -30 8 -30 2 0 4 14 4 30 0 17 -4 30 -8 30 -5 0 -7 -13 -4 -30z" }),
157
+ /* @__PURE__ */ c("path", { d: "M6622 6278 c-6 -17 -9 -34 -7 -37 3 -2 5 1 5 8 0 7 3 10 8 8 4 -3 8 8 9 24 3 37 0 36 -15 -3z" }),
158
+ /* @__PURE__ */ c("path", { d: "M1683 6200 c0 -41 2 -58 4 -37 2 20 2 54 0 75 -2 20 -4 3 -4 -38z" }),
159
+ /* @__PURE__ */ c("path", { d: "M3481 6235 c-1 -22 34 -105 44 -105 3 0 0 10 -6 23 -7 12 -18 40 -25 62 -7 22 -13 31 -13 20z" }),
160
+ /* @__PURE__ */ c("path", { d: "M6589 6213 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
161
+ /* @__PURE__ */ c("path", { d: "M8569 6178 c-2 -70 1 -131 6 -136 3 -3 5 36 5 86 0 91 -9 131 -11 50z" }),
162
+ /* @__PURE__ */ c("path", { d: "M6518 6145 c-47 -35 -68 -44 -116 -50 l-59 -7 -11 -71 c-27 -166 -54 -306 -72 -372 -20 -75 -20 -104 1 -36 6 22 16 38 20 35 5 -3 6 2 3 11 -4 8 -1 36 5 61 17 67 52 266 52 290 0 12 6 27 14 34 10 9 12 17 6 24 -11 13 4 17 76 19 23 1 41 5 40 8 -1 3 13 18 31 34 28 23 36 26 44 14 8 -12 9 -12 5 1 -2 8 2 23 11 33 22 25 13 20 -50 -28z" }),
163
+ /* @__PURE__ */ c("path", { d: "M3555 6080 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0 -7 -4 -4 -10z" }),
164
+ /* @__PURE__ */ c("path", { d: "M3604 6039 c-3 -5 -2 -9 3 -8 4 1 21 -1 36 -6 41 -11 43 0 2 12 -21 7 -37 7 -41 2z" }),
165
+ /* @__PURE__ */ c("path", { d: "M3725 6013 c39 -6 58 -22 52 -45 -3 -10 -1 -21 4 -24 6 -3 9 -13 8 -22 -1 -10 1 -28 4 -42 4 -14 8 -40 11 -58 3 -19 7 -36 10 -40 9 -8 8 3 -9 103 -25 145 -20 135 -68 134 -34 -2 -36 -3 -12 -6z" }),
166
+ /* @__PURE__ */ c("path", { d: "M3734 5988 c-4 -7 -4 -10 1 -6 4 4 15 2 24 -5 14 -11 14 -10 2 6 -16 20 -18 21 -27 5z" }),
167
+ /* @__PURE__ */ c("path", { d: "M1684 5825 c0 -55 1 -76 3 -47 2 29 2 74 0 100 -2 26 -3 2 -3 -53z" }),
168
+ /* @__PURE__ */ c("path", { d: "M8573 5840 c0 -30 2 -43 4 -27 2 15 2 39 0 55 -2 15 -4 2 -4 -28z" }),
169
+ /* @__PURE__ */ c("path", { d: "M3822 5745 c0 -16 3 -39 8 -50 l9 -20 -1 20 c0 11 -4 34 -8 50 l-8 30 0 -30z" }),
170
+ /* @__PURE__ */ c("path", { d: "M8560 5683 c-3 -23 -2 -39 3 -34 5 5 7 24 5 42 -3 33 -4 33 -8 -8z" }),
171
+ /* @__PURE__ */ c("path", { d: "M1692 5675 c-1 -52 12 -133 19 -120 2 6 -1 44 -7 85 -8 53 -12 63 -12 35z" }),
172
+ /* @__PURE__ */ c("path", { d: "M3842 5655 c0 -11 3 -29 8 -40 11 -25 11 1 0 35 -6 20 -8 21 -8 5z" }),
173
+ /* @__PURE__ */ c("path", { d: "M8552 5600 c0 -19 2 -27 5 -17 2 9 2 25 0 35 -3 9 -5 1 -5 -18z" }),
174
+ /* @__PURE__ */ c("path", { d: "M3860 5576 c0 -8 4 -17 9 -20 5 -4 7 3 4 14 -6 23 -13 26 -13 6z" }),
175
+ /* @__PURE__ */ c("path", { d: "M8542 5530 c0 -19 2 -27 5 -17 2 9 2 25 0 35 -3 9 -5 1 -5 -18z" }),
176
+ /* @__PURE__ */ c("path", { d: "M6218 5363 c-1 -92 0 -169 4 -171 4 -2 5 -9 2 -16 -3 -7 -1 -23 4 -37 9 -21 10 -19 10 16 0 22 -5 43 -11 47 -8 5 -8 8 -1 8 7 0 10 49 7 157 -1 86 -5 158 -7 160 -2 3 -6 -71 -8 -164z" }),
177
+ /* @__PURE__ */ c("path", { d: "M1717 5475 c3 -27 7 -52 9 -54 7 -8 2 54 -6 79 -6 17 -7 9 -3 -25z" }),
178
+ /* @__PURE__ */ c("path", { d: "M3901 5490 c14 -31 19 -36 19 -24 0 6 -7 19 -16 30 -14 18 -14 18 -3 -6z" }),
179
+ /* @__PURE__ */ c("path", { d: "M8526 5435 c-3 -9 -6 -26 -5 -38 1 -14 4 -9 9 13 9 37 7 52 -4 25z" }),
180
+ /* @__PURE__ */ c("path", { d: "M3930 5436 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
181
+ /* @__PURE__ */ c("path", { d: "M1732 5380 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
182
+ /* @__PURE__ */ c("path", { d: "M3943 5383 c11 -12 25 -19 33 -16 11 4 12 9 3 19 -15 19 -20 18 -12 -3 6 -16 3 -16 -18 2 l-24 20 18 -22z" }),
183
+ /* @__PURE__ */ c("path", { d: "M8512 5350 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
184
+ /* @__PURE__ */ c("path", { d: "M3995 5325 c0 -18 3 -31 8 -28 4 2 7 15 7 28 0 13 -3 26 -7 28 -5 3 -8 -10 -8 -28z" }),
185
+ /* @__PURE__ */ c("path", { d: "M1742 5330 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
186
+ /* @__PURE__ */ c("path", { d: "M8502 5300 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
187
+ /* @__PURE__ */ c("path", { d: "M1752 5280 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
188
+ /* @__PURE__ */ c("path", { d: "M1761 5234 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
189
+ /* @__PURE__ */ c("path", { d: "M3994 5150 c0 -58 1 -81 3 -52 2 28 2 76 0 105 -2 28 -3 5 -3 -53z" }),
190
+ /* @__PURE__ */ c("path", { d: "M1771 5194 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
191
+ /* @__PURE__ */ c("path", { d: "M8471 5174 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
192
+ /* @__PURE__ */ c("path", { d: "M1781 5154 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
193
+ /* @__PURE__ */ c("path", { d: "M8462 5130 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
194
+ /* @__PURE__ */ c("path", { d: "M1792 5120 c0 -8 4 -26 8 -40 6 -20 8 -21 8 -5 0 11 -3 29 -8 40 -5 12 -8 14 -8 5z" }),
195
+ /* @__PURE__ */ c("path", { d: "M6242 5095 c0 -11 4 -31 8 -45 l8 -25 0 25 c0 14 -3 34 -8 45 l-9 20 1 -20z" }),
196
+ /* @__PURE__ */ c("path", { d: "M8443 5068 c-2 -27 0 -29 7 -13 11 26 12 45 2 45 -4 0 -8 -15 -9 -32z" }),
197
+ /* @__PURE__ */ c("path", { d: "M3973 5010 c-7 -19 -17 -29 -23 -25 -6 3 -10 3 -9 -2 3 -20 -2 -34 -11 -28 -5 3 -10 -1 -10 -9 0 -9 -5 -16 -11 -16 -5 0 -7 5 -3 12 4 7 3 8 -4 4 -6 -4 -8 -14 -5 -23 5 -13 2 -15 -11 -10 -9 4 -15 3 -12 -2 8 -12 -42 -43 -56 -35 -6 4 -8 3 -5 -3 4 -6 -17 -23 -49 -39 -30 -15 -58 -32 -61 -38 -11 -17 150 74 195 111 47 38 96 105 90 123 -2 6 -9 -3 -15 -20z" }),
198
+ /* @__PURE__ */ c("path", { d: "M8417 4978 c-9 -29 -15 -54 -13 -56 2 -2 12 20 21 48 9 28 15 53 13 55 -2 3 -12 -19 -21 -47z" }),
199
+ /* @__PURE__ */ c("path", { d: "M1821 5015 c-1 -6 14 -56 33 -110 19 -55 35 -95 35 -90 1 6 -14 56 -33 110 -19 55 -35 95 -35 90z" }),
200
+ /* @__PURE__ */ c("path", { d: "M6260 5014 c0 -15 25 -85 46 -129 14 -29 85 -85 110 -85 10 0 -38 36 -59 43 -10 4 -15 12 -12 18 4 6 14 8 24 4 12 -5 13 -4 4 6 -10 10 -15 9 -27 -1 -13 -10 -17 -9 -25 11 -5 13 -6 28 -3 33 3 5 0 6 -5 3 -6 -4 -15 11 -22 36 -11 43 -31 81 -31 61z" }),
201
+ /* @__PURE__ */ c("path", { d: "M8391 4903 c-1 -6 -4 -20 -7 -30 -5 -17 -5 -17 6 0 6 10 9 23 6 30 -3 9 -5 9 -5 0z" }),
202
+ /* @__PURE__ */ c("path", { d: "M8364 4834 c-3 -10 -12 -37 -20 -58 -7 -22 -12 -41 -10 -43 2 -3 14 21 25 53 12 31 19 59 17 62 -3 3 -8 -4 -12 -14z" }),
203
+ /* @__PURE__ */ c("path", { d: "M6442 4784 c10 -10 20 -16 22 -13 3 3 -5 11 -17 18 -21 13 -21 12 -5 -5z" }),
204
+ /* @__PURE__ */ c("path", { d: "M3663 4780 c-13 -5 -23 -12 -23 -15 0 -9 16 -5 36 10 22 16 19 18 -13 5z" }),
205
+ /* @__PURE__ */ c("path", { d: "M3578 4746 c3 -5 -5 -7 -16 -4 -12 4 -22 2 -22 -4 0 -6 -7 -8 -15 -5 -8 4 -17 2 -20 -2 -3 -5 -15 -7 -28 -4 -18 4 -19 3 -7 -6 9 -7 11 -11 3 -11 -7 0 -17 8 -22 18 -9 15 -10 14 -11 -7 0 -17 -4 -22 -16 -17 -10 4 -13 2 -8 -6 5 -8 2 -9 -9 -5 -10 4 -17 2 -17 -4 0 -7 -11 -9 -25 -7 -14 3 -25 1 -25 -6 0 -6 -5 -4 -10 4 -8 13 -10 13 -10 -1 0 -9 -8 -20 -17 -24 -15 -5 -16 -4 -5 6 16 17 16 34 -1 20 -8 -6 -23 -9 -35 -6 -12 2 -22 -1 -22 -7 0 -5 7 -8 15 -4 8 3 15 0 15 -7 0 -8 -13 -12 -35 -12 -19 1 -35 -2 -35 -7 0 -9 -32 -23 -78 -35 -25 -6 -26 -5 -12 12 8 10 10 16 3 12 -6 -4 -14 -3 -18 3 -3 5 -12 10 -18 10 -8 0 -7 -3 2 -9 15 -10 8 -41 -9 -41 -14 0 -13 17 3 23 6 3 3 5 -9 4 -21 -1 -30 -26 -10 -28 14 -1 -25 -17 -43 -18 -10 -1 -11 2 -3 12 8 10 6 13 -9 13 -14 0 -17 -5 -13 -18 3 -10 2 -17 -3 -16 -4 1 -19 -4 -32 -11 -13 -7 -34 -11 -47 -8 -13 2 -25 0 -27 -6 -1 -5 -11 -2 -20 7 -16 16 -17 16 -17 -4 0 -27 -46 -46 -68 -28 -10 8 -13 8 -9 2 8 -13 -19 -27 -34 -18 -5 3 -9 0 -9 -6 0 -6 -4 -8 -10 -5 -5 3 -10 1 -10 -4 0 -6 -8 -11 -17 -12 -10 0 -13 -3 -7 -5 6 -3 189 49 406 115 525 159 594 183 521 178 -17 -1 -29 -6 -25 -11z" }),
206
+ /* @__PURE__ */ c("path", { d: "M1910 4745 c0 -5 5 -17 10 -25 5 -8 10 -10 10 -5 0 6 -5 17 -10 25 -5 8 -10 11 -10 5z" }),
207
+ /* @__PURE__ */ c("path", { d: "M6510 4740 c8 -6 24 -15 35 -21 16 -8 15 -6 -4 10 -13 12 -28 21 -35 21 -6 0 -4 -5 4 -10z" }),
208
+ /* @__PURE__ */ c("path", { d: "M8311 4689 c-6 -18 -9 -34 -7 -36 2 -2 9 10 15 28 6 18 9 34 7 36 -2 2 -9 -10 -15 -28z" }),
209
+ /* @__PURE__ */ c("path", { d: "M6595 4689 c17 -11 44 -27 60 -35 17 -8 21 -9 11 -2 -11 7 -28 21 -38 31 -10 9 -18 14 -18 10 0 -4 -5 -2 -12 5 -7 7 -17 12 -22 12 -6 0 3 -9 19 -21z" }),
210
+ /* @__PURE__ */ c("path", { d: "M1931 4698 c-2 -15 52 -128 61 -128 5 0 4 8 -1 18 -7 13 -6 23 2 32 10 12 9 12 -5 1 -11 -8 -18 -9 -18 -3 0 6 8 16 18 22 15 10 15 10 -4 5 -16 -4 -24 2 -37 27 -8 18 -16 30 -16 26z" }),
211
+ /* @__PURE__ */ c("path", { d: "M8282 4615 c-17 -37 -14 -45 4 -12 9 16 14 31 11 33 -2 2 -9 -7 -15 -21z" }),
212
+ /* @__PURE__ */ c("path", { d: "M6795 4584 c69 -33 99 -42 80 -26 -6 5 -31 17 -57 26 -27 10 -48 21 -48 25 0 4 -10 7 -22 8 -13 0 8 -14 47 -33z" }),
213
+ /* @__PURE__ */ c("path", { d: "M8232 4505 c-12 -25 -27 -45 -32 -45 -6 0 -8 -4 -5 -10 3 -5 -1 -23 -10 -40 -8 -16 -13 -30 -10 -30 7 0 87 161 83 166 -3 2 -14 -17 -26 -41z" }),
214
+ /* @__PURE__ */ c("path", { d: "M2000 4534 c0 -6 82 -162 132 -251 16 -29 33 -53 38 -53 4 0 20 16 34 35 40 52 95 79 281 135 162 50 212 69 153 58 -16 -3 -28 -1 -28 4 0 5 -7 2 -16 -6 -8 -9 -19 -14 -24 -11 -5 3 -12 1 -15 -5 -5 -8 -14 -6 -30 4 -22 15 -24 15 -20 -5 4 -17 2 -19 -10 -9 -12 10 -15 9 -15 -6 0 -14 -3 -16 -9 -6 -4 7 -14 12 -22 10 -8 -2 -13 3 -11 10 1 6 -3 12 -9 12 -6 0 -9 -6 -6 -14 3 -8 -2 -20 -11 -28 -11 -9 -14 -10 -8 0 4 6 2 12 -3 12 -6 0 -11 -5 -11 -10 0 -7 -6 -7 -19 0 -25 13 -31 13 -31 -1 0 -5 4 -8 9 -4 5 3 12 1 15 -4 4 -5 -2 -8 -11 -6 -10 1 -26 -1 -35 -6 -12 -7 -18 -4 -20 9 -3 14 -10 11 -36 -18 -18 -19 -32 -29 -32 -22 0 6 5 12 12 12 6 0 9 2 7 5 -8 8 -49 -7 -43 -16 3 -5 -2 -9 -11 -9 -10 0 -14 5 -10 13 4 6 0 4 -8 -6 -15 -18 -34 -7 -22 13 3 6 2 10 -3 10 -6 0 -12 -7 -16 -15 -4 -12 -10 -10 -28 9 -38 39 -51 66 -38 81 8 9 6 14 -5 19 -9 3 -13 2 -10 -4 3 -6 3 -10 -2 -10 -11 0 -34 51 -28 60 3 5 -2 10 -10 14 -8 3 -15 3 -15 0z" }),
215
+ /* @__PURE__ */ c("path", { d: "M6965 4511 c33 -16 65 -30 70 -30 14 -1 -46 34 -70 41 -11 3 -29 9 -40 12 -11 4 7 -7 40 -23z" }),
216
+ /* @__PURE__ */ c("path", { d: "M2535 4461 c-3 -5 -2 -12 3 -15 5 -3 9 1 9 9 0 17 -3 19 -12 6z" }),
217
+ /* @__PURE__ */ c("path", { d: "M7100 4454 c56 -25 80 -34 80 -29 0 6 -90 45 -104 45 -6 -1 5 -8 24 -16z" }),
218
+ /* @__PURE__ */ c("path", { d: "M7200 4410 c8 -5 20 -10 25 -10 6 0 3 5 -5 10 -8 5 -19 10 -25 10 -5 0 -3 -5 5 -10z" }),
219
+ /* @__PURE__ */ c("path", { d: "M7329 4359 c24 -11 46 -18 48 -15 4 4 -73 36 -85 35 -4 0 13 -9 37 -20z" }),
220
+ /* @__PURE__ */ c("path", { d: "M8152 4363 c-6 -3 -10 -8 -7 -13 3 -5 -2 -16 -11 -24 -8 -9 -12 -16 -8 -16 3 0 1 -7 -6 -15 -7 -8 -17 -12 -23 -8 -6 3 -7 1 -3 -6 12 -18 -2 -47 -29 -59 -14 -6 -25 -20 -26 -29 0 -11 -3 -13 -6 -5 -8 20 -33 14 -33 -9 0 -19 -1 -19 -17 -4 -16 16 -18 16 -36 -9 -10 -14 -24 -23 -30 -19 -7 4 -5 8 5 12 15 5 15 8 1 26 -14 19 -14 19 -11 1 4 -25 -41 -32 -85 -12 -58 26 -119 47 -123 43 -7 -6 170 -72 184 -69 7 2 11 -1 10 -6 -2 -5 18 -25 44 -45 l47 -36 49 77 c57 89 134 224 130 227 -2 1 -9 0 -16 -2z" }),
221
+ /* @__PURE__ */ c("path", { d: "M7400 4330 c8 -5 22 -9 30 -9 10 0 8 3 -5 9 -27 12 -43 12 -25 0z" }),
222
+ /* @__PURE__ */ c("path", { d: "M7555 4271 c49 -24 52 -24 52 -8 0 6 -10 12 -21 12 -12 1 -32 4 -46 8 -14 4 -7 -2 15 -12z" }),
223
+ /* @__PURE__ */ c("path", { d: "M8061 4264 c-12 -28 -9 -40 7 -30 8 5 14 56 7 56 -1 0 -7 -12 -14 -26z" }),
224
+ /* @__PURE__ */ c("path", { d: "M7630 4240 c8 -5 20 -10 25 -10 6 0 3 5 -5 10 -8 5 -19 10 -25 10 -5 0 -3 -5 5 -10z" }),
225
+ /* @__PURE__ */ c("path", { d: "M7670 4230 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
226
+ /* @__PURE__ */ c("path", { d: "M8006 4222 c-3 -5 1 -9 9 -9 8 0 12 4 9 9 -3 4 -7 8 -9 8 -2 0 -6 -4 -9 -8z" }),
227
+ /* @__PURE__ */ c("path", { d: "M5810 8235 c0 -11 5 -60 10 -110 5 -49 16 -191 24 -315 23 -331 23 -330 49 -329 17 1 18 2 5 6 -10 2 -18 11 -18 20 0 40 -51 691 -55 711 -5 18 -1 22 20 22 14 0 25 -5 25 -11 0 -8 4 -8 13 -1 18 15 156 4 185 -14 13 -9 29 -13 35 -11 31 12 -73 38 -178 45 -111 7 -115 7 -115 -13z" }),
228
+ /* @__PURE__ */ c("path", { d: "M5896 8212 c-3 -5 1 -9 9 -9 8 0 12 4 9 9 -3 4 -7 8 -9 8 -2 0 -6 -4 -9 -8z" }),
229
+ /* @__PURE__ */ c("path", { d: "M6127 8183 c6 -16 5 -17 -13 -3 -18 14 -18 14 -5 -2 7 -10 17 -16 21 -13 4 2 12 -7 19 -22 6 -14 14 -23 17 -20 3 3 -2 19 -10 35 -18 35 -40 53 -29 25z" }),
230
+ /* @__PURE__ */ c("path", { d: "M6181 8068 c0 -10 -8 -18 -17 -18 -8 0 -12 -5 -9 -10 4 -6 10 -8 15 -5 13 8 20 -53 19 -187 0 -132 7 -194 22 -204 5 -3 6 -10 3 -16 -4 -7 -2 -8 4 -4 8 4 12 0 12 -11 0 -11 5 -24 12 -31 13 -13 16 -25 24 -92 2 -25 9 -46 14 -48 6 -2 10 -13 9 -25 0 -15 -2 -17 -6 -7 -3 8 -12 19 -20 23 -7 5 -11 12 -8 18 4 5 0 9 -7 9 -9 0 -14 -14 -14 -45 -1 -25 3 -45 7 -45 5 0 9 5 9 11 0 5 5 7 10 4 6 -3 10 -11 10 -16 0 -6 -4 -7 -10 -4 -5 3 -10 2 -10 -4 0 -6 -8 -7 -17 -4 -13 5 -15 3 -9 -13 5 -10 10 -39 12 -64 5 -61 21 -168 23 -153 0 6 10 9 21 6 17 -5 19 -14 19 -104 0 -63 -3 -97 -10 -94 -5 4 -7 11 -3 16 3 6 0 10 -7 8 -30 -4 -50 1 -44 11 4 6 11 7 17 4 7 -4 8 -2 4 5 -6 9 -11 9 -22 0 -8 -6 -23 -9 -34 -6 -14 4 -29 -3 -45 -21 -28 -30 -32 -44 -11 -36 7 3 16 -2 19 -10 4 -9 11 -16 17 -16 6 0 2 10 -9 22 -15 15 -18 25 -11 34 9 10 23 11 81 5 9 -1 3 -46 -11 -70 -10 -20 -9 -21 14 -15 18 4 26 2 26 -7 0 -11 3 -11 10 1 15 23 12 33 -8 28 -12 -3 -19 0 -19 9 0 9 7 13 18 10 10 -3 20 0 24 7 3 6 3 -5 0 -24 -3 -19 -6 -45 -5 -57 0 -13 -5 -23 -10 -23 -6 0 -10 -5 -10 -11 0 -5 4 -7 10 -4 6 3 7 -1 4 -9 -3 -9 -10 -13 -15 -10 -5 3 -9 -5 -10 -18 -1 -23 -1 -23 -10 2 l-8 25 2 -25 c1 -15 8 -25 17 -24 12 1 14 -8 11 -39 -2 -27 -6 -35 -12 -26 -6 9 -9 10 -9 2 0 -6 4 -14 9 -17 5 -4 5 -22 0 -43 -5 -21 -8 -51 -8 -68 2 -42 24 73 43 223 11 82 16 202 16 357 0 283 -13 373 -70 493 l-40 84 -1 151 c0 84 -4 170 -8 192 -5 22 -9 32 -10 23z m119 -723 c0 -8 -2 -15 -4 -15 -2 0 -6 7 -10 15 -3 8 -1 15 4 15 6 0 10 -7 10 -15z m-26 -3 c2 -4 -5 -9 -17 -9 -17 -2 -19 0 -7 7 18 12 18 12 24 2z m22 -89 c-10 -11 -19 -7 -22 10 -2 15 0 16 12 6 8 -6 12 -14 10 -16z m-29 -75 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m31 -19 c-3 -8 -7 -3 -11 10 -4 17 -3 21 5 13 5 -5 8 -16 6 -23z m-24 -227 c3 -5 -1 -9 -9 -9 -8 0 -15 4 -15 9 0 4 4 8 9 8 6 0 12 -4 15 -8z" }),
231
+ /* @__PURE__ */ c("path", { d: "M6163 7781 c0 -11 5 -18 9 -15 4 3 5 11 1 19 -7 21 -12 19 -10 -4z" }),
232
+ /* @__PURE__ */ c("path", { d: "M5907 7747 c-3 -8 1 -14 8 -14 7 0 11 6 8 14 -3 7 -6 13 -8 13 -2 0 -5 -6 -8 -13z" }),
233
+ /* @__PURE__ */ c("path", { d: "M5880 7709 c0 -5 5 -7 10 -4 6 3 10 8 10 11 0 2 -4 4 -10 4 -5 0 -10 -5 -10 -11z" }),
234
+ /* @__PURE__ */ c("path", { d: "M5882 7650 c0 -22 4 -40 9 -40 6 0 7 -4 4 -10 -3 -5 -1 -10 4 -10 14 0 14 17 1 25 -5 3 -10 11 -10 16 0 6 4 8 8 5 5 -3 9 1 9 9 0 8 -4 15 -9 15 -5 0 -7 4 -3 9 3 5 1 12 -4 15 -5 3 -9 -12 -9 -34z" }),
235
+ /* @__PURE__ */ c("path", { d: "M6160 7676 c0 -2 7 -9 15 -16 13 -11 14 -10 9 4 -5 14 -24 23 -24 12z" }),
236
+ /* @__PURE__ */ c("path", { d: "M5940 7571 c0 -6 4 -13 10 -16 6 -3 7 1 4 9 -7 18 -14 21 -14 7z" }),
237
+ /* @__PURE__ */ c("path", { d: "M5890 7560 c0 -5 5 -10 10 -10 6 0 10 5 10 10 0 6 -4 10 -10 10 -5 0 -10 -4 -10 -10z" }),
238
+ /* @__PURE__ */ c("path", { d: "M5944 7531 c3 -5 -1 -11 -9 -15 -32 -12 -15 -33 28 -34 23 -1 67 -14 100 -30 31 -16 57 -25 57 -20 0 5 -17 16 -37 25 -21 8 -41 21 -45 28 -5 8 -17 11 -30 7 -18 -4 -20 -2 -14 14 6 15 5 17 -5 7 -7 -7 -24 -12 -38 -12 -21 1 -22 2 -6 6 11 3 25 10 30 15 7 8 6 9 -2 4 -7 -4 -13 -2 -13 3 0 6 -5 11 -11 11 -5 0 -8 -4 -5 -9z" }),
239
+ /* @__PURE__ */ c("path", { d: "M6143 7498 c-15 -20 -25 -38 -20 -38 3 0 12 11 21 25 17 26 16 35 -1 13z" }),
240
+ /* @__PURE__ */ c("path", { d: "M6222 7496 c7 -8 15 -12 17 -11 5 6 -10 25 -20 25 -5 0 -4 -6 3 -14z" }),
241
+ /* @__PURE__ */ c("path", { d: "M6184 7464 c-10 -8 -14 -13 -9 -11 14 7 32 -16 29 -37 -1 -10 0 -15 4 -12 11 12 12 46 1 46 -6 0 -9 7 -5 15 7 19 4 19 -20 -1z" }),
242
+ /* @__PURE__ */ c("path", { d: "M5715 7434 c-296 -61 -381 -83 -428 -115 -50 -33 -92 -89 -102 -136 -8 -38 -23 -39 190 7 242 53 480 92 550 91 82 0 139 -18 201 -63 46 -33 108 -107 98 -117 -3 -3 -13 5 -23 18 -19 25 -36 16 -25 -13 3 -9 2 -16 -4 -16 -6 0 -9 11 -7 25 2 23 -5 30 -27 26 -5 0 -8 4 -8 10 0 7 10 9 27 4 l28 -7 -32 31 c-21 19 -38 28 -49 24 -8 -3 -12 -9 -7 -12 5 -3 2 -21 -7 -39 -15 -31 -17 -32 -31 -16 -12 16 -12 17 4 11 11 -4 17 -1 17 9 0 12 -4 13 -21 4 -11 -7 -23 -9 -27 -6 -3 3 0 6 7 6 7 0 11 6 8 13 -3 8 -1 20 4 28 7 12 9 12 10 -1 1 -8 1 -18 0 -22 0 -4 6 -5 14 -2 16 6 16 24 0 37 -5 5 1 6 15 2 l25 -6 -26 15 c-32 19 -75 11 -58 -10 9 -12 9 -13 -4 -9 -8 4 -18 2 -22 -4 -3 -6 -10 -11 -16 -11 -5 0 0 9 11 20 12 12 18 25 15 29 -3 5 5 7 17 4 21 -4 21 -3 5 7 -38 24 -134 24 -279 -1 -99 -17 -133 -26 -112 -30 16 -3 -6 -5 -49 -5 -71 1 -80 -2 -96 -23 -11 -14 -21 -20 -25 -13 -3 6 0 13 6 16 7 3 4 4 -7 1 -11 -2 -78 -16 -150 -31 -71 -15 -131 -30 -133 -35 -2 -5 -11 -9 -19 -9 -9 0 -13 -3 -10 -6 3 -4 2 -15 -3 -25 -8 -15 -7 -17 10 -14 11 2 18 0 15 -6 -4 -5 0 -9 9 -9 8 0 16 5 18 12 3 7 7 5 11 -6 4 -10 3 -15 -3 -11 -6 3 -13 -1 -16 -9 -4 -10 -15 -14 -30 -12 -29 6 -28 -16 1 -25 12 -3 20 -13 19 -27 0 -11 4 -18 9 -15 5 3 7 14 4 24 -3 12 0 19 9 19 8 0 14 5 14 11 0 5 -5 7 -12 3 -7 -4 -8 -3 -4 4 4 7 14 12 22 12 8 0 13 4 10 9 -7 11 13 9 32 -2 6 -5 16 -6 21 -2 5 3 13 0 16 -6 5 -6 18 2 35 23 25 29 27 35 14 49 -13 15 -13 17 1 22 10 4 15 0 15 -12 0 -16 9 -14 69 18 38 19 69 40 68 46 -1 5 9 11 23 12 22 2 23 2 5 -6 -16 -8 -17 -10 -3 -10 9 -1 19 3 22 7 9 15 179 13 231 -2 28 -9 50 -16 51 -16 0 0 1 6 1 13 0 8 -9 13 -23 11 -16 -1 -21 2 -17 12 6 18 7 18 46 -2 27 -15 29 -18 16 -27 -14 -9 -8 -16 33 -44 28 -18 53 -31 57 -29 4 3 19 -6 33 -19 20 -18 28 -21 39 -12 11 10 11 9 0 -5 -7 -10 -17 -15 -22 -12 -15 9 -10 -6 11 -36 11 -15 29 -49 40 -75 15 -35 24 -45 31 -38 13 13 2 36 -12 28 -5 -4 -9 -1 -9 4 0 6 8 11 18 11 14 0 15 2 2 9 -8 6 -19 7 -25 5 -5 -3 -2 1 7 9 10 8 15 17 11 20 -3 4 -12 2 -20 -4 -8 -7 -13 -8 -13 -1 0 20 32 22 56 3 13 -10 21 -21 19 -25 -3 -3 -2 -3 3 0 4 3 7 9 8 12 0 4 6 19 13 33 11 22 19 26 52 25 48 -2 54 -8 26 -25 -20 -13 -21 -13 -8 2 7 10 9 17 3 17 -5 0 -13 -7 -16 -16 -3 -8 -10 -12 -16 -9 -6 4 -8 11 -5 16 4 5 -2 6 -11 2 -11 -4 -13 -8 -6 -11 7 -2 10 -8 7 -12 -3 -5 4 -7 15 -5 11 2 20 -1 20 -7 0 -6 8 -4 18 5 13 12 21 14 29 6 8 -8 13 -7 18 2 5 7 4 10 -3 5 -6 -3 -13 -2 -17 4 -3 6 1 13 9 16 21 8 20 23 -1 20 -10 -2 -23 2 -29 8 -9 8 -7 14 10 24 21 13 21 13 -3 8 -18 -4 -21 -2 -12 7 29 29 0 163 -54 244 -38 57 -104 106 -165 123 -56 16 -124 10 -295 -26z m240 -192 c3 -9 0 -10 -14 -2 -14 7 -21 6 -23 -2 -3 -8 -10 -8 -26 3 -20 14 -19 15 18 15 23 -1 42 -7 45 -14z m-129 1 c-10 -11 -37 -12 -30 -2 3 5 12 9 21 9 9 0 13 -3 9 -7z m39 -2 c3 -5 19 -12 35 -16 16 -4 32 -11 36 -16 3 -6 -5 -7 -22 -3 -19 5 -25 4 -20 -5 4 -6 12 -9 17 -6 5 4 9 1 9 -4 0 -6 -4 -11 -10 -11 -5 0 -10 -5 -10 -11 0 -5 5 -7 12 -3 7 4 8 3 4 -4 -4 -7 -2 -12 5 -12 7 0 10 -3 7 -6 -12 -11 -47 21 -45 40 1 11 -7 25 -18 31 -11 6 -21 16 -22 23 -3 14 13 16 22 3z m125 -11 c-6 -11 -15 -20 -20 -20 -6 0 -2 9 7 20 10 11 19 20 21 20 1 0 -2 -9 -8 -20z m-283 -16 c-3 -3 -12 -4 -19 -1 -8 3 -5 6 6 6 11 1 17 -2 13 -5z m253 -24 c0 -5 -8 -10 -17 -10 -15 0 -16 2 -3 10 19 12 20 12 20 0z m54 -31 c-9 -10 -21 -16 -27 -12 -6 4 -8 0 -4 -10 6 -17 -7 -24 -17 -9 -7 12 22 45 34 37 6 -3 10 -3 9 2 -3 17 1 24 12 18 7 -5 4 -13 -7 -26z m110 7 c-6 -15 -24 -23 -24 -11 0 8 24 34 28 30 1 -1 0 -10 -4 -19z m-654 5 c0 -14 -18 -23 -30 -16 -6 4 -8 11 -5 16 8 12 35 12 35 0z m-193 -48 c0 -8 -6 -9 -15 -4 -8 5 -24 7 -36 4 -18 -3 -18 -2 -3 5 27 12 54 9 54 -5z m780 -4 c4 -16 11 -19 29 -15 14 4 24 2 24 -4 0 -9 -14 -14 -33 -11 -4 1 -3 -8 3 -19 8 -14 8 -20 0 -20 -6 0 -8 -4 -5 -10 9 -15 25 -12 25 5 0 8 4 15 10 15 5 0 7 -7 4 -15 -4 -8 -1 -15 4 -15 6 0 9 14 7 31 -3 19 2 37 11 46 14 14 15 11 10 -33 -3 -26 -12 -51 -19 -56 -6 -4 -8 -8 -4 -8 5 0 6 -4 2 -10 -3 -5 -15 0 -26 11 -16 16 -23 18 -35 8 -11 -9 -14 -9 -14 2 0 11 -2 11 -10 -1 -9 -14 -10 -12 -10 15 0 3 3 5 6 4 9 -1 24 23 24 39 0 6 -8 12 -17 12 -15 0 -16 2 -3 10 12 8 10 10 -8 10 -16 0 -21 -4 -16 -12 4 -7 3 -9 -1 -5 -12 10 -15 38 -4 31 5 -3 9 0 9 5 0 20 32 11 37 -10z m63 13 c0 -5 -7 -9 -15 -9 -8 0 -12 4 -9 9 3 4 9 8 15 8 5 0 9 -4 9 -8z m-765 -42 c-3 -5 -12 -10 -18 -10 -7 0 -6 4 3 10 19 12 23 12 15 0z m-46 -21 c-15 -9 -32 -2 -24 11 3 5 13 6 21 3 12 -4 13 -8 3 -14z" }),
243
+ /* @__PURE__ */ c("path", { d: "M6170 7415 c10 -27 -1 -33 -19 -12 -6 8 -7 18 -3 22 4 5 1 5 -6 1 -11 -6 -9 -13 6 -30 11 -11 34 -43 51 -70 31 -50 43 -54 16 -6 -9 17 -10 29 -3 37 5 7 8 18 5 25 -4 8 -6 7 -6 -4 -1 -10 -8 -18 -16 -18 -11 0 -14 9 -11 34 3 23 0 36 -9 40 -11 4 -12 0 -5 -19z" }),
244
+ /* @__PURE__ */ c("path", { d: "M4077 7386 c-55 -20 -112 -60 -140 -98 -34 -44 -73 -125 -81 -166 -5 -30 -4 -32 14 -22 11 6 49 33 85 60 86 65 152 85 259 77 155 -11 268 -27 379 -53 114 -26 172 -31 227 -19 37 8 37 17 0 83 -20 34 -42 58 -63 67 -46 20 -413 76 -537 81 -76 3 -115 1 -143 -10z" }),
245
+ /* @__PURE__ */ c("path", { d: "M4410 7190 c14 -14 34 -20 63 -20 23 -1 60 -7 82 -15 48 -17 55 -18 35 -4 -12 8 -10 9 10 5 14 -3 42 -9 63 -12 20 -4 37 -11 37 -17 0 -6 3 -7 7 -4 3 4 12 -1 20 -11 9 -10 11 -11 7 -2 -7 13 -5 13 9 1 18 -15 23 -26 7 -16 -5 3 -10 2 -10 -4 0 -5 -9 -13 -20 -16 l-20 -6 20 -26 c22 -29 26 -74 8 -102 -11 -18 -14 -18 -41 -5 -26 14 -28 14 -27 -3 4 -31 0 -36 -15 -23 -13 11 -14 10 -9 -4 3 -9 10 -16 16 -16 5 0 6 -5 3 -10 -10 -16 18 -7 31 10 9 11 8 17 -5 28 -15 12 -14 13 2 8 10 -3 21 -6 23 -6 12 0 1 -29 -22 -55 -21 -25 -27 -27 -35 -15 -9 12 -10 12 -5 -3 10 -33 -97 -68 -219 -72 -33 -1 -71 -7 -85 -13 -22 -10 -20 -11 25 -11 79 0 202 25 262 54 42 21 60 38 84 78 17 29 41 67 55 86 29 40 30 72 5 126 l-18 40 -131 29 c-72 16 -139 26 -147 22 -11 -4 -14 -2 -9 6 5 7 0 9 -14 6 -12 -4 -25 -2 -28 3 -3 5 -12 9 -20 9 -10 0 -9 -5 6 -20z m354 -194 l-14 -31 6 30 c4 17 6 44 6 60 l-1 30 9 -29 c6 -20 5 -38 -6 -60z" }),
246
+ /* @__PURE__ */ c("path", { d: "M5150 7143 c-37 -98 -42 -163 -35 -413 7 -267 -3 -354 -56 -447 -27 -50 -28 -53 -9 -53 11 0 20 5 20 11 0 5 -6 7 -12 3 -9 -5 -9 -3 1 9 14 18 36 13 25 -5 -4 -6 -1 -8 7 -6 8 3 13 10 12 16 -1 5 5 16 15 24 15 12 16 11 3 -4 -20 -26 -6 -22 41 12 43 32 45 42 2 13 -20 -12 -28 -13 -33 -4 -6 9 -11 8 -21 -4 -24 -29 -28 -14 -9 45 32 105 42 221 28 357 -6 68 -9 169 -7 225 5 101 35 239 48 219 3 -6 6 5 6 24 0 19 -1 35 -2 35 -2 0 -12 -26 -24 -57z" }),
247
+ /* @__PURE__ */ c("path", { d: "M5584 7176 c-72 -17 -150 -54 -198 -96 -38 -34 -70 -94 -62 -116 8 -21 39 -4 106 61 30 29 65 56 78 60 20 6 21 4 12 -20 -26 -67 0 -127 67 -157 74 -33 160 -9 195 55 7 12 15 42 18 67 l6 45 56 -58 c53 -54 142 -107 180 -107 16 0 16 3 1 37 -73 175 -267 272 -459 229z" }),
248
+ /* @__PURE__ */ c("path", { d: "M4304 7146 c-115 -26 -202 -88 -255 -181 -16 -27 -29 -53 -29 -57 0 -33 145 37 188 91 34 42 100 76 87 43 -34 -81 22 -162 112 -162 74 1 153 69 153 133 0 34 20 35 51 1 43 -46 91 -75 106 -62 20 16 16 50 -12 91 -14 20 -21 37 -15 37 7 0 -2 11 -18 25 -17 14 -34 25 -38 25 -5 0 5 -11 21 -25 17 -13 25 -24 19 -25 -6 0 -17 7 -24 15 -41 49 -231 77 -346 51z" }),
249
+ /* @__PURE__ */ c("path", { d: "M5975 7080 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
250
+ /* @__PURE__ */ c("path", { d: "M5481 7057 c-6 -8 -7 -17 -3 -21 4 -4 1 -6 -7 -4 -7 2 -16 -3 -18 -10 -3 -7 1 -11 8 -10 14 3 39 -38 39 -64 0 -10 5 -18 11 -18 8 0 7 -5 -1 -16 -8 -8 -9 -14 -4 -13 5 1 12 0 17 -1 4 -1 13 -3 20 -4 6 -1 11 -7 10 -13 -1 -7 28 -10 85 -9 98 1 107 3 135 30 16 15 21 16 28 5 5 -8 9 -10 9 -5 0 6 7 1 15 -10 13 -16 14 -16 9 -1 -3 9 -2 17 2 17 5 0 9 14 9 30 0 34 -3 36 -19 14 -6 -8 -19 -16 -29 -18 -9 -1 -29 -12 -43 -25 -19 -16 -44 -25 -83 -28 -106 -10 -177 50 -169 143 3 46 -2 53 -21 31z" }),
251
+ /* @__PURE__ */ c("path", { d: "M5815 7038 c4 -9 -1 -32 -9 -53 -19 -46 -19 -46 -1 -39 8 4 12 10 9 15 -3 5 0 9 6 9 7 0 9 8 5 19 -4 13 -1 20 11 23 14 3 13 6 -5 22 -17 15 -20 16 -16 4z" }),
252
+ /* @__PURE__ */ c("path", { d: "M4570 6993 c0 -16 -9 -39 -20 -53 -11 -14 -20 -32 -20 -41 0 -18 -38 -55 -95 -93 -23 -15 -33 -26 -23 -26 9 0 20 5 23 10 3 6 17 7 31 4 14 -4 24 -2 24 5 0 6 -8 8 -17 5 -12 -4 -9 1 7 14 13 11 28 18 32 16 4 -3 16 0 25 6 16 10 15 11 -5 6 -22 -4 -23 -3 -8 13 9 10 16 28 16 42 0 19 2 21 10 9 7 -11 10 -12 10 -2 0 23 30 45 61 44 16 0 29 1 29 4 0 11 -55 64 -67 64 -7 0 -13 -11 -13 -27z" }),
253
+ /* @__PURE__ */ c("path", { d: "M5424 6998 c-8 -12 24 -40 36 -33 5 3 10 -2 14 -10 3 -8 1 -17 -4 -20 -15 -9 -12 -25 3 -19 18 6 19 40 1 54 -7 7 -11 16 -8 21 8 13 -10 11 -25 -3 -11 -11 -13 -10 -8 5 7 19 2 23 -9 5z" }),
254
+ /* @__PURE__ */ c("path", { d: "M5840 6993 c0 -5 5 -14 12 -21 7 -7 8 -12 4 -12 -5 0 -3 -7 4 -15 7 -8 10 -15 6 -15 -4 0 1 -15 11 -32 14 -27 18 -30 21 -14 2 10 -1 22 -8 26 -9 5 -8 9 2 12 17 7 34 5 31 -3 -9 -28 -10 -60 -1 -65 7 -4 8 -2 4 4 -4 7 -3 12 3 12 6 0 8 8 5 18 -5 15 -5 15 5 0 8 -12 21 -15 53 -11 39 5 41 4 24 -9 -16 -12 -17 -18 -7 -34 10 -15 11 -15 7 -2 -8 26 11 31 27 7 9 -13 17 -16 22 -10 3 6 1 11 -5 11 -7 0 -9 7 -6 16 4 10 2 13 -6 8 -7 -5 -8 -3 -3 6 6 10 11 9 22 -5 7 -11 13 -23 13 -28 0 -4 5 -5 10 -2 6 4 8 10 5 15 -3 5 3 17 14 27 13 13 18 26 14 45 -6 34 -21 28 -18 -6 2 -15 -2 -24 -8 -23 -7 1 -11 -7 -9 -18 2 -18 1 -19 -11 -3 -7 9 -26 20 -43 24 -36 9 -100 40 -139 69 -42 31 -55 37 -55 28z m135 -93 c3 -5 1 -10 -4 -10 -6 0 -11 5 -11 10 0 6 2 10 4 10 3 0 8 -4 11 -10z" }),
255
+ /* @__PURE__ */ c("path", { d: "M5136 6955 c-9 -26 -7 -32 5 -12 6 10 9 21 6 23 -2 3 -7 -2 -11 -11z" }),
256
+ /* @__PURE__ */ c("path", { d: "M4601 6941 c-8 -6 -9 -11 -3 -15 6 -3 14 -1 17 5 9 14 2 20 -14 10z" }),
257
+ /* @__PURE__ */ c("path", { d: "M6180 6940 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
258
+ /* @__PURE__ */ c("path", { d: "M5200 6909 c0 -5 5 -7 10 -4 6 3 10 8 10 11 0 2 -4 4 -10 4 -5 0 -10 -5 -10 -11z" }),
259
+ /* @__PURE__ */ c("path", { d: "M6205 6910 c-3 -6 1 -7 9 -4 18 7 21 14 7 14 -6 0 -13 -4 -16 -10z" }),
260
+ /* @__PURE__ */ c("path", { d: "M5770 6896 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
261
+ /* @__PURE__ */ c("path", { d: "M5467 6876 c-3 -8 1 -20 9 -26 12 -10 14 -8 14 14 0 28 -14 35 -23 12z" }),
262
+ /* @__PURE__ */ c("path", { d: "M5765 6860 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0 -8 -4 -11 -10z" }),
263
+ /* @__PURE__ */ c("path", { d: "M5856 6854 c-4 -9 -4 -19 -2 -21 8 -8 26 8 26 23 0 19 -16 18 -24 -2z" }),
264
+ /* @__PURE__ */ c("path", { d: "M5969 6862 c-14 -6 -14 -9 -4 -19 10 -9 14 -8 18 8 3 10 4 19 4 18 -1 0 -9 -3 -18 -7z" }),
265
+ /* @__PURE__ */ c("path", { d: "M6150 6854 c0 -8 5 -12 10 -9 6 4 8 11 5 16 -9 14 -15 11 -15 -7z" }),
266
+ /* @__PURE__ */ c("path", { d: "M6238 6843 c6 -2 12 -17 12 -31 l0 -27 13 25 c11 21 11 26 -2 32 -9 4 -20 7 -26 7 -5 -1 -4 -3 3 -6z" }),
267
+ /* @__PURE__ */ c("path", { d: "M5784 6829 c-3 -6 -2 -15 3 -20 5 -5 9 -1 9 11 0 23 -2 24 -12 9z" }),
268
+ /* @__PURE__ */ c("path", { d: "M5490 6826 c0 -2 7 -7 16 -10 8 -3 12 -2 9 4 -6 10 -25 14 -25 6z" }),
269
+ /* @__PURE__ */ c("path", { d: "M5687 6806 c-4 -9 -3 -15 1 -15 4 1 9 0 12 -1 18 -8 60 -5 63 4 3 7 -8 11 -27 10 -17 -1 -34 3 -37 8 -3 5 -9 3 -12 -6z" }),
270
+ /* @__PURE__ */ c("path", { d: "M6167 6802 c6 -23 25 -26 29 -4 2 8 0 8 -3 2 -3 -7 -10 -4 -19 7 -12 17 -13 16 -7 -5z" }),
271
+ /* @__PURE__ */ c("path", { d: "M5940 6800 c-12 -7 -10 -9 7 -7 12 0 19 5 17 9 -6 10 -6 10 -24 -2z" }),
272
+ /* @__PURE__ */ c("path", { d: "M5895 6791 c-6 -11 13 -26 22 -17 4 3 1 6 -6 6 -7 0 -9 5 -6 10 3 6 4 10 1 10 -3 0 -7 -4 -11 -9z" }),
273
+ /* @__PURE__ */ c("path", { d: "M6067 6783 c3 -7 8 -13 12 -13 4 0 8 6 8 13 0 8 -6 14 -13 14 -7 0 -10 -6 -7 -14z" }),
274
+ /* @__PURE__ */ c("path", { d: "M5950 6770 c20 -13 33 -13 25 0 -3 6 -14 10 -23 10 -15 0 -15 -2 -2 -10z" }),
275
+ /* @__PURE__ */ c("path", { d: "M5143 6701 c0 -11 5 -17 9 -15 5 3 6 9 3 14 -3 4 1 11 7 13 8 4 7 6 -4 6 -11 1 -16 -6 -15 -18z" }),
276
+ /* @__PURE__ */ c("path", { d: "M5322 6706 c7 -8 15 -12 17 -11 5 6 -10 25 -20 25 -5 0 -4 -6 3 -14z" }),
277
+ /* @__PURE__ */ c("path", { d: "M6180 6690 c-12 -7 -10 -9 7 -7 12 0 19 5 17 9 -6 10 -6 10 -24 -2z" }),
278
+ /* @__PURE__ */ c("path", { d: "M6225 6689 c-4 -6 -5 -12 -2 -15 2 -3 7 2 10 11 7 17 1 20 -8 4z" }),
279
+ /* @__PURE__ */ c("path", { d: "M6042 6676 c13 -14 28 -12 28 5 0 5 -9 9 -20 9 -17 0 -19 -2 -8 -14z" }),
280
+ /* @__PURE__ */ c("path", { d: "M6090 6630 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
281
+ /* @__PURE__ */ c("path", { d: "M6030 6570 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
282
+ /* @__PURE__ */ c("path", { d: "M6110 6571 c0 -6 4 -13 10 -16 6 -3 7 1 4 9 -7 18 -14 21 -14 7z" }),
283
+ /* @__PURE__ */ c("path", { d: "M6062 6559 c2 -8 -4 -13 -14 -13 -10 1 -14 -4 -11 -12 5 -15 33 -7 33 10 0 6 5 4 10 -4 5 -8 10 -10 10 -4 0 6 -7 17 -16 24 -12 11 -15 11 -12 -1z" }),
284
+ /* @__PURE__ */ c("path", { d: "M6179 6548 c-11 -8 -11 -9 2 -5 9 3 22 0 28 -6 6 -6 13 -9 15 -6 11 11 -31 27 -45 17z" }),
285
+ /* @__PURE__ */ c("path", { d: "M5286 6528 c-17 -23 -4 -64 16 -52 7 5 9 0 6 -14 -4 -12 -2 -25 3 -28 12 -7 11 -44 -1 -44 -6 0 -14 10 -19 22 -4 12 -10 17 -14 11 -4 -6 0 -16 8 -23 20 -17 19 -31 -2 -23 -15 6 -16 4 -5 -9 8 -10 9 -18 3 -22 -6 -4 -8 -13 -4 -21 7 -19 -8 -19 -33 0 -10 8 -23 15 -27 15 -16 0 19 -26 52 -40 31 -12 35 -12 47 5 22 30 15 223 -7 209 -5 -3 -6 -10 -3 -16 4 -6 2 -8 -4 -5 -11 8 -11 25 1 45 14 21 -1 13 -17 -10z m34 -193 c0 -8 -6 -15 -14 -15 -17 0 -28 14 -19 24 12 12 33 6 33 -9z" }),
286
+ /* @__PURE__ */ c("path", { d: "M6097 6507 c-3 -8 1 -14 8 -14 7 0 11 6 8 14 -3 7 -6 13 -8 13 -2 0 -5 -6 -8 -13z" }),
287
+ /* @__PURE__ */ c("path", { d: "M6155 6509 c-4 -6 -5 -12 -2 -15 2 -3 7 2 10 11 7 17 1 20 -8 4z" }),
288
+ /* @__PURE__ */ c("path", { d: "M6220 6507 c0 -8 -8 -18 -17 -20 -17 -4 -17 -5 0 -6 18 -1 35 25 23 36 -3 4 -6 -1 -6 -10z" }),
289
+ /* @__PURE__ */ c("path", { d: "M5230 6489 c0 -11 4 -18 10 -14 5 3 7 12 3 20 -7 21 -13 19 -13 -6z" }),
290
+ /* @__PURE__ */ c("path", { d: "M5430 6500 c0 -6 7 -10 15 -10 8 0 15 2 15 4 0 2 -7 6 -15 10 -8 3 -15 1 -15 -4z" }),
291
+ /* @__PURE__ */ c("path", { d: "M6021 6494 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
292
+ /* @__PURE__ */ c("path", { d: "M6237 6490 c-4 -14 -7 -36 -7 -50 0 -18 -3 -21 -9 -12 -7 11 -9 11 -14 -1 -3 -8 -1 -19 4 -24 12 -12 -7 -67 -20 -58 -6 3 -9 -3 -8 -14 0 -11 5 -17 9 -15 4 3 8 -2 8 -11 0 -9 -4 -13 -10 -10 -5 3 -7 0 -4 -9 3 -8 1 -23 -5 -33 -6 -10 -11 -12 -11 -5 0 6 -5 12 -11 12 -5 0 -7 -6 -3 -12 5 -9 2 -9 -9 1 -9 7 -17 12 -18 10 -1 -2 -2 -16 -3 -32 -2 -15 -7 -31 -11 -35 -5 -4 -5 1 -2 11 4 9 2 17 -5 17 -6 0 -16 7 -22 16 -10 13 -12 13 -12 -5 0 -12 3 -21 6 -21 3 0 6 -11 6 -25 0 -14 -3 -25 -7 -25 -8 0 -5 -23 7 -54 6 -15 4 -17 -6 -11 -7 5 -11 4 -7 -1 3 -5 -1 -18 -9 -29 -8 -10 -14 -13 -14 -6 0 7 -4 10 -9 7 -5 -4 -11 -3 -14 1 -2 5 -2 3 -1 -4 2 -7 -1 -15 -6 -18 -6 -4 -10 -1 -10 5 0 6 -5 8 -12 4 -8 -5 -6 -11 5 -19 17 -12 24 -31 9 -21 -5 3 -9 -2 -9 -10 0 -37 121 113 172 215 26 53 80 262 72 284 -2 6 -6 0 -10 -13z m-87 -300 c-6 -11 -15 -20 -20 -20 -6 0 -2 9 7 20 10 11 19 20 21 20 1 0 -2 -9 -8 -20z m-110 -150 c0 -5 -5 -10 -11 -10 -5 0 -7 5 -4 10 3 6 8 10 11 10 2 0 4 -4 4 -10z" }),
293
+ /* @__PURE__ */ c("path", { d: "M5255 6480 c-4 -7 -1 -16 6 -21 17 -10 26 8 11 23 -6 6 -12 6 -17 -2z" }),
294
+ /* @__PURE__ */ c("path", { d: "M6127 6463 c-4 -6 0 -13 8 -17 8 -3 17 0 21 6 4 6 3 8 -4 4 -5 -3 -12 -1 -14 6 -3 8 -6 9 -11 1z" }),
295
+ /* @__PURE__ */ c("path", { d: "M5136 6435 c-3 -8 -1 -15 4 -15 6 0 10 7 10 15 0 8 -2 15 -4 15 -2 0 -6 -7 -10 -15z" }),
296
+ /* @__PURE__ */ c("path", { d: "M6180 6413 c0 -5 5 -14 12 -21 9 -9 8 -12 -6 -12 -10 0 -14 -5 -10 -11 4 -7 11 -6 22 4 13 14 13 17 -2 32 -9 9 -16 13 -16 8z" }),
297
+ /* @__PURE__ */ c("path", { d: "M5198 6393 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
298
+ /* @__PURE__ */ c("path", { d: "M6100 6391 c0 -10 29 -36 34 -30 1 2 -6 12 -16 22 -10 9 -18 13 -18 8z" }),
299
+ /* @__PURE__ */ c("path", { d: "M5145 6370 c12 -13 12 -19 2 -30 -10 -12 -9 -12 4 -2 9 7 24 10 33 6 18 -7 21 4 6 26 -6 10 -10 11 -10 3 0 -7 -5 -13 -11 -13 -6 0 -9 6 -6 13 3 7 -3 13 -14 13 -16 0 -17 -2 -4 -16z" }),
300
+ /* @__PURE__ */ c("path", { d: "M5990 6380 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
301
+ /* @__PURE__ */ c("path", { d: "M5238 6353 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
302
+ /* @__PURE__ */ c("path", { d: "M5985 6351 c-3 -5 -2 -12 3 -15 5 -3 9 1 9 9 0 17 -3 19 -12 6z" }),
303
+ /* @__PURE__ */ c("path", { d: "M6152 6344 c-7 -8 -8 -14 -3 -14 10 0 25 19 20 25 -2 1 -10 -3 -17 -11z" }),
304
+ /* @__PURE__ */ c("path", { d: "M5981 6311 c-8 -5 -11 -16 -6 -30 8 -28 25 -17 23 14 -1 14 -3 25 -3 25 0 0 -6 -4 -14 -9z" }),
305
+ /* @__PURE__ */ c("path", { d: "M6149 6318 c-5 -18 -6 -38 -1 -34 7 8 12 36 6 36 -2 0 -4 -1 -5 -2z" }),
306
+ /* @__PURE__ */ c("path", { d: "M5986 6235 c4 -8 8 -15 10 -15 2 0 4 7 4 15 0 8 -4 15 -10 15 -5 0 -7 -7 -4 -15z" }),
307
+ /* @__PURE__ */ c("path", { d: "M6045 6229 c-4 -6 -5 -12 -2 -15 2 -3 7 2 10 11 7 17 1 20 -8 4z" }),
308
+ /* @__PURE__ */ c("path", { d: "M6040 6184 c-21 -11 -22 -14 -7 -20 22 -8 22 -25 0 -17 -15 5 -16 3 -6 -7 7 -8 19 -15 27 -16 12 -2 13 3 5 24 -7 18 -6 27 3 33 22 14 4 16 -22 3z" }),
309
+ /* @__PURE__ */ c("path", { d: "M5990 6141 c7 -14 6 -21 -2 -23 -9 -3 -9 -6 0 -12 7 -4 12 -2 12 4 0 6 5 8 11 4 6 -3 3 5 -6 20 -20 30 -31 35 -15 7z" }),
310
+ /* @__PURE__ */ c("path", { d: "M5933 6046 c0 -31 4 -53 8 -50 5 3 7 9 4 14 -3 5 -1 11 5 15 5 3 10 12 10 18 0 7 -4 6 -10 -3 -8 -13 -10 -13 -10 2 0 9 6 18 13 21 9 3 8 9 -4 22 -15 16 -16 13 -16 -39z" }),
311
+ /* @__PURE__ */ c("path", { d: "M4271 6038 c-14 -23 -14 -23 8 -4 22 20 25 26 13 26 -4 0 -13 -10 -21 -22z" }),
312
+ /* @__PURE__ */ c("path", { d: "M5844 5947 c3 -10 6 -26 6 -35 0 -12 3 -13 11 -5 8 8 7 17 -6 35 -12 16 -16 18 -11 5z" }),
313
+ /* @__PURE__ */ c("path", { d: "M6456 7208 c-42 -42 -86 -165 -65 -179 11 -7 10 -9 -3 -9 -13 0 -18 -8 -18 -26 0 -15 4 -23 11 -19 6 4 8 14 4 23 -3 9 -3 13 1 10 3 -4 26 19 49 51 34 46 42 65 40 92 -2 19 2 40 7 47 8 10 6 11 -8 6 -15 -6 -17 -4 -7 6 10 11 15 11 28 0 10 -8 15 -9 15 -2 0 6 8 9 18 6 14 -5 14 -3 -2 10 -27 22 -33 21 -70 -16z m9 -38 c3 -5 2 -10 -4 -10 -5 0 -13 5 -16 10 -3 6 -2 10 4 10 5 0 13 -4 16 -10z m-5 -30 c-10 -6 -11 -10 -2 -10 19 0 14 -12 -22 -52 -33 -37 -55 -51 -40 -26 4 7 9 23 10 37 2 13 8 29 14 35 8 8 9 3 4 -19 -7 -27 -6 -29 9 -16 9 7 14 17 11 23 -8 13 3 38 18 38 9 0 8 -3 -2 -10z" }),
314
+ /* @__PURE__ */ c("path", { d: "M6545 7177 c4 -19 2 -26 -5 -22 -5 3 -10 2 -10 -4 0 -5 5 -11 11 -13 7 -2 -5 -32 -31 -73 -23 -39 -43 -76 -43 -82 0 -7 -4 -13 -8 -13 -33 0 -68 -241 -77 -533 l-7 -207 22 0 c101 0 133 85 148 385 3 77 9 148 12 159 3 12 1 16 -6 12 -6 -4 -11 -30 -11 -57 0 -31 -4 -48 -10 -44 -14 9 -12 -8 3 -24 7 -8 7 -11 1 -8 -14 8 -65 -30 -61 -46 1 -6 -13 -11 -35 -12 -21 0 -38 3 -38 7 0 4 5 8 11 8 6 0 8 7 5 16 -3 8 -2 12 3 9 5 -3 13 -1 16 5 4 6 1 9 -6 8 -24 -5 -22 35 2 53 13 10 19 19 14 19 -6 0 -17 -6 -24 -12 -11 -11 -13 -6 -7 27 3 22 6 53 6 69 0 24 2 27 15 16 13 -10 18 -11 28 -1 9 10 9 12 -3 9 -8 -2 -14 3 -12 10 1 8 -2 11 -7 8 -5 -4 -9 3 -8 14 1 13 5 16 11 10 6 -6 17 -10 26 -10 12 1 12 2 -2 11 -25 14 -23 50 2 56 19 5 20 6 3 20 -10 8 -12 12 -5 8 11 -6 17 13 13 39 -3 15 31 45 45 39 8 -3 14 -1 14 5 0 6 3 18 7 28 4 11 3 15 -4 11 -7 -5 -9 0 -6 13 14 54 19 15 17 -133 -1 -138 -1 -149 6 -72 13 147 11 257 -6 290 l-14 30 5 -28z m-10 -547 c-3 -5 -8 -42 -11 -82 -8 -121 -7 -115 -34 -115 -13 0 -31 7 -38 16 -11 13 -12 13 -9 1 2 -8 -2 -27 -9 -42 -9 -17 -10 -29 -4 -33 6 -3 10 -14 10 -23 0 -9 -11 1 -23 23 -23 39 -25 65 -5 65 6 0 6 -6 -1 -14 -8 -9 -8 -16 -2 -20 6 -4 14 8 19 26 6 22 15 33 28 34 10 1 24 2 29 4 6 1 13 2 18 1 4 0 7 7 7 16 0 9 -3 13 -7 10 -7 -8 -33 11 -33 25 0 5 5 6 10 3 11 -7 13 15 4 39 -3 9 -10 13 -16 10 -5 -3 -4 -12 4 -22 7 -9 9 -14 3 -11 -13 7 -57 -39 -45 -46 5 -3 11 -1 15 5 4 7 13 6 27 -1 14 -8 17 -14 9 -22 -7 -7 -15 -7 -25 2 -12 10 -17 9 -28 -8 -18 -29 -38 -26 -38 5 0 14 4 23 10 19 5 -3 7 7 5 26 -4 30 -3 30 15 14 18 -16 19 -15 22 16 3 36 29 47 52 23 20 -20 23 -18 22 16 -1 27 -2 28 -14 13 -11 -16 -12 -15 -9 6 4 24 25 43 39 35 5 -3 6 -9 3 -14z m-109 -59 c0 -16 -3 -17 -14 -9 -12 10 -7 19 13 28 1 0 1 -9 1 -19z m49 -161 c3 -5 11 -7 18 -4 8 3 13 -5 14 -18 2 -18 0 -20 -7 -8 -5 8 -10 11 -10 6 0 -6 -7 -1 -15 10 -14 19 -14 18 -15 -3 0 -13 5 -23 10 -23 6 0 10 -4 10 -10 0 -15 -28 0 -32 18 -9 32 12 57 27 32z m29 -75 c-6 -16 -44 -41 -44 -29 0 5 40 43 47 44 1 0 0 -7 -3 -15z m-61 -38 c-5 -24 -34 -31 -50 -12 -5 4 -2 5 5 1 11 -6 14 0 11 20 -1 9 24 24 32 19 3 -3 4 -15 2 -28z" }),
315
+ /* @__PURE__ */ c("path", { d: "M6410 6480 c-8 -5 -12 -12 -9 -15 4 -3 12 1 19 10 14 17 11 19 -10 5z" }),
316
+ /* @__PURE__ */ c("path", { d: "M6460 6910 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
317
+ /* @__PURE__ */ c("path", { d: "M6518 6870 c15 -17 16 -40 1 -40 -5 0 -7 5 -3 11 4 8 0 8 -15 0 -25 -14 -28 -23 -4 -14 11 5 14 3 8 -6 -6 -10 -3 -11 14 -2 26 14 27 34 4 52 -15 11 -16 11 -5 -1z" }),
318
+ /* @__PURE__ */ c("path", { d: "M6521 6801 c-8 -5 -9 -11 -3 -15 5 -3 12 1 16 9 6 17 6 18 -13 6z" }),
319
+ /* @__PURE__ */ c("path", { d: "M6440 6771 c-13 -25 -13 -31 2 -31 6 0 8 3 5 6 -3 4 -2 15 4 25 5 11 7 19 5 19 -3 0 -10 -9 -16 -19z" }),
320
+ /* @__PURE__ */ c("path", { d: "M6502 6738 c-17 -17 -15 -28 6 -27 11 0 12 2 4 6 -10 4 -10 8 -1 19 14 17 8 19 -9 2z" }),
321
+ /* @__PURE__ */ c("path", { d: "M6473 6716 c1 -11 9 -21 17 -23 10 -3 11 -2 4 4 -6 4 -14 15 -17 23 -5 11 -6 9 -4 -4z" }),
322
+ /* @__PURE__ */ c("path", { d: "M6440 6686 c0 -2 9 -6 20 -9 11 -3 18 -1 14 4 -5 9 -34 13 -34 5z" }),
323
+ /* @__PURE__ */ c("path", { d: "M5570 6231 c0 -7 -4 -10 -9 -6 -5 3 -12 1 -16 -5 -3 -5 1 -10 9 -10 17 0 31 18 22 27 -3 4 -6 1 -6 -6z" }),
324
+ /* @__PURE__ */ c("path", { d: "M5628 6183 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
325
+ /* @__PURE__ */ c("path", { d: "M5675 6180 c-7 -11 19 -20 34 -10 9 5 7 9 -8 13 -12 3 -23 2 -26 -3z" }),
326
+ /* @__PURE__ */ c("path", { d: "M5516 5829 c-63 -21 -101 -41 -133 -69 -24 -21 -63 -48 -86 -60 -42 -22 -34 -22 45 -2 30 8 38 7 43 -6 6 -17 7 -15 -88 -123 -66 -76 -82 -104 -52 -93 10 4 15 0 16 -12 0 -12 3 -14 6 -6 3 7 0 18 -6 25 -7 9 -4 21 14 42 13 17 27 26 31 22 5 -4 2 -13 -6 -18 -13 -9 -12 -10 2 -6 9 3 19 1 22 -6 3 -7 4 -3 1 8 -4 15 0 21 13 22 9 0 27 3 40 6 20 5 22 3 18 -16 -3 -12 2 -5 11 16 16 38 35 44 41 14 3 -13 -1 -15 -15 -11 -16 6 -15 5 2 -9 11 -9 26 -17 33 -17 17 0 15 -27 -3 -27 -8 0 -17 9 -20 18 -6 17 -8 17 -29 4 -12 -8 -26 -12 -30 -8 -3 4 -17 8 -29 9 -12 2 -16 0 -9 -2 6 -3 12 -12 12 -20 0 -10 8 -14 22 -12 18 2 23 -2 24 -19 1 -12 -3 -20 -7 -17 -5 3 -9 -2 -9 -10 0 -8 -4 -17 -9 -20 -5 -4 -7 3 -4 14 3 11 9 23 14 26 5 3 9 10 9 17 0 6 -7 2 -15 -9 -13 -16 -16 -17 -25 -4 -5 8 -10 10 -10 4 0 -5 4 -14 9 -20 5 -5 5 -19 0 -33 -8 -20 -11 -22 -26 -10 -12 10 -14 10 -9 2 4 -7 3 -13 -2 -13 -16 0 -22 13 -12 25 7 8 5 12 -5 12 -8 0 -12 -4 -10 -8 3 -3 -3 -13 -12 -20 -15 -12 -16 -12 -10 5 6 16 5 17 -8 6 -15 -13 -20 -5 -16 28 1 6 -3 12 -9 12 -17 0 -11 -29 10 -50 31 -31 103 -27 177 10 65 33 149 113 137 132 -4 7 -3 8 5 4 7 -5 21 13 38 51 34 74 43 175 19 221 -9 18 -18 32 -19 31 -1 -1 -42 -14 -91 -30z m-9 -69 c1 -11 0 -20 -2 -20 -2 0 -9 9 -15 20 -8 15 -8 20 3 20 7 0 13 -9 14 -20z m-17 -33 c0 -6 -9 0 -20 13 -11 13 -20 25 -20 28 0 3 9 -3 20 -13 11 -10 20 -23 20 -28z m54 21 c-5 -8 -2 -9 10 -5 14 6 17 3 12 -9 -3 -8 -6 -20 -6 -25 0 -6 -5 -7 -12 -3 -7 4 -8 3 -4 -5 6 -9 12 -9 24 1 14 11 14 9 -1 -8 -9 -11 -16 -23 -15 -25 2 -2 -3 2 -9 10 -18 21 -16 0 3 -27 9 -13 11 -22 4 -22 -12 0 6 -40 24 -52 8 -6 7 -8 -1 -8 -6 0 -19 10 -29 23 l-16 22 5 -22 c6 -27 -4 -30 -19 -5 -14 22 -12 37 5 37 8 0 16 6 19 14 3 8 0 11 -5 8 -5 -3 -10 -1 -11 6 0 7 -3 22 -6 35 -2 12 -1 22 5 22 5 0 9 11 9 25 0 14 5 25 11 25 5 0 7 -5 3 -12z m66 -16 c0 -5 -7 -9 -15 -9 -8 0 -12 4 -9 9 3 4 9 8 15 8 5 0 9 -4 9 -8z m17 -14 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m-19 -15 c0 -5 2 -16 7 -26 5 -11 3 -23 -5 -30 -9 -9 -11 -8 -8 8 2 12 -2 19 -9 18 -15 -3 -15 -1 -7 21 6 16 25 23 22 9z m-98 -34 c0 -5 -4 -9 -8 -9 -5 0 -9 7 -9 15 0 8 4 12 9 9 4 -3 8 -9 8 -15z m-128 -38 c-8 -4 -14 -12 -14 -17 -1 -21 -11 -33 -21 -27 -6 4 -8 0 -5 -8 4 -10 -1 -15 -13 -16 -16 -2 -17 1 -6 18 6 10 17 19 23 19 7 0 14 9 17 20 3 11 11 20 19 20 11 0 11 -2 0 -9z m76 -15 c-7 -8 -15 -12 -17 -11 -5 6 10 25 20 25 5 0 4 -6 -3 -14z m136 -11 c-4 -8 -10 -15 -15 -15 -4 0 -6 7 -3 15 4 8 10 15 15 15 4 0 6 -7 3 -15z m-188 -33 c-9 -9 -37 8 -31 18 5 8 11 7 21 -1 8 -6 12 -14 10 -17z m113 -16 c-9 -10 -59 -14 -54 -5 4 5 18 9 32 9 15 0 24 -2 22 -4z m-69 -110 c0 -2 -7 -7 -16 -10 -8 -3 -12 -2 -9 4 6 10 25 14 25 6z" }),
327
+ /* @__PURE__ */ c("path", { d: "M5505 5610 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0 -7 -4 -4 -10z" }),
328
+ /* @__PURE__ */ c("path", { d: "M5285 5501 c-3 -5 0 -13 6 -17 7 -4 9 -3 5 4 -3 5 0 13 6 15 9 4 10 6 1 6 -6 1 -14 -3 -18 -8z" }),
329
+ /* @__PURE__ */ c("path", { d: "M5326 5460 c7 -28 12 -35 18 -29 2 2 -2 15 -10 29 l-15 25 7 -25z" }),
330
+ /* @__PURE__ */ c("path", { d: "M6021 5269 c-28 -33 -48 -66 -44 -71 3 -6 1 -8 -4 -5 -13 8 -36 -17 -25 -28 4 -5 2 -5 -4 -2 -6 4 -36 -19 -65 -50 -68 -73 -166 -162 -247 -226 -35 -27 -60 -52 -57 -55 3 -3 11 0 17 6 8 8 15 7 25 -6 13 -15 13 -15 3 6 -6 12 -8 23 -5 23 3 1 10 2 15 3 6 0 14 7 19 14 5 8 12 13 16 12 4 -1 13 9 19 22 8 14 20 23 34 22 15 0 21 4 18 12 -3 7 2 18 11 25 12 11 20 10 45 -4 16 -9 26 -11 22 -5 -5 7 -2 9 9 5 9 -3 18 1 21 10 5 12 1 14 -18 11 -26 -5 -44 16 -24 28 7 5 8 2 3 -6 -6 -9 -4 -11 4 -6 7 5 10 14 7 21 -2 7 2 16 10 19 20 8 29 6 26 -6 -1 -5 3 -8 10 -6 7 3 18 -6 25 -20 15 -29 17 -55 2 -29 -13 22 -25 22 -32 -2 -3 -13 0 -18 12 -16 9 1 23 -1 32 -6 10 -5 24 -2 37 7 12 8 22 13 22 11 0 -9 -55 -62 -62 -59 -4 1 -7 -4 -5 -10 1 -7 -5 -11 -13 -10 -8 2 -12 0 -8 -4 4 -4 3 -13 -3 -21 -6 -7 -8 -13 -4 -13 11 0 87 88 128 149 54 82 79 154 83 244 2 42 2 77 0 77 -3 0 -27 -27 -55 -61z m39 3 c0 -13 -23 -32 -39 -32 -11 0 -10 4 4 20 19 21 35 26 35 12z m-11 -51 c8 -5 11 -16 8 -26 -6 -15 -9 -15 -37 1 -16 10 -27 20 -25 22 2 3 16 -3 30 -12 14 -9 25 -12 25 -7 0 6 -8 15 -17 20 -10 6 -13 10 -8 11 6 0 16 -4 24 -9z m-15 -49 c3 -5 -1 -9 -9 -9 -8 0 -15 4 -15 9 0 4 4 8 9 8 6 0 12 -4 15 -8z m-39 -31 c-3 -6 -11 -11 -17 -11 -6 0 -6 6 2 15 14 17 26 13 15 -4z m-41 -3 c-3 -4 -9 -8 -15 -8 -5 0 -9 4 -9 8 0 5 7 9 15 9 8 0 12 -4 9 -9z m12 -19 c22 6 36 5 44 -2 10 -9 11 -9 5 2 -5 9 -4 12 3 7 7 -4 12 -14 12 -22 0 -8 -4 -12 -10 -9 -6 3 -7 -1 -4 -9 4 -9 1 -16 -6 -16 -7 0 -19 -8 -26 -17 -12 -16 -12 -16 -7 5 3 13 1 22 -6 22 -6 0 -11 8 -12 18 -1 11 -4 8 -8 -8 -10 -33 -3 -50 23 -60 18 -7 17 -8 -10 -8 -28 1 -30 3 -27 35 1 22 -4 40 -17 53 -10 10 -16 21 -13 24 3 3 11 -1 17 -9 8 -12 18 -13 42 -6z m-40 -59 c-2 -15 -6 -32 -10 -38 -4 -7 -2 -21 4 -32 6 -11 7 -20 2 -20 -11 0 -25 38 -22 59 1 8 -4 18 -12 23 -10 7 -9 8 5 4 19 -6 23 14 6 31 -9 9 -7 11 9 6 16 -4 21 -12 18 -33z m-60 3 c-10 -10 -19 5 -10 18 6 11 8 11 12 0 2 -7 1 -15 -2 -18z" }),
331
+ /* @__PURE__ */ c("path", { d: "M5975 5100 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0 -7 -4 -4 -10z" }),
332
+ /* @__PURE__ */ c("path", { d: "M5868 4944 c6 -3 9 -11 5 -17 -5 -8 -2 -8 9 0 8 7 18 11 21 8 4 -3 5 -2 2 2 -3 4 -16 8 -28 9 -12 2 -16 0 -9 -2z" }),
333
+ /* @__PURE__ */ c("path", { d: "M5720 4895 c-7 -9 -8 -15 -2 -15 5 0 12 7 16 15 3 8 4 15 2 15 -2 0 -9 -7 -16 -15z" }),
334
+ /* @__PURE__ */ c("path", { d: "M5810 4849 c-12 -8 -10 -9 8 -4 23 7 24 7 5 -12 -10 -11 -25 -29 -33 -41 -14 -22 -37 -32 -24 -11 3 6 0 15 -7 20 -10 6 -11 9 -1 9 6 0 12 8 12 17 0 15 -2 14 -14 -3 -9 -12 -11 -23 -5 -30 6 -8 4 -14 -6 -18 -8 -3 -15 -15 -15 -27 0 -19 -2 -20 -17 -8 -15 11 -16 11 -5 -1 15 -18 16 -34 0 -24 -7 4 -8 3 -4 -4 4 -7 2 -12 -5 -12 -7 0 -9 -3 -5 -7 3 -4 42 29 86 72 55 54 76 82 67 87 -16 10 -19 10 -37 -3z m-56 -94 c-4 -8 -8 -15 -10 -15 -2 0 -4 7 -4 15 0 8 4 15 10 15 5 0 7 -7 4 -15z" }),
335
+ /* @__PURE__ */ c("path", { d: "M5510 4800 c-58 -38 -66 -80 -9 -50 10 6 19 20 19 30 0 19 19 26 58 21 18 -3 15 7 -6 18 -14 8 -29 3 -62 -19z" }),
336
+ /* @__PURE__ */ c("path", { d: "M4518 4774 c36 -52 432 -447 507 -506 110 -87 103 -86 170 -25 48 44 54 53 37 54 -12 1 -24 -2 -27 -8 -3 -5 2 -6 12 -3 16 6 2 -8 -54 -56 -6 -5 -13 -6 -16 -2 -2 4 -3 2 -1 -5 5 -20 -8 -22 -32 -6 -13 8 -21 20 -17 26 3 6 1 7 -6 3 -7 -5 -35 12 -69 40 -83 71 -151 136 -150 143 4 15 -14 51 -23 45 -6 -4 -3 -15 8 -27 10 -12 2 -8 -17 8 -59 50 -70 68 -57 84 9 11 9 13 0 8 -6 -4 -14 -3 -18 3 -4 6 -10 8 -14 6 -10 -6 -112 96 -114 115 -4 22 -17 40 -26 34 -5 -2 -17 5 -27 17 -12 13 -13 18 -4 12 8 -5 17 -9 20 -10 3 0 24 -6 48 -13 24 -7 49 -10 55 -7 7 2 4 5 -6 5 -10 1 -42 10 -72 20 -30 11 -55 16 -55 13 0 -4 -4 -2 -8 3 -4 6 -20 21 -36 35 l-30 25 22 -31z" }),
337
+ /* @__PURE__ */ c("path", { d: "M5410 4746 c-14 -8 -44 -17 -67 -21 -24 -4 -43 -10 -43 -15 0 -9 74 6 102 21 14 7 23 7 34 -2 8 -6 14 -10 15 -8 9 44 2 48 -41 25z" }),
338
+ /* @__PURE__ */ c("path", { d: "M5193 4703 c-29 -2 -53 -7 -53 -11 0 -4 -24 -6 -52 -5 -154 7 -355 7 -331 0 16 -4 85 -8 156 -9 108 -1 127 -4 127 -17 1 -14 2 -13 11 2 7 11 22 17 47 16 28 0 32 -2 18 -8 -19 -7 -19 -8 2 -13 12 -3 20 -2 19 4 -1 6 4 13 12 16 8 3 11 0 7 -7 -4 -6 -2 -11 4 -11 6 0 8 -5 4 -12 -4 -6 -3 -8 4 -4 6 3 9 15 7 26 -3 16 2 20 28 21 18 1 46 5 62 9 26 7 27 8 5 7 -14 0 -49 -2 -77 -4z" }),
339
+ /* @__PURE__ */ c("path", { d: "M5665 4689 c4 -11 -9 -28 -42 -55 -26 -21 -57 -50 -70 -62 -13 -14 -27 -21 -34 -16 -7 4 -9 3 -6 -3 8 -13 -17 -36 -28 -25 -5 4 -5 2 -1 -5 4 -7 -4 -19 -19 -29 -14 -9 -25 -20 -25 -26 0 -9 204 165 230 197 10 12 11 18 1 28 -10 9 -11 9 -6 -4z" }),
340
+ /* @__PURE__ */ c("path", { d: "M4680 4668 c-7 -22 -5 -35 8 -50 17 -20 36 -24 30 -7 -2 6 -8 9 -13 7 -5 -2 -13 11 -16 27 -4 17 -8 27 -9 23z" }),
341
+ /* @__PURE__ */ c("path", { d: "M5010 4315 c0 -2 7 -8 15 -15 12 -10 15 -10 15 2 0 8 -7 15 -15 15 -8 0 -15 -1 -15 -2z" }),
342
+ /* @__PURE__ */ c("path", { d: "M4904 3865 c-33 -14 -44 -32 -44 -70 0 -37 10 -55 41 -70 41 -21 72 -18 103 10 33 30 34 75 4 108 -29 32 -65 39 -104 22z" }),
343
+ /* @__PURE__ */ c("path", { d: "M4758 2981 c-63 -56 -29 -151 54 -151 91 0 119 123 37 165 -40 21 -54 19 -91 -14z" }),
344
+ /* @__PURE__ */ c("path", { d: "M5593 9703 c9 -2 25 -2 35 0 9 3 1 5 -18 5 -19 0 -27 -2 -17 -5z" }),
345
+ /* @__PURE__ */ c("path", { d: "M5650 9701 c0 -3 51 -14 113 -24 61 -10 126 -21 142 -24 17 -3 27 -3 24 0 -8 9 -279 56 -279 48z" }),
346
+ /* @__PURE__ */ c("path", { d: "M4408 9673 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
347
+ /* @__PURE__ */ c("path", { d: "M4306 9659 c-22 -5 -42 -12 -45 -15 -10 -9 73 8 84 17 5 5 7 9 5 8 -3 -1 -23 -5 -44 -10z" }),
348
+ /* @__PURE__ */ c("path", { d: "M4368 9663 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
349
+ /* @__PURE__ */ c("path", { d: "M5991 9659 c-1 -12 -9 -15 -28 -13 -28 4 -28 4 -3 -5 31 -11 69 -13 54 -3 -6 4 -14 14 -17 22 -5 13 -6 12 -6 -1z" }),
350
+ /* @__PURE__ */ c("path", { d: "M4160 9624 c-141 -36 -371 -112 -385 -126 -7 -8 -4 -9 10 -3 87 32 212 72 330 105 77 21 131 39 120 38 -11 0 -45 -6 -75 -14z" }),
351
+ /* @__PURE__ */ c("path", { d: "M6038 9623 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
352
+ /* @__PURE__ */ c("path", { d: "M6078 9613 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
353
+ /* @__PURE__ */ c("path", { d: "M6118 9603 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
354
+ /* @__PURE__ */ c("path", { d: "M6235 9570 c11 -5 27 -9 35 -9 9 0 8 4 -5 9 -11 5 -27 9 -35 9 -9 0 -8 -4 5 -9z" }),
355
+ /* @__PURE__ */ c("path", { d: "M6316 9545 c17 -8 44 -17 60 -20 l29 -6 -30 14 c-16 8 -43 17 -60 20 l-30 6 31 -14z" }),
356
+ /* @__PURE__ */ c("path", { d: "M6420 9510 c8 -5 20 -10 25 -10 6 0 3 5 -5 10 -8 5 -19 10 -25 10 -5 0 -3 -5 5 -10z" }),
357
+ /* @__PURE__ */ c("path", { d: "M3720 9480 c-18 -12 -2 -12 25 0 13 6 15 9 5 9 -8 0 -22 -4 -30 -9z" }),
358
+ /* @__PURE__ */ c("path", { d: "M6520 9476 c0 -2 7 -7 16 -10 8 -3 12 -2 9 4 -6 10 -25 14 -25 6z" }),
359
+ /* @__PURE__ */ c("path", { d: "M3670 9460 c-8 -5 -10 -10 -5 -10 6 0 17 5 25 10 8 5 11 10 5 10 -5 0 -17 -5 -25 -10z" }),
360
+ /* @__PURE__ */ c("path", { d: "M6629 9430 c35 -17 66 -30 70 -30 12 1 -94 54 -114 57 -11 1 9 -11 44 -27z" }),
361
+ /* @__PURE__ */ c("path", { d: "M3610 9435 c-14 -8 -20 -14 -15 -14 6 0 21 6 35 14 14 8 21 14 15 14 -5 0 -21 -6 -35 -14z" }),
362
+ /* @__PURE__ */ c("path", { d: "M3550 9410 c-8 -5 -10 -10 -5 -10 6 0 17 5 25 10 8 5 11 10 5 10 -5 0 -17 -5 -25 -10z" }),
363
+ /* @__PURE__ */ c("path", { d: "M3465 9379 c2 -3 -32 -23 -76 -45 -45 -21 -83 -43 -86 -47 -4 -7 194 88 205 98 2 2 -8 2 -21 1 -14 0 -23 -4 -22 -7z" }),
364
+ /* @__PURE__ */ c("path", { d: "M6785 9360 c3 -4 14 -10 25 -13 11 -3 18 -2 15 3 -3 4 -14 10 -25 13 -11 3 -18 2 -15 -3z" }),
365
+ /* @__PURE__ */ c("path", { d: "M6841 9336 c10 -9 69 -36 69 -32 0 6 -55 36 -66 36 -4 0 -5 -2 -3 -4z" }),
366
+ /* @__PURE__ */ c("path", { d: "M6930 9289 c26 -17 70 -40 70 -35 0 5 -69 46 -78 46 -4 0 0 -5 8 -11z" }),
367
+ /* @__PURE__ */ c("path", { d: "M3219 9243 c-13 -15 -12 -15 9 -4 23 12 28 21 13 21 -5 0 -15 -7 -22 -17z" }),
368
+ /* @__PURE__ */ c("path", { d: "M7050 9221 c14 -11 30 -21 35 -21 11 0 -7 14 -40 31 -13 7 -12 3 5 -10z" }),
369
+ /* @__PURE__ */ c("path", { d: "M3166 9215 c-11 -8 -16 -15 -10 -15 5 0 18 7 28 15 11 8 16 15 10 15 -5 0 -18 -7 -28 -15z" }),
370
+ /* @__PURE__ */ c("path", { d: "M7150 9166 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
371
+ /* @__PURE__ */ c("path", { d: "M7191 9137 c2 -1 13 -9 24 -17 19 -14 19 -14 6 3 -7 9 -18 17 -24 17 -6 0 -8 -1 -6 -3z" }),
372
+ /* @__PURE__ */ c("path", { d: "M7270 9087 c0 -2 21 -18 48 -36 35 -25 40 -26 17 -6 -30 26 -65 49 -65 42z" }),
373
+ /* @__PURE__ */ c("path", { d: "M7370 9016 c0 -2 14 -14 30 -26 17 -12 30 -19 30 -16 0 2 -13 14 -30 26 -16 12 -30 19 -30 16z" }),
374
+ /* @__PURE__ */ c("path", { d: "M2710 8889 c-35 -31 -35 -31 -3 -9 18 11 35 25 38 30 10 16 2 11 -35 -21z" }),
375
+ /* @__PURE__ */ c("path", { d: "M7500 8916 c0 -2 7 -9 15 -16 9 -7 15 -8 15 -2 0 5 -7 12 -15 16 -8 3 -15 4 -15 2z" }),
376
+ /* @__PURE__ */ c("path", { d: "M7566 8871 c-3 -5 2 -15 12 -22 15 -13 16 -12 4 3 -10 13 -10 17 0 21 9 4 9 6 1 6 -6 1 -14 -3 -17 -8z" }),
377
+ /* @__PURE__ */ c("path", { d: "M2599 8793 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z" }),
378
+ /* @__PURE__ */ c("path", { d: "M7720 8726 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
379
+ /* @__PURE__ */ c("path", { d: "M2444 8648 l-29 -33 33 29 c17 17 32 31 32 33 0 8 -8 1 -36 -29z" }),
380
+ /* @__PURE__ */ c("path", { d: "M7875 8570 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0 -7 -4 -4 -10z" }),
381
+ /* @__PURE__ */ c("path", { d: "M7900 8547 c0 -2 15 -16 33 -33 l32 -29 -29 33 c-28 30 -36 37 -36 29z" }),
382
+ /* @__PURE__ */ c("path", { d: "M2279 8473 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
383
+ /* @__PURE__ */ c("path", { d: "M8012 8423 c25 -27 39 -32 15 -5 -10 10 -15 21 -12 24 3 2 -2 5 -10 5 -12 0 -10 -6 7 -24z" }),
384
+ /* @__PURE__ */ c("path", { d: "M8060 8366 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
385
+ /* @__PURE__ */ c("path", { d: "M2149 8323 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
386
+ /* @__PURE__ */ c("path", { d: "M2119 8283 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
387
+ /* @__PURE__ */ c("path", { d: "M8130 8276 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
388
+ /* @__PURE__ */ c("path", { d: "M2064 8212 c-11 -7 -38 -52 -31 -52 2 0 13 14 25 30 24 31 24 35 6 22z" }),
389
+ /* @__PURE__ */ c("path", { d: "M8200 8190 c6 -11 13 -20 16 -20 2 0 0 9 -6 20 -6 11 -13 20 -16 20 -2 0 0 -9 6 -20z" }),
390
+ /* @__PURE__ */ c("path", { d: "M8240 8130 c12 -16 24 -30 26 -30 3 0 -4 14 -16 30 -12 17 -24 30 -26 30 -3 0 4 -13 16 -30z" }),
391
+ /* @__PURE__ */ c("path", { d: "M1986 8103 c-6 -14 -5 -15 5 -6 7 7 10 15 7 18 -3 3 -9 -2 -12 -12z" }),
392
+ /* @__PURE__ */ c("path", { d: "M8277 8079 c7 -7 15 -10 18 -7 3 3 -2 9 -12 12 -14 6 -15 5 -6 -5z" }),
393
+ /* @__PURE__ */ c("path", { d: "M1956 8063 c-6 -14 -5 -15 5 -6 7 7 10 15 7 18 -3 3 -9 -2 -12 -12z" }),
394
+ /* @__PURE__ */ c("path", { d: "M8290 8056 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
395
+ /* @__PURE__ */ c("path", { d: "M8339 7985 c5 -11 17 -29 26 -40 l16 -20 -10 20 c-5 11 -17 29 -26 40 l-16 20 10 -20z" }),
396
+ /* @__PURE__ */ c("path", { d: "M1890 7960 c-6 -11 -8 -20 -6 -20 3 0 10 9 16 20 6 11 8 20 6 20 -3 0 -10 -9 -16 -20z" }),
397
+ /* @__PURE__ */ c("path", { d: "M8390 7900 c6 -11 13 -20 16 -20 2 0 0 9 -6 20 -6 11 -13 20 -16 20 -2 0 0 -9 6 -20z" }),
398
+ /* @__PURE__ */ c("path", { d: "M1825 7854 c-9 -14 -15 -27 -13 -30 2 -2 12 10 22 26 21 37 15 40 -9 4z" }),
399
+ /* @__PURE__ */ c("path", { d: "M8425 7840 c9 -16 18 -30 21 -30 2 0 -2 14 -11 30 -9 17 -18 30 -21 30 -2 0 2 -13 11 -30z" }),
400
+ /* @__PURE__ */ c("path", { d: "M8456 7787 c3 -10 9 -15 12 -12 3 3 0 11 -7 18 -10 9 -11 8 -5 -6z" }),
401
+ /* @__PURE__ */ c("path", { d: "M1783 7778 c-12 -15 -24 -48 -18 -48 2 0 10 14 19 30 15 32 15 38 -1 18z" }),
402
+ /* @__PURE__ */ c("path", { d: "M8476 7747 c3 -10 9 -15 12 -12 3 3 0 11 -7 18 -10 9 -11 8 -5 -6z" }),
403
+ /* @__PURE__ */ c("path", { d: "M8499 7705 c17 -33 31 -51 31 -40 0 6 -10 21 -21 35 -13 17 -17 18 -10 5z" }),
404
+ /* @__PURE__ */ c("path", { d: "M8540 7621 c0 -6 4 -13 10 -16 6 -3 7 1 4 9 -7 18 -14 21 -14 7z" }),
405
+ /* @__PURE__ */ c("path", { d: "M8560 7585 c0 -5 5 -17 10 -25 5 -8 10 -10 10 -5 0 6 -5 17 -10 25 -5 8 -10 11 -10 5z" }),
406
+ /* @__PURE__ */ c("path", { d: "M1656 7525 c-9 -26 -7 -32 5 -12 6 10 9 21 6 23 -2 3 -7 -2 -11 -11z" }),
407
+ /* @__PURE__ */ c("path", { d: "M8586 7527 c3 -10 9 -15 12 -12 3 3 0 11 -7 18 -10 9 -11 8 -5 -6z" }),
408
+ /* @__PURE__ */ c("path", { d: "M1636 7473 c-6 -14 -5 -15 5 -6 7 7 10 15 7 18 -3 3 -9 -2 -12 -12z" }),
409
+ /* @__PURE__ */ c("path", { d: "M8617 7450 c3 -11 7 -20 9 -20 2 0 4 9 4 20 0 11 -4 20 -9 20 -5 0 -7 -9 -4 -20z" }),
410
+ /* @__PURE__ */ c("path", { d: "M8640 7395 c0 -5 5 -17 10 -25 5 -8 10 -10 10 -5 0 6 -5 17 -10 25 -5 8 -10 11 -10 5z" }),
411
+ /* @__PURE__ */ c("path", { d: "M8676 7307 c9 -27 18 -46 20 -44 5 5 -16 69 -27 82 -5 5 -2 -12 7 -38z" }),
412
+ /* @__PURE__ */ c("path", { d: "M1532 7207 c-17 -47 -14 -59 4 -18 8 19 13 39 12 43 -2 5 -9 -6 -16 -25z" }),
413
+ /* @__PURE__ */ c("path", { d: "M8700 7239 c0 -4 7 -22 15 -40 8 -19 14 -27 14 -19 0 14 -28 72 -29 59z" }),
414
+ /* @__PURE__ */ c("path", { d: "M8730 7155 c0 -18 24 -85 30 -85 4 0 1 19 -7 42 -15 43 -23 59 -23 43z" }),
415
+ /* @__PURE__ */ c("path", { d: "M1491 7074 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
416
+ /* @__PURE__ */ c("path", { d: "M8776 6995 c8 -37 14 -45 14 -19 0 10 -5 26 -10 34 -8 11 -9 7 -4 -15z" }),
417
+ /* @__PURE__ */ c("path", { d: "M1466 6984 c-4 -14 -5 -28 -3 -31 3 -2 8 8 11 23 4 14 5 28 3 31 -3 2 -8 -8 -11 -23z" }),
418
+ /* @__PURE__ */ c("path", { d: "M1445 6910 c-4 -17 -5 -34 -2 -36 2 -3 7 10 11 27 8 42 0 50 -9 9z" }),
419
+ /* @__PURE__ */ c("path", { d: "M8801 6894 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
420
+ /* @__PURE__ */ c("path", { d: "M8812 6850 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
421
+ /* @__PURE__ */ c("path", { d: "M1431 6844 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
422
+ /* @__PURE__ */ c("path", { d: "M1422 6795 c0 -16 2 -22 5 -12 2 9 2 23 0 30 -3 6 -5 -1 -5 -18z" }),
423
+ /* @__PURE__ */ c("path", { d: "M8822 6805 c0 -11 4 -33 8 -50 7 -27 8 -27 8 -5 0 14 -4 36 -8 50 -6 20 -8 21 -8 5z" }),
424
+ /* @__PURE__ */ c("path", { d: "M1412 6740 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
425
+ /* @__PURE__ */ c("path", { d: "M8842 6695 c0 -16 2 -22 5 -12 2 9 2 23 0 30 -3 6 -5 -1 -5 -18z" }),
426
+ /* @__PURE__ */ c("path", { d: "M1396 6669 c-4 -23 -5 -44 -2 -46 2 -2 7 14 11 37 4 23 5 43 2 46 -2 3 -7 -14 -11 -37z" }),
427
+ /* @__PURE__ */ c("path", { d: "M8852 6635 c0 -16 2 -22 5 -12 2 9 2 23 0 30 -3 6 -5 -1 -5 -18z" }),
428
+ /* @__PURE__ */ c("path", { d: "M8862 6570 c0 -19 2 -27 5 -17 2 9 2 25 0 35 -3 9 -5 1 -5 -18z" }),
429
+ /* @__PURE__ */ c("path", { d: "M1382 6560 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
430
+ /* @__PURE__ */ c("path", { d: "M8872 6510 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
431
+ /* @__PURE__ */ c("path", { d: "M8883 6395 c0 -22 2 -30 4 -17 2 12 2 30 0 40 -3 9 -5 -1 -4 -23z" }),
432
+ /* @__PURE__ */ c("path", { d: "M1362 6390 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
433
+ /* @__PURE__ */ c("path", { d: "M8891 6293 c-1 -34 3 -64 7 -67 5 -3 7 21 5 52 -6 81 -11 87 -12 15z" }),
434
+ /* @__PURE__ */ c("path", { d: "M1353 6275 c0 -22 2 -30 4 -17 2 12 2 30 0 40 -3 9 -5 -1 -4 -23z" }),
435
+ /* @__PURE__ */ c("path", { d: "M1344 6085 c0 -66 1 -92 3 -57 2 34 2 88 0 120 -2 31 -3 3 -3 -63z" }),
436
+ /* @__PURE__ */ c("path", { d: "M8904 5985 c0 -104 2 -146 3 -92 2 54 2 139 0 190 -1 51 -3 7 -3 -98z" }),
437
+ /* @__PURE__ */ c("path", { d: "M1354 5805 c0 -49 1 -71 3 -48 2 23 2 64 0 90 -2 26 -3 8 -3 -42z" }),
438
+ /* @__PURE__ */ c("path", { d: "M8893 5730 c0 -36 2 -50 4 -32 2 17 2 47 0 65 -2 17 -4 3 -4 -33z" }),
439
+ /* @__PURE__ */ c("path", { d: "M1363 5640 c0 -25 2 -35 4 -22 2 12 2 32 0 45 -2 12 -4 2 -4 -23z" }),
440
+ /* @__PURE__ */ c("path", { d: "M8883 5620 c0 -25 2 -35 4 -22 2 12 2 32 0 45 -2 12 -4 2 -4 -23z" }),
441
+ /* @__PURE__ */ c("path", { d: "M1372 5560 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
442
+ /* @__PURE__ */ c("path", { d: "M8872 5525 c0 -16 2 -22 5 -12 2 9 2 23 0 30 -3 6 -5 -1 -5 -18z" }),
443
+ /* @__PURE__ */ c("path", { d: "M1386 5439 c7 -45 16 -84 20 -88 4 -3 4 5 1 19 -4 14 -9 52 -13 83 -4 32 -10 60 -14 62 -4 2 -1 -32 6 -76z" }),
444
+ /* @__PURE__ */ c("path", { d: "M8862 5450 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
445
+ /* @__PURE__ */ c("path", { d: "M8851 5384 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
446
+ /* @__PURE__ */ c("path", { d: "M8842 5330 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
447
+ /* @__PURE__ */ c("path", { d: "M1402 5330 c0 -8 4 -26 8 -40 6 -20 8 -21 8 -5 0 11 -3 29 -8 40 -5 12 -8 14 -8 5z" }),
448
+ /* @__PURE__ */ c("path", { d: "M8826 5259 c-4 -23 -5 -44 -2 -46 2 -2 7 14 11 37 4 23 5 43 2 46 -2 3 -7 -14 -11 -37z" }),
449
+ /* @__PURE__ */ c("path", { d: "M1427 5215 c3 -27 9 -59 14 -70 10 -24 -1 59 -12 95 -5 15 -6 6 -2 -25z" }),
450
+ /* @__PURE__ */ c("path", { d: "M8815 5188 c-12 -37 -35 -142 -32 -145 4 -3 10 18 36 120 9 34 6 53 -4 25z" }),
451
+ /* @__PURE__ */ c("path", { d: "M1451 5104 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
452
+ /* @__PURE__ */ c("path", { d: "M1466 5050 c4 -19 11 -44 15 -55 6 -14 7 -9 3 15 -4 19 -11 44 -15 55 -6 14 -7 9 -3 -15z" }),
453
+ /* @__PURE__ */ c("path", { d: "M8752 4948 c-6 -23 -9 -44 -7 -46 2 -2 9 15 15 38 6 23 9 44 7 46 -2 3 -9 -14 -15 -38z" }),
454
+ /* @__PURE__ */ c("path", { d: "M1491 4959 c-1 -9 6 -32 14 -50 18 -43 18 -16 0 31 -7 19 -14 28 -14 19z" }),
455
+ /* @__PURE__ */ c("path", { d: "M8726 4865 c-3 -9 -6 -22 -5 -28 0 -7 5 -1 10 12 5 13 8 26 5 28 -2 2 -6 -3 -10 -12z" }),
456
+ /* @__PURE__ */ c("path", { d: "M1554 4755 c4 -16 12 -34 17 -40 5 -5 4 6 -2 25 -15 45 -24 54 -15 15z" }),
457
+ /* @__PURE__ */ c("path", { d: "M8653 4655 c-11 -30 -17 -52 -13 -50 9 6 42 97 36 102 -1 2 -12 -21 -23 -52z" }),
458
+ /* @__PURE__ */ c("path", { d: "M1581 4690 c0 -8 4 -22 9 -30 12 -18 12 -2 0 25 -6 13 -9 15 -9 5z" }),
459
+ /* @__PURE__ */ c("path", { d: "M8611 4549 c-6 -18 -9 -34 -7 -36 2 -2 9 10 15 28 6 18 9 34 7 36 -2 2 -9 -10 -15 -28z" }),
460
+ /* @__PURE__ */ c("path", { d: "M1640 4525 c0 -8 4 -15 10 -15 5 0 7 7 4 15 -4 8 -8 15 -10 15 -2 0 -4 -7 -4 -15z" }),
461
+ /* @__PURE__ */ c("path", { d: "M8585 4489 c-4 -6 -5 -12 -2 -15 2 -3 7 2 10 11 7 17 1 20 -8 4z" }),
462
+ /* @__PURE__ */ c("path", { d: "M8546 4403 c-6 -14 -5 -15 5 -6 7 7 10 15 7 18 -3 3 -9 -2 -12 -12z" }),
463
+ /* @__PURE__ */ c("path", { d: "M8507 4324 c-15 -31 -23 -53 -19 -50 10 6 55 96 50 101 -2 2 -15 -21 -31 -51z" }),
464
+ /* @__PURE__ */ c("path", { d: "M1730 4340 c6 -11 13 -20 16 -20 2 0 0 9 -6 20 -6 11 -13 20 -16 20 -2 0 0 -9 6 -20z" }),
465
+ /* @__PURE__ */ c("path", { d: "M8466 4243 c-6 -14 -5 -15 5 -6 7 7 10 15 7 18 -3 3 -9 -2 -12 -12z" }),
466
+ /* @__PURE__ */ c("path", { d: "M1807 4195 c9 -19 18 -33 21 -31 4 5 -26 66 -33 66 -3 0 3 -16 12 -35z" }),
467
+ /* @__PURE__ */ c("path", { d: "M8445 4209 c-4 -6 -5 -12 -2 -15 2 -3 7 2 10 11 7 17 1 20 -8 4z" }),
468
+ /* @__PURE__ */ c("path", { d: "M8400 4130 c-6 -11 -8 -20 -6 -20 3 0 10 9 16 20 6 11 8 20 6 20 -3 0 -10 -9 -16 -20z" }),
469
+ /* @__PURE__ */ c("path", { d: "M8370 4080 c-6 -11 -8 -20 -6 -20 3 0 10 9 16 20 6 11 8 20 6 20 -3 0 -10 -9 -16 -20z" }),
470
+ /* @__PURE__ */ c("path", { d: "M1901 4040 c14 -31 19 -36 19 -24 0 6 -7 19 -16 30 -14 18 -14 18 -3 -6z" }),
471
+ /* @__PURE__ */ c("path", { d: "M1929 3987 c6 -8 7 -18 3 -22 -4 -5 -1 -5 6 -1 6 4 12 4 12 -1 0 -4 11 -21 25 -38 21 -24 19 -20 -6 23 -18 28 -36 52 -42 52 -5 0 -5 -6 2 -13z" }),
472
+ /* @__PURE__ */ c("path", { d: "M8309 3983 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z" }),
473
+ /* @__PURE__ */ c("path", { d: "M8280 3940 c-6 -11 -8 -20 -6 -20 3 0 10 9 16 20 6 11 8 20 6 20 -3 0 -10 -9 -16 -20z" }),
474
+ /* @__PURE__ */ c("path", { d: "M8249 3893 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
475
+ /* @__PURE__ */ c("path", { d: "M2030 3845 c17 -25 33 -45 36 -45 3 0 -9 20 -26 45 -17 25 -33 45 -36 45 -3 0 9 -20 26 -45z" }),
476
+ /* @__PURE__ */ c("path", { d: "M8147 3755 c-32 -41 -56 -75 -53 -75 4 0 95 114 110 138 19 31 -5 6 -57 -63z" }),
477
+ /* @__PURE__ */ c("path", { d: "M2121 3723 c7 -12 15 -20 18 -17 3 2 -3 12 -13 22 -17 16 -18 16 -5 -5z" }),
478
+ /* @__PURE__ */ c("path", { d: "M8064 3648 l-19 -23 23 19 c12 11 22 21 22 23 0 8 -8 2 -26 -19z" }),
479
+ /* @__PURE__ */ c("path", { d: "M2180 3646 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
480
+ /* @__PURE__ */ c("path", { d: "M8014 3588 l-19 -23 23 19 c12 11 22 21 22 23 0 8 -8 2 -26 -19z" }),
481
+ /* @__PURE__ */ c("path", { d: "M2255 3560 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
482
+ /* @__PURE__ */ c("path", { d: "M2280 3526 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
483
+ /* @__PURE__ */ c("path", { d: "M7927 3490 c-19 -22 -32 -40 -28 -40 4 0 22 18 40 40 17 22 30 40 28 40 -2 0 -20 -18 -40 -40z" }),
484
+ /* @__PURE__ */ c("path", { d: "M2330 3476 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
485
+ /* @__PURE__ */ c("path", { d: "M1910 3385 c13 -14 26 -25 28 -25 3 0 -5 11 -18 25 -13 14 -26 25 -28 25 -3 0 5 -11 18 -25z" }),
486
+ /* @__PURE__ */ c("path", { d: "M7839 3393 c-12 -16 -12 -17 2 -6 9 7 20 9 24 5 5 -4 5 -1 1 6 -9 16 -11 15 -27 -5z" }),
487
+ /* @__PURE__ */ c("path", { d: "M8330 3386 c-14 -12 -45 -45 -70 -72 -26 -28 -14 -20 28 21 39 38 72 71 72 72 0 6 -5 2 -30 -21z" }),
488
+ /* @__PURE__ */ c("path", { d: "M8425 3390 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
489
+ /* @__PURE__ */ c("path", { d: "M1790 3325 l-75 -75 90 -90 90 -90 -75 -75 c-68 -68 -103 -94 -84 -62 5 8 2 7 -9 -2 -10 -8 -15 -16 -12 -19 9 -9 -37 -52 -48 -45 -6 3 -7 2 -4 -4 8 -13 -47 -66 -58 -56 -4 5 -5 3 -2 -3 4 -6 -5 -22 -20 -35 -19 -18 -25 -20 -20 -7 3 10 2 20 -2 22 -5 3 -7 -5 -6 -17 1 -16 -29 -53 -108 -133 l-109 -112 41 -37 c22 -20 39 -41 36 -45 -3 -5 12 -25 32 -46 21 -20 37 -41 35 -46 -1 -5 3 -6 9 -2 8 4 -1 19 -25 42 -20 19 -34 37 -31 40 3 3 24 -12 46 -34 l40 -39 250 258 c138 141 256 257 262 257 6 0 -58 -69 -141 -154 -84 -84 -152 -157 -152 -162 0 -5 23 15 51 44 28 29 55 50 60 47 5 -3 6 2 2 11 -5 13 -3 15 7 9 9 -6 11 -4 5 5 -6 10 -4 12 9 7 9 -4 15 -3 11 2 -3 5 32 48 77 96 46 48 84 91 84 96 1 5 2 15 3 21 0 7 45 -31 99 -85 l98 -98 71 90 71 89 -33 32 c-19 18 -32 37 -29 41 3 5 -1 7 -8 4 -15 -6 -246 221 -236 231 4 3 21 -9 38 -28 l32 -33 -29 38 c-15 20 -33 35 -39 33 -6 -2 -56 40 -110 95 -54 54 -101 99 -104 99 -3 0 -39 -34 -80 -75z" }),
490
+ /* @__PURE__ */ c("path", { d: "M8297 3322 l-77 -77 200 -200 c109 -109 198 -200 197 -202 -2 -1 -27 4 -57 12 -53 14 -464 97 -545 109 -38 6 -43 4 -130 -68 -49 -42 -88 -79 -87 -83 2 -4 159 -164 348 -355 l344 -347 32 30 c91 84 146 128 153 121 4 -4 4 0 -1 10 -11 19 -97 110 -145 153 -19 16 0 -6 41 -50 41 -44 79 -83 85 -87 5 -4 7 -10 3 -13 -3 -4 -46 36 -94 87 -49 51 -141 146 -204 211 -86 89 -109 117 -90 113 14 -3 133 -29 265 -57 132 -28 276 -59 320 -69 l80 -19 70 67 c38 36 74 70 80 74 5 5 -23 41 -70 88 -43 44 -76 82 -73 85 3 3 40 -31 83 -75 43 -44 80 -79 81 -77 2 2 -34 42 -80 90 -51 53 -86 83 -89 75 -3 -8 -30 14 -70 57 -36 38 -63 74 -60 80 4 5 2 7 -2 2 -12 -10 -45 22 -39 38 3 7 1 16 -5 20 -7 4 -8 -1 -5 -12 4 -10 -76 64 -177 165 -101 100 -189 182 -194 182 -6 0 -45 -35 -88 -78z" }),
491
+ /* @__PURE__ */ c("path", { d: "M1796 3364 c-23 -23 -20 -30 4 -9 11 10 20 20 20 22 0 7 -9 2 -24 -13z" }),
492
+ /* @__PURE__ */ c("path", { d: "M2450 3345 c13 -14 26 -25 28 -25 3 0 -5 11 -18 25 -13 14 -26 25 -28 25 -3 0 5 -11 18 -25z" }),
493
+ /* @__PURE__ */ c("path", { d: "M7779 3333 l-34 -37 32 25 c26 20 50 49 40 49 -2 0 -19 -17 -38 -37z" }),
494
+ /* @__PURE__ */ c("path", { d: "M8495 3320 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
495
+ /* @__PURE__ */ c("path", { d: "M1739 3303 l-24 -28 28 24 c25 23 32 31 24 31 -2 0 -14 -12 -28 -27z" }),
496
+ /* @__PURE__ */ c("path", { d: "M1990 3306 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
497
+ /* @__PURE__ */ c("path", { d: "M2520 3287 c0 -2 15 -16 33 -33 l32 -29 -29 33 c-28 30 -36 37 -36 29z" }),
498
+ /* @__PURE__ */ c("path", { d: "M7706 3264 c-20 -18 -25 -28 -17 -35 6 -5 9 -6 6 -2 -3 4 7 19 22 35 33 35 28 36 -11 2z" }),
499
+ /* @__PURE__ */ c("path", { d: "M8580 3236 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
500
+ /* @__PURE__ */ c("path", { d: "M8222 3214 c10 -10 20 -16 22 -13 3 3 -5 11 -17 18 -21 13 -21 12 -5 -5z" }),
501
+ /* @__PURE__ */ c("path", { d: "M7585 3153 l-70 -66 70 58 c39 33 74 62 80 67 6 5 6 8 0 8 -6 -1 -41 -30 -80 -67z" }),
502
+ /* @__PURE__ */ c("path", { d: "M1730 3206 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
503
+ /* @__PURE__ */ c("path", { d: "M2631 3177 c2 -1 13 -9 24 -17 19 -14 19 -14 6 3 -7 9 -18 17 -24 17 -6 0 -8 -1 -6 -3z" }),
504
+ /* @__PURE__ */ c("path", { d: "M8260 3170 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
505
+ /* @__PURE__ */ c("path", { d: "M1780 3159 c0 -3 18 -25 40 -49 l40 -44 -42 -39 c-24 -22 -34 -35 -23 -29 11 5 33 24 50 41 l29 32 -47 47 c-26 26 -47 44 -47 41z" }),
506
+ /* @__PURE__ */ c("path", { d: "M8290 3153 c0 -5 12 -20 28 -34 l27 -24 -25 30 c-14 17 -26 32 -27 34 -2 2 -3 0 -3 -6z" }),
507
+ /* @__PURE__ */ c("path", { d: "M2750 3080 c30 -28 64 -56 75 -62 28 -15 12 1 -65 62 l-65 51 55 -51z" }),
508
+ /* @__PURE__ */ c("path", { d: "M8697 3111 c23 -22 39 -28 28 -11 -3 5 -16 15 -28 21 l-22 11 22 -21z" }),
509
+ /* @__PURE__ */ c("path", { d: "M2235 3052 c38 -39 73 -72 77 -72 4 0 -15 21 -42 46 -27 26 -47 52 -43 58 3 6 2 8 -2 3 -5 -4 -20 3 -34 15 -14 12 5 -10 44 -50z" }),
510
+ /* @__PURE__ */ c("path", { d: "M7489 3073 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z" }),
511
+ /* @__PURE__ */ c("path", { d: "M8353 3074 c0 -8 3 -12 6 -9 8 9 71 -57 64 -68 -3 -6 -2 -7 4 -4 11 7 83 -62 81 -78 -1 -5 7 -12 18 -14 12 -2 -13 31 -66 86 -91 96 -107 109 -107 87z" }),
512
+ /* @__PURE__ */ c("path", { d: "M7439 3033 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z" }),
513
+ /* @__PURE__ */ c("path", { d: "M2853 2989 c-2 -23 3 -25 10 -4 4 8 3 16 -1 19 -4 3 -9 -4 -9 -15z" }),
514
+ /* @__PURE__ */ c("path", { d: "M7395 3000 c-3 -6 1 -7 9 -4 18 7 21 14 7 14 -6 0 -13 -4 -16 -10z" }),
515
+ /* @__PURE__ */ c("path", { d: "M7965 2991 c-26 -11 -67 -55 -42 -45 9 3 17 9 17 13 0 15 46 27 75 20 57 -13 80 -7 25 6 -30 8 -55 14 -55 14 0 0 -9 -4 -20 -8z" }),
516
+ /* @__PURE__ */ c("path", { d: "M8820 2992 c0 -10 22 -32 32 -32 15 0 8 15 -12 28 -11 7 -20 9 -20 4z" }),
517
+ /* @__PURE__ */ c("path", { d: "M7330 2953 c-65 -50 -73 -62 -15 -22 27 19 54 37 59 41 6 4 8 9 6 11 -3 3 -25 -11 -50 -30z" }),
518
+ /* @__PURE__ */ c("path", { d: "M1760 2970 c-9 -6 -10 -10 -3 -10 6 0 15 5 18 10 8 12 4 12 -15 0z" }),
519
+ /* @__PURE__ */ c("path", { d: "M2881 2977 c2 -2 22 -15 44 -31 l40 -27 -35 30 c-19 17 -39 31 -44 31 -5 0 -7 -1 -5 -3z" }),
520
+ /* @__PURE__ */ c("path", { d: "M8101 2966 c2 -2 22 -6 44 -10 29 -5 36 -4 25 3 -13 10 -79 16 -69 7z" }),
521
+ /* @__PURE__ */ c("path", { d: "M2340 2957 c0 -2 15 -16 33 -33 l32 -29 -29 33 c-28 30 -36 37 -36 29z" }),
522
+ /* @__PURE__ */ c("path", { d: "M8218 2943 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
523
+ /* @__PURE__ */ c("path", { d: "M8355 2914 c111 -23 142 -28 134 -19 -7 6 -210 45 -229 44 -8 -1 35 -12 95 -25z" }),
524
+ /* @__PURE__ */ c("path", { d: "M2966 2911 c-4 -5 -2 -12 3 -15 5 -4 12 -2 15 3 4 5 2 12 -3 15 -5 4 -12 2 -15 -3z" }),
525
+ /* @__PURE__ */ c("path", { d: "M7839 2886 c-23 -19 -46 -33 -50 -30 -4 2 -10 -3 -13 -12 -5 -14 -2 -13 22 2 39 26 98 74 91 74 -3 0 -26 -15 -50 -34z" }),
526
+ /* @__PURE__ */ c("path", { d: "M7225 2875 l-30 -25 32 17 c18 10 33 21 33 26 0 10 -2 9 -35 -18z" }),
527
+ /* @__PURE__ */ c("path", { d: "M8508 2883 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
528
+ /* @__PURE__ */ c("path", { d: "M8550 2880 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
529
+ /* @__PURE__ */ c("path", { d: "M2400 2871 c0 -6 4 -13 10 -16 6 -3 7 1 4 9 -7 18 -14 21 -14 7z" }),
530
+ /* @__PURE__ */ c("path", { d: "M3034 2871 c7 -11 46 -35 46 -28 0 3 -12 12 -26 22 -15 9 -23 12 -20 6z" }),
531
+ /* @__PURE__ */ c("path", { d: "M2066 2857 c3 -10 9 -15 12 -12 3 3 0 11 -7 18 -10 9 -11 8 -5 -6z" }),
532
+ /* @__PURE__ */ c("path", { d: "M2369 2843 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
533
+ /* @__PURE__ */ c("path", { d: "M2460 2846 c0 -2 19 -19 43 -37 l42 -33 -34 37 c-31 33 -51 46 -51 33z" }),
534
+ /* @__PURE__ */ c("path", { d: "M2416 2823 c-6 -14 -5 -15 5 -6 7 7 10 15 7 18 -3 3 -9 -2 -12 -12z" }),
535
+ /* @__PURE__ */ c("path", { d: "M3102 2824 c10 -10 20 -16 22 -13 3 3 -5 11 -17 18 -21 13 -21 12 -5 -5z" }),
536
+ /* @__PURE__ */ c("path", { d: "M2359 2702 c-47 -70 -91 -127 -97 -127 -6 0 -17 -7 -24 -15 -11 -12 -11 -12 5 -1 31 24 18 1 -73 -128 -120 -171 -154 -243 -158 -343 -5 -102 23 -166 109 -249 177 -171 402 -189 543 -44 38 39 411 581 411 597 0 7 -172 118 -182 118 -3 0 -12 -8 -20 -17 -14 -17 -14 -17 -9 0 4 11 2 16 -5 12 -6 -4 -8 -14 -5 -22 7 -18 -288 -455 -351 -519 -52 -54 -93 -64 -155 -36 -67 29 -98 72 -98 135 0 29 9 70 19 93 19 43 126 205 263 402 43 62 81 118 84 126 3 8 -27 39 -78 80 -46 36 -85 66 -88 65 -3 0 -44 -57 -91 -127z" }),
537
+ /* @__PURE__ */ c("path", { d: "M2314 2773 c-50 -64 -63 -83 -33 -53 28 29 82 100 76 100 -3 0 -22 -21 -43 -47z" }),
538
+ /* @__PURE__ */ c("path", { d: "M2145 2780 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
539
+ /* @__PURE__ */ c("path", { d: "M2371 2760 c-12 -22 -20 -40 -17 -40 7 0 49 71 44 75 -2 3 -15 -13 -27 -35z" }),
540
+ /* @__PURE__ */ c("path", { d: "M7095 2790 c-3 -6 1 -7 9 -4 18 7 21 14 7 14 -6 0 -13 -4 -16 -10z" }),
541
+ /* @__PURE__ */ c("path", { d: "M3188 2773 c27 -22 142 -87 142 -80 0 3 -26 20 -57 37 -32 18 -69 40 -83 48 l-25 14 23 -19z" }),
542
+ /* @__PURE__ */ c("path", { d: "M7820 2748 c26 -24 39 -43 32 -46 -6 -2 -12 -8 -12 -14 0 -6 7 -5 16 3 14 11 19 9 36 -14 11 -15 24 -27 29 -27 5 0 -21 32 -57 70 -37 39 -72 70 -78 70 -6 0 9 -19 34 -42z" }),
543
+ /* @__PURE__ */ c("path", { d: "M7054 2764 c-18 -14 -18 -15 4 -4 12 6 22 13 22 15 0 8 -5 6 -26 -11z" }),
544
+ /* @__PURE__ */ c("path", { d: "M7680 2769 c0 -5 5 -7 10 -4 6 3 10 8 10 11 0 2 -4 4 -10 4 -5 0 -10 -5 -10 -11z" }),
545
+ /* @__PURE__ */ c("path", { d: "M2560 2766 c0 -2 7 -9 15 -16 9 -7 15 -8 15 -2 0 5 -7 12 -15 16 -8 3 -15 4 -15 2z" }),
546
+ /* @__PURE__ */ c("path", { d: "M7630 2729 c-35 -31 -35 -31 -3 -9 18 11 35 25 38 30 10 16 2 11 -35 -21z" }),
547
+ /* @__PURE__ */ c("path", { d: "M7720 2757 c0 -4 23 -42 51 -83 28 -42 48 -78 46 -81 -3 -3 -30 31 -59 76 -29 44 -58 79 -63 77 -6 -2 -78 -51 -160 -108 -174 -121 -354 -234 -367 -230 -12 3 -130 -49 -124 -55 2 -2 22 5 45 16 43 23 66 27 56 11 -3 -5 -1 -10 5 -10 7 0 9 7 5 18 -4 11 -3 14 4 7 5 -5 11 -17 13 -25 2 -8 13 -26 26 -40 13 -14 32 -42 43 -62 10 -20 24 -40 31 -44 12 -8 0 16 -62 114 -18 29 -31 55 -28 58 3 2 43 -55 89 -128 112 -180 333 -525 400 -624 l54 -81 173 114 c95 62 176 113 179 113 3 0 -1 -8 -8 -17 -8 -9 14 2 49 26 34 23 62 44 62 47 0 3 -21 -9 -46 -26 -25 -18 -48 -30 -50 -27 -3 3 35 33 85 67 l90 62 -61 92 -62 92 -165 -118 c-92 -65 -168 -118 -171 -118 -3 0 -28 35 -56 78 l-51 77 121 83 c67 45 133 92 149 105 l27 22 -57 86 -58 87 -144 -105 -145 -104 -49 77 c-28 44 -45 79 -39 83 136 87 322 217 326 227 3 8 -19 51 -49 97 -30 45 -55 78 -55 74z" }),
548
+ /* @__PURE__ */ c("path", { d: "M2186 2736 c3 -8 13 -17 22 -21 13 -5 13 -2 -3 15 -21 24 -26 25 -19 6z" }),
549
+ /* @__PURE__ */ c("path", { d: "M6998 2734 c-16 -8 -28 -16 -28 -18 0 -9 40 7 51 20 14 17 11 17 -23 -2z" }),
550
+ /* @__PURE__ */ c("path", { d: "M2600 2736 c0 -3 9 -10 20 -16 11 -6 20 -8 20 -6 0 3 -9 10 -20 16 -11 6 -20 8 -20 6z" }),
551
+ /* @__PURE__ */ c("path", { d: "M6928 2694 c-37 -19 -36 -25 2 -11 17 6 30 15 30 19 0 10 0 10 -32 -8z" }),
552
+ /* @__PURE__ */ c("path", { d: "M1454 2668 l-19 -23 23 19 c21 18 27 26 19 26 -2 0 -12 -10 -23 -22z" }),
553
+ /* @__PURE__ */ c("path", { d: "M2311 2667 c-13 -21 -12 -21 5 -5 10 10 16 20 13 22 -3 3 -11 -5 -18 -17z" }),
554
+ /* @__PURE__ */ c("path", { d: "M2613 2653 c-9 -16 -20 -33 -24 -38 -4 -6 -3 -17 2 -25 9 -13 10 -13 7 0 -3 21 21 62 33 55 5 -4 9 3 9 14 0 28 -6 26 -27 -6z" }),
555
+ /* @__PURE__ */ c("path", { d: "M3367 2669 c7 -7 15 -10 18 -7 3 3 -2 9 -12 12 -14 6 -15 5 -6 -5z" }),
556
+ /* @__PURE__ */ c("path", { d: "M6870 2660 c-12 -7 -10 -9 7 -7 12 0 19 5 17 9 -6 10 -6 10 -24 -2z" }),
557
+ /* @__PURE__ */ c("path", { d: "M8337 2618 c26 -26 49 -48 52 -48 5 0 -48 60 -63 71 -5 4 0 9 10 11 13 3 8 6 -14 9 l-33 6 48 -49z" }),
558
+ /* @__PURE__ */ c("path", { d: "M7509 2643 c-13 -17 -13 -17 6 -3 11 8 22 16 24 17 2 2 0 3 -6 3 -6 0 -17 -8 -24 -17z" }),
559
+ /* @__PURE__ */ c("path", { d: "M6790 2620 c-30 -16 -51 -29 -47 -30 10 0 107 49 107 55 0 7 1 7 -60 -25z" }),
560
+ /* @__PURE__ */ c("path", { d: "M9010 2593 c-30 -32 -46 -50 -35 -41 11 8 27 13 35 11 12 -4 12 -3 2 5 -10 7 -7 14 15 33 27 22 49 49 41 49 -2 0 -28 -26 -58 -57z" }),
561
+ /* @__PURE__ */ c("path", { d: "M2283 2628 c-15 -20 -25 -38 -20 -38 3 0 12 11 21 25 17 26 16 35 -1 13z" }),
562
+ /* @__PURE__ */ c("path", { d: "M3431 2636 c10 -9 69 -36 69 -32 0 6 -55 36 -66 36 -4 0 -5 -2 -3 -4z" }),
563
+ /* @__PURE__ */ c("path", { d: "M7986 2587 c27 -29 60 -61 74 -71 14 -10 -6 13 -45 53 -81 83 -101 95 -29 18z" }),
564
+ /* @__PURE__ */ c("path", { d: "M8445 2625 c28 -7 59 -13 70 -13 11 0 -2 6 -30 13 -27 7 -59 13 -70 13 -11 0 3 -6 30 -13z" }),
565
+ /* @__PURE__ */ c("path", { d: "M1370 2585 c-24 -25 -42 -45 -39 -45 3 0 25 20 49 45 24 25 42 45 39 45 -3 0 -25 -20 -49 -45z" }),
566
+ /* @__PURE__ */ c("path", { d: "M7420 2585 c-19 -14 -30 -25 -24 -25 10 0 73 49 63 50 -3 0 -20 -11 -39 -25z" }),
567
+ /* @__PURE__ */ c("path", { d: "M8560 2601 c8 -6 28 -11 44 -11 39 0 31 6 -19 14 -29 5 -36 4 -25 -3z" }),
568
+ /* @__PURE__ */ c("path", { d: "M2559 2573 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z" }),
569
+ /* @__PURE__ */ c("path", { d: "M8648 2583 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
570
+ /* @__PURE__ */ c("path", { d: "M7830 2573 c0 -6 -29 -30 -65 -53 -61 -40 -87 -63 -47 -41 9 5 20 8 23 8 3 -1 17 8 30 20 13 12 35 31 49 42 14 11 22 23 18 27 -5 4 -8 3 -8 -3z" }),
571
+ /* @__PURE__ */ c("path", { d: "M8698 2573 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
572
+ /* @__PURE__ */ c("path", { d: "M3610 2547 c14 -8 36 -17 50 -21 l25 -7 -25 14 c-14 8 -36 17 -50 21 l-25 7 25 -14z" }),
573
+ /* @__PURE__ */ c("path", { d: "M6630 2545 c-16 -9 -19 -14 -9 -15 8 0 24 7 35 15 24 18 7 19 -26 0z" }),
574
+ /* @__PURE__ */ c("path", { d: "M7360 2554 c0 -5 -20 -22 -45 -37 -49 -31 -63 -49 -17 -21 50 29 77 52 69 60 -4 4 -7 3 -7 -2z" }),
575
+ /* @__PURE__ */ c("path", { d: "M8415 2540 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
576
+ /* @__PURE__ */ c("path", { d: "M8788 2553 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
577
+ /* @__PURE__ */ c("path", { d: "M2525 2524 c-9 -15 -12 -23 -6 -20 11 7 35 46 28 46 -3 0 -12 -12 -22 -26z" }),
578
+ /* @__PURE__ */ c("path", { d: "M8828 2543 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
579
+ /* @__PURE__ */ c("path", { d: "M1704 2524 c-18 -14 -18 -15 4 -4 12 6 22 13 22 15 0 8 -5 6 -26 -11z" }),
580
+ /* @__PURE__ */ c("path", { d: "M2208 2523 c-19 -23 -31 -43 -24 -43 2 0 14 14 26 30 23 33 22 40 -2 13z" }),
581
+ /* @__PURE__ */ c("path", { d: "M8875 2530 c11 -5 31 -8 45 -8 l25 0 -25 8 c-14 4 -34 8 -45 8 l-20 1 20 -9z" }),
582
+ /* @__PURE__ */ c("path", { d: "M2910 2526 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
583
+ /* @__PURE__ */ c("path", { d: "M3697 2509 c7 -7 15 -10 18 -7 3 3 -2 9 -12 12 -14 6 -15 5 -6 -5z" }),
584
+ /* @__PURE__ */ c("path", { d: "M6552 2511 c-11 -7 -10 -9 3 -14 9 -4 14 -3 10 2 -3 5 1 12 7 14 7 3 9 6 3 6 -5 0 -16 -3 -23 -8z" }),
585
+ /* @__PURE__ */ c("path", { d: "M8465 2490 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
586
+ /* @__PURE__ */ c("path", { d: "M1355 2480 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
587
+ /* @__PURE__ */ c("path", { d: "M1666 2491 c-4 -7 -5 -15 -2 -18 9 -9 19 4 14 18 -4 11 -6 11 -12 0z" }),
588
+ /* @__PURE__ */ c("path", { d: "M3753 2487 c15 -7 24 -17 20 -21 -4 -4 1 -4 11 0 21 8 9 17 -34 28 -23 5 -23 5 3 -7z" }),
589
+ /* @__PURE__ */ c("path", { d: "M6505 2490 c-16 -7 -17 -9 -3 -9 9 -1 20 4 23 9 7 11 7 11 -20 0z" }),
590
+ /* @__PURE__ */ c("path", { d: "M2495 2480 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0 -8 -4 -11 -10z" }),
591
+ /* @__PURE__ */ c("path", { d: "M2985 2473 c6 -6 28 -20 50 -32 22 -13 31 -15 20 -6 -22 18 -86 53 -70 38z" }),
592
+ /* @__PURE__ */ c("path", { d: "M8120 2455 c13 -14 26 -25 28 -25 3 0 -5 11 -18 25 -13 14 -26 25 -28 25 -3 0 5 -11 18 -25z" }),
593
+ /* @__PURE__ */ c("path", { d: "M2148 2438 c-31 -41 -41 -58 -34 -58 3 0 19 20 36 45 36 52 34 61 -2 13z" }),
594
+ /* @__PURE__ */ c("path", { d: "M3849 2450 c24 -11 55 -23 70 -26 14 -2 4 4 -24 16 -68 28 -100 35 -46 10z" }),
595
+ /* @__PURE__ */ c("path", { d: "M6402 2453 c-24 -8 -41 -17 -39 -19 4 -5 97 26 97 32 0 6 -11 4 -58 -13z" }),
596
+ /* @__PURE__ */ c("path", { d: "M1631 2447 c-8 -10 -7 -14 2 -14 8 0 14 6 14 14 0 7 -1 13 -2 13 -2 0 -8 -6 -14 -13z" }),
597
+ /* @__PURE__ */ c("path", { d: "M7643 2439 c-18 -12 -33 -23 -33 -25 0 -5 44 18 70 35 29 20 -5 10 -37 -10z" }),
598
+ /* @__PURE__ */ c("path", { d: "M2802 2423 c-26 -38 -34 -53 -29 -53 2 0 16 18 31 40 29 45 28 56 -2 13z" }),
599
+ /* @__PURE__ */ c("path", { d: "M7190 2440 c-9 -6 -10 -10 -3 -10 6 0 15 5 18 10 8 12 4 12 -15 0z" }),
600
+ /* @__PURE__ */ c("path", { d: "M7846 2415 c-24 -18 -14 -20 14 -3 16 11 22 9 35 -7 16 -19 16 -19 5 3 -12 25 -27 27 -54 7z" }),
601
+ /* @__PURE__ */ c("path", { d: "M3960 2410 c8 -5 22 -9 30 -9 10 0 8 3 -5 9 -27 12 -43 12 -25 0z" }),
602
+ /* @__PURE__ */ c("path", { d: "M7553 2382 c-23 -15 -43 -31 -43 -35 0 -4 18 -35 40 -68 l41 -59 44 30 c48 33 72 60 37 41 -12 -6 -24 -16 -27 -21 -4 -6 -11 -7 -17 -4 -6 4 -8 3 -5 -2 3 -6 -3 -15 -13 -21 -16 -10 -23 -5 -55 45 l-37 57 23 15 c29 19 66 50 59 49 -3 0 -24 -13 -47 -27z" }),
603
+ /* @__PURE__ */ c("path", { d: "M3091 2384 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
604
+ /* @__PURE__ */ c("path", { d: "M6200 2385 c-19 -7 -28 -13 -20 -13 8 0 31 6 50 13 19 7 28 13 20 13 -8 0 -31 -6 -50 -13z" }),
605
+ /* @__PURE__ */ c("path", { d: "M8187 2382 c2 -10 14 -22 26 -28 12 -5 21 -16 19 -23 -1 -7 2 -9 9 -6 7 5 -1 19 -22 41 -38 39 -39 40 -32 16z" }),
606
+ /* @__PURE__ */ c("path", { d: "M1557 2372 c-15 -16 -15 -19 -2 -19 8 0 13 3 10 5 -3 3 0 11 6 19 17 20 5 16 -14 -5z" }),
607
+ /* @__PURE__ */ c("path", { d: "M2384 2318 c-26 -40 -53 -83 -62 -95 -8 -13 -12 -23 -9 -23 3 0 18 20 33 44 16 25 33 42 39 39 5 -4 7 -3 3 1 -4 5 3 25 16 45 35 56 38 61 32 61 -3 0 -26 -33 -52 -72z" }),
608
+ /* @__PURE__ */ c("path", { d: "M4055 2380 c11 -5 27 -9 35 -9 9 0 8 4 -5 9 -11 5 -27 9 -35 9 -9 0 -8 -4 5 -9z" }),
609
+ /* @__PURE__ */ c("path", { d: "M7757 2349 c-31 -22 -57 -43 -57 -45 0 -3 27 14 60 37 53 37 67 49 57 49 -1 0 -28 -18 -60 -41z" }),
610
+ /* @__PURE__ */ c("path", { d: "M4118 2363 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
611
+ /* @__PURE__ */ c("path", { d: "M6138 2363 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
612
+ /* @__PURE__ */ c("path", { d: "M6999 2313 l-115 -55 -27 -132 c-14 -73 -36 -178 -48 -235 l-22 -102 -42 108 c-67 173 -97 243 -105 248 -12 7 -200 -67 -200 -79 0 -6 22 -64 50 -131 27 -66 111 -268 185 -449 74 -181 136 -330 138 -332 2 -2 34 9 73 25 38 16 86 36 106 44 l37 16 -65 135 c-63 131 -65 138 -53 171 7 19 16 35 21 35 4 0 89 -52 189 -116 l181 -117 67 30 c36 17 89 41 118 54 59 27 70 41 45 61 -15 12 -16 11 -3 -4 7 -10 11 -18 8 -18 -4 0 -55 31 -114 68 -59 37 -177 110 -260 161 -84 51 -153 99 -153 107 0 14 106 514 116 547 3 9 2 17 -3 16 -4 0 -60 -25 -124 -56z" }),
613
+ /* @__PURE__ */ c("path", { d: "M2733 2323 c-15 -21 -30 -40 -34 -43 -3 -3 -9 -14 -13 -25 -9 -25 0 -15 47 53 42 60 42 71 0 15z" }),
614
+ /* @__PURE__ */ c("path", { d: "M3066 2352 c-3 -5 1 -9 9 -9 8 0 12 4 9 9 -3 4 -7 8 -9 8 -2 0 -6 -4 -9 -8z" }),
615
+ /* @__PURE__ */ c("path", { d: "M6098 2353 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
616
+ /* @__PURE__ */ c("path", { d: "M4205 2340 c11 -5 27 -9 35 -9 9 0 8 4 -5 9 -11 5 -27 9 -35 9 -9 0 -8 -4 5 -9z" }),
617
+ /* @__PURE__ */ c("path", { d: "M6030 2340 c-20 -6 -21 -8 -5 -8 11 0 29 3 40 8 25 11 -1 11 -35 0z" }),
618
+ /* @__PURE__ */ c("path", { d: "M6988 2334 c-39 -21 -35 -28 5 -8 37 19 44 24 31 24 -5 -1 -21 -8 -36 -16z" }),
619
+ /* @__PURE__ */ c("path", { d: "M7966 2295 c21 -30 39 -53 41 -51 5 4 -66 106 -73 106 -2 0 12 -25 32 -55z" }),
620
+ /* @__PURE__ */ c("path", { d: "M3040 2310 c-6 -11 -8 -20 -6 -20 3 0 10 9 16 20 6 11 8 20 6 20 -3 0 -10 -9 -16 -20z" }),
621
+ /* @__PURE__ */ c("path", { d: "M4278 2323 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
622
+ /* @__PURE__ */ c("path", { d: "M5978 2323 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
623
+ /* @__PURE__ */ c("path", { d: "M7126 2294 c-4 -20 -5 -38 -3 -40 3 -3 8 11 11 32 4 20 5 38 3 40 -3 3 -8 -11 -11 -32z" }),
624
+ /* @__PURE__ */ c("path", { d: "M4318 2313 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
625
+ /* @__PURE__ */ c("path", { d: "M5893 2313 c-18 -2 -33 -8 -33 -13 0 -4 19 -4 43 1 75 17 70 22 -10 12z" }),
626
+ /* @__PURE__ */ c("path", { d: "M2045 2280 c-9 -16 -13 -30 -11 -30 3 0 12 14 21 30 9 17 13 30 11 30 -3 0 -12 -13 -21 -30z" }),
627
+ /* @__PURE__ */ c("path", { d: "M4368 2303 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
628
+ /* @__PURE__ */ c("path", { d: "M8305 2270 c22 -24 47 -49 55 -56 12 -10 12 -14 0 -30 -11 -16 -11 -17 0 -7 11 10 18 9 33 -5 19 -16 19 -16 9 3 -6 11 -39 47 -74 80 -45 43 -52 47 -23 15z" }),
629
+ /* @__PURE__ */ c("path", { d: "M4408 2293 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
630
+ /* @__PURE__ */ c("path", { d: "M5780 2290 c-32 -8 -31 -8 12 -6 26 1 51 5 54 9 9 9 -19 7 -66 -3z" }),
631
+ /* @__PURE__ */ c("path", { d: "M6900 2290 c-8 -5 -10 -10 -5 -10 6 0 17 5 25 10 8 5 11 10 5 10 -5 0 -17 -5 -25 -10z" }),
632
+ /* @__PURE__ */ c("path", { d: "M4463 2283 c9 -2 23 -2 30 0 6 3 -1 5 -18 5 -16 0 -22 -2 -12 -5z" }),
633
+ /* @__PURE__ */ c("path", { d: "M3000 2248 l-22 -33 25 29 c18 20 26 24 30 15 3 -9 6 -10 6 -2 2 26 -19 21 -39 -9z" }),
634
+ /* @__PURE__ */ c("path", { d: "M4528 2273 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
635
+ /* @__PURE__ */ c("path", { d: "M5680 2272 c0 -5 14 -7 30 -4 17 2 30 6 30 8 0 2 -13 4 -30 4 -16 0 -30 -4 -30 -8z" }),
636
+ /* @__PURE__ */ c("path", { d: "M4593 2263 c9 -2 25 -2 35 0 9 3 1 5 -18 5 -19 0 -27 -2 -17 -5z" }),
637
+ /* @__PURE__ */ c("path", { d: "M5623 2263 c9 -2 25 -2 35 0 9 3 1 5 -18 5 -19 0 -27 -2 -17 -5z" }),
638
+ /* @__PURE__ */ c("path", { d: "M4683 2253 c9 -2 23 -2 30 0 6 3 -1 5 -18 5 -16 0 -22 -2 -12 -5z" }),
639
+ /* @__PURE__ */ c("path", { d: "M5507 2254 c-3 -4 -147 -10 -319 -14 l-313 -8 310 4 c171 2 328 8 350 13 37 8 38 9 9 10 -17 0 -34 -2 -37 -5z" }),
640
+ /* @__PURE__ */ c("path", { d: "M6856 2243 c-6 -14 -5 -15 5 -6 7 7 10 15 7 18 -3 3 -9 -2 -12 -12z" }),
641
+ /* @__PURE__ */ c("path", { d: "M4808 2243 c12 -2 30 -2 40 0 9 3 -1 5 -23 4 -22 0 -30 -2 -17 -4z" }),
642
+ /* @__PURE__ */ c("path", { d: "M3260 2230 c-9 -6 -10 -10 -3 -10 6 0 15 5 18 10 8 12 4 12 -15 0z" }),
643
+ /* @__PURE__ */ c("path", { d: "M3298 2233 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
644
+ /* @__PURE__ */ c("path", { d: "M3458 2233 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
645
+ /* @__PURE__ */ c("path", { d: "M7112 2220 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
646
+ /* @__PURE__ */ c("path", { d: "M2630 2170 c-22 -33 -38 -60 -36 -60 3 0 24 27 46 60 22 33 38 60 36 60 -3 0 -24 -27 -46 -60z" }),
647
+ /* @__PURE__ */ c("path", { d: "M8595 2188 c-22 -24 -29 -33 -15 -22 54 45 73 64 64 64 -6 0 -28 -19 -49 -42z" }),
648
+ /* @__PURE__ */ c("path", { d: "M3238 2197 c-245 -84 -407 -359 -354 -600 47 -211 244 -380 471 -403 l60 -6 39 93 c21 52 40 99 43 105 3 8 -22 13 -74 16 -130 7 -239 73 -288 173 -66 137 5 328 147 399 80 40 164 37 256 -9 38 -20 86 -53 106 -75 20 -22 38 -40 40 -40 3 0 28 39 57 86 l51 86 -38 40 c-135 140 -341 194 -516 135z" }),
649
+ /* @__PURE__ */ c("path", { d: "M6841 2170 c-6 -28 -11 -59 -10 -68 1 -9 7 12 15 47 8 35 12 66 10 68 -2 3 -9 -19 -15 -47z" }),
650
+ /* @__PURE__ */ c("path", { d: "M3163 2194 c-17 -7 -34 -18 -37 -23 -5 -8 71 24 83 35 9 8 -15 2 -46 -12z" }),
651
+ /* @__PURE__ */ c("path", { d: "M3615 2183 c28 -14 58 -32 68 -41 9 -8 19 -13 22 -10 2 2 -13 15 -34 29 -22 13 -37 27 -34 31 2 4 -4 5 -13 1 -10 -3 -15 -2 -12 3 4 5 -6 10 -20 11 -22 1 -17 -4 23 -24z" }),
652
+ /* @__PURE__ */ c("path", { d: "M7284 2192 c0 -11 3 -19 7 -16 4 2 21 -19 39 -46 18 -28 34 -50 36 -50 7 0 -38 76 -61 106 -19 24 -21 24 -21 6z" }),
653
+ /* @__PURE__ */ c("path", { d: "M7983 2195 c0 -8 4 -12 9 -9 4 3 8 9 8 15 0 5 -4 9 -8 9 -5 0 -9 -7 -9 -15z" }),
654
+ /* @__PURE__ */ c("path", { d: "M7858 2122 c-59 -42 -105 -78 -103 -81 3 -2 13 3 22 11 20 17 54 32 66 30 4 -1 7 4 7 11 0 7 20 26 44 41 38 24 89 68 75 65 -2 0 -52 -35 -111 -77z" }),
655
+ /* @__PURE__ */ c("path", { d: "M2285 2160 c-9 -17 -18 -54 -20 -83 -4 -50 -4 -50 5 -12 21 98 30 121 41 104 6 -9 9 -10 9 -2 0 26 -20 22 -35 -7z" }),
656
+ /* @__PURE__ */ c("path", { d: "M7100 2175 c0 -8 2 -15 4 -15 2 0 6 7 10 15 3 8 1 15 -4 15 -6 0 -10 -7 -10 -15z" }),
657
+ /* @__PURE__ */ c("path", { d: "M2945 2169 c-4 -6 -5 -12 -2 -15 2 -3 7 2 10 11 7 17 1 20 -8 4z" }),
658
+ /* @__PURE__ */ c("path", { d: "M6605 2165 c-24 -12 -25 -14 -5 -8 14 3 30 6 37 6 7 0 10 4 7 9 -6 10 -2 10 -39 -7z" }),
659
+ /* @__PURE__ */ c("path", { d: "M1992 2140 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
660
+ /* @__PURE__ */ c("path", { d: "M3089 2143 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z" }),
661
+ /* @__PURE__ */ c("path", { d: "M6661 2153 c-1 -19 21 -63 32 -63 5 0 5 6 -1 13 -6 7 -16 24 -21 38 -5 13 -10 19 -10 12z" }),
662
+ /* @__PURE__ */ c("path", { d: "M6530 2138 c-14 -7 -44 -20 -67 -30 -23 -10 -44 -22 -47 -27 -3 -5 15 1 42 13 26 13 63 30 82 39 19 8 31 16 25 16 -5 0 -21 -5 -35 -11z" }),
663
+ /* @__PURE__ */ c("path", { d: "M7092 2125 c0 -16 2 -22 5 -12 2 9 2 23 0 30 -3 6 -5 -1 -5 -18z" }),
664
+ /* @__PURE__ */ c("path", { d: "M2911 2117 c-13 -21 -12 -21 5 -5 10 10 16 20 13 22 -3 3 -11 -5 -18 -17z" }),
665
+ /* @__PURE__ */ c("path", { d: "M8440 2120 c6 -11 16 -20 22 -20 6 0 3 9 -7 20 -10 11 -20 20 -22 20 -2 0 1 -9 7 -20z" }),
666
+ /* @__PURE__ */ c("path", { d: "M8519 2123 c-13 -16 -12 -17 3 -5 9 8 23 10 29 6 8 -4 9 -3 5 4 -10 17 -21 15 -37 -5z" }),
667
+ /* @__PURE__ */ c("path", { d: "M3049 2113 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
668
+ /* @__PURE__ */ c("path", { d: "M8109 2113 c-13 -16 -12 -17 4 -4 9 7 17 15 17 17 0 8 -8 3 -21 -13z" }),
669
+ /* @__PURE__ */ c("path", { d: "M3735 2100 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
670
+ /* @__PURE__ */ c("path", { d: "M1982 2070 c0 -19 4 -46 8 -60 6 -20 8 -21 8 -5 1 11 -3 38 -7 60 l-9 40 0 -35z" }),
671
+ /* @__PURE__ */ c("path", { d: "M2573 2088 c-15 -20 -25 -38 -20 -38 3 0 12 11 21 25 17 26 16 35 -1 13z" }),
672
+ /* @__PURE__ */ c("path", { d: "M2855 2033 c-50 -74 -55 -85 -28 -53 13 14 23 30 23 35 0 6 5 3 11 -5 9 -13 10 -13 6 0 -2 8 4 30 15 48 32 53 14 36 -27 -25z" }),
673
+ /* @__PURE__ */ c("path", { d: "M7080 2078 c0 -7 4 -19 9 -27 7 -10 9 -7 8 12 -2 26 -17 39 -17 15z" }),
674
+ /* @__PURE__ */ c("path", { d: "M8170 2085 c0 -5 12 -23 26 -40 14 -16 21 -21 15 -10 -14 30 -40 61 -41 50z" }),
675
+ /* @__PURE__ */ c("path", { d: "M6821 2064 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
676
+ /* @__PURE__ */ c("path", { d: "M2977 2064 c-3 -3 -3 -13 0 -22 5 -11 3 -13 -7 -7 -9 5 -11 4 -6 -3 10 -16 14 -15 26 7 9 19 0 37 -13 25z" }),
677
+ /* @__PURE__ */ c("path", { d: "M8003 2040 c-22 -16 -42 -27 -45 -25 -3 3 -5 -1 -5 -9 0 -10 14 -5 44 17 41 29 60 47 51 47 -2 0 -22 -13 -45 -30z" }),
678
+ /* @__PURE__ */ c("path", { d: "M3791 2043 c7 -12 15 -20 18 -17 3 2 -3 12 -13 22 -17 16 -18 16 -5 -5z" }),
679
+ /* @__PURE__ */ c("path", { d: "M3835 2050 c-3 -5 -3 -10 2 -10 4 0 3 -4 -3 -8 -9 -5 -8 -10 1 -19 10 -9 14 -7 18 13 5 26 -7 42 -18 24z" }),
680
+ /* @__PURE__ */ c("path", { d: "M3938 2053 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
681
+ /* @__PURE__ */ c("path", { d: "M6425 2029 c13 -25 14 -33 3 -47 -7 -9 -8 -14 -4 -10 10 8 36 -9 36 -23 0 -5 -8 -6 -17 -3 -15 5 -15 4 -3 -4 8 -6 17 -9 21 -6 4 2 10 -8 13 -22 4 -15 9 -24 12 -21 7 7 -27 87 -38 87 -5 0 -6 4 -3 10 6 9 -21 70 -31 70 -2 0 3 -14 11 -31z" }),
682
+ /* @__PURE__ */ c("path", { d: "M6705 2041 c4 -14 24 -64 44 -112 l36 -88 18 96 c10 53 15 98 12 101 -3 3 -5 -4 -5 -16 0 -11 -5 -24 -10 -27 -6 -4 -8 -10 -5 -15 3 -5 1 -29 -5 -52 l-12 -42 -35 84 c-35 85 -52 117 -38 71z" }),
683
+ /* @__PURE__ */ c("path", { d: "M3860 1998 c-28 -132 -93 -453 -111 -553 -28 -153 -14 -236 54 -327 13 -18 23 -38 21 -43 -5 -12 79 -69 116 -79 14 -4 3 5 -25 19 -53 28 -97 65 -78 65 7 0 15 -5 18 -10 12 -19 119 -67 176 -80 32 -7 92 -11 140 -8 69 3 94 10 137 33 126 68 153 130 237 540 36 176 68 327 71 336 4 13 -14 19 -102 33 -58 10 -109 14 -113 9 -4 -4 -35 -145 -69 -311 -34 -167 -71 -324 -81 -348 -25 -56 -70 -84 -134 -84 -95 0 -147 53 -147 151 0 31 27 190 60 353 33 163 60 300 60 304 0 6 -190 53 -212 52 -3 0 -11 -24 -18 -52z" }),
684
+ /* @__PURE__ */ c("path", { d: "M4025 2035 c59 -17 73 -19 60 -6 -6 5 -32 11 -60 14 l-50 6 50 -14z" }),
685
+ /* @__PURE__ */ c("path", { d: "M7066 2016 c-4 -21 -5 -41 -2 -44 3 -3 6 4 6 16 0 11 4 22 9 24 4 2 5 12 1 23 -6 16 -8 12 -14 -19z" }),
686
+ /* @__PURE__ */ c("path", { d: "M7390 2030 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
687
+ /* @__PURE__ */ c("path", { d: "M7723 2032 c-14 -9 22 -72 40 -71 9 0 9 2 0 5 -7 3 -9 12 -6 20 3 9 -1 14 -12 14 -12 0 -16 6 -12 20 3 11 4 20 4 20 -1 0 -7 -4 -14 -8z" }),
688
+ /* @__PURE__ */ c("path", { d: "M2270 2013 c0 -12 66 -73 78 -73 4 0 -2 8 -13 16 -11 8 -19 20 -17 25 1 6 -2 8 -7 5 -5 -4 -17 4 -25 16 -9 12 -16 17 -16 11z" }),
689
+ /* @__PURE__ */ c("path", { d: "M3786 1985 c-33 -50 -76 -126 -76 -133 0 -4 5 1 11 11 6 9 14 15 19 12 5 -3 12 0 16 6 4 8 3 9 -4 5 -7 -4 -12 -2 -12 3 0 6 5 11 10 11 6 0 10 7 10 16 0 9 8 28 18 42 26 37 34 52 29 52 -3 0 -12 -11 -21 -25z" }),
690
+ /* @__PURE__ */ c("path", { d: "M6027 2003 c18 -2 50 -2 70 0 21 2 7 4 -32 4 -38 0 -55 -2 -38 -4z" }),
691
+ /* @__PURE__ */ c("path", { d: "M8231 1993 c7 -12 15 -20 18 -17 3 2 -3 12 -13 22 -17 16 -18 16 -5 -5z" }),
692
+ /* @__PURE__ */ c("path", { d: "M2931 1968 c-11 -18 -28 -41 -38 -51 -16 -16 -16 -17 -1 -12 10 4 28 27 42 51 28 51 25 60 -3 12z" }),
693
+ /* @__PURE__ */ c("path", { d: "M5920 1990 c-13 -8 -12 -10 3 -10 9 0 17 5 17 10 0 12 -1 12 -20 0z" }),
694
+ /* @__PURE__ */ c("path", { d: "M5958 1993 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z" }),
695
+ /* @__PURE__ */ c("path", { d: "M6141 1996 c2 -2 18 -6 34 -10 22 -5 26 -4 15 4 -14 9 -59 15 -49 6z" }),
696
+ /* @__PURE__ */ c("path", { d: "M2495 1979 c-4 -6 -14 -8 -22 -5 -8 3 -11 2 -8 -3 8 -14 -14 -25 -65 -32 l-45 -6 38 -2 c40 -1 85 17 106 43 8 9 11 16 8 16 -3 0 -9 -5 -12 -11z" }),
697
+ /* @__PURE__ */ c("path", { d: "M3357 1984 c-3 -5 14 -9 36 -9 23 0 60 -3 82 -7 31 -5 36 -5 22 3 -25 14 -133 24 -140 13z" }),
698
+ /* @__PURE__ */ c("path", { d: "M3826 1954 c-4 -20 -5 -38 -3 -40 3 -3 8 11 11 32 4 20 5 38 3 40 -3 3 -8 -11 -11 -32z" }),
699
+ /* @__PURE__ */ c("path", { d: "M4102 1970 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
700
+ /* @__PURE__ */ c("path", { d: "M6005 1983 c-191 -25 -322 -131 -376 -304 -24 -76 -25 -236 -4 -328 77 -323 369 -467 662 -325 141 68 223 216 223 403 0 142 -47 284 -130 394 -67 89 -142 137 -245 156 -59 11 -74 11 -130 4z m97 -213 c103 -29 181 -176 181 -342 1 -62 -4 -85 -24 -124 -42 -81 -146 -128 -243 -110 -80 15 -153 122 -177 260 -29 171 22 278 149 312 59 16 69 16 114 4z" }),
701
+ /* @__PURE__ */ c("path", { d: "M6018 1753 c12 -2 30 -2 40 0 9 3 -1 5 -23 4 -22 0 -30 -2 -17 -4z" }),
702
+ /* @__PURE__ */ c("path", { d: "M6117 1740 c51 -24 59 -36 36 -49 -10 -6 -13 -11 -7 -11 5 0 15 5 21 11 8 8 19 -4 39 -45 30 -61 43 -71 20 -14 -28 65 -96 129 -138 128 -7 -1 6 -10 29 -20z" }),
703
+ /* @__PURE__ */ c("path", { d: "M5960 1743 c-29 -11 -70 -45 -81 -66 -10 -22 -10 -22 10 1 10 12 24 22 30 22 6 0 11 4 11 8 0 5 15 16 33 25 30 15 29 22 -3 10z" }),
704
+ /* @__PURE__ */ c("path", { d: "M5858 1638 c-14 -35 -18 -106 -9 -148 l10 -45 -1 65 c-1 102 1 118 12 100 11 -18 12 -4 1 24 -6 16 -8 17 -13 4z" }),
705
+ /* @__PURE__ */ c("path", { d: "M6252 1530 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
706
+ /* @__PURE__ */ c("path", { d: "M6262 1475 c0 -16 2 -22 5 -12 2 9 2 23 0 30 -3 6 -5 -1 -5 -18z" }),
707
+ /* @__PURE__ */ c("path", { d: "M5861 1427 c-1 -21 25 -87 34 -87 3 0 3 5 -1 11 -4 7 -13 30 -20 53 -7 23 -13 33 -13 23z" }),
708
+ /* @__PURE__ */ c("path", { d: "M6262 1410 c-1 -19 -5 -46 -7 -60 l-6 -25 11 25 c6 13 9 40 7 60 l-4 35 -1 -35z" }),
709
+ /* @__PURE__ */ c("path", { d: "M6210 1280 c-19 -21 -38 -36 -42 -33 -5 2 -8 -1 -8 -6 0 -6 4 -11 10 -11 12 0 80 68 80 80 0 13 0 13 -40 -30z" }),
710
+ /* @__PURE__ */ c("path", { d: "M5920 1283 c44 -67 117 -96 185 -74 26 9 24 10 -16 5 -58 -7 -111 14 -156 64 -32 35 -33 35 -13 5z" }),
711
+ /* @__PURE__ */ c("path", { d: "M6215 1980 c-3 -5 -1 -10 4 -10 6 0 11 5 11 10 0 6 -2 10 -4 10 -3 0 -8 -4 -11 -10z" }),
712
+ /* @__PURE__ */ c("path", { d: "M7921 1983 c-7 -3 -21 -12 -30 -20 -9 -7 -29 -25 -46 -39 -16 -13 -2 -6 33 16 34 22 62 43 62 45 0 6 0 6 -19 -2z" }),
713
+ /* @__PURE__ */ c("path", { d: "M2000 1971 c0 -6 4 -13 10 -16 6 -3 7 1 4 9 -7 18 -14 21 -14 7z" }),
714
+ /* @__PURE__ */ c("path", { d: "M3269 1952 c-24 -16 -53 -40 -64 -52 -12 -14 -2 -9 25 12 25 20 61 43 80 51 19 9 28 16 19 16 -8 1 -35 -12 -60 -27z" }),
715
+ /* @__PURE__ */ c("path", { d: "M7445 1951 c8 -17 19 -33 25 -36 5 -3 1 10 -11 29 -25 43 -36 48 -14 7z" }),
716
+ /* @__PURE__ */ c("path", { d: "M5840 1960 c-8 -5 -10 -10 -5 -10 6 0 17 5 25 10 8 5 11 10 5 10 -5 0 -17 -5 -25 -10z" }),
717
+ /* @__PURE__ */ c("path", { d: "M6254 1955 c11 -8 22 -12 25 -9 6 6 -19 24 -34 24 -5 -1 -1 -7 9 -15z" }),
718
+ /* @__PURE__ */ c("path", { d: "M8266 1944 c4 -27 0 -34 -36 -59 -22 -15 -40 -30 -40 -32 0 -6 32 14 64 40 26 21 28 26 18 53 l-12 29 6 -31z" }),
719
+ /* @__PURE__ */ c("path", { d: "M4480 1945 c69 -15 117 -19 107 -9 -3 3 -18 7 -34 9 -15 1 -53 5 -83 8 l-55 7 65 -15z" }),
720
+ /* @__PURE__ */ c("path", { d: "M7037 1885 c-17 -88 -18 -88 44 -120 22 -12 26 -12 26 0 0 8 -4 12 -9 9 -5 -3 -20 2 -33 10 -28 18 -31 43 -14 111 6 24 9 50 7 56 -2 7 -12 -23 -21 -66z" }),
721
+ /* @__PURE__ */ c("path", { d: "M5783 1931 c-17 -11 -34 -17 -37 -14 -3 3 -9 -3 -13 -13 -8 -22 -35 -44 -45 -38 -4 3 -5 -1 -3 -8 3 -8 -4 -23 -15 -35 -11 -12 -20 -28 -20 -34 0 -7 13 6 28 27 29 39 91 98 128 121 10 6 17 12 14 12 -3 1 -19 -8 -37 -18z" }),
722
+ /* @__PURE__ */ c("path", { d: "M7779 1923 c12 -18 24 -33 27 -33 9 0 -15 37 -33 51 -12 10 -11 5 6 -18z" }),
723
+ /* @__PURE__ */ c("path", { d: "M3585 1915 c17 -16 41 -38 55 -49 l25 -21 -25 28 c-14 16 -38 38 -55 49 l-30 21 30 -28z" }),
724
+ /* @__PURE__ */ c("path", { d: "M4046 1704 c-46 -233 -57 -320 -20 -165 10 44 22 77 26 75 4 -3 5 2 2 11 -8 20 5 107 15 101 4 -3 7 7 8 22 0 26 4 60 19 150 3 23 4 42 2 42 -3 0 -26 -106 -52 -236z" }),
725
+ /* @__PURE__ */ c("path", { d: "M4364 1929 c-3 -6 -1 -16 5 -22 8 -8 11 -5 11 11 0 24 -5 28 -16 11z" }),
726
+ /* @__PURE__ */ c("path", { d: "M6290 1936 c0 -2 8 -10 18 -17 15 -13 16 -12 3 4 -13 16 -21 21 -21 13z" }),
727
+ /* @__PURE__ */ c("path", { d: "M2030 1908 c0 -7 8 -21 18 -30 9 -10 31 -31 47 -48 17 -16 35 -30 40 -30 6 0 2 5 -8 11 -10 6 -35 33 -57 61 -22 27 -40 44 -40 36z" }),
728
+ /* @__PURE__ */ c("path", { d: "M5543 1913 c9 -2 23 -2 30 0 6 3 -1 5 -18 5 -16 0 -22 -2 -12 -5z" }),
729
+ /* @__PURE__ */ c("path", { d: "M2759 1893 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z" }),
730
+ /* @__PURE__ */ c("path", { d: "M5055 1900 l-150 -6 147 -2 c89 -1 149 2 153 8 3 6 5 9 3 8 -2 -1 -70 -5 -153 -8z" }),
731
+ /* @__PURE__ */ c("path", { d: "M5302 1903 c37 -2 100 -2 140 0 40 1 10 3 -67 3 -77 0 -110 -1 -73 -3z" }),
732
+ /* @__PURE__ */ c("path", { d: "M5700 1900 c0 -5 5 -10 11 -10 5 0 7 5 4 10 -3 6 -8 10 -11 10 -2 0 -4 -4 -4 -10z" }),
733
+ /* @__PURE__ */ c("path", { d: "M5455 1889 c-60 -4 -208 -7 -327 -8 l-218 -1 0 -107 0 -108 115 3 115 4 0 -386 0 -386 116 0 117 0 -5 385 c-4 323 -2 385 10 390 7 3 56 5 109 5 l95 0 -7 108 c-4 59 -8 107 -9 107 0 0 -50 -3 -111 -6z" }),
734
+ /* @__PURE__ */ c("path", { d: "M5592 1770 c-1 -69 -4 -168 -6 -220 l-5 -95 9 86 c4 47 13 103 19 124 6 24 7 43 1 50 -5 6 -11 49 -13 96 -3 68 -4 60 -5 -41z" }),
735
+ /* @__PURE__ */ c("path", { d: "M3806 1868 c-3 -13 -5 -34 -5 -48 1 -15 5 -7 10 19 9 47 6 68 -5 29z" }),
736
+ /* @__PURE__ */ c("path", { d: "M4351 1829 c-7 -33 -10 -63 -8 -65 2 -3 10 23 16 57 7 33 10 63 8 65 -2 3 -10 -23 -16 -57z" }),
737
+ /* @__PURE__ */ c("path", { d: "M4891 1875 c-5 -22 -9 -210 -4 -220 2 -7 30 -12 71 -12 42 0 50 1 22 4 -89 7 -85 3 -82 86 3 67 -2 166 -7 142z" }),
738
+ /* @__PURE__ */ c("path", { d: "M2716 1832 c-22 -27 -24 -32 -7 -17 20 17 47 55 39 55 -2 0 -16 -17 -32 -38z" }),
739
+ /* @__PURE__ */ c("path", { d: "M2876 1855 c-3 -9 -6 -22 -5 -28 0 -7 5 -1 10 12 5 13 8 26 5 28 -2 2 -6 -3 -10 -12z" }),
740
+ /* @__PURE__ */ c("path", { d: "M7510 1850 c6 -11 13 -20 16 -20 2 0 0 9 -6 20 -6 11 -13 20 -16 20 -2 0 0 -9 6 -20z" }),
741
+ /* @__PURE__ */ c("path", { d: "M3155 1827 c-21 -51 -18 -59 5 -13 11 22 18 42 15 44 -3 3 -12 -11 -20 -31z" }),
742
+ /* @__PURE__ */ c("path", { d: "M4620 1845 c0 -8 2 -15 4 -15 2 0 6 7 10 15 3 8 1 15 -4 15 -6 0 -10 -7 -10 -15z" }),
743
+ /* @__PURE__ */ c("path", { d: "M6400 1823 c13 -18 25 -33 27 -33 8 0 -17 38 -33 51 -11 9 -9 2 6 -18z" }),
744
+ /* @__PURE__ */ c("path", { d: "M6510 1829 c0 -14 48 -121 49 -108 1 3 -10 32 -24 65 -13 32 -24 52 -25 43z" }),
745
+ /* @__PURE__ */ c("path", { d: "M4612 1800 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
746
+ /* @__PURE__ */ c("path", { d: "M2856 1779 c-3 -17 -5 -59 -5 -93 2 -55 3 -52 9 29 8 95 7 116 -4 64z" }),
747
+ /* @__PURE__ */ c("path", { d: "M2669 1773 c-13 -16 -12 -17 4 -4 16 13 21 21 13 21 -2 0 -10 -8 -17 -17z" }),
748
+ /* @__PURE__ */ c("path", { d: "M3792 1770 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
749
+ /* @__PURE__ */ c("path", { d: "M7564 1762 c8 -16 22 -35 32 -43 10 -8 5 4 -11 29 -32 48 -42 55 -21 14z" }),
750
+ /* @__PURE__ */ c("path", { d: "M6447 1745 c9 -19 18 -33 21 -31 4 5 -26 66 -33 66 -3 0 3 -16 12 -35z" }),
751
+ /* @__PURE__ */ c("path", { d: "M3126 1748 c-8 -32 -7 -88 2 -88 4 0 7 25 8 55 0 30 0 55 -2 55 -1 0 -4 -10 -8 -22z" }),
752
+ /* @__PURE__ */ c("path", { d: "M4592 1709 c-6 -34 -10 -65 -8 -67 6 -5 28 107 24 120 -2 6 -9 -18 -16 -53z" }),
753
+ /* @__PURE__ */ c("path", { d: "M5630 1749 c-7 -11 -10 -23 -7 -25 2 -2 9 7 15 21 14 30 7 33 -8 4z" }),
754
+ /* @__PURE__ */ c("path", { d: "M2629 1744 c-7 -9 -24 -20 -37 -25 -14 -5 -22 -12 -20 -15 9 -8 53 16 66 37 15 23 9 25 -9 3z" }),
755
+ /* @__PURE__ */ c("path", { d: "M2210 1746 c0 -3 9 -10 20 -16 11 -6 20 -8 20 -6 0 3 -9 10 -20 16 -11 6 -20 8 -20 6z" }),
756
+ /* @__PURE__ */ c("path", { d: "M7125 1740 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0 -7 -4 -4 -10z" }),
757
+ /* @__PURE__ */ c("path", { d: "M3782 1720 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
758
+ /* @__PURE__ */ c("path", { d: "M4332 1720 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
759
+ /* @__PURE__ */ c("path", { d: "M7990 1720 c-24 -19 -24 -19 -3 -17 12 0 20 3 18 6 -3 2 0 10 6 18 16 18 8 16 -21 -7z" }),
760
+ /* @__PURE__ */ c("path", { d: "M7165 1714 c35 -27 55 -36 55 -24 0 5 -7 10 -15 10 -8 0 -15 4 -15 9 0 5 -10 11 -22 14 -23 6 -23 6 -3 -9z" }),
761
+ /* @__PURE__ */ c("path", { d: "M2270 1710 c8 -5 20 -10 25 -10 6 0 3 5 -5 10 -8 5 -19 10 -25 10 -5 0 -3 -5 5 -10z" }),
762
+ /* @__PURE__ */ c("path", { d: "M6560 1693 c0 -12 4 -23 8 -25 13 -5 72 -160 65 -171 -3 -6 -1 -7 5 -3 7 4 12 2 12 -5 0 -7 2 -10 5 -8 4 5 -80 218 -90 228 -3 2 -5 -5 -5 -16z" }),
763
+ /* @__PURE__ */ c("path", { d: "M2537 1694 c-3 -4 -41 -10 -84 -15 l-78 -8 80 5 c104 6 105 6 105 16 0 9 -14 11 -23 2z" }),
764
+ /* @__PURE__ */ c("path", { d: "M6491 1640 c10 -33 24 -90 30 -127 11 -61 13 -66 23 -44 8 18 8 25 -2 29 -6 2 -12 14 -12 26 0 13 -4 36 -9 52 -5 16 -15 50 -22 77 -7 26 -16 47 -20 47 -4 0 1 -27 12 -60z" }),
765
+ /* @__PURE__ */ c("path", { d: "M3765 1670 c3 -5 8 -10 11 -10 2 0 4 5 4 10 0 6 -5 10 -11 10 -5 0 -7 -4 -4 -10z" }),
766
+ /* @__PURE__ */ c("path", { d: "M4316 1665 c-3 -9 -6 -25 -6 -36 0 -10 -3 -19 -7 -19 -5 0 -9 -24 -10 -53 -1 -49 0 -48 18 32 17 78 20 114 5 76z" }),
767
+ /* @__PURE__ */ c("path", { d: "M7230 1676 c0 -3 9 -10 20 -16 11 -6 20 -8 20 -6 0 3 -9 10 -20 16 -11 6 -20 8 -20 6z" }),
768
+ /* @__PURE__ */ c("path", { d: "M7640 1650 c12 -16 24 -30 26 -30 3 0 -4 14 -16 30 -12 17 -24 30 -26 30 -3 0 4 -13 16 -30z" }),
769
+ /* @__PURE__ */ c("path", { d: "M5478 1663 c17 -2 47 -2 65 0 17 2 3 4 -33 4 -36 0 -50 -2 -32 -4z" }),
770
+ /* @__PURE__ */ c("path", { d: "M5118 1528 c4 -209 9 -229 10 -40 0 94 -3 172 -6 172 -4 0 -6 -60 -4 -132z" }),
771
+ /* @__PURE__ */ c("path", { d: "M5378 1325 c1 -184 6 -335 10 -335 5 0 8 16 7 35 -1 23 4 39 14 46 14 9 14 10 -1 5 -15 -4 -17 19 -17 285 0 173 3 288 8 284 6 -3 12 -1 16 5 3 6 -4 10 -17 10 l-23 0 3 -335z" }),
772
+ /* @__PURE__ */ c("path", { d: "M7280 1646 c0 -2 24 -18 53 -36 28 -17 41 -22 27 -11 -14 11 -32 26 -41 33 -16 13 -39 21 -39 14z" }),
773
+ /* @__PURE__ */ c("path", { d: "M3761 1624 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
774
+ /* @__PURE__ */ c("path", { d: "M4570 1616 c0 -7 -3 -29 -6 -47 -10 -48 3 -32 14 19 6 24 6 42 1 42 -5 0 -9 -6 -9 -14z" }),
775
+ /* @__PURE__ */ c("path", { d: "M2865 1580 c3 -25 10 -49 16 -54 11 -12 11 -12 -7 49 l-14 50 5 -45z" }),
776
+ /* @__PURE__ */ c("path", { d: "M7787 1588 c-26 -17 -46 -32 -43 -35 3 -3 54 25 95 54 2 2 2 5 0 7 -2 2 -26 -10 -52 -26z" }),
777
+ /* @__PURE__ */ c("path", { d: "M3140 1606 c0 -11 30 -66 36 -66 2 0 -3 15 -12 33 -19 36 -24 44 -24 33z" }),
778
+ /* @__PURE__ */ c("path", { d: "M3735 1517 c-26 -119 -31 -253 -11 -297 9 -19 13 -26 10 -15 -18 56 -15 165 5 274 26 132 23 159 -4 38z" }),
779
+ /* @__PURE__ */ c("path", { d: "M7680 1576 c0 -2 7 -7 16 -10 8 -3 12 -2 9 4 -6 10 -25 14 -25 6z" }),
780
+ /* @__PURE__ */ c("path", { d: "M6922 1540 c-11 -24 -10 -32 8 -62 22 -37 27 -27 6 11 -14 25 -11 55 4 46 14 -9 21 12 7 23 -9 8 -16 4 -25 -18z" }),
781
+ /* @__PURE__ */ c("path", { d: "M7410 1564 c0 -2 9 -8 20 -14 15 -8 18 -8 14 3 -4 11 -34 21 -34 11z" }),
782
+ /* @__PURE__ */ c("path", { d: "M7467 1529 c7 -7 15 -10 18 -7 3 3 -2 9 -12 12 -14 6 -15 5 -6 -5z" }),
783
+ /* @__PURE__ */ c("path", { d: "M3190 1515 c16 -20 101 -75 114 -75 6 1 -6 10 -27 21 -21 11 -41 26 -44 34 -3 8 -9 13 -13 10 -4 -3 -10 2 -14 10 -3 8 -11 15 -17 15 -8 0 -8 -4 1 -15z" }),
784
+ /* @__PURE__ */ c("path", { d: "M4542 1469 c-6 -34 -10 -65 -8 -67 7 -6 29 104 24 118 -2 7 -9 -16 -16 -51z" }),
785
+ /* @__PURE__ */ c("path", { d: "M2890 1501 c0 -6 4 -13 10 -16 6 -3 7 1 4 9 -7 18 -14 21 -14 7z" }),
786
+ /* @__PURE__ */ c("path", { d: "M7040 1488 c14 -14 30 -25 35 -24 6 0 9 -5 7 -12 -1 -8 2 -11 7 -7 6 3 22 -2 36 -11 14 -9 25 -14 25 -11 0 4 -45 35 -105 72 l-30 18 25 -25z" }),
787
+ /* @__PURE__ */ c("path", { d: "M4276 1475 c-3 -9 -6 -26 -5 -38 1 -16 4 -12 10 12 10 34 6 55 -5 26z" }),
788
+ /* @__PURE__ */ c("path", { d: "M6666 1453 c3 -14 1 -23 -6 -23 -6 0 -8 -5 -5 -10 4 -6 10 -8 15 -5 4 3 10 -5 13 -17 4 -12 9 -20 12 -17 3 4 -4 26 -15 50 -11 24 -17 34 -14 22z" }),
789
+ /* @__PURE__ */ c("path", { d: "M2920 1443 c0 -6 8 -17 18 -24 16 -13 16 -13 2 6 -8 11 -16 22 -17 24 -2 2 -3 0 -3 -6z" }),
790
+ /* @__PURE__ */ c("path", { d: "M3350 1429 c0 -5 9 -9 20 -9 11 0 20 2 20 4 0 2 -9 6 -20 9 -11 3 -20 1 -20 -4z" }),
791
+ /* @__PURE__ */ c("path", { d: "M3443 1433 c5 -7 -2 -13 -20 -16 -16 -2 -5 -4 22 -5 28 0 43 2 35 5 -8 3 -21 11 -29 17 -11 8 -13 8 -8 -1z" }),
792
+ /* @__PURE__ */ c("path", { d: "M3992 1420 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
793
+ /* @__PURE__ */ c("path", { d: "M5592 1410 c0 -19 2 -27 5 -17 2 9 2 25 0 35 -3 9 -5 1 -5 -18z" }),
794
+ /* @__PURE__ */ c("path", { d: "M6532 1420 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
795
+ /* @__PURE__ */ c("path", { d: "M7450 1401 c-53 -28 -67 -39 -48 -38 14 1 24 5 22 8 -2 4 11 13 29 20 40 16 96 49 82 48 -5 0 -44 -17 -85 -38z" }),
796
+ /* @__PURE__ */ c("path", { d: "M4262 1390 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
797
+ /* @__PURE__ */ c("path", { d: "M6997 1335 c21 -41 39 -71 41 -65 2 6 -1 17 -8 25 -6 8 -8 20 -4 26 4 7 3 9 -3 6 -6 -4 -18 12 -28 34 -10 22 -22 42 -27 45 -5 3 8 -29 29 -71z" }),
798
+ /* @__PURE__ */ c("path", { d: "M7184 1401 c7 -11 46 -35 46 -28 0 3 -12 12 -26 22 -15 9 -23 12 -20 6z" }),
799
+ /* @__PURE__ */ c("path", { d: "M3507 1370 c-3 -11 -1 -20 4 -20 5 0 9 9 9 20 0 11 -2 20 -4 20 -2 0 -6 -9 -9 -20z" }),
800
+ /* @__PURE__ */ c("path", { d: "M3980 1348 c0 -116 113 -186 207 -128 31 19 63 66 63 92 0 7 -9 -6 -19 -29 -21 -45 -62 -73 -108 -73 -42 0 -74 11 -66 23 3 6 1 7 -6 3 -28 -18 -68 70 -56 125 4 18 3 29 -4 29 -6 0 -11 -19 -11 -42z" }),
801
+ /* @__PURE__ */ c("path", { d: "M4526 1379 c-3 -8 -10 -41 -17 -74 -6 -33 -14 -66 -17 -75 -3 -8 -2 -12 3 -8 9 8 45 161 40 167 -3 2 -7 -2 -9 -10z" }),
802
+ /* @__PURE__ */ c("path", { d: "M6527 1383 c-4 -3 -7 -19 -7 -34 0 -15 -9 -55 -19 -88 -10 -34 -17 -61 -15 -61 12 0 51 131 45 154 -1 4 4 14 10 22 11 14 -1 20 -14 7z" }),
803
+ /* @__PURE__ */ c("path", { d: "M5601 1354 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
804
+ /* @__PURE__ */ c("path", { d: "M4251 1344 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z" }),
805
+ /* @__PURE__ */ c("path", { d: "M7282 1334 c10 -10 20 -16 22 -13 3 3 -5 11 -17 18 -21 13 -21 12 -5 -5z" }),
806
+ /* @__PURE__ */ c("path", { d: "M7325 1340 c-3 -6 1 -7 9 -4 18 7 21 14 7 14 -6 0 -13 -4 -16 -10z" }),
807
+ /* @__PURE__ */ c("path", { d: "M3025 1320 c10 -11 20 -20 23 -20 3 0 -3 9 -13 20 -10 11 -20 20 -23 20 -3 0 3 -9 13 -20z" }),
808
+ /* @__PURE__ */ c("path", { d: "M3466 1274 c-15 -36 -25 -69 -22 -71 3 -3 8 6 12 21 3 14 9 24 13 22 4 -3 8 7 9 20 1 14 7 34 13 45 6 12 9 23 6 25 -2 3 -17 -25 -31 -62z" }),
809
+ /* @__PURE__ */ c("path", { d: "M5611 1320 c0 -8 4 -22 9 -30 12 -18 12 -2 0 25 -6 13 -9 15 -9 5z" }),
810
+ /* @__PURE__ */ c("path", { d: "M5123 1260 c0 -30 2 -43 4 -27 2 15 2 39 0 55 -2 15 -4 2 -4 -28z" }),
811
+ /* @__PURE__ */ c("path", { d: "M3102 1257 c21 -13 35 -27 30 -32 -4 -4 -2 -5 5 -1 7 4 26 0 42 -9 17 -8 36 -15 43 -15 7 0 -21 17 -62 37 -94 47 -105 50 -58 20z" }),
812
+ /* @__PURE__ */ c("path", { d: "M6740 1260 c0 -11 4 -20 9 -20 5 0 7 9 4 20 -3 11 -7 20 -9 20 -2 0 -4 -9 -4 -20z" }),
813
+ /* @__PURE__ */ c("path", { d: "M5630 1261 c0 -13 28 -71 35 -71 4 0 -24 71 -31 79 -2 2 -4 -1 -4 -8z" }),
814
+ /* @__PURE__ */ c("path", { d: "M6761 1220 c0 -14 28 -72 29 -59 0 4 -7 22 -15 40 -8 19 -14 27 -14 19z" }),
815
+ /* @__PURE__ */ c("path", { d: "M6960 1195 c-41 -18 -48 -24 -27 -22 15 1 27 5 27 8 0 4 19 14 43 22 23 9 35 16 27 16 -8 0 -40 -11 -70 -24z" }),
816
+ /* @__PURE__ */ c("path", { d: "M4476 1195 c-9 -26 -7 -32 5 -12 6 10 9 21 6 23 -2 3 -7 -2 -11 -11z" }),
817
+ /* @__PURE__ */ c("path", { d: "M5124 1050 c0 -85 2 -120 3 -77 2 42 2 112 0 155 -1 42 -3 7 -3 -78z" }),
818
+ /* @__PURE__ */ c("path", { d: "M3274 1182 c2 -4 37 -9 78 -11 40 -1 71 -1 68 2 -9 8 -151 16 -146 9z" }),
819
+ /* @__PURE__ */ c("path", { d: "M3740 1171 c0 -6 11 -23 25 -38 l26 -28 -22 38 c-21 37 -29 45 -29 28z" }),
820
+ /* @__PURE__ */ c("path", { d: "M5670 1171 c0 -5 5 -13 10 -16 6 -3 10 -2 10 4 0 5 -4 13 -10 16 -5 3 -10 2 -10 -4z" }),
821
+ /* @__PURE__ */ c("path", { d: "M6865 1155 c-25 -12 -26 -14 -5 -9 14 4 29 10 35 15 12 12 5 11 -30 -6z" }),
822
+ /* @__PURE__ */ c("path", { d: "M3367 1149 c7 -7 15 -10 18 -7 3 3 -2 9 -12 12 -14 6 -15 5 -6 -5z" }),
823
+ /* @__PURE__ */ c("path", { d: "M4445 1129 c-26 -49 -81 -104 -125 -124 -22 -10 -38 -20 -36 -22 9 -10 85 39 119 76 34 38 73 101 63 101 -3 0 -13 -14 -21 -31z" }),
824
+ /* @__PURE__ */ c("path", { d: "M6433 1128 c-23 -30 -24 -41 -2 -21 12 12 20 25 17 28 -3 3 -10 0 -15 -7z" }),
825
+ /* @__PURE__ */ c("path", { d: "M5740 1085 c13 -14 26 -25 28 -25 3 0 -5 11 -18 25 -13 14 -26 25 -28 25 -3 0 5 -11 18 -25z" }),
826
+ /* @__PURE__ */ c("path", { d: "M3793 1085 c0 -8 4 -12 9 -9 5 3 6 10 3 15 -9 13 -12 11 -12 -6z" }),
827
+ /* @__PURE__ */ c("path", { d: "M6342 1044 c-25 -19 -37 -34 -28 -34 9 0 16 4 16 9 0 9 55 32 62 26 2 -2 4 5 5 15 2 26 -4 25 -55 -16z" }),
828
+ /* @__PURE__ */ c("path", { d: "M5800 1030 c35 -24 54 -31 30 -11 -14 11 -29 21 -35 21 -5 0 -3 -5 5 -10z" }),
829
+ /* @__PURE__ */ c("path", { d: "M6255 995 c-16 -8 -23 -14 -14 -15 8 0 24 7 35 15 23 18 18 18 -21 0z" }),
830
+ /* @__PURE__ */ c("path", { d: "M5874 985 c11 -8 26 -15 33 -15 22 0 14 8 -19 19 -30 10 -31 9 -14 -4z" }),
831
+ /* @__PURE__ */ c("path", { d: "M4020 970 c8 -5 28 -10 44 -10 39 0 30 6 -19 13 -27 4 -35 3 -25 -3z" }),
832
+ /* @__PURE__ */ c("path", { d: "M6180 970 c-21 -7 -21 -8 -5 -9 11 0 27 4 35 9 18 11 5 11 -30 0z" }),
833
+ /* @__PURE__ */ c("path", { d: "M4218 963 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
834
+ /* @__PURE__ */ c("path", { d: "M5938 963 c7 -3 16 -2 19 1 4 3 -2 6 -13 5 -11 0 -14 -3 -6 -6z" }),
835
+ /* @__PURE__ */ c("path", { d: "M4133 953 c15 -2 37 -2 50 0 12 2 0 4 -28 4 -27 0 -38 -2 -22 -4z" }),
836
+ /* @__PURE__ */ c("path", { d: "M6003 953 c9 -2 23 -2 30 0 6 3 -1 5 -18 5 -16 0 -22 -2 -12 -5z" }),
837
+ /* @__PURE__ */ c("path", { d: "M6098 953 c12 -2 30 -2 40 0 9 3 -1 5 -23 4 -22 0 -30 -2 -17 -4z" }),
838
+ /* @__PURE__ */ c("path", { d: "M5392 930 c0 -14 2 -19 5 -12 2 6 2 18 0 25 -3 6 -5 1 -5 -13z" }),
839
+ /* @__PURE__ */ c("path", { d: "M5203 883 c31 -2 83 -2 115 0 31 2 5 3 -58 3 -63 0 -89 -1 -57 -3z" })
840
+ ]
841
+ }
842
+ )
843
+ }
844
+ );
845
+ }
846
+ export {
847
+ d as Tucu
848
+ };