ca-components 0.0.2 → 0.0.4

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 (504) hide show
  1. package/ca-components.d.ts.map +1 -0
  2. package/esm2022/assets/json/ca-table.json +59 -0
  3. package/esm2022/assets/json/ta-detail-dropdown.json +80 -0
  4. package/esm2022/lib/animation/in-out.animation.mjs +73 -0
  5. package/esm2022/lib/animations/accordion-animation.mjs +25 -0
  6. package/esm2022/lib/animations/animation.mjs +30 -0
  7. package/esm2022/lib/animations/close-form.animation.mjs +18 -0
  8. package/esm2022/lib/animations/expand-search-button.animation.mjs +17 -0
  9. package/esm2022/lib/animations/show.animation.mjs +20 -0
  10. package/esm2022/lib/animations/tabs-modal.animation.mjs +78 -0
  11. package/esm2022/lib/ca-components.module.mjs +117 -8
  12. package/esm2022/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.mjs +53 -0
  13. package/esm2022/lib/components/ca-details-dropdown/ca-details-dropdown.component.mjs +116 -0
  14. package/esm2022/lib/components/ca-details-dropdown/models/detail-dropdown.model.mjs +2 -0
  15. package/esm2022/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.mjs +4 -0
  16. package/esm2022/lib/components/ca-dropdown/ca-dropdown.component.mjs +37 -0
  17. package/esm2022/lib/components/ca-filters/ca-filter.component.mjs +165 -0
  18. package/esm2022/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.mjs +541 -0
  19. package/esm2022/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.mjs +75 -0
  20. package/esm2022/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.mjs +191 -0
  21. package/esm2022/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.mjs +131 -0
  22. package/esm2022/lib/components/ca-filters/utils/constants/status-filter.constants.mjs +19 -0
  23. package/esm2022/lib/components/ca-filters/utils/constants/time-filter.constants.mjs +45 -0
  24. package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.mjs +7 -0
  25. package/esm2022/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.mjs +4 -0
  26. package/esm2022/lib/components/ca-input/ca-input.component.mjs +179 -0
  27. package/esm2022/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.mjs +55 -0
  28. package/esm2022/lib/components/ca-input/components/ca-input-password/ca-input-password.component.mjs +63 -0
  29. package/esm2022/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.mjs +52 -0
  30. package/esm2022/lib/components/ca-input/config/ca-input.config.mjs +2 -0
  31. package/esm2022/lib/components/ca-input/models/label-color.model.mjs +2 -0
  32. package/esm2022/lib/components/ca-input/pipes/input-class.pipe.mjs +89 -0
  33. package/esm2022/lib/components/ca-input/pipes/input-clear-class.pipe.mjs +76 -0
  34. package/esm2022/lib/components/ca-input/pipes/input-container-class.pipe.mjs +57 -0
  35. package/esm2022/lib/components/ca-input/pipes/input-error.pipe.mjs +85 -0
  36. package/esm2022/lib/components/ca-input/pipes/input-password-eye-class.pipe.mjs +37 -0
  37. package/esm2022/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.mjs +57 -0
  38. package/esm2022/lib/components/ca-input/pipes/input-type.pipe.mjs +25 -0
  39. package/esm2022/lib/components/ca-input/pipes/label-class.pipe.mjs +32 -0
  40. package/esm2022/lib/components/ca-input/pipes/show-clear.pipe.mjs +22 -0
  41. package/esm2022/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.mjs +27 -0
  42. package/esm2022/lib/components/ca-input/pipes/show-valid-check.pipe.mjs +27 -0
  43. package/esm2022/lib/components/ca-input/services/ca-input-state.service.mjs +92 -0
  44. package/esm2022/lib/components/ca-input/utils/input-svg-routes.mjs +9 -0
  45. package/esm2022/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.mjs +43 -0
  46. package/esm2022/lib/components/ca-map/ca-map.component.mjs +329 -0
  47. package/esm2022/lib/components/ca-map/enums/google-map.enum.mjs +6 -0
  48. package/esm2022/lib/components/ca-map/enums/toolbar-filter-string.enum.mjs +40 -0
  49. package/esm2022/lib/components/ca-map/models/map.model.mjs +2 -0
  50. package/esm2022/lib/components/ca-map/utils/helpers/map.helper.mjs +87 -0
  51. package/esm2022/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.mjs +5 -0
  52. package/esm2022/lib/components/ca-map-dropdown/ca-map-dropdown.component.mjs +55 -0
  53. package/esm2022/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.mjs +19 -0
  54. package/esm2022/lib/components/ca-note/ca-note.component.mjs +238 -0
  55. package/esm2022/lib/components/ca-note/utils/helper/copy-paste.helper.mjs +8 -0
  56. package/esm2022/lib/components/ca-note/utils/svg-routes/note-svg-routes.mjs +6 -0
  57. package/esm2022/lib/components/ca-note-container/ca-note-container.component.mjs +153 -0
  58. package/esm2022/lib/components/ca-note-container/enums/note-default-string.enum.mjs +11 -0
  59. package/esm2022/lib/components/ca-note-container/enums/note-selected-color.enum.mjs +6 -0
  60. package/esm2022/lib/components/ca-note-container/models/note-colors.model.mjs +2 -0
  61. package/esm2022/lib/components/ca-note-container/utils/constants/note-config.constant.mjs +61 -0
  62. package/esm2022/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.mjs +9 -0
  63. package/esm2022/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.mjs +53 -0
  64. package/esm2022/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.mjs +5 -0
  65. package/esm2022/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.mjs +26 -0
  66. package/esm2022/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.mjs +44 -0
  67. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.mjs +93 -0
  68. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.mjs +103 -0
  69. package/esm2022/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.mjs +81 -0
  70. package/esm2022/lib/components/ca-pickup-delivery-block/models/adress-model.mjs +2 -0
  71. package/esm2022/lib/components/ca-pickup-delivery-block/models/animation-model.mjs +2 -0
  72. package/esm2022/lib/components/ca-pickup-delivery-block/models/broker-short-response.mjs +2 -0
  73. package/esm2022/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.mjs +2 -0
  74. package/esm2022/lib/components/ca-pickup-delivery-block/models/enum-value.mjs +2 -0
  75. package/esm2022/lib/components/ca-pickup-delivery-block/models/load-short-response.mjs +2 -0
  76. package/esm2022/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.mjs +2 -0
  77. package/esm2022/lib/components/ca-pickup-delivery-block/models/shipper-short-response.mjs +2 -0
  78. package/esm2022/lib/components/ca-pickup-delivery-block/models/status-types.enum.mjs +7 -0
  79. package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.mjs +8 -0
  80. package/esm2022/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.mjs +25 -0
  81. package/esm2022/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.mjs +21 -0
  82. package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.mjs +5 -0
  83. package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.mjs +16 -0
  84. package/esm2022/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.mjs +5 -0
  85. package/esm2022/lib/components/ca-profile-image/ca-profile-image.component.mjs +5 -5
  86. package/esm2022/lib/components/ca-progress-bar/ca-progress-bar.component.mjs +209 -0
  87. package/esm2022/lib/components/ca-progress-bar/models/gps-progress.model.mjs +2 -0
  88. package/esm2022/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.mjs +8 -0
  89. package/esm2022/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.mjs +4 -0
  90. package/esm2022/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.mjs +91 -0
  91. package/esm2022/lib/components/ca-search-multiple-states/utils/config/input-config.mjs +9 -0
  92. package/esm2022/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.mjs +7 -0
  93. package/esm2022/lib/components/ca-spinner/ca-spinner.component.mjs +40 -0
  94. package/esm2022/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.mjs +97 -0
  95. package/esm2022/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.mjs +2 -0
  96. package/esm2022/lib/constants/map.constant.mjs +436 -0
  97. package/esm2022/lib/directives/placeholder-directive.mjs +59 -0
  98. package/esm2022/lib/enums/load-filter-string.enum.mjs +23 -0
  99. package/esm2022/lib/enums/load-status.enum.mjs +58 -0
  100. package/esm2022/lib/models/array-status.model.mjs +2 -0
  101. package/esm2022/lib/models/card-models/card-table-data.model.mjs +2 -0
  102. package/esm2022/lib/models/color-response.mjs +2 -0
  103. package/esm2022/lib/models/dropdown.model.mjs +2 -0
  104. package/esm2022/lib/models/filter-output-params.model.mjs +2 -0
  105. package/esm2022/lib/models/filter-output.model.mjs +2 -0
  106. package/esm2022/lib/models/note-active-options.model.mjs +2 -0
  107. package/esm2022/lib/models/payroll-list-summary.model.mjs +2 -0
  108. package/esm2022/lib/models/table-models/table-body-color-label.model.mjs +2 -0
  109. package/esm2022/lib/models/time-filter.model.mjs +2 -0
  110. package/esm2022/lib/models/trailer-minimal-response.mjs +2 -0
  111. package/esm2022/lib/models/trailer-type-response.mjs +2 -0
  112. package/esm2022/lib/models/truck-minimal-response.mjs +2 -0
  113. package/esm2022/lib/models/truck-type-response.mjs +2 -0
  114. package/esm2022/lib/pipes/dropdown-load-status-color.pipe.mjs +164 -0
  115. package/esm2022/lib/pipes/format-currency.pipe.mjs +22 -0
  116. package/esm2022/lib/pipes/safe-html.pipe.mjs +18 -0
  117. package/esm2022/lib/pipes/ta-svg.pipe.mjs +30 -0
  118. package/esm2022/lib/pipes/thousand-separator.pipe.mjs +19 -0
  119. package/esm2022/lib/pipes/thousand-to-short-format-pipe.mjs +19 -0
  120. package/esm2022/lib/services/truckassist-table.service.mjs +20 -0
  121. package/esm2022/lib/utils/helpers/methods-calculations.helper.mjs +153 -0
  122. package/esm2022/public-api.mjs +21 -3
  123. package/fesm2022/ca-components.mjs +1864 -9
  124. package/fesm2022/ca-components.mjs.map +1 -1
  125. package/index.d.ts +1 -0
  126. package/lib/animation/in-out.animation.d.ts +2 -0
  127. package/lib/animation/in-out.animation.d.ts.map +1 -0
  128. package/lib/animations/accordion-animation.d.ts +2 -0
  129. package/lib/animations/accordion-animation.d.ts.map +1 -0
  130. package/lib/animations/animation.d.ts +5 -0
  131. package/lib/animations/animation.d.ts.map +1 -0
  132. package/lib/animations/close-form.animation.d.ts +2 -0
  133. package/lib/animations/close-form.animation.d.ts.map +1 -0
  134. package/lib/animations/expand-search-button.animation.d.ts +2 -0
  135. package/lib/animations/expand-search-button.animation.d.ts.map +1 -0
  136. package/lib/animations/show.animation.d.ts +2 -0
  137. package/lib/animations/show.animation.d.ts.map +1 -0
  138. package/lib/animations/tabs-modal.animation.d.ts +2 -0
  139. package/lib/animations/tabs-modal.animation.d.ts.map +1 -0
  140. package/lib/ca-components.module.d.ts +19 -1
  141. package/lib/ca-components.module.d.ts.map +1 -0
  142. package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.d.ts +20 -0
  143. package/lib/components/ca-app-tooltip-v2/ca-app-tooltip-v2.component.d.ts.map +1 -0
  144. package/lib/components/ca-details-dropdown/ca-details-dropdown.component.d.ts +36 -0
  145. package/lib/components/ca-details-dropdown/ca-details-dropdown.component.d.ts.map +1 -0
  146. package/lib/components/ca-details-dropdown/models/detail-dropdown.model.d.ts +20 -0
  147. package/lib/components/ca-details-dropdown/models/detail-dropdown.model.d.ts.map +1 -0
  148. package/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.d.ts +4 -0
  149. package/lib/components/ca-details-dropdown/utils/svg-routes/detail-dropdown-svg-routes.d.ts.map +1 -0
  150. package/lib/components/ca-dropdown/ca-dropdown.component.d.ts +15 -0
  151. package/lib/components/ca-dropdown/ca-dropdown.component.d.ts.map +1 -0
  152. package/lib/components/ca-filters/ca-filter.component.d.ts +47 -0
  153. package/lib/components/ca-filters/ca-filter.component.d.ts.map +1 -0
  154. package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts +79 -0
  155. package/lib/components/ca-filters/components/ca-money-filter/ca-money-filter.component.d.ts.map +1 -0
  156. package/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.d.ts +12 -0
  157. package/lib/components/ca-filters/components/ca-money-filter/config/ca-money-filter.config.d.ts.map +1 -0
  158. package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.d.ts +63 -0
  159. package/lib/components/ca-filters/components/ca-status-filter/ca-status-filter.component.d.ts.map +1 -0
  160. package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.d.ts +34 -0
  161. package/lib/components/ca-filters/components/ca-time-filter/ca-time-filter.component.d.ts.map +1 -0
  162. package/lib/components/ca-filters/utils/constants/status-filter.constants.d.ts +10 -0
  163. package/lib/components/ca-filters/utils/constants/status-filter.constants.d.ts.map +1 -0
  164. package/lib/components/ca-filters/utils/constants/time-filter.constants.d.ts +9 -0
  165. package/lib/components/ca-filters/utils/constants/time-filter.constants.d.ts.map +1 -0
  166. package/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.d.ts +7 -0
  167. package/lib/components/ca-filters/utils/svg-routes/ca-filters-svg-routes.d.ts.map +1 -0
  168. package/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.d.ts +4 -0
  169. package/lib/components/ca-filters/utils/svg-routes/ca-money-filter-svg-routes.d.ts.map +1 -0
  170. package/lib/components/ca-input/ca-input.component.d.ts +47 -0
  171. package/lib/components/ca-input/ca-input.component.d.ts.map +1 -0
  172. package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts +20 -0
  173. package/lib/components/ca-input/components/ca-input-clear/ca-input-clear.component.d.ts.map +1 -0
  174. package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.d.ts +21 -0
  175. package/lib/components/ca-input/components/ca-input-password/ca-input-password.component.d.ts.map +1 -0
  176. package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts +17 -0
  177. package/lib/components/ca-input/components/ca-input-placeholder-icon/ca-input-placeholder-icon.component.d.ts.map +1 -0
  178. package/lib/components/ca-input/config/ca-input.config.d.ts +137 -0
  179. package/lib/components/ca-input/config/ca-input.config.d.ts.map +1 -0
  180. package/lib/components/ca-input/models/label-color.model.d.ts +12 -0
  181. package/lib/components/ca-input/models/label-color.model.d.ts.map +1 -0
  182. package/lib/components/ca-input/pipes/input-class.pipe.d.ts +14 -0
  183. package/lib/components/ca-input/pipes/input-class.pipe.d.ts.map +1 -0
  184. package/lib/components/ca-input/pipes/input-clear-class.pipe.d.ts +12 -0
  185. package/lib/components/ca-input/pipes/input-clear-class.pipe.d.ts.map +1 -0
  186. package/lib/components/ca-input/pipes/input-container-class.pipe.d.ts +12 -0
  187. package/lib/components/ca-input/pipes/input-container-class.pipe.d.ts.map +1 -0
  188. package/lib/components/ca-input/pipes/input-error.pipe.d.ts +8 -0
  189. package/lib/components/ca-input/pipes/input-error.pipe.d.ts.map +1 -0
  190. package/lib/components/ca-input/pipes/input-password-eye-class.pipe.d.ts +12 -0
  191. package/lib/components/ca-input/pipes/input-password-eye-class.pipe.d.ts.map +1 -0
  192. package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.d.ts +13 -0
  193. package/lib/components/ca-input/pipes/input-placeholder-icon.class.pipe.d.ts.map +1 -0
  194. package/lib/components/ca-input/pipes/input-type.pipe.d.ts +8 -0
  195. package/lib/components/ca-input/pipes/input-type.pipe.d.ts.map +1 -0
  196. package/lib/components/ca-input/pipes/label-class.pipe.d.ts +11 -0
  197. package/lib/components/ca-input/pipes/label-class.pipe.d.ts.map +1 -0
  198. package/lib/components/ca-input/pipes/show-clear.pipe.d.ts +9 -0
  199. package/lib/components/ca-input/pipes/show-clear.pipe.d.ts.map +1 -0
  200. package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.d.ts +10 -0
  201. package/lib/components/ca-input/pipes/show-invalid-danger-mark.pipe.d.ts.map +1 -0
  202. package/lib/components/ca-input/pipes/show-valid-check.pipe.d.ts +10 -0
  203. package/lib/components/ca-input/pipes/show-valid-check.pipe.d.ts.map +1 -0
  204. package/lib/components/ca-input/services/ca-input-state.service.d.ts +25 -0
  205. package/lib/components/ca-input/services/ca-input-state.service.d.ts.map +1 -0
  206. package/lib/components/ca-input/utils/input-svg-routes.d.ts +9 -0
  207. package/lib/components/ca-input/utils/input-svg-routes.d.ts.map +1 -0
  208. package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.d.ts +22 -0
  209. package/lib/components/ca-input-radiobuttons/ca-input-radiobuttons.component.d.ts.map +1 -0
  210. package/lib/components/ca-map/ca-map.component.d.ts +57 -0
  211. package/lib/components/ca-map/ca-map.component.d.ts.map +1 -0
  212. package/lib/components/ca-map/enums/google-map.enum.d.ts +5 -0
  213. package/lib/components/ca-map/enums/google-map.enum.d.ts.map +1 -0
  214. package/lib/components/ca-map/enums/toolbar-filter-string.enum.d.ts +34 -0
  215. package/lib/components/ca-map/enums/toolbar-filter-string.enum.d.ts.map +1 -0
  216. package/lib/components/ca-map/models/map.model.d.ts +75 -0
  217. package/lib/components/ca-map/models/map.model.d.ts.map +1 -0
  218. package/lib/components/ca-map/utils/helpers/map.helper.d.ts +10 -0
  219. package/lib/components/ca-map/utils/helpers/map.helper.d.ts.map +1 -0
  220. package/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.d.ts +5 -0
  221. package/lib/components/ca-map/utils/map-svg-routes/map-svg-routes.d.ts.map +1 -0
  222. package/lib/components/ca-map-dropdown/ca-map-dropdown.component.d.ts +43 -0
  223. package/lib/components/ca-map-dropdown/ca-map-dropdown.component.d.ts.map +1 -0
  224. package/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.d.ts +19 -0
  225. package/lib/components/ca-map-dropdown/utils/svg-routes/map-dropdown-svg-routes.d.ts.map +1 -0
  226. package/lib/components/ca-note/ca-note.component.d.ts +57 -0
  227. package/lib/components/ca-note/ca-note.component.d.ts.map +1 -0
  228. package/lib/components/ca-note/utils/helper/copy-paste.helper.d.ts +4 -0
  229. package/lib/components/ca-note/utils/helper/copy-paste.helper.d.ts.map +1 -0
  230. package/lib/components/ca-note/utils/svg-routes/note-svg-routes.d.ts +6 -0
  231. package/lib/components/ca-note/utils/svg-routes/note-svg-routes.d.ts.map +1 -0
  232. package/lib/components/ca-note-container/ca-note-container.component.d.ts +39 -0
  233. package/lib/components/ca-note-container/ca-note-container.component.d.ts.map +1 -0
  234. package/lib/components/ca-note-container/enums/note-default-string.enum.d.ts +10 -0
  235. package/lib/components/ca-note-container/enums/note-default-string.enum.d.ts.map +1 -0
  236. package/lib/components/ca-note-container/enums/note-selected-color.enum.d.ts +5 -0
  237. package/lib/components/ca-note-container/enums/note-selected-color.enum.d.ts.map +1 -0
  238. package/lib/components/ca-note-container/models/note-colors.model.d.ts +5 -0
  239. package/lib/components/ca-note-container/models/note-colors.model.d.ts.map +1 -0
  240. package/lib/components/ca-note-container/utils/constants/note-config.constant.d.ts +8 -0
  241. package/lib/components/ca-note-container/utils/constants/note-config.constant.d.ts.map +1 -0
  242. package/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.d.ts +9 -0
  243. package/lib/components/ca-note-container/utils/svg-routes/note-container-svg-routes.d.ts.map +1 -0
  244. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts +21 -0
  245. package/lib/components/ca-payroll-list-summary-overview/ca-payroll-list-summary-overview.component.d.ts.map +1 -0
  246. package/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.d.ts +5 -0
  247. package/lib/components/ca-payroll-list-summary-overview/utils/svg-routes/payroll-list-summary-svg-routes.d.ts.map +1 -0
  248. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.d.ts +21 -0
  249. package/lib/components/ca-payroll-list-summary-overview-table/ca-payroll-list-summary-overview-table.component.d.ts.map +1 -0
  250. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts +20 -0
  251. package/lib/components/ca-pickup-delivery-block/ca-pickup-delivery-block.component.d.ts.map +1 -0
  252. package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.d.ts +31 -0
  253. package/lib/components/ca-pickup-delivery-block/components/ca-load/ca-load.component.d.ts.map +1 -0
  254. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.d.ts +31 -0
  255. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-list/ca-load-list.component.d.ts.map +1 -0
  256. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts +24 -0
  257. package/lib/components/ca-pickup-delivery-block/components/ca-load/components/ca-load-single/ca-load-single.component.d.ts.map +1 -0
  258. package/lib/components/ca-pickup-delivery-block/models/adress-model.d.ts +13 -0
  259. package/lib/components/ca-pickup-delivery-block/models/adress-model.d.ts.map +1 -0
  260. package/lib/components/ca-pickup-delivery-block/models/animation-model.d.ts +8 -0
  261. package/lib/components/ca-pickup-delivery-block/models/animation-model.d.ts.map +1 -0
  262. package/lib/components/ca-pickup-delivery-block/models/broker-short-response.d.ts +14 -0
  263. package/lib/components/ca-pickup-delivery-block/models/broker-short-response.d.ts.map +1 -0
  264. package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts +7 -0
  265. package/lib/components/ca-pickup-delivery-block/models/dispatch-assigned-load-list-response.d.ts.map +1 -0
  266. package/lib/components/ca-pickup-delivery-block/models/enum-value.d.ts +5 -0
  267. package/lib/components/ca-pickup-delivery-block/models/enum-value.d.ts.map +1 -0
  268. package/lib/components/ca-pickup-delivery-block/models/load-short-response.d.ts +19 -0
  269. package/lib/components/ca-pickup-delivery-block/models/load-short-response.d.ts.map +1 -0
  270. package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.d.ts +10 -0
  271. package/lib/components/ca-pickup-delivery-block/models/load-stop-short-response.d.ts.map +1 -0
  272. package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.d.ts +9 -0
  273. package/lib/components/ca-pickup-delivery-block/models/shipper-short-response.d.ts.map +1 -0
  274. package/lib/components/ca-pickup-delivery-block/models/status-types.enum.d.ts +6 -0
  275. package/lib/components/ca-pickup-delivery-block/models/status-types.enum.d.ts.map +1 -0
  276. package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.d.ts +5 -0
  277. package/lib/components/ca-pickup-delivery-block/utils/constants/animation-object-default.constants.d.ts.map +1 -0
  278. package/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.d.ts +15 -0
  279. package/lib/components/ca-pickup-delivery-block/utils/constants/pickup-delivery-block.constants.d.ts.map +1 -0
  280. package/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.d.ts +10 -0
  281. package/lib/components/ca-pickup-delivery-block/utils/helpers/pickup-delivery.helper.d.ts.map +1 -0
  282. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.d.ts +5 -0
  283. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/options-icon.routes.d.ts.map +1 -0
  284. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.d.ts +16 -0
  285. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/pickup-delivery-svg.routes.d.ts.map +1 -0
  286. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.d.ts +5 -0
  287. package/lib/components/ca-pickup-delivery-block/utils/svg-routes/return-arrow.routes.d.ts.map +1 -0
  288. package/lib/components/ca-profile-image/ca-profile-image.component.d.ts +2 -1
  289. package/lib/components/ca-profile-image/ca-profile-image.component.d.ts.map +1 -0
  290. package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts +116 -0
  291. package/lib/components/ca-progress-bar/ca-progress-bar.component.d.ts.map +1 -0
  292. package/lib/components/ca-progress-bar/models/gps-progress.model.d.ts +9 -0
  293. package/lib/components/ca-progress-bar/models/gps-progress.model.d.ts.map +1 -0
  294. package/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.d.ts +8 -0
  295. package/lib/components/ca-progress-bar/utils/constants/progress-bar.constants.d.ts.map +1 -0
  296. package/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.d.ts +4 -0
  297. package/lib/components/ca-progress-bar/utils/svg-routes/progress-bar-svg-routes.d.ts.map +1 -0
  298. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts +25 -0
  299. package/lib/components/ca-search-multiple-states/ca-search-multiple-states.component.d.ts.map +1 -0
  300. package/lib/components/ca-search-multiple-states/utils/config/input-config.d.ts +3 -0
  301. package/lib/components/ca-search-multiple-states/utils/config/input-config.d.ts.map +1 -0
  302. package/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.d.ts +7 -0
  303. package/lib/components/ca-search-multiple-states/utils/svg-routes/search-multiple-states.routes.d.ts.map +1 -0
  304. package/lib/components/ca-spinner/ca-spinner.component.d.ts +16 -0
  305. package/lib/components/ca-spinner/ca-spinner.component.d.ts.map +1 -0
  306. package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts +24 -0
  307. package/lib/components/ca-truck-trailer-progress-bar/ca-truck-trailer-progress-bar.component.d.ts.map +1 -0
  308. package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.d.ts +6 -0
  309. package/lib/components/ca-truck-trailer-progress-bar/models/progress-dropdown-data.model.d.ts.map +1 -0
  310. package/lib/constants/map.constant.d.ts +40 -0
  311. package/lib/constants/map.constant.d.ts.map +1 -0
  312. package/lib/directives/placeholder-directive.d.ts +16 -0
  313. package/lib/directives/placeholder-directive.d.ts.map +1 -0
  314. package/lib/enums/load-filter-string.enum.d.ts +17 -0
  315. package/lib/enums/load-filter-string.enum.d.ts.map +1 -0
  316. package/lib/enums/load-status.enum.d.ts +57 -0
  317. package/lib/enums/load-status.enum.d.ts.map +1 -0
  318. package/lib/models/array-status.model.d.ts +25 -0
  319. package/lib/models/array-status.model.d.ts.map +1 -0
  320. package/lib/models/card-models/card-table-data.model.d.ts +838 -0
  321. package/lib/models/card-models/card-table-data.model.d.ts.map +1 -0
  322. package/lib/models/color-response.d.ts +7 -0
  323. package/lib/models/color-response.d.ts.map +1 -0
  324. package/lib/models/dropdown.model.d.ts +5 -0
  325. package/lib/models/dropdown.model.d.ts.map +1 -0
  326. package/lib/models/filter-output-params.model.d.ts +6 -0
  327. package/lib/models/filter-output-params.model.d.ts.map +1 -0
  328. package/lib/models/filter-output.model.d.ts +7 -0
  329. package/lib/models/filter-output.model.d.ts.map +1 -0
  330. package/lib/models/note-active-options.model.d.ts +7 -0
  331. package/lib/models/note-active-options.model.d.ts.map +1 -0
  332. package/lib/models/payroll-list-summary.model.d.ts +13 -0
  333. package/lib/models/payroll-list-summary.model.d.ts.map +1 -0
  334. package/lib/models/table-models/table-body-color-label.model.d.ts +12 -0
  335. package/lib/models/table-models/table-body-color-label.model.d.ts.map +1 -0
  336. package/lib/models/time-filter.model.d.ts +8 -0
  337. package/lib/models/time-filter.model.d.ts.map +1 -0
  338. package/lib/models/trailer-minimal-response.d.ts +12 -0
  339. package/lib/models/trailer-minimal-response.d.ts.map +1 -0
  340. package/lib/models/trailer-type-response.d.ts +8 -0
  341. package/lib/models/trailer-type-response.d.ts.map +1 -0
  342. package/lib/models/truck-minimal-response.d.ts +14 -0
  343. package/lib/models/truck-minimal-response.d.ts.map +1 -0
  344. package/lib/models/truck-type-response.d.ts +7 -0
  345. package/lib/models/truck-type-response.d.ts.map +1 -0
  346. package/lib/pipes/dropdown-load-status-color.pipe.d.ts +11 -0
  347. package/lib/pipes/dropdown-load-status-color.pipe.d.ts.map +1 -0
  348. package/lib/pipes/format-currency.pipe.d.ts +8 -0
  349. package/lib/pipes/format-currency.pipe.d.ts.map +1 -0
  350. package/lib/pipes/safe-html.pipe.d.ts +11 -0
  351. package/lib/pipes/safe-html.pipe.d.ts.map +1 -0
  352. package/lib/pipes/ta-svg.pipe.d.ts +8 -0
  353. package/lib/pipes/ta-svg.pipe.d.ts.map +1 -0
  354. package/lib/pipes/thousand-separator.pipe.d.ts +8 -0
  355. package/lib/pipes/thousand-separator.pipe.d.ts.map +1 -0
  356. package/lib/pipes/thousand-to-short-format-pipe.d.ts +8 -0
  357. package/lib/pipes/thousand-to-short-format-pipe.d.ts.map +1 -0
  358. package/lib/services/truckassist-table.service.d.ts +8 -0
  359. package/lib/services/truckassist-table.service.d.ts.map +1 -0
  360. package/lib/utils/helpers/methods-calculations.helper.d.ts +16 -0
  361. package/lib/utils/helpers/methods-calculations.helper.d.ts.map +1 -0
  362. package/package.json +1 -1
  363. package/public-api.d.ts +21 -2
  364. package/public-api.d.ts.map +1 -0
  365. package/src/assets/global_style/styles.scss +45 -0
  366. package/src/assets/json/ca-dropdown.json +12 -0
  367. package/src/assets/json/ca-payroll-list-summary.json +71 -0
  368. package/src/assets/json/ca-table.json +59 -0
  369. package/src/assets/json/ta-detail-dropdown.json +80 -0
  370. package/src/assets/json/truck-trailer-progress-bar.json +1453 -0
  371. package/src/assets/json/usa-states.json +54 -0
  372. package/src/assets/kml/timezones.kml +1608 -0
  373. package/src/assets/kml/toll-roads/California.kml +55 -0
  374. package/src/assets/kml/toll-roads/Texas.kml +5079 -0
  375. package/src/assets/kml/toll-roads/florida.kml +2092 -0
  376. package/src/assets/lottie/ta-lottie-spinner/18px/black.json +1 -0
  377. package/src/assets/lottie/ta-lottie-spinner/18px/blueDark.json +1 -0
  378. package/src/assets/lottie/ta-lottie-spinner/18px/blueLight.json +1 -0
  379. package/src/assets/lottie/ta-lottie-spinner/18px/gray.json +1 -0
  380. package/src/assets/lottie/ta-lottie-spinner/18px/white.json +1 -0
  381. package/src/assets/lottie/ta-lottie-spinner/32px/black.json +1 -0
  382. package/src/assets/lottie/ta-lottie-spinner/32px/blueLight.json +1 -0
  383. package/src/assets/lottie/ta-lottie-spinner/32px/dark.json +1 -0
  384. package/src/assets/lottie/ta-lottie-spinner/32px/gray.json +1 -0
  385. package/src/assets/lottie/ta-lottie-spinner/32px/white.json +1 -0
  386. package/src/assets/scss/font-family.scss +2 -0
  387. package/src/assets/scss/font-weight.scss +36 -0
  388. package/src/assets/scss/popover.scss +112 -0
  389. package/src/assets/svg/common/calendar/arrow-left.svg +3 -0
  390. package/src/assets/svg/common/ic_confirm.svg +3 -0
  391. package/src/assets/svg/common/ic_search.svg +3 -0
  392. package/src/assets/svg/common/payroll-down-arrow.svg +3 -0
  393. package/src/assets/svg/common/payroll-up-arrow.svg +3 -0
  394. package/src/assets/svg/common/sortArrow_filter.svg +3 -0
  395. package/src/assets/svg/input/ic_confirm.svg +3 -0
  396. package/src/assets/svg/input/ic_danger.svg +3 -0
  397. package/src/assets/svg/input/ic_eye-hidden.svg +6 -0
  398. package/src/assets/svg/input/ic_eye-visible.svg +6 -0
  399. package/src/assets/svg/input/ic_password.svg +6 -0
  400. package/src/assets/svg/input/ic_remove_input.svg +7 -0
  401. package/src/assets/svg/input/ic_x.svg +4 -0
  402. package/src/assets/svg/map/18px_tooltip.svg +3 -0
  403. package/src/assets/svg/map/accident_calender.svg +3 -0
  404. package/src/assets/svg/map/accident_hazmat.svg +3 -0
  405. package/src/assets/svg/map/accident_injury.svg +3 -0
  406. package/src/assets/svg/map/accident_towing.svg +3 -0
  407. package/src/assets/svg/map/accident_vechile.svg +3 -0
  408. package/src/assets/svg/map/address.svg +3 -0
  409. package/src/assets/svg/map/arrow_corner_top.svg +3 -0
  410. package/src/assets/svg/map/calender_last_used.svg +3 -0
  411. package/src/assets/svg/map/check.svg +3 -0
  412. package/src/assets/svg/map/cluster_marker_4.svg +32 -0
  413. package/src/assets/svg/map/cluster_marker_6.svg +32 -0
  414. package/src/assets/svg/map/details_options.svg +10 -0
  415. package/src/assets/svg/map/details_options_2.svg +3 -0
  416. package/src/assets/svg/map/dislike.svg +3 -0
  417. package/src/assets/svg/map/email.svg +3 -0
  418. package/src/assets/svg/map/extended_stop_ignition.svg +11 -0
  419. package/src/assets/svg/map/gps-location.svg +4 -0
  420. package/src/assets/svg/map/gps_extended_status.svg +4 -0
  421. package/src/assets/svg/map/gps_full.svg +7 -0
  422. package/src/assets/svg/map/gps_parking_status.svg +4 -0
  423. package/src/assets/svg/map/gps_short_status.svg +4 -0
  424. package/src/assets/svg/map/gps_trailer_extended.svg +11 -0
  425. package/src/assets/svg/map/gps_trailer_moving.svg +16 -0
  426. package/src/assets/svg/map/gps_trailer_parking.svg +11 -0
  427. package/src/assets/svg/map/gps_trailer_short_stop.svg +11 -0
  428. package/src/assets/svg/map/ic_marker_office.svg +18 -0
  429. package/src/assets/svg/map/ic_pulse_circle.svg +1 -0
  430. package/src/assets/svg/map/like.svg +3 -0
  431. package/src/assets/svg/map/marker.svg +27 -0
  432. package/src/assets/svg/map/marker_2.svg +27 -0
  433. package/src/assets/svg/map/marker_3.svg +27 -0
  434. package/src/assets/svg/map/marker_4.svg +27 -0
  435. package/src/assets/svg/map/marker_5.svg +27 -0
  436. package/src/assets/svg/map/marker_cluster.svg +32 -0
  437. package/src/assets/svg/map/marker_cluster_2.svg +32 -0
  438. package/src/assets/svg/map/marker_dot.svg +18 -0
  439. package/src/assets/svg/map/marker_dot_2.svg +18 -0
  440. package/src/assets/svg/map/mask_group.svg +546 -0
  441. package/src/assets/svg/map/no_gps_status.svg +8 -0
  442. package/src/assets/svg/map/oss.svg +3 -0
  443. package/src/assets/svg/map/parking_ignition.svg +11 -0
  444. package/src/assets/svg/map/parking_trailer_ignition.svg +11 -0
  445. package/src/assets/svg/map/phone.svg +3 -0
  446. package/src/assets/svg/map/progress-marker-checked.svg +20 -0
  447. package/src/assets/svg/map/progress-marker-pickup-checked.svg +20 -0
  448. package/src/assets/svg/map/progress-marker-pickup.svg +20 -0
  449. package/src/assets/svg/map/progress_marker-pin-dark.svg +20 -0
  450. package/src/assets/svg/map/progress_marker.svg +20 -0
  451. package/src/assets/svg/map/progress_marker_reached.svg +20 -0
  452. package/src/assets/svg/map/review.svg +3 -0
  453. package/src/assets/svg/map/routing_marker.svg +19 -0
  454. package/src/assets/svg/map/short_stop_ignition.svg +11 -0
  455. package/src/assets/svg/map/short_stop_trailer_ignition.svg +16 -0
  456. package/src/assets/svg/map/telematic_marker.svg +19 -0
  457. package/src/assets/svg/map/telematic_marker_1.svg +19 -0
  458. package/src/assets/svg/map/telematic_marker_2.svg +18 -0
  459. package/src/assets/svg/map/unitView_marker.svg +20 -0
  460. package/src/assets/svg/note/Itallic.svg +3 -0
  461. package/src/assets/svg/note/Note.svg +3 -0
  462. package/src/assets/svg/note/Underline.svg +3 -0
  463. package/src/assets/svg/note/arrow.svg +3 -0
  464. package/src/assets/svg/note/bold.svg +3 -0
  465. package/src/assets/svg/note/color-picker-inverse.svg +10 -0
  466. package/src/assets/svg/note/note-empty-dark.svg +3 -0
  467. package/src/assets/svg/note/note-empty.svg +3 -0
  468. package/src/assets/svg/note/note-filled.svg +3 -0
  469. package/src/assets/svg/note/tick.svg +3 -0
  470. package/src/assets/svg/pickup-delivery/Miles.svg +3 -0
  471. package/src/assets/svg/pickup-delivery/Options.svg +3 -0
  472. package/src/assets/svg/pickup-delivery/arrowLeft.svg +10 -0
  473. package/src/assets/svg/pickup-delivery/arrowLeftHover.svg +10 -0
  474. package/src/assets/svg/pickup-delivery/arrowRight.svg +3 -0
  475. package/src/assets/svg/pickup-delivery/detailsOptions.svg +3 -0
  476. package/src/assets/svg/pickup-delivery/leftArrow.svg +3 -0
  477. package/src/assets/svg/pickup-delivery/mailIcon.svg +3 -0
  478. package/src/assets/svg/pickup-delivery/mapOptionsDark.svg +11 -0
  479. package/src/assets/svg/pickup-delivery/optionsVertical.svg +10 -0
  480. package/src/assets/svg/pickup-delivery/phoneIcon.svg +3 -0
  481. package/src/assets/svg/pickup-delivery/userIcon.svg +3 -0
  482. package/src/assets/svg/pickup-delivery/vector.svg +3 -0
  483. package/src/assets/svg/popup/Delete.svg +4 -0
  484. package/src/assets/svg/popup/Information.svg +3 -0
  485. package/src/assets/svg/popup/Minus.svg +3 -0
  486. package/src/assets/svg/popup/Print.svg +3 -0
  487. package/src/assets/svg/popup/Share.svg +3 -0
  488. package/src/assets/svg/popup/close-business-icon.svg +6 -0
  489. package/src/assets/svg/popup/delete-hover-new.svg +9 -0
  490. package/src/assets/svg/popup/edit-hover.svg +10 -0
  491. package/src/assets/svg/popup/ic_broker-user.svg +1 -0
  492. package/src/assets/svg/popup/ic_info.svg +6 -0
  493. package/src/assets/svg/popup/ic_print.svg +1 -0
  494. package/src/assets/svg/popup/resize-arrow.svg +1 -0
  495. package/src/assets/svg/popup/review-pen.svg +6 -0
  496. package/src/assets/svg/popup/share-icon.svg +6 -0
  497. package/src/assets/svg/popup/trash.svg +4 -0
  498. package/src/assets/svg/search-multiple-states/add.svg +4 -0
  499. package/src/assets/svg/search-multiple-states/clear-search.svg +4 -0
  500. package/src/assets/svg/search-multiple-states/focused-search-button.svg +3 -0
  501. package/src/assets/svg/search-multiple-states/search-button.svg +3 -0
  502. package/src/assets/svg/truckassist-table/x.svg +1 -0
  503. package/src/assets/theme/main.scss +193 -0
  504. package/src/assets/theme/variables.scss +361 -0
