@mxmweb/zui 1.0.3 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (132) hide show
  1. package/.editorconfig +38 -0
  2. package/.prettierignore +16 -0
  3. package/.prettierrc +17 -0
  4. package/.releaserc.json +36 -0
  5. package/CHANGELOG.md +58 -0
  6. package/CONTRIBUTING.md +111 -0
  7. package/NPMREADME.md +0 -0
  8. package/README.md +4 -1
  9. package/bash.exe.stackdump +40 -0
  10. package/components.json +21 -0
  11. package/dist/README.md +0 -0
  12. package/dist/assets/style.css +1 -0
  13. package/{containers → dist/containers}/DashboardContainer.d.ts +8 -0
  14. package/dist/containers/DockContainer.d.ts +24 -0
  15. package/{elements → dist/elements}/Button.d.ts +3 -4
  16. package/dist/elements/CustomDock.d.ts +25 -0
  17. package/dist/elements/DropDownButton.d.ts +24 -0
  18. package/{elements → dist/elements}/DropdownMenu.d.ts +2 -4
  19. package/dist/elements/GoggleNavbar.d.ts +31 -0
  20. package/{elements → dist/elements}/Uploader/UploadItem.d.ts +17 -0
  21. package/{elements → dist/elements}/Uploader/styles.d.ts +10 -1
  22. package/dist/elements/Uploader/types.d.ts +87 -0
  23. package/dist/examples/DockContainerExample.d.ts +3 -0
  24. package/dist/icons/Icon.d.ts +7 -0
  25. package/dist/icons/Icon.tsx +82 -0
  26. package/dist/icons/index.d.ts +13 -0
  27. package/dist/icons/index.tsx +92 -0
  28. package/dist/icons/lazyIndex.d.ts +7 -0
  29. package/dist/icons/lazyIndex.tsx +49 -0
  30. package/dist/icons/rag/csv.svg +3 -0
  31. package/dist/icons/rag/document.svg +3 -0
  32. package/dist/icons/rag/excel.svg +3 -0
  33. package/dist/icons/rag/file.svg +3 -0
  34. package/dist/icons/rag/folder.svg +5 -0
  35. package/dist/icons/rag/json.svg +3 -0
  36. package/dist/icons/rag/knowledgebase.svg +3 -0
  37. package/dist/icons/rag/netretrive.svg +3 -0
  38. package/dist/icons/rag/odf.svg +7 -0
  39. package/dist/icons/rag/pdf.svg +3 -0
  40. package/dist/icons/rag/pic.svg +3 -0
  41. package/dist/icons/rag/ppt.svg +3 -0
  42. package/dist/icons/rag/think.svg +6 -0
  43. package/dist/icons/rag/txt.svg +3 -0
  44. package/dist/icons/rag/url.svg +3 -0
  45. package/dist/icons/rag/word.svg +3 -0
  46. package/dist/icons/rag/wps.svg +3 -0
  47. package/dist/icons/rag/zip.svg +7 -0
  48. package/dist/index.js +2299 -0
  49. package/dist/lib_enter.d.ts +13 -0
  50. package/dist/package.json +26 -0
  51. package/{theme → dist/theme}/styledTheme.d.ts +40 -54
  52. package/eslint.config.js +92 -0
  53. package/index.html +13 -0
  54. package/package.json +42 -14
  55. package/postcss.config.cjs +19 -0
  56. package/public/mock.csv +16 -0
  57. package/public/mock_/345/211/257/346/234/254.csv +16 -0
  58. package/public/vite.svg +1 -0
  59. package/src/Preview.tsx +15 -0
  60. package/src/assets/img/excel.png +0 -0
  61. package/src/assets/img/img.png +0 -0
  62. package/src/assets/img/pdf.png +0 -0
  63. package/src/assets/img/ppt.png +0 -0
  64. package/src/assets/img/txt.png +0 -0
  65. package/src/assets/img/word.png +0 -0
  66. package/src/containers/DashboardContainer.tsx +507 -0
  67. package/src/containers/DockContainer.tsx +186 -0
  68. package/src/containers/style.css +37 -0
  69. package/src/elements/Button.tsx +118 -0
  70. package/src/elements/CustomDock.tsx +287 -0
  71. package/src/elements/DropDownButton.tsx +249 -0
  72. package/src/elements/DropdownMenu.tsx +184 -0
  73. package/src/elements/GoggleNavbar.tsx +184 -0
  74. package/src/elements/Uploader/README.md +249 -0
  75. package/src/elements/Uploader/UploadItem.tsx +298 -0
  76. package/src/elements/Uploader/example.tsx +95 -0
  77. package/src/elements/Uploader/index.tsx +702 -0
  78. package/src/elements/Uploader/styles.tsx +291 -0
  79. package/src/elements/Uploader/types.ts +119 -0
  80. package/src/elements/Uploader/utils.ts +200 -0
  81. package/src/elements/Uploader.tsx +3 -0
  82. package/src/examples/DockContainerExample.tsx +237 -0
  83. package/src/icons/Icon.tsx +82 -0
  84. package/src/icons/index.tsx +92 -0
  85. package/src/icons/lazyIndex.tsx +49 -0
  86. package/src/icons/rag/csv.svg +3 -0
  87. package/src/icons/rag/document.svg +3 -0
  88. package/src/icons/rag/excel.svg +3 -0
  89. package/src/icons/rag/file.svg +3 -0
  90. package/src/icons/rag/folder.svg +5 -0
  91. package/src/icons/rag/json.svg +3 -0
  92. package/src/icons/rag/knowledgebase.svg +3 -0
  93. package/src/icons/rag/netretrive.svg +3 -0
  94. package/src/icons/rag/odf.svg +7 -0
  95. package/src/icons/rag/pdf.svg +3 -0
  96. package/src/icons/rag/pic.svg +3 -0
  97. package/src/icons/rag/ppt.svg +3 -0
  98. package/src/icons/rag/think.svg +6 -0
  99. package/src/icons/rag/txt.svg +3 -0
  100. package/src/icons/rag/url.svg +3 -0
  101. package/src/icons/rag/word.svg +3 -0
  102. package/src/icons/rag/wps.svg +3 -0
  103. package/src/icons/rag/zip.svg +7 -0
  104. package/src/lib_enter.ts +27 -0
  105. package/src/main.tsx +11 -0
  106. package/src/style.css +9 -0
  107. package/src/theme/styledTheme.tsx +253 -0
  108. package/src/type.d.ts +0 -0
  109. package/src/types/images.d.ts +12 -0
  110. package/src/types/svg-modules.d.ts +24 -0
  111. package/src/vite-env.d.ts +11 -0
  112. package/tailwind.config.js +170 -0
  113. package/tsconfig.app.json +29 -0
  114. package/tsconfig.app.tsbuildinfo +11 -0
  115. package/tsconfig.json +13 -0
  116. package/tsconfig.node.json +22 -0
  117. package/tsconfig.node.tsbuildinfo +1 -0
  118. package/vite.config.ts +180 -0
  119. package/assets/zui.css +0 -1
  120. package/elements/Uploader/types.d.ts +0 -50
  121. package/index-CgFHm4CL-O5tUkbrp.js +0 -48009
  122. package/index.js +0 -49394
  123. package/lib_enter.d.ts +0 -6
  124. /package/{Preview.d.ts → dist/Preview.d.ts} +0 -0
  125. /package/{elements → dist/elements}/Uploader/example.d.ts +0 -0
  126. /package/{elements → dist/elements}/Uploader/index.d.ts +0 -0
  127. /package/{elements → dist/elements}/Uploader/utils.d.ts +0 -0
  128. /package/{elements → dist/elements}/Uploader.d.ts +0 -0
  129. /package/{main.d.ts → dist/main.d.ts} +0 -0
  130. /package/{mock.csv → dist/mock.csv} +0 -0
  131. /package/{mock_ → dist/mock_}/345/211/257/346/234/254.csv" +0 -0
  132. /package/{vite.svg → dist/vite.svg} +0 -0
