data-grid-workspace 0.0.120

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 (325) hide show
  1. package/.editorconfig +16 -0
  2. package/.vscode/extensions.json +4 -0
  3. package/.vscode/launch.json +20 -0
  4. package/.vscode/tasks.json +42 -0
  5. package/README.md +265 -0
  6. package/angular.json +144 -0
  7. package/backup-04112025/projects/data-grid/README.md +24 -0
  8. package/backup-04112025/projects/data-grid/ng-package.json +18 -0
  9. package/backup-04112025/projects/data-grid/package-lock.json +25 -0
  10. package/backup-04112025/projects/data-grid/package.json +23 -0
  11. package/backup-04112025/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  12. package/backup-04112025/projects/data-grid/src/lib/data-grid/animations.ts +228 -0
  13. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.html +5356 -0
  14. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.scss +2005 -0
  15. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  16. package/backup-04112025/projects/data-grid/src/lib/data-grid/data-grid.component.ts +5368 -0
  17. package/backup-04112025/projects/data-grid/src/lib/data-grid/statuses.ts +49 -0
  18. package/backup-04112025/projects/data-grid/src/lib/data-grid.module.ts +19 -0
  19. package/backup-04112025/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  20. package/backup-04112025/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  21. package/backup-04112025/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  22. package/backup-04112025/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  23. package/backup-04112025/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  24. package/backup-04112025/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  25. package/backup-04112025/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  26. package/backup-04112025/projects/data-grid/src/lib/services/cell-selection.service.ts +205 -0
  27. package/backup-04112025/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  28. package/backup-04112025/projects/data-grid/src/lib/services/common.service.ts +278 -0
  29. package/backup-04112025/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  30. package/backup-04112025/projects/data-grid/src/lib/services/copy-service.service.ts +252 -0
  31. package/backup-04112025/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  32. package/backup-04112025/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  33. package/backup-04112025/projects/data-grid/src/lib/services/export.service.spec.ts +16 -0
  34. package/backup-04112025/projects/data-grid/src/lib/services/export.service.ts +189 -0
  35. package/backup-04112025/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  36. package/backup-04112025/projects/data-grid/src/lib/services/split-columns.service.ts +148 -0
  37. package/backup-04112025/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  38. package/backup-04112025/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  39. package/backup-04112025/projects/data-grid/src/public-api.ts +6 -0
  40. package/backup-04112025/projects/data-grid/src/typings.d.ts +4 -0
  41. package/backup-04112025/projects/data-grid/tsconfig.lib.json +19 -0
  42. package/backup-04112025/projects/data-grid/tsconfig.lib.prod.json +10 -0
  43. package/backup-04112025/projects/data-grid/tsconfig.spec.json +14 -0
  44. package/backup-29-10-2025/projects/data-grid/README.md +24 -0
  45. package/backup-29-10-2025/projects/data-grid/ng-package.json +10 -0
  46. package/backup-29-10-2025/projects/data-grid/package-lock.json +25 -0
  47. package/backup-29-10-2025/projects/data-grid/package.json +12 -0
  48. package/backup-29-10-2025/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  49. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/animations.ts +228 -0
  50. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.html +5236 -0
  51. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.scss +1717 -0
  52. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  53. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/data-grid.component.ts +5092 -0
  54. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid/statuses.ts +47 -0
  55. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.module.ts +19 -0
  56. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  57. package/backup-29-10-2025/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  58. package/backup-29-10-2025/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  59. package/backup-29-10-2025/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  60. package/backup-29-10-2025/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  61. package/backup-29-10-2025/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  62. package/backup-29-10-2025/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  63. package/backup-29-10-2025/projects/data-grid/src/lib/services/cell-selection.service.ts +205 -0
  64. package/backup-29-10-2025/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  65. package/backup-29-10-2025/projects/data-grid/src/lib/services/common.service.ts +274 -0
  66. package/backup-29-10-2025/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  67. package/backup-29-10-2025/projects/data-grid/src/lib/services/copy-service.service.ts +251 -0
  68. package/backup-29-10-2025/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  69. package/backup-29-10-2025/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  70. package/backup-29-10-2025/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  71. package/backup-29-10-2025/projects/data-grid/src/lib/services/split-columns.service.ts +148 -0
  72. package/backup-29-10-2025/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  73. package/backup-29-10-2025/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  74. package/backup-29-10-2025/projects/data-grid/src/public-api.ts +6 -0
  75. package/backup-29-10-2025/projects/data-grid/tsconfig.lib.json +16 -0
  76. package/backup-29-10-2025/projects/data-grid/tsconfig.lib.prod.json +10 -0
  77. package/backup-29-10-2025/projects/data-grid/tsconfig.spec.json +14 -0
  78. package/image.png +0 -0
  79. package/package.json +52 -0
  80. package/projects/data-grid/README.md +324 -0
  81. package/projects/data-grid/ng-package.json +19 -0
  82. package/projects/data-grid/package-lock.json +25 -0
  83. package/projects/data-grid/package.json +38 -0
  84. package/projects/data-grid/src/lib/assets/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf +0 -0
  85. package/projects/data-grid/src/lib/assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf +0 -0
  86. package/projects/data-grid/src/lib/assets/fonts/Inter/OFL.txt +93 -0
  87. package/projects/data-grid/src/lib/assets/fonts/Inter/README.txt +118 -0
  88. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Black.ttf +0 -0
  89. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-BlackItalic.ttf +0 -0
  90. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Bold.ttf +0 -0
  91. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-BoldItalic.ttf +0 -0
  92. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraBold.ttf +0 -0
  93. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraBoldItalic.ttf +0 -0
  94. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraLight.ttf +0 -0
  95. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ExtraLightItalic.ttf +0 -0
  96. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Italic.ttf +0 -0
  97. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Light.ttf +0 -0
  98. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-LightItalic.ttf +0 -0
  99. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Medium.ttf +0 -0
  100. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-MediumItalic.ttf +0 -0
  101. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Regular.ttf +0 -0
  102. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-SemiBold.ttf +0 -0
  103. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-SemiBoldItalic.ttf +0 -0
  104. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-Thin.ttf +0 -0
  105. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_18pt-ThinItalic.ttf +0 -0
  106. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Black.ttf +0 -0
  107. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-BlackItalic.ttf +0 -0
  108. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Bold.ttf +0 -0
  109. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-BoldItalic.ttf +0 -0
  110. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraBold.ttf +0 -0
  111. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraBoldItalic.ttf +0 -0
  112. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraLight.ttf +0 -0
  113. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ExtraLightItalic.ttf +0 -0
  114. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Italic.ttf +0 -0
  115. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Light.ttf +0 -0
  116. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-LightItalic.ttf +0 -0
  117. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Medium.ttf +0 -0
  118. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-MediumItalic.ttf +0 -0
  119. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Regular.ttf +0 -0
  120. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-SemiBold.ttf +0 -0
  121. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-SemiBoldItalic.ttf +0 -0
  122. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-Thin.ttf +0 -0
  123. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_24pt-ThinItalic.ttf +0 -0
  124. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Black.ttf +0 -0
  125. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-BlackItalic.ttf +0 -0
  126. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Bold.ttf +0 -0
  127. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-BoldItalic.ttf +0 -0
  128. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraBold.ttf +0 -0
  129. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraBoldItalic.ttf +0 -0
  130. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraLight.ttf +0 -0
  131. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ExtraLightItalic.ttf +0 -0
  132. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Italic.ttf +0 -0
  133. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Light.ttf +0 -0
  134. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-LightItalic.ttf +0 -0
  135. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Medium.ttf +0 -0
  136. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-MediumItalic.ttf +0 -0
  137. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Regular.ttf +0 -0
  138. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-SemiBold.ttf +0 -0
  139. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-SemiBoldItalic.ttf +0 -0
  140. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-Thin.ttf +0 -0
  141. package/projects/data-grid/src/lib/assets/fonts/Inter/static/Inter_28pt-ThinItalic.ttf +0 -0
  142. package/projects/data-grid/src/lib/css/bootstrap.css +12043 -0
  143. package/projects/data-grid/src/lib/data-grid/animations.ts +267 -0
  144. package/projects/data-grid/src/lib/data-grid/data-grid.component.html +5759 -0
  145. package/projects/data-grid/src/lib/data-grid/data-grid.component.scss +2154 -0
  146. package/projects/data-grid/src/lib/data-grid/data-grid.component.spec.ts +28 -0
  147. package/projects/data-grid/src/lib/data-grid/data-grid.component.ts +6773 -0
  148. package/projects/data-grid/src/lib/data-grid/data-grid.tokens.ts +4 -0
  149. package/projects/data-grid/src/lib/data-grid/statuses.ts +49 -0
  150. package/projects/data-grid/src/lib/data-grid.module.ts +23 -0
  151. package/projects/data-grid/src/lib/data-grid.service.spec.ts +16 -0
  152. package/projects/data-grid/src/lib/data-grid.service.ts +9 -0
  153. package/projects/data-grid/src/lib/directives/cell-editor.directive.spec.ts +11 -0
  154. package/projects/data-grid/src/lib/directives/cell-editor.directive.ts +88 -0
  155. package/projects/data-grid/src/lib/directives/cell-render-init.directive.spec.ts +11 -0
  156. package/projects/data-grid/src/lib/directives/cell-render-init.directive.ts +98 -0
  157. package/projects/data-grid/src/lib/directives/cellHost.directive.spec.ts +11 -0
  158. package/projects/data-grid/src/lib/directives/cellHost.directive.ts +10 -0
  159. package/projects/data-grid/src/lib/directives/draggable-header.directive.spec.ts +11 -0
  160. package/projects/data-grid/src/lib/directives/draggable-header.directive.ts +172 -0
  161. package/projects/data-grid/src/lib/interfaces/data-grid-config.ts.ts +136 -0
  162. package/projects/data-grid/src/lib/pipes/filter.pipe.spec.ts +11 -0
  163. package/projects/data-grid/src/lib/pipes/filter.pipe.ts +22 -0
  164. package/projects/data-grid/src/lib/pipes/format-currency.pipe.spec.ts +11 -0
  165. package/projects/data-grid/src/lib/pipes/format-currency.pipe.ts +59 -0
  166. package/projects/data-grid/src/lib/pipes/format-index.pipe.spec.ts +11 -0
  167. package/projects/data-grid/src/lib/pipes/format-index.pipe.ts +20 -0
  168. package/projects/data-grid/src/lib/services/cell-selection.service.spec.ts +16 -0
  169. package/projects/data-grid/src/lib/services/cell-selection.service.ts +372 -0
  170. package/projects/data-grid/src/lib/services/common.service.spec.ts +16 -0
  171. package/projects/data-grid/src/lib/services/common.service.ts +395 -0
  172. package/projects/data-grid/src/lib/services/copy-service.service.spec.ts +16 -0
  173. package/projects/data-grid/src/lib/services/copy-service.service.ts +252 -0
  174. package/projects/data-grid/src/lib/services/drag-drp.service.spec.ts +16 -0
  175. package/projects/data-grid/src/lib/services/drag-drp.service.ts +58 -0
  176. package/projects/data-grid/src/lib/services/export.service.spec.ts +16 -0
  177. package/projects/data-grid/src/lib/services/export.service.ts +189 -0
  178. package/projects/data-grid/src/lib/services/row-action.service.ts +203 -0
  179. package/projects/data-grid/src/lib/services/split-columns.service.spec.ts +16 -0
  180. package/projects/data-grid/src/lib/services/split-columns.service.ts +168 -0
  181. package/projects/data-grid/src/lib/services/swap-columns.service.spec.ts +16 -0
  182. package/projects/data-grid/src/lib/services/swap-columns.service.ts +162 -0
  183. package/projects/data-grid/src/lib/styles/font-style.css +34 -0
  184. package/projects/data-grid/src/public-api.ts +8 -0
  185. package/projects/data-grid/src/typings.d.ts +4 -0
  186. package/projects/data-grid/tsconfig.lib.json +19 -0
  187. package/projects/data-grid/tsconfig.lib.prod.json +10 -0
  188. package/projects/data-grid/tsconfig.spec.json +14 -0
  189. package/src/app/app.component.html +61 -0
  190. package/src/app/app.component.scss +1 -0
  191. package/src/app/app.component.spec.ts +27 -0
  192. package/src/app/app.component.ts +166 -0
  193. package/src/app/app.module.ts +33 -0
  194. package/src/app/dropdown-filter/dropdown-filter.component.css +122 -0
  195. package/src/app/dropdown-filter/dropdown-filter.component.html +118 -0
  196. package/src/app/dropdown-filter/dropdown-filter.component.spec.ts +28 -0
  197. package/src/app/dropdown-filter/dropdown-filter.component.ts +139 -0
  198. package/src/app/status-cell/status-cell.component.css +0 -0
  199. package/src/app/status-cell/status-cell.component.html +1 -0
  200. package/src/app/status-cell/status-cell.component.spec.ts +28 -0
  201. package/src/app/status-cell/status-cell.component.ts +18 -0
  202. package/src/app/status-cell-editor/status-cell-editor.component.css +0 -0
  203. package/src/app/status-cell-editor/status-cell-editor.component.html +12 -0
  204. package/src/app/status-cell-editor/status-cell-editor.component.spec.ts +28 -0
  205. package/src/app/status-cell-editor/status-cell-editor.component.ts +77 -0
  206. package/src/app/sub-category-cell-component/sub-category-cell-component.component.css +6 -0
  207. package/src/app/sub-category-cell-component/sub-category-cell-component.component.html +3 -0
  208. package/src/app/sub-category-cell-component/sub-category-cell-component.component.spec.ts +28 -0
  209. package/src/app/sub-category-cell-component/sub-category-cell-component.component.ts +26 -0
  210. package/src/app/testing-data/api-translation/data.ts +1929 -0
  211. package/src/app/testing-data/assets-category/data.ts +1410 -0
  212. package/src/app/testing-data/assets-list/data.ts +26633 -0
  213. package/src/app/testing-data/invoices/data.ts +3698 -0
  214. package/src/app/testing-data/manage-employee/data.ts +83205 -0
  215. package/src/app/testing-data/single-day-timesheet/data.ts +4450 -0
  216. package/src/app/testing-data/task-management/tasks.ts +2536 -0
  217. package/src/app/testing-data/translation.ts +135580 -0
  218. package/src/app/testing-data/writeup/data.ts +29506 -0
  219. package/src/assets/.gitkeep +0 -0
  220. package/src/assets/data-grid/document-icons/Newxlsx.svg +19 -0
  221. package/src/assets/data-grid/document-icons/Presentation.pptx +0 -0
  222. package/src/assets/data-grid/document-icons/Untitled spreadsheet.xlsx +0 -0
  223. package/src/assets/data-grid/document-icons/bell-icon.svg +31 -0
  224. package/src/assets/data-grid/document-icons/blank sheet ppt.pptx +0 -0
  225. package/src/assets/data-grid/document-icons/blank-docs-file.docx +0 -0
  226. package/src/assets/data-grid/document-icons/csv.svg +34 -0
  227. package/src/assets/data-grid/document-icons/doc.svg +34 -0
  228. package/src/assets/data-grid/document-icons/document-download.svg +18 -0
  229. package/src/assets/data-grid/document-icons/document-upload.svg +6 -0
  230. package/src/assets/data-grid/document-icons/docx.svg +35 -0
  231. package/src/assets/data-grid/document-icons/downloadDOC.svg +7 -0
  232. package/src/assets/data-grid/document-icons/edit-doc.svg +6 -0
  233. package/src/assets/data-grid/document-icons/empty-trash.svg +47 -0
  234. package/src/assets/data-grid/document-icons/jpeg.svg +40 -0
  235. package/src/assets/data-grid/document-icons/jpg.svg +24 -0
  236. package/src/assets/data-grid/document-icons/loading gif.gif +0 -0
  237. package/src/assets/data-grid/document-icons/more-Icon.svg +19 -0
  238. package/src/assets/data-grid/document-icons/mp4.svg +28 -0
  239. package/src/assets/data-grid/document-icons/my-request-empty.svg +37 -0
  240. package/src/assets/data-grid/document-icons/newDoc.svg +16 -0
  241. package/src/assets/data-grid/document-icons/newppt.svg +16 -0
  242. package/src/assets/data-grid/document-icons/overDue.svg +8 -0
  243. package/src/assets/data-grid/document-icons/ownerShare.svg +13 -0
  244. package/src/assets/data-grid/document-icons/pdf.svg +36 -0
  245. package/src/assets/data-grid/document-icons/permanantDelete.svg +4 -0
  246. package/src/assets/data-grid/document-icons/png.svg +53 -0
  247. package/src/assets/data-grid/document-icons/ppt.svg +24 -0
  248. package/src/assets/data-grid/document-icons/pptx.svg +25 -0
  249. package/src/assets/data-grid/document-icons/restore-delete.svg +4 -0
  250. package/src/assets/data-grid/document-icons/restoreTrash.svg +10 -0
  251. package/src/assets/data-grid/document-icons/send-2.svg +16 -0
  252. package/src/assets/data-grid/document-icons/send-request-empty.svg +41 -0
  253. package/src/assets/data-grid/document-icons/shareIcon.svg +6 -0
  254. package/src/assets/data-grid/document-icons/sharedFileIcon.svg +6 -0
  255. package/src/assets/data-grid/document-icons/sharedriveempty.svg +40 -0
  256. package/src/assets/data-grid/document-icons/task-square.svg +25 -0
  257. package/src/assets/data-grid/document-icons/trash-01.svg +3 -0
  258. package/src/assets/data-grid/document-icons/trashRestore.svg +4 -0
  259. package/src/assets/data-grid/document-icons/txt.svg +34 -0
  260. package/src/assets/data-grid/document-icons/uploadFile.svg +16 -0
  261. package/src/assets/data-grid/document-icons/uploadfilefolder.svg +40 -0
  262. package/src/assets/data-grid/document-icons/xls.svg +34 -0
  263. package/src/assets/data-grid/document-icons/xlsx.svg +36 -0
  264. package/src/assets/data-grid/icons/Buttons.svg +3 -0
  265. package/src/assets/data-grid/icons/High.svg +3 -0
  266. package/src/assets/data-grid/icons/Low.svg +3 -0
  267. package/src/assets/data-grid/icons/Medium.svg +3 -0
  268. package/src/assets/data-grid/icons/Vector.svg +3 -0
  269. package/src/assets/data-grid/icons/arrow-counterclockwise.svg +4 -0
  270. package/src/assets/data-grid/icons/arrow-down.svg +3 -0
  271. package/src/assets/data-grid/icons/arrow-left.svg +3 -0
  272. package/src/assets/data-grid/icons/arrow-right-solid-full.svg +1 -0
  273. package/src/assets/data-grid/icons/arrow-right.svg +10 -0
  274. package/src/assets/data-grid/icons/arrow-up.svg +3 -0
  275. package/src/assets/data-grid/icons/arrows-angle-expand.svg +3 -0
  276. package/src/assets/data-grid/icons/arrows-expand-vertical.svg +3 -0
  277. package/src/assets/data-grid/icons/arrows-move.svg +3 -0
  278. package/src/assets/data-grid/icons/attachments.svg +3 -0
  279. package/src/assets/data-grid/icons/ban.svg +3 -0
  280. package/src/assets/data-grid/icons/check-blue.svg +3 -0
  281. package/src/assets/data-grid/icons/chevron-down.svg +3 -0
  282. package/src/assets/data-grid/icons/chevron-right.svg +3 -0
  283. package/src/assets/data-grid/icons/comments.svg +3 -0
  284. package/src/assets/data-grid/icons/cross-primary.svg +3 -0
  285. package/src/assets/data-grid/icons/dash.svg +3 -0
  286. package/src/assets/data-grid/icons/delete.svg +3 -0
  287. package/src/assets/data-grid/icons/diagram-3.svg +3 -0
  288. package/src/assets/data-grid/icons/download.svg +5 -0
  289. package/src/assets/data-grid/icons/edit.svg +3 -0
  290. package/src/assets/data-grid/icons/expend.svg +3 -0
  291. package/src/assets/data-grid/icons/eye-cross.svg +10 -0
  292. package/src/assets/data-grid/icons/eye.svg +4 -0
  293. package/src/assets/data-grid/icons/filter-2.svg +5 -0
  294. package/src/assets/data-grid/icons/grid-3x2-gap.svg +3 -0
  295. package/src/assets/data-grid/icons/grip-vertical.svg +8 -0
  296. package/src/assets/data-grid/icons/horizontal-dots.svg +5 -0
  297. package/src/assets/data-grid/icons/justify.svg +3 -0
  298. package/src/assets/data-grid/icons/layout-three-columns.svg +3 -0
  299. package/src/assets/data-grid/icons/list-details.svg +8 -0
  300. package/src/assets/data-grid/icons/minimize.svg +4 -0
  301. package/src/assets/data-grid/icons/pin-blue.svg +5 -0
  302. package/src/assets/data-grid/icons/pin-left.svg +3 -0
  303. package/src/assets/data-grid/icons/pin-right.svg +3 -0
  304. package/src/assets/data-grid/icons/pin.svg +5 -0
  305. package/src/assets/data-grid/icons/plus.svg +3 -0
  306. package/src/assets/data-grid/icons/resize-handle.svg +3 -0
  307. package/src/assets/data-grid/icons/search.svg +3 -0
  308. package/src/assets/data-grid/icons/settings-2.svg +3 -0
  309. package/src/assets/data-grid/icons/sort-asc.svg +4 -0
  310. package/src/assets/data-grid/icons/sort-desc.svg +4 -0
  311. package/src/assets/data-grid/icons/star-blue.svg +3 -0
  312. package/src/assets/data-grid/icons/star.svg +3 -0
  313. package/src/assets/data-grid/icons/table-2.svg +3 -0
  314. package/src/assets/data-grid/icons/three-dots-vertical.svg +5 -0
  315. package/src/assets/data-grid/icons/trash-red.svg +7 -0
  316. package/src/assets/data-grid/icons/ui-checks-grid.svg +3 -0
  317. package/src/assets/data-grid/icons/x.svg +3 -0
  318. package/src/assets/data-grid/icons/zoom-charge.svg +4 -0
  319. package/src/favicon.ico +0 -0
  320. package/src/index.html +19 -0
  321. package/src/main.ts +7 -0
  322. package/src/styles.scss +3 -0
  323. package/tsconfig.app.json +14 -0
  324. package/tsconfig.json +44 -0
  325. package/tsconfig.spec.json +14 -0
