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
File without changes
@@ -0,0 +1,19 @@
1
+ <svg width="31" height="29" viewBox="0 0 31 29" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_8687_88895)">
3
+ <path d="M31.0003 21.3569V28.0215C31.0003 28.5588 30.5641 28.9999 30.0326 28.9999H8.1787C7.64722 28.9999 7.21094 28.5588 7.21094 28.0215V21.3569H31.0003Z" fill="#185B38"/>
4
+ <path d="M19.1096 0V7.12168H7.21094V0.978429C7.21094 0.441095 7.63929 0 8.1787 0H19.1096Z" fill="#21A164"/>
5
+ <path d="M31.0001 0.978429V7.11366H19.1094V0H30.0324C30.5638 0 31.0001 0.441095 31.0001 0.978429Z" fill="#34C582"/>
6
+ <path d="M19.1096 7.12158H7.21094V14.2433H19.1096V7.12158Z" fill="#0F7B43"/>
7
+ <path d="M31.0001 7.12158H19.1094V14.2433H31.0001V7.12158Z" fill="#20A063"/>
8
+ <path d="M19.1096 14.2432H7.21094V21.3568H19.1096V14.2432Z" fill="#155D36"/>
9
+ <path d="M31.0001 14.2432H19.1094V21.3568H31.0001V14.2432Z" fill="#107A42"/>
10
+ <path opacity="0.05" d="M16.9203 8.86994V22.183C16.9203 22.9449 16.3095 23.5624 15.5559 23.5624H7.21094V7.49854H15.5638C16.2063 7.49854 16.7457 7.95567 16.8885 8.56518C16.9123 8.66142 16.9203 8.76568 16.9203 8.86994Z" fill="black"/>
11
+ <path d="M15.8966 7.84329V21.1563C15.8966 21.9182 15.2858 22.5358 14.5322 22.5358H1.36438C1.29299 22.5358 1.2216 22.5277 1.15814 22.5197C1.12641 22.5197 1.09468 22.5117 1.06295 22.5037C0.452149 22.3593 0 21.814 0 21.1563V7.84329C0 7.0814 0.610798 6.46387 1.36438 6.46387H14.5402C15.1827 6.46387 15.7221 6.921 15.8649 7.53052C15.8887 7.63477 15.8966 7.73101 15.8966 7.84329Z" fill="#18854C"/>
12
+ <path d="M8.88447 14.4038L11.5894 9.88058H9.90775L8.59097 12.2384C8.39266 12.5913 8.22607 12.9201 8.02776 13.3051C7.95637 13.1848 7.90084 13.0805 7.83738 12.9682C7.68667 12.7116 7.55975 12.479 7.40903 12.2304L6.06052 9.87256H4.31538L7.01241 14.3557L4.125 19.1115H5.80668L7.24245 16.6173C7.4487 16.2404 7.65494 15.8634 7.87705 15.4223C7.99603 15.6228 8.09916 15.8153 8.21021 15.9998C8.33713 16.2163 8.45612 16.4248 8.5751 16.6333L10.0267 19.1115H11.7719L8.88447 14.4038Z" fill="white"/>
13
+ </g>
14
+ <defs>
15
+ <clipPath id="clip0_8687_88895">
16
+ <rect width="31" height="29" fill="white"/>
17
+ </clipPath>
18
+ </defs>
19
+ </svg>
@@ -0,0 +1,31 @@
1
+ <svg width="219" height="183" viewBox="0 0 219 183" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_10218_970)">
3
+ <path d="M192.637 110.543C192.822 110.703 193.03 110.817 193.238 110.908C194.579 111.502 196.152 110.908 196.776 109.585C203.159 95.5766 203.205 79.4691 196.892 65.4378C196.452 64.4567 195.458 63.8635 194.441 63.8635C194.071 63.8635 193.724 63.932 193.377 64.0917C192.035 64.6849 191.411 66.2363 192.012 67.5596C197.701 80.2448 197.678 94.7781 191.897 107.418C191.411 108.513 191.712 109.79 192.637 110.543Z" fill="#FFCF00"/>
4
+ <path d="M207.483 116.201C207.738 116.407 207.992 116.567 208.293 116.703C209.172 117.091 210.12 117.114 211.022 116.772C211.924 116.43 212.617 115.791 213.01 114.924C220.943 97.5159 220.989 77.5298 213.172 60.099C212.571 58.7757 211.276 58 209.888 58C209.403 58 208.917 58.0913 208.455 58.2966C206.651 59.0723 205.841 61.1713 206.628 62.9509C213.635 78.5565 213.589 96.4664 206.489 112.049C205.842 113.486 206.235 115.198 207.483 116.201Z" fill="#FFCF00"/>
5
+ <path d="M22.2237 109.585C22.8249 110.908 24.4206 111.502 25.7619 110.908C25.97 110.817 26.1782 110.68 26.3632 110.543C27.2882 109.79 27.5888 108.513 27.1032 107.44C21.3449 94.778 21.2986 80.2676 26.9876 67.5824C27.5888 66.2591 26.9644 64.6849 25.6231 64.1145C24.2819 63.5213 22.7093 64.1373 22.108 65.4606C15.7947 79.4691 15.841 95.5766 22.2237 109.585Z" fill="#FFCF00"/>
6
+ <path d="M5.98935 114.924C6.79875 116.704 8.90319 117.479 10.707 116.704C11.0076 116.567 11.2851 116.407 11.5164 116.202C12.742 115.198 13.1583 113.487 12.4877 112.049C5.41121 96.4666 5.34184 78.5567 12.372 62.9511C13.1583 61.1716 12.3489 59.0954 10.5451 58.2968C8.74131 57.5211 6.63687 58.3197 5.82748 60.0992C-1.989 77.53 -1.94275 97.5161 5.98935 114.924Z" fill="#FFCF00"/>
7
+ </g>
8
+ <g clip-path="url(#clip1_10218_970)">
9
+ <path d="M110.153 0C102.854 0 96.9319 5.89611 96.9319 13.1618V23.6889H123.374V13.1618C123.362 5.89611 117.451 0 110.153 0ZM116.927 17.9205H103.367V12.5234C103.367 8.79774 106.399 5.78005 110.141 5.78005C113.884 5.78005 116.915 8.79774 116.915 12.5234V17.9205H116.927Z" fill="#FFCF00"/>
10
+ <path d="M96.9319 23.6889H123.374V13.1618C123.374 12.7904 123.351 12.4306 123.327 12.0708C121.159 11.4905 118.944 11.061 116.705 10.7825C116.857 11.3396 116.938 11.9199 116.938 12.5235V17.9205H103.368V12.5235C103.368 11.8735 103.461 11.2351 103.636 10.6316C101.397 10.8521 99.1821 11.2235 97.0019 11.7342C96.9553 12.1985 96.9203 12.6743 96.9203 13.1618V23.6889H96.9319Z" fill="#FFA200"/>
11
+ <path d="M160.507 99.3867C160.495 99.1081 160.495 98.8412 160.495 98.5626V64.6716C160.495 49.4206 154.083 35.6669 143.788 25.9522C143.532 25.7085 143.275 25.4764 143.019 25.2326C134.158 17.2009 122.511 12.8949 110.526 12.8949H108.486C96.5006 12.8949 84.8536 17.2009 75.993 25.2326C75.7365 25.4648 75.48 25.7085 75.2235 25.9522C64.9406 35.6669 58.5167 49.4206 58.5167 64.6716V98.5742C58.5167 98.8528 58.5167 99.1197 58.505 99.3983C58.3068 107.825 54.7859 115.787 48.9332 121.567H170.079C164.226 115.787 160.705 107.813 160.507 99.3867Z" fill="#FFCF00"/>
12
+ <path d="M88.0364 143.143V143.155C88.0364 154.262 97.6431 163.269 109.5 163.269C121.357 163.269 130.964 154.262 130.964 143.155V143.143H88.0364Z" fill="#FFCF00"/>
13
+ <path d="M130.369 147.867C130.754 146.358 130.964 144.78 130.964 143.155V143.143H88.0364V143.155C88.0364 144.78 88.2462 146.358 88.631 147.867H130.369Z" fill="#FFB700"/>
14
+ <path d="M84.3056 35.133C76.2378 43.5593 71.2013 55.4908 71.2013 68.7106V94.3959C71.2013 96.4618 72.8568 98.1448 74.9321 98.1796C77.0656 98.226 78.8144 96.5199 78.8144 94.3959V70.5097C78.8144 55.7694 84.1191 42.4799 92.6066 33.0902C96.2091 29.1092 100.325 25.9522 104.732 23.7006C97.1652 25.2326 90.065 29.1208 84.3056 35.133Z" fill="#FFE059"/>
15
+ <path d="M160.507 99.3867C160.495 99.1081 160.495 98.8412 160.495 98.5626V64.6716C160.495 49.4206 154.083 35.6669 143.788 25.9522C143.543 25.7201 143.287 25.488 143.042 25.2558C134.181 17.2125 122.523 12.8949 110.526 12.8949H108.486C104.545 12.8949 100.651 13.3592 96.8737 14.2761C97.4683 14.2529 98.0629 14.2413 98.6575 14.2413H100.686C112.671 14.2413 124.318 18.3732 133.179 26.0799C133.435 26.312 133.692 26.5326 133.948 26.7647C144.231 36.0847 150.655 49.2813 150.655 63.9172C150.748 89.6024 130.999 111.051 105.291 113.198L52.3026 117.632C51.2883 119.025 50.1574 120.348 48.9332 121.567H170.079C164.226 115.787 160.705 107.813 160.507 99.3867Z" fill="#FFB700"/>
16
+ <path d="M167.63 118.503H51.3699C44.5379 118.503 39 124.016 39 130.817C39 137.619 44.5379 143.132 51.3699 143.132H167.63C174.462 143.132 180 137.619 180 130.817C180 124.016 174.462 118.503 167.63 118.503Z" fill="#FFCF00"/>
17
+ <path d="M167.63 118.503H51.3699C44.5379 118.503 39 124.016 39 130.817C39 131.63 39.0816 132.43 39.2332 133.196C40.3407 127.532 45.354 123.261 51.3699 123.261H167.63C173.646 123.261 178.659 127.532 179.767 133.196C179.918 132.43 180 131.63 180 130.817C180 124.016 174.462 118.503 167.63 118.503Z" fill="#FFE059"/>
18
+ <path d="M149.979 54.597C162.232 54.597 172.165 44.7082 172.165 32.5098C172.165 20.3114 162.232 10.4226 149.979 10.4226C137.726 10.4226 127.792 20.3114 127.792 32.5098C127.792 44.7082 137.726 54.597 149.979 54.597Z" fill="#F3156B"/>
19
+ <path d="M168.166 19.8588C168.831 22.0408 169.181 24.3621 169.181 26.7646C169.181 39.9845 158.42 50.6973 145.141 50.6973C141.235 50.6973 137.539 49.7688 134.275 48.1206C138.297 52.1365 143.846 54.6087 149.991 54.6087C162.244 54.6087 172.177 44.7199 172.177 32.5215C172.165 27.8092 170.685 23.4452 168.166 19.8588Z" fill="#D9135F"/>
20
+ <path d="M109.5 183C148.436 183 180 181.503 180 179.657C180 177.811 148.436 176.315 109.5 176.315C70.5639 176.315 39 177.811 39 179.657C39 181.503 70.5639 183 109.5 183Z" fill="#E8E8E8"/>
21
+ <path d="M149.84 41.288C148 41.288 146.552 40.776 145.496 39.752C144.44 38.712 143.912 37.304 143.912 35.528V29.672C143.912 27.912 144.44 26.528 145.496 25.52C146.552 24.512 148 24.008 149.84 24.008C151.68 24.008 153.136 24.52 154.208 25.544C155.28 26.552 155.816 27.928 155.816 29.672V35.528C155.816 37.304 155.28 38.712 154.208 39.752C153.136 40.776 151.68 41.288 149.84 41.288ZM149.84 37.856C150.448 37.856 150.928 37.672 151.28 37.304C151.648 36.92 151.832 36.4 151.832 35.744V29.528C151.832 28.872 151.648 28.36 151.28 27.992C150.928 27.608 150.448 27.416 149.84 27.416C149.248 27.416 148.776 27.608 148.424 27.992C148.072 28.36 147.896 28.872 147.896 29.528V35.744C147.896 36.4 148.064 36.92 148.4 37.304C148.752 37.672 149.232 37.856 149.84 37.856Z" fill="white"/>
22
+ </g>
23
+ <defs>
24
+ <clipPath id="clip0_10218_970">
25
+ <rect width="219" height="59" fill="white" transform="translate(0 58)"/>
26
+ </clipPath>
27
+ <clipPath id="clip1_10218_970">
28
+ <rect width="141" height="183" fill="white" transform="translate(39)"/>
29
+ </clipPath>
30
+ </defs>
31
+ </svg>
@@ -0,0 +1,34 @@
1
+ <svg width="55" height="63" viewBox="0 0 55 63" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_5801_29346)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M37.3952 0L54.9985 17.2093H41.8288C39.3579 17.2093 37.3372 15.2102 37.3372 12.7658V0.70208C37.3387 0.463524 37.3586 0.229497 37.3952 0Z" fill="url(#paint0_linear_5801_29346)"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.9811 0H37.3952C37.3586 0.229497 37.3387 0.463524 37.3387 0.70208V12.7658C37.3387 15.2102 39.3594 17.2093 41.8303 17.2093H55V58.9596C55 61.1821 53.1624 63 50.9159 63H10.9811C8.7345 63 6.89694 61.1821 6.89694 58.9596V4.04036C6.89694 1.81786 8.7345 0 10.9811 0Z" fill="url(#paint1_linear_5801_29346)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.40531 13.8514H33.5354C34.8586 13.8514 35.9407 14.9219 35.9407 16.2309V24.5577C35.9407 25.8668 34.8586 26.9373 33.5354 26.9373H2.40531C1.08208 26.9357 0 25.8653 0 24.5562V16.2294C0 14.9219 1.08208 13.8514 2.40531 13.8514Z" fill="url(#paint2_radial_5801_29346)"/>
6
+ <path d="M44.9926 44.0333H16.9043V46.1078H44.9926V44.0333Z" fill="white"/>
7
+ <path d="M44.9926 48.1808H16.9043V50.2553H44.9926V48.1808Z" fill="white"/>
8
+ <path d="M44.9926 52.0702H16.9043V54.1447H44.9926V52.0702Z" fill="white"/>
9
+ <path d="M44.9926 32.3651H16.9043V34.4396H44.9926V32.3651Z" fill="white"/>
10
+ <path d="M44.9926 36.5127H16.9043V38.5872H44.9926V36.5127Z" fill="white"/>
11
+ <path d="M44.9926 40.4006H16.9043V42.4751H44.9926V40.4006Z" fill="white"/>
12
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.3981 20.9899L12.605 21.6482C12.4569 22.2597 12.2234 22.7715 11.9029 23.1792C11.5839 23.5899 11.1902 23.8994 10.717 24.1078C10.2454 24.3161 9.64412 24.4203 8.91459 24.4203C8.02786 24.4203 7.30597 24.2935 6.74279 24.0398C6.18115 23.7847 5.69887 23.3362 5.29137 22.6976C4.88387 22.0589 4.67936 21.2375 4.67936 20.2395C4.67936 18.9078 5.03802 17.8842 5.75381 17.1685C6.47266 16.4543 7.48606 16.0965 8.79707 16.0965C9.82268 16.0965 10.63 16.3003 11.2176 16.711C11.8037 17.1217 12.2417 17.7513 12.5256 18.6028L10.308 19.089C10.2302 18.8459 10.1493 18.6678 10.0638 18.5545C9.92189 18.3658 9.74943 18.2193 9.54644 18.1182C9.34193 18.0155 9.11452 17.9642 8.8627 17.9642C8.29037 17.9642 7.85235 18.1907 7.54863 18.6421C7.3197 18.9773 7.20371 19.5072 7.20371 20.2244C7.20371 21.1167 7.33954 21.7267 7.61579 22.0574C7.8905 22.388 8.27511 22.5526 8.77265 22.5526C9.25341 22.5526 9.61817 22.4197 9.86389 22.151C10.1081 21.8868 10.2867 21.4987 10.3981 20.9899Z" fill="black"/>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M20.5596 16.3652H23.1877L25.0222 22.1631L26.8308 16.3652H29.3841L26.3607 24.4203H23.6349L20.5596 16.3652Z" fill="black"/>
14
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.1162 21.621L15.5048 21.4731C15.5566 21.8551 15.662 22.148 15.8207 22.3473C16.0801 22.6719 16.4495 22.835 16.9318 22.835C17.2904 22.835 17.5667 22.7519 17.7605 22.5858C17.9559 22.4197 18.052 22.2265 18.052 22.006C18.052 21.7977 17.9604 21.6105 17.7773 21.4459C17.5941 21.2813 17.1653 21.1273 16.4922 20.9794C15.3888 20.7363 14.6043 20.4101 14.1342 20.0025C13.6611 19.5978 13.423 19.08 13.423 18.4504C13.423 18.0382 13.5451 17.6471 13.7862 17.2802C14.0289 16.9103 14.3922 16.6219 14.879 16.4121C15.3659 16.2022 16.0328 16.0965 16.8799 16.0965C17.9207 16.0965 18.7129 16.2882 19.2577 16.6717C19.8041 17.0537 20.1276 17.6637 20.2314 18.5002L17.8658 18.6391C17.8032 18.2737 17.6704 18.008 17.4705 17.8419C17.2675 17.6758 16.9898 17.5928 16.6342 17.5928C16.3426 17.5928 16.1198 17.6547 15.9733 17.777C15.8253 17.8993 15.752 18.0487 15.752 18.2254C15.752 18.3522 15.8131 18.467 15.9321 18.5696C16.0481 18.6768 16.3289 18.7735 16.7715 18.8656C17.8704 19.0996 18.6579 19.3381 19.131 19.5782C19.6072 19.8183 19.9537 20.1142 20.1689 20.4705C20.3856 20.8253 20.4924 21.2224 20.4924 21.6633C20.4924 22.1797 20.3489 22.6553 20.0605 23.0916C19.7705 23.5265 19.3691 23.8586 18.8487 24.0836C18.3313 24.3086 17.6796 24.4203 16.8906 24.4203C15.5063 24.4203 14.5478 24.1561 14.0152 23.6291C13.4871 23.1037 13.1864 22.4333 13.1162 21.621Z" fill="black"/>
15
+ </g>
16
+ <defs>
17
+ <linearGradient id="paint0_linear_5801_29346" x1="42.5049" y1="12.3144" x2="39.0686" y2="15.8416" gradientUnits="userSpaceOnUse">
18
+ <stop stop-color="#C1BEB9"/>
19
+ <stop offset="1" stop-color="white"/>
20
+ </linearGradient>
21
+ <linearGradient id="paint1_linear_5801_29346" x1="30.9485" y1="130.525" x2="30.9485" y2="130.109" gradientUnits="userSpaceOnUse">
22
+ <stop stop-color="#01FFFF"/>
23
+ <stop offset="0.5" stop-color="#01A0C6"/>
24
+ <stop offset="1" stop-color="#01A0C6"/>
25
+ </linearGradient>
26
+ <radialGradient id="paint2_radial_5801_29346" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.969 20.3931) rotate(30.5337) scale(18.2543 16.9786)">
27
+ <stop stop-color="white"/>
28
+ <stop offset="1" stop-color="#C1BEB9"/>
29
+ </radialGradient>
30
+ <clipPath id="clip0_5801_29346">
31
+ <rect width="55" height="63" fill="white"/>
32
+ </clipPath>
33
+ </defs>
34
+ </svg>
@@ -0,0 +1,34 @@
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_29207)">
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_29207)"/>
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_29207)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38.0751 0L56 17.7556H42.5909C40.075 17.7556 38.0176 15.6931 38.0176 13.171V0.724369C38.0176 0.478239 38.0378 0.236783 38.0751 0Z" fill="url(#paint2_linear_5799_29207)"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.10321 16.8848H8.91041C9.65942 16.8848 10.267 16.9876 10.7285 17.1901C11.1901 17.3957 11.5723 17.687 11.8754 18.0687C12.1768 18.4519 12.3944 18.8943 12.5296 19.4021C12.6663 19.9084 12.7347 20.4443 12.7347 21.0113C12.7347 21.8993 12.6337 22.5878 12.4317 23.0769C12.2312 23.5661 11.9515 23.9758 11.5925 24.3076C11.2336 24.6378 10.8497 24.859 10.4379 24.9697C9.87697 25.1208 9.36727 25.1955 8.91196 25.1955H5.10476V16.8848H5.10321ZM7.66258 18.765V23.3028H8.29193C8.82805 23.3028 9.21032 23.2436 9.43876 23.1252C9.66408 23.0053 9.84278 22.7981 9.97176 22.5021C10.1007 22.2046 10.1645 21.7248 10.1645 21.0596C10.1645 20.1795 10.0215 19.5782 9.73401 19.2526C9.44652 18.927 8.96946 18.765 8.30436 18.765H7.66258Z" fill="black"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.751 21.0472C13.751 19.6919 14.127 18.6342 14.8823 17.8802C15.6375 17.1231 16.6864 16.7462 18.0337 16.7462C19.4136 16.7462 20.4765 17.1169 21.224 17.8584C21.9714 18.6015 22.3428 19.6421 22.3428 20.9786C22.3428 21.9491 22.1812 22.7452 21.8549 23.3652C21.5285 23.9867 21.0561 24.4696 20.4408 24.8155C19.8223 25.1613 19.0546 25.3342 18.1347 25.3342C17.2008 25.3342 16.4269 25.1847 15.8131 24.8871C15.2008 24.5865 14.7036 24.1145 14.3228 23.4695C13.9421 22.8262 13.751 22.0177 13.751 21.0472ZM16.3103 21.0519C16.3103 21.8899 16.4673 22.4928 16.7781 22.8589C17.0904 23.225 17.5147 23.4088 18.0523 23.4088C18.6024 23.4088 19.0313 23.2296 19.3312 22.8714C19.6343 22.5115 19.785 21.8697 19.785 20.9381C19.785 20.1561 19.6265 19.586 19.3126 19.2261C18.9956 18.8647 18.5698 18.684 18.029 18.684C17.5116 18.684 17.0951 18.8679 16.7827 19.2339C16.4657 19.6 16.3103 20.2075 16.3103 21.0519Z" fill="black"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M29.2424 21.7949L31.4879 22.4741C31.3371 23.105 31.0994 23.6331 30.773 24.0537C30.4483 24.4774 30.0473 24.7968 29.5656 25.0117C29.0854 25.2267 28.4732 25.3342 27.7304 25.3342C26.8275 25.3342 26.0925 25.2034 25.5191 24.9416C24.9472 24.6784 24.4562 24.2157 24.0413 23.5568C23.6264 22.8978 23.4182 22.0504 23.4182 21.0207C23.4182 19.6467 23.7833 18.5906 24.5121 17.8522C25.2441 17.1153 26.2759 16.7462 27.6107 16.7462C28.655 16.7462 29.477 16.9565 30.0753 17.3802C30.672 17.8039 31.118 18.4535 31.4071 19.3321L29.1492 19.8337C29.0699 19.5829 28.9875 19.3991 28.9005 19.2822C28.756 19.0875 28.5804 18.9364 28.3737 18.832C28.1655 18.7261 27.934 18.6731 27.6776 18.6731C27.0948 18.6731 26.6488 18.9068 26.3396 19.3741C26.1065 19.72 25.9884 20.2652 25.9884 21.0067C25.9884 21.9273 26.1267 22.5567 26.408 22.8978C26.6877 23.239 27.0793 23.4088 27.5859 23.4088C28.0754 23.4088 28.4468 23.2717 28.6969 22.9944C28.9471 22.7202 29.1289 22.3199 29.2424 21.7949Z" fill="black"/>
9
+ <path d="M45.8107 45.4312H17.2116V47.5715H45.8107V45.4312Z" fill="white"/>
10
+ <path d="M45.8107 49.7104H17.2116V51.8508H45.8107V49.7104Z" fill="white"/>
11
+ <path d="M45.8107 53.7232H17.2116V55.8636H45.8107V53.7232Z" fill="white"/>
12
+ <path d="M39.5964 33.3926H23.4259V35.533H39.5964V33.3926Z" fill="white"/>
13
+ <path d="M45.8107 37.6718H17.2116V39.8122H45.8107V37.6718Z" fill="white"/>
14
+ <path d="M45.8107 41.6831H17.2116V43.8235H45.8107V41.6831Z" fill="white"/>
15
+ </g>
16
+ <defs>
17
+ <linearGradient id="paint0_linear_5799_29207" x1="10.5299" y1="62.9821" x2="45.1951" y2="12.8672" gradientUnits="userSpaceOnUse">
18
+ <stop stop-color="#FD7E32"/>
19
+ <stop offset="0.5" stop-color="#FF5400"/>
20
+ <stop offset="1" stop-color="#D83C02"/>
21
+ </linearGradient>
22
+ <radialGradient id="paint1_radial_5799_29207" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.2958 21.0405) rotate(30.8665) scale(18.6505 17.4573)">
23
+ <stop stop-color="white"/>
24
+ <stop offset="1" stop-color="#C1BEB9"/>
25
+ </radialGradient>
26
+ <linearGradient id="paint2_linear_5799_29207" x1="43.2777" y1="12.7053" x2="39.7315" y2="16.2976" gradientUnits="userSpaceOnUse">
27
+ <stop stop-color="#C1BEB9"/>
28
+ <stop offset="1" stop-color="white"/>
29
+ </linearGradient>
30
+ <clipPath id="clip0_5799_29207">
31
+ <rect width="56" height="65" fill="white"/>
32
+ </clipPath>
33
+ </defs>
34
+ </svg>
@@ -0,0 +1,18 @@
1
+
2
+
3
+
4
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
5
+ <path d="M6 7.33301V11.333L7.33333 9.99967" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M5.99984 11.3333L4.6665 10" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M14.6668 6.66634V9.99967C14.6668 13.333 13.3335 14.6663 10.0002 14.6663H6.00016C2.66683 14.6663 1.3335 13.333 1.3335 9.99967V5.99967C1.3335 2.66634 2.66683 1.33301 6.00016 1.33301H9.3335" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <path d="M14.6668 6.66634H12.0002C10.0002 6.66634 9.3335 5.99967 9.3335 3.99967V1.33301L14.6668 6.66634Z" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
9
+ <mask id="mask0_1131:1131-02-10-2024" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="16" height="16">
10
+ <path d="M6 7.33301V11.333L7.33333 9.99967" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
11
+ <path d="M5.99984 11.3333L4.6665 10" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
12
+ <path d="M14.6668 6.66634V9.99967C14.6668 13.333 13.3335 14.6663 10.0002 14.6663H6.00016C2.66683 14.6663 1.3335 13.333 1.3335 9.99967V5.99967C1.3335 2.66634 2.66683 1.33301 6.00016 1.33301H9.3335" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
13
+ <path d="M14.6668 6.66634H12.0002C10.0002 6.66634 9.3335 5.99967 9.3335 3.99967V1.33301L14.6668 6.66634Z" stroke="#444444" stroke-linecap="round" stroke-linejoin="round"/>
14
+ </mask>
15
+ <g mask="url(#mask0_1131:1131-02-10-2024)">
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H24V24H0V0Z" fill="#F1F1F1"></path>
17
+ </g>
18
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.25 21.25V13.75L8.75 16.25" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M11.25 13.75L13.75 16.25" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M27.5 12.5V18.75C27.5 25 25 27.5 18.75 27.5H11.25C5 27.5 2.5 25 2.5 18.75V11.25C2.5 5 5 2.5 11.25 2.5H17.5" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M27.5 12.5H22.5C18.75 12.5 17.5 11.25 17.5 7.5V2.5L27.5 12.5Z" stroke="white" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,35 @@
1
+ <svg width="56" height="63" viewBox="0 0 56 63" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_7519_107366)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.1807 0H38.0751C38.0378 0.227987 38.0176 0.463524 38.0176 0.70208V12.7658C38.0176 15.2102 40.075 17.2093 42.5909 17.2093H56V58.9596C56 61.1821 54.129 63 51.8416 63H11.1807C8.8933 63 7.02234 61.1821 7.02234 58.9596V4.04036C7.02234 1.81786 8.8933 0 11.1807 0Z" fill="url(#paint0_linear_7519_107366)"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.4762 14H34.5238C35.886 14 37 15.0635 37 16.3639V24.6361C37 25.9365 35.886 27 34.5238 27H2.4762C1.11398 26.9985 0 25.935 0 24.6346V16.3624C0 15.0635 1.11398 14 2.4762 14Z" fill="url(#paint1_radial_7519_107366)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M38.0751 0L55.9985 17.2093H42.5894C40.0735 17.2093 38.0161 15.2102 38.0161 12.7658V0.70208C38.0176 0.463524 38.0378 0.227987 38.0751 0Z" fill="url(#paint2_linear_7519_107366)"/>
6
+ <path d="M46.599 44.0386H18V46.179H46.599V44.0386Z" fill="white"/>
7
+ <path d="M46.599 48.3178H18V50.4582H46.599V48.3178Z" fill="white"/>
8
+ <path d="M46.599 52.3306H18V54.471H46.599V52.3306Z" fill="white"/>
9
+ <path d="M40.3848 32H24.2143V34.1404H40.3848V32Z" fill="white"/>
10
+ <path d="M46.599 36.2792H18V38.4196H46.599V36.2792Z" fill="white"/>
11
+ <path d="M46.599 40.2905H18V42.4309H46.599V40.2905Z" fill="white"/>
12
+ </g>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M3 16H6.49216C7.17919 16 7.73651 16.099 8.15985 16.2939C8.58318 16.4918 8.93382 16.7723 9.21177 17.1396C9.48829 17.5085 9.68784 17.9344 9.81185 18.4232C9.93728 18.9106 10 19.4264 10 19.9723C10 20.827 9.90735 21.4898 9.72205 21.9606C9.53818 22.4315 9.28161 22.8259 8.95235 23.1453C8.62309 23.4632 8.27102 23.6761 7.8933 23.7826C7.37874 23.928 6.91122 24 6.49359 24H3.00143V16H3ZM5.34759 17.8099V22.1781H5.92486C6.41662 22.1781 6.76726 22.1211 6.97679 22.0071C7.18347 21.8917 7.34738 21.6922 7.46569 21.4073C7.584 21.1209 7.64244 20.659 7.64244 20.0187C7.64244 19.1715 7.5113 18.5927 7.24761 18.2793C6.98391 17.9659 6.54632 17.8099 5.93627 17.8099H5.34759Z" fill="black"/>
14
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11 20.0065C11 18.7441 11.3502 17.7588 12.0534 17.0564C12.7566 16.3512 13.7332 16 14.9877 16C16.2726 16 17.2623 16.3454 17.9582 17.0361C18.6542 17.7283 19 18.6976 19 19.9427C19 20.8467 18.8495 21.5882 18.5457 22.1658C18.2418 22.7448 17.802 23.1946 17.229 23.5168C16.6531 23.8389 15.9383 24 15.0818 24C14.2122 24 13.4916 23.8607 12.9201 23.5835C12.35 23.3035 11.887 22.8638 11.5325 22.263C11.178 21.6637 11 20.9106 11 20.0065ZM13.3831 20.0109C13.3831 20.7916 13.5292 21.3532 13.8186 21.6942C14.1094 22.0352 14.5044 22.2064 15.0051 22.2064C15.5173 22.2064 15.9166 22.0395 16.1959 21.7058C16.478 21.3706 16.6184 20.7727 16.6184 19.905C16.6184 19.1765 16.4708 18.6454 16.1785 18.3102C15.8833 17.9735 15.4869 17.8052 14.9834 17.8052C14.5015 17.8052 14.1138 17.9764 13.8229 18.3174C13.5278 18.6584 13.3831 19.2244 13.3831 20.0109Z" fill="black"/>
15
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M25.0522 20.7031L27 21.3358C26.8692 21.9235 26.663 22.4154 26.3799 22.8072C26.0982 23.2019 25.7504 23.4994 25.3326 23.6996C24.916 23.8999 24.3849 24 23.7406 24C22.9574 24 22.3199 23.8781 21.8225 23.6343C21.3264 23.3891 20.9004 22.9581 20.5405 22.3443C20.1806 21.7305 20 20.941 20 19.9819C20 18.702 20.3168 17.7181 20.949 17.0303C21.5839 16.3439 22.4789 16 23.6368 16C24.5427 16 25.2557 16.1959 25.7747 16.5906C26.2923 16.9853 26.6792 17.5904 26.9299 18.4089L24.9713 18.8761C24.9026 18.6425 24.8311 18.4712 24.7556 18.3624C24.6303 18.181 24.478 18.0403 24.2987 17.943C24.118 17.8444 23.9172 17.795 23.6948 17.795C23.1893 17.795 22.8024 18.0127 22.5342 18.448C22.332 18.7702 22.2295 19.2781 22.2295 19.9688C22.2295 20.8264 22.3495 21.4127 22.5935 21.7305C22.8361 22.0483 23.1758 22.2064 23.6153 22.2064C24.0399 22.2064 24.362 22.0787 24.579 21.8204C24.7961 21.565 24.9538 21.1921 25.0522 20.7031Z" fill="black"/>
16
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M28.225 16H30.7357L32.04 18.4622L33.3057 16H35.7847L33.4962 19.8763L36 24H33.4396L31.9945 21.4313L30.5397 24H28L30.5383 19.8313L28.225 16Z" fill="black"/>
17
+ <defs>
18
+ <linearGradient id="paint0_linear_7519_107366" x1="10.5299" y1="61.0441" x2="43.7459" y2="11.4996" gradientUnits="userSpaceOnUse">
19
+ <stop stop-color="#AD63AE"/>
20
+ <stop offset="0.5" stop-color="#7D1586"/>
21
+ <stop offset="1" stop-color="#5E017D"/>
22
+ </linearGradient>
23
+ <radialGradient id="paint1_radial_7519_107366" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(18.4986 20.4987) rotate(29.6481) scale(18.6248 17.0189)">
24
+ <stop stop-color="white"/>
25
+ <stop offset="1" stop-color="#C1BEB9"/>
26
+ </radialGradient>
27
+ <linearGradient id="paint2_linear_7519_107366" x1="43.2777" y1="12.3143" x2="39.8436" y2="15.9034" gradientUnits="userSpaceOnUse">
28
+ <stop stop-color="#C1BEB9"/>
29
+ <stop offset="1" stop-color="white"/>
30
+ </linearGradient>
31
+ <clipPath id="clip0_7519_107366">
32
+ <rect width="56" height="63" fill="white"/>
33
+ </clipPath>
34
+ </defs>
35
+ </svg>
@@ -0,0 +1,7 @@
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="M12 12.333V16.333L13.3333 14.9997" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M11.9998 16.3333L10.6665 15" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M20.6668 11.6663V14.9997C20.6668 18.333 19.3335 19.6663 16.0002 19.6663H12.0002C8.66683 19.6663 7.3335 18.333 7.3335 14.9997V10.9997C7.3335 7.66634 8.66683 6.33301 12.0002 6.33301H15.3335" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M20.6668 11.6663H18.0002C16.0002 11.6663 15.3335 10.9997 15.3335 8.99967V6.33301L20.6668 11.6663Z" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
7
+ </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="M12.333 6.3335H10.9997C7.66634 6.3335 6.33301 7.66683 6.33301 11.0002V15.0002C6.33301 18.3335 7.66634 19.6668 10.9997 19.6668H14.9997C18.333 19.6668 19.6663 18.3335 19.6663 15.0002V13.6668" stroke="#A9A8B9" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M15.6933 7.0135L10.4399 12.2668C10.2399 12.4668 10.0399 12.8602 9.99992 13.1468L9.71325 15.1535C9.60659 15.8802 10.1199 16.3868 10.8466 16.2868L12.8533 16.0002C13.1333 15.9602 13.5266 15.7602 13.7333 15.5602L18.9866 10.3068C19.8933 9.40017 20.3199 8.34684 18.9866 7.0135C17.6533 5.68017 16.5999 6.10684 15.6933 7.0135Z" stroke="#A9A8B9" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M14.9404 7.7666C15.3871 9.35993 16.6338 10.6066 18.2338 11.0599" stroke="#A9A8B9" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,47 @@
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_7916_122307)">
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_7916_122307)">
22
+ <path d="M220.857 146.227C219.237 158.415 217.659 170.396 216.039 182.337C214.544 193.619 213.049 204.942 211.554 216.224C210.848 221.659 210.1 227.094 209.394 232.57C209.186 234.217 208.273 235 206.57 235C188.129 235 169.689 235 151.207 235C149.504 235 148.632 234.217 148.424 232.529C146.638 219.189 144.894 205.848 143.108 192.549C141.281 178.92 139.495 165.291 137.626 151.662C137.501 150.674 137.75 150.015 138.415 149.191C140.284 146.845 142.568 146.145 145.641 146.145C170.063 146.268 194.442 146.227 218.863 146.227C219.445 146.227 220.068 146.227 220.857 146.227ZM166.449 190.613C166.449 181.555 166.491 172.538 166.449 163.479C166.449 159.32 163.127 156.109 159.057 156.068C154.986 156.026 151.539 159.238 151.539 163.314C151.498 181.472 151.498 199.672 151.539 217.83C151.539 221 153.242 223.306 156.191 224.5C161.05 226.518 166.408 222.977 166.408 217.665C166.491 208.689 166.449 199.631 166.449 190.613ZM171.433 190.613C171.433 199.548 171.433 208.483 171.433 217.418C171.433 221.783 174.673 225.077 178.826 225.118C183.062 225.159 186.343 221.824 186.343 217.377C186.343 199.507 186.343 181.637 186.343 163.767C186.343 162.82 186.177 161.791 185.845 160.926C184.641 157.591 181.11 155.574 177.705 156.15C174.05 156.768 171.433 159.773 171.433 163.479C171.392 172.538 171.433 181.596 171.433 190.613ZM206.279 190.613C206.279 181.555 206.321 172.538 206.279 163.479C206.279 159.32 202.956 156.109 198.886 156.068C194.816 156.026 191.369 159.238 191.369 163.314C191.327 181.472 191.327 199.672 191.369 217.83C191.369 221 193.072 223.306 196.021 224.5C200.88 226.518 206.238 222.977 206.238 217.665C206.321 208.689 206.279 199.631 206.279 190.613Z" fill="#BDB4FF"/>
23
+ <path d="M177.746 102.87C157.686 122.758 137.792 142.481 117.939 162.162C116.236 160.515 114.367 158.827 112.623 157.015C111.709 156.068 111.834 154.957 112.623 153.927C112.955 153.515 113.329 153.186 113.703 152.815C131.853 134.822 149.961 116.87 168.111 98.8765C170.395 96.6119 171.226 96.6119 173.51 98.8353C174.922 100.235 176.417 101.594 177.746 102.87Z" fill="#6F61CF"/>
24
+ <path d="M152.951 110.199C151.871 111.27 150.833 112.382 149.546 113.658C148.009 112.052 146.472 110.446 144.894 108.882C143.233 107.193 142.111 107.235 140.408 108.923C134.885 114.399 129.319 119.875 123.795 125.393C122.134 127.04 122.134 128.151 123.795 129.84C125.374 131.404 126.952 132.928 128.572 134.492C127.326 135.728 126.204 136.798 124.917 138.075C122.84 135.892 120.597 133.875 118.77 131.487C116.776 128.851 117.15 125.105 119.559 122.675C125.54 116.623 131.604 110.611 137.709 104.682C140.325 102.129 144.52 102.005 147.22 104.394C149.296 106.123 151.041 108.264 152.951 110.199Z" fill="#6F61CF"/>
25
+ <path d="M206.404 114.152C210.432 113.369 214.461 112.546 218.199 111.805C221.646 116.746 224.969 121.563 228.416 126.545C221.937 127.369 215.416 128.151 208.979 128.975C207.359 125.681 205.947 117.734 206.404 114.152Z" fill="#6F61CF"/>
26
+ <path d="M196.311 133.875C192.117 133.875 188.171 133.875 184.184 133.875C184.018 133.875 183.852 133.875 183.727 133.792C180.487 132.186 177.289 130.622 173.925 128.934C176.334 125.722 178.66 122.675 181.027 119.628C181.235 119.381 181.816 119.216 182.19 119.299C184.973 119.916 187.714 120.616 190.455 121.316C190.871 121.44 191.369 121.728 191.535 122.057C193.113 125.928 194.65 129.84 196.311 133.875Z" fill="#6F61CF"/>
27
+ <path d="M254 101.882C253.668 103.612 253.335 105.094 253.045 106.576C242.911 106.247 240.294 106.864 233.691 111.147C233.192 110.529 232.694 109.911 232.195 109.294C231.739 108.676 231.24 108.1 230.659 107.317C237.678 102.171 245.32 100.359 254 101.882Z" fill="#6F61CF"/>
28
+ <path d="M223.598 104.229C221.937 104.229 220.4 104.229 218.863 104.229C218.324 98.0525 224.47 91.6704 231.074 92.1234C231.074 93.6468 231.074 95.1703 231.074 96.8173C226.713 97.3114 224.138 99.7407 223.598 104.229Z" fill="#6F61CF"/>
29
+ <path d="M208.896 92C210.516 92 212.011 92 213.63 92C213.63 93.5646 213.63 95.1293 213.63 96.7763C212.094 96.7763 210.516 96.7763 208.896 96.7763C208.896 95.1705 208.896 93.6058 208.896 92Z" fill="#6F61CF"/>
30
+ <path d="M241.167 121.44C241.167 119.793 241.167 118.27 241.167 116.705C242.786 116.705 244.281 116.705 245.943 116.705C245.943 118.229 245.943 119.793 245.943 121.44C244.406 121.44 242.869 121.44 241.167 121.44Z" fill="#6F61CF"/>
31
+ <path d="M166.449 190.614C166.449 199.673 166.491 208.69 166.449 217.748C166.408 223.101 161.092 226.642 156.232 224.583C153.284 223.348 151.581 221.083 151.581 217.913C151.539 199.755 151.539 181.556 151.581 163.398C151.581 159.321 155.028 156.11 159.098 156.151C163.168 156.192 166.449 159.404 166.491 163.562C166.491 172.538 166.449 181.556 166.449 190.614ZM156.482 190.449C156.482 199.178 156.482 207.907 156.482 216.637C156.482 217.089 156.44 217.584 156.523 218.036C156.772 219.354 157.603 220.178 158.974 220.178C160.344 220.178 161.175 219.354 161.424 218.036C161.507 217.584 161.465 217.131 161.465 216.637C161.465 199.261 161.465 181.926 161.465 164.55C161.465 164.098 161.507 163.603 161.424 163.15C161.175 161.833 160.344 161.009 158.974 161.009C157.603 161.009 156.772 161.833 156.523 163.15C156.44 163.603 156.482 164.056 156.482 164.55C156.482 173.197 156.482 181.844 156.482 190.449Z" fill="#BDB4FF"/>
32
+ <path d="M171.433 190.614C171.433 181.555 171.392 172.538 171.433 163.48C171.433 159.774 174.05 156.768 177.705 156.151C181.11 155.574 184.682 157.592 185.845 160.927C186.177 161.833 186.343 162.821 186.343 163.768C186.385 181.638 186.385 199.508 186.343 217.378C186.343 221.824 183.062 225.16 178.826 225.118C174.631 225.077 171.433 221.783 171.433 217.419C171.433 208.525 171.433 199.549 171.433 190.614ZM181.401 190.779C181.401 182.05 181.401 173.321 181.401 164.591C181.401 164.139 181.443 163.644 181.36 163.192C181.11 161.874 180.28 161.05 178.909 161.05C177.539 161.05 176.708 161.833 176.459 163.192C176.376 163.644 176.417 164.097 176.417 164.591C176.417 181.967 176.417 199.302 176.417 216.678C176.417 217.172 176.376 217.707 176.5 218.201C176.791 219.436 177.622 220.177 178.909 220.177C180.197 220.177 181.027 219.436 181.318 218.201C181.443 217.707 181.401 217.172 181.401 216.678C181.401 208.031 181.401 199.384 181.401 190.779Z" fill="#BDB4FF"/>
33
+ <path d="M206.279 190.614C206.279 199.673 206.321 208.69 206.279 217.748C206.238 223.101 200.922 226.642 196.062 224.583C193.113 223.348 191.411 221.083 191.411 217.913C191.369 199.755 191.369 181.556 191.411 163.398C191.411 159.321 194.858 156.11 198.928 156.151C202.998 156.192 206.279 159.404 206.321 163.562C206.279 172.538 206.279 181.556 206.279 190.614ZM196.311 190.614C196.311 199.302 196.311 207.99 196.311 216.678C196.311 217.131 196.27 217.625 196.353 218.078C196.602 219.395 197.433 220.219 198.803 220.219C200.174 220.219 201.005 219.395 201.254 218.078C201.337 217.625 201.295 217.172 201.295 216.678C201.295 199.302 201.295 181.967 201.295 164.592C201.295 164.098 201.337 163.562 201.212 163.068C200.922 161.833 200.091 161.092 198.803 161.092C197.516 161.092 196.685 161.833 196.394 163.068C196.27 163.562 196.311 164.098 196.311 164.592C196.311 173.238 196.311 181.926 196.311 190.614Z" fill="#BDB4FF"/>
34
+ <path d="M156.482 190.449C156.482 181.802 156.482 173.197 156.482 164.55C156.482 164.097 156.44 163.603 156.523 163.15C156.772 161.832 157.603 161.009 158.974 161.009C160.344 161.009 161.175 161.832 161.424 163.15C161.507 163.603 161.465 164.056 161.465 164.55C161.465 181.926 161.465 199.26 161.465 216.636C161.465 217.089 161.507 217.583 161.424 218.036C161.175 219.353 160.344 220.177 158.974 220.177C157.603 220.177 156.772 219.353 156.523 218.036C156.44 217.583 156.482 217.13 156.482 216.636C156.482 207.907 156.482 199.178 156.482 190.449Z" fill="#6F61CF"/>
35
+ <path d="M181.401 190.778C181.401 199.425 181.401 208.03 181.401 216.677C181.401 217.171 181.443 217.706 181.318 218.2C181.027 219.436 180.197 220.177 178.909 220.177C177.622 220.177 176.791 219.436 176.5 218.2C176.376 217.706 176.417 217.171 176.417 216.677C176.417 199.301 176.417 181.967 176.417 164.591C176.417 164.138 176.376 163.644 176.459 163.191C176.708 161.873 177.539 161.05 178.909 161.05C180.28 161.05 181.11 161.873 181.36 163.191C181.443 163.644 181.401 164.097 181.401 164.591C181.401 173.32 181.401 182.049 181.401 190.778Z" fill="#6F61CF"/>
36
+ <path d="M196.311 190.613C196.311 181.925 196.311 173.238 196.311 164.55C196.311 164.056 196.27 163.52 196.394 163.026C196.685 161.791 197.516 161.05 198.803 161.05C200.091 161.05 200.921 161.791 201.212 163.026C201.337 163.52 201.295 164.056 201.295 164.55C201.295 181.925 201.295 199.26 201.295 216.636C201.295 217.089 201.337 217.583 201.254 218.036C201.004 219.353 200.174 220.177 198.803 220.177C197.433 220.177 196.602 219.353 196.353 218.036C196.27 217.583 196.311 217.13 196.311 216.636C196.311 207.989 196.311 199.301 196.311 190.613Z" fill="#6F61CF"/>
37
+ </g>
38
+ </g>
39
+ <defs>
40
+ <clipPath id="clip0_7916_122307">
41
+ <rect width="366" height="329" fill="white"/>
42
+ </clipPath>
43
+ <clipPath id="clip1_7916_122307">
44
+ <rect width="142" height="143" fill="white" transform="translate(112 92)"/>
45
+ </clipPath>
46
+ </defs>
47
+ </svg>
@@ -0,0 +1,40 @@
1
+ <svg width="60" height="63" viewBox="0 0 60 63" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_7201_31693)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.9794 0H40.7947C40.7548 0.227987 40.7331 0.463524 40.7331 0.70208V12.7658C40.7331 15.2102 42.9375 17.2093 45.6331 17.2093H60V58.9596C60 61.1821 57.9954 63 55.5446 63H11.9794C9.52855 63 7.52394 61.1821 7.52394 58.9596V4.04036C7.52394 1.81786 9.52855 0 11.9794 0Z" fill="url(#paint0_linear_7201_31693)"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.62397 13.8514H36.5841C38.0276 13.8514 39.208 14.9219 39.208 16.2309V24.5577C39.208 25.8668 38.0276 26.9372 36.5841 26.9372H2.62397C1.18045 26.9357 0 25.8653 0 24.5562V16.2294C0 14.9219 1.18045 13.8514 2.62397 13.8514Z" fill="url(#paint1_radial_7201_31693)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M40.7947 0L59.9983 17.2093H45.6314C42.9359 17.2093 40.7315 15.2102 40.7315 12.7658V0.70208C40.7331 0.463524 40.7548 0.227987 40.7947 0Z" fill="url(#paint2_linear_7201_31693)"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M28.1573 35.4862C30.1642 35.4862 31.7912 37.0957 31.7912 39.0812C31.7912 41.0666 30.1642 42.6761 28.1573 42.6761C26.1503 42.6761 24.5234 41.0666 24.5234 39.0812C24.5234 37.0957 26.1503 35.4862 28.1573 35.4862ZM19.638 32H19V32.6296V54.8908V55.5204H19.638H48.5123H49.1503V54.8908V32.6296V32H48.5123H19.638ZM27.6231 44.1316C25.8603 45.2308 21.8235 52.3633 21.6312 52.8978L46.5191 52.9084C46.3573 52.4328 40.6539 42.8513 38.5858 41.3565C36.2568 43.3586 32.8488 49.9506 32.159 50.464C30.6419 47.6904 29.0196 45.1855 27.6231 44.1316ZM47.8744 33.2607H20.2744V54.2612H47.8744V33.2607Z" fill="white"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M7.02767 16.1359H9.55202V20.5099C9.55202 21.4294 9.47113 22.1285 9.30477 22.6086C9.13994 23.0872 8.80875 23.4934 8.30968 23.827C7.81214 24.1592 7.17266 24.3253 6.39582 24.3253C5.57319 24.3253 4.93676 24.2151 4.485 23.9946C4.03172 23.7757 3.68374 23.4541 3.4365 23.0313C3.19078 22.6101 3.04426 22.0862 3 21.4641L5.3992 21.141C5.40378 21.4928 5.43583 21.7555 5.49383 21.9261C5.55335 22.0983 5.65255 22.2357 5.79449 22.3429C5.89064 22.4123 6.028 22.4455 6.20504 22.4455C6.48739 22.4455 6.69343 22.3429 6.82621 22.136C6.95746 21.9292 7.02309 21.5804 7.02309 21.0912V16.1359H7.02767Z" fill="black"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M11.2125 16.1359H15.3974C16.3085 16.1359 16.9908 16.3503 17.4456 16.7791C17.8988 17.2079 18.1263 17.8193 18.1263 18.612C18.1263 19.4258 17.8775 20.063 17.383 20.5205C16.8885 20.9795 16.1315 21.209 15.1166 21.209H13.7369V24.1894H11.2125V16.1359ZM13.7369 19.5768H14.3565C14.8449 19.5768 15.1883 19.4923 15.3852 19.3262C15.5821 19.1601 15.6813 18.9457 15.6813 18.6845C15.6813 18.4308 15.5958 18.2179 15.4233 18.0413C15.2524 17.8646 14.9304 17.7771 14.4572 17.7771H13.7369V19.5768Z" fill="black"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M30.5291 21.2769V19.601H34.4179V23.0268C33.6731 23.5296 33.0153 23.8724 32.4445 24.0535C31.8722 24.2347 31.193 24.3253 30.4085 24.3253C29.4424 24.3253 28.6534 24.1622 28.0444 23.8361C27.4355 23.5115 26.9639 23.0268 26.6281 22.3806C26.2923 21.7374 26.126 20.9961 26.126 20.1627C26.126 19.2839 26.3091 18.5199 26.6754 17.8692C27.0417 17.22 27.5774 16.7277 28.284 16.3895C28.835 16.1283 29.5783 16 30.5108 16C31.4097 16 32.0828 16.08 32.5269 16.2416C32.9741 16.4031 33.3434 16.6523 33.638 16.992C33.931 17.3317 34.1538 17.7605 34.3019 18.2799L31.8798 18.7117C31.7791 18.4067 31.6112 18.1712 31.3716 18.0111C31.1319 17.8481 30.8298 17.7665 30.4574 17.7665C29.9079 17.7665 29.4684 17.9553 29.1402 18.3342C28.8121 18.7132 28.6488 19.3126 28.6488 20.1325C28.6488 21.0021 28.8136 21.6257 29.1448 21.9986C29.4745 22.3716 29.9369 22.5588 30.5291 22.5588C30.8099 22.5588 31.077 22.5195 31.3334 22.438C31.5868 22.358 31.8798 22.2206 32.2094 22.0288V21.2754H30.5291V21.2769Z" fill="black"/>
10
+ <g clip-path="url(#clip1_7201_31693)">
11
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M19 16H24.8905V17.7095H21.2088V18.9826H24.6221V20.6141H21.2088V22.1901H25V24H19V16Z" fill="black"/>
12
+ </g>
13
+ </g>
14
+ <defs>
15
+ <linearGradient id="paint0_linear_7201_31693" x1="11.2819" y1="61.0441" x2="43.5742" y2="9.43703" gradientUnits="userSpaceOnUse">
16
+ <stop stop-color="#FFFF25"/>
17
+ <stop offset="0.0611" stop-color="#FFE816"/>
18
+ <stop offset="0.1314" stop-color="#FED50B"/>
19
+ <stop offset="0.2038" stop-color="#FECA03"/>
20
+ <stop offset="0.2809" stop-color="#FEC601"/>
21
+ <stop offset="0.6685" stop-color="#FB7B1E"/>
22
+ <stop offset="0.8876" stop-color="#F9441B"/>
23
+ <stop offset="1" stop-color="#F71818"/>
24
+ </linearGradient>
25
+ <radialGradient id="paint1_radial_7201_31693" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.6025 20.393) rotate(28.3994) scale(19.499 17.3397)">
26
+ <stop stop-color="white"/>
27
+ <stop offset="1" stop-color="#C1BEB9"/>
28
+ </radialGradient>
29
+ <linearGradient id="paint2_linear_7201_31693" x1="46.3688" y1="12.3143" x2="42.9534" y2="16.139" gradientUnits="userSpaceOnUse">
30
+ <stop stop-color="#C1BEB9"/>
31
+ <stop offset="1" stop-color="white"/>
32
+ </linearGradient>
33
+ <clipPath id="clip0_7201_31693">
34
+ <rect width="60" height="63" fill="white"/>
35
+ </clipPath>
36
+ <clipPath id="clip1_7201_31693">
37
+ <rect width="6" height="8" fill="white" transform="translate(19 16)"/>
38
+ </clipPath>
39
+ </defs>
40
+ </svg>
@@ -0,0 +1,24 @@
1
+ <svg width="55" height="63" viewBox="0 0 55 63" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_5799_29264)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10.9811 0H37.3952C37.3586 0.229497 37.3387 0.463524 37.3387 0.70208V12.7658C37.3387 15.2102 39.3594 17.2093 41.8303 17.2093H55V58.9596C55 61.1821 53.1624 63 50.9159 63H10.9811C8.7345 63 6.89694 61.1821 6.89694 58.9596V4.04036C6.89694 1.81786 8.7345 0 10.9811 0Z" fill="#F00B6F"/>
4
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M2.40531 13.8514H33.5354C34.8586 13.8514 35.9407 14.9219 35.9407 16.2309V24.5577C35.9407 25.8668 34.8586 26.9373 33.5354 26.9373H2.40531C1.08208 26.9357 0 25.8653 0 24.5562V16.2294C0 14.9219 1.08208 13.8514 2.40531 13.8514Z" fill="url(#paint0_radial_5799_29264)"/>
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M37.3952 0L54.9985 17.2093H41.8288C39.3579 17.2093 37.3372 15.2102 37.3372 12.7658V0.70208C37.3387 0.463524 37.3586 0.229497 37.3952 0Z" fill="url(#paint1_linear_5799_29264)"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M9.78758 16.3668H12.3119V20.7408C12.3119 21.6603 12.231 22.3594 12.0647 22.8395C11.8999 23.3181 11.5687 23.7243 11.0696 24.0579C10.5721 24.3901 9.93257 24.5562 9.15573 24.5562C8.33311 24.5562 7.69668 24.446 7.24492 24.2255C6.79164 24.0066 6.44366 23.685 6.19641 23.2622C5.95069 22.841 5.80418 22.3171 5.75992 21.695L8.15912 21.3719C8.1637 21.7237 8.19575 21.9864 8.25374 22.157C8.31327 22.3292 8.41247 22.4666 8.55441 22.5738C8.65056 22.6432 8.78792 22.6764 8.96496 22.6764C9.24731 22.6764 9.45334 22.5738 9.58612 22.3669C9.71738 22.1601 9.783 21.8113 9.783 21.3221V16.3668H9.78758Z" fill="black"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M13.9724 16.3668H18.1573C19.0685 16.3668 19.7507 16.5812 20.2055 17.01C20.6588 17.4388 20.8862 18.0502 20.8862 18.8429C20.8862 19.6567 20.6374 20.2939 20.1429 20.7514C19.6484 21.2104 18.8914 21.4399 17.8765 21.4399H16.4968V24.4203H13.9724V16.3668ZM16.4968 19.8077H17.1164C17.6048 19.8077 17.9482 19.7232 18.1451 19.5571C18.342 19.391 18.4412 19.1766 18.4412 18.9154C18.4412 18.6617 18.3557 18.4488 18.1833 18.2722C18.0123 18.0955 17.6903 18.008 17.2172 18.008H16.4968V19.8077Z" fill="black"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M26.2889 21.5078V19.8319H30.1777V23.2577C29.4329 23.7605 28.7751 24.1033 28.2043 24.2844C27.632 24.4656 26.9529 24.5562 26.1684 24.5562C25.2023 24.5562 24.4132 24.3931 23.8043 24.067C23.1953 23.7424 22.7237 23.2577 22.388 22.6115C22.0522 21.9683 21.8858 21.227 21.8858 20.3936C21.8858 19.5148 22.069 18.7508 22.4353 18.1001C22.8016 17.4509 23.3373 16.9586 24.0439 16.6204C24.5949 16.3592 25.3381 16.2309 26.2706 16.2309C27.1696 16.2309 27.8426 16.3109 28.2868 16.4725C28.7339 16.634 29.1033 16.8832 29.3978 17.2229C29.6909 17.5626 29.9137 17.9914 30.0617 18.5108L27.6396 18.9426C27.5389 18.6376 27.371 18.4021 27.1314 18.242C26.8918 18.079 26.5896 17.9974 26.2172 17.9974C25.6678 17.9974 25.2282 18.1862 24.9001 18.5651C24.572 18.9441 24.4087 19.5435 24.4087 20.3634C24.4087 21.233 24.5735 21.8566 24.9047 22.2295C25.2343 22.6025 25.6968 22.7897 26.2889 22.7897C26.5698 22.7897 26.8369 22.7504 27.0933 22.6689C27.3466 22.5889 27.6396 22.4515 27.9693 22.2597V21.5063H26.2889V21.5078Z" fill="black"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M25.0314 33.9218C27.0383 33.9218 28.6653 35.5313 28.6653 37.5167C28.6653 39.5022 27.0383 41.1117 25.0314 41.1117C23.0244 41.1117 21.3975 39.5022 21.3975 37.5167C21.3975 35.5313 23.0244 33.9218 25.0314 33.9218ZM16.5121 30.4355H15.8741V31.0652V53.3264V53.956H16.5121H45.3864H46.0244V53.3264V31.0652V30.4355H45.3864H16.5121ZM24.4972 42.5672C22.7344 43.6664 18.6976 50.7989 18.5053 51.3334L43.3932 51.3439C43.2314 50.8683 37.528 41.2868 35.46 39.7921C33.131 41.7941 29.7229 48.3862 29.0331 48.8995C27.516 46.1259 25.8937 43.6211 24.4972 42.5672ZM44.7485 31.6963H17.1485V52.6968H44.7485V31.6963Z" fill="white"/>
10
+ </g>
11
+ <defs>
12
+ <radialGradient id="paint0_radial_5799_29264" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.969 20.3931) rotate(30.5337) scale(18.2543 16.9786)">
13
+ <stop stop-color="white"/>
14
+ <stop offset="1" stop-color="#C1BEB9"/>
15
+ </radialGradient>
16
+ <linearGradient id="paint1_linear_5799_29264" x1="42.5048" y1="12.3144" x2="39.0686" y2="15.8416" gradientUnits="userSpaceOnUse">
17
+ <stop stop-color="#C1BEB9"/>
18
+ <stop offset="1" stop-color="white"/>
19
+ </linearGradient>
20
+ <clipPath id="clip0_5799_29264">
21
+ <rect width="55" height="63" fill="white"/>
22
+ </clipPath>
23
+ </defs>
24
+ </svg>
@@ -0,0 +1,19 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="13" height="4" fill="none" viewBox="0 0 13 4">
2
+ <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"/>
3
+ <path d="M11.1665 2.66634C11.5347 2.66634 11.8332 2.36786 11.8332 1.99967C11.8332 1.63148 11.5347 1.33301 11.1665 1.33301C10.7983 1.33301 10.4998 1.63148 10.4998 1.99967C10.4998 2.36786 10.7983 2.66634 11.1665 2.66634Z" fill="#444444"/>
4
+ <path d="M1.83317 2.66634C2.20136 2.66634 2.49984 2.36786 2.49984 1.99967C2.49984 1.63148 2.20136 1.33301 1.83317 1.33301C1.46498 1.33301 1.1665 1.63148 1.1665 1.99967C1.1665 2.36786 1.46498 2.66634 1.83317 2.66634Z" fill="#444444"/>
5
+ <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" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
6
+ <path d="M11.1665 2.66634C11.5347 2.66634 11.8332 2.36786 11.8332 1.99967C11.8332 1.63148 11.5347 1.33301 11.1665 1.33301C10.7983 1.33301 10.4998 1.63148 10.4998 1.99967C10.4998 2.36786 10.7983 2.66634 11.1665 2.66634Z" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
7
+ <path d="M1.83317 2.66634C2.20136 2.66634 2.49984 2.36786 2.49984 1.99967C2.49984 1.63148 2.20136 1.33301 1.83317 1.33301C1.46498 1.33301 1.1665 1.63148 1.1665 1.99967C1.1665 2.36786 1.46498 2.66634 1.83317 2.66634Z" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
8
+ <mask id="mask0_1131:1131-02-10-2024-01" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="13" height="4">
9
+ <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"/>
10
+ <path d="M11.1665 2.66634C11.5347 2.66634 11.8332 2.36786 11.8332 1.99967C11.8332 1.63148 11.5347 1.33301 11.1665 1.33301C10.7983 1.33301 10.4998 1.63148 10.4998 1.99967C10.4998 2.36786 10.7983 2.66634 11.1665 2.66634Z" fill="#444444"/>
11
+ <path d="M1.83317 2.66634C2.20136 2.66634 2.49984 2.36786 2.49984 1.99967C2.49984 1.63148 2.20136 1.33301 1.83317 1.33301C1.46498 1.33301 1.1665 1.63148 1.1665 1.99967C1.1665 2.36786 1.46498 2.66634 1.83317 2.66634Z" fill="#444444"/>
12
+ <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" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
13
+ <path d="M11.1665 2.66634C11.5347 2.66634 11.8332 2.36786 11.8332 1.99967C11.8332 1.63148 11.5347 1.33301 11.1665 1.33301C10.7983 1.33301 10.4998 1.63148 10.4998 1.99967C10.4998 2.36786 10.7983 2.66634 11.1665 2.66634Z" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
14
+ <path d="M1.83317 2.66634C2.20136 2.66634 2.49984 2.36786 2.49984 1.99967C2.49984 1.63148 2.20136 1.33301 1.83317 1.33301C1.46498 1.33301 1.1665 1.63148 1.1665 1.99967C1.1665 2.36786 1.46498 2.66634 1.83317 2.66634Z" stroke="#444444" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
15
+ </mask>
16
+ <g mask="url(#mask0_1131:1131-02-10-2024-01)">
17
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M0 0H24V24H0V0Z" fill="#F1F1F1"></path>
18
+ </g>
19
+ </svg>
@@ -0,0 +1,28 @@
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_31653)">
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.57569 63 6.77154 61.1821 6.77154 58.9596V4.04036C6.77154 1.81786 8.57569 0 10.7814 0Z" fill="url(#paint0_linear_7171_31653)"/>
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_7171_31653)"/>
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_7171_31653)"/>
6
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M5.44091 15.325H8.69856L9.94078 20.2259L11.1845 15.325H14.4287V23.38H12.4073V17.2394L10.8489 23.38H9.01773L7.46233 17.2394V23.38H5.44091V15.325Z" fill="black"/>
7
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M15.8672 25.5965V17.5414H17.9471V18.402C18.2333 18.0382 18.4985 17.7921 18.7382 17.6652C19.0604 17.4931 19.42 17.407 19.8111 17.407C20.5858 17.407 21.1822 17.7045 21.6063 18.3039C22.0289 18.9018 22.2401 19.6431 22.2401 20.5219C22.2401 21.4957 22.0094 22.2371 21.5479 22.7489C21.0863 23.2607 20.5034 23.5159 19.7992 23.5159C19.4575 23.5159 19.1458 23.4585 18.8656 23.3423C18.5824 23.2245 18.3322 23.0524 18.1104 22.8214V25.598H15.8672V25.5965ZM18.0939 20.4796C18.0939 20.9446 18.1913 21.2874 18.3831 21.5123C18.5749 21.7373 18.8192 21.8505 19.1129 21.8505C19.3691 21.8505 19.5849 21.7433 19.7602 21.5274C19.9325 21.3115 20.0209 20.9461 20.0209 20.4313C20.0209 19.9557 19.9295 19.6069 19.7497 19.3834C19.5669 19.16 19.3481 19.0498 19.0859 19.0498C18.8027 19.0498 18.5689 19.1615 18.3786 19.3865C18.1898 19.6114 18.0939 19.9753 18.0939 20.4796Z" fill="black"/>
8
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M26.9093 21.8732H22.868V20.0342L26.9093 15.1906H28.8409V20.1399H29.8463V21.8732H28.8409V23.38H26.9093V21.8732ZM26.9093 20.1399V17.5973L24.7755 20.1399H26.9093Z" fill="black"/>
9
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M31.2159 50.4335L34.3117 50.4456L34.3102 51.9328L31.2069 51.9705L31.2159 50.4335ZM26.4613 47.2235C26.7955 47.1949 32.3907 44.2975 33.4666 43.7524C34.1379 43.4127 35.1059 42.8676 35.7817 42.6094C35.6813 42.4796 35.7712 42.5717 35.6364 42.4615L31.117 40.1484C30.3258 39.7513 27.0142 37.9742 26.4613 37.8715V47.2235ZM24.843 50.4305L24.846 51.9584L21.7846 51.9569L21.7981 50.432L24.843 50.4305ZM29.5991 51.9131C29.0686 52.0596 27.1641 51.9796 26.4943 51.9675L26.5048 50.429L29.6006 50.4456L29.5991 51.9131ZM34.3147 34.5937L31.1964 34.6239L31.2024 33.1185L34.3042 33.1517L34.3147 34.5937ZM29.6036 34.5786L26.4838 34.6223L26.4913 33.12L29.5931 33.1653L29.6036 34.5786ZM24.8475 33.0687L24.849 34.5997L21.7846 34.5967L21.7951 33.0702L24.8475 33.0687ZM35.8851 50.4441H39.0214L39.0244 52.0007L35.8866 52.0188L35.8851 50.4441ZM21.7546 36.2379L39.0244 36.25L39.0214 48.8632L21.7471 48.8315L21.7546 36.2379ZM35.8881 33.0823L39.0244 33.0989L39.0229 34.6571H35.8851L35.8881 33.0823ZM18.6333 52.3223C18.7143 53.0108 19.4125 53.571 20.2052 53.577L40.1243 53.574C42.5922 53.5845 42.1397 52.0309 42.1397 49.8673L42.1247 32.7773C42.0093 32.0465 41.377 31.5332 40.5483 31.5256L31.9726 31.5211C28.1995 31.5136 24.3979 31.4743 20.6278 31.5302C18.2318 31.5664 18.6259 33.0038 18.6184 35.2202L18.6333 52.3223Z" fill="white"/>
10
+ </g>
11
+ <defs>
12
+ <linearGradient id="paint0_linear_7171_31653" x1="10.1538" y1="61.0441" x2="43.8126" y2="12.6323" gradientUnits="userSpaceOnUse">
13
+ <stop stop-color="#09003C"/>
14
+ <stop offset="1" stop-color="#ED0000"/>
15
+ </linearGradient>
16
+ <radialGradient id="paint1_radial_7171_31653" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(17.6423 20.393) rotate(30.9958) scale(18.0087 16.8972)">
17
+ <stop stop-color="white"/>
18
+ <stop offset="1" stop-color="#C1BEB9"/>
19
+ </radialGradient>
20
+ <linearGradient id="paint2_linear_7171_31653" x1="41.732" y1="12.3143" x2="38.2947" y2="15.7785" gradientUnits="userSpaceOnUse">
21
+ <stop stop-color="#C1BEB9"/>
22
+ <stop offset="1" stop-color="white"/>
23
+ </linearGradient>
24
+ <clipPath id="clip0_7171_31653">
25
+ <rect width="54" height="63" fill="white"/>
26
+ </clipPath>
27
+ </defs>
28
+ </svg>
@@ -0,0 +1,37 @@
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_7916_122306)">
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_7916_122306)">
22
+ <path d="M222.463 230.023C192.727 230.023 163.024 230.023 133.288 230.023C131.107 229.03 130.465 227.267 130.465 224.895C130.529 190.924 130.497 156.984 130.465 123.045C130.465 121.314 131.01 119.968 132.229 118.718C138.26 112.789 144.226 106.828 150.193 100.835C151.444 99.5534 152.823 98.9766 154.619 98.9766C176.496 99.0086 198.405 99.0086 220.282 99.0086C224.003 99.0086 225.286 100.291 225.286 104.008C225.286 144.293 225.286 184.61 225.318 224.895C225.318 227.267 224.708 229.03 222.463 230.023ZM177.779 170.926C186.889 170.926 195.967 170.926 205.077 170.926C208.156 170.926 209.953 169.515 209.953 167.08C209.953 164.644 208.156 163.234 205.077 163.234C186.985 163.234 168.862 163.234 150.77 163.234C150.353 163.234 149.904 163.202 149.487 163.266C147.851 163.458 146.696 164.259 146.151 165.83C145.221 168.458 147.145 170.894 150.128 170.926C159.335 170.926 168.541 170.926 177.779 170.926ZM177.907 182.431C168.862 182.431 159.816 182.431 150.738 182.431C147.659 182.431 145.862 183.841 145.894 186.277C145.894 188.712 147.691 190.123 150.77 190.123C168.862 190.123 186.985 190.123 205.077 190.123C205.494 190.123 205.943 190.155 206.36 190.091C207.996 189.898 209.151 189.065 209.696 187.527C210.626 184.899 208.702 182.463 205.719 182.431C196.416 182.431 187.146 182.431 177.907 182.431ZM177.907 201.628C168.862 201.628 159.816 201.628 150.738 201.628C147.659 201.628 145.862 203.038 145.862 205.474C145.862 207.91 147.659 209.32 150.738 209.32C168.83 209.32 186.953 209.32 205.045 209.32C205.462 209.32 205.911 209.352 206.328 209.288C207.964 209.095 209.119 208.262 209.664 206.724C210.594 204.096 208.67 201.66 205.686 201.628C196.416 201.628 187.178 201.628 177.907 201.628ZM174.219 136.025C172.807 134.582 171.524 133.236 170.177 131.89C168.348 130.064 166.007 129.903 164.403 131.506C162.767 133.108 162.895 135.416 164.724 137.275C166.809 139.39 168.926 141.505 171.043 143.62C173.256 145.799 175.277 145.832 177.458 143.652C181.949 139.165 186.44 134.679 190.963 130.192C191.22 129.935 191.444 129.711 191.669 129.455C192.759 128.109 192.823 126.218 191.797 124.84C190.803 123.462 189.038 122.821 187.499 123.462C186.729 123.782 186.023 124.327 185.446 124.904C181.725 128.493 178.068 132.179 174.219 136.025Z" fill="#BDB4FF"/>
23
+ <path d="M177.779 170.926C168.541 170.926 159.335 170.926 150.096 170.926C147.081 170.926 145.156 168.458 146.119 165.83C146.664 164.26 147.851 163.427 149.455 163.266C149.872 163.234 150.321 163.234 150.738 163.234C168.83 163.234 186.953 163.234 205.045 163.234C208.124 163.234 209.921 164.645 209.921 167.08C209.921 169.516 208.124 170.926 205.045 170.926C195.967 170.926 186.857 170.926 177.779 170.926Z" fill="#6F61CF"/>
24
+ <path d="M177.907 182.431C187.178 182.431 196.448 182.431 205.719 182.431C208.734 182.431 210.658 184.898 209.696 187.526C209.151 189.097 207.964 189.93 206.36 190.09C205.943 190.122 205.494 190.122 205.077 190.122C186.985 190.122 168.862 190.122 150.77 190.122C147.691 190.122 145.894 188.712 145.894 186.276C145.894 183.841 147.691 182.431 150.738 182.431C159.784 182.431 168.83 182.431 177.907 182.431Z" fill="#6F61CF"/>
25
+ <path d="M177.907 201.628C187.178 201.628 196.448 201.628 205.719 201.628C208.734 201.628 210.658 204.096 209.696 206.724C209.151 208.294 207.964 209.127 206.36 209.288C205.943 209.32 205.494 209.32 205.077 209.32C186.985 209.32 168.862 209.32 150.77 209.32C147.691 209.32 145.894 207.909 145.894 205.474C145.894 203.038 147.691 201.628 150.77 201.628C159.784 201.628 168.83 201.628 177.907 201.628Z" fill="#6F61CF"/>
26
+ <path d="M174.218 136.024C178.068 132.179 181.725 128.493 185.413 124.872C186.023 124.295 186.697 123.718 187.466 123.429C189.006 122.788 190.802 123.429 191.765 124.807C192.759 126.185 192.727 128.076 191.636 129.422C191.412 129.679 191.187 129.935 190.931 130.16C186.44 134.646 181.949 139.133 177.426 143.62C175.245 145.799 173.192 145.799 171.011 143.588C168.894 141.473 166.777 139.39 164.691 137.242C162.863 135.383 162.767 133.076 164.371 131.474C165.975 129.903 168.316 130.031 170.145 131.858C171.524 133.204 172.807 134.55 174.218 136.024Z" fill="#6F61CF"/>
27
+ </g>
28
+ </g>
29
+ <defs>
30
+ <clipPath id="clip0_7916_122306">
31
+ <rect width="366" height="329" fill="white"/>
32
+ </clipPath>
33
+ <clipPath id="clip1_7916_122306">
34
+ <rect width="94.8527" height="131.047" fill="white" transform="translate(130.465 98.9766)"/>
35
+ </clipPath>
36
+ </defs>
37
+ </svg>
@@ -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_88886)">
3
+ <path d="M31.9999 21.3555V28.0188C31.9999 28.5585 31.5575 29 30.9983 29H8.43809C7.88723 29 7.43652 28.5585 7.43652 28.0188V21.3555H31.9999Z" fill="#113E8F"/>
4
+ <path d="M31.9916 0.981111V7.12123H7.43652V0.981111C7.43652 0.4415 7.87888 0 8.43809 0H30.99C31.5492 0 31.9916 0.4415 31.9916 0.981111Z" fill="#3BA7ED"/>
5
+ <path d="M31.992 7.12109H7.44531V14.2423H31.992V7.12109Z" fill="#2D7AD6"/>
6
+ <path d="M31.992 14.2427H7.44531V21.3557H31.992V14.2427Z" fill="#195ABE"/>
7
+ <path opacity="0.05" d="M17.4693 8.87111V22.1897C17.4693 22.9501 16.835 23.5714 16.0588 23.5714H7.44531V7.49756H16.0671C16.1756 7.49756 16.2758 7.50573 16.3759 7.53026C16.8934 7.64473 17.3107 8.05352 17.4276 8.56043C17.4526 8.66672 17.4693 8.76483 17.4693 8.87111Z" fill="black"/>
8
+ <path d="M16.409 7.84072V21.1593C16.409 21.2247 16.409 21.2901 16.3923 21.3555C16.2921 22.0259 15.7079 22.5329 15.0068 22.5329H1.41054C1.34377 22.5329 1.26865 22.5247 1.20188 22.5165C1.16849 22.5165 1.13511 22.5083 1.10172 22.5001C0.467397 22.3612 0 21.8134 0 21.1511V7.84072C0 7.08035 0.625978 6.45898 1.41054 6.45898H15.0068C15.5076 6.45898 15.9583 6.72061 16.2003 7.11306C16.2838 7.2357 16.3422 7.37469 16.3756 7.52185C16.3923 7.62814 16.409 7.73443 16.409 7.84072Z" fill="#2362C5"/>
9
+ <path d="M12.2359 9.9585L11.2093 14.8559C11.1092 15.3546 11.0174 15.8615 10.9172 16.3684C10.8755 16.581 10.8337 16.7936 10.8004 17.0061C10.6251 16.2785 10.4498 15.559 10.2745 14.8395L8.93077 9.9585H7.56197L6.20985 14.8477C6.04293 15.5345 5.86765 16.2621 5.70072 16.9898C5.65065 16.72 5.59222 16.4584 5.54214 16.1885L4.2568 9.9585H2.6543L4.74089 19.0419H6.44355L7.87913 13.654C7.93755 13.4251 7.98763 13.2043 8.04606 12.9836C8.10448 12.7547 8.15456 12.5257 8.21298 12.2968C8.31314 12.7383 8.4133 13.1716 8.5218 13.6213L9.99911 19.0419H11.7268L13.7633 9.9585H12.2359Z" fill="white"/>
10
+ </g>
11
+ <defs>
12
+ <clipPath id="clip0_8687_88886">
13
+ <rect width="32" height="29" fill="white"/>
14
+ </clipPath>
15
+ </defs>
16
+ </svg>