@@ -0,0 +1,87 @@
1
+ import { Styles } from '../../theme/styledTheme';
2
+ export type UploadStatus = 'pending' | 'uploading' | 'success' | 'error' | 'cancelled';
3
+ export interface UploadItem {
4
+ id: string;
5
+ file: File;
6
+ name: string;
7
+ size: number;
8
+ type: string;
9
+ status: UploadStatus;
10
+ progress: number;
11
+ error?: string;
12
+ uploadApiRes?: any;
13
+ headers?: Record<string, any>;
14
+ metadata?: Record<string, any>;
15
+ formData?: Record<string, any>;
16
+ isExpanded?: boolean;
17
+ }
18
+ export type UploaderEventName = 'uploader:start' | 'uploader:progress' | 'uploader:success' | 'uploader:error' | 'uploader:complete' | 'uploader:formDataChange' | 'uploader:toggleExpand' | 'uploader:remove' | 'uploader:dataChange' | 'uploader:clear' | 'uploader:errorSet' | 'uploader:errorCleared';
19
+ export interface UploaderMethods {
20
+ getUploadItems: () => UploadItem[];
21
+ getUploadItemsData: (options?: {
22
+ includeStatus?: UploadStatus[];
23
+ excludeStatus?: UploadStatus[];
24
+ }) => Array<{
25
+ id: string;
26
+ name: string;
27
+ status: UploadStatus;
28
+ error?: string;
29
+ uploadApiRes: any;
30
+ formData: Record<string, any>;
31
+ file: File;
32
+ size: number;
33
+ type: string;
34
+ }>;
35
+ validateFormData: () => Promise<boolean>;
36
+ clearUploadItems: () => void;
37
+ setItemError: (itemId: string, error: string) => void;
38
+ clearItemError: (itemId: string) => void;
39
+ }
40
+ export interface UploaderButton {
41
+ label: string;
42
+ mode?: 'primary' | 'default' | 'error' | 'text';
43
+ icon?: React.ReactNode;
44
+ disabled?: boolean;
45
+ onClick: () => void;
46
+ }
47
+ export interface UploaderProps {
48
+ multiple?: boolean;
49
+ accept?: string;
50
+ maxSize?: number;
51
+ maxFiles?: number;
52
+ autoUpload?: boolean;
53
+ url?: string;
54
+ headers?: Record<string, string>;
55
+ queryParams?: Record<string, string>;
56
+ itemForm?: any[];
57
+ styles?: Styles;
58
+ buttons?: UploaderButton[];
59
+ placeholder?: React.ReactNode;
60
+ listName?: string;
61
+ errorMessages?: {
62
+ noUrl?: string;
63
+ uploadFailed?: string;
64
+ fileTooLarge?: string;
65
+ invalidFileType?: string;
66
+ };
67
+ eventsEmit?: (eventName: UploaderEventName, data: any, innerFn?: () => void) => void;
68
+ onRef?: (methods: UploaderMethods) => void;
69
+ icons?: {
70
+ dragUpload?: React.ReactNode;
71
+ itemStatus?: {
72
+ pending?: React.ReactNode;
73
+ uploading?: React.ReactNode;
74
+ success?: React.ReactNode;
75
+ error?: React.ReactNode;
76
+ };
77
+ fileType?: {
78
+ default?: React.ReactNode;
79
+ image?: React.ReactNode;
80
+ document?: React.ReactNode;
81
+ spreadsheet?: React.ReactNode;
82
+ archive?: React.ReactNode;
83
+ video?: React.ReactNode;
84
+ audio?: React.ReactNode;
85
+ };
86
+ };
87
+ }
@@ -0,0 +1,3 @@
1
+ import { default as React } from 'react';
2
+ declare const FullScreenContainerExample: React.FC;
3
+ export default FullScreenContainerExample;
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ type IconProps = React.SVGProps<SVGSVGElement> & {
3
+ type: string;
4
+ size?: number | string;
5
+ };
6
+ declare const Icon: React.FC<IconProps>;
7
+ export default Icon;
@@ -0,0 +1,82 @@
1
+ import React from 'react';
2
+ import Icons from './lazyIndex';
3
+ // 提供不依赖 SVGR 的兜底:以 url 形式导入 svg 并用 <img /> 渲染
4
+ // 注意:在构建环境下,Vite 会将以下 glob 展开为静态资源 url
5
+ // 这样消费方无需配置 svgr 也能显示图标
6
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
7
+ // @ts-ignore
8
+ const svgUrlModules: Record<string, string> = import.meta.glob('./**/*.svg', { eager: true, query: '?url', import: 'default' });
9
+
10
+ type NestedRecord<T> = { [key: string]: T | NestedRecord<T> };
11
+
12
+ function setNested<T>(obj: NestedRecord<T>, pathParts: string[], value: T) {
13
+ let current: NestedRecord<T> = obj;
14
+ for (let i = 0; i < pathParts.length - 1; i += 1) {
15
+ const part = pathParts[i];
16
+ if (!current[part] || typeof current[part] !== 'object') {
17
+ current[part] = {} as NestedRecord<T>;
18
+ }
19
+ current = current[part] as NestedRecord<T>;
20
+ }
21
+ current[pathParts[pathParts.length - 1]] = value;
22
+ }
23
+
24
+ function pathToKeys(filePath: string) {
25
+ const noPrefix = filePath.replace(/^\.\//, '');
26
+ const withoutQuery = noPrefix.split('?')[0];
27
+ const noExt = withoutQuery.replace(/\.svg$/i, '');
28
+ return noExt.split('/');
29
+ }
30
+
31
+ const IconUrlMap: NestedRecord<string> = {};
32
+ Object.entries(svgUrlModules).forEach(([file, url]) => {
33
+ const keys = pathToKeys(file);
34
+ setNested(IconUrlMap, keys, url as unknown as string);
35
+ });
36
+
37
+ type IconProps = React.SVGProps<SVGSVGElement> & {
38
+ type: string; // e.g., "rag/pdf"
39
+ size?: number | string; // apply to width/height simultaneously
40
+ };
41
+
42
+ function resolveIcon(path: string): React.ComponentType<any> | undefined {
43
+ const parts = path.split('/').filter(Boolean);
44
+ let cur: any = Icons as any;
45
+ for (const p of parts) {
46
+ if (!cur) return undefined;
47
+ cur = cur[p];
48
+ }
49
+ return typeof cur === 'function' ? cur : undefined;
50
+ }
51
+
52
+ function resolveIconUrl(path: string): string | undefined {
53
+ const parts = path.split('/').filter(Boolean);
54
+ let cur: any = IconUrlMap as any;
55
+ for (const p of parts) {
56
+ if (!cur) return undefined;
57
+ cur = cur[p];
58
+ }
59
+ return typeof cur === 'string' ? cur : undefined;
60
+ }
61
+
62
+ const Icon: React.FC<IconProps> = ({ type, size, ...rest }) => {
63
+ const Comp = resolveIcon(type);
64
+ const wh = typeof size !== 'undefined' ? { width: size as any, height: size as any } : {};
65
+
66
+ if (Comp) {
67
+ return <Comp {...wh} {...rest} />;
68
+ }
69
+
70
+ const url = resolveIconUrl(type);
71
+ if (url) {
72
+ // 使用 <img /> 兜底渲染,确保消费侧不依赖 svgr
73
+ // @ts-expect-error img props vs svg props 取交集
74
+ return <img src={url} alt="" {...wh} {...rest} />;
75
+ }
76
+
77
+ return null;
78
+ };
79
+
80
+ export default Icon;
81
+
82
+
@@ -0,0 +1,13 @@
1
+ import { default as React } from 'react';
2
+ type IconComponent = React.MemoExoticComponent<React.ComponentType<React.SVGProps<SVGSVGElement>>> & {
3
+ displayName?: string;
4
+ };
5
+ type ImageComponent = React.MemoExoticComponent<React.ComponentType<React.ImgHTMLAttributes<HTMLImageElement>>> & {
6
+ displayName?: string;
7
+ };
8
+ type NestedRecord<T> = {
9
+ [key: string]: T | NestedRecord<T>;
10
+ };
11
+ declare const Icons: NestedRecord<IconComponent | ImageComponent>;
12
+ export { Icons };
13
+ export default Icons;
@@ -0,0 +1,92 @@
1
+ import React, { memo } from 'react';
2
+
3
+ // 通过 Vite 的 import.meta.glob 动态导入 SVG 为 React 组件(依赖 vite-plugin-svgr)
4
+ // 优先使用查询参数保证直接得到 React 组件
5
+ const svgModulesReact = import.meta.glob('./**/*.svg?react', { eager: true });
6
+ const svgModulesComponent = import.meta.glob('./**/*.svg?component', { eager: true });
7
+ // 兜底:无查询时部分配置会返回 data URL,将在处理时被跳过
8
+ const svgModulesRaw = import.meta.glob('./**/*.svg', { eager: true });
9
+
10
+ // 可选:如果未来需要支持 png 等位图作为 <img /> 包装组件,可在此扩展
11
+ // Vite 6 中 as 已弃用,使用 query: '?url' + import: 'default'
12
+ const pngModules = import.meta.glob('./**/*.{png,PNG}', { eager: true, query: '?url', import: 'default' });
13
+
14
+ type IconComponent = React.MemoExoticComponent<React.ComponentType<React.SVGProps<SVGSVGElement>>> & {
15
+ displayName?: string;
16
+ };
17
+
18
+ type ImageComponent = React.MemoExoticComponent<React.ComponentType<React.ImgHTMLAttributes<HTMLImageElement>>> & {
19
+ displayName?: string;
20
+ };
21
+
22
+ type NestedRecord<T> = {
23
+ [key: string]: T | NestedRecord<T>;
24
+ };
25
+
26
+ function setNested<T>(obj: NestedRecord<T>, pathParts: string[], value: T) {
27
+ let current: NestedRecord<T> = obj;
28
+ for (let i = 0; i < pathParts.length - 1; i += 1) {
29
+ const part = pathParts[i];
30
+ if (!current[part] || typeof current[part] !== 'object') {
31
+ current[part] = {} as NestedRecord<T>;
32
+ }
33
+ current = current[part] as NestedRecord<T>;
34
+ }
35
+ current[pathParts[pathParts.length - 1]] = value;
36
+ }
37
+
38
+ // 将文件路径转成对象路径,如 ./rag/csv.svg -> ["rag","csv"]
39
+ function pathToKeys(filePath: string, ext: string) {
40
+ const noPrefix = filePath.replace(/^\.\//, '');
41
+ // 去掉查询参数(例如 ?react 或 ?component)
42
+ const withoutQuery = noPrefix.split('?')[0];
43
+ // 去掉扩展名 .svg 或 .png 等
44
+ const noExt = withoutQuery.replace(new RegExp(`\\.${ext}$`, 'i'), '');
45
+ return noExt.split('/');
46
+ }
47
+
48
+ const Icons: NestedRecord<IconComponent | ImageComponent> = {};
49
+
50
+ // 处理 SVG -> React 组件
51
+ function handleSvgModules(mods: Record<string, unknown>) {
52
+ Object.entries(mods).forEach(([file, mod]) => {
53
+ // 兼容两种导出:
54
+ // 1) vite-plugin-svgr 的命名导出 ReactComponent
55
+ // 2) 配置 exportAsDefault: true 时的默认导出为组件
56
+ let Component: React.ComponentType<React.SVGProps<SVGSVGElement>> | undefined;
57
+ const possible = mod as any;
58
+ if (possible && typeof possible.ReactComponent === 'function') {
59
+ Component = possible.ReactComponent as React.ComponentType<React.SVGProps<SVGSVGElement>>;
60
+ } else if (possible && typeof possible.default === 'function') {
61
+ Component = possible.default as React.ComponentType<React.SVGProps<SVGSVGElement>>;
62
+ } else {
63
+ // 默认导出为字符串(data url)时跳过,避免运行时错误
64
+ return;
65
+ }
66
+
67
+ const Memo = memo(Component) as IconComponent;
68
+ const keys = pathToKeys(file, 'svg');
69
+ Memo.displayName = `Icon(${keys.join('/')})`;
70
+ setNested(Icons, keys, Memo);
71
+ });
72
+ }
73
+
74
+ handleSvgModules(svgModulesReact);
75
+ handleSvgModules(svgModulesComponent);
76
+ handleSvgModules(svgModulesRaw);
77
+
78
+ // 处理 PNG -> 以 <img /> 封装的组件(仅为兼容,优先推荐 SVG)
79
+ Object.entries(pngModules).forEach(([file, url]) => {
80
+ const ImgComp: React.FC<React.ImgHTMLAttributes<HTMLImageElement>> = (props) => (
81
+ <img src={url as unknown as string} alt="" {...props} />
82
+ );
83
+ const Memo = memo(ImgComp) as ImageComponent;
84
+ const keys = pathToKeys(file, 'png');
85
+ Memo.displayName = `IconImg(${keys.join('/')})`;
86
+ setNested(Icons, keys, Memo);
87
+ });
88
+
89
+ export { Icons };
90
+ export default Icons;
91
+
92
+
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ type NestedRecord<T> = {
3
+ [key: string]: T | NestedRecord<T>;
4
+ };
5
+ declare const Icons: NestedRecord<React.MemoExoticComponent<React.ComponentType<any>>>;
6
+ export { Icons };
7
+ export default Icons;
@@ -0,0 +1,49 @@
1
+ import React, { memo, Suspense } from 'react';
2
+
3
+ // 按需动态导入,避免将所有图标打进主包
4
+ const svgLoaders = import.meta.glob('./**/*.svg?react');
5
+
6
+ type NestedRecord<T> = { [key: string]: T | NestedRecord<T> };
7
+
8
+ function setNested<T>(obj: NestedRecord<T>, pathParts: string[], value: T) {
9
+ let current: NestedRecord<T> = obj;
10
+ for (let i = 0; i < pathParts.length - 1; i += 1) {
11
+ const part = pathParts[i];
12
+ if (!current[part] || typeof current[part] !== 'object') {
13
+ current[part] = {} as NestedRecord<T>;
14
+ }
15
+ current = current[part] as NestedRecord<T>;
16
+ }
17
+ current[pathParts[pathParts.length - 1]] = value;
18
+ }
19
+
20
+ function pathToKeys(filePath: string) {
21
+ const noPrefix = filePath.replace(/^\.\//, '');
22
+ const withoutQuery = noPrefix.split('?')[0];
23
+ const noExt = withoutQuery.replace(/\.svg$/i, '');
24
+ return noExt.split('/');
25
+ }
26
+
27
+ function createLazySvg(loader: () => Promise<any>, displayName: string) {
28
+ const Lazy = React.lazy(() => loader().then((mod) => ({ default: (mod.default || mod.ReactComponent) })));
29
+ const Wrapped: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
30
+ <Suspense fallback={null}>
31
+ <Lazy {...props} />
32
+ </Suspense>
33
+ );
34
+ Wrapped.displayName = displayName;
35
+ return memo(Wrapped);
36
+ }
37
+
38
+ const Icons: NestedRecord<React.MemoExoticComponent<React.ComponentType<any>>> = {};
39
+
40
+ Object.entries(svgLoaders).forEach(([file, loader]) => {
41
+ const keys = pathToKeys(file);
42
+ const Comp = createLazySvg(loader as () => Promise<any>, `Icon(${keys.join('/')})`);
43
+ setNested(Icons, keys, Comp);
44
+ });
45
+
46
+ export { Icons };
47
+ export default Icons;
48
+
49
+
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.957 1.33301C11.124 1.33307 11.2853 1.39583 11.4082 1.50879L12.3174 2.3457L11.6406 3.08105L10.8271 2.33301H3.66699V13.666H12.334V3.71387L11.6436 3.08398L11.6406 3.08203L12.3174 2.3457L13.1172 3.07617C13.2549 3.20229 13.3338 3.38063 13.334 3.56738V14L13.3203 14.1338C13.2583 14.4376 12.9891 14.6659 12.667 14.666H3.33398L3.19922 14.6523C2.93884 14.599 2.73387 14.3942 2.68066 14.1338L2.66699 14V2C2.66711 1.67798 2.89556 1.40887 3.19922 1.34668L3.33398 1.33301H10.957ZM8.69727 5.36035C9.24139 5.36035 9.7044 5.43727 10.0781 5.59961L10.1787 5.64355V6.78418L9.93066 6.64746C9.56044 6.44228 9.15313 6.33892 8.70508 6.33887C8.12836 6.33887 7.66998 6.52918 7.31543 6.90527L7.31445 6.90625C6.96154 7.27886 6.77643 7.78905 6.77637 8.45605C6.77641 9.08819 6.94869 9.57219 7.27637 9.92578L7.4043 10.0488C7.71343 10.3185 8.1013 10.456 8.5791 10.4561C9.10219 10.4561 9.54903 10.3382 9.9248 10.1084L10.1787 9.95312V11.0381L10.0889 11.085C9.65012 11.3158 9.10967 11.4268 8.47559 11.4268C7.6423 11.4268 6.9605 11.1612 6.44922 10.6191V10.6182C5.93981 10.0754 5.69145 9.36307 5.69141 8.49902C5.69147 7.57075 5.97064 6.80719 6.54102 6.22656C7.10964 5.64782 7.83309 5.36042 8.69727 5.36035ZM6.3291 6.75488C6.32678 6.75844 6.32457 6.76206 6.32227 6.76562C6.36901 6.69342 6.41884 6.62326 6.47266 6.55566L6.3291 6.75488ZM8.10645 5.57812C8.01275 5.59511 7.92124 5.61615 7.83203 5.6416C8.0108 5.5906 8.19869 5.55704 8.39551 5.54004L8.10645 5.57812Z" fill="#339C43"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.29 1.33301C11.457 1.33301 11.6182 1.39584 11.7412 1.50879L12.6504 2.3457L11.9736 3.08105L11.1602 2.33301H4V13.666H12.667V3.71387L11.9766 3.08398L11.9736 3.08203L12.6504 2.3457L13.4502 3.07617C13.5879 3.20229 13.6668 3.38063 13.667 3.56738V14L13.6533 14.1338C13.5913 14.4377 13.3223 14.666 13 14.666H3.66699L3.53223 14.6523C3.27187 14.599 3.06687 14.3942 3.01367 14.1338L3 14V2C3.00012 1.67798 3.22857 1.40887 3.53223 1.34668L3.66699 1.33301H11.29ZM10.5 9C10.7761 9 11 9.22386 11 9.5C11 9.77614 10.7761 10 10.5 10H6.5C6.22386 10 6 9.77614 6 9.5C6 9.22386 6.22386 9 6.5 9H10.5ZM10.5 7C10.7761 7 11 7.22386 11 7.5C11 7.77614 10.7761 8 10.5 8H6.5C6.22386 8 6 7.77614 6 7.5C6 7.22386 6.22386 7 6.5 7H10.5Z" fill="#426BFF"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.957 1.33301C11.124 1.33307 11.2853 1.39583 11.4082 1.50879L12.3174 2.3457L11.6406 3.08105L10.8271 2.33301H3.66699V13.666H12.334V3.71387L11.6436 3.08398L11.6406 3.08203L12.3174 2.3457L13.1172 3.07617C13.2549 3.20229 13.3338 3.38063 13.334 3.56738V14L13.3203 14.1338C13.2583 14.4376 12.9891 14.6659 12.667 14.666H3.33398L3.19922 14.6523C2.93884 14.599 2.73387 14.3942 2.68066 14.1338L2.66699 14V2C2.66711 1.67798 2.89556 1.40887 3.19922 1.34668L3.33398 1.33301H10.957ZM6.71582 5.33301C6.78793 5.33301 6.85481 5.37254 6.89258 5.43652L7.9541 7.25586L9.00488 5.43848C9.04265 5.3745 9.10953 5.33496 9.18164 5.33496H9.79395C9.83089 5.33515 9.86769 5.34564 9.89941 5.36523C9.93101 5.3848 9.95694 5.41285 9.97461 5.44629C9.99224 5.47972 10.0011 5.5176 10 5.55566C9.99877 5.59389 9.9876 5.63179 9.96777 5.66406L8.50293 8.01855L9.94531 10.3359C10.0071 10.4354 9.97971 10.5668 9.88379 10.6309C9.84945 10.6522 9.81097 10.665 9.77148 10.665H9.12793C9.05762 10.665 8.99086 10.6274 8.95312 10.5635L7.88379 8.76172L6.80664 10.5654C6.76885 10.6275 6.70384 10.667 6.63184 10.667H6.04004C6.00321 10.6669 5.96628 10.6561 5.93457 10.6367C5.90309 10.6174 5.87717 10.5897 5.85938 10.5566C5.84153 10.5233 5.83209 10.4854 5.83301 10.4473C5.83393 10.4093 5.84491 10.3721 5.86426 10.3398L7.2959 7.97949L5.88379 5.66211C5.82198 5.56081 5.85112 5.42939 5.94727 5.36719C5.97982 5.3442 6.01726 5.33302 6.05664 5.33301H6.71582Z" fill="#2F913E"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.957 1.33301C11.124 1.33307 11.2853 1.39583 11.4082 1.50879L12.3174 2.3457L11.6406 3.08105L10.8271 2.33301H3.66699V13.666H12.334V3.71387L11.6436 3.08398L11.6406 3.08203L12.3174 2.3457L13.1162 3.07617C13.2543 3.20232 13.3338 3.3804 13.334 3.56738V14L13.3203 14.1338C13.2583 14.4376 12.9891 14.6659 12.667 14.666H3.33398L3.19922 14.6523C2.93884 14.599 2.73387 14.3942 2.68066 14.1338L2.66699 14V2C2.66711 1.67798 2.89556 1.40887 3.19922 1.34668L3.33398 1.33301H10.957ZM10 8.5C10.2761 8.5 10.5 8.72386 10.5 9C10.5 9.27614 10.2761 9.5 10 9.5H6C5.72386 9.5 5.5 9.27614 5.5 9C5.5 8.72386 5.72386 8.5 6 8.5H10ZM9 6C9.27614 6 9.5 6.22386 9.5 6.5C9.5 6.77614 9.27614 7 9 7H6C5.72386 7 5.5 6.77614 5.5 6.5C5.5 6.22386 5.72386 6 6 6H9Z" fill="#70706E"/>
3
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 2.66667C2 2.29848 2.29848 2 2.66667 2H8.22957C8.49499 2 8.73512 2.15744 8.84095 2.40085L9.92791 4.90085C10.1193 5.34115 9.79664 5.83333 9.31652 5.83333H2.66667C2.29848 5.83333 2 5.53486 2 5.16667V2.66667Z" fill="#F9B13C"/>
3
+ <path d="M3 4.50008C3 4.31599 3.14924 4.16675 3.33333 4.16675H12.6667C12.8508 4.16675 13 4.31599 13 4.50008V13.1667C13 13.3508 12.8508 13.5001 12.6667 13.5001H3.33333C3.14924 13.5001 3 13.3508 3 13.1667V4.50008Z" fill="white"/>
4
+ <path d="M2 4.66675H13.3333C13.7015 4.66675 14 4.96522 14 5.33341V13.3334C14 13.7016 13.7015 14.0001 13.3333 14.0001H2.66667C2.29848 14.0001 2 13.7016 2 13.3334V4.66675Z" fill="#FFCB2E"/>
5
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.957 1.33301C11.124 1.33307 11.2853 1.39583 11.4082 1.50879L12.3174 2.3457L11.6406 3.08105L10.8271 2.33301H3.66699V13.666H12.334V3.71387L11.6436 3.08398L11.6406 3.08203L12.3174 2.3457L13.1172 3.07617C13.2549 3.20229 13.3338 3.38063 13.334 3.56738V14L13.3203 14.1338C13.2583 14.4376 12.9891 14.6659 12.667 14.666H3.33398L3.19922 14.6523C2.93884 14.599 2.73387 14.3942 2.68066 14.1338L2.66699 14V2C2.66711 1.67798 2.89556 1.40887 3.19922 1.34668L3.33398 1.33301H10.957ZM8.95117 8.80469C8.95117 9.45619 8.83123 9.99047 8.58105 10.3984L8.46582 10.5654C8.13575 10.9898 7.68375 11.2012 7.12109 11.2012C6.86476 11.2012 6.64525 11.1636 6.4668 11.083L6.4082 11.0566V10.0342L6.56641 10.1494C6.70723 10.2516 6.88862 10.3066 7.11719 10.3066C7.40052 10.3066 7.60577 10.1907 7.74609 9.95508C7.89129 9.7111 7.9707 9.33189 7.9707 8.80469V4.84961H8.95117V8.80469Z" fill="#FF4D50"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13 1C13.5523 1 14 1.44772 14 2V13H3.5C3.22386 13 3 13.2239 3 13.5C3 13.7761 3.22386 14 3.5 14H14C14 14.5523 13.5523 15 13 15H4C2.89543 15 2 14.1046 2 13V3C2 1.89543 2.89543 1 4 1H13ZM5.5 4C5.22386 4 5 4.22386 5 4.5C5 4.77614 5.22386 5 5.5 5H10.5C10.7761 5 11 4.77614 11 4.5C11 4.22386 10.7761 4 10.5 4H5.5Z" fill="#0956E4"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M8 1.5C11.5899 1.5 14.5 4.41015 14.5 8C14.5 11.5899 11.5899 14.5 8 14.5C4.41015 14.5 1.5 11.5899 1.5 8C1.5 4.41015 4.41015 1.5 8 1.5ZM8 2.42871C4.92298 2.42871 2.42871 4.92298 2.42871 8C2.42871 11.077 4.92298 13.5713 8 13.5713C11.077 13.5713 13.5713 11.077 13.5713 8C13.5713 4.92298 11.077 2.42871 8 2.42871ZM6.19434 7.36523C6.2548 7.30503 6.3537 7.30487 6.41406 7.36523L6.68262 7.63477C6.74275 7.69515 6.74275 7.79314 6.68262 7.85352L6.30371 8.23242C5.89985 8.63677 5.89974 9.29201 6.30371 9.69629C6.70813 10.1005 7.3642 10.1006 7.76855 9.69629L8.14746 9.31738C8.20788 9.25744 8.30591 9.25726 8.36621 9.31738L8.63574 9.58691C8.69582 9.64722 8.69567 9.74526 8.63574 9.80566L8.25684 10.1846C7.58294 10.8585 6.49045 10.8582 5.81641 10.1846C5.14239 9.51056 5.14239 8.41815 5.81641 7.74414L6.19434 7.36523ZM8.27441 7.27246C8.33487 7.21231 8.43282 7.21214 8.49316 7.27246L8.7627 7.54199C8.82268 7.60237 8.82273 7.7004 8.7627 7.76074L7.76074 8.76172C7.70035 8.82211 7.60244 8.82201 7.54199 8.76172L7.27246 8.49316C7.21217 8.43285 7.21239 8.33487 7.27246 8.27441L8.27441 7.27246ZM7.74414 5.81543C8.41813 5.14189 9.51068 5.14173 10.1846 5.81543C10.8584 6.48938 10.8583 7.58286 10.1846 8.25684L9.80566 8.63477C9.74528 8.69515 9.64736 8.69505 9.58691 8.63477L9.31738 8.36621C9.25716 8.30593 9.25744 8.20792 9.31738 8.14746L9.69629 7.76855C10.1004 7.36418 10.1005 6.70805 9.69629 6.30371C9.29201 5.89962 8.6368 5.89978 8.23242 6.30371L7.85352 6.68262C7.79319 6.74294 7.69523 6.74271 7.63477 6.68262L7.36523 6.41309C7.30484 6.35264 7.30481 6.25476 7.36523 6.19434L7.74414 5.81543Z" fill="#39B83F"/>
3
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.957 1.33301C11.124 1.33307 11.2853 1.39583 11.4082 1.50879L12.3174 2.3457L11.6406 3.08105L10.8271 2.33301H3.66699V13.666H12.334V3.71387L11.6436 3.08398L11.6406 3.08203L12.3174 2.3457L13.1172 3.07617C13.2549 3.20229 13.3338 3.38063 13.334 3.56738V14L13.3203 14.1338C13.2583 14.4376 12.9891 14.6659 12.667 14.666H3.33398L3.19922 14.6523C2.93884 14.599 2.73387 14.3942 2.68066 14.1338L2.66699 14V2C2.66711 1.67798 2.89556 1.40887 3.19922 1.34668L3.33398 1.33301H10.957Z" fill="#675FF0"/>
3
+ <path d="M5 6.81818C5.12597 6.81818 5.22541 6.79021 5.30497 6.73427C5.38453 6.67832 5.43757 6.6014 5.46409 6.51049C5.49061 6.41259 5.50387 6.25175 5.50387 6.02098C5.50387 5.79021 5.5105 5.63636 5.51713 5.56643C5.53039 5.44755 5.55691 5.35664 5.60331 5.28671C5.64309 5.21678 5.6895 5.16084 5.74917 5.11888C5.80884 5.07692 5.88177 5.04895 5.97459 5.02098C6.03425 5.00699 6.14033 5 6.27956 5H6.41878V5.32867H6.34586C6.17348 5.32867 6.06077 5.35664 6.00773 5.40559C5.9547 5.45454 5.92155 5.57343 5.92155 5.75525C5.92155 6.11888 5.91492 6.34266 5.89503 6.44056C5.86851 6.58741 5.81547 6.6993 5.74254 6.78322C5.66961 6.86014 5.55691 6.93706 5.41105 7C5.59006 7.06294 5.72265 7.16084 5.80221 7.29371C5.88177 7.42657 5.92155 7.63636 5.92155 7.93706C5.92155 8.2028 5.92818 8.36364 5.92818 8.41958C5.94144 8.51049 5.97459 8.58042 6.02762 8.61539C6.08066 8.65035 6.18674 8.67133 6.33923 8.67133H6.41215V9H6.27293C6.11381 9 5.99448 8.99301 5.92818 8.96503C5.8221 8.93007 5.73591 8.88112 5.66961 8.81119C5.60331 8.74126 5.55691 8.65035 5.53702 8.53846C5.51713 8.42657 5.50387 8.25175 5.50387 8C5.50387 7.74825 5.49061 7.58042 5.46409 7.48252C5.43757 7.39161 5.38453 7.30769 5.30497 7.25874C5.22541 7.2028 5.12597 7.17483 5 7.16783V6.81818ZM10.5956 6.06993H7.22099C7.04199 6.06993 6.90276 5.91608 6.90276 5.73427V5.67133C6.90276 5.48252 7.04862 5.33566 7.22099 5.33566H10.5956C10.7746 5.33566 10.9138 5.48951 10.9138 5.67133V5.73427C10.9138 5.91608 10.768 6.06993 10.5956 6.06993ZM10.5956 7.3986H7.22099C7.04199 7.3986 6.90276 7.24476 6.90276 7.06294V7C6.90276 6.81119 7.04862 6.66434 7.22099 6.66434H10.5956C10.7746 6.66434 10.9138 6.81818 10.9138 7V7.06294C10.9138 7.24476 10.768 7.3986 10.5956 7.3986ZM10.5956 8.73427H7.22099C7.04199 8.73427 6.90276 8.58042 6.90276 8.3986V8.33566C6.90276 8.14685 7.04862 8 7.22099 8H10.5956C10.7746 8 10.9138 8.15385 10.9138 8.33566V8.3986C10.9138 8.58042 10.768 8.73427 10.5956 8.73427Z" fill="#675FF0"/>
4
+ <path d="M11.5 10.1265H10.8525V12H10.3677V10.1265H9.72168V9.73096H11.5V10.1265Z" fill="#675FF0"/>
5
+ <path d="M7.55811 12V9.73096H8.3418C9.14746 9.73096 9.55029 10.0996 9.55029 10.8369C9.55029 11.1875 9.4375 11.4692 9.21191 11.6821C8.98633 11.894 8.69531 12 8.33887 12H7.55811ZM8.0415 10.1265V11.6045H8.30518C8.53467 11.6045 8.71484 11.5361 8.8457 11.3994C8.97656 11.2627 9.04199 11.0776 9.04199 10.8442C9.04199 10.6187 8.97363 10.4429 8.83691 10.3169C8.7002 10.1899 8.52246 10.1265 8.30371 10.1265H8.0415Z" fill="#675FF0"/>
6
+ <path d="M4.96094 10.8955C4.96094 10.54 5.06445 10.251 5.27148 10.0283C5.47949 9.80469 5.75391 9.69287 6.09473 9.69287C6.41895 9.69287 6.67969 9.80078 6.87695 10.0166C7.0752 10.2324 7.17432 10.5098 7.17432 10.8486C7.17432 11.2021 7.07129 11.4893 6.86523 11.71C6.66016 11.9297 6.39111 12.0396 6.05811 12.0396C5.73291 12.0396 5.46875 11.9331 5.26562 11.7202C5.0625 11.5063 4.96094 11.2314 4.96094 10.8955ZM5.46924 10.8691C5.46924 11.0898 5.52246 11.2705 5.62891 11.4111C5.73535 11.5508 5.88135 11.6206 6.06689 11.6206C6.25635 11.6206 6.40381 11.5537 6.50928 11.4199C6.61475 11.2852 6.66748 11.1045 6.66748 10.8779C6.66748 10.6416 6.61621 10.4551 6.51367 10.3184C6.41113 10.1807 6.2666 10.1118 6.08008 10.1118C5.89062 10.1118 5.74121 10.1821 5.63184 10.3228C5.52344 10.4634 5.46924 10.6455 5.46924 10.8691Z" fill="#675FF0"/>
7
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.957 1.33301C11.124 1.33307 11.2853 1.39583 11.4082 1.50879L12.3174 2.3457L11.6406 3.08105L10.8271 2.33301H3.66699V13.666H12.334V3.71387L11.6436 3.08398L11.6406 3.08203L12.3174 2.3457L13.1172 3.07617C13.2549 3.20229 13.3338 3.38063 13.334 3.56738V14L13.3203 14.1338C13.2583 14.4376 12.9891 14.6659 12.667 14.666H3.33398L3.19922 14.6523C2.93884 14.599 2.73387 14.3942 2.68066 14.1338L2.66699 14V2C2.66711 1.67798 2.89556 1.40887 3.19922 1.34668L3.33398 1.33301H10.957ZM7.71191 5.00098C7.95398 5.01182 8.23799 5.16198 8.30664 5.54688C8.40941 6.03464 8.27759 6.57316 8.17285 7.00488L8.16699 7.03027C8.37835 7.57951 8.66991 7.94773 9.11426 8.21875C10.017 8.10683 10.5964 8.16863 10.835 8.40332C10.9994 8.56776 11.0484 8.87519 10.9473 9.11914C10.8894 9.25831 10.7357 9.48926 10.3457 9.48926C9.95189 9.48921 9.37167 9.31384 8.8623 9.04102C8.40175 9.11875 7.8926 9.29278 7.40137 9.45898C7.2966 9.49512 7.18778 9.5311 7.08301 9.56543C6.3969 10.7429 5.8824 10.9998 5.56445 11C5.48865 11 5.4233 10.9837 5.36914 10.9639C5.24449 10.9169 5.13813 10.8189 5.07129 10.6924C5.01181 10.5787 4.98629 10.4528 5.00781 10.3535C5.1144 9.81502 5.83149 9.3878 6.36621 9.11133C6.65343 8.60533 7.04538 7.75431 7.29102 7.16895C7.09599 6.41389 6.98933 5.82132 7.1084 5.3877C7.17162 5.15099 7.42651 4.98835 7.71191 5.00098ZM6.18555 9.77441C5.99948 9.94427 5.76264 10.1801 5.6416 10.4023C5.74457 10.3228 5.93444 10.1394 6.18555 9.77441ZM7.73926 7.69629C7.60016 8.05769 7.39944 8.55181 7.15918 8.9873C7.23144 8.95839 7.30596 8.9272 7.38184 8.89648C7.69966 8.76643 8.05529 8.61975 8.44531 8.53125C8.17624 8.31804 7.93249 8.03049 7.73926 7.69629ZM9.73535 8.74707C10.3674 8.99599 10.5185 8.91259 10.5352 8.90234L10.5391 8.89648H10.543C10.5536 8.88933 10.5516 8.88347 10.5498 8.87988C10.544 8.87053 10.4509 8.71359 9.73535 8.74707ZM7.72852 5.4834C7.67613 5.54303 7.68883 6.05251 7.77734 6.41211C7.8496 6.16635 7.86152 5.68036 7.76758 5.51953C7.75502 5.4962 7.74284 5.48532 7.72852 5.4834Z" fill="#FF4D50"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M14.1777 2.67969C14.4553 2.7361 14.6644 2.98029 14.666 3.27441V12.667C14.6659 12.9891 14.4376 13.2583 14.1338 13.3203L14 13.334H2L1.86523 13.3203C1.56164 13.2581 1.33312 12.989 1.33301 12.667V3.33398C1.33301 3.01196 1.56164 2.74298 1.86523 2.68066L2 2.66699H14.0557L14.1777 2.67969ZM2.33301 12.334H13.666V3.66699H2.33301V12.334ZM8.78125 7.39355C8.79747 7.40146 8.81204 7.41261 8.82324 7.42676L10.8545 10.0166C10.915 10.0939 10.8601 10.2078 10.7607 10.208H5.28613C5.26386 10.2081 5.24156 10.2022 5.22266 10.1904C5.20374 10.1786 5.18849 10.1616 5.17871 10.1416C5.16897 10.1216 5.16469 10.0993 5.16699 10.0771C5.16933 10.055 5.17865 10.0341 5.19238 10.0166L6.67676 8.12305C6.68788 8.10885 6.70253 8.09775 6.71875 8.08984C6.73488 8.08198 6.75256 8.07818 6.77051 8.07812C6.78858 8.07812 6.807 8.08193 6.82324 8.08984C6.83924 8.09768 6.85322 8.10907 6.86426 8.12305L7.47656 8.90332L8.63379 7.42676C8.64501 7.41261 8.65955 7.40145 8.67578 7.39355C8.69215 7.38564 8.71034 7.38086 8.72852 7.38086C8.74668 7.38087 8.7649 7.38565 8.78125 7.39355ZM6.35547 5.83301C6.51333 5.83301 6.66474 5.89619 6.77637 6.00781C6.888 6.11944 6.95117 6.27084 6.95117 6.42871C6.95111 6.5865 6.88794 6.73803 6.77637 6.84961C6.66476 6.9611 6.51323 7.02344 6.35547 7.02344C6.19768 7.02338 6.04615 6.96118 5.93457 6.84961C5.823 6.73803 5.7608 6.5865 5.76074 6.42871C5.76074 6.27095 5.82308 6.11942 5.93457 6.00781C6.04615 5.89624 6.19768 5.83307 6.35547 5.83301Z" fill="#32A3FF"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.957 1.33301C11.124 1.33307 11.2853 1.39583 11.4082 1.50879L12.3174 2.3457L11.6406 3.08105L10.8271 2.33301H3.66699V13.666H12.334V3.71387L11.6436 3.08398L11.6406 3.08203L12.3174 2.3457L13.1172 3.07617C13.2549 3.20229 13.3338 3.38063 13.334 3.56738V14L13.3203 14.1338C13.2583 14.4376 12.9891 14.6659 12.667 14.666H3.33398L3.19922 14.6523C2.93884 14.599 2.73387 14.3942 2.68066 14.1338L2.66699 14V2C2.66711 1.67798 2.89556 1.40887 3.19922 1.34668L3.33398 1.33301H10.957ZM6.1543 5.26758H8.1543C9.30194 5.26778 9.9998 6.03334 10 7.08105C10 8.14247 9.29247 8.89045 8.15039 8.89062H6.93262V10.7275C6.93262 10.812 6.86371 10.8816 6.7793 10.8818H6.1543C6.06968 10.8818 6 10.8122 6 10.7275V5.41992C6.00002 5.33532 6.06969 5.2666 6.1543 5.2666V5.26758ZM6.93262 6.03906V8.12402H7.68066C8.54028 8.12402 9.0498 7.91372 9.0498 7.0791C9.04962 6.41793 8.66339 6.03914 8.01367 6.03906H6.93262Z" fill="#FA8C16"/>
3
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M1.73633 1.57642C2.53848 0.774265 3.74473 0.714862 4.87207 1.03052C6.02182 1.35245 7.24885 2.09683 8.3125 3.1604C9.37624 4.22414 10.1204 5.45195 10.4424 6.60181C10.758 7.72909 10.6986 8.93446 9.89648 9.73657C9.09439 10.5387 7.88901 10.5981 6.76172 10.2825C5.61186 9.96051 4.38405 9.21632 3.32031 8.15259C2.25674 7.08894 1.51236 5.86191 1.19043 4.71216C0.874775 3.58481 0.934176 2.37857 1.73633 1.57642Z" stroke="#4E6EF2" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
3
+ <path d="M6.76172 5.41479C7.88883 5.09929 9.09442 5.15888 9.89648 5.96069C10.6986 6.76284 10.758 7.96909 10.4424 9.09644C10.1204 10.2462 9.37617 11.4732 8.3125 12.5369C7.24882 13.6005 6.02187 14.3448 4.87207 14.6667C3.74472 14.9824 2.53848 14.923 1.73633 14.1208C0.934528 13.3188 0.874922 12.1132 1.19043 10.9861C1.51239 9.83623 2.25659 8.60841 3.32031 7.54468C4.38405 6.48096 5.61186 5.73675 6.76172 5.41479Z" stroke="#4E6EF2" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
4
+ <path d="M11.1282 1.03052C12.2553 0.715012 13.4609 0.774612 14.263 1.57642C15.0651 2.37857 15.1246 3.58481 14.8089 4.71216C14.4869 5.86196 13.7427 7.08892 12.679 8.15259C11.6153 9.21627 10.3884 9.96048 9.23859 10.2825C8.11124 10.5981 6.90499 10.5387 6.10284 9.73657C5.30106 8.9345 5.24144 7.72892 5.55695 6.60181C5.8789 5.45195 6.62311 4.22414 7.68683 3.1604C8.75056 2.09668 9.97838 1.35248 11.1282 1.03052Z" stroke="#4E6EF2" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
5
+ <path d="M6.10284 5.96069C6.90499 5.15855 8.11124 5.09914 9.23859 5.41479C10.3883 5.73673 11.6154 6.48111 12.679 7.54468C13.7427 8.60841 14.4869 9.83623 14.8089 10.9861C15.1245 12.1134 15.0651 13.3188 14.263 14.1208C13.4609 14.9229 12.2555 14.9823 11.1282 14.6667C9.97838 14.3448 8.75055 13.6006 7.68683 12.5369C6.62325 11.4732 5.87888 10.2462 5.55695 9.09644C5.24129 7.96909 5.3007 6.76284 6.10284 5.96069Z" stroke="#4E6EF2" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/>
6
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.957 1.33301C11.124 1.33307 11.2853 1.39583 11.4082 1.50879L12.3174 2.3457L11.6406 3.08105L10.8271 2.33301H3.66699V13.666H12.334V3.71387L11.6436 3.08398L11.6406 3.08203L12.3174 2.3457L13.1172 3.07617C13.2549 3.20229 13.3338 3.38063 13.334 3.56738V14L13.3203 14.1338C13.2583 14.4376 12.9891 14.6659 12.667 14.666H3.33398L3.19922 14.6523C2.93884 14.599 2.73387 14.3942 2.68066 14.1338L2.66699 14V2C2.66711 1.67798 2.89556 1.40887 3.19922 1.34668L3.33398 1.33301H10.957ZM9.91406 5.16699C10.0058 5.16721 10.0799 5.24128 10.0801 5.33301V5.9707C10.0801 6.06262 10.0059 6.13748 9.91406 6.1377H8.64648C8.55457 6.1377 8.47971 6.21185 8.47949 6.30371V10.5469C8.47936 10.6387 8.40525 10.7127 8.31348 10.7129H7.59375C7.50178 10.7129 7.42689 10.6388 7.42676 10.5469V6.30371C7.42654 6.21185 7.35168 6.1377 7.25977 6.1377H6C5.90795 6.1377 5.83301 6.06275 5.83301 5.9707V5.33301C5.83323 5.24115 5.90809 5.16699 6 5.16699H9.91406Z" fill="#4089FF"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.9568 1.33276C11.1238 1.33276 11.2849 1.39651 11.408 1.50952L12.3171 2.34644L11.6404 3.08179L10.8269 2.33374H3.66675V13.6667H12.3337V3.7146L11.6433 3.08472L11.6404 3.08276L12.3171 2.34644L13.1169 3.0769C13.2546 3.20307 13.3336 3.38138 13.3337 3.56812V14.0007L13.3201 14.1345C13.2578 14.4382 12.9888 14.6667 12.6667 14.6667H3.33374L3.19897 14.6531C2.93875 14.5998 2.73378 14.3947 2.68042 14.1345L2.66675 14.0007V2.00073C2.66675 1.67864 2.89529 1.40965 3.19897 1.34741L3.33374 1.33276H10.9568ZM6.05542 7.31616C6.12046 7.25114 6.22568 7.25122 6.29077 7.31616L6.58081 7.6062C6.64589 7.67128 6.64588 7.77646 6.58081 7.84155L6.17358 8.24976C5.73807 8.68527 5.73807 9.39139 6.17358 9.8269C6.60912 10.2622 7.31529 10.2624 7.75073 9.8269L8.15796 9.4187C8.22305 9.35363 8.32921 9.35362 8.39429 9.4187L8.68433 9.70874C8.74934 9.77383 8.74937 9.88 8.68433 9.94507L8.27612 10.3523C7.55026 11.0782 6.37308 11.0782 5.64722 10.3523C4.92174 9.62652 4.92177 8.45016 5.64722 7.72437L6.05542 7.31616ZM8.29468 7.21655C8.35977 7.15147 8.46592 7.15147 8.53101 7.21655L8.82104 7.50659C8.88578 7.5716 8.88575 7.67692 8.82104 7.74194L7.74194 8.82104C7.67692 8.88583 7.57163 8.8858 7.50659 8.82104L7.21655 8.53101C7.15147 8.46592 7.15147 8.35977 7.21655 8.29468L8.29468 7.21655ZM7.72339 5.64722C8.44919 4.92141 9.62642 4.92152 10.3523 5.64722C11.0782 6.37308 11.0782 7.55026 10.3523 8.27612L9.94409 8.68433C9.87904 8.74897 9.77371 8.7491 9.70874 8.68433L9.4187 8.39429C9.35361 8.3292 9.35361 8.22305 9.4187 8.15796L9.8269 7.75073C10.2623 7.31533 10.2621 6.60913 9.8269 6.17358C9.39139 5.73807 8.68527 5.73807 8.24976 6.17358L7.84155 6.58081C7.77647 6.64589 7.67129 6.64588 7.6062 6.58081L7.31616 6.29077C7.25109 6.22568 7.25108 6.1205 7.31616 6.05542L7.72339 5.64722Z" fill="#1998FF"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10.957 1.33301C11.124 1.33307 11.2853 1.39583 11.4082 1.50879L12.3174 2.3457L11.6406 3.08105L10.8271 2.33301H3.66699V13.666H12.334V3.71387L11.6436 3.08398L11.6406 3.08203L12.3174 2.3457L13.1172 3.07617C13.2549 3.20229 13.3338 3.38063 13.334 3.56738V14L13.3203 14.1338C13.2583 14.4376 12.9891 14.6659 12.667 14.666H3.33398L3.19922 14.6523C2.93884 14.599 2.73387 14.3942 2.68066 14.1338L2.66699 14V2C2.66711 1.67798 2.89556 1.40887 3.19922 1.34668L3.33398 1.33301H10.957ZM5.77832 5.83301C5.87031 5.83301 5.94933 5.8983 5.9707 5.98828L6.72852 9.2998L7.54492 5.98535C7.56627 5.89541 7.64507 5.83309 7.73535 5.83301H8.26465C8.35498 5.83305 8.43373 5.89538 8.45508 5.98535L9.27344 9.30664L10.0254 5.98828C10.0467 5.89837 10.1259 5.83313 10.2178 5.83301H10.8027C10.8329 5.83312 10.8626 5.84093 10.8896 5.85449C10.9167 5.86808 10.9406 5.88781 10.959 5.91211C10.9773 5.93632 10.9901 5.96425 10.9961 5.99414C11.0021 6.02417 11.0008 6.05533 10.9932 6.08496L9.77148 10.6846C9.74853 10.7727 9.66957 10.8328 9.58105 10.833H9.05859C8.96987 10.833 8.89019 10.7712 8.86719 10.6846L8 7.40137L7.13281 10.6846C7.10985 10.7728 7.03094 10.8328 6.94238 10.833H6.41602C6.32739 10.8329 6.24857 10.7712 6.22559 10.6846L5.00684 6.08496C4.99909 6.05533 4.99796 6.0242 5.00391 5.99414C5.00985 5.9641 5.02262 5.93543 5.04102 5.91113C5.05939 5.88697 5.08338 5.86703 5.11035 5.85352C5.13734 5.84008 5.1672 5.83306 5.19727 5.83301H5.77832Z" fill="#426BFF"/>
3
+ </svg>
@@ -0,0 +1,3 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11.29 1.33008C11.457 1.33008 11.6182 1.39298 11.7412 1.50586L12.6504 2.34277L11.9736 3.07812L11.1602 2.33008H4V13.6631H12.667V3.71094L11.9766 3.08105L11.9736 3.0791L12.6504 2.34277L13.4502 3.07324C13.588 3.19942 13.6669 3.37761 13.667 3.56445V13.9971L13.6533 14.1309C13.5912 14.4347 13.3222 14.6631 13 14.6631H3.66699L3.53223 14.6494C3.27204 14.5959 3.06685 14.3912 3.01367 14.1309L3 13.9971V1.99707C3 1.67508 3.22869 1.40611 3.53223 1.34375L3.66699 1.33008H11.29ZM7.36816 6.39941C7.65187 6.39959 7.84768 6.57468 7.95605 6.93066L7.52734 7.78809L7.31641 7.35938C7.24417 7.22007 7.15618 7.14756 7.04785 7.14746H6.19043C6.04599 7.14751 6.00977 7.21486 6.08203 7.35938L7.04199 9.38867C7.68737 8.10825 8.05967 7.27658 8.21973 6.93066C8.40557 6.5332 8.62233 6.39943 8.90625 6.39941H10.791C11.1471 6.39948 11.2705 6.57449 11.1621 6.93066C11.0536 7.287 10.5013 8.46426 9.50488 10.457C9.46874 10.5241 9.41249 10.5762 9.35059 10.6123C9.1441 10.731 8.88077 10.6635 8.75684 10.457L8.22461 9.28027L8.65332 8.42285L9.13379 9.43945L10.1504 7.35938C10.2175 7.21997 10.1866 7.14746 10.042 7.14746H8.97852L7.47656 10.3535C7.43013 10.5031 7.31627 10.6168 7.17188 10.6582C6.93438 10.7253 6.68626 10.591 6.61914 10.3535C5.62275 8.28844 5.09083 7.1111 5.01855 6.82715C4.94645 6.54338 5.09114 6.39941 5.44727 6.39941H7.36816Z" fill="#ED8E35"/>
3
+ </svg>
@@ -0,0 +1,7 @@
1
+ <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M2 2.66667C2 2.29848 2.29848 2 2.66667 2H13.3333C13.7015 2 14 2.29848 14 2.66667V8H2V2.66667Z" fill="#4DC6FF"/>
3
+ <path d="M2 8H14V13.3333C14 13.7015 13.7015 14 13.3333 14H2.66667C2.29848 14 2 13.7015 2 13.3333V8Z" fill="#4DCE84"/>
4
+ <rect x="14" y="6" width="4" height="12" transform="rotate(90 14 6)" fill="#FF5F5A"/>
5
+ <rect x="6" y="2" width="4" height="12" fill="#FCC048"/>
6
+ <rect x="5.66667" y="5.66667" width="4.66667" height="4.66667" rx="0.666667" stroke="white" stroke-width="0.666667"/>
7
+ </svg>