@lancom/shared 0.0.62 → 0.0.66

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 (549) hide show
  1. package/assets/js/api/admin.js +332 -0
  2. package/assets/js/api/helpers.js +31 -0
  3. package/assets/js/api/index.js +162 -0
  4. package/assets/js/constants/colors.js +4 -0
  5. package/assets/js/constants/currencies.js +112 -0
  6. package/assets/js/constants/fonts.js +137 -0
  7. package/assets/js/constants/order.js +26 -0
  8. package/assets/js/constants/print-type.js +16 -0
  9. package/assets/js/constants/prints.js +17 -0
  10. package/assets/js/constants/product.js +11 -0
  11. package/assets/js/constants/sides.js +6 -0
  12. package/assets/js/constants/sizes.js +1 -0
  13. package/assets/js/constants/states.js +10 -0
  14. package/assets/js/models/print-area.js +72 -0
  15. package/assets/js/models/product-layers.js +108 -0
  16. package/assets/js/utils/breakpoints.js +67 -0
  17. package/assets/js/utils/cart.js +31 -0
  18. package/assets/js/utils/colors.js +71 -0
  19. package/assets/js/utils/copy-to-clipboard.js +10 -0
  20. package/assets/js/utils/custom-validation-rules.js +13 -0
  21. package/assets/js/utils/dom.js +12 -0
  22. package/assets/js/utils/event-bus.js +3 -0
  23. package/assets/js/utils/event-dispatcher.js +22 -0
  24. package/assets/js/utils/export-print-to-svg.js +97 -0
  25. package/assets/js/utils/fabric/files-loader.js +36 -0
  26. package/assets/js/utils/fabric/object-factory.js +50 -0
  27. package/assets/js/utils/fabric/selection-style.js +59 -0
  28. package/assets/js/utils/fabric/wireframe.js +143 -0
  29. package/assets/js/utils/fabric-helper.js +381 -0
  30. package/assets/js/utils/filters.js +87 -0
  31. package/assets/js/utils/fonts-helper.js +85 -0
  32. package/assets/js/utils/gtm.js +20 -0
  33. package/assets/js/utils/guid.js +3 -0
  34. package/assets/js/utils/news.js +10 -0
  35. package/assets/js/utils/order.js +73 -0
  36. package/assets/js/utils/pricing.js +5 -0
  37. package/assets/js/utils/prints.js +53 -0
  38. package/assets/js/utils/product.js +141 -0
  39. package/assets/js/utils/products-grouping/by-colors.js +23 -0
  40. package/assets/js/utils/products-grouping/by-design.js +49 -0
  41. package/assets/js/utils/products-grouping/by-prints.js +43 -0
  42. package/assets/js/utils/products-grouping/by-sku.js +18 -0
  43. package/assets/js/utils/products-grouping/index.js +7 -0
  44. package/assets/js/utils/products-grouping/prints-by-print-area.js +26 -0
  45. package/assets/js/utils/products-grouping/prints-by-size.js +20 -0
  46. package/assets/js/utils/products-grouping/sizes-by-price.js +21 -0
  47. package/assets/js/utils/quote.js +27 -0
  48. package/assets/js/utils/sizes.js +14 -0
  49. package/assets/scss/_common.scss +138 -0
  50. package/assets/scss/_reset.scss +50 -0
  51. package/assets/scss/_transitions.scss +472 -0
  52. package/assets/scss/main.scss +4 -0
  53. package/assets/scss/normalize/_index.scss +565 -0
  54. package/assets/scss/ui_kit/_buttons.scss +322 -0
  55. package/assets/scss/ui_kit/_forms.scss +625 -0
  56. package/assets/scss/ui_kit/_grid.scss +799 -0
  57. package/assets/scss/ui_kit/_index.scss +9 -0
  58. package/assets/scss/ui_kit/_modals.scss +64 -0
  59. package/assets/scss/ui_kit/_table.scss +90 -0
  60. package/assets/scss/ui_kit/_toast.scss +52 -0
  61. package/assets/scss/ui_kit/_tooltip.scss +131 -0
  62. package/assets/scss/ui_kit/_typography.scss +358 -0
  63. package/assets/scss/variables/_breakpoints.scss +12 -0
  64. package/assets/scss/variables/_index.scss +2 -0
  65. package/assets/scss/variables/_theme.scss +73 -0
  66. package/components/asides/contact_us/contact-us.scss +68 -0
  67. package/components/asides/contact_us/contact-us.vue +209 -0
  68. package/components/asides/menu/menu.scss +23 -0
  69. package/components/asides/menu/menu.vue +47 -0
  70. package/components/asides/offer_screen_printing/offer-screen-printing.scss +68 -0
  71. package/components/asides/offer_screen_printing/offer-screen-printing.vue +201 -0
  72. package/components/checkout/cart/cart.mixin.js +70 -0
  73. package/components/checkout/cart/cart.scss +115 -0
  74. package/components/checkout/cart/cart.vue +77 -0
  75. package/components/checkout/cart/cart_entities_group/cart-entities-group.mixin.js +114 -0
  76. package/components/checkout/cart/cart_entities_group/cart-entities-group.scss +74 -0
  77. package/components/checkout/cart/cart_entities_group/cart-entities-group.vue +82 -0
  78. package/components/checkout/cart/cart_entities_group/cart_entities_group_prints/cart-entities-group-prints.scss +29 -0
  79. package/components/checkout/cart/cart_entities_group/cart_entities_group_prints/cart-entities-group-prints.vue +75 -0
  80. package/components/checkout/cart/cart_entities_group/cart_entities_group_prints/cart_entities_group_print/cart-entities-group-print.scss +0 -0
  81. package/components/checkout/cart/cart_entities_group/cart_entities_group_prints/cart_entities_group_print/cart-entities-group-print.vue +88 -0
  82. package/components/checkout/cart/cart_entities_group/cart_entities_group_size_cell/cart-entities-group-size-cell.scss +23 -0
  83. package/components/checkout/cart/cart_entities_group/cart_entities_group_size_cell/cart-entities-group-size-cell.vue +91 -0
  84. package/components/checkout/cart/cart_entities_group_table/cart-entities-group-table.scss +7 -0
  85. package/components/checkout/cart/cart_entities_group_table/cart-entities-group-table.vue +57 -0
  86. package/components/checkout/cart/cart_entities_group_table/cart_entities_group_tr/cart-entities-group-tr.scss +10 -0
  87. package/components/checkout/cart/cart_entities_group_table/cart_entities_group_tr/cart-entities-group-tr.vue +100 -0
  88. package/components/checkout/cart/cart_entity/cart-entity.mixin.js +56 -0
  89. package/components/checkout/cart/cart_entity/cart-entity.scss +52 -0
  90. package/components/checkout/cart/cart_entity/cart-entity.vue +69 -0
  91. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart-entity-color-simple-products.mixin.js +83 -0
  92. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart-entity-color-simple-products.scss +96 -0
  93. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart-entity-color-simple-products.vue +89 -0
  94. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart_entity_color_simple_product/cart-entity-color-simple-product.scss +74 -0
  95. package/components/checkout/cart/cart_entity/cart_entity_color_simple_products/cart_entity_color_simple_product/cart-entity-color-simple-product.vue +129 -0
  96. package/components/checkout/cart/cart_entity/cart_entity_prints/cart-entity-prints.scss +65 -0
  97. package/components/checkout/cart/cart_entity/cart_entity_prints/cart-entity-prints.vue +72 -0
  98. package/components/checkout/cart/cart_entity/cart_entity_prints/cart_entity_print/cart-entity-print.scss +31 -0
  99. package/components/checkout/cart/cart_entity/cart_entity_prints/cart_entity_print/cart-entity-print.vue +102 -0
  100. package/components/checkout/cart/cart_price_info/cart-price-info.scss +0 -0
  101. package/components/checkout/cart/cart_price_info/cart-price-info.vue +66 -0
  102. package/components/checkout/cart/cart_quantity_errors/cart-quantity-errors.scss +8 -0
  103. package/components/checkout/cart/cart_quantity_errors/cart-quantity-errors.vue +32 -0
  104. package/components/checkout/order/address-form/address-form.scss +17 -0
  105. package/components/checkout/order/address-form/address-form.vue +301 -0
  106. package/components/checkout/order/order-billing-information/order-billing-information.scss +5 -0
  107. package/components/checkout/order/order-billing-information/order-billing-information.vue +68 -0
  108. package/components/checkout/order/order-checkout-method/order-checkout-method.scss +9 -0
  109. package/components/checkout/order/order-checkout-method/order-checkout-method.vue +102 -0
  110. package/components/checkout/order/order-payment-information/order-payment-information.scss +44 -0
  111. package/components/checkout/order/order-payment-information/order-payment-information.vue +166 -0
  112. package/components/checkout/order/order-review/order-review.scss +13 -0
  113. package/components/checkout/order/order-review/order-review.vue +127 -0
  114. package/components/checkout/order/order-shipping-information/order-shipping-information.scss +11 -0
  115. package/components/checkout/order/order-shipping-information/order-shipping-information.vue +50 -0
  116. package/components/checkout/order/order-shipping-method/order-shipping-method.scss +0 -0
  117. package/components/checkout/order/order-shipping-method/order-shipping-method.vue +67 -0
  118. package/components/checkout/order/order-success/order-success.scss +42 -0
  119. package/components/checkout/order/order-success/order-success.vue +41 -0
  120. package/components/checkout/order/order.scss +44 -0
  121. package/components/checkout/order/order.vue +145 -0
  122. package/components/checkout/payment/payment-cart/payment-cart.scss +53 -0
  123. package/components/checkout/payment/payment-cart/payment-cart.vue +196 -0
  124. package/components/checkout/payment/payment_failed/payment-failed.scss +19 -0
  125. package/components/checkout/payment/payment_failed/payment-failed.vue +41 -0
  126. package/components/checkout/payment/payment_success/payment-success.scss +19 -0
  127. package/components/checkout/payment/payment_success/payment-success.vue +40 -0
  128. package/components/common/breadcrumbs/breadcrumbs.scss +20 -0
  129. package/components/common/breadcrumbs/breadcrumbs.vue +65 -0
  130. package/components/common/breakpoint.vue +51 -0
  131. package/components/common/btn.vue +159 -0
  132. package/components/common/checkbox.vue +156 -0
  133. package/components/common/checked-icon.vue +48 -0
  134. package/components/common/color-picker.vue +108 -0
  135. package/components/common/file_uploader.vue +186 -0
  136. package/components/common/image_viewer/image-viewer.scss +139 -0
  137. package/components/common/image_viewer/image-viewer.vue +152 -0
  138. package/components/common/info-popover.vue +61 -0
  139. package/components/common/logo/logo.scss +16 -0
  140. package/components/common/logo/logo.vue +30 -0
  141. package/components/common/postcode_select/postcode-select.scss +8 -0
  142. package/components/common/postcode_select/postcode-select.vue +141 -0
  143. package/components/common/pricing_discounts_table/pricing-discounts-table.scss +5 -0
  144. package/components/common/pricing_discounts_table/pricing-discounts-table.vue +53 -0
  145. package/components/common/pricing_table/pricing-table.scss +8 -0
  146. package/components/common/pricing_table/pricing-table.vue +133 -0
  147. package/components/common/product_side_with_print/product-side-with-print.scss +19 -0
  148. package/components/common/product_side_with_print/product-side-with-print.vue +128 -0
  149. package/components/common/products_list_dropdown/products-list-dropdown.scss +0 -0
  150. package/components/common/products_list_dropdown/products-list-dropdown.vue +69 -0
  151. package/components/common/products_list_dropdown/products_list_dropdown_option/products-list-dropdown-option.scss +30 -0
  152. package/components/common/products_list_dropdown/products_list_dropdown_option/products-list-dropdown-option.vue +35 -0
  153. package/components/common/products_total_pricing/products-total-pricing.scss +12 -0
  154. package/components/common/products_total_pricing/products-total-pricing.vue +53 -0
  155. package/components/common/progress_steps/progress-steps.scss +169 -0
  156. package/components/common/progress_steps/progress-steps.vue +166 -0
  157. package/components/common/progress_steps/progress_steps_controls/progress-steps-controls.scss +0 -0
  158. package/components/common/progress_steps/progress_steps_controls/progress-steps-controls.vue +67 -0
  159. package/components/common/range/range.scss +51 -0
  160. package/components/common/range/range.vue +116 -0
  161. package/components/common/rich-text.vue +30 -0
  162. package/components/common/shops-multiselect.vue +46 -0
  163. package/components/common/single-item-price.vue +30 -0
  164. package/components/common/spinner.vue +73 -0
  165. package/components/common/stars-mark.vue +98 -0
  166. package/components/common/tabs.vue +174 -0
  167. package/components/common/toggle-content.vue +59 -0
  168. package/components/customer/customer.scss +9 -0
  169. package/components/customer/customer.vue +84 -0
  170. package/components/customer/customer_form/customer-form.scss +12 -0
  171. package/components/customer/customer_form/customer-form.vue +276 -0
  172. package/components/customer/customer_password/customer-password.scss +0 -0
  173. package/components/customer/customer_password/customer-password.vue +99 -0
  174. package/components/customer/recovery_form/recovery-form.scss +0 -0
  175. package/components/customer/recovery_form/recovery-form.vue +96 -0
  176. package/components/customer/signin_form/signin-form.scss +22 -0
  177. package/components/customer/signin_form/signin-form.vue +147 -0
  178. package/components/design/approve_design_header/approve-design-header.scss +71 -0
  179. package/components/design/approve_design_header/approve-design-header.vue +69 -0
  180. package/components/design/approve_design_prints/approve-design-prints.scss +76 -0
  181. package/components/design/approve_design_prints/approve-design-prints.vue +98 -0
  182. package/components/design/approve_design_tables/approve-design-tables.scss +47 -0
  183. package/components/design/approve_design_tables/approve-design-tables.vue +136 -0
  184. package/components/design/approve_design_tees/approve-design-tees.scss +87 -0
  185. package/components/design/approve_design_tees/approve-design-tees.vue +59 -0
  186. package/components/editor/editor.scss +42 -0
  187. package/components/editor/editor.vue +214 -0
  188. package/components/editor/editor_layers/editor-layers.scss +22 -0
  189. package/components/editor/editor_layers/editor-layers.vue +154 -0
  190. package/components/editor/editor_layers/editor_layer_forms/editor_layer_common_fields/editor-layer-common-fields.scss +37 -0
  191. package/components/editor/editor_layers/editor_layer_forms/editor_layer_common_fields/editor-layer-common-fields.vue +110 -0
  192. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_art/editor-layer-form-art.scss +7 -0
  193. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_art/editor-layer-form-art.vue +55 -0
  194. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_text/editor-layer-form-text.scss +49 -0
  195. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_text/editor-layer-form-text.vue +236 -0
  196. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_text/font-family_select/font-family-select.scss +147 -0
  197. package/components/editor/editor_layers/editor_layer_forms/editor_layer_form_text/font-family_select/font-family-select.vue +141 -0
  198. package/components/editor/editor_layers/editor_layer_forms/index.js +7 -0
  199. package/components/editor/editor_layers/editor_layers_layer/editor-layers-layer.scss +140 -0
  200. package/components/editor/editor_layers/editor_layers_layer/editor-layers-layer.vue +127 -0
  201. package/components/editor/editor_layers/editor_layers_toolbar/editor-layers-toolbar.scss +75 -0
  202. package/components/editor/editor_layers/editor_layers_toolbar/editor-layers-toolbar.vue +112 -0
  203. package/components/editor/editor_pricing/editor-pricing.scss +56 -0
  204. package/components/editor/editor_pricing/editor-pricing.vue +311 -0
  205. package/components/editor/editor_print_area_options/editor-print-area-options.scss +28 -0
  206. package/components/editor/editor_print_area_options/editor-print-area-options.vue +91 -0
  207. package/components/editor/editor_print_area_options/editor_print_area_option/editor-print-area-option.scss +28 -0
  208. package/components/editor/editor_print_area_options/editor_print_area_option/editor-print-area-option.vue +103 -0
  209. package/components/editor/editor_product_details/editor-product-details.scss +50 -0
  210. package/components/editor/editor_product_details/editor-product-details.vue +124 -0
  211. package/components/editor/editor_workspace/editor-workspace.scss +114 -0
  212. package/components/editor/editor_workspace/editor-workspace.vue +182 -0
  213. package/components/editor/editor_workspace/editor_workspace_side/editor-workspace-side.scss +110 -0
  214. package/components/editor/editor_workspace/editor_workspace_side/editor-workspace-side.vue +344 -0
  215. package/components/editor/mobile_editor_product_details/mobile-editor-product-details.scss +103 -0
  216. package/components/editor/mobile_editor_product_details/mobile-editor-product-details.vue +147 -0
  217. package/components/errors/404.vue +54 -0
  218. package/components/errors/500.vue +54 -0
  219. package/components/modals/cart_modal/cart-modal.scss +26 -0
  220. package/components/modals/cart_modal/cart-modal.vue +62 -0
  221. package/components/modals/confirmation_modal/confirmation-modal.scss +7 -0
  222. package/components/modals/confirmation_modal/confirmation-modal.vue +57 -0
  223. package/components/modals/editor_layers_templates/editor-layers-templates.scss +36 -0
  224. package/components/modals/editor_layers_templates/editor-layers-templates.vue +90 -0
  225. package/components/modals/failed_conversion_modal/failed-conversion-modal.scss +18 -0
  226. package/components/modals/failed_conversion_modal/failed-conversion-modal.vue +182 -0
  227. package/components/modals/order_modal/order-modal.scss +7 -0
  228. package/components/modals/order_modal/order-modal.vue +359 -0
  229. package/components/modals/payment_modal/payment-modal.scss +57 -0
  230. package/components/modals/payment_modal/payment-modal.vue +313 -0
  231. package/components/news/news.scss +77 -0
  232. package/components/news/news.vue +52 -0
  233. package/components/news/news_list/news-list.scss +24 -0
  234. package/components/news/news_list/news-list.vue +38 -0
  235. package/components/news/news_list_item/news-list-item.scss +84 -0
  236. package/components/news/news_list_item/news-list-item.vue +70 -0
  237. package/components/order/order_approval/order-approval.scss +15 -0
  238. package/components/order/order_approval/order-approval.vue +84 -0
  239. package/components/order/order_approval/order_approval_message/order-approval-message.scss +1 -0
  240. package/components/order/order_approval/order_approval_message/order-approval-message.vue +82 -0
  241. package/components/order/order_entity/order-entity.scss +25 -0
  242. package/components/order/order_entity/order-entity.vue +76 -0
  243. package/components/order/order_entity/order_entity_side_layers/order-entity-side-layers.scss +14 -0
  244. package/components/order/order_entity/order_entity_side_layers/order-entity-side-layers.vue +84 -0
  245. package/components/order/order_main_info/order-main-info.scss +11 -0
  246. package/components/order/order_main_info/order-main-info.vue +115 -0
  247. package/components/order/order_price/order-price.scss +8 -0
  248. package/components/order/order_price/order-price.vue +67 -0
  249. package/components/order/order_prints_groups/order-prints-groups.scss +14 -0
  250. package/components/order/order_prints_groups/order-prints-groups.vue +127 -0
  251. package/components/order/order_products_groups/order-products-groups.scss +11 -0
  252. package/components/order/order_products_groups/order-products-groups.vue +129 -0
  253. package/components/order/order_products_groups/order_products_group/order-products-group.scss +28 -0
  254. package/components/order/order_products_groups/order_products_group/order-products-group.vue +129 -0
  255. package/components/order/order_setup_groups/order-setup-groups.scss +7 -0
  256. package/components/order/order_setup_groups/order-setup-groups.vue +99 -0
  257. package/components/order/order_sku_groups/order-sku-groups.scss +7 -0
  258. package/components/order/order_sku_groups/order-sku-groups.vue +125 -0
  259. package/components/order/order_status/order-status.scss +12 -0
  260. package/components/order/order_status/order-status.vue +77 -0
  261. package/components/order/order_timeline/order-timeline.scss +15 -0
  262. package/components/order/order_timeline/order-timeline.vue +76 -0
  263. package/components/order/order_tracking_numbers/order-tracking-numbers.scss +34 -0
  264. package/components/order/order_tracking_numbers/order-tracking-numbers.vue +161 -0
  265. package/components/order/order_view/order-view.mixin.js +51 -0
  266. package/components/order/order_view/order-view.scss +52 -0
  267. package/components/order/order_view/order-view.vue +145 -0
  268. package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.mixin.js +37 -0
  269. package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.scss +95 -0
  270. package/components/order/order_view/order_product_color_simple_products/order-product-color-simple-products.vue +88 -0
  271. package/components/order/order_view/order_product_color_simple_products/order_product_color_simple_product/order-product-color-simple-product.scss +32 -0
  272. package/components/order/order_view/order_product_color_simple_products/order_product_color_simple_product/order-product-color-simple-product.vue +27 -0
  273. package/components/order/order_view/order_product_prints/order-product-prints.scss +67 -0
  274. package/components/order/order_view/order_product_prints/order-product-prints.vue +60 -0
  275. package/components/order/order_view/order_product_prints/order_product_print/order-product-print.scss +31 -0
  276. package/components/order/order_view/order_product_prints/order_product_print/order-product-print.vue +78 -0
  277. package/components/order/order_view/order_view_product/order-view-product.scss +29 -0
  278. package/components/order/order_view/order_view_product/order-view-product.vue +110 -0
  279. package/components/pages/customer/confirm_email/confirm-email.vue +52 -0
  280. package/components/pages/customer/create/create.vue +41 -0
  281. package/components/pages/customer/recovery/recovery.vue +51 -0
  282. package/components/pages/customer/settings/settings.vue +39 -0
  283. package/components/pages/customer/sign_in/sign-in.vue +31 -0
  284. package/components/pricing/pricing_digital_printing/pricing-digital-printing.scss +248 -0
  285. package/components/pricing/pricing_digital_printing/pricing-digital-printing.vue +293 -0
  286. package/components/pricing/pricing_example/pricing-example.scss +79 -0
  287. package/components/pricing/pricing_example/pricing-example.vue +104 -0
  288. package/components/pricing/pricing_garment/pricing-garment.scss +73 -0
  289. package/components/pricing/pricing_garment/pricing-garment.vue +92 -0
  290. package/components/pricing/pricing_how_we_calculate/pricing-how-we-calculate.scss +44 -0
  291. package/components/pricing/pricing_how_we_calculate/pricing-how-we-calculate.vue +96 -0
  292. package/components/pricing/pricing_main_section/pricing-main-section.scss +54 -0
  293. package/components/pricing/pricing_main_section/pricing-main-section.vue +61 -0
  294. package/components/pricing/pricing_print/discounts_table/discounts-table.scss +8 -0
  295. package/components/pricing/pricing_print/discounts_table/discounts-table.vue +91 -0
  296. package/components/pricing/pricing_print/pricing-print.scss +28 -0
  297. package/components/pricing/pricing_print/pricing-print.vue +58 -0
  298. package/components/pricing/pricing_screen_print/discounts_table/discounts-table.scss +14 -0
  299. package/components/pricing/pricing_screen_print/discounts_table/discounts-table.vue +78 -0
  300. package/components/pricing/pricing_screen_print/pricing-screen-print.scss +8 -0
  301. package/components/pricing/pricing_screen_print/pricing-screen-print.vue +38 -0
  302. package/components/pricing/pricing_screen_printing/pricing-screen-printing.scss +253 -0
  303. package/components/pricing/pricing_screen_printing/pricing-screen-printing.vue +339 -0
  304. package/components/product/layouts/product_colors_selector/product-colors-selector.scss +15 -0
  305. package/components/product/layouts/product_colors_selector/product-colors-selector.vue +55 -0
  306. package/components/product/layouts/product_colors_selector/product_colors_selector_options/product-colors-selector-options.scss +67 -0
  307. package/components/product/layouts/product_colors_selector/product_colors_selector_options/product-colors-selector-options.vue +76 -0
  308. package/components/product/layouts/product_fabric_and_size_info/product-fabric-and-size-info.scss +24 -0
  309. package/components/product/layouts/product_fabric_and_size_info/product-fabric-and-size-info.vue +58 -0
  310. package/components/product/layouts/product_gallery/product-gallery.scss +39 -0
  311. package/components/product/layouts/product_gallery/product-gallery.vue +79 -0
  312. package/components/product/layouts/product_labels_customization/product-labels-customization.scss +61 -0
  313. package/components/product/layouts/product_labels_customization/product-labels-customization.vue +147 -0
  314. package/components/product/layouts/product_main_info/product-main-info.scss +22 -0
  315. package/components/product/layouts/product_main_info/product-main-info.vue +79 -0
  316. package/components/product/layouts/product_model_measurements/product-model-measurements.scss +18 -0
  317. package/components/product/layouts/product_model_measurements/product-model-measurements.vue +66 -0
  318. package/components/product/layouts/product_packaging/product-packaging.scss +32 -0
  319. package/components/product/layouts/product_packaging/product-packaging.vue +99 -0
  320. package/components/product/layouts/product_size_table/product-size-table.scss +23 -0
  321. package/components/product/layouts/product_size_table/product-size-table.vue +73 -0
  322. package/components/product/layouts/product_tier_prices/product-tier-prices.scss +23 -0
  323. package/components/product/layouts/product_tier_prices/product-tier-prices.vue +74 -0
  324. package/components/product/product.scss +24 -0
  325. package/components/product/product.vue +80 -0
  326. package/components/product/product_color_image/product-color-image.scss +8 -0
  327. package/components/product/product_color_image/product-color-image.vue +34 -0
  328. package/components/product/product_color_thumbnails/product-color-thumbnails.scss +61 -0
  329. package/components/product/product_color_thumbnails/product-color-thumbnails.vue +67 -0
  330. package/components/product/product_info_tabs/product-info-tabs.scss +24 -0
  331. package/components/product/product_info_tabs/product-info-tabs.vue +63 -0
  332. package/components/product/product_price_range/product-price-range.scss +0 -0
  333. package/components/product/product_price_range/product-price-range.vue +79 -0
  334. package/components/product/product_prints_price_info/product-prints-price-info.scss +25 -0
  335. package/components/product/product_prints_price_info/product-prints-price-info.vue +36 -0
  336. package/components/product/product_prints_price_info/product_print_price_info/product-print-price-info.scss +46 -0
  337. package/components/product/product_prints_price_info/product_print_price_info/product-print-price-info.vue +130 -0
  338. package/components/product/product_reviews/add_review/add-review.scss +42 -0
  339. package/components/product/product_reviews/add_review/add-review.vue +185 -0
  340. package/components/product/product_reviews/add_review_modal/add-review-modal.scss +5 -0
  341. package/components/product/product_reviews/add_review_modal/add-review-modal.vue +35 -0
  342. package/components/product/product_reviews/product-reviews.scss +68 -0
  343. package/components/product/product_reviews/product-reviews.vue +76 -0
  344. package/components/product/product_reviews/product_review/product-review.scss +47 -0
  345. package/components/product/product_reviews/product_review/product-review.vue +56 -0
  346. package/components/product/product_size_selector/product-size-selector.scss +13 -0
  347. package/components/product/product_size_selector/product-size-selector.vue +75 -0
  348. package/components/product/product_size_selector/product_size_selector_color/product-size-selector-color.scss +50 -0
  349. package/components/product/product_size_selector/product_size_selector_color/product-size-selector-color.vue +66 -0
  350. package/components/product/product_size_selector/product_size_selector_color/product_size_selector_color_cell/product-size-selector-color-cell.scss +60 -0
  351. package/components/product/product_size_selector/product_size_selector_color/product_size_selector_color_cell/product-size-selector-color-cell.vue +125 -0
  352. package/components/product/product_sizes_info/product-sizes-info.scss +55 -0
  353. package/components/product/product_sizes_info/product-sizes-info.vue +100 -0
  354. package/components/product/simple_products_price_info/simple-products-price-info.scss +19 -0
  355. package/components/product/simple_products_price_info/simple-products-price-info.vue +37 -0
  356. package/components/products/product_list/product-list.scss +47 -0
  357. package/components/products/product_list/product-list.vue +78 -0
  358. package/components/products/product_list_product/product-list-product.scss +124 -0
  359. package/components/products/product_list_product/product-list-product.vue +113 -0
  360. package/components/products/products_aside/products-aside.scss +14 -0
  361. package/components/products/products_aside/products-aside.vue +81 -0
  362. package/components/products/products_attributes/products-attributes.scss +27 -0
  363. package/components/products/products_attributes/products-attributes.vue +43 -0
  364. package/components/products/products_attributes/products_attribute/products-attribute.scss +28 -0
  365. package/components/products/products_attributes/products_attribute/products-attribute.vue +56 -0
  366. package/components/products/products_autocomplete/products-autocomplete.scss +54 -0
  367. package/components/products/products_autocomplete/products-autocomplete.vue +87 -0
  368. package/components/products/products_autocomplete/products_autocomplete-item/products-autocomplete-item.scss +0 -0
  369. package/components/products/products_autocomplete/products_autocomplete-item/products-autocomplete-item.vue +22 -0
  370. package/components/products/products_brands/products-brands.scss +28 -0
  371. package/components/products/products_brands/products-brands.vue +58 -0
  372. package/components/products/products_catalog/products-catalog.scss +43 -0
  373. package/components/products/products_catalog/products-catalog.vue +58 -0
  374. package/components/products/products_colors/products-colors.scss +59 -0
  375. package/components/products/products_colors/products-colors.vue +73 -0
  376. package/components/products/products_filters/products-filters.scss +50 -0
  377. package/components/products/products_filters/products-filters.vue +91 -0
  378. package/components/products/products_link/products-link.scss +0 -0
  379. package/components/products/products_link/products-link.vue +56 -0
  380. package/components/products/products_tags/products-tags.scss +34 -0
  381. package/components/products/products_tags/products-tags.vue +53 -0
  382. package/components/products/products_types/products-types.scss +37 -0
  383. package/components/products/products_types/products-types.vue +65 -0
  384. package/components/quotes/quote_request/quote-request.scss +146 -0
  385. package/components/quotes/quote_request/quote-request.vue +404 -0
  386. package/components/quotes/quote_request_modal/quote-request-modal.scss +5 -0
  387. package/components/quotes/quote_request_modal/quote-request-modal.vue +27 -0
  388. package/components/quotes/quote_view/quote-view.mixin.js +52 -0
  389. package/components/quotes/quote_view/quote-view.scss +16 -0
  390. package/components/quotes/quote_view/quote-view.vue +79 -0
  391. package/components/quotes/quote_view/quote_option_view/quote-option-view.scss +10 -0
  392. package/components/quotes/quote_view/quote_option_view/quote-option-view.vue +56 -0
  393. package/components/quotes/quote_view/quote_product_color_simple_products/quote-product-color-simple-products.mixin.js +37 -0
  394. package/components/quotes/quote_view/quote_product_color_simple_products/quote-product-color-simple-products.scss +95 -0
  395. package/components/quotes/quote_view/quote_product_color_simple_products/quote-product-color-simple-products.vue +88 -0
  396. package/components/quotes/quote_view/quote_product_color_simple_products/quote_product_color_simple_product/quote-product-color-simple-product.scss +32 -0
  397. package/components/quotes/quote_view/quote_product_color_simple_products/quote_product_color_simple_product/quote-product-color-simple-product.vue +27 -0
  398. package/components/quotes/quote_view/quote_product_prints/quote-product-prints.scss +67 -0
  399. package/components/quotes/quote_view/quote_product_prints/quote-product-prints.vue +60 -0
  400. package/components/quotes/quote_view/quote_product_prints/quote_product_print/quote-product-print.scss +31 -0
  401. package/components/quotes/quote_view/quote_product_prints/quote_product_print/quote-product-print.vue +78 -0
  402. package/components/quotes/quote_view/quote_view_product/quote-view-product.scss +29 -0
  403. package/components/quotes/quote_view/quote_view_product/quote-view-product.vue +122 -0
  404. package/components/static_page/static-page.scss +11 -0
  405. package/components/static_page/static-page.vue +26 -0
  406. package/components/subscribe/subscribe.scss +23 -0
  407. package/components/subscribe/subscribe.vue +124 -0
  408. package/components/the_aside/the-aside.scss +79 -0
  409. package/components/the_aside/the-aside.vue +95 -0
  410. package/components/the_breadcrumbs/the-breadcrumbs.scss +36 -0
  411. package/components/the_breadcrumbs/the-breadcrumbs.vue +78 -0
  412. package/components/the_changes_saved_indicator/the-changes-saved-indicator.scss +60 -0
  413. package/components/the_changes_saved_indicator/the-changes-saved-indicator.vue +55 -0
  414. package/components/the_footer/the-footer.scss +96 -0
  415. package/components/the_footer/the-footer.vue +86 -0
  416. package/components/the_navbar/the-navbar.scss +43 -0
  417. package/components/the_navbar/the-navbar.vue +45 -0
  418. package/middleware/notAuthenticated.js +5 -0
  419. package/middleware/page-info.js +11 -0
  420. package/middleware/setVH.js +11 -0
  421. package/mixins/confirm.js +39 -0
  422. package/mixins/meta-info.js +93 -0
  423. package/mixins/modals.js +117 -0
  424. package/mixins/payment.js +84 -0
  425. package/mixins/product-preview.js +69 -0
  426. package/mixins/products-price.js +82 -0
  427. package/nuxt.config.js +119 -0
  428. package/package.json +14 -8
  429. package/pages/quotes/view/_id.js +20 -0
  430. package/plugins/aos-animation.js +39 -0
  431. package/plugins/aos.js +12 -0
  432. package/plugins/directives.js +10 -0
  433. package/plugins/error-handler.js +6 -0
  434. package/plugins/global-components.js +14 -0
  435. package/plugins/jsonld.js +4 -0
  436. package/plugins/save-state.js +38 -0
  437. package/plugins/vee-validate.js +20 -0
  438. package/plugins/vue-click-outside.js +4 -0
  439. package/plugins/vue-color.js +4 -0
  440. package/plugins/vue-fragment.js +4 -0
  441. package/plugins/vue-hummer.js +7 -0
  442. package/plugins/vue-js-modal.js +15 -0
  443. package/plugins/vue-multiselect.js +4 -0
  444. package/plugins/vue-recaptcha.js +18 -0
  445. package/plugins/vue-tables-2.js +6 -0
  446. package/plugins/vue-toastr.js +7 -0
  447. package/plugins/vue-tooltip.js +4 -0
  448. package/static/fonts/archivo_black.woff2 +0 -0
  449. package/static/fonts/open_sans_bold.woff2 +0 -0
  450. package/static/fonts/orbitron_medium.woff +0 -0
  451. package/static/icons/arrow-left.svg +3 -0
  452. package/static/icons/arrow-right.svg +3 -0
  453. package/static/icons/back_hoodie.svg +3 -0
  454. package/static/icons/back_hoodie_a3.svg +4 -0
  455. package/static/icons/back_hoodie_a4_v.svg +4 -0
  456. package/static/icons/back_hoodie_half_a4_h.svg +4 -0
  457. package/static/icons/back_hoodie_rect10_l.svg +4 -0
  458. package/static/icons/back_polo.svg +3 -0
  459. package/static/icons/back_polo_a3.svg +4 -0
  460. package/static/icons/back_polo_a4_v.svg +4 -0
  461. package/static/icons/back_polo_half_a4_h.svg +4 -0
  462. package/static/icons/back_polo_rect10_l.svg +4 -0
  463. package/static/icons/back_tee.svg +3 -0
  464. package/static/icons/back_tee_a3.svg +4 -0
  465. package/static/icons/back_tee_a4_v.svg +4 -0
  466. package/static/icons/back_tee_half_a4_h.svg +4 -0
  467. package/static/icons/back_tee_rect10_l.svg +4 -0
  468. package/static/icons/calc_delivery_price.svg +13 -0
  469. package/static/icons/calc_print_price.svg +17 -0
  470. package/static/icons/calc_tee_price.svg +5 -0
  471. package/static/icons/calc_total_price.svg +6 -0
  472. package/static/icons/delivery.svg +12 -0
  473. package/static/icons/error.svg +4 -0
  474. package/static/icons/front_hoodie.svg +3 -0
  475. package/static/icons/front_hoodie_a3.svg +4 -0
  476. package/static/icons/front_hoodie_a4_v.svg +4 -0
  477. package/static/icons/front_hoodie_half_a4_h.svg +4 -0
  478. package/static/icons/front_hoodie_rect10_l.svg +4 -0
  479. package/static/icons/front_polo.svg +3 -0
  480. package/static/icons/front_polo_a3.svg +4 -0
  481. package/static/icons/front_polo_a4_v.svg +4 -0
  482. package/static/icons/front_polo_half_a4_h.svg +4 -0
  483. package/static/icons/front_polo_rect10_l.svg +4 -0
  484. package/static/icons/front_tee.svg +3 -0
  485. package/static/icons/front_tee_a3.svg +4 -0
  486. package/static/icons/front_tee_a4_v.svg +4 -0
  487. package/static/icons/front_tee_half_a4_h.svg +4 -0
  488. package/static/icons/front_tee_rect10_l.svg +4 -0
  489. package/static/icons/garments.svg +4 -0
  490. package/static/icons/general.svg +25 -0
  491. package/static/icons/other.svg +8 -0
  492. package/static/icons/printing.svg +9 -0
  493. package/static/icons/product_hoodie.svg +4 -0
  494. package/static/icons/product_polo.svg +4 -0
  495. package/static/icons/product_tee.svg +4 -0
  496. package/static/icons/rotate.png +0 -0
  497. package/static/icons/star_gray.svg +3 -0
  498. package/static/icons/star_green.svg +3 -0
  499. package/static/icons/success.svg +4 -0
  500. package/static/images/american-express.svg +8 -0
  501. package/static/images/catalog_bg.png +0 -0
  502. package/static/images/check.svg +51 -0
  503. package/static/images/fonts-bengali-sprite.png +0 -0
  504. package/static/images/fonts-gujarati-sprite.png +0 -0
  505. package/static/images/fonts-hebrew-sprite.png +0 -0
  506. package/static/images/fonts-hindi-sprite.png +0 -0
  507. package/static/images/fonts-kannada-sprite.png +0 -0
  508. package/static/images/fonts-malyalam-sprite.png +0 -0
  509. package/static/images/fonts-marathi-sprite.png +0 -0
  510. package/static/images/fonts-oriya-sprite.png +0 -0
  511. package/static/images/fonts-sprite.png +0 -0
  512. package/static/images/fonts-tamil-sprite.png +0 -0
  513. package/static/images/fonts-telugu-sprite.png +0 -0
  514. package/static/images/jcb.svg +8 -0
  515. package/static/images/logo.png +0 -0
  516. package/static/images/logo.svg +13 -0
  517. package/static/images/maestro.svg +11 -0
  518. package/static/images/mastercard.svg +23 -0
  519. package/static/images/measurements_model.svg +9 -0
  520. package/static/images/packaging_quantity.svg +8 -0
  521. package/static/images/packaging_size.svg +6 -0
  522. package/static/images/packaging_weight.svg +4 -0
  523. package/static/images/paid.svg +5 -0
  524. package/static/images/paypal.svg +9 -0
  525. package/static/images/price_calc_example.png +0 -0
  526. package/static/images/pricing-header.png +0 -0
  527. package/static/images/pricing_garment_tee.png +0 -0
  528. package/static/images/tear-away-tag.svg +5 -0
  529. package/static/images/tee.svg +4 -0
  530. package/static/images/tee_label_1.svg +4 -0
  531. package/static/images/tee_label_2.svg +8 -0
  532. package/static/images/tee_size.svg +9 -0
  533. package/static/images/tee_with_1_label.svg +11 -0
  534. package/static/images/tee_with_2_labels.svg +13 -0
  535. package/static/images/tee_with_no_labels.svg +5 -0
  536. package/static/images/trasnparent-pattern.png +0 -0
  537. package/static/images/type_here.png +0 -0
  538. package/static/images/visa.svg +13 -0
  539. package/static/images/watermark.png +0 -0
  540. package/store/auth.js +70 -0
  541. package/store/cart.js +154 -0
  542. package/store/index.js +108 -0
  543. package/store/layers.js +28 -0
  544. package/store/order.js +55 -0
  545. package/store/page.js +22 -0
  546. package/store/product.js +373 -0
  547. package/store/products.js +91 -0
  548. package/store/quote.js +72 -0
  549. package/lib/module.js +0 -57
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04228L85.7966 7.18865L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18865L36.3007 2.04228C36.3007 2.04228 41.1763 3.99259 50.0028 3.99259C59.6718 3.99259 63.7048 2.04228 63.7048 2.04228ZM63.7048 7.04116e-05C63.399 0.0002802 63.0971 0.0683054 62.8211 0.199186C62.7235 0.245136 58.8652 1.95038 50.0079 1.95038C41.7877 1.95038 37.1176 0.163447 37.0713 0.143025C36.8252 0.0498852 36.5641 0.00146426 36.3007 7.04116e-05C36.1432 0.000925777 35.9863 0.0197697 35.8332 0.0562312L13.7414 5.2026C13.4597 5.26997 13.1955 5.39577 12.9662 5.57175C12.7368 5.74773 12.5475 5.96991 12.4107 6.22371L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5816 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.161 0.473998 30.3705C0.649115 30.5801 0.864654 30.7528 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4009 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2666 20.3856 41.1325 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6997 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.437 21.0984 94.6617C21.0902 95.2024 21.2982 95.7244 21.6767 96.113C22.0552 96.5016 22.5734 96.7251 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4268 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.2521C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9873 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.743 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9128 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20329C87.4682 5.94949 87.279 5.72731 87.0496 5.55133C86.8203 5.37535 86.5561 5.24955 86.2744 5.18218L64.1723 0.0562312C64.0196 0.0175683 63.8624 -0.0013084 63.7048 7.04116e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="79" height="81" viewBox="0 0 79 81" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path opacity="0.2" d="M26.2436 76.3869C17.8228 81.2679 7.31741 75.2026 7.33404 65.4694L7.42381 12.9102C7.44044 3.17703 17.9665 -2.9242 26.3708 1.928L71.7538 28.1299C80.158 32.9821 80.1372 45.1486 71.7164 50.0295L26.2436 76.3869Z" fill="#7D6AEF"/>
4
+ <path d="M72.3946 20.0649L39.1811 4.03083C38.8866 3.88881 38.5437 3.88881 38.2494 4.03083L5.03582 20.0649C4.66549 20.2437 4.43018 20.6187 4.43018 21.0299V59.9698C4.43018 60.381 4.66549 60.7561 5.03582 60.9348L38.2493 76.9689C38.3964 77.0399 38.5559 77.0755 38.7152 77.0755C38.8745 77.0755 39.0338 77.0399 39.1811 76.9689L72.3946 60.9348C72.7649 60.7561 73.0002 60.381 73.0002 59.9698V21.03C73.0002 20.6186 72.7647 20.2438 72.3946 20.0649ZM38.7152 6.18579L69.4639 21.0299L60.5505 25.3329C60.4941 25.2899 60.4345 25.2502 60.3691 25.2186L29.8292 10.4756L38.7152 6.18579ZM27.4092 11.6871L58.1132 26.5096L51.8247 29.5456L21.1333 14.729L27.4092 11.6871ZM58.8316 28.5425V39.7646L52.9577 42.6003V31.3782L58.8316 28.5425ZM70.8571 59.2975L39.7867 74.2966V37.7365L47.198 34.1587C47.7309 33.9013 47.9544 33.2608 47.6971 32.7278C47.4397 32.195 46.7992 31.9713 46.2662 32.2287L38.7152 35.8741L35.744 34.4397C35.2109 34.1821 34.5704 34.4058 34.3131 34.9387C34.0558 35.4717 34.2793 36.1123 34.8122 36.3696L37.6436 37.7365V74.2966L6.57327 59.2972V22.7371L30.2331 34.1591C30.3832 34.2317 30.542 34.266 30.6981 34.266C31.0965 34.266 31.4791 34.0428 31.6638 33.66C31.9211 33.1271 31.6977 32.4865 31.1648 32.2292L7.96643 21.0299L18.6112 15.891L50.7997 31.4303C50.8044 31.4369 50.8097 31.4428 50.8146 31.4492V44.3077C50.8146 44.6764 51.0041 45.0192 51.3165 45.2153C51.4899 45.3242 51.6878 45.3792 51.8862 45.3792C52.0451 45.3792 52.2044 45.3439 52.352 45.2726L60.3691 41.4023C60.7394 41.2236 60.9747 40.8487 60.9747 40.4374V27.508L70.8571 22.7372V59.2975Z" fill="#343750"/>
5
+ <path d="M15.4167 55.1413L10.5426 52.7884C10.0094 52.5308 9.36903 52.7545 9.11171 53.2874C8.8544 53.8203 9.07785 54.461 9.61077 54.7183L14.4849 57.0712C14.6351 57.1438 14.7938 57.1781 14.9499 57.1781C15.3483 57.1781 15.7309 56.9549 15.9156 56.5722C16.1731 56.0391 15.9496 55.3988 15.4167 55.1413Z" fill="#343750"/>
6
+ <path d="M19.903 52.2216L10.5498 47.7062C10.0168 47.4489 9.37626 47.6723 9.11895 48.2054C8.86178 48.7383 9.08523 49.379 9.61815 49.6363L18.9713 54.1516C19.1215 54.2241 19.2802 54.2585 19.4364 54.2585C19.8347 54.2585 20.2173 54.0353 20.4021 53.6526C20.6594 53.1194 20.4359 52.4787 19.903 52.2216Z" fill="#343750"/>
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0">
10
+ <rect width="79" height="81" fill="white"/>
11
+ </clipPath>
12
+ </defs>
13
+ </svg>
@@ -0,0 +1,17 @@
1
+ <svg width="79" height="81" viewBox="0 0 79 81" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path opacity="0.2" d="M58.4439 4.43512C66.8647 -0.445874 77.3701 5.6194 77.3535 15.3526L77.2637 67.9118C77.2471 77.645 66.721 83.7462 58.3167 78.894L12.9337 52.6922C4.52947 47.8399 4.55026 35.6735 12.9711 30.7925L58.4439 4.43512Z" fill="#38C88D"/>
4
+ <path d="M73.6719 55.8128H72.5625V53.594H73.6719C74.1201 53.594 74.525 53.3234 74.6969 52.9096C74.8689 52.4947 74.7735 52.0176 74.4562 51.7003L30.0812 7.32532C29.6474 6.89156 28.9463 6.89156 28.5125 7.32532L24.075 11.7628C23.6413 12.1966 23.6413 12.8977 24.075 13.3315L64.0125 53.269C64.22 53.4776 64.5029 53.594 64.7969 53.594H65.9062V55.8128H57.0312V52.4847C57.0312 51.8723 56.5342 51.3753 55.9219 51.3753H9.32812C8.71575 51.3753 8.21875 51.8723 8.21875 52.4847V55.8128H7.10938C6.497 55.8128 6 56.3098 6 56.9222V70.2347C6 70.847 6.497 71.344 7.10938 71.344H8.86884L12.9813 75.4565C13.1888 75.6651 13.4716 75.7816 13.7656 75.7816H67.0156C67.3096 75.7816 67.5925 75.6651 67.8 75.4565L71.9124 71.344H73.6719C74.2842 71.344 74.7812 70.847 74.7812 70.2347V56.9222C74.7812 56.3098 74.2842 55.8128 73.6719 55.8128ZM26.428 12.5472L29.2969 9.67831L70.9938 51.3753H65.2562L26.428 12.5472ZM68.125 53.594H70.3438V55.8128H68.125V53.594ZM10.4375 53.594H54.8125V55.8128H10.4375V53.594ZM66.5563 73.5628H14.2249L12.0062 71.344H68.7751L66.5563 73.5628ZM72.5625 69.1253H8.21875V58.0315H72.5625V69.1253Z" fill="#343750"/>
5
+ <path d="M13.7656 66.9065C15.6005 66.9065 17.0938 65.4133 17.0938 63.5784C17.0938 61.7435 15.6005 60.2502 13.7656 60.2502C11.9307 60.2502 10.4375 61.7435 10.4375 63.5784C10.4375 65.4133 11.9307 66.9065 13.7656 66.9065ZM13.7656 62.469C14.3769 62.469 14.875 62.9671 14.875 63.5784C14.875 64.1896 14.3769 64.6877 13.7656 64.6877C13.1544 64.6877 12.6562 64.1896 12.6562 63.5784C12.6562 62.9671 13.1544 62.469 13.7656 62.469Z" fill="#343750"/>
6
+ <path d="M22.6406 66.9065C24.4755 66.9065 25.9688 65.4133 25.9688 63.5784C25.9688 61.7435 24.4755 60.2502 22.6406 60.2502C20.8057 60.2502 19.3125 61.7435 19.3125 63.5784C19.3125 65.4133 20.8057 66.9065 22.6406 66.9065ZM22.6406 62.469C23.2519 62.469 23.75 62.9671 23.75 63.5784C23.75 64.1896 23.2519 64.6877 22.6406 64.6877C22.0294 64.6877 21.5312 64.1896 21.5312 63.5784C21.5312 62.9671 22.0294 62.469 22.6406 62.469Z" fill="#343750"/>
7
+ <path d="M64.7969 66.9065H69.2344C69.8467 66.9065 70.3438 66.4095 70.3438 65.7971V61.3596C70.3438 60.7472 69.8467 60.2502 69.2344 60.2502H64.7969C64.1845 60.2502 63.6875 60.7472 63.6875 61.3596V65.7971C63.6875 66.4095 64.1845 66.9065 64.7969 66.9065ZM65.9062 62.469H68.125V64.6877H65.9062V62.469Z" fill="#343750"/>
8
+ <path d="M25.9688 38.0627H28.1875V44.719H25.9688V38.0627Z" fill="#343750"/>
9
+ <path d="M30.7251 45.0422L35.1627 40.6046L36.7316 42.1735L32.294 46.6111L30.7251 45.0422Z" fill="#343750"/>
10
+ <path d="M17.4141 42.1736L18.983 40.6047L23.4206 45.0423L21.8517 46.6112L17.4141 42.1736Z" fill="#343750"/>
11
+ </g>
12
+ <defs>
13
+ <clipPath id="clip0">
14
+ <rect width="79" height="81" fill="white"/>
15
+ </clipPath>
16
+ </defs>
17
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="79" height="81" viewBox="0 0 79 81" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.2" d="M28.5825 15.6094C33.4347 7.17187 45.5652 7.17188 50.4174 15.6094L76.6192 61.1719C81.4714 69.6094 75.4062 80.1563 65.7018 80.1563H13.2981C3.59364 80.1563 -2.4716 69.6094 2.38059 61.1719L28.5825 15.6094Z" fill="#7D6AEF"/>
3
+ <path d="M36.2828 8.44136H42.3919C43.0461 8.44136 43.5761 7.91108 43.5761 7.25718C43.5761 6.60312 43.0461 6.073 42.3919 6.073H36.2828C35.6286 6.073 35.0986 6.60327 35.0986 7.25718C35.0986 7.91108 35.6286 8.44136 36.2828 8.44136Z" fill="#343750"/>
4
+ <path d="M74.555 30.2267L70.4802 13.4385C70.4398 13.2724 69.4487 9.35044 65.5522 7.69443C62.7318 6.4959 53.8121 3.10962 51.5788 2.26396C51.3753 2.09917 51.1163 2 50.8341 2H50.6644H27.9245C27.8865 2 27.8489 2.00205 27.8111 2.00571C27.7948 2.00732 27.7789 2.01011 27.7628 2.0123C27.7421 2.01509 27.7215 2.01787 27.7008 2.02183C27.6816 2.02549 27.6627 2.03032 27.6438 2.03486C27.627 2.03896 27.61 2.04307 27.5931 2.04775C27.5735 2.05347 27.5545 2.06006 27.5351 2.06665C27.5253 2.07017 27.5154 2.07266 27.5055 2.07632C27.0456 2.2502 16.2011 6.34941 13.0364 7.69443C9.29021 9.28672 8.23025 12.9717 8.11819 13.4009C8.11819 13.401 8.11819 13.4012 8.11804 13.4013C8.11599 13.4094 8.11438 13.4157 8.11277 13.4214C8.11072 13.4292 8.10925 13.4353 8.10852 13.4382L5.21282 25.3687C5.21282 25.3687 5.21282 25.3687 5.21282 25.3688L4.03362 30.2268C3.89431 30.8003 4.19871 31.3887 4.74729 31.6067L16.3884 36.2312V71.0016V75.8158C16.3884 76.47 16.9185 77 17.5726 77H61.0159C61.6701 77 62.2001 76.47 62.2001 75.8158V71.0016V48.4543C62.2001 47.8002 61.6701 47.2701 61.0159 47.2701C60.3617 47.2701 59.8317 47.8004 59.8317 48.4543V69.8173H30.7279C30.0737 69.8173 29.5437 70.3474 29.5437 71.0015C29.5437 71.6555 30.0737 72.1856 30.7279 72.1856H59.8319V74.6315H18.7571V72.1856H26.7806C27.4348 72.1856 27.9648 71.6554 27.9648 71.0015C27.9648 70.3473 27.4348 69.8173 26.7806 69.8173H18.7571V35.4271V30.3491V21.1728C18.7571 20.9567 18.698 20.7449 18.5863 20.56L12.6141 10.6833C12.9996 10.3735 13.4466 10.0938 13.9632 9.87427C16.3877 8.8439 23.6577 6.07036 26.8323 4.86479C27.5939 11.8634 33.0295 17.4919 39.3794 17.4919C45.7105 17.4919 51.1333 11.8965 51.9201 4.92661C55.1742 6.16294 62.2421 8.86104 64.626 9.87412C65.1427 10.0937 65.5894 10.3733 65.9751 10.6832L60.0031 20.5597C59.8913 20.7446 59.8323 20.9565 59.8323 21.1725V30.3488V35.427V44.5068C59.8323 45.161 60.3624 45.691 61.0165 45.691C61.6707 45.691 62.2007 45.161 62.2007 44.5068V36.2308L73.8418 31.6063C74.3898 31.3886 74.6942 30.8001 74.555 30.2267ZM16.3887 33.6825L6.5782 29.7852L7.18699 27.2773L16.3885 31.1365V33.6825H16.3887ZM16.3887 21.5028V28.5682L7.75286 24.9463L10.4092 14.0023C10.4126 13.989 10.5739 13.3783 11.0089 12.6058L16.3887 21.5028ZM39.3793 15.1234C34.6987 15.1234 29.7059 10.8512 29.1583 4.36836H49.6005C49.0527 10.8513 44.0599 15.1234 39.3793 15.1234ZM62.2004 21.5028L67.5803 12.6055C67.8652 13.1113 68.0329 13.5475 68.115 13.7907C68.1151 13.7914 68.1154 13.7921 68.1157 13.7929C68.1235 13.8159 68.1302 13.8368 68.1365 13.8562C68.1377 13.8598 68.1388 13.8636 68.14 13.8671C68.1449 13.8825 68.1492 13.8963 68.1531 13.909C68.1547 13.9139 68.1563 13.9193 68.1576 13.9238C68.1608 13.9342 68.1635 13.9435 68.1658 13.9517C68.167 13.9555 68.1681 13.96 68.1692 13.9634C68.1711 13.97 68.1725 13.9751 68.1737 13.9798C68.1744 13.9826 68.1756 13.9864 68.1762 13.9886C68.1774 13.9927 68.1782 13.9965 68.1784 13.9971L70.8361 24.9465L62.2002 28.5683V21.5028H62.2004ZM62.2004 33.6825V31.1365L71.4019 27.2773L72.0106 29.7853L62.2004 33.6825Z" fill="#343750"/>
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="79" height="81" viewBox="0 0 79 81" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path opacity="0.2" d="M28.5825 15.6094C33.4347 7.17187 45.5652 7.17188 50.4174 15.6094L76.6192 61.1719C81.4714 69.6094 75.4062 80.1563 65.7018 80.1563L13.2981 80.1563C3.59364 80.1563 -2.4716 69.6094 2.38059 61.1719L28.5825 15.6094Z" fill="#38C88D"/>
3
+ <path d="M69.0038 13.9962C67.7659 12.7578 65.6586 12.6712 63.0693 13.7521C61.1152 14.5681 59.0004 15.99 57.0231 17.8059C56.9167 17.6995 56.8122 17.5916 56.7043 17.4871C56.4659 17.2548 56.1499 17.1247 55.816 17.1285L37.8071 17.5084C37.4939 17.515 37.195 17.6427 36.9731 17.8641L30.7425 24.0947C30.268 24.5696 30.268 25.3397 30.7425 25.8142C31.2174 26.2891 31.987 26.2891 32.4619 25.8142L38.3472 19.9293L55.2616 19.5722C53.7791 21.1937 52.5639 22.9051 51.7291 24.5441C49.9968 24.5403 48.2632 25.1973 46.9444 26.5161C45.6706 27.79 44.9686 29.4843 44.9686 31.2861C44.9686 33.0878 45.6701 34.7817 46.9444 36.0556C48.2183 37.3299 49.9126 38.0314 51.7144 38.0314C53.5161 38.0314 55.21 37.3299 56.4844 36.0556C57.7582 34.7817 58.4597 33.0878 58.4597 31.2861C58.4597 30.9857 58.4384 30.6887 58.4001 30.3963C58.3996 30.3921 58.3992 30.3878 58.3987 30.3836C58.2047 28.9238 57.543 27.5748 56.4844 26.5161C55.8193 25.8515 55.0492 25.3553 54.2276 25.0266C54.9352 23.7811 55.8898 22.4912 57.025 21.2467L63.4297 27.6514L63.0712 44.6532L35.6591 72.0649L10.9351 47.341L25.5416 32.7345C26.0165 32.2596 26.0165 31.49 25.5416 31.0151C25.0667 30.5401 24.2975 30.5401 23.8221 31.0151L8.35619 46.4815C8.12819 46.7095 8 47.0184 8 47.341C8 47.6636 8.12819 47.9724 8.35619 48.2004L34.7996 74.6438C35.037 74.8813 35.3478 75 35.6591 75C35.9703 75 36.2816 74.8813 36.519 74.6438L65.1359 46.0269C65.3573 45.805 65.485 45.5061 65.4916 45.1925L65.872 27.1836C65.8786 26.8525 65.7499 26.5327 65.5158 26.2985L65.1941 25.9769C67.0101 23.9997 68.432 21.8848 69.2479 19.9307C70.3288 17.3419 70.2422 15.2341 69.0038 13.9962ZM51.7139 35.6001C50.5616 35.6001 49.4784 35.1512 48.6634 34.3361C47.8489 33.5216 47.4 32.4379 47.4 31.2856C47.4 30.1333 47.8484 29.0501 48.6634 28.2351C49.2551 27.6433 49.9775 27.2611 50.7381 27.0857C50.2542 28.9796 50.5072 30.5193 51.494 31.506C52.1586 32.1706 53.0691 32.5037 54.1699 32.5037C54.7086 32.5037 55.2938 32.4213 55.9167 32.2619C55.7374 33.041 55.3439 33.7567 54.7649 34.3361C53.9499 35.1512 52.8667 35.6001 51.7139 35.6001ZM55.7583 29.779C54.3586 30.235 53.5228 30.0964 53.2134 29.7866C52.8246 29.3978 52.8378 28.4376 53.2214 27.2451C53.7848 27.4541 54.3127 27.7834 54.7649 28.2351C55.21 28.6802 55.5449 29.2062 55.7583 29.779ZM67.0039 18.9941C66.3038 20.6705 65.0664 22.5082 63.4728 24.2556L58.7445 19.5268C60.4918 17.9331 62.329 16.6957 64.0059 15.9956C65.5314 15.3589 66.8185 15.2487 67.2844 15.7151C67.7513 16.1815 67.6411 17.4686 67.0039 18.9941Z" fill="#343750"/>
4
+ <path d="M27.6763 46.36C26.4204 47.6158 25.7289 49.2851 25.7289 51.0613C25.7289 52.3167 26.0761 53.5178 26.7222 54.5584L25.5207 55.7599C25.0458 56.2348 25.0458 57.0044 25.5207 57.4793C25.7582 57.7168 26.0694 57.8355 26.3802 57.8355C26.6915 57.8355 27.0027 57.7168 27.2402 57.4793L28.3617 56.3578C29.513 57.2296 30.9264 57.7097 32.381 57.7097C32.4855 57.7097 32.591 57.7073 32.696 57.7021C34.5607 57.6132 36.2347 56.6941 37.2886 55.1814C38.3037 53.7245 38.579 51.9185 38.044 50.2265C37.7928 49.4323 37.3747 48.6608 36.7976 47.9219L41.7412 42.9779C41.9748 43.5072 42.0988 44.0838 42.0988 44.6798C42.0988 45.8061 41.6603 46.8652 40.8637 47.6617C40.3888 48.1362 40.3888 48.9063 40.8637 49.3812C41.3381 49.8556 42.1077 49.8561 42.5831 49.3812C43.8385 48.1253 44.5301 46.4555 44.5301 44.6798C44.5301 43.4244 44.1834 42.2229 43.5372 41.1823L44.7387 39.9808C45.2131 39.5063 45.2131 38.7363 44.7387 38.2613C44.2638 37.7869 43.4942 37.7869 43.0193 38.2613L41.8973 39.3834C40.6622 38.4487 39.1263 37.9629 37.5629 38.0386C35.6983 38.1275 34.0243 39.0466 32.9704 40.5593C31.9553 42.0167 31.6804 43.8227 32.215 45.5142C32.4661 46.3084 32.8848 47.0799 33.4618 47.8188L28.5178 52.7628C28.2841 52.2335 28.1602 51.6569 28.1602 51.0609C28.1602 49.9346 28.5992 48.8755 29.3957 48.0794C29.8702 47.6045 29.8702 46.8349 29.3957 46.36C28.9208 45.8851 28.1512 45.8851 27.6763 46.36ZM35.7257 50.9596C36.0313 51.9265 35.8743 52.9586 35.2939 53.7916C34.6742 54.6809 33.6856 55.2206 32.5801 55.2736C31.7013 55.3162 30.8366 55.0797 30.1062 54.6133L35.0592 49.6603C35.3634 50.0902 35.5881 50.5249 35.7257 50.9596ZM34.5332 44.781C34.2277 43.8146 34.3852 42.7825 34.9656 41.949C35.5848 41.0602 36.5739 40.52 37.6788 40.4675C38.5568 40.4254 39.4219 40.6615 40.1527 41.1279L35.1997 46.0809C34.8956 45.6504 34.6709 45.2162 34.5332 44.781Z" fill="#343750"/>
5
+ <path d="M27.0202 28.8783C27.216 29.3518 27.7075 29.6602 28.2188 29.6271C28.7056 29.5958 29.1365 29.2657 29.2935 28.804C29.4553 28.3296 29.3006 27.7927 28.9137 27.4743C28.5107 27.1427 27.9227 27.1087 27.4842 27.3916C26.9979 27.7056 26.7988 28.3428 27.0202 28.8783Z" fill="#343750"/>
6
+ </svg>
@@ -0,0 +1,12 @@
1
+ <svg width="41" height="41" viewBox="0 0 41 41" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M39.3766 9.04655L20.761 0.0596982C20.596 -0.0198994 20.4038 -0.0198994 20.2388 0.0596982L1.62314 9.04655C1.41558 9.14672 1.28369 9.35693 1.28369 9.58739V31.4126C1.28369 31.6431 1.41558 31.8533 1.62314 31.9535L20.2387 40.9403C20.3212 40.9801 20.4106 41 20.4999 41C20.5892 41 20.6784 40.9801 20.761 40.9403L39.3766 31.9535C39.5842 31.8533 39.7161 31.6431 39.7161 31.4126V9.58747C39.7161 9.35685 39.5841 9.1468 39.3766 9.04655ZM20.4999 1.26752L37.7341 9.58739L32.7382 11.9992C32.7066 11.9751 32.6732 11.9528 32.6365 11.9351L15.5194 3.67186L20.4999 1.26752ZM14.1631 4.35092L31.3722 12.6587L27.8475 14.3603L10.6455 6.05587L14.1631 4.35092ZM31.7748 13.7981V20.0879L28.4825 21.6773V15.3875L31.7748 13.7981ZM38.5149 31.0358L21.1005 39.4425V18.9512L25.2544 16.9459C25.553 16.8016 25.6783 16.4426 25.5341 16.1439C25.3898 15.8453 25.0309 15.7199 24.7321 15.8642L20.4999 17.9073L18.8346 17.1034C18.5358 16.959 18.1768 17.0844 18.0326 17.3831C17.8884 17.6818 18.0136 18.0408 18.3123 18.1851L19.8993 18.9512V39.4425L2.48486 31.0356V10.5442L15.7458 16.9461C15.83 16.9868 15.9189 17.006 16.0065 17.006C16.2297 17.006 16.4442 16.8809 16.5477 16.6664C16.6919 16.3677 16.5667 16.0086 16.268 15.8644L3.2657 9.58739L9.23193 6.70714L27.273 15.4167C27.2757 15.4204 27.2786 15.4236 27.2814 15.4272V22.6342C27.2814 22.8409 27.3876 23.033 27.5627 23.1429C27.6599 23.204 27.7708 23.2348 27.882 23.2348C27.9711 23.2348 28.0604 23.215 28.1431 23.175L32.6365 21.0058C32.8441 20.9056 32.976 20.6955 32.976 20.465V13.2183L38.5149 10.5443V31.0358Z" fill="#343750"/>
4
+ <path d="M7.44138 28.7064L4.70952 27.3876C4.41066 27.2432 4.05175 27.3686 3.90753 27.6673C3.76331 27.966 3.88856 28.3251 4.18725 28.4693L6.91911 29.7881C7.00327 29.8288 7.09224 29.848 7.17977 29.848C7.40302 29.848 7.61747 29.7229 7.72102 29.5084C7.86532 29.2096 7.74007 28.8507 7.44138 28.7064Z" fill="#343750"/>
5
+ <path d="M9.95593 27.0699L4.71362 24.5391C4.41485 24.3949 4.05585 24.5201 3.91163 24.8189C3.76749 25.1176 3.89274 25.4767 4.19143 25.6209L9.43374 28.1517C9.5179 28.1923 9.60687 28.2116 9.6944 28.2116C9.91765 28.2116 10.1321 28.0865 10.2356 27.872C10.3799 27.5731 10.2546 27.2141 9.95593 27.0699Z" fill="#343750"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0">
9
+ <rect width="41" height="41" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="70" height="70" viewBox="0 0 70 70" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <line x1="68" y1="2.12132" x2="2.12132" y2="68" stroke="#EB5757" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <line x1="67.8787" y1="68" x2="1.99999" y2="2.12132" stroke="#EB5757" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="33" y="28" width="34" height="46" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="34" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="36" y="28" width="28" height="17" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="100" height="97" viewBox="0 0 100 97" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect x="54" y="29" width="16" height="16" rx="1" fill="#38C88D"/>
3
+ <path d="M63.7048 2.04227L85.7966 7.18864L97.9471 29.0658C97.9471 29.0658 93.0304 31.588 89.8297 33.4362C86.1922 35.5345 80.6847 39.3586 80.6847 39.3586L76.852 31.6543C76.852 31.6543 76.7441 47.7214 76.6003 58.0346C76.4102 72.3658 76.852 94.7076 76.852 94.7076C76.852 94.7076 60.4989 94.9731 50.0028 94.9731C39.5066 94.9731 23.1484 94.7076 23.1484 94.7076C23.1484 94.7076 23.5953 72.3658 23.4001 58.0346C23.2614 47.7061 23.1484 31.6543 23.1484 31.6543L19.3157 39.3586C19.3157 39.3586 13.8081 35.5345 10.1707 33.4362C6.96996 31.588 2.05325 29.0658 2.05325 29.0658L14.1986 7.18864L36.3007 2.04227C36.3007 2.04227 41.1763 11.1403 50.0028 11.1403C59.6718 11.1403 63.7048 2.04227 63.7048 2.04227ZM63.7048 5.45824e-05C63.3075 0.000772168 62.9189 0.115932 62.5861 0.331592C62.2533 0.547251 61.9905 0.854163 61.8296 1.21517C61.6755 1.55214 58.1665 9.09811 50.013 9.09811C42.507 9.09811 38.1965 1.16412 38.1246 1.08243C37.9486 0.75403 37.6857 0.47964 37.3643 0.288885C37.0428 0.0981302 36.6751 -0.00174143 36.3007 5.45824e-05C36.1431 -0.00115423 35.986 0.0177199 35.8332 0.0562154L13.7414 5.20259C13.4597 5.26995 13.1955 5.39576 12.9662 5.57173C12.7368 5.74771 12.5475 5.96989 12.4107 6.22369L0.255081 28.0805C0.122807 28.3191 0.0399053 28.5815 0.0112552 28.8525C-0.0173949 29.1234 0.00878615 29.3973 0.0882569 29.658C0.167728 29.9187 0.298882 30.1609 0.473998 30.3705C0.649115 30.5801 0.864654 30.7527 1.10793 30.8783C1.1593 30.9038 6.0195 33.4004 9.13804 35.2027C12.6625 37.2449 18.0827 40.9975 18.1392 41.0332C18.4842 41.2725 18.8949 41.4008 19.3157 41.4008C19.4888 41.401 19.6613 41.3804 19.8295 41.3395C20.1172 41.2665 20.3856 41.1324 20.6162 40.9465C20.8468 40.7605 21.0341 40.5271 21.1652 40.2623C21.2063 45.6996 21.2731 52.684 21.3451 58.055C21.5403 72.1871 21.0984 94.4421 21.0984 94.6617C21.0928 94.9307 21.1408 95.1982 21.2395 95.4488C21.3383 95.6994 21.4859 95.9281 21.6739 96.1218C22.0545 96.5079 22.5737 96.7282 23.1175 96.7345C23.2819 96.7345 39.6093 97 50.0028 97C60.3962 97 76.7184 96.7396 76.888 96.7345C77.1583 96.7299 77.425 96.6723 77.6729 96.565C77.9208 96.4577 78.145 96.3029 78.3325 96.1094C78.5201 95.9159 78.6674 95.6875 78.766 95.4373C78.8646 95.1871 78.9125 94.9201 78.9071 94.6515C78.9071 94.4319 78.4652 72.1871 78.6553 58.0448C78.7324 52.6738 78.794 45.6894 78.8403 40.252C78.9714 40.5169 79.1587 40.7503 79.3893 40.9363C79.6199 41.1222 79.8883 41.2563 80.1761 41.3293C80.3442 41.3705 80.5167 41.3911 80.6898 41.3906C81.1106 41.3906 81.5213 41.2623 81.8663 41.023C81.9229 40.9872 87.3431 37.2245 90.8675 35.1925C93.986 33.3902 98.8462 30.8936 98.8925 30.8681C99.1348 30.7429 99.3496 30.5711 99.5244 30.3625C99.6991 30.1539 99.8302 29.9127 99.9101 29.6532C99.99 29.3937 100.017 29.1209 99.9896 28.8509C99.9622 28.5808 99.8809 28.3189 99.7504 28.0805L87.6051 6.20327C87.4682 5.94947 87.279 5.72729 87.0496 5.55131C86.8203 5.37533 86.5561 5.24953 86.2744 5.18217L64.1723 0.0562154C64.0195 0.0178844 63.8624 -0.000987088 63.7048 5.45824e-05Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="41" height="41" viewBox="0 0 41 41" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18.8537 3.52127H22.1933C22.5509 3.52127 22.8407 3.23138 22.8407 2.87391C22.8407 2.51637 22.5509 2.22656 22.1933 2.22656H18.8537C18.496 2.22656 18.2063 2.51645 18.2063 2.87391C18.2063 3.23138 18.496 3.52127 18.8537 3.52127Z" fill="#343750"/>
3
+ <path d="M39.7759 15.4306L37.5483 6.25306C37.5262 6.16225 36.9844 4.01824 34.8544 3.11296C33.3125 2.45776 28.4364 0.606592 27.2155 0.144301C27.1043 0.0542129 26.9627 0 26.8084 0H26.7157H14.2845C14.2638 0 14.2432 0.00112109 14.2226 0.00312305C14.2137 0.00400391 14.2049 0.00552539 14.1961 0.00672656C14.1848 0.00824805 14.1735 0.00976953 14.1623 0.0119316C14.1518 0.0139336 14.1414 0.0165762 14.1311 0.0190586C14.1219 0.0213008 14.1126 0.023543 14.1034 0.0261055C14.0927 0.0292285 14.0823 0.032832 14.0717 0.0364355C14.0663 0.0383574 14.0609 0.0397188 14.0555 0.0417207C13.8041 0.136773 7.87572 2.37768 6.14571 3.11296C4.09779 3.98341 3.51835 5.99785 3.45709 6.23248C3.45709 6.23256 3.45709 6.23264 3.45701 6.23272C3.45589 6.23712 3.45501 6.24057 3.45412 6.24369C3.453 6.24794 3.4522 6.2513 3.4518 6.2529L1.86882 12.7749C1.86882 12.7749 1.86882 12.7749 1.86882 12.7749L1.22419 15.4307C1.14803 15.7442 1.31444 16.0658 1.61433 16.185L7.97814 18.7131V37.7209V40.3526C7.97814 40.7103 8.26794 41 8.62549 41H32.3745C32.7321 41 33.0219 40.7103 33.0219 40.3526V37.7209V25.395C33.0219 25.0375 32.7321 24.7477 32.3745 24.7477C32.0169 24.7477 31.7271 25.0375 31.7271 25.395V37.0734H15.8171C15.4594 37.0734 15.1697 37.3633 15.1697 37.7208C15.1697 38.0784 15.4594 38.3682 15.8171 38.3682H31.7272V39.7052H9.273V38.3682H13.6592C14.0168 38.3682 14.3066 38.0783 14.3066 37.7208C14.3066 37.3632 14.0168 37.0734 13.6592 37.0734H9.273V18.2735V15.4975V10.4811C9.273 10.363 9.24073 10.2472 9.17963 10.1461L5.91484 4.74687C6.12561 4.57751 6.36993 4.42464 6.65236 4.3046C7.97774 3.74133 11.952 2.22513 13.6875 1.56609C14.1038 5.39198 17.0753 8.4689 20.5466 8.4689C24.0075 8.4689 26.972 5.41008 27.4021 1.59988C29.1811 2.27574 33.0448 3.7507 34.348 4.30452C34.6305 4.42456 34.8747 4.57743 35.0855 4.74679L31.8208 10.146C31.7597 10.247 31.7275 10.3629 31.7275 10.4809V15.4974V18.2734V23.2371C31.7275 23.5947 32.0173 23.8844 32.3748 23.8844C32.7324 23.8844 33.0222 23.5947 33.0222 23.2371V18.7128L39.386 16.1847C39.6856 16.0658 39.852 15.7441 39.7759 15.4306ZM7.9783 17.3198L2.61523 15.1892L2.94803 13.8183L7.97822 15.9279V17.3198H7.9783ZM7.9783 10.6615V14.5239L3.25737 12.544L4.70951 6.56128C4.71135 6.55399 4.79952 6.22015 5.03735 5.79782L7.9783 10.6615ZM20.5465 7.17412C17.9877 7.17412 15.2584 4.83864 14.959 1.2947H26.1341C25.8346 4.83872 23.1052 7.17412 20.5465 7.17412ZM33.022 10.6615L35.963 5.79766C36.1188 6.07417 36.2105 6.31264 36.2553 6.44557C36.2554 6.44597 36.2556 6.44637 36.2557 6.44677C36.26 6.45934 36.2637 6.47079 36.2671 6.48136C36.2677 6.48337 36.2684 6.48545 36.269 6.48737C36.2717 6.49578 36.2741 6.5033 36.2761 6.51027C36.277 6.51291 36.2779 6.51588 36.2786 6.51836C36.2804 6.52404 36.2818 6.52909 36.2831 6.53357C36.2838 6.53566 36.2844 6.53814 36.285 6.53998C36.286 6.54358 36.2868 6.54639 36.2874 6.54895C36.2878 6.55047 36.2885 6.55255 36.2888 6.55375C36.2894 6.556 36.2899 6.55808 36.29 6.5584L37.7429 12.5441L33.0219 14.524V10.6615H33.022ZM33.022 17.3198V15.9279L38.0522 13.8183L38.3849 15.1893L33.022 17.3198Z" fill="#343750"/>
4
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg width="41" height="41" viewBox="0 0 41 41" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0)">
3
+ <path d="M28.0827 39.7963H5.29513V10.1094C5.29513 9.77695 5.02566 9.50757 4.69334 9.50757C4.36102 9.50757 4.09155 9.77695 4.09155 10.1094V39.9969C4.09155 40.55 4.54151 40.9999 5.09453 40.9999H28.0827C28.415 40.9999 28.6844 40.7305 28.6845 40.3981C28.6845 40.0657 28.415 39.7963 28.0827 39.7963Z" fill="#343750"/>
4
+ <path d="M36.7387 5.44139L31.6236 0.182258C31.5103 0.0657441 31.3547 0 31.1922 0H5.09453C4.54151 0 4.09163 0.450039 4.09155 1.00306V5.69668C4.09155 6.02908 4.36102 6.29846 4.69334 6.29846C5.02566 6.29846 5.29513 6.02908 5.29513 5.69668V1.20365H30.9381L35.7056 6.1054V39.7964H32.2951C31.9627 39.7964 31.6933 40.0658 31.6933 40.3982C31.6933 40.7306 31.9627 41 32.2951 41H35.9061C36.4592 41 36.9091 40.5501 36.9091 39.9971V5.86092C36.9091 5.70421 36.848 5.55374 36.7387 5.44139Z" fill="#343750"/>
5
+ <path d="M36.7385 5.44135L31.6234 0.182218C31.4526 0.00668642 31.1925 -0.0479269 30.9657 0.044243C30.7388 0.136413 30.5903 0.356868 30.5903 0.601827V5.86088C30.5903 6.19328 30.8598 6.46267 31.1921 6.46267H36.3072C36.5491 6.46267 36.7675 6.31788 36.8615 6.09503C36.9556 5.87225 36.9071 5.61464 36.7385 5.44135ZM31.7939 5.25909V2.08351L34.8824 5.25909H31.7939Z" fill="#343750"/>
6
+ <path d="M23.2851 3.19507H8.78569C8.23259 3.19507 7.78271 3.64503 7.78271 4.19805V7.52393C7.78271 8.07703 8.23267 8.52691 8.78569 8.52691H23.2851C23.8381 8.52691 24.2881 8.07695 24.2881 7.52401V4.19797C24.2881 3.64487 23.8381 3.19507 23.2851 3.19507ZM23.0845 7.32326H8.98629V4.39856H23.0845V7.32326Z" fill="#343750"/>
7
+ <path d="M13.7933 11.6763C13.5288 11.4754 13.1512 11.5267 12.95 11.7913L10.2912 15.2898L9.49266 14.591C9.24258 14.3721 8.86245 14.3975 8.64352 14.6476C8.42466 14.8978 8.45005 15.2779 8.70013 15.4968L9.98386 16.6201C10.094 16.7164 10.2351 16.7689 10.3801 16.7689C10.4003 16.7689 10.4205 16.7679 10.4409 16.766C10.6068 16.7491 10.7584 16.6642 10.8593 16.5313L13.9082 12.5196C14.1093 12.255 14.0578 11.8774 13.7933 11.6763Z" fill="#343750"/>
8
+ <path d="M31.9037 11.5535H16.7471C16.4147 11.5535 16.1453 11.8229 16.1453 12.1553C16.1453 12.4877 16.4147 12.757 16.7471 12.757H31.9037C32.236 12.757 32.5055 12.4877 32.5055 12.1553C32.5055 11.8229 32.236 11.5535 31.9037 11.5535Z" fill="#343750"/>
9
+ <path d="M26.5875 13.5593H16.7471C16.4147 13.5593 16.1453 13.8287 16.1453 14.1611C16.1453 14.4935 16.4147 14.7629 16.7471 14.7629H26.5875C26.9198 14.7629 27.1892 14.4935 27.1892 14.1611C27.1892 13.8287 26.9198 13.5593 26.5875 13.5593Z" fill="#343750"/>
10
+ <path d="M28.834 15.5652H16.7471C16.4147 15.5652 16.1453 15.8346 16.1453 16.167C16.1453 16.4994 16.4147 16.7688 16.7471 16.7688H28.834C29.1664 16.7688 29.4358 16.4994 29.4358 16.167C29.4358 15.8346 29.1664 15.5652 28.834 15.5652Z" fill="#343750"/>
11
+ <path d="M13.7933 19.8605C13.5288 19.6595 13.1512 19.7108 12.95 19.9755L10.2912 23.4739L9.49266 22.7751C9.24258 22.5563 8.86245 22.5817 8.64352 22.8318C8.42466 23.0819 8.45005 23.4621 8.70013 23.6809L9.98386 24.8042C10.094 24.9005 10.2351 24.953 10.3801 24.953C10.4003 24.953 10.4205 24.952 10.4409 24.9501C10.6068 24.9332 10.7584 24.8483 10.8593 24.7154L13.9082 20.7037C14.1093 20.4391 14.0578 20.0617 13.7933 19.8605Z" fill="#343750"/>
12
+ <path d="M31.9037 19.7378H16.7471C16.4147 19.7378 16.1453 20.0072 16.1453 20.3396C16.1453 20.672 16.4147 20.9414 16.7471 20.9414H31.9037C32.236 20.9414 32.5055 20.672 32.5055 20.3396C32.5055 20.0072 32.236 19.7378 31.9037 19.7378Z" fill="#343750"/>
13
+ <path d="M26.5875 21.7437H16.7471C16.4147 21.7437 16.1453 22.013 16.1453 22.3454C16.1453 22.6778 16.4147 22.9472 16.7471 22.9472H26.5875C26.9198 22.9472 27.1892 22.6778 27.1892 22.3454C27.1892 22.013 26.9198 21.7437 26.5875 21.7437Z" fill="#343750"/>
14
+ <path d="M28.834 23.7495H16.7471C16.4147 23.7495 16.1453 24.0189 16.1453 24.3513C16.1453 24.6837 16.4147 24.9531 16.7471 24.9531H28.834C29.1664 24.9531 29.4358 24.6837 29.4358 24.3513C29.4358 24.0189 29.1664 23.7495 28.834 23.7495Z" fill="#343750"/>
15
+ <path d="M31.9037 27.9219H16.7471C16.4147 27.9219 16.1453 28.1913 16.1453 28.5237C16.1453 28.8561 16.4147 29.1254 16.7471 29.1254H31.9037C32.236 29.1254 32.5054 28.8561 32.5055 28.5237C32.5055 28.1913 32.236 27.9219 31.9037 27.9219Z" fill="#343750"/>
16
+ <path d="M26.5875 29.928H16.7471C16.4147 29.928 16.1453 30.1974 16.1453 30.5298C16.1453 30.8622 16.4147 31.1315 16.7471 31.1315H26.5875C26.9198 31.1315 27.1892 30.8622 27.1892 30.5298C27.1892 30.1974 26.9198 29.928 26.5875 29.928Z" fill="#343750"/>
17
+ <path d="M28.834 31.9338H16.7471C16.4147 31.9338 16.1453 32.2032 16.1453 32.5356C16.1453 32.868 16.4147 33.1374 16.7471 33.1374H28.834C29.1664 33.1374 29.4358 32.868 29.4358 32.5356C29.4358 32.2032 29.1664 31.9338 28.834 31.9338Z" fill="#343750"/>
18
+ <path d="M12.7068 27.9219H9.49736C8.94426 27.9219 8.49438 28.3718 8.49438 28.9249V32.1342C8.49438 32.6873 8.94434 33.1372 9.49736 33.1372H12.7068C13.2599 33.1372 13.7098 32.6873 13.7098 32.1343V28.9249C13.7098 28.3718 13.2598 27.9219 12.7068 27.9219ZM12.5063 31.9337H9.69804V29.1254H12.5063V31.9337Z" fill="#343750"/>
19
+ </g>
20
+ <defs>
21
+ <clipPath id="clip0">
22
+ <rect width="41" height="41" fill="white"/>
23
+ </clipPath>
24
+ </defs>
25
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="41" height="41" viewBox="0 0 41 41" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M35.5547 41C35.909 41 36.1953 40.7136 36.1953 40.3594V33.9531V0.640625C36.1953 0.286359 35.909 0 35.5547 0H8.64844C6.52861 0 4.80469 1.72392 4.80469 3.84375V37.1562C4.80469 39.2761 6.52861 41 8.64844 41H35.5547ZM34.9141 33.3125H10.5703V1.28125H34.9141V33.3125ZM33.6328 34.5938H34.9141V39.7188H33.6328V34.5938ZM8.64844 1.28125H9.28906V33.3125H8.64844C7.6638 33.3125 6.76628 33.6879 6.08594 34.2991V3.84375C6.08594 2.43053 7.23522 1.28125 8.64844 1.28125ZM6.08594 37.1562C6.08594 35.743 7.23522 34.5938 8.64844 34.5938H32.3516V36.5169H8.64844C8.29417 36.5169 8.00781 36.8033 8.00781 37.1575C8.00781 37.5118 8.29417 37.7982 8.64844 37.7982H32.3516V39.7188H8.64844C7.23522 39.7188 6.08594 38.5695 6.08594 37.1562Z" fill="#343750"/>
3
+ <path d="M29.7881 23.7024H15.6982C15.344 23.7024 15.0576 23.9888 15.0576 24.343C15.0576 24.6973 15.344 24.9836 15.6982 24.9836H29.7881C30.1424 24.9836 30.4288 24.6973 30.4288 24.343C30.4288 23.9888 30.1424 23.7024 29.7881 23.7024Z" fill="#343750"/>
4
+ <path d="M29.7881 5.62744H15.6982C15.344 5.62744 15.0576 5.9138 15.0576 6.26807C15.0576 6.62233 15.344 6.90869 15.6982 6.90869H29.7881C30.1424 6.90869 30.4288 6.62233 30.4288 6.26807C30.4288 5.9138 30.1424 5.62744 29.7881 5.62744Z" fill="#343750"/>
5
+ <path d="M29.7881 25.6243H15.6982C15.344 25.6243 15.0576 25.9106 15.0576 26.2649C15.0576 26.6192 15.344 26.9055 15.6982 26.9055H29.7881C30.1424 26.9055 30.4288 26.6192 30.4288 26.2649C30.4288 25.9106 30.1424 25.6243 29.7881 25.6243Z" fill="#343750"/>
6
+ <path d="M29.7881 7.54932H15.6982C15.344 7.54932 15.0576 7.83568 15.0576 8.18994C15.0576 8.54421 15.344 8.83057 15.6982 8.83057H29.7881C30.1424 8.83057 30.4288 8.54421 30.4288 8.18994C30.4288 7.83568 30.1424 7.54932 29.7881 7.54932Z" fill="#343750"/>
7
+ <path d="M26.5858 27.563H18.9009C18.5466 27.563 18.2603 27.8493 18.2603 28.2036C18.2603 28.5579 18.5466 28.8442 18.9009 28.8442H26.5858C26.9401 28.8442 27.2264 28.5579 27.2264 28.2036C27.2264 27.8493 26.9401 27.563 26.5858 27.563Z" fill="#343750"/>
8
+ </svg>
@@ -0,0 +1,9 @@
1
+ <svg width="41" height="41" viewBox="0 0 41 41" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M39.7188 28.8281H39.0781V27.5468H39.7188C39.9776 27.5468 40.2114 27.3905 40.3107 27.1515C40.41 26.9119 40.3549 26.6365 40.1717 26.4533L14.5467 0.828244C14.2962 0.57776 13.8913 0.57776 13.6408 0.828244L11.0783 3.39075C10.8278 3.64123 10.8278 4.0461 11.0783 4.29659L34.1408 27.3591C34.2606 27.4795 34.424 27.5468 34.5938 27.5468H35.2344V28.8281H30.1094V26.9062C30.1094 26.5526 29.8224 26.2656 29.4688 26.2656H2.5625C2.20888 26.2656 1.92188 26.5526 1.92188 26.9062V28.8281H1.28125C0.927625 28.8281 0.640625 29.1151 0.640625 29.4687V37.1562C0.640625 37.5098 0.927625 37.7968 1.28125 37.7968H2.29728L4.67208 40.1716C4.79188 40.292 4.95523 40.3593 5.125 40.3593H35.875C36.0448 40.3593 36.2081 40.292 36.3279 40.1716L38.7027 37.7968H39.7188C40.0724 37.7968 40.3594 37.5098 40.3594 37.1562V29.4687C40.3594 29.1151 40.0724 28.8281 39.7188 28.8281ZM12.4371 3.84367L14.0938 2.18701L38.1723 26.2656H34.859L12.4371 3.84367ZM36.5156 27.5468H37.7969V28.8281H36.5156V27.5468ZM3.20312 27.5468H28.8281V28.8281H3.20312V27.5468ZM35.6098 39.0781H5.39022L4.10897 37.7968H36.891L35.6098 39.0781ZM39.0781 36.5156H1.92188V30.1093H39.0781V36.5156Z" fill="#343750"/>
3
+ <path d="M5.125 35.2344C6.18459 35.2344 7.04688 34.3721 7.04688 33.3125C7.04688 32.2529 6.18459 31.3906 5.125 31.3906C4.06541 31.3906 3.20312 32.2529 3.20312 33.3125C3.20312 34.3721 4.06541 35.2344 5.125 35.2344ZM5.125 32.6719C5.47798 32.6719 5.76562 32.9595 5.76562 33.3125C5.76562 33.6655 5.47798 33.9531 5.125 33.9531C4.77202 33.9531 4.48438 33.6655 4.48438 33.3125C4.48438 32.9595 4.77202 32.6719 5.125 32.6719Z" fill="#343750"/>
4
+ <path d="M10.25 35.2344C11.3096 35.2344 12.1719 34.3721 12.1719 33.3125C12.1719 32.2529 11.3096 31.3906 10.25 31.3906C9.19041 31.3906 8.32812 32.2529 8.32812 33.3125C8.32812 34.3721 9.19041 35.2344 10.25 35.2344ZM10.25 32.6719C10.603 32.6719 10.8906 32.9595 10.8906 33.3125C10.8906 33.6655 10.603 33.9531 10.25 33.9531C9.89702 33.9531 9.60938 33.6655 9.60938 33.3125C9.60938 32.9595 9.89702 32.6719 10.25 32.6719Z" fill="#343750"/>
5
+ <path d="M34.5938 35.2344H37.1562C37.5099 35.2344 37.7969 34.9474 37.7969 34.5938V32.0313C37.7969 31.6776 37.5099 31.3906 37.1562 31.3906H34.5938C34.2401 31.3906 33.9531 31.6776 33.9531 32.0313V34.5938C33.9531 34.9474 34.2401 35.2344 34.5938 35.2344ZM35.2344 32.6719H36.5156V33.9531H35.2344V32.6719Z" fill="#343750"/>
6
+ <path d="M12.1719 18.5781H13.4531V22.4219H12.1719V18.5781Z" fill="#343750"/>
7
+ <path d="M14.9187 22.6084L17.4813 20.0458L18.3872 20.9518L15.8247 23.5144L14.9187 22.6084Z" fill="#343750"/>
8
+ <path d="M7.23193 20.9519L8.13792 20.0459L10.7005 22.6085L9.7945 23.5145L7.23193 20.9519Z" fill="#343750"/>
9
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="42" height="50" viewBox="0 0 42 50" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M40.4266 25.6604C39.9905 25.6604 39.6371 26.0139 39.6371 26.4499V36.5026L35.4589 37.6364V17.9153C35.4589 17.4792 35.1056 17.1259 34.6694 17.1259C34.2333 17.1259 33.88 17.4792 33.88 17.9153V38.6686V43.1355V45.0135H14.6791C14.2431 45.0135 13.8896 45.3669 13.8896 45.8029C13.8896 46.2391 14.2432 46.5924 14.6791 46.5924H33.88V48.421H8.11914V46.5925H12.1003C12.5363 46.5925 12.8897 46.2391 12.8897 45.803C12.8897 45.367 12.5362 45.0136 12.1003 45.0136H8.11914V43.1356V38.6687V17.9154C8.11914 17.4793 7.76562 17.126 7.32969 17.126C6.89365 17.126 6.54023 17.4794 6.54023 17.9154V37.6365L2.36211 36.5027V13.1092C2.36211 10.7403 5.17939 8.86846 7.7207 7.71338C7.73428 7.70811 7.74824 7.70449 7.76162 7.69853C8.96113 7.16162 10.0247 6.81484 10.5156 6.66572L15.3498 9.16631V21.7342C15.3498 22.1703 15.7033 22.5236 16.1393 22.5236C16.5753 22.5236 16.9287 22.1703 16.9287 21.7342V9.98291L20.6366 11.9009C20.8641 12.0187 21.1345 12.0187 21.3621 11.9009L25.3015 9.86328V21.7341C25.3015 22.1702 25.6549 22.5235 26.0909 22.5235C26.527 22.5235 26.8804 22.1701 26.8804 21.7341V9.04648L31.4833 6.66553C31.9887 6.81904 33.1004 7.18164 34.343 7.7457C34.3559 7.75146 34.3689 7.75566 34.382 7.76074C36.8958 8.91934 39.6371 10.7726 39.6371 13.1091V23.7661C39.6371 24.2022 39.9904 24.5556 40.4266 24.5556C40.8627 24.5556 41.216 24.2022 41.216 23.7661V13.1092C41.216 9.92568 38.0158 7.73516 35.3064 6.45078C33.3952 1.06045 29.7262 0.0650391 29.5678 0.0246094C29.5526 0.0207031 29.5373 0.019043 29.5222 0.0161133C29.5074 0.0132813 29.4929 0.00986328 29.4778 0.00791016C29.452 0.00439453 29.4264 0.00302734 29.4006 0.00224609C29.3911 0.00175781 29.3819 0 29.3724 0H12.7311C12.7308 0 12.7305 0 12.73 0H12.7189C12.7104 0 12.7022 0.0015625 12.6937 0.00185547C12.6668 0.00273437 12.64 0.00419922 12.6133 0.0078125C12.5982 0.00976562 12.5836 0.0131836 12.5688 0.0161133C12.5537 0.019043 12.5383 0.0207031 12.5232 0.0246094C12.366 0.0648438 8.72178 1.05488 6.80508 6.39775C4.07266 7.67441 0.783203 9.88144 0.783203 13.109V37.1063V41.5735C0.783203 41.93 1.02197 42.2422 1.36592 42.3354L6.54023 43.7395V45.803V49.2104C6.54023 49.6465 6.89375 49.9998 7.32969 49.9998H34.6694C35.1056 49.9998 35.4589 49.6465 35.4589 49.2104V45.8028V43.7393L40.6333 42.3353C40.9773 42.2419 41.216 41.9297 41.216 41.5733V37.1064V26.4499C41.2161 26.0138 40.8627 25.6604 40.4266 25.6604ZM21.0455 8.25303L18.0803 5.19092H24.0109L21.0455 8.25303ZM29.5812 1.70869C30.3314 2.04805 31.977 3.04209 33.2328 5.58525C32.3788 5.27314 31.766 5.10059 31.6252 5.06211C31.6161 5.05967 31.6093 5.05781 31.6063 5.05693C31.5587 5.04414 31.5104 5.03584 31.4618 5.03213C31.3162 5.0209 31.1696 5.0501 31.0383 5.11816L26.8336 7.29316C26.7243 6.98809 26.4336 6.76963 26.091 6.76963C25.6549 6.76963 25.3016 7.12305 25.3016 7.55908V8.08574L21.5029 10.0506L21.6127 9.93721L26.4414 4.95098C26.4415 4.95098 26.4415 4.95088 26.4416 4.95078L28.229 3.10508L29.5812 1.70869ZM27.5088 1.57891L26.4991 2.62158L25.5398 3.61201H16.5511L14.5823 1.579H27.5088V1.57891ZM12.5096 1.7082L19.9465 9.38799L19.7663 9.57412L19.7024 9.64004L16.9289 8.20527V7.55898C16.9289 7.12285 16.5754 6.76953 16.1395 6.76953C15.7589 6.76953 15.4413 7.03877 15.3667 7.39717L10.9607 5.11816C10.9351 5.10488 10.9088 5.09355 10.8821 5.0832C10.8739 5.08008 10.8657 5.07744 10.8575 5.07461C10.8383 5.06787 10.8188 5.06191 10.7993 5.05674C10.7902 5.0543 10.7812 5.05205 10.772 5.0499C10.7504 5.04502 10.7287 5.04121 10.7068 5.03809C10.7004 5.03721 10.6942 5.03584 10.6878 5.03516C10.6598 5.03193 10.6316 5.03027 10.6035 5.03008C10.6018 5.03008 10.6 5.02979 10.5982 5.02979C10.5938 5.02979 10.5892 5.03066 10.5847 5.03076C10.5594 5.03115 10.5343 5.03291 10.5091 5.03574C10.5008 5.03672 10.4926 5.0376 10.4843 5.03877C10.4536 5.04316 10.4232 5.04893 10.393 5.05703C10.3005 5.08193 9.71689 5.24258 8.87949 5.54414C10.1328 3.02715 11.7612 2.04502 12.5096 1.7082ZM6.54023 42.1035L2.36211 40.9698V38.1388L6.54023 39.2727V42.1035ZM39.6371 40.9698L35.4589 42.1035V39.2727L39.6371 38.1388V40.9698Z" fill="#575872"/>
3
+ <path d="M26.7086 29.2943C26.7086 28.8582 26.3553 28.5049 25.9191 28.5049H16.1719C15.7358 28.5049 15.3824 28.8582 15.3824 29.2943C15.3824 31.7449 14.0343 33.9805 11.8643 35.1281C11.6057 35.2648 11.4438 35.5335 11.4438 35.826V41.9958C11.4438 42.4319 11.7974 42.7853 12.2333 42.7853H29.8578C30.2939 42.7853 30.6473 42.4318 30.6473 41.9958V35.8262C30.6473 35.5337 30.4854 35.265 30.2268 35.1283C28.0567 33.9807 26.7086 31.7451 26.7086 29.2943ZM29.0683 41.2063H29.0682H13.0228V36.2856C15.2388 34.943 16.6769 32.6469 16.9237 30.0839H25.1677C25.4142 32.6471 26.8526 34.9433 29.0685 36.286V41.2063H29.0683Z" fill="#575872"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="46" height="50" viewBox="0 0 46 50" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M45.0371 20.9326L41.0618 7.97598C41.0611 7.97363 41.0603 7.9708 41.0594 7.96807C40.5473 6.30772 39.1862 5.37969 38.7807 5.13457C38.7756 5.13154 38.7704 5.12832 38.7654 5.12539L31.3374 0.861719C31.0916 0.698926 29.9167 0 27.8671 0H18.1331C16.0834 0 14.9086 0.698926 14.6628 0.861719L13.5562 1.49697L13.3552 1.6123L13.3551 1.6124L7.23509 5.12559C7.23001 5.12852 7.22483 5.13154 7.21995 5.13467C6.81458 5.37949 5.45374 6.30703 4.94124 7.96738C4.94026 7.97021 4.93948 7.97324 4.9385 7.97607L0.963112 20.9326C0.840163 21.3335 1.05188 21.7604 1.44534 21.9052L8.10501 24.3547V27.7635V46.0859V49.2106C8.10501 49.6468 8.45852 50.0001 8.89446 50.0001H37.1058C37.5419 50.0001 37.8952 49.6468 37.8952 49.2106V46.0858V33.764C37.8952 33.3278 37.5418 32.9745 37.1058 32.9745C36.6698 32.9745 36.3163 33.3279 36.3163 33.764V45.2963H17.6797C17.2437 45.2963 16.8903 45.6496 16.8903 46.0857C16.8903 46.5219 17.2438 46.8752 17.6797 46.8752H36.3163V48.421H9.68391V46.8751H14.8903C15.3263 46.8751 15.6797 46.5218 15.6797 46.0856C15.6797 45.6495 15.3262 45.2962 14.8903 45.2962H9.68391V27.7634V23.8039V20.2568V16.4624C9.68391 16.0263 9.3304 15.6729 8.89446 15.6729C8.45852 15.6729 8.10501 16.0264 8.10501 16.4624V19.1149L3.6845 17.4462L6.44592 8.4458C6.4468 8.44307 6.44768 8.44014 6.44856 8.4374C6.79241 7.3166 7.73606 6.66855 8.02932 6.49023L13.5007 3.34951C14.1841 4.31621 17.3694 8.80986 18.3993 10.033C18.718 10.4114 19.1448 10.6114 19.6331 10.6115C19.6333 10.6115 19.6332 10.6115 19.6334 10.6115C19.9145 10.6115 20.2031 10.539 20.4903 10.4173V16.4542V19.6203C20.4903 20.0564 20.8438 20.4098 21.2797 20.4098H24.4045C24.8407 20.4098 25.194 20.0564 25.194 19.6203V16.4542V10.4172C25.4813 10.5389 25.7699 10.6115 26.051 10.6115C26.5396 10.6115 26.9661 10.4115 27.2851 10.033C28.3734 8.74033 31.8688 3.7959 32.2748 3.22061L37.9708 6.49033C38.2642 6.66885 39.2078 7.31719 39.5516 8.4376C39.5524 8.43984 39.5531 8.44248 39.554 8.44512L42.3158 17.4465L37.8953 19.1152V16.4627C37.8953 16.0266 37.542 15.6732 37.1059 15.6732C36.6698 15.6732 36.3164 16.0266 36.3164 16.4627V20.2571V23.8042V28.5059V31.1325C36.3164 31.5687 36.6698 31.922 37.1059 31.922C37.542 31.922 37.8953 31.5687 37.8953 31.1325V28.5059V24.3548L44.555 21.9053C44.9485 21.7605 45.1601 21.3335 45.0371 20.9326ZM8.10501 20.8026V22.6724L2.69182 20.6814L3.22034 18.9588L8.10501 20.8026ZM27.4229 1.57891L22.8422 6.16182L18.2615 1.57891H27.4229ZM20.9515 8.19063C20.9314 8.20928 20.9112 8.22832 20.8911 8.24648C20.8711 8.26465 20.8508 8.28252 20.8306 8.30049C20.346 8.73252 19.8959 9.03262 19.6335 9.03262C19.6295 9.03252 19.6263 9.03242 19.6242 9.03242C19.6238 9.03242 19.6232 9.03242 19.6228 9.03242C19.6196 9.02959 19.6142 9.02441 19.607 9.01592C18.6673 7.8999 15.6949 3.7165 14.8761 2.55996L15.474 2.2167C15.4927 2.20596 15.5061 2.19766 15.5225 2.18643C15.5248 2.18486 15.5267 2.18369 15.5292 2.18203C15.5292 2.18203 15.5296 2.18174 15.5297 2.18174C15.5364 2.17734 15.7992 2.00635 16.2972 1.84756L21.7772 7.33027C21.5556 7.58506 21.2663 7.89805 20.9515 8.19063ZM23.6152 18.8309H22.0693V17.2437H23.6152V18.8309ZM23.6153 15.6646H23.6152H22.0693V9.31934C22.3566 9.05176 22.6185 8.77471 22.8423 8.52168C23.0661 8.77471 23.328 9.05166 23.6153 9.31924V15.6646ZM26.0774 9.01582C26.0698 9.0249 26.0642 9.03018 26.063 9.03193C26.0605 9.03223 26.0564 9.03242 26.051 9.03242C25.7846 9.03242 25.3248 8.72353 24.832 8.28105C24.821 8.27119 24.8099 8.26143 24.799 8.25156C24.7715 8.22647 24.7437 8.20039 24.7158 8.17461C24.4076 7.88652 24.1247 7.58027 23.907 7.32998L29.3885 1.84561C29.8864 2.00459 30.1479 2.17695 30.1481 2.17695C30.1681 2.19102 30.1889 2.2043 30.2102 2.2165L30.808 2.55967C29.9894 3.71641 27.0171 7.8998 26.0774 9.01582ZM37.8952 22.6722V20.8024L42.7799 18.9587L43.3084 20.6812L37.8952 22.6722Z" fill="#575872"/>
3
+ <path d="M28.1957 15.6731C27.7596 15.6731 27.4062 16.0265 27.4062 16.4625C27.4062 16.8987 27.7597 17.252 28.1957 17.252H32.722C33.1581 17.252 33.5114 16.8987 33.5114 16.4625C33.5114 16.0264 33.158 15.6731 32.722 15.6731H28.1957Z" fill="#575872"/>
4
+ </svg>