@@ -0,0 +1,3 @@
1
+ <svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M3.06084 2.27259H1.48584C1.28038 2.27152 1.08272 2.35124 0.935482 2.49455C0.788244 2.63786 0.703217 2.83329 0.69873 3.03871L0.69873 8.52904C0.69922 8.63125 0.720074 8.73234 0.760075 8.8264C0.800077 8.92046 0.858423 9.0056 0.931705 9.07686C1.00499 9.14811 1.09173 9.20405 1.18688 9.24139C1.28202 9.27874 1.38366 9.29675 1.48584 9.29437H3.06084C3.26617 9.29545 3.46372 9.21584 3.61093 9.0727C3.75815 8.92955 3.84327 8.73432 3.84795 8.52904V3.06048C3.84805 2.95705 3.82777 2.85461 3.78826 2.75903C3.74875 2.66344 3.69079 2.57658 3.61769 2.50341C3.54459 2.43023 3.45778 2.37219 3.36224 2.33258C3.26669 2.29298 3.16427 2.27259 3.06084 2.27259ZM12.1982 7.39504C12.341 7.24054 12.4398 7.05053 12.4841 6.84484C12.5284 6.63915 12.5167 6.42533 12.4502 6.22571C12.3837 6.02609 12.2648 5.84799 12.106 5.71C11.9471 5.57201 11.7541 5.4792 11.5472 5.44126C11.6412 5.28836 11.6993 5.11614 11.7172 4.93754C11.735 4.75895 11.7122 4.57863 11.6504 4.41013C11.5885 4.24163 11.4893 4.08934 11.3602 3.96469C11.231 3.84005 11.0753 3.7463 10.9047 3.69048C10.9259 3.61268 10.9364 3.53234 10.9358 3.4517C10.9354 3.13884 10.8109 2.83893 10.5895 2.61785C10.3681 2.39677 10.068 2.27259 9.75517 2.27259H8.31084C7.45906 2.27254 6.63023 2.54872 5.94873 3.05971L5.10873 3.6897C4.9645 3.79707 4.8469 3.93618 4.76503 4.09627C4.68316 4.25636 4.63923 4.43314 4.63662 4.61293V8.55082C4.63676 8.72727 4.67644 8.90145 4.75276 9.06054C4.82908 9.21964 4.94009 9.35961 5.07762 9.47015L5.47895 9.7906C7.49417 11.4239 6.58806 13.2976 8.14129 13.2976C8.29934 13.3013 8.45655 13.2735 8.60372 13.2157C8.75089 13.158 8.88507 13.0715 8.99841 12.9612C9.11175 12.851 9.20197 12.7193 9.2638 12.5738C9.32563 12.4283 9.35783 12.2719 9.35851 12.1138C9.24495 11.2752 8.95552 10.47 8.50917 9.75093H12.1157C12.4222 9.75191 12.7169 9.63347 12.9375 9.42076C13.158 9.20804 13.2871 8.91776 13.2972 8.61151C13.3073 8.30525 13.1977 8.00709 12.9917 7.78028C12.7856 7.55347 12.4993 7.41585 12.1935 7.3966L12.1982 7.39504Z" fill="#919191" fill-opacity="0.4"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.1985 2.70312H1.79855C1.55604 2.70707 1.32502 2.80714 1.15626 2.98134C0.987498 3.15554 0.894804 3.38962 0.898547 3.63213V14.3791C0.894804 14.6216 0.987498 14.8557 1.15626 15.0299C1.32502 15.2041 1.55604 15.3042 1.79855 15.3081H16.1985C16.4411 15.3042 16.6721 15.2041 16.8408 15.0299C17.0096 14.8557 17.1023 14.6216 17.0985 14.3791V3.63213C17.1023 3.38962 17.0096 3.15554 16.8408 2.98134C16.6721 2.80714 16.4411 2.70707 16.1985 2.70312ZM3.59855 6.04612C3.67701 5.90181 3.80954 5.79453 3.96703 5.74785C4.12453 5.70116 4.29411 5.71888 4.43855 5.79712L4.45955 5.80912C4.50192 5.83446 4.54119 5.86466 4.57655 5.89912L9.00055 9.29913L13.4235 5.89912C13.5405 5.78521 13.6979 5.7223 13.8611 5.72417C14.0244 5.72605 14.1802 5.79256 14.2945 5.90913L14.3135 5.92912C14.4283 6.05616 14.4895 6.22265 14.4842 6.39375C14.479 6.56486 14.4078 6.72732 14.2855 6.84712C14.2514 6.8813 14.2135 6.91149 14.1725 6.93713L11.4785 9.00713L14.1725 11.0771C14.3177 11.1674 14.4223 11.3104 14.4645 11.4761C14.5066 11.6418 14.483 11.8174 14.3985 11.9661C14.3532 12.0502 14.2889 12.1226 14.2108 12.1776C14.1326 12.2326 14.0427 12.2686 13.9483 12.2829C13.8538 12.2972 13.7573 12.2892 13.6664 12.2598C13.5755 12.2303 13.4927 12.1801 13.4245 12.1131L10.4315 9.81313L9.37555 10.6231C9.26826 10.7059 9.13656 10.7508 9.00105 10.7508C8.86553 10.7508 8.73383 10.7059 8.62655 10.6231L7.57055 9.81313L4.57755 12.1131C4.50773 12.1552 4.43029 12.183 4.34968 12.1951C4.26907 12.2072 4.18687 12.2032 4.1078 12.1834C4.02873 12.1636 3.95435 12.1284 3.88892 12.0798C3.8235 12.0312 3.76832 11.9701 3.72655 11.9001L3.71455 11.8801C3.64289 11.7528 3.61523 11.6054 3.63584 11.4608C3.65645 11.3162 3.72418 11.1824 3.82855 11.0801L6.52255 9.01013L3.82855 6.94012C3.68203 6.85079 3.57607 6.7079 3.53313 6.54175C3.49019 6.3756 3.51366 6.19926 3.59855 6.05013V6.04612Z" fill="#919191"/>
3
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="22" height="22" rx="11" fill="#E66767"/>
3
+ <g clip-path="url(#clip0_16994_5396)">
4
+ <path d="M16.3949 10.2833V13.3699C16.4095 13.5689 16.3938 13.769 16.3482 13.9633C16.2947 14.1475 16.1958 14.3154 16.0608 14.4516C15.9257 14.5879 15.7587 14.6881 15.5749 14.7433C15.336 14.7922 15.0914 14.8079 14.8482 14.7899C14.7474 14.7899 14.6508 14.7499 14.5795 14.6786C14.5083 14.6074 14.4682 14.5107 14.4682 14.4099V13.2666H13.3149V13.7833C13.3141 13.8346 13.3096 13.8859 13.3016 13.9366C13.275 14.1243 13.18 14.2956 13.0348 14.4174C12.8895 14.5392 12.7044 14.6031 12.5149 14.5966H9.82823C9.62444 14.5976 9.42472 14.5396 9.25318 14.4296C9.08164 14.3196 8.94562 14.1622 8.86156 13.9766H8.24823C8.06207 13.9654 7.88634 13.8868 7.75385 13.7556C7.62136 13.6243 7.54117 13.4493 7.52823 13.2633V12.5166H6.7549C6.7549 12.8966 6.76156 13.2699 6.7549 13.6566C6.75507 13.7259 6.73579 13.7939 6.69926 13.8528C6.66273 13.9118 6.6104 13.9593 6.54823 13.9899C6.43112 14.0331 6.30522 14.0468 6.18156 14.0299C6.06278 14.0457 5.94196 14.0343 5.82823 13.9966C5.76279 13.9663 5.70699 13.9185 5.66699 13.8585C5.627 13.7985 5.60435 13.7286 5.60156 13.6566V10.2366C5.60376 10.1399 5.64181 10.0474 5.70834 9.97722C5.77487 9.907 5.86512 9.86401 5.96156 9.85659C6.10823 9.84993 6.2549 9.84993 6.40156 9.85659C6.49801 9.86401 6.58826 9.907 6.65478 9.97722C6.72131 10.0474 6.75937 10.1399 6.76156 10.2366V11.3766H7.52823C7.52823 10.8499 7.52156 10.3299 7.52823 9.80993C7.54227 9.62427 7.62282 9.44991 7.75508 9.31887C7.88735 9.18783 8.06245 9.1089 8.24823 9.09659C8.78156 9.08993 9.3149 9.09659 9.84156 9.09659V8.34326H8.2949C8.19309 8.34089 8.09611 8.29939 8.02411 8.22738C7.9521 8.15538 7.9106 8.0584 7.90823 7.95659V7.93659C7.90505 7.78521 7.91173 7.63378 7.92823 7.48326H7.92156C7.94715 7.39848 8.00051 7.32477 8.07307 7.27398C8.14562 7.22319 8.23314 7.19829 8.32156 7.20326H12.5342C12.6067 7.20414 12.6776 7.22519 12.7388 7.26405C12.8 7.3029 12.8492 7.35803 12.8809 7.42326C12.9141 7.51266 12.9277 7.60814 12.9209 7.70326C12.9209 7.80326 12.9209 7.90326 12.9142 8.00993C12.9025 8.1023 12.8574 8.1872 12.7874 8.2486C12.7174 8.31001 12.6273 8.34367 12.5342 8.34326H11.0009V9.09659H12.5142C12.718 9.09042 12.916 9.16452 13.0656 9.30293C13.2153 9.44134 13.3045 9.63299 13.3142 9.83659V10.6166H14.4676V9.47659C14.4679 9.40051 14.4909 9.32626 14.5337 9.26332C14.5764 9.20039 14.637 9.15162 14.7076 9.12326C14.7924 9.10128 14.88 9.09229 14.9676 9.09659C15.146 9.08754 15.3249 9.09872 15.5009 9.12993C15.67 9.16798 15.8284 9.24341 15.9646 9.3507C16.1007 9.45799 16.2111 9.5944 16.2876 9.74993C16.363 9.91733 16.4002 10.0997 16.3949 10.2833Z" fill="white"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_16994_5396">
8
+ <rect width="12" height="12" fill="white" transform="translate(5 5)"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="10" height="10" rx="5" fill="#6692F1"/>
3
+ <rect x="3" y="3" width="4" height="4" rx="2" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="22" height="22" rx="11" fill="#E66767"/>
3
+ <rect x="6" y="6" width="10" height="10" rx="5" fill="white"/>
4
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="22" height="22" viewBox="0 0 22 22">
2
+ <circle id="Ellipse_10206" data-name="Ellipse 10206" cx="11" cy="11" r="11" fill="#3074d3"/>
3
+ <g id="Group_114959" data-name="Group 114959" transform="translate(-3291.002 10960) rotate(180)">
4
+ <path id="Path_33425" data-name="Path 33425" d="M14,7A7,7,0,1,1,7,0a7,7,0,0,1,7,7" transform="translate(-3309 10942)" fill="#fff" opacity="0"/>
5
+ <path id="Path_33426" data-name="Path 33426" d="M6.94.364l-5.092,10.1a.661.661,0,0,0,.962.845l3.976-2.7a1.323,1.323,0,0,1,1.487,0l3.98,2.7a.661.661,0,0,0,.962-.845L8.121.364a.662.662,0,0,0-1.182,0" transform="translate(-3309.532 10942)" fill="#fff"/>
6
+ </g>
7
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="22" height="22" rx="11" fill="#919191"/>
3
+ <rect x="6" y="6" width="10" height="10" rx="5" fill="white"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <rect width="22" height="22" rx="11" fill="#FAB15C"/>
3
+ <rect x="6" y="6" width="10" height="10" rx="5" fill="white"/>
4
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_16994_32966)">
3
+ <rect y="12.001" width="16.9718" height="16.9718" rx="1" transform="rotate(-45 0 12.001)" fill="#E66767"/>
4
+ <rect x="4.89844" y="12.001" width="10" height="10" rx="1" transform="rotate(-45 4.89844 12.001)" fill="white"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_16994_32966">
8
+ <rect y="12.001" width="16.9718" height="16.9718" rx="1" transform="rotate(-45 0 12.001)" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_16994_33201)">
3
+ <rect y="12.001" width="16.9718" height="16.9718" rx="1" transform="rotate(-45 0 12.001)" fill="#6692F1"/>
4
+ <g clip-path="url(#clip1_16994_33201)">
5
+ <path d="M12.5078 17.6892L16.8723 9.03207C16.9292 8.91993 16.9471 8.79207 16.9234 8.66862C16.8996 8.54517 16.8354 8.43314 16.7409 8.35017C16.6465 8.2672 16.5271 8.21801 16.4016 8.21033C16.2761 8.20266 16.1516 8.23694 16.0478 8.30778L12.6398 10.6221C12.4518 10.7498 12.2298 10.8181 12.0025 10.8181C11.7752 10.8181 11.5532 10.7498 11.3652 10.6221L7.95378 8.30778C7.84991 8.23694 7.72544 8.20266 7.59995 8.21033C7.47446 8.21801 7.35509 8.2672 7.26063 8.35017C7.16617 8.43314 7.10199 8.54517 7.0782 8.66862C7.05441 8.79207 7.07235 8.91993 7.12921 9.03207L11.4955 17.6892C11.5428 17.783 11.6152 17.8617 11.7047 17.9168C11.7941 17.9718 11.897 18.001 12.0021 18.001C12.1071 18.001 12.21 17.9718 12.2995 17.9168C12.3889 17.8617 12.4613 17.783 12.5086 17.6892" fill="white"/>
6
+ </g>
7
+ </g>
8
+ <defs>
9
+ <clipPath id="clip0_16994_33201">
10
+ <rect y="12.001" width="16.9718" height="16.9718" rx="1" transform="rotate(-45 0 12.001)" fill="white"/>
11
+ </clipPath>
12
+ <clipPath id="clip1_16994_33201">
13
+ <rect width="12" height="12" fill="white" transform="translate(18 18.001) rotate(-180)"/>
14
+ </clipPath>
15
+ </defs>
16
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_16994_32627)">
3
+ <rect y="12" width="16.9718" height="16.9718" rx="1" transform="rotate(-45 0 12)" fill="#919191"/>
4
+ <rect x="4.89844" y="12" width="10" height="10" rx="1" transform="rotate(-45 4.89844 12)" fill="white"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_16994_32627">
8
+ <rect y="12" width="16.9718" height="16.9718" rx="1" transform="rotate(-45 0 12)" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,11 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_16994_48695)">
3
+ <rect y="12" width="16.9718" height="16.9718" rx="1" transform="rotate(-45 0 12)" fill="#FAB15C"/>
4
+ <rect x="4.90039" y="12" width="10" height="10" rx="1" transform="rotate(-45 4.90039 12)" fill="white"/>
5
+ </g>
6
+ <defs>
7
+ <clipPath id="clip0_16994_48695">
8
+ <rect y="12" width="16.9718" height="16.9718" rx="1" transform="rotate(-45 0 12)" fill="white"/>
9
+ </clipPath>
10
+ </defs>
11
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="32.002" height="32.01" viewBox="0 0 32.002 32.01">
2
+ <defs>
3
+ <filter id="Path_40390" x="0" y="0" width="32.002" height="32.01" filterUnits="userSpaceOnUse">
4
+ <feOffset input="SourceAlpha"/>
5
+ <feGaussianBlur stdDeviation="2" result="blur"/>
6
+ <feFlood flood-opacity="0.149"/>
7
+ <feComposite operator="in" in2="blur"/>
8
+ <feComposite in="SourceGraphic"/>
9
+ </filter>
10
+ </defs>
11
+ <g id="Group_95980" data-name="Group 95980" transform="translate(-813.996 -460.004)">
12
+ <rect id="Rectangle_80566" data-name="Rectangle 80566" width="22" height="22" transform="translate(819 465.012)" fill="#ab47bc" opacity="0"/>
13
+ <g transform="matrix(1, 0, 0, 1, 814, 460)" filter="url(#Path_40390)">
14
+ <path id="Path_40390-2" data-name="Path 40390" d="M21,57.234v1.28a2.479,2.479,0,0,1-2.39,2.5H3.618A2.475,2.475,0,0,1,1,58.4v-1.08A2.486,2.486,0,0,1,2.6,54.9V44.274a3.146,3.146,0,0,1,2.26-3.13,3.544,3.544,0,0,1,.97-.13h10.3c.04,0,.08-.01.12-.01a3.157,3.157,0,0,1,3.14,2.9l.01.08v.06a1.044,1.044,0,0,1,0,.25v10.62a2.467,2.467,0,0,1,1.6,2.32" transform="translate(5 -35)" fill="#fff"/>
15
+ </g>
16
+ <path id="Path_40394" data-name="Path 40394" d="M18.684,56.779c-.148-.057-.3-.106-.454-.157a1.068,1.068,0,0,1-.83-1.156V44.236a.83.83,0,0,0,0-.141v0a1.154,1.154,0,0,0-1.223-1.081H5.829a1.454,1.454,0,0,0-.409.058,1.147,1.147,0,0,0-.82,1.162V55.495a1.06,1.06,0,0,1-.79,1.114c-.144.048-.3.1-.444.148A.486.486,0,0,0,3,57.269V58.4c0,.446.167.609.616.609H18.48a.415.415,0,0,0,.061,0,.474.474,0,0,0,.456-.49c.006-.434,0-.867,0-1.3a.452.452,0,0,0-.313-.444m-8.75-5.234v.745a.331.331,0,0,1,0,.063v0a.553.553,0,0,1-.585.519H7.785a.554.554,0,0,1-.517-.589V50.8a.534.534,0,0,1,0-.08.555.555,0,0,1,.594-.513H9.344a.548.548,0,0,1,.081,0h0a.556.556,0,0,1,.506.6Zm0-3.51a.451.451,0,0,1,0,.052v0a.551.551,0,0,1-.58.521h-1.5a.353.353,0,0,1-.065,0h0a.553.553,0,0,1-.521-.583V46.462h0a.553.553,0,0,1,.587-.517H9.412a.553.553,0,0,1,.524.58q0,.755,0,1.511m4.794,4.256a.417.417,0,0,1,0,.05.553.553,0,0,1-.575.53H12.593a.552.552,0,0,1-.524-.579V50.751a.553.553,0,0,1,.566-.54H13.4V50.2h.811a.555.555,0,0,1,.519.587Zm0-4.251v.034h0a.551.551,0,0,1-.566.536H12.589a.555.555,0,0,1-.518-.588q0-.751,0-1.5a.451.451,0,0,1,0-.052.551.551,0,0,1,.574-.526h1.562a.552.552,0,0,1,.525.579q0,.759,0,1.516" transform="translate(819 425)" fill="#ab47bc"/>
17
+ </g>
18
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" viewBox="0 0 13 13"><g transform="translate(-181 -295)"><rect width="13" height="13" rx="6.5" transform="translate(181 295)" fill="#6692F1"/><rect width="5" height="5" rx="2.5" transform="translate(185 299)" fill="#fff"/></g></svg>
@@ -0,0 +1,3 @@
1
+ <svg width="14" height="12" viewBox="0 0 14 12" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.1487 10.9145V5.40236C10.1492 5.30015 10.1701 5.19906 10.2101 5.105C10.2501 5.01094 10.3084 4.9258 10.3817 4.85454C10.455 4.78329 10.5417 4.72735 10.6369 4.69001C10.732 4.65266 10.8337 4.63465 10.9358 4.63703H12.5108C12.7162 4.63596 12.9137 4.71556 13.0609 4.8587C13.2081 5.00185 13.2933 5.19708 13.298 5.40236V10.8927C13.2975 10.9949 13.2766 11.096 13.2366 11.1901C13.1966 11.2841 13.1383 11.3693 13.065 11.4405C12.9917 11.5118 12.905 11.5677 12.8098 11.6051C12.7147 11.6424 12.613 11.6604 12.5108 11.658H10.9358C10.8336 11.6687 10.7302 11.6571 10.6329 11.6241C10.5355 11.5911 10.4464 11.5375 10.3716 11.4669C10.2969 11.3963 10.2383 11.3104 10.1998 11.215C10.1614 11.1197 10.1439 11.0172 10.1487 10.9145ZM0.698731 5.42647C0.698731 5.27136 0.729295 5.11777 0.788678 4.97447C0.848061 4.83118 0.935098 4.70098 1.04482 4.59134C1.15453 4.48169 1.28478 4.39474 1.42811 4.33545C1.57145 4.27617 1.72506 4.24571 1.88018 4.24581H5.48517C5.03879 3.52679 4.74936 2.72158 4.63584 1.88292C4.63662 1.72472 4.66894 1.56826 4.7309 1.4227C4.79287 1.27714 4.88323 1.14539 4.99672 1.03517C5.1102 0.924942 5.24452 0.838453 5.39183 0.780756C5.53913 0.723059 5.69646 0.695312 5.85462 0.69914C7.41017 0.69914 6.50329 2.57281 8.51773 4.18358L8.91906 4.50325C9.05626 4.61421 9.16698 4.75439 9.24313 4.91357C9.31929 5.07274 9.35897 5.24691 9.35929 5.42336V9.36125C9.35938 9.54461 9.31676 9.72547 9.23481 9.8895C9.15287 10.0535 9.03384 10.1962 8.88717 10.3063L8.04718 10.9362C7.36636 11.4481 6.53758 11.7246 5.68584 11.7241H4.24229C4.06486 11.7253 3.88948 11.6861 3.72935 11.6097C3.56922 11.5333 3.42851 11.4215 3.31779 11.2829C3.20706 11.1442 3.12922 10.9823 3.0901 10.8092C3.05099 10.6362 3.05162 10.4565 3.09195 10.2837C2.92205 10.2305 2.76658 10.1391 2.63744 10.0166C2.5083 9.89404 2.40892 9.74356 2.34692 9.57667C2.28491 9.40979 2.26191 9.23093 2.2797 9.05379C2.29748 8.87664 2.35557 8.70592 2.44951 8.55469C2.24262 8.51693 2.04967 8.42427 1.89086 8.2864C1.73204 8.14853 1.61319 7.97052 1.54673 7.77099C1.48028 7.57145 1.46865 7.35773 1.51308 7.15216C1.55751 6.9466 1.65636 6.75675 1.79929 6.60247C1.50078 6.58291 1.22091 6.45048 1.01651 6.23206C0.812101 6.01364 0.698486 5.72562 0.698731 5.42647Z" fill="#56B4AC"/>
3
+ </svg>
@@ -0,0 +1,27 @@
1
+ <svg width="30" height="33" viewBox="0 0 30 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_f_16331_32714)">
3
+ <path d="M15 31C18.3137 31 21 30.1046 21 29C21 27.8954 18.3137 27 15 27C11.6863 27 9 27.8954 9 29C9 30.1046 11.6863 31 15 31Z" fill="black" fill-opacity="0.6"/>
4
+ </g>
5
+ <g filter="url(#filter1_d_16331_32714)">
6
+ <path d="M26 14.9732C25.9991 16.7715 25.5554 18.542 24.708 20.1289C23.8606 21.7157 22.6355 23.0702 21.1405 24.0732C21.1165 24.0912 20.7609 24.3102 20.6207 24.4022C17.2485 26.5422 15.8954 27.9872 15.3505 28.8022C15.2859 28.8991 15.1854 28.9665 15.0712 28.9897C14.9569 29.0129 14.8381 28.9901 14.7406 28.9262C14.6916 28.8932 14.6494 28.8511 14.6164 28.8022C14.0716 27.9912 12.7135 26.5462 9.34626 24.4022C9.19302 24.3072 8.8515 24.0912 8.82646 24.0732C7.25656 23.0103 5.9886 21.5601 5.14572 19.8635C4.30285 18.1669 3.91368 16.2815 4.01603 14.3904C4.11837 12.4993 4.70874 10.6667 5.72981 9.0707C6.75088 7.47466 8.16796 6.16936 9.84342 5.28155C11.5189 4.39375 13.3958 3.95361 15.292 4.00387C17.1881 4.05413 19.039 4.5931 20.6649 5.56842C22.2908 6.54374 23.6365 7.92228 24.5713 9.57017C25.5062 11.2181 25.9983 13.0793 26 14.9732Z" fill="white"/>
7
+ </g>
8
+ <circle cx="15" cy="15" r="9" fill="#6692F1"/>
9
+ <circle cx="15" cy="15" r="5" fill="white"/>
10
+ <defs>
11
+ <filter id="filter0_f_16331_32714" x="7" y="25" width="16" height="8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
14
+ <feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_16331_32714"/>
15
+ </filter>
16
+ <filter id="filter1_d_16331_32714" x="0" y="0" width="30" height="32.9985" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
17
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
18
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
19
+ <feOffset/>
20
+ <feGaussianBlur stdDeviation="2"/>
21
+ <feComposite in2="hardAlpha" operator="out"/>
22
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
23
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16331_32714"/>
24
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16331_32714" result="shape"/>
25
+ </filter>
26
+ </defs>
27
+ </svg>
@@ -0,0 +1,27 @@
1
+ <svg width="30" height="33" viewBox="0 0 30 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_f_16331_33228)">
3
+ <path d="M15 31C18.3137 31 21 30.1046 21 29C21 27.8954 18.3137 27 15 27C11.6863 27 9 27.8954 9 29C9 30.1046 11.6863 31 15 31Z" fill="black" fill-opacity="0.6"/>
4
+ </g>
5
+ <g filter="url(#filter1_d_16331_33228)">
6
+ <path d="M26 14.9732C25.9991 16.7715 25.5554 18.542 24.708 20.1289C23.8606 21.7157 22.6355 23.0702 21.1405 24.0732C21.1165 24.0912 20.7609 24.3102 20.6207 24.4022C17.2485 26.5422 15.8954 27.9872 15.3505 28.8022C15.2859 28.8991 15.1854 28.9665 15.0712 28.9897C14.9569 29.0129 14.8381 28.9901 14.7406 28.9262C14.6916 28.8932 14.6494 28.8511 14.6164 28.8022C14.0716 27.9912 12.7135 26.5462 9.34626 24.4022C9.19302 24.3072 8.8515 24.0912 8.82646 24.0732C7.25656 23.0103 5.9886 21.5601 5.14572 19.8635C4.30285 18.1669 3.91368 16.2815 4.01603 14.3904C4.11837 12.4993 4.70874 10.6667 5.72981 9.0707C6.75088 7.47466 8.16796 6.16936 9.84342 5.28155C11.5189 4.39375 13.3958 3.95361 15.292 4.00387C17.1881 4.05413 19.039 4.5931 20.6649 5.56842C22.2908 6.54374 23.6365 7.92228 24.5713 9.57017C25.5062 11.2181 25.9983 13.0793 26 14.9732Z" fill="white"/>
7
+ </g>
8
+ <circle cx="15" cy="15" r="9" fill="#E66767"/>
9
+ <path d="M16.5917 15L18.9793 12.6122C19.1201 12.4714 19.1991 12.2805 19.1991 12.0814C19.1991 11.8823 19.1201 11.6914 18.9793 11.5506L18.4486 11.0198C18.3078 10.8791 18.1169 10.8 17.9178 10.8C17.7188 10.8 17.5279 10.8791 17.3871 11.0198L15.0001 13.4077L12.6118 11.0198C12.4711 10.8791 12.2802 10.8 12.0811 10.8C11.882 10.8 11.6911 10.8791 11.5504 11.0198L11.0196 11.5506C10.8789 11.6914 10.7998 11.8823 10.7998 12.0814C10.7998 12.2805 10.8789 12.4714 11.0196 12.6122L13.4073 15L11.0203 17.3878C10.8796 17.5286 10.8005 17.7195 10.8005 17.9186C10.8005 18.1177 10.8796 18.3086 11.0203 18.4494L11.551 18.9802C11.6918 19.1209 11.8827 19.2 12.0818 19.2C12.2808 19.2 12.4717 19.1209 12.6125 18.9802L15.0001 16.5923L17.3878 18.9802C17.5285 19.1209 17.7195 19.2 17.9185 19.2C18.1176 19.2 18.3085 19.1209 18.4493 18.9802L18.98 18.4494C19.1207 18.3086 19.1998 18.1177 19.1998 17.9186C19.1998 17.7195 19.1207 17.5286 18.98 17.3878L16.5917 15Z" fill="white"/>
10
+ <defs>
11
+ <filter id="filter0_f_16331_33228" x="7" y="25" width="16" height="8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
14
+ <feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_16331_33228"/>
15
+ </filter>
16
+ <filter id="filter1_d_16331_33228" x="0" y="0" width="30" height="32.9985" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
17
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
18
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
19
+ <feOffset/>
20
+ <feGaussianBlur stdDeviation="2"/>
21
+ <feComposite in2="hardAlpha" operator="out"/>
22
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
23
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16331_33228"/>
24
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16331_33228" result="shape"/>
25
+ </filter>
26
+ </defs>
27
+ </svg>
@@ -0,0 +1,27 @@
1
+ <svg width="30" height="33" viewBox="0 0 30 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_f_16331_33216)">
3
+ <path d="M15 31C18.3137 31 21 30.1046 21 29C21 27.8954 18.3137 27 15 27C11.6863 27 9 27.8954 9 29C9 30.1046 11.6863 31 15 31Z" fill="black" fill-opacity="0.6"/>
4
+ </g>
5
+ <g filter="url(#filter1_d_16331_33216)">
6
+ <path d="M26 14.9732C25.9991 16.7715 25.5554 18.542 24.708 20.1289C23.8606 21.7157 22.6355 23.0702 21.1405 24.0732C21.1165 24.0912 20.7609 24.3102 20.6207 24.4022C17.2485 26.5422 15.8954 27.9872 15.3505 28.8022C15.2859 28.8991 15.1854 28.9665 15.0712 28.9897C14.9569 29.0129 14.8381 28.9901 14.7406 28.9262C14.6916 28.8932 14.6494 28.8511 14.6164 28.8022C14.0716 27.9912 12.7135 26.5462 9.34626 24.4022C9.19302 24.3072 8.8515 24.0912 8.82646 24.0732C7.25656 23.0103 5.9886 21.5601 5.14572 19.8635C4.30285 18.1669 3.91368 16.2815 4.01603 14.3904C4.11837 12.4993 4.70874 10.6667 5.72981 9.0707C6.75088 7.47466 8.16796 6.16936 9.84342 5.28155C11.5189 4.39375 13.3958 3.95361 15.292 4.00387C17.1881 4.05413 19.039 4.5931 20.6649 5.56842C22.2908 6.54374 23.6365 7.92228 24.5713 9.57017C25.5062 11.2181 25.9983 13.0793 26 14.9732Z" fill="white"/>
7
+ </g>
8
+ <circle cx="15" cy="15" r="9" fill="#B370F0"/>
9
+ <path d="M12.1002 19.8C11.8793 19.8 11.7002 19.6209 11.7002 19.4V10.6C11.7002 10.3791 11.8793 10.2 12.1002 10.2H15.6558C16.4469 10.2 17.1268 10.3267 17.6954 10.5799C18.2723 10.8332 18.7173 11.2009 19.0305 11.6829C19.3436 12.1568 19.5002 12.7205 19.5002 13.3741C19.5002 14.0196 19.3436 14.5792 19.0305 15.0531C18.7173 15.527 18.2723 15.8947 17.6954 16.1561C17.1268 16.4094 16.4469 16.536 15.6558 16.536H13.0599L14.1477 15.4821V19.4C14.1477 19.6209 13.9687 19.8 13.7477 19.8H12.1002ZM14.1477 15.7394L13.0599 14.6242H15.5075C16.0184 14.6242 16.3975 14.5139 16.6447 14.2933C16.9002 14.0727 17.0279 13.7663 17.0279 13.3741C17.0279 12.9738 16.9002 12.6633 16.6447 12.4427C16.3975 12.2221 16.0184 12.1118 15.5075 12.1118H13.0599L14.1477 10.9966V15.7394Z" fill="white"/>
10
+ <defs>
11
+ <filter id="filter0_f_16331_33216" x="7" y="25" width="16" height="8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
14
+ <feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_16331_33216"/>
15
+ </filter>
16
+ <filter id="filter1_d_16331_33216" x="0" y="0" width="30" height="32.9985" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
17
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
18
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
19
+ <feOffset/>
20
+ <feGaussianBlur stdDeviation="2"/>
21
+ <feComposite in2="hardAlpha" operator="out"/>
22
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
23
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16331_33216"/>
24
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16331_33216" result="shape"/>
25
+ </filter>
26
+ </defs>
27
+ </svg>
@@ -0,0 +1,27 @@
1
+ <svg width="30" height="33" viewBox="0 0 30 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_f_16331_20667)">
3
+ <path d="M15 31C18.3137 31 21 30.1046 21 29C21 27.8954 18.3137 27 15 27C11.6863 27 9 27.8954 9 29C9 30.1046 11.6863 31 15 31Z" fill="black" fill-opacity="0.6"/>
4
+ </g>
5
+ <g filter="url(#filter1_d_16331_20667)">
6
+ <path d="M26 14.9732C25.9991 16.7715 25.5554 18.542 24.708 20.1289C23.8606 21.7157 22.6355 23.0702 21.1405 24.0732C21.1165 24.0912 20.7609 24.3102 20.6207 24.4022C17.2485 26.5422 15.8954 27.9872 15.3505 28.8022C15.2859 28.8991 15.1854 28.9665 15.0712 28.9897C14.9569 29.0129 14.8381 28.9901 14.7406 28.9262C14.6916 28.8932 14.6494 28.8511 14.6164 28.8022C14.0716 27.9912 12.7135 26.5462 9.34626 24.4022C9.19302 24.3072 8.8515 24.0912 8.82646 24.0732C7.25656 23.0103 5.9886 21.5601 5.14572 19.8635C4.30285 18.1669 3.91368 16.2815 4.01603 14.3904C4.11837 12.4993 4.70874 10.6667 5.72981 9.0707C6.75088 7.47466 8.16796 6.16936 9.84342 5.28155C11.5189 4.39375 13.3958 3.95361 15.292 4.00387C17.1881 4.05413 19.039 4.5931 20.6649 5.56842C22.2908 6.54374 23.6365 7.92228 24.5713 9.57017C25.5062 11.2181 25.9983 13.0793 26 14.9732Z" fill="white"/>
7
+ </g>
8
+ <circle cx="15" cy="15" r="9" fill="#B370F0"/>
9
+ <path d="M20.3978 14.9906C20.3969 15.1496 20.3335 15.3019 20.2213 15.4146C20.109 15.5272 19.9569 15.5912 19.7979 15.5927H19.198L19.2077 18.595C19.2073 18.6458 19.2041 18.6964 19.198 18.7468V19.0502C19.198 19.2491 19.119 19.4398 18.9783 19.5804C18.8377 19.721 18.6469 19.8 18.448 19.8H18.1477C18.1267 19.8 18.1065 19.7831 18.0855 19.8C18.0589 19.7847 18.033 19.8 18.0048 19.8H16.9471C16.8486 19.8 16.7511 19.7806 16.6601 19.7429C16.5691 19.7053 16.4864 19.65 16.4168 19.5804C16.3471 19.5108 16.2919 19.4281 16.2542 19.3372C16.2165 19.2462 16.1971 19.1487 16.1971 19.0502V17.3998C16.1972 17.321 16.1817 17.243 16.1516 17.1702C16.1215 17.0974 16.0774 17.0312 16.0216 16.9755C15.9659 16.9198 15.8997 16.8756 15.8269 16.8455C15.7541 16.8154 15.676 16.8 15.5972 16.8001H14.4007C14.3219 16.8 14.2439 16.8154 14.171 16.8455C14.0982 16.8756 14.032 16.9198 13.9763 16.9755C13.9206 17.0312 13.8764 17.0974 13.8463 17.1702C13.8162 17.243 13.8007 17.321 13.8009 17.3998V19.0494C13.8009 19.2483 13.7218 19.439 13.5812 19.5796C13.4405 19.7202 13.2497 19.7992 13.0508 19.7992H12.0013C11.973 19.7992 11.9447 19.7992 11.9205 19.7992C11.8963 19.7992 11.8753 19.7992 11.8527 19.7992H11.5508C11.3518 19.7992 11.1611 19.7202 11.0204 19.5796C10.8797 19.439 10.8007 19.2483 10.8007 19.0494V16.951C10.8007 16.9341 10.8007 16.9155 10.8007 16.8986V15.5927H10.2009C10.1216 15.5936 10.043 15.5786 9.96959 15.5486C9.89621 15.5186 9.82957 15.4743 9.7736 15.4182C9.71763 15.3621 9.67345 15.2954 9.64367 15.2219C9.61388 15.1485 9.5991 15.0699 9.60018 14.9906C9.5988 14.9068 9.61473 14.8237 9.64696 14.7463C9.67918 14.669 9.72702 14.5991 9.78749 14.5411L14.5953 10.3515C14.6499 10.2988 14.715 10.2582 14.7864 10.2323C14.8577 10.2065 14.9338 10.1959 15.0095 10.2014C15.1524 10.1992 15.2919 10.2456 15.4051 10.333L20.1927 14.5411C20.2624 14.5924 20.3178 14.6606 20.3539 14.7392C20.3899 14.8179 20.4053 14.9044 20.3986 14.9906H20.3978Z" fill="white"/>
10
+ <defs>
11
+ <filter id="filter0_f_16331_20667" x="7" y="25" width="16" height="8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
14
+ <feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_16331_20667"/>
15
+ </filter>
16
+ <filter id="filter1_d_16331_20667" x="0" y="0" width="30" height="32.9985" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
17
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
18
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
19
+ <feOffset/>
20
+ <feGaussianBlur stdDeviation="2"/>
21
+ <feComposite in2="hardAlpha" operator="out"/>
22
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
23
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16331_20667"/>
24
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16331_20667" result="shape"/>
25
+ </filter>
26
+ </defs>
27
+ </svg>
@@ -0,0 +1,27 @@
1
+ <svg width="30" height="33" viewBox="0 0 30 33" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_f_16331_20764)">
3
+ <path d="M15 31C18.3137 31 21 30.1046 21 29C21 27.8954 18.3137 27 15 27C11.6863 27 9 27.8954 9 29C9 30.1046 11.6863 31 15 31Z" fill="black" fill-opacity="0.6"/>
4
+ </g>
5
+ <g filter="url(#filter1_d_16331_20764)">
6
+ <path d="M26 14.9732C25.9991 16.7715 25.5554 18.542 24.708 20.1289C23.8606 21.7157 22.6355 23.0702 21.1405 24.0732C21.1165 24.0912 20.7609 24.3102 20.6207 24.4022C17.2485 26.5422 15.8954 27.9872 15.3505 28.8022C15.2859 28.8991 15.1854 28.9665 15.0712 28.9897C14.9569 29.0129 14.8381 28.9901 14.7406 28.9262C14.6916 28.8932 14.6494 28.8511 14.6164 28.8022C14.0716 27.9912 12.7135 26.5462 9.34626 24.4022C9.19302 24.3072 8.8515 24.0912 8.82646 24.0732C7.25656 23.0103 5.9886 21.5601 5.14572 19.8635C4.30285 18.1669 3.91368 16.2815 4.01603 14.3904C4.11837 12.4993 4.70874 10.6667 5.72981 9.0707C6.75088 7.47466 8.16796 6.16936 9.84342 5.28155C11.5189 4.39375 13.3958 3.95361 15.292 4.00387C17.1881 4.05413 19.039 4.5931 20.6649 5.56842C22.2908 6.54374 23.6365 7.92228 24.5713 9.57017C25.5062 11.2181 25.9983 13.0793 26 14.9732Z" fill="white"/>
7
+ </g>
8
+ <circle cx="15" cy="15" r="9" fill="#B370F0"/>
9
+ <path d="M14.9983 20.3335H10.0783C9.77835 20.3335 9.66915 20.2249 9.66915 19.9273V19.1719C9.66259 19.0952 9.68358 19.0187 9.72833 18.9562C9.77309 18.8936 9.83869 18.849 9.91335 18.8305C10.0111 18.7963 10.1101 18.7657 10.2097 18.7321C10.3712 18.6903 10.5128 18.5928 10.6093 18.4567C10.7058 18.3207 10.7511 18.1549 10.7371 17.9887V10.4797C10.7277 10.3082 10.7762 10.1385 10.8749 9.99797C10.9736 9.85745 11.1168 9.75426 11.2813 9.70505C11.3699 9.67935 11.4616 9.66642 11.5537 9.66665H18.4537C18.6571 9.6545 18.8569 9.72348 19.0094 9.85845C19.1619 9.99343 19.2547 10.1834 19.2673 10.3867C19.2697 10.418 19.2697 10.4495 19.2673 10.4809V17.9707C19.2487 18.1446 19.2948 18.3193 19.3969 18.4615C19.4989 18.6036 19.6498 18.7031 19.8205 18.7411C19.9213 18.7747 20.0245 18.8077 20.1205 18.8461C20.1829 18.8659 20.2371 18.9056 20.2748 18.9591C20.3125 19.0127 20.3316 19.077 20.3293 19.1425C20.3293 19.4311 20.3335 19.7197 20.3293 20.0089C20.3306 20.0535 20.3224 20.098 20.3053 20.1393C20.2881 20.1806 20.2623 20.2177 20.2297 20.2483C20.1971 20.2789 20.1584 20.3022 20.1161 20.3166C20.0738 20.3311 20.0289 20.3364 19.9843 20.3323H14.9983M12.5131 12.5119V13.0117C12.5104 13.0601 12.5172 13.1086 12.5333 13.1544C12.5493 13.2002 12.5743 13.2424 12.6067 13.2785C12.6391 13.3146 12.6783 13.344 12.722 13.3649C12.7658 13.3858 12.8133 13.3979 12.8617 13.4005C12.8761 13.4016 12.8906 13.4016 12.9049 13.4005H13.9039C14.001 13.4047 14.0958 13.3704 14.1677 13.3049C14.2395 13.2395 14.2825 13.1483 14.2873 13.0513C14.2879 13.0399 14.2879 13.0284 14.2873 13.0171C14.2897 12.6807 14.2897 12.3449 14.2873 12.0097C14.2898 11.9613 14.2826 11.913 14.2664 11.8674C14.2501 11.8218 14.225 11.7799 14.1925 11.744C14.16 11.7081 14.1208 11.6789 14.077 11.6582C14.0333 11.6375 13.9859 11.6256 13.9375 11.6233C13.9252 11.6224 13.9127 11.6224 13.9003 11.6233H12.9043C12.856 11.6202 12.8075 11.6268 12.7616 11.6425C12.7158 11.6583 12.6735 11.6829 12.6371 11.715C12.6008 11.7471 12.5712 11.786 12.5499 11.8296C12.5286 11.8731 12.5161 11.9205 12.5131 11.9689C12.5131 11.9833 12.5131 11.9975 12.5131 12.0115V12.5113M16.5895 13.3999H17.1115C17.16 13.4011 17.2082 13.3928 17.2535 13.3754C17.2987 13.358 17.34 13.3318 17.3751 13.2983C17.4102 13.2649 17.4383 13.2248 17.4578 13.1805C17.4774 13.1361 17.4879 13.0883 17.4889 13.0399V13.0195C17.4913 12.6831 17.4913 12.3463 17.4889 12.0091C17.4913 11.9607 17.4841 11.9124 17.4677 11.8668C17.4514 11.8213 17.4262 11.7794 17.3937 11.7435C17.3611 11.7077 17.3219 11.6787 17.2781 11.658C17.2343 11.6374 17.1869 11.6256 17.1385 11.6233H16.0975C16.0494 11.6212 16.0012 11.6286 15.9559 11.6451C15.9106 11.6616 15.869 11.6869 15.8334 11.7195C15.7979 11.7521 15.7691 11.7913 15.7487 11.8351C15.7284 11.8788 15.7168 11.9261 15.7147 11.9743C15.7142 11.9858 15.7142 11.9975 15.7147 12.0091C15.7123 12.3415 15.7123 12.6743 15.7147 13.0075C15.7087 13.1052 15.7417 13.2014 15.8065 13.2749C15.8713 13.3483 15.9626 13.3931 16.0603 13.3993H16.5913M14.2873 15.3565V14.8675C14.2958 14.7697 14.2651 14.6725 14.202 14.5974C14.1389 14.5222 14.0485 14.4752 13.9507 14.4667C13.9328 14.4652 13.9147 14.4652 13.8967 14.4667H12.9073C12.8589 14.4631 12.8102 14.4691 12.764 14.4843C12.7179 14.4996 12.6752 14.5238 12.6384 14.5555C12.6016 14.5873 12.5715 14.626 12.5497 14.6694C12.5279 14.7129 12.5148 14.7602 12.5113 14.8087C12.5102 14.8264 12.5102 14.8443 12.5113 14.8621V15.8497C12.5081 15.8981 12.5144 15.9468 12.53 15.9928C12.5456 16.0388 12.5702 16.0813 12.6022 16.1178C12.6343 16.1543 12.6732 16.1842 12.7168 16.2056C12.7604 16.227 12.8079 16.2396 12.8563 16.2427C12.8703 16.2435 12.8844 16.2435 12.8983 16.2427H13.8991C13.9476 16.2455 13.9962 16.2387 14.042 16.2228C14.0879 16.2068 14.1302 16.1819 14.1664 16.1496C14.2026 16.1173 14.2321 16.0781 14.2532 16.0344C14.2742 15.9906 14.2865 15.9431 14.2891 15.8947C14.2903 15.8807 14.2903 15.8666 14.2891 15.8527V15.3547M16.6003 14.4667H16.0873C15.9896 14.4644 15.8949 14.501 15.8241 14.5686C15.7534 14.6361 15.7123 14.7289 15.7099 14.8267V14.8477C15.7099 15.1843 15.7099 15.5209 15.7099 15.8551C15.7075 15.9033 15.7146 15.9516 15.7309 15.9971C15.7471 16.0426 15.7722 16.0845 15.8046 16.1203C15.837 16.1561 15.8762 16.1852 15.9199 16.2059C15.9636 16.2266 16.0109 16.2385 16.0591 16.2409H17.1001C17.1978 16.2448 17.2931 16.2097 17.365 16.1435C17.4368 16.0772 17.4795 15.9851 17.4835 15.8875C17.4841 15.8765 17.4841 15.8654 17.4835 15.8545V14.8549C17.4887 14.758 17.4555 14.663 17.3911 14.5903C17.3268 14.5177 17.2365 14.4733 17.1397 14.4667H16.5997" fill="white"/>
10
+ <defs>
11
+ <filter id="filter0_f_16331_20764" x="7" y="25" width="16" height="8" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/>
14
+ <feGaussianBlur stdDeviation="1" result="effect1_foregroundBlur_16331_20764"/>
15
+ </filter>
16
+ <filter id="filter1_d_16331_20764" x="0" y="0" width="30" height="32.9985" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
17
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
18
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
19
+ <feOffset/>
20
+ <feGaussianBlur stdDeviation="2"/>
21
+ <feComposite in2="hardAlpha" operator="out"/>
22
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
23
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_16331_20764"/>
24
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_16331_20764" result="shape"/>
25
+ </filter>
26
+ </defs>
27
+ </svg>
@@ -0,0 +1,32 @@
1
+ <svg width="52" height="52" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d_2631_274104)">
3
+ <circle cx="26" cy="26" r="16" fill="white"/>
4
+ </g>
5
+ <circle cx="26" cy="26" r="14" fill="#FAB15C"/>
6
+ <path d="M22.3331 31V29.53L26.1131 25.96C26.4118 25.6893 26.6311 25.4467 26.7711 25.232C26.9111 25.0173 27.0044 24.8213 27.0511 24.644C27.1071 24.4667 27.1351 24.3033 27.1351 24.154C27.1351 23.762 26.9998 23.4633 26.7291 23.258C26.4678 23.0433 26.0804 22.936 25.5671 22.936C25.1564 22.936 24.7738 23.0153 24.4191 23.174C24.0738 23.3327 23.7798 23.58 23.5371 23.916L21.8851 22.852C22.2584 22.292 22.7811 21.8487 23.4531 21.522C24.1251 21.1953 24.8998 21.032 25.7771 21.032C26.5051 21.032 27.1398 21.1533 27.6811 21.396C28.2318 21.6293 28.6564 21.9607 28.9551 22.39C29.2631 22.8193 29.4171 23.3327 29.4171 23.93C29.4171 24.2473 29.3751 24.5647 29.2911 24.882C29.2164 25.19 29.0578 25.5167 28.8151 25.862C28.5818 26.2073 28.2364 26.5947 27.7791 27.024L24.6431 29.978L24.2091 29.152H29.7391V31H22.3331Z" fill="white"/>
7
+ <g opacity="0.7" filter="url(#filter1_d_2631_274104)">
8
+ <path d="M36.781 7.65002L35.461 9.89302C35.3705 10.0502 35.3446 10.2363 35.3886 10.4122C35.4326 10.5881 35.5432 10.74 35.697 10.836C37.8917 12.2409 39.7555 14.1051 41.16 16.3C41.256 16.4538 41.408 16.5644 41.5838 16.6084C41.7597 16.6524 41.9458 16.6265 42.103 16.536L44.346 15.216C44.4275 15.1691 44.4988 15.1061 44.5554 15.031C44.6121 14.9559 44.653 14.8702 44.6758 14.7789C44.6986 14.6876 44.7027 14.5926 44.688 14.4997C44.6732 14.4068 44.6399 14.3178 44.59 14.238C42.8426 11.4867 40.5103 9.15436 37.759 7.40702C37.6792 7.35709 37.5902 7.32376 37.4973 7.30901C37.4044 7.29427 37.3094 7.2984 37.2181 7.32118C37.1268 7.34396 37.0411 7.38491 36.966 7.44158C36.8909 7.49825 36.8279 7.56848 36.781 7.65002ZM46.601 20.651L44.073 21.309C43.8985 21.3562 43.749 21.469 43.6558 21.6239C43.5626 21.7788 43.5329 21.9637 43.573 22.14C44.1343 24.6827 44.1343 27.3173 43.573 29.86C43.5329 30.0363 43.5626 30.2212 43.6558 30.3761C43.749 30.531 43.8985 30.6439 44.073 30.691L46.601 31.349C46.6917 31.3735 46.7864 31.3794 46.8795 31.3665C46.9725 31.3536 47.0621 31.3221 47.1427 31.2738C47.2233 31.2256 47.2934 31.1616 47.3488 31.0857C47.4041 31.0098 47.4437 30.9235 47.465 30.832C48.173 27.6496 48.173 24.3504 47.465 21.168C47.4437 21.0765 47.4041 20.9902 47.3488 20.9143C47.2934 20.8384 47.2233 20.7744 47.1427 20.7262C47.0621 20.678 46.9725 20.6464 46.8795 20.6335C46.7864 20.6206 46.6917 20.6266 46.601 20.651ZM30.696 44.079C30.6502 43.9037 30.5376 43.7532 30.3823 43.6598C30.227 43.5663 30.0414 43.5374 29.865 43.579C27.3192 44.1397 24.6818 44.1397 22.136 43.579C21.9597 43.5389 21.7748 43.5686 21.6199 43.6618C21.465 43.755 21.3521 43.9045 21.305 44.079L20.647 46.6C20.6225 46.6907 20.6166 46.7854 20.6295 46.8785C20.6424 46.9716 20.6739 47.0611 20.7222 47.1417C20.7704 47.2223 20.8344 47.2924 20.9103 47.3478C20.9862 47.4032 21.0725 47.4427 21.164 47.464C24.3471 48.172 27.6469 48.172 30.83 47.464C30.9214 47.4427 31.0076 47.4032 31.0834 47.3479C31.1592 47.2926 31.2231 47.2226 31.2714 47.1421C31.3196 47.0616 31.3512 46.9722 31.3641 46.8792C31.3771 46.7863 31.3713 46.6917 31.347 46.601L30.696 44.079ZM15.21 7.64902C15.163 7.56762 15.1002 7.49651 15.0251 7.43993C14.9501 7.38335 14.8644 7.34245 14.7733 7.31968C14.6821 7.29691 14.5873 7.29273 14.4945 7.30739C14.4016 7.32205 14.3127 7.35526 14.233 7.40502C11.4742 9.14543 9.13842 11.4795 7.39599 14.237C7.34623 14.3167 7.31303 14.4057 7.29837 14.4985C7.28371 14.5913 7.28789 14.6861 7.31066 14.7773C7.33343 14.8685 7.37432 14.9541 7.4309 15.0292C7.48748 15.1042 7.55859 15.1671 7.63999 15.214L9.88599 16.533C10.0436 16.6246 10.2308 16.6511 10.4076 16.6068C10.5845 16.5626 10.7371 16.4511 10.833 16.296C12.237 14.1021 14.101 12.2394 16.296 10.837C16.451 10.7411 16.5625 10.5885 16.6068 10.4116C16.6511 10.2348 16.6246 10.0476 16.533 9.89002L15.21 7.64902ZM7.90999 21.308L5.39599 20.652C5.30528 20.6274 5.21053 20.6213 5.11741 20.6341C5.02428 20.6468 4.93468 20.6782 4.85396 20.7264C4.77323 20.7746 4.70303 20.8385 4.64754 20.9143C4.59205 20.9902 4.55242 21.0765 4.53099 21.168C3.823 24.3504 3.823 27.6496 4.53099 30.832C4.55231 30.9235 4.59184 31.0098 4.64721 31.0857C4.70258 31.1616 4.77267 31.2256 4.8533 31.2738C4.93392 31.3221 5.02343 31.3536 5.1165 31.3665C5.20956 31.3794 5.30428 31.3735 5.39499 31.349L7.92299 30.691C8.09751 30.6439 8.24702 30.531 8.34022 30.3761C8.43342 30.2212 8.46308 30.0363 8.42299 29.86C8.13992 28.5928 7.99673 27.2984 7.99599 26C7.99593 24.7027 8.13439 23.409 8.40899 22.141C8.44966 21.9645 8.42028 21.779 8.32703 21.6237C8.23379 21.4683 8.08494 21.3552 7.90999 21.308ZM9.88899 35.465L7.64599 36.785C7.56446 36.832 7.49322 36.8949 7.43655 36.97C7.37988 37.0451 7.33893 37.1309 7.31616 37.2222C7.29338 37.3135 7.28924 37.4084 7.30399 37.5013C7.31874 37.5943 7.35207 37.6833 7.40199 37.763C9.14933 40.5143 11.4817 42.8467 14.233 44.594C14.3127 44.6439 14.4017 44.6773 14.4947 44.692C14.5876 44.7068 14.6826 44.7026 14.7738 44.6799C14.8651 44.6571 14.9509 44.6161 15.026 44.5595C15.1011 44.5028 15.164 44.4316 15.211 44.35L16.531 42.107C16.6214 41.9499 16.6474 41.7638 16.6034 41.5879C16.5594 41.412 16.4488 41.26 16.295 41.164C14.1003 39.7592 12.2365 37.895 10.832 35.7C10.736 35.5462 10.584 35.4357 10.4081 35.3916C10.2322 35.3476 10.0461 35.3746 9.88899 35.465ZM41.16 35.7C39.7552 37.8951 37.891 39.7593 35.696 41.164C35.5422 41.26 35.4316 41.412 35.3876 41.5879C35.3436 41.7638 35.3695 41.9499 35.46 42.107L36.78 44.35C36.827 44.4316 36.8899 44.5028 36.965 44.5595C37.0401 44.6161 37.1258 44.6571 37.2171 44.6799C37.3084 44.7026 37.4034 44.7068 37.4963 44.692C37.5892 44.6773 37.6782 44.6439 37.758 44.594C40.5093 42.8467 42.8416 40.5143 44.589 37.763C44.6389 37.6833 44.6722 37.5943 44.687 37.5013C44.7017 37.4084 44.6976 37.3135 44.6748 37.2222C44.6521 37.1309 44.6111 37.0451 44.5544 36.97C44.4978 36.8949 44.4265 36.832 44.345 36.785L42.102 35.465C41.9448 35.3746 41.7587 35.3486 41.5828 35.3926C41.407 35.4367 41.255 35.5472 41.159 35.701M25.996 4.00002C24.3707 3.99798 22.7501 4.17607 21.164 4.53102C21.0725 4.55244 20.9862 4.59208 20.9103 4.64757C20.8344 4.70305 20.7705 4.77325 20.7224 4.85398C20.6742 4.93471 20.6428 5.02431 20.63 5.11743C20.6173 5.21056 20.6234 5.3053 20.648 5.39602L21.304 7.91202C21.3511 8.08696 21.4643 8.23681 21.6196 8.33006C21.775 8.4233 21.9604 8.45268 22.137 8.41202C23.405 8.13775 24.6987 7.99963 25.996 8.00002C27.2971 7.99907 28.5944 8.1399 29.865 8.42002C30.0414 8.46168 30.227 8.43269 30.3823 8.33926C30.5376 8.24583 30.6502 8.09536 30.696 7.92002L31.347 5.39302C31.3713 5.30237 31.3771 5.20776 31.3641 5.11481C31.3512 5.02186 31.3196 4.93247 31.2714 4.85196C31.2231 4.77145 31.1592 4.70146 31.0834 4.64615C31.0076 4.59084 30.9214 4.55135 30.83 4.53002C29.2431 4.17581 27.6219 3.99806 25.996 4.00002Z" fill="white"/>
9
+ </g>
10
+ <defs>
11
+ <filter id="filter0_d_2631_274104" x="6" y="6" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
+ <feOffset/>
15
+ <feGaussianBlur stdDeviation="2"/>
16
+ <feComposite in2="hardAlpha" operator="out"/>
17
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
18
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2631_274104"/>
19
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2631_274104" result="shape"/>
20
+ </filter>
21
+ <filter id="filter1_d_2631_274104" x="0" y="0" width="51.9961" height="51.995" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
22
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
23
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
24
+ <feOffset/>
25
+ <feGaussianBlur stdDeviation="2"/>
26
+ <feComposite in2="hardAlpha" operator="out"/>
27
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
28
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2631_274104"/>
29
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2631_274104" result="shape"/>
30
+ </filter>
31
+ </defs>
32
+ </svg>
@@ -0,0 +1,32 @@
1
+ <svg width="52" height="52" viewBox="0 0 52 52" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d_2631_274105)">
3
+ <circle cx="26" cy="26" r="16" fill="white"/>
4
+ </g>
5
+ <circle cx="26" cy="26" r="14" fill="#FAB15C"/>
6
+ <path d="M25.7149 31.168C25.0336 31.168 24.3569 31.0793 23.6849 30.902C23.0222 30.7153 22.4529 30.454 21.9769 30.118L22.8729 28.382C23.2462 28.6527 23.6756 28.8673 24.1609 29.026C24.6556 29.1847 25.1549 29.264 25.6589 29.264C26.2282 29.264 26.6762 29.152 27.0029 28.928C27.3296 28.704 27.4929 28.3913 27.4929 27.99C27.4929 27.738 27.4276 27.514 27.2969 27.318C27.1662 27.122 26.9329 26.9727 26.5969 26.87C26.2702 26.7673 25.8082 26.716 25.2109 26.716H22.7049L23.2089 21.2H29.1869V23.02H24.0209L25.1969 21.984L24.8469 25.918L23.6709 24.882H25.7429C26.7136 24.882 27.4929 25.0173 28.0809 25.288C28.6782 25.5493 29.1122 25.9087 29.3829 26.366C29.6536 26.8233 29.7889 27.3413 29.7889 27.92C29.7889 28.4987 29.6442 29.0353 29.3549 29.53C29.0656 30.0153 28.6176 30.412 28.0109 30.72C27.4136 31.0187 26.6482 31.168 25.7149 31.168Z" fill="white"/>
7
+ <g opacity="0.7" filter="url(#filter1_d_2631_274105)">
8
+ <path d="M36.781 7.65002L35.461 9.89302C35.3705 10.0502 35.3446 10.2363 35.3886 10.4122C35.4326 10.5881 35.5432 10.74 35.697 10.836C37.8917 12.2409 39.7555 14.1051 41.16 16.3C41.256 16.4538 41.408 16.5644 41.5838 16.6084C41.7597 16.6524 41.9458 16.6265 42.103 16.536L44.346 15.216C44.4275 15.1691 44.4988 15.1061 44.5554 15.031C44.6121 14.9559 44.653 14.8702 44.6758 14.7789C44.6986 14.6876 44.7027 14.5926 44.688 14.4997C44.6732 14.4068 44.6399 14.3178 44.59 14.238C42.8426 11.4867 40.5103 9.15436 37.759 7.40702C37.6792 7.35709 37.5902 7.32376 37.4973 7.30901C37.4044 7.29427 37.3094 7.2984 37.2181 7.32118C37.1268 7.34396 37.0411 7.38491 36.966 7.44158C36.8909 7.49825 36.8279 7.56848 36.781 7.65002ZM46.601 20.651L44.073 21.309C43.8985 21.3562 43.749 21.469 43.6558 21.6239C43.5626 21.7788 43.5329 21.9637 43.573 22.14C44.1343 24.6827 44.1343 27.3173 43.573 29.86C43.5329 30.0363 43.5626 30.2212 43.6558 30.3761C43.749 30.531 43.8985 30.6439 44.073 30.691L46.601 31.349C46.6917 31.3735 46.7864 31.3794 46.8795 31.3665C46.9725 31.3536 47.0621 31.3221 47.1427 31.2738C47.2233 31.2256 47.2934 31.1616 47.3488 31.0857C47.4041 31.0098 47.4437 30.9235 47.465 30.832C48.173 27.6496 48.173 24.3504 47.465 21.168C47.4437 21.0765 47.4041 20.9902 47.3488 20.9143C47.2934 20.8384 47.2233 20.7744 47.1427 20.7262C47.0621 20.678 46.9725 20.6464 46.8795 20.6335C46.7864 20.6206 46.6917 20.6266 46.601 20.651ZM30.696 44.079C30.6502 43.9037 30.5376 43.7532 30.3823 43.6598C30.227 43.5663 30.0414 43.5374 29.865 43.579C27.3192 44.1397 24.6818 44.1397 22.136 43.579C21.9597 43.5389 21.7748 43.5686 21.6199 43.6618C21.465 43.755 21.3521 43.9045 21.305 44.079L20.647 46.6C20.6225 46.6907 20.6166 46.7854 20.6295 46.8785C20.6424 46.9716 20.6739 47.0611 20.7222 47.1417C20.7704 47.2223 20.8344 47.2924 20.9103 47.3478C20.9862 47.4032 21.0725 47.4427 21.164 47.464C24.3471 48.172 27.6469 48.172 30.83 47.464C30.9214 47.4427 31.0076 47.4032 31.0834 47.3479C31.1592 47.2926 31.2231 47.2226 31.2714 47.1421C31.3196 47.0616 31.3512 46.9722 31.3641 46.8792C31.3771 46.7863 31.3713 46.6917 31.347 46.601L30.696 44.079ZM15.21 7.64902C15.163 7.56762 15.1002 7.49651 15.0251 7.43993C14.9501 7.38335 14.8644 7.34245 14.7733 7.31968C14.6821 7.29691 14.5873 7.29273 14.4945 7.30739C14.4016 7.32205 14.3127 7.35526 14.233 7.40502C11.4742 9.14543 9.13842 11.4795 7.39599 14.237C7.34623 14.3167 7.31303 14.4057 7.29837 14.4985C7.28371 14.5913 7.28789 14.6861 7.31066 14.7773C7.33343 14.8685 7.37432 14.9541 7.4309 15.0292C7.48748 15.1042 7.55859 15.1671 7.63999 15.214L9.88599 16.533C10.0436 16.6246 10.2308 16.6511 10.4076 16.6068C10.5845 16.5626 10.7371 16.4511 10.833 16.296C12.237 14.1021 14.101 12.2394 16.296 10.837C16.451 10.7411 16.5625 10.5885 16.6068 10.4116C16.6511 10.2348 16.6246 10.0476 16.533 9.89002L15.21 7.64902ZM7.90999 21.308L5.39599 20.652C5.30528 20.6274 5.21053 20.6213 5.11741 20.6341C5.02428 20.6468 4.93468 20.6782 4.85396 20.7264C4.77323 20.7746 4.70303 20.8385 4.64754 20.9143C4.59205 20.9902 4.55242 21.0765 4.53099 21.168C3.823 24.3504 3.823 27.6496 4.53099 30.832C4.55231 30.9235 4.59184 31.0098 4.64721 31.0857C4.70258 31.1616 4.77267 31.2256 4.8533 31.2738C4.93392 31.3221 5.02343 31.3536 5.1165 31.3665C5.20956 31.3794 5.30428 31.3735 5.39499 31.349L7.92299 30.691C8.09751 30.6439 8.24702 30.531 8.34022 30.3761C8.43342 30.2212 8.46308 30.0363 8.42299 29.86C8.13992 28.5928 7.99673 27.2984 7.99599 26C7.99593 24.7027 8.13439 23.409 8.40899 22.141C8.44966 21.9645 8.42028 21.779 8.32703 21.6237C8.23379 21.4683 8.08494 21.3552 7.90999 21.308ZM9.88899 35.465L7.64599 36.785C7.56446 36.832 7.49322 36.8949 7.43655 36.97C7.37988 37.0451 7.33893 37.1309 7.31616 37.2222C7.29338 37.3135 7.28924 37.4084 7.30399 37.5013C7.31874 37.5943 7.35207 37.6833 7.40199 37.763C9.14933 40.5143 11.4817 42.8467 14.233 44.594C14.3127 44.6439 14.4017 44.6773 14.4947 44.692C14.5876 44.7068 14.6826 44.7026 14.7738 44.6799C14.8651 44.6571 14.9509 44.6161 15.026 44.5595C15.1011 44.5028 15.164 44.4316 15.211 44.35L16.531 42.107C16.6214 41.9499 16.6474 41.7638 16.6034 41.5879C16.5594 41.412 16.4488 41.26 16.295 41.164C14.1003 39.7592 12.2365 37.895 10.832 35.7C10.736 35.5462 10.584 35.4357 10.4081 35.3916C10.2322 35.3476 10.0461 35.3746 9.88899 35.465ZM41.16 35.7C39.7552 37.8951 37.891 39.7593 35.696 41.164C35.5422 41.26 35.4316 41.412 35.3876 41.5879C35.3436 41.7638 35.3695 41.9499 35.46 42.107L36.78 44.35C36.827 44.4316 36.8899 44.5028 36.965 44.5595C37.0401 44.6161 37.1258 44.6571 37.2171 44.6799C37.3084 44.7026 37.4034 44.7068 37.4963 44.692C37.5892 44.6773 37.6782 44.6439 37.758 44.594C40.5093 42.8467 42.8416 40.5143 44.589 37.763C44.6389 37.6833 44.6722 37.5943 44.687 37.5013C44.7017 37.4084 44.6976 37.3135 44.6748 37.2222C44.6521 37.1309 44.6111 37.0451 44.5544 36.97C44.4978 36.8949 44.4265 36.832 44.345 36.785L42.102 35.465C41.9448 35.3746 41.7587 35.3486 41.5828 35.3926C41.407 35.4367 41.255 35.5472 41.159 35.701M25.996 4.00002C24.3707 3.99798 22.7501 4.17607 21.164 4.53102C21.0725 4.55244 20.9862 4.59208 20.9103 4.64757C20.8344 4.70305 20.7705 4.77325 20.7224 4.85398C20.6742 4.93471 20.6428 5.02431 20.63 5.11743C20.6173 5.21056 20.6234 5.3053 20.648 5.39602L21.304 7.91202C21.3511 8.08696 21.4643 8.23681 21.6196 8.33006C21.775 8.4233 21.9604 8.45268 22.137 8.41202C23.405 8.13775 24.6987 7.99963 25.996 8.00002C27.2971 7.99907 28.5944 8.1399 29.865 8.42002C30.0414 8.46168 30.227 8.43269 30.3823 8.33926C30.5376 8.24583 30.6502 8.09536 30.696 7.92002L31.347 5.39302C31.3713 5.30237 31.3771 5.20776 31.3641 5.11481C31.3512 5.02186 31.3196 4.93247 31.2714 4.85196C31.2231 4.77145 31.1592 4.70146 31.0834 4.64615C31.0076 4.59084 30.9214 4.55135 30.83 4.53002C29.2431 4.17581 27.6219 3.99806 25.996 4.00002Z" fill="white"/>
9
+ </g>
10
+ <defs>
11
+ <filter id="filter0_d_2631_274105" x="6" y="6" width="40" height="40" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
+ <feOffset/>
15
+ <feGaussianBlur stdDeviation="2"/>
16
+ <feComposite in2="hardAlpha" operator="out"/>
17
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
18
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2631_274105"/>
19
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2631_274105" result="shape"/>
20
+ </filter>
21
+ <filter id="filter1_d_2631_274105" x="0" y="0" width="51.9961" height="51.995" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
22
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
23
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
24
+ <feOffset/>
25
+ <feGaussianBlur stdDeviation="2"/>
26
+ <feComposite in2="hardAlpha" operator="out"/>
27
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0"/>
28
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2631_274105"/>
29
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2631_274105" result="shape"/>
30
+ </filter>
31
+ </defs>
32
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d_3172_2387)">
3
+ <rect x="15.4209" y="4.72266" width="12" height="12" rx="6" transform="rotate(63.0573 15.4209 4.72266)" fill="white" shape-rendering="crispEdges"/>
4
+ <rect x="14.5439" y="7.41162" width="8" height="8" rx="4" transform="rotate(63.0573 14.5439 7.41162)" fill="#E66767"/>
5
+ </g>
6
+ <defs>
7
+ <filter id="filter0_d_3172_2387" x="-1.27637" y="-1.27734" width="28.1348" height="28.1348" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
8
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
9
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
10
+ <feOffset/>
11
+ <feGaussianBlur stdDeviation="3"/>
12
+ <feComposite in2="hardAlpha" operator="out"/>
13
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
14
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3172_2387"/>
15
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3172_2387" result="shape"/>
16
+ </filter>
17
+ </defs>
18
+ </svg>
@@ -0,0 +1,18 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d_3172_3231)">
3
+ <rect x="6" y="6" width="12" height="12" rx="6" fill="#E66767" shape-rendering="crispEdges"/>
4
+ <rect x="9" y="9" width="6" height="6" rx="3" fill="white"/>
5
+ </g>
6
+ <defs>
7
+ <filter id="filter0_d_3172_3231" x="0" y="0" width="24" height="24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
8
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
9
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
10
+ <feOffset/>
11
+ <feGaussianBlur stdDeviation="3"/>
12
+ <feComposite in2="hardAlpha" operator="out"/>
13
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/>
14
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3172_3231"/>
15
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3172_3231" result="shape"/>
16
+ </filter>
17
+ </defs>
18
+ </svg>