@@ -0,0 +1,16 @@
1
+ <svg width="32" height="29" viewBox="0 0 32 29" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_8687_88876)">
3
+ <path d="M17.2873 14.5V29C12.6596 29 8.53492 26.8932 5.83542 23.6048C3.79822 21.1179 2.57422 17.9536 2.57422 14.5083H17.2873V14.5Z" fill="#C9401E"/>
4
+ <path d="M17.2877 0V14.5H2.58301C2.58301 11.947 3.25369 9.551 4.42739 7.47721C6.93407 3.01567 11.7546 0 17.2877 0Z" fill="#EF6A48"/>
5
+ <path d="M32.0002 14.5H17.2871V0C25.4108 0 32.0002 6.49402 32.0002 14.5Z" fill="#FE8E69"/>
6
+ <path d="M32.0002 14.5C32.0002 22.506 25.4108 29 17.2871 29V14.5H32.0002Z" fill="#C7411C"/>
7
+ <path opacity="0.05" d="M17.4209 8.85686V22.2167C17.4209 22.4232 17.379 22.6133 17.2952 22.7868C17.0772 23.266 16.5909 23.6047 16.0209 23.6047H5.84323C3.80603 21.1178 2.58203 17.9534 2.58203 14.5081C2.58203 11.9552 3.25271 9.55914 4.42641 7.48535H16.0125C16.5826 7.48535 17.0688 7.8241 17.2868 8.3033C17.3287 8.38592 17.3538 8.46854 17.3706 8.55943C17.4041 8.64205 17.4209 8.74945 17.4209 8.85686Z" fill="black"/>
8
+ <path d="M16.3647 7.81581V21.1756C16.3647 21.9358 15.7359 22.5554 14.9646 22.5554H1.40005C1.33298 22.5554 1.25753 22.5471 1.19046 22.5389C1.15693 22.5389 1.1234 22.5306 1.08986 22.5224C0.469479 22.3819 0 21.8283 0 21.1756V7.81581C0 7.05569 0.628766 6.43604 1.40005 6.43604H14.9646C15.6269 6.43604 16.1886 6.89045 16.3312 7.51011C16.3563 7.60925 16.3647 7.7084 16.3647 7.81581Z" fill="#C7411C"/>
9
+ <path d="M7.76309 9.69971H4.9043V19.3003H6.44687V15.6319H7.81339C10.1272 15.6319 11.4518 14.5248 11.4518 12.5997C11.4602 10.6746 10.2195 9.69971 7.76309 9.69971ZM9.91766 12.5997C9.91766 13.7977 9.22182 14.3265 7.67087 14.3265H6.44687V10.9969H7.6038C9.27212 10.9969 9.91766 11.443 9.91766 12.5997Z" fill="white"/>
10
+ </g>
11
+ <defs>
12
+ <clipPath id="clip0_8687_88876">
13
+ <rect width="32" height="29" fill="white"/>
14
+ </clipPath>
15
+ </defs>
16
+ </svg>
@@ -0,0 +1,8 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9 22H15C20 22 22 20 22 15V9C22 4 20 2 15 2H9C4 2 2 4 2 9V15C2 20 4 22 9 22Z" fill="#D12323" stroke="#D12323" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M11.9997 18.2708C8.94301 18.2708 6.45801 15.7858 6.45801 12.7292C6.45801 9.6725 8.94301 7.1875 11.9997 7.1875C15.0563 7.1875 17.5413 9.6725 17.5413 12.7292C17.5413 12.9683 17.343 13.1667 17.1038 13.1667C16.8647 13.1667 16.6663 12.9683 16.6663 12.7292C16.6663 10.1567 14.5722 8.0625 11.9997 8.0625C9.42717 8.0625 7.33301 10.1567 7.33301 12.7292C7.33301 15.3017 9.42717 17.3958 11.9997 17.3958C12.2388 17.3958 12.4372 17.5942 12.4372 17.8333C12.4372 18.0725 12.2388 18.2708 11.9997 18.2708Z" fill="white"/>
4
+ <path d="M12 13.0207C11.7608 13.0207 11.5625 12.8223 11.5625 12.5832V9.6665C11.5625 9.42734 11.7608 9.229 12 9.229C12.2392 9.229 12.4375 9.42734 12.4375 9.6665V12.5832C12.4375 12.8223 12.2392 13.0207 12 13.0207Z" fill="white"/>
5
+ <path d="M13.75 6.604H10.25C10.0108 6.604 9.8125 6.40567 9.8125 6.1665C9.8125 5.92734 10.0108 5.729 10.25 5.729H13.75C13.9892 5.729 14.1875 5.92734 14.1875 6.1665C14.1875 6.40567 13.9892 6.604 13.75 6.604Z" fill="white"/>
6
+ <path d="M15.4375 17.6873C15.1983 17.6873 15 17.489 15 17.2498V14.9165C15 14.6773 15.1983 14.479 15.4375 14.479C15.6767 14.479 15.875 14.6773 15.875 14.9165V17.2498C15.875 17.489 15.6767 17.6873 15.4375 17.6873Z" fill="white"/>
7
+ <circle cx="15.5" cy="18.5" r="0.5" fill="white"/>
8
+ </svg>
@@ -0,0 +1,13 @@
1
+ <svg width="78" height="64" viewBox="0 0 78 64" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0.600098 1C0.600098 0.447715 1.04781 0 1.6001 0H29.0973C29.2947 0 29.4878 0.058438 29.652 0.16795L38.7482 6.23205C38.9124 6.34156 39.1054 6.4 39.3029 6.4H76.4001C76.9524 6.4 77.4001 6.84772 77.4001 7.4V63C77.4001 63.5523 76.9524 64 76.4001 64H1.6001C1.04781 64 0.600098 63.5523 0.600098 63V1Z" fill="#F9B919"/>
3
+ <path d="M29.4001 19.1996L38.7072 9.8925C38.8947 9.70497 39.1491 9.59961 39.4143 9.59961H76.4001C76.9524 9.59961 77.4001 10.0473 77.4001 10.5996V59.7996C77.4001 60.3519 76.9524 60.7996 76.4001 60.7996H1.6001C1.04781 60.7996 0.600098 60.3519 0.600098 59.7996V20.1996C0.600098 19.6473 1.04781 19.1996 1.6001 19.1996H29.4001Z" fill="#FFEDB9"/>
4
+ <path d="M31.0001 22.3998L40.3072 13.0927C40.4947 12.9052 40.7491 12.7998 41.0143 12.7998H76.4001C76.9524 12.7998 77.4001 13.2475 77.4001 13.7998V59.7998C77.4001 60.3521 76.9524 60.7998 76.4001 60.7998H1.6001C1.04781 60.7998 0.600098 60.3521 0.600098 59.7998V23.3998C0.600098 22.8475 1.04781 22.3998 1.6001 22.3998H31.0001Z" fill="url(#paint0_linear_9076_45665)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M40.6667 53C40.6667 53 38 53 38 50.3333C38 47.6667 40.6667 39.6667 54 39.6667C67.3333 39.6667 70 47.6667 70 50.3333C70 53 67.3333 53 67.3333 53H40.6667Z" fill="white"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M54 37C58.4183 37 62 33.4183 62 29C62 24.5817 58.4183 21 54 21C49.5817 21 46 24.5817 46 29C46 33.4183 49.5817 37 54 37Z" fill="white"/>
7
+ <defs>
8
+ <linearGradient id="paint0_linear_9076_45665" x1="39.0001" y1="9.59981" x2="77.4001" y2="60.7998" gradientUnits="userSpaceOnUse">
9
+ <stop stop-color="#FFE79F"/>
10
+ <stop offset="1" stop-color="#FFC937"/>
11
+ </linearGradient>
12
+ </defs>
13
+ </svg>
@@ -0,0 +1,36 @@
1
+ <svg width="56" height="65" viewBox="0 0 56 65" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_5799_29136)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.1807 0H38.0751C38.0378 0.236783 38.0176 0.478239 38.0176 0.724369V13.171C38.0176 15.6931 40.075 17.7556 42.5909 17.7556H56V60.8314C56 63.1244 54.129 65 51.8416 65H11.1807C8.8933 65 7.02234 63.1244 7.02234 60.8314V4.16862C7.02234 1.87557 8.8933 0 11.1807 0Z" fill="url(#paint0_linear_5799_29136)"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.44904 14.2911H34.1451C35.4924 14.2911 36.5942 15.3955 36.5942 16.7461V25.3373C36.5942 26.6879 35.4924 27.7924 34.1451 27.7924H2.44904C1.10176 27.7908 0 26.6863 0 25.3357V16.7446C0 15.3955 1.10176 14.2911 2.44904 14.2911Z" fill="url(#paint1_radial_5799_29136)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38.0751 0L55.9985 17.7556H42.5894C40.0735 17.7556 38.0161 15.6931 38.0161 13.171V0.724369C38.0176 0.478239 38.0378 0.236783 38.0751 0Z" fill="url(#paint2_linear_5799_29136)"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.4334 16.8864H10.6943C11.6221 16.8864 12.3167 17.1076 12.7798 17.55C13.2413 17.9924 13.4728 18.6233 13.4728 19.4411C13.4728 20.2808 13.2195 20.9381 12.716 21.4102C12.2126 21.8837 11.4418 22.1205 10.4084 22.1205H9.00364V25.1956H6.4334V16.8864ZM9.0052 20.4381H9.6361C10.1334 20.4381 10.483 20.3509 10.6835 20.1795C10.8839 20.0081 10.9849 19.7869 10.9849 19.5174C10.9849 19.2557 10.8979 19.0361 10.7223 18.8538C10.5483 18.6716 10.2204 18.5812 9.73866 18.5812H9.0052V20.4381Z" fill="black"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.8419 16.8864H18.6491C19.3981 16.8864 20.0057 16.9892 20.4672 17.1917C20.9287 17.3973 21.311 17.6886 21.614 18.0703C21.9155 18.4535 22.133 18.8959 22.2682 19.4037C22.405 19.91 22.4733 20.4459 22.4733 21.0129C22.4733 21.9009 22.3723 22.5894 22.1703 23.0785C21.9699 23.5677 21.6902 23.9789 21.3312 24.3092C20.9722 24.6394 20.5884 24.8606 20.1766 24.9712C19.6156 25.1223 19.1059 25.1971 18.6506 25.1971H14.8434V16.8864H14.8419ZM17.4012 18.7666V23.3044H18.0306C18.5667 23.3044 18.949 23.2452 19.1774 23.1268C19.4027 23.0069 19.5814 22.7997 19.7104 22.5037C19.8394 22.2062 19.9031 21.7264 19.9031 21.0612C19.9031 20.1811 19.7601 19.5798 19.4727 19.2542C19.1852 18.9286 18.7081 18.7666 18.043 18.7666H17.4012Z" fill="black"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M23.8253 16.8864H30.1577V18.6731H26.3955V20.1234H29.6138V21.8074H26.3955V25.1956H23.8253V16.8864Z" fill="black"/>
9
+ <path d="M34.8273 33.1278H17.2116V35.2682H34.8273V33.1278Z" fill="white"/>
10
+ <path d="M34.8273 37.407H17.2116V39.5474H34.8273V37.407Z" fill="white"/>
11
+ <path d="M34.8273 41.4199H17.2116V43.5603H34.8273V41.4199Z" fill="white"/>
12
+ <path d="M45.8107 45.4312H17.2116V47.5715H45.8107V45.4312Z" fill="white"/>
13
+ <path d="M45.8107 49.7104H17.2116V51.8508H45.8107V49.7104Z" fill="white"/>
14
+ <path d="M45.8107 53.7232H17.2116V55.8636H45.8107V53.7232Z" fill="white"/>
15
+ <path d="M45.8107 33.1278H36.072V39.6814H45.8107V33.1278Z" fill="white"/>
16
+ <path d="M45.8107 41.4199H36.173V43.5603H45.8107V41.4199Z" fill="white"/>
17
+ </g>
18
+ <defs>
19
+ <linearGradient id="paint0_linear_5799_29136" x1="10.5298" y1="62.9821" x2="45.195" y2="12.8671" gradientUnits="userSpaceOnUse">
20
+ <stop stop-color="#F96165"/>
21
+ <stop offset="0.5" stop-color="#F8193A"/>
22
+ <stop offset="1" stop-color="#E70025"/>
23
+ </linearGradient>
24
+ <radialGradient id="paint1_radial_5799_29136" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.2957 21.0405) rotate(30.8665) scale(18.6505 17.4573)">
25
+ <stop stop-color="white"/>
26
+ <stop offset="1" stop-color="#C1BEB9"/>
27
+ </radialGradient>
28
+ <linearGradient id="paint2_linear_5799_29136" x1="43.2777" y1="12.7053" x2="39.7315" y2="16.2976" gradientUnits="userSpaceOnUse">
29
+ <stop stop-color="#C1BEB9"/>
30
+ <stop offset="1" stop-color="white"/>
31
+ </linearGradient>
32
+ <clipPath id="clip0_5799_29136">
33
+ <rect width="56" height="65" fill="white"/>
34
+ </clipPath>
35
+ </defs>
36
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="27" height="26" viewBox="0 0 27 26" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.75 25.5H17.25C23.5 25.5 26 23 26 16.75V9.25C26 3 23.5 0.5 17.25 0.5H9.75C3.5 0.5 1 3 1 9.25V16.75C1 23 3.5 25.5 9.75 25.5Z" fill="white" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M17.1003 10.5966L16.9003 16.6501C16.8832 17.1686 16.6648 17.66 16.2914 18.02C15.918 18.3801 15.419 18.5805 14.9003 18.5786H11.1003C10.5819 18.5805 10.0831 18.3804 9.70978 18.0208C9.33643 17.6611 9.1178 17.1702 9.10026 16.6521L8.90026 10.5966C8.89588 10.464 8.94436 10.3351 9.03504 10.2383C9.12571 10.1414 9.25115 10.0845 9.38376 10.0801C9.51637 10.0758 9.64528 10.1242 9.74214 10.2149C9.83901 10.3056 9.89588 10.431 9.90026 10.5636L10.1003 16.6186C10.1102 16.8771 10.22 17.1217 10.4064 17.301C10.5929 17.4803 10.8416 17.5803 11.1003 17.5801H14.9003C15.1593 17.5803 15.4082 17.48 15.5948 17.3003C15.7813 17.1206 15.8908 16.8755 15.9003 16.6166L16.1003 10.5636C16.1046 10.431 16.1615 10.3056 16.2584 10.2149C16.3552 10.1242 16.4841 10.0758 16.6168 10.0801C16.7494 10.0845 16.8748 10.1414 16.9655 10.2383C17.0562 10.3351 17.1046 10.464 17.1003 10.5966ZM17.7618 8.58214C17.7618 8.71475 17.7091 8.84192 17.6153 8.93569C17.5215 9.02946 17.3944 9.08214 17.2618 9.08214H8.73926C8.60665 9.08214 8.47947 9.02946 8.3857 8.93569C8.29194 8.84192 8.23926 8.71475 8.23926 8.58214C8.23926 8.44953 8.29194 8.32235 8.3857 8.22858C8.47947 8.13482 8.60665 8.08214 8.73926 8.08214H10.2893C10.4477 8.08256 10.6006 8.02403 10.7182 7.91794C10.8359 7.81184 10.9099 7.66576 10.9258 7.50814C10.9627 7.13838 11.1359 6.7956 11.4117 6.54659C11.6875 6.29758 12.0462 6.16017 12.4178 6.16114H13.5828C13.9544 6.16017 14.313 6.29758 14.5888 6.54659C14.8646 6.7956 15.0379 7.13838 15.0748 7.50814C15.0906 7.66576 15.1646 7.81184 15.2823 7.91794C15.3999 8.02403 15.5528 8.08256 15.7113 8.08214H17.2613C17.3939 8.08214 17.521 8.13482 17.6148 8.22858C17.7086 8.32235 17.7613 8.44953 17.7613 8.58214H17.7618ZM11.7938 8.08214H14.2078C14.1421 7.93201 14.0991 7.77293 14.0803 7.61014C14.0679 7.48689 14.0102 7.37263 13.9184 7.28949C13.8265 7.20636 13.7071 7.16026 13.5833 7.16014H12.4183C12.2944 7.16026 12.175 7.20636 12.0832 7.28949C11.9913 7.37263 11.9336 7.48689 11.9213 7.61014C11.9023 7.77296 11.8596 7.93204 11.7938 8.08214ZM12.2973 15.6576V11.4001C12.2973 11.2675 12.2446 11.1404 12.1508 11.0466C12.057 10.9528 11.9299 10.9001 11.7973 10.9001C11.6646 10.9001 11.5375 10.9528 11.4437 11.0466C11.3499 11.1404 11.2973 11.2675 11.2973 11.4001V15.6596C11.2973 15.7922 11.3499 15.9194 11.4437 16.0132C11.5375 16.107 11.6646 16.1596 11.7973 16.1596C11.9299 16.1596 12.057 16.107 12.1508 16.0132C12.2446 15.9194 12.2973 15.7922 12.2973 15.6596V15.6576ZM14.7043 15.6576V11.4001C14.7043 11.2675 14.6516 11.1404 14.5578 11.0466C14.464 10.9528 14.3369 10.9001 14.2043 10.9001C14.0716 10.9001 13.9445 10.9528 13.8507 11.0466C13.7569 11.1404 13.7043 11.2675 13.7043 11.4001V15.6596C13.7043 15.7922 13.7569 15.9194 13.8507 16.0132C13.9445 16.107 14.0716 16.1596 14.2043 16.1596C14.3369 16.1596 14.464 16.107 14.5578 16.0132C14.6516 15.9194 14.7043 15.7922 14.7043 15.6596V15.6576Z" fill="#A9A8B9"/>
4
+ </svg>
@@ -0,0 +1,53 @@
1
+ <svg width="56" height="65" viewBox="0 0 56 65" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_5799_29221)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.1807 0H38.0751C38.0378 0.236783 38.0176 0.478239 38.0176 0.724369V13.171C38.0176 15.6931 40.075 17.7556 42.5909 17.7556H56V60.8314C56 63.1244 54.129 65 51.8416 65H11.1807C8.8933 65 7.02234 63.1244 7.02234 60.8314V4.16862C7.02234 1.87557 8.8933 0 11.1807 0Z" fill="url(#paint0_linear_5799_29221)"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.44904 14.2911H34.1451C35.4924 14.2911 36.5942 15.3955 36.5942 16.7461V25.3373C36.5942 26.6879 35.4924 27.7924 34.1451 27.7924H2.44904C1.10176 27.7908 0 26.6863 0 25.3357V16.7446C0 15.3955 1.10176 14.2911 2.44904 14.2911Z" fill="url(#paint1_radial_5799_29221)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38.0751 0L55.9985 17.7556H42.5894C40.0735 17.7556 38.0161 15.6931 38.0161 13.171V0.724369C38.0176 0.478239 38.0378 0.236783 38.0751 0Z" fill="url(#paint2_linear_5799_29221)"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.22284 16.8864H9.48379C10.4115 16.8864 11.1061 17.1076 11.5692 17.55C12.0307 17.9924 12.2623 18.6233 12.2623 19.4411C12.2623 20.2808 12.009 20.9381 11.5055 21.4102C11.002 21.8837 10.2312 22.1205 9.19787 22.1205H7.79309V25.1956H5.22284V16.8864ZM7.79464 20.4365H8.42555C8.92281 20.4365 9.27246 20.3493 9.47292 20.1779C9.67338 20.0066 9.77438 19.7854 9.77438 19.5159C9.77438 19.2542 9.68736 19.0345 9.51176 18.8523C9.33772 18.67 9.00984 18.5797 8.52811 18.5797H7.79464V20.4365Z" fill="black"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.6205 16.8864H16.0104L19.1199 21.474V16.8864H21.5394V25.1956H19.1199L16.0275 20.6328V25.1956H13.6205V16.8864Z" fill="black"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M27.4103 22.1906V20.4615H31.3698V23.9961C30.6114 24.5148 29.9417 24.8684 29.3605 25.0554C28.7777 25.2423 28.0862 25.3358 27.2875 25.3358C26.3038 25.3358 25.5004 25.1675 24.8804 24.831C24.2604 24.4961 23.7802 23.9961 23.4383 23.3293C23.0965 22.6657 22.9271 21.9009 22.9271 21.041C22.9271 20.1343 23.1136 19.3461 23.4865 18.6747C23.8595 18.0048 24.4049 17.497 25.1244 17.1481C25.6854 16.8786 26.4421 16.7462 27.3916 16.7462C28.3069 16.7462 28.9922 16.8287 29.4444 16.9954C29.8997 17.1621 30.2758 17.4191 30.5757 17.7696C30.874 18.1201 31.1009 18.5625 31.2517 19.0984L28.7855 19.5439C28.683 19.2293 28.512 18.9862 28.2681 18.8211C28.0241 18.6529 27.7164 18.5688 27.3388 18.5688C26.7794 18.5688 26.3318 18.7635 25.9977 19.1545C25.6636 19.5455 25.4973 20.1639 25.4973 21.0098C25.4973 21.9071 25.6652 22.5504 26.0024 22.9352C26.338 23.32 26.8089 23.5132 27.4118 23.5132C27.6977 23.5132 27.9697 23.4727 28.2308 23.3885C28.4887 23.306 28.7871 23.1642 29.1227 22.9664V22.189H27.4103V22.1906Z" fill="black"/>
9
+ <path d="M23.1214 33.0483H19.7679V36.41H23.1214V33.0483Z" fill="white"/>
10
+ <path d="M26.4748 36.41H23.1214V39.7717H26.4748V36.41Z" fill="white"/>
11
+ <path d="M29.8313 33.0483H26.4779V36.41H29.8313V33.0483Z" fill="white"/>
12
+ <path d="M39.8963 36.41H36.5429V39.7717H39.8963V36.41Z" fill="white"/>
13
+ <path d="M36.5413 33.0483H33.1879V36.41H36.5413V33.0483Z" fill="white"/>
14
+ <path d="M33.1864 36.41H29.8329V39.7717H33.1864V36.41Z" fill="white"/>
15
+ <path d="M43.2498 33.0483H39.8963V36.41H43.2498V33.0483Z" fill="white"/>
16
+ <path d="M23.1245 39.7764H19.771V43.1381H23.1245V39.7764Z" fill="white"/>
17
+ <path d="M26.4779 43.1381H23.1245V46.4998H26.4779V43.1381Z" fill="white"/>
18
+ <path d="M29.8329 39.7764H26.4795V43.1381H29.8329V39.7764Z" fill="white"/>
19
+ <path d="M39.8979 43.1396H36.5444V46.5013H39.8979V43.1396Z" fill="white"/>
20
+ <path d="M36.5429 39.7764H33.1895V43.1381H36.5429V39.7764Z" fill="white"/>
21
+ <path d="M33.1879 43.1396H29.8345V46.5013H33.1879V43.1396Z" fill="white"/>
22
+ <path d="M43.2529 39.7764H39.8994V43.1381H43.2529V39.7764Z" fill="white"/>
23
+ <path d="M23.1229 46.5045H19.7695V49.8661H23.1229V46.5045Z" fill="white"/>
24
+ <path d="M26.4764 49.8677H23.1229V53.2294H26.4764V49.8677Z" fill="white"/>
25
+ <path d="M29.8329 46.5045H26.4795V49.8661H29.8329V46.5045Z" fill="white"/>
26
+ <path d="M39.8979 49.8677H36.5444V53.2294H39.8979V49.8677Z" fill="white"/>
27
+ <path d="M36.5413 46.5045H33.1879V49.8661H36.5413V46.5045Z" fill="white"/>
28
+ <path d="M33.1879 49.8677H29.8345V53.2294H33.1879V49.8677Z" fill="white"/>
29
+ <path d="M43.2513 46.5045H39.8979V49.8661H43.2513V46.5045Z" fill="white"/>
30
+ <path d="M23.1245 53.2325H19.771V56.5942H23.1245V53.2325Z" fill="white"/>
31
+ <path d="M29.8345 53.2325H26.481V56.5942H29.8345V53.2325Z" fill="white"/>
32
+ <path d="M36.5445 53.2325H33.191V56.5942H36.5445V53.2325Z" fill="white"/>
33
+ <path d="M43.2544 53.2325H39.901V56.5942H43.2544V53.2325Z" fill="white"/>
34
+ </g>
35
+ <defs>
36
+ <linearGradient id="paint0_linear_5799_29221" x1="10.5298" y1="62.982" x2="45.195" y2="12.8671" gradientUnits="userSpaceOnUse">
37
+ <stop stop-color="#A87456"/>
38
+ <stop offset="0.5" stop-color="#803C21"/>
39
+ <stop offset="1" stop-color="#6A220B"/>
40
+ </linearGradient>
41
+ <radialGradient id="paint1_radial_5799_29221" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.2957 21.0405) rotate(30.8665) scale(18.6504 17.4572)">
42
+ <stop stop-color="white"/>
43
+ <stop offset="1" stop-color="#C1BEB9"/>
44
+ </radialGradient>
45
+ <linearGradient id="paint2_linear_5799_29221" x1="43.2777" y1="12.7053" x2="39.7315" y2="16.2976" gradientUnits="userSpaceOnUse">
46
+ <stop stop-color="#C1BEB9"/>
47
+ <stop offset="1" stop-color="white"/>
48
+ </linearGradient>
49
+ <clipPath id="clip0_5799_29221">
50
+ <rect width="56" height="65" fill="white"/>
51
+ </clipPath>
52
+ </defs>
53
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="54" height="63" viewBox="0 0 54 63" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_7171_31644)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.7814 0H36.7153C36.6793 0.229497 36.6598 0.463524 36.6598 0.70208V12.7658C36.6598 15.2102 38.6438 17.2093 41.0698 17.2093H54V58.9596C54 61.1821 52.1959 63 49.9901 63H10.7814C8.57569 63 6.77154 61.1821 6.77154 58.9596V4.04036C6.77154 1.81786 8.57569 0 10.7814 0Z" fill="#40A629"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.36157 13.8514H32.9257C34.2248 13.8514 35.2872 14.9219 35.2872 16.2309V24.5577C35.2872 25.8668 34.2248 26.9373 32.9257 26.9373H2.36157C1.06241 26.9357 0 25.8653 0 24.5577V16.2309C0 14.9219 1.06241 13.8514 2.36157 13.8514Z" fill="url(#paint0_radial_7171_31644)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M36.7153 0L53.9985 17.2093H41.0683C38.6423 17.2093 36.6583 15.2102 36.6583 12.7658V0.70208C36.6598 0.463524 36.6793 0.229497 36.7153 0Z" fill="url(#paint1_linear_7171_31644)"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M6.09723 16.3668H10.206C11.1006 16.3668 11.7704 16.5812 12.2169 17.01C12.662 17.4388 12.8853 18.0502 12.8853 18.8429C12.8853 19.6567 12.641 20.2939 12.1555 20.7514C11.67 21.2104 10.9268 21.4399 9.93029 21.4399H8.57569V24.4203H6.09723V16.3668ZM8.57569 19.8092H9.18406C9.66357 19.8092 10.0007 19.7247 10.194 19.5586C10.3873 19.3925 10.4847 19.1781 10.4847 18.9169C10.4847 18.6632 10.4008 18.4504 10.2315 18.2737C10.0637 18.097 9.74748 18.0095 9.28296 18.0095H8.57569V19.8092Z" fill="black"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M14.1589 16.3668H18.2677C19.1623 16.3668 19.8321 16.5812 20.2787 17.01C20.7237 17.4388 20.947 18.0502 20.947 18.8429C20.947 19.6567 20.7027 20.2939 20.2172 20.7514C19.7317 21.2104 18.9885 21.4399 17.992 21.4399H16.6374V24.4203H14.1589V16.3668ZM16.6389 19.8092H17.2473C17.7268 19.8092 18.0639 19.7247 18.2572 19.5586C18.4505 19.3925 18.5479 19.1781 18.5479 18.9169C18.5479 18.6632 18.464 18.4504 18.2947 18.2737C18.1269 18.097 17.8107 18.0095 17.3462 18.0095H16.6389V19.8092Z" fill="black"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M21.6752 16.3668H29.19V18.3567H26.6666V24.4203H24.1986V18.3567H21.6752V16.3668Z" fill="black"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M30.3858 32.4829C36.2612 32.4829 41.0248 37.2827 41.0248 43.2028C41.0248 43.2934 41.0233 43.384 41.0218 43.4731H30.9027H30.2419V44.139V53.9198C24.4324 53.8412 19.7467 49.0731 19.7467 43.2013C19.7467 37.2827 24.5103 32.4829 30.3858 32.4829ZM40.9065 44.8063H31.5636V53.8579C36.3601 53.3249 40.1962 49.5805 40.9065 44.8063Z" fill="white"/>
10
+ </g>
11
+ <defs>
12
+ <radialGradient id="paint0_radial_7171_31644" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.6423 20.3931) rotate(30.9958) scale(18.0087 16.8973)">
13
+ <stop stop-color="white"/>
14
+ <stop offset="1" stop-color="#C1BEB9"/>
15
+ </radialGradient>
16
+ <linearGradient id="paint1_linear_7171_31644" x1="41.732" y1="12.3144" x2="38.2947" y2="15.7786" gradientUnits="userSpaceOnUse">
17
+ <stop stop-color="#C1BEB9"/>
18
+ <stop offset="1" stop-color="white"/>
19
+ </linearGradient>
20
+ <clipPath id="clip0_7171_31644">
21
+ <rect width="54" height="63" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg width="52" height="63" viewBox="0 0 52 63" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_7174_31676)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.3821 0H35.3554C35.3208 0.229497 35.302 0.463524 35.302 0.70208V12.7658C35.302 15.2102 37.2125 17.2093 39.5487 17.2093H52V58.9596C52 61.1821 50.2627 63 48.1386 63H10.3821C8.25806 63 6.52074 61.1821 6.52074 58.9596V4.04036C6.52074 1.81786 8.25806 0 10.3821 0Z" fill="#19067B"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.27411 13.8514H31.7062C32.9572 13.8514 33.9803 14.9219 33.9803 16.2309V24.5577C33.9803 25.8668 32.9572 26.9373 31.7062 26.9373H2.27411C1.02306 26.9357 0 25.8653 0 24.5562V16.2294C0 14.9219 1.02306 13.8514 2.27411 13.8514Z" fill="url(#paint0_radial_7174_31676)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M35.3554 0L51.9986 17.2093H39.5472C37.2111 17.2093 35.3006 15.2102 35.3006 12.7658V0.70208C35.3021 0.463524 35.3208 0.229497 35.3554 0Z" fill="url(#paint1_linear_7174_31676)"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3 16H6.63179C7.42252 16 8.01457 16.213 8.40927 16.6389C8.80265 17.0649 9 17.6723 9 18.4597C9 19.2681 8.78411 19.901 8.35497 20.3555C7.92583 20.8114 7.26887 21.0394 6.38808 21.0394H5.19073V24H3V16ZM5.19073 19.4196H5.72848C6.15232 19.4196 6.45033 19.3356 6.62119 19.1706C6.79205 19.0056 6.87815 18.7927 6.87815 18.5332C6.87815 18.2812 6.80397 18.0697 6.6543 17.8943C6.50596 17.7188 6.22649 17.6318 5.81589 17.6318H5.19073V19.4196Z" fill="black"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10 16H13.6318C14.4225 16 15.0146 16.213 15.4093 16.6389C15.8026 17.0649 16 17.6723 16 18.4597C16 19.2681 15.7841 19.901 15.355 20.3555C14.9258 20.8114 14.2689 21.0394 13.3881 21.0394H12.1907V24H10V16ZM12.1921 19.4196H12.7298C13.1536 19.4196 13.4517 19.3356 13.6225 19.1706C13.7934 19.0056 13.8795 18.7927 13.8795 18.5332C13.8795 18.2812 13.8053 18.0697 13.6556 17.8943C13.5073 17.7188 13.2278 17.6318 12.8172 17.6318H12.1921V19.4196Z" fill="black"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M17 16H23V17.9768H20.9852V24H19.0148V17.9768H17V16Z" fill="black"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M24.225 16H26.7357L28.04 18.4622L29.3057 16H31.7847L29.4962 19.8763L32 24H29.4396L27.9945 21.4313L26.5397 24H24L26.5383 19.8313L24.225 16Z" fill="black"/>
10
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M28.6391 33C34.5145 33 39.2781 37.7998 39.2781 43.7199C39.2781 43.8105 39.2766 43.9011 39.2751 43.9902H29.156H28.4952V44.656V54.4368C22.6857 54.3583 18 49.5902 18 43.7184C18 37.7998 22.7636 33 28.6391 33ZM39.1598 45.3234H29.8169V54.3749C34.6134 53.842 38.4495 50.0975 39.1598 45.3234Z" fill="white"/>
11
+ </g>
12
+ <defs>
13
+ <radialGradient id="paint0_radial_7174_31676" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(16.9889 20.393) rotate(31.9586) scale(17.5211 16.7243)">
14
+ <stop stop-color="white"/>
15
+ <stop offset="1" stop-color="#C1BEB9"/>
16
+ </radialGradient>
17
+ <linearGradient id="paint1_linear_7174_31676" x1="40.1864" y1="12.3144" x2="36.7506" y2="15.6489" gradientUnits="userSpaceOnUse">
18
+ <stop stop-color="#C1BEB9"/>
19
+ <stop offset="1" stop-color="white"/>
20
+ </linearGradient>
21
+ <clipPath id="clip0_7174_31676">
22
+ <rect width="52" height="63" fill="white"/>
23
+ </clipPath>
24
+ </defs>
25
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="72" height="72" viewBox="0 0 72 72" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <circle cx="36" cy="36" r="35" fill="#6F61CF" fill-opacity="0.12" stroke="#6F61CF" stroke-width="2"/>
3
+ <path d="M53.8333 38.5L50.5009 35.1667L47.1666 38.5M51 36C51 44.2843 44.2843 51 36 51C27.7157 51 21 44.2843 21 36C21 27.7157 27.7157 21 36 21C41.5032 21 46.3142 23.9636 48.9242 28.3818M36 27.6667V36L41 39.3333" stroke="#6F61CF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,10 @@
1
+
2
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
3
+ <path d="M22.7 13.5L20.7005 11.5L18.7 13.5M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C15.3019 3 18.1885 4.77814 19.7545 7.42909M12 7V12L15 14" stroke="#A1A5B7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <mask id="mask0_807:57411-20-05-2024" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
5
+ <path d="M22.7 13.5L20.7005 11.5L18.7 13.5M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C15.3019 3 18.1885 4.77814 19.7545 7.42909M12 7V12L15 14" stroke="#A1A5B7" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </mask>
7
+ <g mask="url(#mask0_807:57411-20-05-2024)">
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H24V24H0V0Z" fill="#F1F1F1"/>
9
+ </g>
10
+ </svg>W
@@ -0,0 +1,16 @@
1
+
2
+
3
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
4
+ <path d="M4.93313 4.21344L10.5931 2.32677C13.1331 1.4801 14.5131 2.86677 13.6731 5.40677L11.7865 11.0668C10.5198 14.8734 8.43979 14.8734 7.17313 11.0668L6.61312 9.38677L4.93313 8.82677C1.12646 7.5601 1.12646 5.48677 4.93313 4.21344Z" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6.74023 9.10036L9.1269 6.70703L6.74023 9.10036Z" fill="#D9D9D9"/>
6
+ <path d="M6.74023 9.10036L9.1269 6.70703" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <mask id="mask0_1131:1131-02-10-2024-02" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
8
+ <path d="M6.49984 2.66634C6.86803 2.66634 7.1665 2.36786 7.1665 1.99967C7.1665 1.63148 6.86803 1.33301 6.49984 1.33301C6.13165 1.33301 5.83317 1.63148 5.83317 1.99967C5.83317 2.36786 6.13165 2.66634 6.49984 2.66634Z" fill="#444444"/>
9
+ <path d="M4.93313 4.21344L10.5931 2.32677C13.1331 1.4801 14.5131 2.86677 13.6731 5.40677L11.7865 11.0668C10.5198 14.8734 8.43979 14.8734 7.17313 11.0668L6.61312 9.38677L4.93313 8.82677C1.12646 7.5601 1.12646 5.48677 4.93313 4.21344Z" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M6.74023 9.10036L9.1269 6.70703L6.74023 9.10036Z" fill="#D9D9D9"/>
11
+ <path d="M6.74023 9.10036L9.1269 6.70703" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
12
+ </mask>
13
+ <g mask="url(#mask0_1131:1131-02-10-2024-02)">
14
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H24V24H0V0Z" fill="#F1F1F1"></path>
15
+ </g>
16
+ </svg>
@@ -0,0 +1,41 @@
1
+ <svg width="366" height="329" viewBox="0 0 366 329" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_7911_122220)">
3
+ <path d="M8.70341 138.516C14.2754 144.097 21.831 147.233 29.7097 147.233C35.6271 147.233 41.3663 145.458 46.2139 142.221L25.0738 163.406C19.5019 168.987 16.3704 176.555 16.3704 184.446C16.3704 192.337 19.5019 199.905 25.0738 205.485C30.6458 211.066 38.2014 214.203 46.0801 214.203C51.9976 214.203 57.7367 212.428 62.5843 209.191L51.4849 220.308C45.913 225.889 42.7815 233.457 42.7815 241.348C42.7815 249.239 45.913 256.807 51.4849 262.387C57.0569 267.968 64.6125 271.105 72.4912 271.105C78.4087 271.105 84.1478 269.33 88.9954 266.093L86.2874 268.805C80.7155 274.386 77.584 281.954 77.584 289.845C77.584 297.736 80.7155 305.304 86.2874 310.885C91.8594 316.466 99.415 319.602 107.294 319.602C115.172 319.602 122.728 316.466 128.3 310.885L156.461 282.679C153.218 287.535 151.457 293.283 151.457 299.21C151.457 307.101 154.589 314.668 160.161 320.249C165.732 325.83 173.288 328.967 181.167 328.967C189.046 328.967 196.601 325.83 202.173 320.249L244.955 277.4C241.712 282.255 239.951 288.003 239.951 293.93C239.951 301.821 243.082 309.389 248.654 314.97C254.226 320.551 261.782 323.687 269.661 323.687C277.54 323.687 285.095 320.551 290.667 314.97L357.274 248.257C362.846 242.676 365.978 235.108 365.978 227.217C365.978 219.326 362.846 211.758 357.274 206.177C351.702 200.597 344.147 197.46 336.268 197.46C330.351 197.46 324.611 199.235 319.764 202.472L333.705 188.509C339.277 182.928 342.408 175.36 342.408 167.469C342.408 159.578 339.277 152.01 333.705 146.429C328.133 140.849 320.577 137.712 312.699 137.712C306.781 137.712 301.042 139.487 296.194 142.724L324.355 114.518C329.927 108.937 333.059 101.37 333.059 93.4786C333.059 85.5873 329.927 78.0197 324.355 72.4389C318.783 66.8581 311.228 63.7217 303.349 63.7217C297.431 63.7217 291.692 65.4964 286.845 68.7333L304.775 50.7742C310.347 45.1934 313.479 37.6258 313.479 29.7346C313.479 21.8433 310.347 14.2757 304.775 8.6949C299.192 3.13642 291.637 0 283.758 0C275.879 0 268.323 3.13642 262.752 8.71723L222.812 48.7205C226.055 43.8652 227.815 38.1169 227.815 32.1901C227.815 24.2989 224.684 16.7313 219.112 11.1505C213.54 5.56965 205.984 2.43323 198.106 2.43323C190.227 2.43323 182.671 5.56965 177.099 11.1505L121.023 67.2934C124.266 62.4381 126.027 56.6899 126.027 50.7631C126.027 42.8718 122.895 35.3042 117.323 29.7234C111.751 24.1426 104.196 21.0062 96.317 21.0062C88.4382 21.0062 80.8826 24.1426 75.3107 29.7234L8.70341 96.4253C3.13144 102.006 0 109.574 0 117.476C0 125.379 3.13144 132.935 8.70341 138.516Z" fill="white"/>
4
+ <path d="M347.267 234.706L345.217 236.76C344.414 237.564 344.414 238.87 345.217 239.673C346.019 240.477 347.323 240.477 348.125 239.673L350.176 237.62L352.226 239.673C353.028 240.477 354.332 240.477 355.135 239.673C355.937 238.87 355.937 237.564 355.135 236.76L353.084 234.706L355.135 232.653C355.937 231.849 355.937 230.543 355.135 229.739C354.733 229.338 354.21 229.137 353.675 229.137C353.14 229.137 352.616 229.338 352.215 229.739L350.164 231.793L348.114 229.739C347.713 229.338 347.189 229.137 346.654 229.137C346.119 229.137 345.595 229.338 345.194 229.739C344.392 230.543 344.392 231.849 345.194 232.653L347.267 234.706Z" fill="white"/>
5
+ <path d="M71.3435 309.735L69.293 311.788C68.4906 312.592 68.4906 313.898 69.293 314.702C70.0954 315.505 71.3992 315.505 72.2016 314.702L74.2521 312.648L76.3025 314.702C77.1049 315.505 78.4087 315.505 79.2111 314.702C80.0135 313.898 80.0135 312.592 79.2111 311.788L77.1606 309.735L79.2111 307.681C80.0135 306.877 80.0135 305.571 79.2111 304.768C78.8099 304.366 78.2862 304.165 77.7512 304.165C77.2275 304.165 76.6926 304.366 76.2914 304.768L74.2409 306.821L72.1904 304.768C71.7892 304.366 71.2655 304.165 70.7306 304.165C70.2068 304.165 69.6719 304.366 69.2707 304.768C68.4684 305.571 68.4684 306.877 69.2707 307.681L71.3435 309.735Z" fill="white"/>
6
+ <path d="M18.7329 127.209L16.6824 129.263C15.88 130.067 15.88 131.373 16.6824 132.176C17.4848 132.98 18.7886 132.98 19.591 132.176L21.6415 130.122L23.6919 132.176C24.4943 132.98 25.7981 132.98 26.6005 132.176C27.4029 131.373 27.4029 130.067 26.6005 129.263L24.55 127.209L26.6005 125.156C27.4029 124.352 27.4029 123.046 26.6005 122.242C26.1993 121.841 25.6756 121.64 25.1407 121.64C24.6169 121.64 24.082 121.841 23.6808 122.242L21.6303 124.296L19.5798 122.242C19.1786 121.841 18.6549 121.64 18.12 121.64C17.5962 121.64 17.0613 121.841 16.6601 122.242C15.8578 123.046 15.8578 124.352 16.6601 125.156L18.7329 127.209Z" fill="white"/>
7
+ <path d="M266.195 21.3743L264.145 23.4281C263.342 24.2317 263.342 25.5376 264.145 26.3413C264.947 27.1449 266.251 27.1449 267.053 26.3413L269.104 24.2875L271.154 26.3413C271.956 27.1449 273.26 27.1449 274.063 26.3413C274.865 25.5376 274.865 24.2317 274.063 23.4281L272.012 21.3743L274.063 19.3206C274.865 18.517 274.865 17.2111 274.063 16.4074C273.661 16.0056 273.138 15.8047 272.603 15.8047C272.068 15.8047 271.544 16.0056 271.143 16.4074L269.092 18.4612L267.042 16.4074C266.641 16.0056 266.117 15.8047 265.582 15.8047C265.058 15.8047 264.523 16.0056 264.122 16.4074C263.32 17.2111 263.32 18.517 264.122 19.3206L266.195 21.3743Z" fill="white"/>
8
+ <path d="M228.551 312.604C231.861 312.604 234.557 315.305 234.557 318.62C234.557 321.935 231.861 324.636 228.551 324.636C225.241 324.636 222.544 321.935 222.544 318.62C222.544 315.305 225.241 312.604 228.551 312.604ZM228.551 320.528C229.598 320.528 230.445 319.68 230.445 318.631C230.445 317.582 229.598 316.733 228.551 316.733C227.503 316.733 226.656 317.582 226.656 318.631C226.656 319.669 227.503 320.528 228.551 320.528Z" fill="white"/>
9
+ <path d="M341.84 120.758C345.15 120.758 347.847 123.459 347.847 126.774C347.847 130.089 345.15 132.79 341.84 132.79C338.53 132.79 335.833 130.089 335.833 126.774C335.833 123.459 338.53 120.758 341.84 120.758ZM341.84 128.683C342.888 128.683 343.735 127.834 343.735 126.785C343.735 125.736 342.888 124.888 341.84 124.888C340.793 124.888 339.946 125.736 339.946 126.785C339.946 127.834 340.793 128.683 341.84 128.683Z" fill="white"/>
10
+ <path d="M90.199 24.1426C93.5087 24.1426 96.2055 26.8437 96.2055 30.1587C96.2055 33.4737 93.5087 36.1748 90.199 36.1748C86.8892 36.1748 84.1924 33.4737 84.1924 30.1587C84.1924 26.8437 86.8892 24.1426 90.199 24.1426ZM90.199 32.0562C91.2465 32.0562 92.0934 31.2079 92.0934 30.1587C92.0934 29.1095 91.2465 28.2612 90.199 28.2612C89.1514 28.2612 88.3045 29.1095 88.3045 30.1587C88.3045 31.2079 89.1626 32.0562 90.199 32.0562Z" fill="white"/>
11
+ <path d="M16.3147 211.145C19.6244 211.145 22.3213 213.846 22.3213 217.161C22.3213 220.476 19.6244 223.177 16.3147 223.177C13.0049 223.177 10.3081 220.476 10.3081 217.161C10.3081 213.846 13.0049 211.145 16.3147 211.145ZM16.3147 219.058C17.3622 219.058 18.2091 218.21 18.2091 217.161C18.2091 216.111 17.3622 215.263 16.3147 215.263C15.2672 215.263 14.4202 216.111 14.4202 217.161C14.4202 218.21 15.2672 219.058 16.3147 219.058Z" fill="white"/>
12
+ <path d="M8.70341 138.516C14.2754 144.097 21.831 147.233 29.7097 147.233C35.6271 147.233 41.3663 145.458 46.2139 142.221L25.0738 163.406C19.5019 168.987 16.3704 176.555 16.3704 184.446C16.3704 192.337 19.5019 199.905 25.0738 205.485C30.6458 211.066 38.2014 214.203 46.0801 214.203C51.9976 214.203 57.7367 212.428 62.5843 209.191L51.4849 220.308C45.913 225.889 42.7815 233.457 42.7815 241.348C42.7815 249.239 45.913 256.807 51.4849 262.387C57.0569 267.968 64.6125 271.105 72.4912 271.105C78.4087 271.105 84.1478 269.33 88.9954 266.093L86.2874 268.805C80.7155 274.386 77.584 281.954 77.584 289.845C77.584 297.736 80.7155 305.304 86.2874 310.885C91.8594 316.466 99.415 319.602 107.294 319.602C115.172 319.602 122.728 316.466 128.3 310.885L156.461 282.679C153.218 287.535 151.457 293.283 151.457 299.21C151.457 307.101 154.589 314.668 160.161 320.249C165.732 325.83 173.288 328.967 181.167 328.967C189.046 328.967 196.601 325.83 202.173 320.249L244.955 277.4C241.712 282.255 239.951 288.003 239.951 293.93C239.951 301.821 243.082 309.389 248.654 314.97C254.226 320.551 261.782 323.687 269.661 323.687C277.54 323.687 285.095 320.551 290.667 314.97L357.274 248.257C362.846 242.676 365.978 235.108 365.978 227.217C365.978 219.326 362.846 211.758 357.274 206.177C351.702 200.597 344.147 197.46 336.268 197.46C330.351 197.46 324.611 199.235 319.764 202.472L333.705 188.509C339.277 182.928 342.408 175.36 342.408 167.469C342.408 159.578 339.277 152.01 333.705 146.429C328.133 140.849 320.577 137.712 312.699 137.712C306.781 137.712 301.042 139.487 296.194 142.724L324.355 114.518C329.927 108.937 333.059 101.37 333.059 93.4786C333.059 85.5873 329.927 78.0197 324.355 72.4389C318.783 66.8581 311.228 63.7217 303.349 63.7217C297.431 63.7217 291.692 65.4964 286.845 68.7333L304.775 50.7742C310.347 45.1934 313.479 37.6258 313.479 29.7346C313.479 21.8433 310.347 14.2757 304.775 8.6949C299.192 3.13642 291.637 0 283.758 0C275.879 0 268.323 3.13642 262.752 8.71723L222.812 48.7205C226.055 43.8652 227.815 38.1169 227.815 32.1901C227.815 24.2989 224.684 16.7313 219.112 11.1505C213.54 5.56965 205.984 2.43323 198.106 2.43323C190.227 2.43323 182.671 5.56965 177.099 11.1505L121.023 67.2934C124.266 62.4381 126.027 56.6899 126.027 50.7631C126.027 42.8718 122.895 35.3042 117.323 29.7234C111.751 24.1426 104.196 21.0062 96.317 21.0062C88.4382 21.0062 80.8826 24.1426 75.3107 29.7234L8.70341 96.4253C3.13144 102.006 0 109.574 0 117.476C0 125.379 3.13144 132.935 8.70341 138.516Z" fill="#6F61CF" fill-opacity="0.16"/>
13
+ <path d="M347.267 234.706L345.217 236.76C344.414 237.564 344.414 238.87 345.217 239.673C346.019 240.477 347.323 240.477 348.125 239.673L350.176 237.62L352.226 239.673C353.028 240.477 354.332 240.477 355.135 239.673C355.937 238.87 355.937 237.564 355.135 236.76L353.084 234.706L355.135 232.653C355.937 231.849 355.937 230.543 355.135 229.739C354.733 229.338 354.21 229.137 353.675 229.137C353.14 229.137 352.616 229.338 352.215 229.739L350.164 231.793L348.114 229.739C347.713 229.338 347.189 229.137 346.654 229.137C346.119 229.137 345.595 229.338 345.194 229.739C344.392 230.543 344.392 231.849 345.194 232.653L347.267 234.706Z" fill="#6F61CF"/>
14
+ <path d="M71.3435 309.735L69.293 311.788C68.4906 312.592 68.4906 313.898 69.293 314.702C70.0954 315.505 71.3992 315.505 72.2016 314.702L74.2521 312.648L76.3025 314.702C77.1049 315.505 78.4087 315.505 79.2111 314.702C80.0135 313.898 80.0135 312.592 79.2111 311.788L77.1606 309.735L79.2111 307.681C80.0135 306.877 80.0135 305.571 79.2111 304.768C78.8099 304.366 78.2862 304.165 77.7512 304.165C77.2275 304.165 76.6926 304.366 76.2914 304.768L74.2409 306.821L72.1904 304.768C71.7892 304.366 71.2655 304.165 70.7306 304.165C70.2068 304.165 69.6719 304.366 69.2707 304.768C68.4684 305.571 68.4684 306.877 69.2707 307.681L71.3435 309.735Z" fill="#6F61CF"/>
15
+ <path d="M18.7329 127.209L16.6824 129.263C15.88 130.067 15.88 131.373 16.6824 132.176C17.4848 132.98 18.7886 132.98 19.591 132.176L21.6415 130.122L23.6919 132.176C24.4943 132.98 25.7981 132.98 26.6005 132.176C27.4029 131.373 27.4029 130.067 26.6005 129.263L24.55 127.209L26.6005 125.156C27.4029 124.352 27.4029 123.046 26.6005 122.242C26.1993 121.841 25.6756 121.64 25.1407 121.64C24.6169 121.64 24.082 121.841 23.6808 122.242L21.6303 124.296L19.5798 122.242C19.1786 121.841 18.6549 121.64 18.12 121.64C17.5962 121.64 17.0613 121.841 16.6601 122.242C15.8578 123.046 15.8578 124.352 16.6601 125.156L18.7329 127.209Z" fill="#6F61CF"/>
16
+ <path d="M266.195 21.3743L264.145 23.4281C263.342 24.2317 263.342 25.5376 264.145 26.3413C264.947 27.1449 266.251 27.1449 267.053 26.3413L269.104 24.2875L271.154 26.3413C271.956 27.1449 273.26 27.1449 274.063 26.3413C274.865 25.5376 274.865 24.2317 274.063 23.4281L272.012 21.3743L274.063 19.3206C274.865 18.517 274.865 17.2111 274.063 16.4074C273.661 16.0056 273.138 15.8047 272.603 15.8047C272.068 15.8047 271.544 16.0056 271.143 16.4074L269.092 18.4612L267.042 16.4074C266.641 16.0056 266.117 15.8047 265.582 15.8047C265.058 15.8047 264.523 16.0056 264.122 16.4074C263.32 17.2111 263.32 18.517 264.122 19.3206L266.195 21.3743Z" fill="#6F61CF"/>
17
+ <path d="M228.551 312.604C231.861 312.604 234.557 315.305 234.557 318.62C234.557 321.935 231.861 324.636 228.551 324.636C225.241 324.636 222.544 321.935 222.544 318.62C222.544 315.305 225.241 312.604 228.551 312.604ZM228.551 320.528C229.598 320.528 230.445 319.68 230.445 318.631C230.445 317.582 229.598 316.733 228.551 316.733C227.503 316.733 226.656 317.582 226.656 318.631C226.656 319.669 227.503 320.528 228.551 320.528Z" fill="#6F61CF"/>
18
+ <path d="M341.84 120.758C345.15 120.758 347.847 123.459 347.847 126.774C347.847 130.089 345.15 132.79 341.84 132.79C338.53 132.79 335.833 130.089 335.833 126.774C335.833 123.459 338.53 120.758 341.84 120.758ZM341.84 128.683C342.888 128.683 343.735 127.834 343.735 126.785C343.735 125.736 342.888 124.888 341.84 124.888C340.793 124.888 339.946 125.736 339.946 126.785C339.946 127.834 340.793 128.683 341.84 128.683Z" fill="#6F61CF"/>
19
+ <path d="M90.199 24.1426C93.5087 24.1426 96.2055 26.8437 96.2055 30.1587C96.2055 33.4737 93.5087 36.1748 90.199 36.1748C86.8892 36.1748 84.1924 33.4737 84.1924 30.1587C84.1924 26.8437 86.8892 24.1426 90.199 24.1426ZM90.199 32.0562C91.2465 32.0562 92.0934 31.2079 92.0934 30.1587C92.0934 29.1095 91.2465 28.2612 90.199 28.2612C89.1514 28.2612 88.3045 29.1095 88.3045 30.1587C88.3045 31.2079 89.1626 32.0562 90.199 32.0562Z" fill="#6F61CF"/>
20
+ <path d="M16.3147 211.145C19.6244 211.145 22.3213 213.846 22.3213 217.161C22.3213 220.476 19.6244 223.177 16.3147 223.177C13.0049 223.177 10.3081 220.476 10.3081 217.161C10.3081 213.846 13.0049 211.145 16.3147 211.145ZM16.3147 219.058C17.3622 219.058 18.2091 218.21 18.2091 217.161C18.2091 216.111 17.3622 215.263 16.3147 215.263C15.2672 215.263 14.4202 216.111 14.4202 217.161C14.4202 218.21 15.2672 219.058 16.3147 219.058Z" fill="#6F61CF"/>
21
+ <g clip-path="url(#clip1_7911_122220)">
22
+ <path d="M227.989 184.256C227.989 185.102 227.989 185.602 227.989 186.064C227.989 196.952 227.989 207.84 227.989 218.728C227.989 225.268 224.274 229 217.762 229C189.879 229 161.957 229 134.073 229C127.754 229 124 225.268 124 218.92C124 182.64 124 146.36 124 110.08C124 103.77 127.754 100 134.073 100C162.034 100 189.955 100 217.916 100C224.235 100 227.989 103.77 227.989 110.118C227.989 123.276 227.989 136.395 228.027 149.553C228.027 150.554 227.721 151.246 227.031 151.939C213.971 165.019 200.948 178.139 187.887 191.22C186.279 192.835 185.168 194.605 184.478 196.76C182.87 201.838 181.146 206.84 179.461 211.88C179.001 213.265 178.81 214.611 179.92 215.765C181.108 216.996 182.487 216.804 183.904 216.304C189.075 214.573 194.245 212.957 199.339 211.072C201.101 210.418 202.863 209.302 204.242 207.994C211.749 200.607 219.141 193.105 226.572 185.641C226.955 185.256 227.338 184.91 227.989 184.256ZM176.052 124.546C182.295 124.546 188.577 124.546 194.82 124.546C198.727 124.546 202.672 124.584 206.578 124.507C208.34 124.469 209.604 123.199 209.643 121.545C209.681 119.852 208.379 118.544 206.54 118.429C206.272 118.429 205.966 118.429 205.697 118.429C185.934 118.429 166.132 118.429 146.368 118.429C145.985 118.429 145.602 118.429 145.219 118.429C143.572 118.582 142.385 119.891 142.385 121.506C142.385 123.122 143.61 124.392 145.257 124.507C145.794 124.546 146.292 124.546 146.828 124.546C156.556 124.546 166.285 124.546 176.052 124.546ZM176.014 142.974C185.742 142.974 195.509 142.974 205.238 142.974C205.812 142.974 206.387 143.013 206.961 142.936C209.26 142.667 210.409 140.012 209.03 138.127C208.225 137.05 207.115 136.857 205.851 136.857C185.934 136.857 166.017 136.857 146.1 136.857C145.755 136.857 145.411 136.857 145.104 136.896C143.496 137.088 142.308 138.473 142.385 140.05C142.461 141.589 143.61 142.82 145.219 142.936C145.755 142.974 146.253 142.974 146.789 142.974C156.518 142.974 166.247 142.974 176.014 142.974ZM176.014 161.403C184.938 161.403 193.862 161.403 202.825 161.403C204.165 161.403 205.506 161.441 206.847 161.364C208.455 161.249 209.604 159.979 209.643 158.44C209.681 156.902 208.57 155.555 207 155.324C206.54 155.247 206.042 155.286 205.583 155.286C185.857 155.286 166.132 155.286 146.406 155.286C145.985 155.286 145.526 155.247 145.104 155.324C143.496 155.517 142.308 156.902 142.385 158.479C142.461 160.018 143.61 161.249 145.219 161.364C145.755 161.403 146.253 161.403 146.789 161.403C156.518 161.403 166.247 161.403 176.014 161.403ZM151.539 208.263C152.688 210.571 153.722 212.572 154.718 214.65C155.407 216.035 156.442 216.727 158.012 216.727C161.842 216.689 165.634 216.727 169.464 216.727C171.571 216.727 172.911 215.534 172.95 213.726C172.988 211.88 171.571 210.61 169.426 210.61C166.553 210.61 163.681 210.571 160.846 210.61C159.889 210.648 159.391 210.379 158.969 209.494C157.552 206.455 155.982 203.492 154.526 200.492C153.914 199.222 153.033 198.337 151.577 198.337C150.083 198.299 149.164 199.222 148.513 200.568C147.479 202.723 146.138 204.762 145.372 207.032C144.376 209.956 142.653 211.302 139.589 210.648C139.55 210.648 139.512 210.648 139.436 210.648C137.559 210.725 136.295 211.918 136.257 213.649C136.218 215.496 137.444 216.727 139.436 216.766C141.197 216.804 142.959 216.727 144.721 216.804C146.521 216.881 147.67 216.15 148.436 214.496C149.356 212.418 150.39 210.494 151.539 208.263ZM166.86 179.831C173.945 179.831 180.993 179.831 188.079 179.831C189.994 179.831 191.334 178.485 191.296 176.715C191.258 175.022 189.955 173.791 188.079 173.714C187.811 173.714 187.504 173.714 187.236 173.714C173.639 173.714 160.004 173.714 146.406 173.714C145.947 173.714 145.449 173.676 144.989 173.753C143.84 173.984 142.998 174.638 142.576 175.792C142.155 176.946 142.346 178.139 143.266 178.793C144.032 179.37 145.143 179.755 146.1 179.755C152.994 179.87 159.927 179.831 166.86 179.831Z" fill="#BDB4FF"/>
23
+ <path d="M234.117 153.824C236.645 156.363 239.212 158.941 241.663 161.403C227.951 175.177 214.162 189.027 200.45 202.8C197.999 200.338 195.394 197.722 192.905 195.221C206.578 181.486 220.367 167.636 234.117 153.824Z" fill="#6F61CF"/>
24
+ <path d="M246.374 156.864C243.808 154.286 241.203 151.67 238.637 149.092C240.514 147.168 242.391 145.168 244.382 143.244C245.531 142.167 247.255 142.244 248.404 143.321C249.706 144.514 250.932 145.783 252.119 147.091C253.268 148.323 253.345 149.9 252.196 151.131C250.319 153.132 248.289 155.017 246.374 156.864Z" fill="#6F61CF"/>
25
+ <path d="M194.245 206.34C192.1 207.071 189.687 207.84 186.968 208.763C187.849 206.032 188.653 203.608 189.381 201.415C190.99 203.031 192.637 204.724 194.245 206.34Z" fill="#6F61CF"/>
26
+ <path d="M176.052 124.545C166.323 124.545 156.556 124.545 146.828 124.545C146.292 124.545 145.794 124.545 145.257 124.507C143.61 124.392 142.385 123.083 142.385 121.506C142.385 119.929 143.572 118.621 145.219 118.428C145.602 118.39 145.985 118.428 146.368 118.428C166.132 118.428 185.934 118.428 205.697 118.428C205.966 118.428 206.272 118.428 206.54 118.428C208.379 118.544 209.681 119.852 209.642 121.545C209.604 123.199 208.34 124.507 206.578 124.507C202.672 124.545 198.727 124.545 194.82 124.545C188.538 124.545 182.295 124.545 176.052 124.545Z" fill="#6F61CF"/>
27
+ <path d="M176.014 142.975C166.285 142.975 156.518 142.975 146.79 142.975C146.253 142.975 145.755 142.975 145.219 142.936C143.611 142.782 142.461 141.59 142.385 140.051C142.308 138.473 143.496 137.088 145.104 136.896C145.449 136.857 145.755 136.857 146.1 136.857C166.017 136.857 185.934 136.857 205.851 136.857C207.115 136.857 208.225 137.05 209.03 138.127C210.409 140.012 209.26 142.628 206.961 142.936C206.387 143.013 205.812 142.975 205.238 142.975C195.509 142.975 185.742 142.975 176.014 142.975Z" fill="#6F61CF"/>
28
+ <path d="M176.014 161.403C166.285 161.403 156.518 161.403 146.79 161.403C146.253 161.403 145.755 161.403 145.219 161.365C143.611 161.211 142.461 160.018 142.385 158.479C142.308 156.902 143.496 155.517 145.104 155.324C145.526 155.286 145.947 155.286 146.407 155.286C166.132 155.286 185.857 155.286 205.583 155.286C206.042 155.286 206.54 155.248 207 155.324C208.57 155.555 209.681 156.902 209.643 158.441C209.604 159.98 208.417 161.249 206.847 161.365C205.506 161.442 204.165 161.403 202.825 161.403C193.862 161.403 184.938 161.403 176.014 161.403Z" fill="#6F61CF"/>
29
+ <path d="M151.539 208.263C150.428 210.494 149.394 212.418 148.475 214.418C147.709 216.073 146.56 216.804 144.759 216.727C142.998 216.65 141.236 216.727 139.474 216.688C137.482 216.65 136.257 215.419 136.295 213.572C136.333 211.841 137.597 210.648 139.474 210.571C139.512 210.571 139.589 210.571 139.627 210.571C142.691 211.225 144.415 209.879 145.411 206.955C146.177 204.723 147.517 202.684 148.551 200.491C149.164 199.183 150.083 198.26 151.615 198.26C153.071 198.26 153.952 199.145 154.565 200.414C156.02 203.415 157.591 206.416 159.008 209.417C159.429 210.302 159.927 210.571 160.884 210.533C163.757 210.456 166.63 210.494 169.464 210.533C171.609 210.533 173.026 211.802 172.988 213.649C172.95 215.419 171.609 216.611 169.502 216.65C165.672 216.688 161.88 216.65 158.05 216.65C156.48 216.65 155.446 215.957 154.756 214.572C153.722 212.61 152.688 210.571 151.539 208.263Z" fill="#6F61CF"/>
30
+ <path d="M166.86 179.832C159.927 179.832 152.994 179.87 146.1 179.793C145.143 179.793 144.032 179.37 143.266 178.831C142.347 178.139 142.155 176.985 142.576 175.83C142.998 174.676 143.802 174.022 144.989 173.791C145.449 173.714 145.947 173.753 146.406 173.753C160.004 173.753 173.639 173.753 187.236 173.753C187.504 173.753 187.811 173.753 188.079 173.753C189.955 173.83 191.258 175.061 191.296 176.754C191.334 178.485 189.994 179.832 188.079 179.87C180.993 179.87 173.907 179.832 166.86 179.832Z" fill="#6F61CF"/>
31
+ </g>
32
+ </g>
33
+ <defs>
34
+ <clipPath id="clip0_7911_122220">
35
+ <rect width="366" height="329" fill="white"/>
36
+ </clipPath>
37
+ <clipPath id="clip1_7911_122220">
38
+ <rect width="129" height="129" fill="white" transform="translate(124 100)"/>
39
+ </clipPath>
40
+ </defs>
41
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="27" height="26" viewBox="0 0 27 26" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.75 25.5H17.25C23.5 25.5 26 23 26 16.75V9.25C26 3 23.5 0.5 17.25 0.5H9.75C3.5 0.5 1 3 1 9.25V16.75C1 23 3.5 25.5 9.75 25.5Z" fill="white" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M10.4331 9.21344L16.0931 7.32677C18.6331 6.4801 20.0131 7.86677 19.1731 10.4068L17.2865 16.0668C16.0198 19.8734 13.9398 19.8734 12.6731 16.0668L12.1131 14.3868L10.4331 13.8268C6.62646 12.5601 6.62646 10.4868 10.4331 9.21344Z" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M12.2402 14.0999L14.6269 11.7065L12.2402 14.0999Z" fill="#D9D9D9"/>
5
+ <path d="M12.2402 14.0999L14.6269 11.7065" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M6.50989 18.8554C4.70305 18.8554 2.89558 18.8297 1.08999 18.8673C0.295376 18.8842 -0.0991071 18.1768 0.0213074 17.571C0.550629 14.9175 2.63468 12.8071 5.2838 12.3054C8.5883 11.6794 11.8439 13.6663 12.8072 16.8993C12.8787 17.1382 12.9389 17.3816 12.9866 17.6268C13.1214 18.3192 12.678 18.8548 11.9768 18.8548C10.1549 18.856 8.33242 18.8554 6.50989 18.8554Z" fill="#64697A"/>
3
+ <path d="M6.50213 10.6812C4.00666 10.6805 1.99913 8.67174 1.99976 6.17627C2.00038 3.68645 4.02297 1.66198 6.50464 1.667C8.99132 1.67202 11.0164 3.69774 11.0139 6.17878C11.012 8.66672 8.99258 10.6818 6.50213 10.6812Z" fill="#64697A"/>
4
+ <path d="M14.5034 12.1835C12.561 12.1747 11.0095 10.6087 11.0176 8.66573C11.0258 6.71714 12.6024 5.16367 14.5585 5.17684C16.4858 5.19001 18.0393 6.7786 18.0249 8.72154C18.0111 10.6413 16.4331 12.1929 14.5034 12.1835Z" fill="#64697A"/>
5
+ <path d="M14.1187 18.6888C14.0203 16.8148 13.4107 15.1679 12.1758 13.7511C12.7722 13.4432 13.3837 13.2701 14.0246 13.2156C16.7264 12.986 19.0645 14.7295 19.6484 17.3805C19.8328 18.2171 19.1993 18.7176 18.5835 18.7007C17.1931 18.6624 15.8001 18.6888 14.4085 18.6888C14.3244 18.6888 14.2391 18.6888 14.1187 18.6888Z" fill="#64697A"/>
6
+ </svg>
@@ -0,0 +1,40 @@
1
+ <svg width="366" height="329" viewBox="0 0 366 329" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_9003_123630)">
3
+ <path d="M8.70341 138.516C14.2754 144.097 21.831 147.233 29.7097 147.233C35.6271 147.233 41.3663 145.458 46.2139 142.221L25.0738 163.406C19.5019 168.987 16.3704 176.555 16.3704 184.446C16.3704 192.337 19.5019 199.905 25.0738 205.485C30.6458 211.066 38.2014 214.203 46.0801 214.203C51.9976 214.203 57.7367 212.428 62.5843 209.191L51.4849 220.308C45.913 225.889 42.7815 233.457 42.7815 241.348C42.7815 249.239 45.913 256.807 51.4849 262.387C57.0569 267.968 64.6125 271.105 72.4912 271.105C78.4087 271.105 84.1478 269.33 88.9954 266.093L86.2874 268.805C80.7155 274.386 77.584 281.954 77.584 289.845C77.584 297.736 80.7155 305.304 86.2874 310.885C91.8594 316.466 99.415 319.602 107.294 319.602C115.172 319.602 122.728 316.466 128.3 310.885L156.461 282.679C153.218 287.535 151.457 293.283 151.457 299.21C151.457 307.101 154.589 314.668 160.161 320.249C165.732 325.83 173.288 328.967 181.167 328.967C189.046 328.967 196.601 325.83 202.173 320.249L244.955 277.4C241.712 282.255 239.951 288.003 239.951 293.93C239.951 301.821 243.082 309.389 248.654 314.97C254.226 320.551 261.782 323.687 269.661 323.687C277.54 323.687 285.095 320.551 290.667 314.97L357.274 248.257C362.846 242.676 365.978 235.108 365.978 227.217C365.978 219.326 362.846 211.758 357.274 206.177C351.702 200.597 344.147 197.46 336.268 197.46C330.351 197.46 324.611 199.235 319.764 202.472L333.705 188.509C339.277 182.928 342.408 175.36 342.408 167.469C342.408 159.578 339.277 152.01 333.705 146.429C328.133 140.849 320.577 137.712 312.699 137.712C306.781 137.712 301.042 139.487 296.194 142.724L324.355 114.518C329.927 108.937 333.059 101.37 333.059 93.4786C333.059 85.5873 329.927 78.0197 324.355 72.4389C318.783 66.8581 311.228 63.7217 303.349 63.7217C297.431 63.7217 291.692 65.4964 286.845 68.7333L304.775 50.7742C310.347 45.1934 313.479 37.6258 313.479 29.7346C313.479 21.8433 310.347 14.2757 304.775 8.6949C299.192 3.13642 291.637 0 283.758 0C275.879 0 268.323 3.13642 262.752 8.71723L222.812 48.7205C226.055 43.8652 227.815 38.1169 227.815 32.1901C227.815 24.2989 224.684 16.7313 219.112 11.1505C213.54 5.56965 205.984 2.43323 198.106 2.43323C190.227 2.43323 182.671 5.56965 177.099 11.1505L121.023 67.2934C124.266 62.4381 126.027 56.6899 126.027 50.7631C126.027 42.8718 122.895 35.3042 117.323 29.7234C111.751 24.1426 104.196 21.0062 96.317 21.0062C88.4382 21.0062 80.8826 24.1426 75.3107 29.7234L8.70341 96.4253C3.13144 102.006 0 109.574 0 117.476C0 125.379 3.13144 132.935 8.70341 138.516Z" fill="white"/>
4
+ <path d="M347.267 234.706L345.217 236.76C344.414 237.564 344.414 238.87 345.217 239.673C346.019 240.477 347.323 240.477 348.125 239.673L350.176 237.62L352.226 239.673C353.028 240.477 354.332 240.477 355.135 239.673C355.937 238.87 355.937 237.564 355.135 236.76L353.084 234.706L355.135 232.653C355.937 231.849 355.937 230.543 355.135 229.739C354.733 229.338 354.21 229.137 353.675 229.137C353.14 229.137 352.616 229.338 352.215 229.739L350.164 231.793L348.114 229.739C347.713 229.338 347.189 229.137 346.654 229.137C346.119 229.137 345.595 229.338 345.194 229.739C344.392 230.543 344.392 231.849 345.194 232.653L347.267 234.706Z" fill="white"/>
5
+ <path d="M71.3435 309.736L69.293 311.789C68.4906 312.593 68.4906 313.899 69.293 314.703C70.0954 315.506 71.3992 315.506 72.2016 314.703L74.2521 312.649L76.3025 314.703C77.1049 315.506 78.4087 315.506 79.2111 314.703C80.0135 313.899 80.0135 312.593 79.2111 311.789L77.1606 309.736L79.2111 307.682C80.0135 306.878 80.0135 305.572 79.2111 304.769C78.8099 304.367 78.2862 304.166 77.7512 304.166C77.2275 304.166 76.6926 304.367 76.2914 304.769L74.2409 306.822L72.1904 304.769C71.7892 304.367 71.2655 304.166 70.7306 304.166C70.2068 304.166 69.6719 304.367 69.2707 304.769C68.4684 305.572 68.4684 306.878 69.2707 307.682L71.3435 309.736Z" fill="white"/>
6
+ <path d="M18.7329 127.208L16.6824 129.262C15.88 130.066 15.88 131.372 16.6824 132.175C17.4848 132.979 18.7886 132.979 19.591 132.175L21.6415 130.122L23.6919 132.175C24.4943 132.979 25.7981 132.979 26.6005 132.175C27.4029 131.372 27.4029 130.066 26.6005 129.262L24.55 127.208L26.6005 125.155C27.4029 124.351 27.4029 123.045 26.6005 122.241C26.1993 121.84 25.6756 121.639 25.1407 121.639C24.6169 121.639 24.082 121.84 23.6808 122.241L21.6303 124.295L19.5798 122.241C19.1786 121.84 18.6549 121.639 18.12 121.639C17.5962 121.639 17.0613 121.84 16.6601 122.241C15.8578 123.045 15.8578 124.351 16.6601 125.155L18.7329 127.208Z" fill="white"/>
7
+ <path d="M266.195 21.3743L264.145 23.4281C263.342 24.2317 263.342 25.5376 264.145 26.3413C264.947 27.1449 266.251 27.1449 267.053 26.3413L269.104 24.2875L271.154 26.3413C271.956 27.1449 273.26 27.1449 274.063 26.3413C274.865 25.5376 274.865 24.2317 274.063 23.4281L272.012 21.3743L274.063 19.3206C274.865 18.517 274.865 17.2111 274.063 16.4074C273.661 16.0056 273.138 15.8047 272.603 15.8047C272.068 15.8047 271.544 16.0056 271.143 16.4074L269.092 18.4612L267.042 16.4074C266.641 16.0056 266.117 15.8047 265.582 15.8047C265.058 15.8047 264.523 16.0056 264.122 16.4074C263.32 17.2111 263.32 18.517 264.122 19.3206L266.195 21.3743Z" fill="white"/>
8
+ <path d="M228.551 312.604C231.861 312.604 234.557 315.305 234.557 318.62C234.557 321.935 231.861 324.636 228.551 324.636C225.241 324.636 222.544 321.935 222.544 318.62C222.544 315.305 225.241 312.604 228.551 312.604ZM228.551 320.528C229.598 320.528 230.445 319.68 230.445 318.631C230.445 317.582 229.598 316.733 228.551 316.733C227.503 316.733 226.656 317.582 226.656 318.631C226.656 319.669 227.503 320.528 228.551 320.528Z" fill="white"/>
9
+ <path d="M341.84 120.758C345.15 120.758 347.847 123.459 347.847 126.774C347.847 130.089 345.15 132.79 341.84 132.79C338.53 132.79 335.833 130.089 335.833 126.774C335.833 123.459 338.53 120.758 341.84 120.758ZM341.84 128.683C342.888 128.683 343.735 127.834 343.735 126.785C343.735 125.736 342.888 124.888 341.84 124.888C340.793 124.888 339.946 125.736 339.946 126.785C339.946 127.834 340.793 128.683 341.84 128.683Z" fill="white"/>
10
+ <path d="M90.199 24.1426C93.5087 24.1426 96.2055 26.8437 96.2055 30.1587C96.2055 33.4737 93.5087 36.1748 90.199 36.1748C86.8892 36.1748 84.1924 33.4737 84.1924 30.1587C84.1924 26.8437 86.8892 24.1426 90.199 24.1426ZM90.199 32.0562C91.2465 32.0562 92.0934 31.2079 92.0934 30.1587C92.0934 29.1095 91.2465 28.2612 90.199 28.2612C89.1514 28.2612 88.3045 29.1095 88.3045 30.1587C88.3045 31.2079 89.1626 32.0562 90.199 32.0562Z" fill="white"/>
11
+ <path d="M16.3147 211.145C19.6244 211.145 22.3213 213.846 22.3213 217.161C22.3213 220.476 19.6244 223.177 16.3147 223.177C13.0049 223.177 10.3081 220.476 10.3081 217.161C10.3081 213.846 13.0049 211.145 16.3147 211.145ZM16.3147 219.058C17.3622 219.058 18.2091 218.21 18.2091 217.161C18.2091 216.111 17.3622 215.263 16.3147 215.263C15.2672 215.263 14.4202 216.111 14.4202 217.161C14.4202 218.21 15.2672 219.058 16.3147 219.058Z" fill="white"/>
12
+ <path d="M8.70341 138.516C14.2754 144.097 21.831 147.233 29.7097 147.233C35.6271 147.233 41.3663 145.458 46.2139 142.221L25.0738 163.406C19.5019 168.987 16.3704 176.555 16.3704 184.446C16.3704 192.337 19.5019 199.905 25.0738 205.485C30.6458 211.066 38.2014 214.203 46.0801 214.203C51.9976 214.203 57.7367 212.428 62.5843 209.191L51.4849 220.308C45.913 225.889 42.7815 233.457 42.7815 241.348C42.7815 249.239 45.913 256.807 51.4849 262.387C57.0569 267.968 64.6125 271.105 72.4912 271.105C78.4087 271.105 84.1478 269.33 88.9954 266.093L86.2874 268.805C80.7155 274.386 77.584 281.954 77.584 289.845C77.584 297.736 80.7155 305.304 86.2874 310.885C91.8594 316.466 99.415 319.602 107.294 319.602C115.172 319.602 122.728 316.466 128.3 310.885L156.461 282.679C153.218 287.535 151.457 293.283 151.457 299.21C151.457 307.101 154.589 314.668 160.161 320.249C165.732 325.83 173.288 328.967 181.167 328.967C189.046 328.967 196.601 325.83 202.173 320.249L244.955 277.4C241.712 282.255 239.951 288.003 239.951 293.93C239.951 301.821 243.082 309.389 248.654 314.97C254.226 320.551 261.782 323.687 269.661 323.687C277.54 323.687 285.095 320.551 290.667 314.97L357.274 248.257C362.846 242.676 365.978 235.108 365.978 227.217C365.978 219.326 362.846 211.758 357.274 206.177C351.702 200.597 344.147 197.46 336.268 197.46C330.351 197.46 324.611 199.235 319.764 202.472L333.705 188.509C339.277 182.928 342.408 175.36 342.408 167.469C342.408 159.578 339.277 152.01 333.705 146.429C328.133 140.849 320.577 137.712 312.699 137.712C306.781 137.712 301.042 139.487 296.194 142.724L324.355 114.518C329.927 108.937 333.059 101.37 333.059 93.4786C333.059 85.5873 329.927 78.0197 324.355 72.4389C318.783 66.8581 311.228 63.7217 303.349 63.7217C297.431 63.7217 291.692 65.4964 286.845 68.7333L304.775 50.7742C310.347 45.1934 313.479 37.6258 313.479 29.7346C313.479 21.8433 310.347 14.2757 304.775 8.6949C299.192 3.13642 291.637 0 283.758 0C275.879 0 268.323 3.13642 262.752 8.71723L222.812 48.7205C226.055 43.8652 227.815 38.1169 227.815 32.1901C227.815 24.2989 224.684 16.7313 219.112 11.1505C213.54 5.56965 205.984 2.43323 198.106 2.43323C190.227 2.43323 182.671 5.56965 177.099 11.1505L121.023 67.2934C124.266 62.4381 126.027 56.6899 126.027 50.7631C126.027 42.8718 122.895 35.3042 117.323 29.7234C111.751 24.1426 104.196 21.0062 96.317 21.0062C88.4382 21.0062 80.8826 24.1426 75.3107 29.7234L8.70341 96.4253C3.13144 102.006 0 109.574 0 117.476C0 125.379 3.13144 132.935 8.70341 138.516Z" fill="#6F61CF" fill-opacity="0.16"/>
13
+ <path d="M347.267 234.706L345.217 236.76C344.414 237.564 344.414 238.87 345.217 239.673C346.019 240.477 347.323 240.477 348.125 239.673L350.176 237.62L352.226 239.673C353.028 240.477 354.332 240.477 355.135 239.673C355.937 238.87 355.937 237.564 355.135 236.76L353.084 234.706L355.135 232.653C355.937 231.849 355.937 230.543 355.135 229.739C354.733 229.338 354.21 229.137 353.675 229.137C353.14 229.137 352.616 229.338 352.215 229.739L350.164 231.793L348.114 229.739C347.713 229.338 347.189 229.137 346.654 229.137C346.119 229.137 345.595 229.338 345.194 229.739C344.392 230.543 344.392 231.849 345.194 232.653L347.267 234.706Z" fill="#6F61CF"/>
14
+ <path d="M71.3435 309.736L69.293 311.789C68.4906 312.593 68.4906 313.899 69.293 314.703C70.0954 315.506 71.3992 315.506 72.2016 314.703L74.2521 312.649L76.3025 314.703C77.1049 315.506 78.4087 315.506 79.2111 314.703C80.0135 313.899 80.0135 312.593 79.2111 311.789L77.1606 309.736L79.2111 307.682C80.0135 306.878 80.0135 305.572 79.2111 304.769C78.8099 304.367 78.2862 304.166 77.7512 304.166C77.2275 304.166 76.6926 304.367 76.2914 304.769L74.2409 306.822L72.1904 304.769C71.7892 304.367 71.2655 304.166 70.7306 304.166C70.2068 304.166 69.6719 304.367 69.2707 304.769C68.4684 305.572 68.4684 306.878 69.2707 307.682L71.3435 309.736Z" fill="#6F61CF"/>
15
+ <path d="M18.7329 127.208L16.6824 129.262C15.88 130.066 15.88 131.372 16.6824 132.175C17.4848 132.979 18.7886 132.979 19.591 132.175L21.6415 130.122L23.6919 132.175C24.4943 132.979 25.7981 132.979 26.6005 132.175C27.4029 131.372 27.4029 130.066 26.6005 129.262L24.55 127.208L26.6005 125.155C27.4029 124.351 27.4029 123.045 26.6005 122.241C26.1993 121.84 25.6756 121.639 25.1407 121.639C24.6169 121.639 24.082 121.84 23.6808 122.241L21.6303 124.295L19.5798 122.241C19.1786 121.84 18.6549 121.639 18.12 121.639C17.5962 121.639 17.0613 121.84 16.6601 122.241C15.8578 123.045 15.8578 124.351 16.6601 125.155L18.7329 127.208Z" fill="#6F61CF"/>
16
+ <path d="M266.195 21.3743L264.145 23.4281C263.342 24.2317 263.342 25.5376 264.145 26.3413C264.947 27.1449 266.251 27.1449 267.053 26.3413L269.104 24.2875L271.154 26.3413C271.956 27.1449 273.26 27.1449 274.063 26.3413C274.865 25.5376 274.865 24.2317 274.063 23.4281L272.012 21.3743L274.063 19.3206C274.865 18.517 274.865 17.2111 274.063 16.4074C273.661 16.0056 273.138 15.8047 272.603 15.8047C272.068 15.8047 271.544 16.0056 271.143 16.4074L269.092 18.4612L267.042 16.4074C266.641 16.0056 266.117 15.8047 265.582 15.8047C265.058 15.8047 264.523 16.0056 264.122 16.4074C263.32 17.2111 263.32 18.517 264.122 19.3206L266.195 21.3743Z" fill="#6F61CF"/>
17
+ <path d="M228.551 312.604C231.861 312.604 234.557 315.305 234.557 318.62C234.557 321.935 231.861 324.636 228.551 324.636C225.241 324.636 222.544 321.935 222.544 318.62C222.544 315.305 225.241 312.604 228.551 312.604ZM228.551 320.528C229.598 320.528 230.445 319.68 230.445 318.631C230.445 317.582 229.598 316.733 228.551 316.733C227.503 316.733 226.656 317.582 226.656 318.631C226.656 319.669 227.503 320.528 228.551 320.528Z" fill="#6F61CF"/>
18
+ <path d="M341.84 120.758C345.15 120.758 347.847 123.459 347.847 126.774C347.847 130.089 345.15 132.79 341.84 132.79C338.53 132.79 335.833 130.089 335.833 126.774C335.833 123.459 338.53 120.758 341.84 120.758ZM341.84 128.683C342.888 128.683 343.735 127.834 343.735 126.785C343.735 125.736 342.888 124.888 341.84 124.888C340.793 124.888 339.946 125.736 339.946 126.785C339.946 127.834 340.793 128.683 341.84 128.683Z" fill="#6F61CF"/>
19
+ <path d="M90.199 24.1426C93.5087 24.1426 96.2055 26.8437 96.2055 30.1587C96.2055 33.4737 93.5087 36.1748 90.199 36.1748C86.8892 36.1748 84.1924 33.4737 84.1924 30.1587C84.1924 26.8437 86.8892 24.1426 90.199 24.1426ZM90.199 32.0562C91.2465 32.0562 92.0934 31.2079 92.0934 30.1587C92.0934 29.1095 91.2465 28.2612 90.199 28.2612C89.1514 28.2612 88.3045 29.1095 88.3045 30.1587C88.3045 31.2079 89.1626 32.0562 90.199 32.0562Z" fill="#6F61CF"/>
20
+ <path d="M16.3147 211.145C19.6244 211.145 22.3213 213.846 22.3213 217.161C22.3213 220.476 19.6244 223.177 16.3147 223.177C13.0049 223.177 10.3081 220.476 10.3081 217.161C10.3081 213.846 13.0049 211.145 16.3147 211.145ZM16.3147 219.058C17.3622 219.058 18.2091 218.21 18.2091 217.161C18.2091 216.111 17.3622 215.263 16.3147 215.263C15.2672 215.263 14.4202 216.111 14.4202 217.161C14.4202 218.21 15.2672 219.058 16.3147 219.058Z" fill="#6F61CF"/>
21
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M212.792 120.998L192.597 115.103L184.791 93H123.178C116.481 93 111 98.4773 111 105.178V193.334C111 200.031 116.477 205.508 123.178 205.508H181.221L212.788 163.226L212.792 120.998Z" fill="#BDB4FF"/>
22
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M186.812 163.221H248.413C251.489 163.221 254 165.731 254 168.808V230.412C254 233.489 251.489 235.999 248.413 235.999H186.812C183.736 235.999 181.226 233.489 181.226 230.412V168.808C181.23 165.731 183.736 163.221 186.812 163.221Z" fill="#6F61CF"/>
23
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M184.795 93L212.792 120.998H190.863C187.521 120.998 184.795 118.272 184.795 114.93V93Z" fill="#6F61CF"/>
24
+ <path d="M173.352 137.139C174.23 137.139 174.943 136.426 174.943 135.548C174.943 134.67 174.23 133.957 173.352 133.957H127.321C126.444 133.957 125.73 134.67 125.73 135.548C125.73 136.426 126.444 137.139 127.321 137.139H173.352Z" fill="#6F61CF"/>
25
+ <path d="M196.479 153.207C197.357 153.207 198.07 152.494 198.07 151.616C198.07 150.739 197.357 150.025 196.479 150.025H127.321C126.444 150.025 125.73 150.739 125.73 151.616C125.73 152.494 126.444 153.207 127.321 153.207H196.479Z" fill="#6F61CF"/>
26
+ <path d="M170.901 169.281C171.778 169.281 172.491 168.568 172.491 167.69C172.491 166.813 171.778 166.1 170.901 166.1H127.321C126.444 166.1 125.73 166.813 125.73 167.69C125.73 168.568 126.444 169.281 127.321 169.281H170.901Z" fill="#6F61CF"/>
27
+ <path d="M170.901 185.354C171.778 185.354 172.491 184.64 172.491 183.763C172.491 182.885 171.778 182.172 170.901 182.172H127.321C126.444 182.172 125.73 182.885 125.73 183.763C125.73 184.64 126.444 185.354 127.321 185.354H170.901Z" fill="#6F61CF"/>
28
+ <path d="M173.352 120.614C174.234 120.614 174.947 119.901 174.947 119.019C174.947 118.137 174.234 117.424 173.352 117.424H127.321C126.439 117.424 125.726 118.137 125.726 119.019C125.726 119.901 126.439 120.614 127.321 120.614H173.352Z" fill="#6F61CF"/>
29
+ <path d="M238.613 187.745C241.534 184.824 241.534 180.087 238.613 177.165C235.691 174.243 230.954 174.243 228.033 177.165C225.111 180.087 225.111 184.824 228.033 187.745C230.954 190.667 235.691 190.667 238.613 187.745Z" fill="#E4EAF8"/>
30
+ <path d="M238.613 222.06C241.534 219.138 241.534 214.401 238.613 211.479C235.691 208.557 230.954 208.557 228.033 211.479C225.111 214.401 225.111 219.138 228.033 222.06C230.954 224.982 235.691 224.982 238.613 222.06Z" fill="#E4EAF8"/>
31
+ <path d="M209.744 206.294C213.249 202.789 213.249 197.106 209.744 193.601C206.239 190.096 200.557 190.096 197.052 193.601C193.547 197.106 193.547 202.789 197.052 206.294C200.557 209.799 206.239 209.799 209.744 206.294Z" fill="#E4EAF8"/>
32
+ <path d="M210.205 201.942C209.438 201.511 208.467 201.786 208.037 202.554C207.606 203.322 207.881 204.292 208.648 204.723L227.83 215.509C228.598 215.939 229.569 215.665 229.999 214.897C230.43 214.129 230.155 213.158 229.387 212.728L210.205 201.942Z" fill="#E4EAF8"/>
33
+ <path d="M229.489 186.545C230.248 186.102 230.506 185.123 230.063 184.363C229.62 183.604 228.641 183.346 227.881 183.789L208.53 195.098C207.771 195.541 207.513 196.52 207.956 197.28C208.399 198.039 209.378 198.297 210.138 197.854L229.489 186.545Z" fill="#E4EAF8"/>
34
+ </g>
35
+ <defs>
36
+ <clipPath id="clip0_9003_123630">
37
+ <rect width="366" height="329" fill="white"/>
38
+ </clipPath>
39
+ </defs>
40
+ </svg>
@@ -0,0 +1,25 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="17" height="16" fill="none" viewBox="0 0 17 16">
2
+ <path d="M9 4H15H9Z" fill="#D9D9D9"/>
3
+ <path d="M9 4H15" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M2 4.33333L2.75 5L5 3" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M9 8H15H9Z" fill="#D9D9D9"/>
6
+ <path d="M9 8H15" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M9 12H15H9Z" fill="#D9D9D9"/>
8
+ <path d="M9 12H15" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <path d="M2 8.33333L2.75 9L5 7" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
10
+ <path d="M2 12.3333L2.75 13L5 11" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <mask id="mask0_1131:1131-02-10-2024-03" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="17" height="16">
12
+ <path d="M9 4H15H9Z" fill="#D9D9D9"/>
13
+ <path d="M9 4H15" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
14
+ <path d="M2 4.33333L2.75 5L5 3" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
15
+ <path d="M9 8H15H9Z" fill="#D9D9D9"/>
16
+ <path d="M9 8H15" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
17
+ <path d="M9 12H15H9Z" fill="#D9D9D9"/>
18
+ <path d="M9 12H15" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
19
+ <path d="M2 8.33333L2.75 9L5 7" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
20
+ <path d="M2 12.3333L2.75 13L5 11" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
21
+ </mask>
22
+ <g mask="url(#mask0_1131:1131-02-10-2024-03)">
23
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H24V24H0V0Z" fill="#F1F1F1"></path>
24
+ </g>
25
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16 6V5.2C16 4.0799 16 3.51984 15.782 3.09202C15.5903 2.71569 15.2843 2.40973 14.908 2.21799C14.4802 2 13.9201 2 12.8 2H11.2C10.0799 2 9.51984 2 9.09202 2.21799C8.71569 2.40973 8.40973 2.71569 8.21799 3.09202C8 3.51984 8 4.0799 8 5.2V6M10 11.5V16.5M14 11.5V16.5M3 6H21M19 6V17.2C19 18.8802 19 19.7202 18.673 20.362C18.3854 20.9265 17.9265 21.3854 17.362 21.673C16.7202 22 15.8802 22 14.2 22H9.8C8.11984 22 7.27976 22 6.63803 21.673C6.07354 21.3854 5.6146 20.9265 5.32698 20.362C5 19.7202 5 18.8802 5 17.2V6" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
3
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="27" height="26" viewBox="0 0 27 26" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M9.75 25.5H17.25C23.5 25.5 26 23 26 16.75V9.25C26 3 23.5 0.5 17.25 0.5H9.75C3.5 0.5 1 3 1 9.25V16.75C1 23 3.5 25.5 9.75 25.5Z" fill="white" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M19.6663 13.0002C19.6663 16.6802 16.6797 19.6668 12.9997 19.6668C9.31967 19.6668 7.07301 15.9602 7.07301 15.9602M7.07301 15.9602H10.0863M7.07301 15.9602V19.2935M6.33301 13.0002C6.33301 9.32016 9.29301 6.3335 12.9997 6.3335C17.4463 6.3335 19.6663 10.0402 19.6663 10.0402M19.6663 10.0402V6.70683M19.6663 10.0402H16.7063" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
4
+ </svg>
@@ -0,0 +1,34 @@
1
+ <svg width="54" height="63" viewBox="0 0 54 63" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_7174_31662)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.7814 0H36.7153C36.6793 0.229497 36.6598 0.463524 36.6598 0.70208V12.7658C36.6598 15.2102 38.6438 17.2093 41.0698 17.2093H54V58.9596C54 61.1821 52.1958 63 49.9901 63H10.7814C8.57568 63 6.77154 61.1821 6.77154 58.9596V4.04036C6.77154 1.81786 8.57568 0 10.7814 0Z" fill="url(#paint0_linear_7174_31662)"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.36157 13.8514H32.9257C34.2248 13.8514 35.2872 14.9219 35.2872 16.2309V24.5577C35.2872 25.8668 34.2248 26.9372 32.9257 26.9372H2.36157C1.06241 26.9357 0 25.8653 0 24.5562V16.2294C0 14.9219 1.06241 13.8514 2.36157 13.8514Z" fill="url(#paint1_radial_7174_31662)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M36.7153 0L53.9985 17.2093H41.0683C38.6423 17.2093 36.6583 15.2102 36.6583 12.7658V0.70208C36.6598 0.463524 36.6793 0.229497 36.7153 0Z" fill="url(#paint2_linear_7174_31662)"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.51134 16.3668H13.0261V18.3567H10.5027V24.4203H8.03474V18.3567H5.51134V16.3668Z" fill="black"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.5865 16.3668H16.3107L17.7268 18.8444L19.1009 16.3668H21.7921L19.3077 20.2682L22.0259 24.4203H19.2462L17.6773 21.8339L16.098 24.4203H13.3408L16.0965 20.2229L13.5865 16.3668Z" fill="black"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M22.2596 16.3668H29.7729V18.3567H27.2495V24.4203H24.783V18.3567H22.2596V16.3668Z" fill="black"/>
9
+ <path d="M44.1746 44.0333H16.5969V46.1078H44.1746V44.0333Z" fill="white"/>
10
+ <path d="M44.1746 48.1808H16.5969V50.2554H44.1746V48.1808Z" fill="white"/>
11
+ <path d="M44.1746 52.0702H16.5969V54.1447H44.1746V52.0702Z" fill="white"/>
12
+ <path d="M44.1746 32.3651H16.5969V34.4396H44.1746V32.3651Z" fill="white"/>
13
+ <path d="M44.1746 36.5127H16.5969V38.5872H44.1746V36.5127Z" fill="white"/>
14
+ <path d="M44.1746 40.4006H16.5969V42.4751H44.1746V40.4006Z" fill="white"/>
15
+ </g>
16
+ <defs>
17
+ <linearGradient id="paint0_linear_7174_31662" x1="10.1537" y1="61.0442" x2="43.8126" y2="12.6323" gradientUnits="userSpaceOnUse">
18
+ <stop stop-color="#FB6040"/>
19
+ <stop offset="0.5" stop-color="#FE0000"/>
20
+ <stop offset="1" stop-color="#D50000"/>
21
+ </linearGradient>
22
+ <radialGradient id="paint1_radial_7174_31662" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.6423 20.3931) rotate(30.9958) scale(18.0087 16.8973)">
23
+ <stop stop-color="white"/>
24
+ <stop offset="1" stop-color="#C1BEB9"/>
25
+ </radialGradient>
26
+ <linearGradient id="paint2_linear_7174_31662" x1="41.732" y1="12.3144" x2="38.2947" y2="15.7786" gradientUnits="userSpaceOnUse">
27
+ <stop stop-color="#C1BEB9"/>
28
+ <stop offset="1" stop-color="white"/>
29
+ </linearGradient>
30
+ <clipPath id="clip0_7174_31662">
31
+ <rect width="54" height="63" fill="white"/>
32
+ </clipPath>
33
+ </defs>
34
+ </svg>
@@ -0,0 +1,16 @@
1
+ <svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <mask id="mask0_8692_90756" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="32" height="32">
3
+ <path d="M32 0H0V32H32V0Z" fill="white"/>
4
+ </mask>
5
+ <g mask="url(#mask0_8692_90756)">
6
+ <path d="M30.9995 22.6808L29.9797 23.3366H23.7828C23.4147 24.6427 22.6428 25.753 21.6245 26.5456C20.5632 27.3729 19.233 27.8554 17.8129 27.8554H14.4069C11.6239 27.8554 9.18834 26.0031 8.43702 23.3366H2.03146L1.00684 22.6808L7.92471 11.9755C8.27034 11.4414 8.86229 11.1191 9.49837 11.1191H22.5079C23.1439 11.1191 23.736 11.4414 24.0816 11.9755L30.9995 22.6808Z" fill="#4BB3FD"/>
7
+ <g style="mix-blend-mode:multiply">
8
+ <path d="M30.9995 22.6808L29.9797 23.3366H23.7828C23.4147 24.6427 22.6428 25.753 21.6245 26.5456C20.5632 27.3729 19.233 27.8554 17.8129 27.8554H14.4069C11.6239 27.8554 9.18834 26.0031 8.43702 23.3366H2.03146L1.00684 22.6808L7.92471 11.9755C8.27034 11.4414 8.86229 11.1191 9.49837 11.1191H22.5079C23.1439 11.1191 23.736 11.4414 24.0816 11.9755L30.9995 22.6808Z" fill="#4BB3FD" fill-opacity="0.6"/>
9
+ </g>
10
+ <path d="M31.0004 22.6816C30.9995 23.0798 30.9976 24.6014 30.9948 26.3928V26.9315C30.992 29.0003 29.3102 30.6792 27.2415 30.6792H4.74403C2.6753 30.6792 0.999146 29.0003 1.00196 26.9315L1.00289 26.3694C1.0057 24.5986 1.00664 23.0958 1.00758 22.6816H8.43364C9.18505 25.3481 11.6211 27.2004 14.4047 27.2004H17.8113C19.2317 27.2004 20.5621 26.7179 21.6237 25.8906C22.6421 25.098 23.4141 23.9877 23.7823 22.6816H31.0004Z" fill="#4BB3FD"/>
11
+ <path d="M10.4547 8.50789L15.5205 1.87109C15.7446 1.57746 16.1863 1.57606 16.4122 1.86838L21.5421 8.50611C21.7325 8.75243 21.557 9.11005 21.2457 9.11005H18.8773C18.7737 9.11005 18.6899 9.1939 18.6899 9.29743L18.6868 20.0006C18.6868 20.518 18.2673 20.9375 17.7498 20.9375H14.248C13.7305 20.9375 13.3111 20.518 13.3111 20.0006L13.3142 9.29743C13.3142 9.1939 13.2303 9.11005 13.1268 9.11005H10.7525C10.4422 9.11005 10.2664 8.75458 10.4547 8.50789Z" fill="#FFC738"/>
12
+ <g style="mix-blend-mode:multiply" opacity="0.5">
13
+ <path d="M16.0084 1.65185L16.0115 20.9375H14.2577C13.7405 20.9375 13.3208 20.5178 13.3208 20.0006L13.3176 9.29715C13.3176 9.19409 13.2342 9.10977 13.1302 9.10977H10.7626C10.4506 9.10977 10.2754 8.75186 10.4656 8.50545L15.5962 1.86828C15.7011 1.73149 15.8529 1.65935 16.0084 1.65185Z" fill="#FFC738"/>
14
+ </g>
15
+ </g>
16
+ </svg>