@chenghongyu/xpt-file-viewer 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.
- package/.vscode/extensions.json +3 -0
- package/README.md +5 -0
- package/auto-imports.d.ts +12 -0
- package/components.d.ts +45 -0
- package/dist.zip +0 -0
- package/index.html +13 -0
- package/package.json +100 -0
- package/presets/eslint/.eslintrc-auto-import.json +462 -0
- package/presets/plugins/html.ts +14 -0
- package/presets/shared/env.ts +46 -0
- package/presets/shared/resolvers.ts +29 -0
- package/presets/tov.ts +132 -0
- package/presets/types/auto-imports.d.ts +806 -0
- package/presets/types/components.d.ts +164 -0
- package/presets/types/env.d.ts +17 -0
- package/public/favicon.svg +1 -0
- package/public/icons.svg +24 -0
- package/public/testfile/README.md +5 -0
- package/public/testfile/useFileContextMenu.js +74 -0
- package/public/testfile//345/217/221/347/245/250.pdf +0 -0
- package/public/testfile//346/216/245/346/224/266/345/207/275.docx +0 -0
- package/public/testfile//350/247/204/346/240/274/345/236/213/345/217/2671.txt +263 -0
- package/public/testfile//350/247/206/351/242/2211.mp4 +0 -0
- package/public/testfile//351/237/263/351/242/2211.mp3 +0 -0
- package/src/App.vue +8 -0
- package/src/api/admin/admin-2fa.js +18 -0
- package/src/api/admin/admin-download-log.js +37 -0
- package/src/api/admin/admin-login-log.js +9 -0
- package/src/api/admin/admin-permission.js +9 -0
- package/src/api/admin/admin-setting.js +121 -0
- package/src/api/admin/admin-share.js +20 -0
- package/src/api/admin/admin-short-link.js +49 -0
- package/src/api/admin/admin-sso.js +38 -0
- package/src/api/admin/admin-storage.js +189 -0
- package/src/api/admin/admin-user.js +61 -0
- package/src/api/home/common.js +9 -0
- package/src/api/home/file-operator.js +89 -0
- package/src/api/home/home.js +87 -0
- package/src/api/home/install.js +18 -0
- package/src/api/home/login.js +9 -0
- package/src/api/home/only-office.js +10 -0
- package/src/api/home/share.js +115 -0
- package/src/api/home/user.js +74 -0
- package/src/api/tools/tools-115.js +17 -0
- package/src/api/tools/tools-gd.js +13 -0
- package/src/api/tools/tools-s3.js +25 -0
- package/src/api/tools/tools-sharepoint.js +19 -0
- package/src/assets/hero.png +0 -0
- package/src/assets/icons/401.svg +1 -0
- package/src/assets/icons/403.svg +45 -0
- package/src/assets/icons/404.svg +1 -0
- package/src/assets/icons/500.svg +1 -0
- package/src/assets/icons/admin-login.svg +1 -0
- package/src/assets/icons/document.svg +1 -0
- package/src/assets/icons/empty.svg +145 -0
- package/src/assets/icons/file-type-apk.svg +1 -0
- package/src/assets/icons/file-type-archive.svg +1 -0
- package/src/assets/icons/file-type-audio.svg +1 -0
- package/src/assets/icons/file-type-back.svg +1 -0
- package/src/assets/icons/file-type-css.svg +1 -0
- package/src/assets/icons/file-type-deb.svg +1 -0
- package/src/assets/icons/file-type-dll.svg +1 -0
- package/src/assets/icons/file-type-doc.svg +1 -0
- package/src/assets/icons/file-type-document.svg +1 -0
- package/src/assets/icons/file-type-docx.svg +1 -0
- package/src/assets/icons/file-type-exe.svg +1 -0
- package/src/assets/icons/file-type-expression.svg +1 -0
- package/src/assets/icons/file-type-file.svg +1 -0
- package/src/assets/icons/file-type-folder.svg +1 -0
- package/src/assets/icons/file-type-html.svg +1 -0
- package/src/assets/icons/file-type-image.svg +1 -0
- package/src/assets/icons/file-type-java.svg +1 -0
- package/src/assets/icons/file-type-js.svg +1 -0
- package/src/assets/icons/file-type-less.svg +1 -0
- package/src/assets/icons/file-type-md.svg +1 -0
- package/src/assets/icons/file-type-office.svg +1 -0
- package/src/assets/icons/file-type-pdf.svg +1 -0
- package/src/assets/icons/file-type-php.svg +1 -0
- package/src/assets/icons/file-type-ppt.svg +1 -0
- package/src/assets/icons/file-type-pptx.svg +1 -0
- package/src/assets/icons/file-type-py.svg +1 -0
- package/src/assets/icons/file-type-rb.svg +1 -0
- package/src/assets/icons/file-type-root.svg +1 -0
- package/src/assets/icons/file-type-rpm.svg +1 -0
- package/src/assets/icons/file-type-rust.svg +1 -0
- package/src/assets/icons/file-type-script.svg +1 -0
- package/src/assets/icons/file-type-text.svg +1 -0
- package/src/assets/icons/file-type-three3d.svg +5 -0
- package/src/assets/icons/file-type-vbs.svg +1 -0
- package/src/assets/icons/file-type-video.svg +1 -0
- package/src/assets/icons/file-type-xls.svg +1 -0
- package/src/assets/icons/file-type-xlsx.svg +1 -0
- package/src/assets/icons/file-type-xml.svg +1 -0
- package/src/assets/icons/file-type-yaml.svg +1 -0
- package/src/assets/icons/file-upload.svg +1 -0
- package/src/assets/icons/github.svg +1 -0
- package/src/assets/icons/install-step.svg +40 -0
- package/src/assets/icons/reset-password.svg +1 -0
- package/src/assets/icons/storage-aliyun.svg +1 -0
- package/src/assets/icons/storage-baidu.svg +1 -0
- package/src/assets/icons/storage-doge-cloud.svg +207 -0
- package/src/assets/icons/storage-ftp.svg +13 -0
- package/src/assets/icons/storage-google-drive.svg +8 -0
- package/src/assets/icons/storage-huawei.svg +1 -0
- package/src/assets/icons/storage-local.svg +11 -0
- package/src/assets/icons/storage-minio.svg +1 -0
- package/src/assets/icons/storage-onedrive-china.svg +18 -0
- package/src/assets/icons/storage-onedrive.svg +4 -0
- package/src/assets/icons/storage-open115.svg +23 -0
- package/src/assets/icons/storage-qiniu.svg +1 -0
- package/src/assets/icons/storage-s3.svg +5 -0
- package/src/assets/icons/storage-sftp.svg +13 -0
- package/src/assets/icons/storage-sharepoint-china.svg +23 -0
- package/src/assets/icons/storage-sharepoint.svg +1 -0
- package/src/assets/icons/storage-tencent.svg +9 -0
- package/src/assets/icons/storage-ufile.svg +14 -0
- package/src/assets/icons/storage-upyun.svg +1 -0
- package/src/assets/icons/storage-webdav.svg +1 -0
- package/src/assets/icons/upload.svg +50 -0
- package/src/assets/icons/zfile-basic.svg +17 -0
- package/src/assets/icons/zfile-horizontal.svg +16 -0
- package/src/assets/icons/zfile.svg +1 -0
- package/src/assets/vite.svg +1 -0
- package/src/assets/vue.svg +1 -0
- package/src/components/HelloWorld.vue +319 -0
- package/src/components/common/QrCodePreview.vue +118 -0
- package/src/components/common/dialog/ZDialog.vue +171 -0
- package/src/components/common/dialog/types.ts +19 -0
- package/src/components/common/dialog/useDialog.ts +18 -0
- package/src/components/common/dialog/useDialogWithForm.ts +21 -0
- package/src/components/copy.vue +133 -0
- package/src/components/file/preview/AudioPlayer.vue +333 -0
- package/src/components/file/preview/CopyCode.vue +47 -0
- package/src/components/file/preview/FileGallery.vue +199 -0
- package/src/components/file/preview/ImageViewer.vue +432 -0
- package/src/components/file/preview/KkFileViewer.vue +86 -0
- package/src/components/file/preview/KkFileViewerDialog.vue +42 -0
- package/src/components/file/preview/MarkdownViewer.vue +102 -0
- package/src/components/file/preview/MarkdownViewerAsyncLoading.vue +17 -0
- package/src/components/file/preview/MarkdownViewerDialogAsyncLoading.vue +12 -0
- package/src/components/file/preview/OfficeViewer.vue +76 -0
- package/src/components/file/preview/OfficeViewerDialog.vue +55 -0
- package/src/components/file/preview/PdfViewer.vue +157 -0
- package/src/components/file/preview/PdfViewerDialog.vue +41 -0
- package/src/components/file/preview/TextViewer.vue +232 -0
- package/src/components/file/preview/TextViewerAsyncLoading.vue +22 -0
- package/src/components/file/preview/TextViewerDialog.vue +53 -0
- package/src/components/file/preview/Three3dPreview.vue +114 -0
- package/src/components/file/preview/Three3dPreviewDialog.vue +50 -0
- package/src/components/file/preview/VideoPlayer.vue +341 -0
- package/src/components/file/preview/VideoPlayerAsyncLoading.vue +45 -0
- package/src/components/file/preview/VideoPlayerDialog.vue +51 -0
- package/src/components/file/selectFolder/SelectFolder.vue +208 -0
- package/src/components/file/selectFolder/index.ts +50 -0
- package/src/components/file/selectFolder/types.ts +5 -0
- package/src/components/fileReview/AudioPlayer-copy.vue +333 -0
- package/src/components/fileReview/PdfViewer-copy.vue +157 -0
- package/src/components/fileReview/TextViewer-copy.vue +44 -0
- package/src/components/fileReview/VideoPlayer-copy.vue +341 -0
- package/src/components/messageBox/confirm/confirm.vue +137 -0
- package/src/components/messageBox/confirm/index.ts +27 -0
- package/src/components/messageBox/confirm/types.ts +15 -0
- package/src/components/messageBox/messageBox.ts +9 -0
- package/src/components/messageBox/prompt/index.ts +27 -0
- package/src/components/messageBox/prompt/prompt.vue +178 -0
- package/src/components/messageBox/prompt/types.ts +24 -0
- package/src/components/vue-codemirror/editor.vue +212 -0
- package/src/components/vue-codemirror/encodings.ts +27 -0
- package/src/components/vue-codemirror/index.vue +380 -0
- package/src/components/vue-codemirror/lang-code/cpp/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/css/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/dockerfile/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/erlang/index.ts +6 -0
- package/src/components/vue-codemirror/lang-code/go/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/html/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/java/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/javascript/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/json/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/jsx/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/lua/index.ts +6 -0
- package/src/components/vue-codemirror/lang-code/markdown/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/mysql/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/nginx/index.ts +6 -0
- package/src/components/vue-codemirror/lang-code/perl/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/pgsql/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/php/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/powershell/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/python/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/r/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/ruby/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/rust/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/shell/index.ts +5 -0
- package/src/components/vue-codemirror/lang-code/sql/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/stylus/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/swift/index.ts +4 -0
- package/src/components/vue-codemirror/lang-code/toml/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/tsx/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/typescript/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/vb/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/vbscript/index.ts +3 -0
- package/src/components/vue-codemirror/lang-code/xml/index.ts +2 -0
- package/src/components/vue-codemirror/lang-code/yaml/index.ts +3 -0
- package/src/components/vue-codemirror/languages.ts +8 -0
- package/src/components/vue-codemirror/themes.ts +5 -0
- package/src/components/vue-codemirror/toolbar.vue +183 -0
- package/src/components/vue-codemirror/types.ts +12 -0
- package/src/components.d.ts +49 -0
- package/src/composables/admin/layout/admin-layout.js +53 -0
- package/src/composables/admin/link/useLinkSetting.js +16 -0
- package/src/composables/admin/sso/baseSsoConfig.js +54 -0
- package/src/composables/admin/sso/useSsoConfig.js +176 -0
- package/src/composables/admin/storage/storage-copy.js +89 -0
- package/src/composables/admin/storage/storage-filter.js +64 -0
- package/src/composables/admin/storage/storage-list.js +202 -0
- package/src/composables/admin/storage/storage-password.js +101 -0
- package/src/composables/admin/storage/storage-readme.js +102 -0
- package/src/composables/admin/storage/utils/open115-util.js +61 -0
- package/src/composables/admin/useAdminSetting.js +60 -0
- package/src/composables/admin/useClientInfo.js +20 -0
- package/src/composables/admin/user/user-copy.js +79 -0
- package/src/composables/file/useBatchOperatorResult.js +19 -0
- package/src/composables/file/useFileContextMenu.js +74 -0
- package/src/composables/file/useFileData.js +243 -0
- package/src/composables/file/useFileLink.js +175 -0
- package/src/composables/file/useFileLoading.js +41 -0
- package/src/composables/file/useFileLongPressEvent.js +71 -0
- package/src/composables/file/useFileOperator.js +347 -0
- package/src/composables/file/useFilePreview.js +99 -0
- package/src/composables/file/useFilePwd.js +138 -0
- package/src/composables/file/useFileSelect.js +105 -0
- package/src/composables/file/useFileShare.js +39 -0
- package/src/composables/file/useFileUpload.js +1045 -0
- package/src/composables/file/useKkFileViewDialog.js +24 -0
- package/src/composables/file/useOfficeViewerDialog.js +20 -0
- package/src/composables/file/usePdfViewerDialog.js +22 -0
- package/src/composables/file/useShareActions.js +94 -0
- package/src/composables/file/useShareTableOperator.js +84 -0
- package/src/composables/file/useTableOperator.js +211 -0
- package/src/composables/file/useTextViewerDialog.js +22 -0
- package/src/composables/file/useThree3dPreviewDialog.js +23 -0
- package/src/composables/file/useVideoPlayerDialog.js +19 -0
- package/src/composables/header/useHeaderBreadcrumb.js +111 -0
- package/src/composables/header/useHeaderStorageList.js +150 -0
- package/src/composables/header/useSetting.js +58 -0
- package/src/composables/share/useShareData.js +178 -0
- package/src/composables/useDarks.ts +4 -0
- package/src/composables/useRouterData.js +41 -0
- package/src/constant/index.js +193 -0
- package/src/http/index.js +153 -0
- package/src/http/request.js +31 -0
- package/src/main.ts +23 -0
- package/src/stores/file-data.ts +108 -0
- package/src/stores/global-config.ts +115 -0
- package/src/stores/storage-config.ts +123 -0
- package/src/style.css +296 -0
- package/src/styles/admin.scss +91 -0
- package/src/styles/code-editor-variables.scss +52 -0
- package/src/styles/element-plus.scss +22 -0
- package/src/styles/error-page.css +26 -0
- package/src/styles/main.css +142 -0
- package/src/styles/tailwind/index.scss +33 -0
- package/src/utils/index.ts +7 -0
- package/src/utils/models/base.ts +34 -0
- package/src/utils/models/file.ts +95 -0
- package/src/utils/models/path.ts +117 -0
- package/src/utils/models/qrcode.ts +21 -0
- package/src/utils/models/time.ts +132 -0
- package/src/utils/models/util.ts +42 -0
- package/src/utils/models/window.ts +14 -0
- package/stats.html +4950 -0
- package/tsconfig.app.json +16 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +26 -0
- package/vite.config.ts +57 -0
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import axios from "~/http/request"
|
|
2
|
+
|
|
3
|
+
// 获取全局站点设置
|
|
4
|
+
export const loadGlobalSiteConfigReq = () => {
|
|
5
|
+
return axios({
|
|
6
|
+
url: `/api/site/config/global`,
|
|
7
|
+
method: "get",
|
|
8
|
+
})
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// 获取存储源设置
|
|
12
|
+
export const loadStorageConfigReq = (data) => {
|
|
13
|
+
return axios({
|
|
14
|
+
url: `/api/site/config/storage`,
|
|
15
|
+
method: "post",
|
|
16
|
+
data
|
|
17
|
+
})
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// 获取用户存储源基目录
|
|
21
|
+
export const loadUserRootPathReq = (storageKey) => {
|
|
22
|
+
return axios({
|
|
23
|
+
url: `/api/site/config/userRootPath/${storageKey}`,
|
|
24
|
+
method: "get",
|
|
25
|
+
})
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// 获取已启用的存储源列表
|
|
29
|
+
export const getSourceListReq = (data) => {
|
|
30
|
+
return axios({
|
|
31
|
+
url: "/api/storage/list",
|
|
32
|
+
method: "get",
|
|
33
|
+
data
|
|
34
|
+
})
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
// 获取存储源文件列表
|
|
38
|
+
export const loadFileListReq = (data) => {
|
|
39
|
+
return axios({
|
|
40
|
+
url: `/api/storage/files`,
|
|
41
|
+
method: "post",
|
|
42
|
+
data,
|
|
43
|
+
config: {
|
|
44
|
+
showDefaultMsg: false
|
|
45
|
+
}
|
|
46
|
+
})
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// 获取存储源文件详情
|
|
50
|
+
export const loadFileItemReq = (data) => {
|
|
51
|
+
return axios({
|
|
52
|
+
url: `/api/storage/file/item`,
|
|
53
|
+
method: "post",
|
|
54
|
+
data,
|
|
55
|
+
config: {
|
|
56
|
+
responseIntercept: false,
|
|
57
|
+
showDefaultMsg: false
|
|
58
|
+
}
|
|
59
|
+
})
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// 批量生成直链
|
|
63
|
+
export const batchGeneratePathLinkReq = (data) => {
|
|
64
|
+
return axios({
|
|
65
|
+
url: `/api/path-link/batch/generate`,
|
|
66
|
+
method: "post",
|
|
67
|
+
data
|
|
68
|
+
})
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
// 批量生成短链
|
|
72
|
+
export const batchGenerateShortLinkReq = (data) => {
|
|
73
|
+
return axios({
|
|
74
|
+
url: `/api/short-link/batch/generate`,
|
|
75
|
+
method: "post",
|
|
76
|
+
data
|
|
77
|
+
})
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// 搜索存储源文件列表
|
|
81
|
+
export const searchFileListReq = (data) => {
|
|
82
|
+
return axios({
|
|
83
|
+
url: `/api/storage/search`,
|
|
84
|
+
method: "post",
|
|
85
|
+
data
|
|
86
|
+
})
|
|
87
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import axios from "~/http/request"
|
|
2
|
+
|
|
3
|
+
// 检测是否已初始化过
|
|
4
|
+
export const installStatusReq = () => {
|
|
5
|
+
return axios({
|
|
6
|
+
url: "/api/install/status",
|
|
7
|
+
method: "get"
|
|
8
|
+
})
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
// 提交初始化信息
|
|
12
|
+
export const installReq = (data) => {
|
|
13
|
+
return axios({
|
|
14
|
+
url: "/api/install",
|
|
15
|
+
method: "post",
|
|
16
|
+
data,
|
|
17
|
+
})
|
|
18
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
import axios from "~/http/request"
|
|
2
|
+
|
|
3
|
+
import useGlobalConfigStore from "~/stores/global-config";
|
|
4
|
+
let globalConfigStore = useGlobalConfigStore();
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* 创建分享链接
|
|
8
|
+
* @param {Object} params - 创建分享参数
|
|
9
|
+
* @param {string} params.storageKey - 存储源key
|
|
10
|
+
* @param {string} params.sharePath - 分享所在目录路径
|
|
11
|
+
* @param {Array<{name: string, type: 'FILE'|'FOLDER'}>} params.shareEntries - 分享条目列表
|
|
12
|
+
* @param {string} params.shareType - 分享类型 (FILE/FOLDER/MULTIPLE)
|
|
13
|
+
* @param {string} [params.password] - 分享密码(可选)
|
|
14
|
+
* @param {Date} [params.expireDate] - 过期时间(可选)
|
|
15
|
+
* @param {string} [params.shareKey] - 自定义分享key(可选)
|
|
16
|
+
*/
|
|
17
|
+
export const createShareLinkReq = (params) => {
|
|
18
|
+
return axios({
|
|
19
|
+
url: '/api/share/create',
|
|
20
|
+
method: 'POST',
|
|
21
|
+
data: params
|
|
22
|
+
})
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 获取分享信息(无需密码)
|
|
27
|
+
* @param {string} shareKey - 分享链接key
|
|
28
|
+
*/
|
|
29
|
+
export const getShareInfoReq = (shareKey) => {
|
|
30
|
+
// 关闭默认错误弹窗,由页面自行处理无效分享文案
|
|
31
|
+
return axios({
|
|
32
|
+
url: `/api/share/info/${shareKey}`,
|
|
33
|
+
method: 'GET',
|
|
34
|
+
config: { showDefaultMsg: false }
|
|
35
|
+
})
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* 验证分享密码
|
|
40
|
+
* @param {Object} params - 验证参数
|
|
41
|
+
* @param {string} params.shareKey - 分享链接key
|
|
42
|
+
* @param {string} params.password - 分享密码
|
|
43
|
+
*/
|
|
44
|
+
export const verifySharePasswordReq = (params) => {
|
|
45
|
+
return axios({
|
|
46
|
+
url: '/api/share/verify',
|
|
47
|
+
method: 'POST',
|
|
48
|
+
data: params
|
|
49
|
+
})
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* 获取分享文件列表
|
|
54
|
+
* @param {Object} params - 请求参数
|
|
55
|
+
* @param {string} params.shareKey - 分享链接key
|
|
56
|
+
* @param {string} [params.path] - 文件路径(可选,默认为根路径)
|
|
57
|
+
* @param {string} [params.password] - 分享密码(可选)
|
|
58
|
+
* @param {string} [params.orderBy] - 排序字段(可选,默认为name)
|
|
59
|
+
* @param {string} [params.orderDirection] - 排序方向(可选,默认为asc)
|
|
60
|
+
*/
|
|
61
|
+
export const getShareFileListReq = (params) => {
|
|
62
|
+
return axios({
|
|
63
|
+
url: '/api/share/files',
|
|
64
|
+
method: 'POST',
|
|
65
|
+
data: params,
|
|
66
|
+
showDefaultMsg: false
|
|
67
|
+
})
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* 获取分享文件下载链接
|
|
72
|
+
* @param {string} shareKey - 分享链接key
|
|
73
|
+
* @param {string} path - 文件路径
|
|
74
|
+
* @param {string} [password] - 分享密码(可选)
|
|
75
|
+
*/
|
|
76
|
+
export const getShareFileDownloadUrlReq = (shareKey, path, password) => {
|
|
77
|
+
const params = new URLSearchParams({
|
|
78
|
+
path,
|
|
79
|
+
...(password && { password })
|
|
80
|
+
})
|
|
81
|
+
|
|
82
|
+
return globalConfigStore.serverAddress + `/api/share/download/${shareKey}?${params.toString()}`
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* 获取用户分享列表
|
|
87
|
+
*/
|
|
88
|
+
export const getUserShareListReq = (params = {}) => {
|
|
89
|
+
return axios({
|
|
90
|
+
url: '/api/share/list',
|
|
91
|
+
method: 'GET',
|
|
92
|
+
data: params
|
|
93
|
+
})
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* 删除分享链接
|
|
98
|
+
* @param {string} shareKey - 分享链接key
|
|
99
|
+
*/
|
|
100
|
+
export const deleteShareReq = (shareKey) => {
|
|
101
|
+
return axios({
|
|
102
|
+
url: `/api/share/${shareKey}`,
|
|
103
|
+
method: 'DELETE'
|
|
104
|
+
})
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* 清理过期分享
|
|
109
|
+
*/
|
|
110
|
+
export const deleteExpiredSharesReq = () => {
|
|
111
|
+
return axios({
|
|
112
|
+
url: '/api/share/expired',
|
|
113
|
+
method: 'DELETE'
|
|
114
|
+
})
|
|
115
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import axios from "~/http/request"
|
|
2
|
+
|
|
3
|
+
// 登录
|
|
4
|
+
export const loginReq = (data, entry) => {
|
|
5
|
+
const url = entry ? `/user/login/${entry}` : "/user/login";
|
|
6
|
+
return axios({
|
|
7
|
+
url,
|
|
8
|
+
method: "post",
|
|
9
|
+
data
|
|
10
|
+
})
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
// 校验安全登录入口
|
|
14
|
+
export const validateLoginEntryReq = (entry) => {
|
|
15
|
+
const params = entry ? { entry } : {};
|
|
16
|
+
return axios({
|
|
17
|
+
url: "/user/login/entry/validate",
|
|
18
|
+
method: "get",
|
|
19
|
+
data: params
|
|
20
|
+
})
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// 获取登录验证方式
|
|
24
|
+
export const loginVerifyModeReq = (username) => {
|
|
25
|
+
return axios({
|
|
26
|
+
url: "/user/login/verify-mode",
|
|
27
|
+
method: "get",
|
|
28
|
+
data: {
|
|
29
|
+
username
|
|
30
|
+
}
|
|
31
|
+
})
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// 获取登录图片验证码
|
|
35
|
+
export const loginVerifyImgReq = () => {
|
|
36
|
+
return axios({
|
|
37
|
+
url: "/user/login/captcha",
|
|
38
|
+
method: "get"
|
|
39
|
+
})
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// 注销
|
|
43
|
+
export const logoutReq = () => {
|
|
44
|
+
return axios({
|
|
45
|
+
url: "/user/logout",
|
|
46
|
+
method: "post",
|
|
47
|
+
})
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// 检查是否已登录
|
|
51
|
+
export const checkLoginReq = () => {
|
|
52
|
+
return axios({
|
|
53
|
+
url: "/user/login/check",
|
|
54
|
+
method: "get",
|
|
55
|
+
})
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// 修改密码
|
|
59
|
+
export const updatePwdReq = (data) => {
|
|
60
|
+
return axios({
|
|
61
|
+
url: "/user/updatePwd",
|
|
62
|
+
method: "post",
|
|
63
|
+
data
|
|
64
|
+
})
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// 重置管理员密码
|
|
68
|
+
export const resetAdminPwdReq = (data) => {
|
|
69
|
+
return axios({
|
|
70
|
+
url: "/user/resetAdminPassword",
|
|
71
|
+
method: "put",
|
|
72
|
+
data
|
|
73
|
+
})
|
|
74
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import axios from "~/http/request";
|
|
2
|
+
|
|
3
|
+
export const authDeviceCodeReq = (data) => {
|
|
4
|
+
return axios({
|
|
5
|
+
url: `/115/qrcode`,
|
|
6
|
+
method: "get",
|
|
7
|
+
data
|
|
8
|
+
})
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export const getStatusReq = (data) => {
|
|
12
|
+
return axios({
|
|
13
|
+
url: `/115/qrCodeStatus`,
|
|
14
|
+
method: "post",
|
|
15
|
+
data
|
|
16
|
+
})
|
|
17
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import axios from "~/http/request"
|
|
2
|
+
|
|
3
|
+
// 加载 S3 Bucket 列表 请求
|
|
4
|
+
export const loadS3BucketsReq = (data) => {
|
|
5
|
+
return axios({
|
|
6
|
+
url: `/s3/getBuckets`,
|
|
7
|
+
method: "post",
|
|
8
|
+
data,
|
|
9
|
+
config: {
|
|
10
|
+
showDefaultMsg: false
|
|
11
|
+
}
|
|
12
|
+
})
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
// 加载 S3 跨域配置列表 请求
|
|
16
|
+
export const loadS3CorsConfigReq = (data) => {
|
|
17
|
+
return axios({
|
|
18
|
+
url: `/s3/getCorsConfig`,
|
|
19
|
+
method: "post",
|
|
20
|
+
data,
|
|
21
|
+
config: {
|
|
22
|
+
showDefaultMsg: false
|
|
23
|
+
}
|
|
24
|
+
})
|
|
25
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import axios from "~/http/request"
|
|
2
|
+
|
|
3
|
+
// 加载 SharePoint Sites 请求
|
|
4
|
+
export const loadSharePointSitesReq = (data) => {
|
|
5
|
+
return axios({
|
|
6
|
+
url: `/sharepoint/getSites`,
|
|
7
|
+
method: "post",
|
|
8
|
+
data
|
|
9
|
+
})
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
// 保存存储源过滤参数
|
|
13
|
+
export const loadSharePointSiteListsReq = (data) => {
|
|
14
|
+
return axios({
|
|
15
|
+
url: `/sharepoint/getSiteLists`,
|
|
16
|
+
method: "post",
|
|
17
|
+
data
|
|
18
|
+
})
|
|
19
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" width="807.45276" height="499.98424" viewBox="0 0 807.45276 499.98424" xmlns:xlink="http://www.w3.org/1999/xlink"><path id="ad903c08-5677-4dbe-a9c7-05a0eb46801f-13" data-name="Path 461" d="M252.30849,663.16553a22.728,22.728,0,0,0,21.947-3.866c7.687-6.452,10.1-17.081,12.058-26.924l5.8-29.112-12.143,8.362c-8.733,6.013-17.662,12.219-23.709,20.929s-8.686,20.6-3.828,30.024" transform="translate(-196.27362 -200.00788)" fill="#e6e6e6"/><path id="a94887ac-0642-4b28-b311-c351a0f7f12b-14" data-name="Path 462" d="M253.34651,698.41151c-1.229-8.953-2.493-18.02-1.631-27.069.766-8.036,3.217-15.885,8.209-22.321a37.13141,37.13141,0,0,1,9.527-8.633c.953-.6,1.829.909.881,1.507a35.29989,35.29989,0,0,0-13.963,16.847c-3.04,7.732-3.528,16.161-3,24.374.317,4.967.988,9.9,1.665,14.83a.9.9,0,0,1-.61,1.074.878.878,0,0,1-1.074-.61Z" transform="translate(-196.27362 -200.00788)" fill="#f2f2f2"/><path d="M496.87431,505.52556a6.9408,6.9408,0,0,1-2.85071.67077l-91.60708,2.51425a14.3796,14.3796,0,0,1-.62506-28.75241l91.60729-2.51381a7.00744,7.00744,0,0,1,7.15064,6.8456l.32069,14.75586a7.01658,7.01658,0,0,1-3.99577,6.47974Z" transform="translate(-196.27362 -200.00788)" fill="#6c63ff"/><path d="M379.332,698.59808H364.57245a7.00786,7.00786,0,0,1-7-7V568.58392a7.00785,7.00785,0,0,1,7-7H379.332a7.00786,7.00786,0,0,1,7,7V691.59808A7.00787,7.00787,0,0,1,379.332,698.59808Z" transform="translate(-196.27362 -200.00788)" fill="#6c63ff"/><path d="M418.52435,698.59808H403.76459a7.00786,7.00786,0,0,1-7-7V568.58392a7.00785,7.00785,0,0,1,7-7h14.75976a7.00786,7.00786,0,0,1,7,7V691.59808A7.00787,7.00787,0,0,1,418.52435,698.59808Z" transform="translate(-196.27362 -200.00788)" fill="#6c63ff"/><circle cx="196.71571" cy="182.69717" r="51" fill="#6c63ff"/><path d="M410.30072,605.205H373.61127a43.27708,43.27708,0,0,1-37.56043-65.05664l51.30933-88.87012a6.5,6.5,0,0,1,11.2583,0l50.27612,87.08057A44.56442,44.56442,0,0,1,410.30072,605.205Z" transform="translate(-196.27362 -200.00788)" fill="#2f2e41"/><path d="M405.02686,404.114c3.30591-.0918,7.42029-.20655,10.59-2.522a8.13274,8.13274,0,0,0,3.20007-6.07275,5.47084,5.47084,0,0,0-1.86035-4.49315c-1.65552-1.39894-4.073-1.72706-6.67823-.96144l2.69922-19.72558-1.98144-.27149-3.17322,23.18994,1.65466-.75928c1.91834-.87988,4.55164-1.32763,6.188.05518a3.51514,3.51514,0,0,1,1.15271,2.89551,6.14686,6.14686,0,0,1-2.38122,4.52783c-2.46668,1.80176-5.74622,2.03418-9.46582,2.13818Z" transform="translate(-196.27362 -200.00788)" fill="#2f2e41"/><rect x="226.50312" y="172.03238" width="10.77161" height="2" fill="#2f2e41"/><rect x="192.50312" y="172.03238" width="10.77161" height="2" fill="#2f2e41"/><path d="M380.99359,593.79839a6.94088,6.94088,0,0,1-.67077-2.85072l-2.51425-91.60708a14.3796,14.3796,0,0,1,28.75241-.62506l2.51381,91.60729a7.00744,7.00744,0,0,1-6.8456,7.15064l-14.75586.32069a7.01655,7.01655,0,0,1-6.47974-3.99576Z" transform="translate(-196.27362 -200.00788)" fill="#6c63ff"/><path d="M388.25747,345.00549c6.19637,8.10336,16.033,13.53931,26.42938,12.25223,9.90031-1.22567,18.06785-8.12619,20.117-18.0055a29.66978,29.66978,0,0,0-7.79665-26.1905c-7.00748-7.37032-17.03634-11.335-26.96311-12.69456-18.80446-2.57537-38.1172,4.04852-52.33518,16.4023a64.1102,64.1102,0,0,0-16.69251,22.37513,62.72346,62.72346,0,0,0-5.175,27.07767c.54633,18.375,8.595,36.71479,22.48271,48.90083a63.37666,63.37666,0,0,0,5.40808,4.23578c1.58387,1.11112,3.08464-1.48868,1.51415-2.59042-14.222-9.977-23.29362-26.21093-25.78338-43.26844a59.92391,59.92391,0,0,1,14.05278-48.33971c11.48411-13.058,28.32271-21.54529,45.7628-22.30575,17.54894-.76521,39.47915,7.06943,42.7631,26.60435,1.47191,8.7558-1.801,17.95926-9.82454,22.3428-8.59053,4.69326-19.12416,2.76181-26.50661-3.29945a30.448,30.448,0,0,1-4.86258-5.01092c-1.157-1.51313-3.76387-.02044-2.59041,1.51416Z" transform="translate(-196.27362 -200.00788)" fill="#2f2e41"/><rect id="fc777aff-63b1-4720-84dc-e3a9c20790b9" data-name="ab2e16f2-9798-47da-b25d-769524f3c86f" x="484.20919" y="242.03206" width="437.1948" height="207.45652" transform="translate(-238.48792 -95.97299) rotate(-8.21995)" fill="#f1f1f1"/><rect id="ecffa418-b240-4504-be04-512edea7ccda" data-name="bf81c03f-68cf-4889-8697-1102f95f97bb" x="496.79745" y="259.81556" width="412.19197" height="173.08746" transform="translate(-238.57266 -95.95442) rotate(-8.21995)" fill="#fff"/><rect id="b49ce3f1-9d75-4481-986b-3b6beb000c79" data-name="f065dccc-d150-492a-a09f-a7f3f89523f0" x="468.80837" y="231.16611" width="437.19481" height="18.57334" transform="translate(-223.58995 -99.25677) rotate(-8.21995)" fill="#e5e5e5"/><circle id="a4219562-805a-49cd-8b89-b1f92f7a9e75" data-name="bdbbf39c-df25-4682-8b85-5a6af4a1bd14" cx="288.67474" cy="71.34324" r="3.4425" fill="#fff"/><circle id="b0f6399c-6944-4f74-a888-473f61f9730c" data-name="abcd4292-0b1f-4102-9b5e-e8bbd87baabc" cx="301.6071" cy="69.47507" r="3.4425" fill="#fff"/><circle id="b03f93dc-2c99-4323-9b17-02f51b8830c0" data-name="a3fb731e-8b3d-41ca-96f2-91600dc0b434" cx="314.54005" cy="67.6068" r="3.4425" fill="#fff"/><rect id="a6067cfc-0392-4d68-afe4-e34d11a8f0ac" data-name="ab2e16f2-9798-47da-b25d-769524f3c86f" x="370.25796" y="100.18309" width="437.1948" height="207.45652" fill="#e6e6e6"/><rect id="ecd65817-7467-4dbd-a435-c0f1d9841c98" data-name="bf81c03f-68cf-4889-8697-1102f95f97bb" x="382.75969" y="117.97286" width="412.19197" height="173.08746" fill="#fff"/><rect id="eea6c39d-8a45-4eb1-bab9-6120f465de14" data-name="f065dccc-d150-492a-a09f-a7f3f89523f0" x="370.07154" y="88.19711" width="437.19481" height="18.57334" fill="#cbcbcb"/><circle id="ab9e51f9-7431-4d30-8193-f9435a6bd5c3" data-name="bdbbf39c-df25-4682-8b85-5a6af4a1bd14" cx="383.87383" cy="99.11864" r="3.4425" fill="#fff"/><circle id="a54ed687-3b0d-413b-b405-af8897a5c032" data-name="abcd4292-0b1f-4102-9b5e-e8bbd87baabc" cx="396.94043" cy="99.11864" r="3.4425" fill="#fff"/><circle id="fd1d2195-7e97-488f-8f4b-7061a06deb9a" data-name="a3fb731e-8b3d-41ca-96f2-91600dc0b434" cx="410.00762" cy="99.11864" r="3.4425" fill="#fff"/><rect x="620.27691" y="144.28855" width="58.05212" height="4.36334" fill="#e6e6e6"/><rect x="620.27691" y="157.09784" width="89.64514" height="4.36332" fill="#e6e6e6"/><rect x="621.20899" y="169.29697" width="73.05881" height="4.36332" fill="#e6e6e6"/><rect x="620.27691" y="182.68222" width="42.65054" height="4.36332" fill="#e6e6e6"/><rect x="620.27691" y="195.75677" width="64.37073" height="4.36332" fill="#e6e6e6"/><rect x="593.81776" y="142.916" width="7.10843" height="7.10842" fill="#e6e6e6"/><rect x="593.81776" y="155.72527" width="7.10843" height="7.10841" fill="#e6e6e6"/><rect x="593.81776" y="167.92442" width="7.10843" height="7.10843" fill="#e6e6e6"/><rect x="593.81776" y="181.30967" width="7.10843" height="7.10843" fill="#e6e6e6"/><rect x="593.81776" y="194.38423" width="7.10843" height="7.10843" fill="#e6e6e6"/><rect x="620.27691" y="208.91306" width="58.05212" height="4.36332" fill="#e6e6e6"/><rect x="620.27691" y="221.72236" width="89.64514" height="4.36332" fill="#e6e6e6"/><rect x="621.20899" y="233.92149" width="73.05881" height="4.36332" fill="#e6e6e6"/><rect x="620.27691" y="247.30674" width="42.65054" height="4.36332" fill="#e6e6e6"/><rect x="620.27691" y="260.38129" width="64.37073" height="4.36332" fill="#e6e6e6"/><rect x="593.81776" y="207.54051" width="7.10843" height="7.10843" fill="#e6e6e6"/><rect x="593.81776" y="220.34979" width="7.10843" height="7.10841" fill="#e6e6e6"/><rect x="593.81776" y="232.54894" width="7.10843" height="7.10843" fill="#e6e6e6"/><rect x="593.81776" y="245.93419" width="7.10843" height="7.10843" fill="#e6e6e6"/><rect x="593.81776" y="259.00875" width="7.10843" height="7.10843" fill="#e6e6e6"/><rect x="436.63003" y="243.13905" width="58.05213" height="4.36333" fill="#e6e6e6"/><rect x="428.86266" y="254.4769" width="73.05881" height="4.36332" fill="#e6e6e6"/><path d="M699.66075,388.1056a37.91872,37.91872,0,0,1-55.87819,33.382l-.00736-.00737a37.907,37.907,0,1,1,55.88555-33.37461Z" transform="translate(-196.27362 -200.00788)" fill="#e6e6e6"/><circle cx="465.67554" cy="175.95347" r="10.30421" fill="#fff"/><path d="M679.54362,407.55657a53.11056,53.11056,0,0,1-35.56788-.13775l-.00738-.0051,7.6766-15.15329h20.60841Z" transform="translate(-196.27362 -200.00788)" fill="#fff"/><path d="M547.86351,482.19293c-17.96014,0-32.5719-15.52155-32.5719-34.60067,0-19.07858,14.61176-34.60014,32.5719-34.60014s32.5719,15.52156,32.5719,34.60014C580.43541,466.67138,565.82365,482.19293,547.86351,482.19293Zm0-60.4582c-13.13954,0-23.82929,11.59955-23.82929,25.85753s10.68975,25.85806,23.82929,25.85806,23.82928-11.60008,23.82928-25.85806S561.00305,421.73473,547.86351,421.73473Z" transform="translate(-196.27362 -200.00788)" fill="#6c63ff"/><path d="M578.70786,542.49212h-61.6887a20.54138,20.54138,0,0,1-20.51852-20.51826V461.46391a14.06356,14.06356,0,0,1,14.04747-14.04774h74.6308a14.06356,14.06356,0,0,1,14.04747,14.04774v60.50995A20.54138,20.54138,0,0,1,578.70786,542.49212Z" transform="translate(-196.27362 -200.00788)" fill="#3f3d56"/><path d="M559.88461,481.84022a12.0211,12.0211,0,1,0-17.48524,10.69829v18.808h10.92827v-18.808A12.01088,12.01088,0,0,0,559.88461,481.84022Z" transform="translate(-196.27362 -200.00788)" fill="#fff"/><path d="M578.27362,699.99212h-381a1,1,0,0,1,0-2h381a1,1,0,0,1,0,2Z" transform="translate(-196.27362 -200.00788)" fill="#3f3d56"/></svg>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" width="819.07045" height="584" viewBox="0 0 819.07045 584"
|
|
2
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<path d="M938.36645,683.35934c7.18382,12.69813,1.0921,55.58546,1.0921,55.58546s-39.89068-16.88557-47.07316-29.57842a26.41318,26.41318,0,0,1,45.98106-26.007Z"
|
|
4
|
+
transform="translate(-190.46477 -158)" fill="#f1f1f1"/>
|
|
5
|
+
<path d="M940.037,738.8895l-.84744.17853c-8.16221-38.77834-36.66552-65.075-36.95246-65.33607l.58274-.64064C903.1088,673.35408,931.81545,699.82958,940.037,738.8895Z"
|
|
6
|
+
transform="translate(-190.46477 -158)" fill="#fff"/>
|
|
7
|
+
<path d="M1003.63788,697.81816c-9.74789,17.68309-64.70648,41.63828-64.70648,41.63828s-9.06086-59.2631.68177-76.94077a36.55622,36.55622,0,1,1,64.02471,35.30249Z"
|
|
8
|
+
transform="translate(-190.46477 -158)" fill="#f1f1f1"/>
|
|
9
|
+
<path d="M939.41646,740.09789l-.82555-.869c39.76932-37.7685,50.06448-90.44509,50.16385-90.97274l1.17793.2216C989.83286,649.009,979.47454,702.05508,939.41646,740.09789Z"
|
|
10
|
+
transform="translate(-190.46477 -158)" fill="#fff"/>
|
|
11
|
+
<path d="M383.03037,563.91909a75.18955,75.18955,0,0,1-18.63955-2.41115l-1.19992-.332-1.11309-.55768c-40.242-20.17656-74.192-46.827-100.90712-79.21137a299.86458,299.86458,0,0,1-50.94916-90.47014,348.20978,348.20978,0,0,1-19.69086-122.66453c.017-.87611.03139-1.55256.03139-2.01861,0-20.28912,11.262-38.0913,28.69121-45.35357,13.33947-5.55813,134.45539-55.30526,143.20632-58.89963,16.48038-8.25772,34.062-1.36535,36.87554-.16006,6.31094,2.58025,118.2752,48.375,142.47062,59.89621,24.93578,11.87415,31.5889,33.20566,31.5889,43.93787,0,48.58822-8.415,93.99778-25.01129,134.9674a312.51684,312.51684,0,0,1-56.16213,90.51087c-45.84677,51.59381-91.7057,69.8841-92.14828,70.0453A50.11,50.11,0,0,1,383.03037,563.91909Zm-10.78453-26.71374c3.97586.89138,13.12949,2.22845,19.0957.052,7.57929-2.76408,45.96243-22.668,81.83036-63.03189,49.55709-55.769,74.70242-125.87542,74.73919-208.37177-.08852-1.67134-1.27542-13.59188-17.06153-21.10867C507.12331,233.44669,390.746,185.86014,389.5732,185.38052l-.32154-.13631c-2.43886-1.022-10.20055-3.1747-15.55082-.371l-1.07124.49943c-1.2972.53279-129.86317,53.33754-143.57481,59.05064-9.59168,3.99651-13.00917,13.89729-13.00917,21.83037,0,.57973-.015,1.423-.03619,2.51294C214.91358,325.21375,227.97577,464.11262,372.24584,537.20535Z"
|
|
12
|
+
transform="translate(-190.46477 -158)" fill="#3f3d56"/>
|
|
13
|
+
<path d="M367.78865,173.58611S238.05415,226.86992,224.154,232.66164s-20.85019,19.69184-20.85019,33.592S192.87875,461.53177,367.78865,549.22768c0,0,15.87478,4.39241,27.91882,0s164.9454-78.52642,164.9454-283.55325c0,0,0-20.85018-24.32522-32.43362s-141.93358-59.6547-141.93358-59.6547S379.95125,167.21522,367.78865,173.58611Z"
|
|
14
|
+
transform="translate(-190.46477 -158)" fill="#6c63ff"/>
|
|
15
|
+
<path d="M381.68877,215.28648V499.53673S250.79593,436.53013,251.95428,270.887Z"
|
|
16
|
+
transform="translate(-190.46477 -158)" opacity="0.1"/>
|
|
17
|
+
<polygon
|
|
18
|
+
points="192.931 261.581 151.235 207.969 175.483 189.11 195.226 214.494 261.921 144.088 284.224 165.219 192.931 261.581"
|
|
19
|
+
fill="#fff"/>
|
|
20
|
+
<path d="M1008.53523,742h-381a1,1,0,0,1,0-2h381a1,1,0,0,1,0,2Z" transform="translate(-190.46477 -158)"
|
|
21
|
+
fill="#cacaca"/>
|
|
22
|
+
<polygon points="547.206 568.237 562.671 568.236 570.029 508.583 547.203 508.584 547.206 568.237" fill="#ffb8b8"/>
|
|
23
|
+
<path d="M733.72532,721.18754l30.45762-.00123h.00123a19.411,19.411,0,0,1,19.41,19.40966v.63075l-49.86791.00185Z"
|
|
24
|
+
transform="translate(-190.46477 -158)" fill="#2f2e41"/>
|
|
25
|
+
<polygon points="599.206 568.237 614.671 568.236 622.029 508.583 599.203 508.584 599.206 568.237" fill="#ffb8b8"/>
|
|
26
|
+
<path d="M785.72532,721.18754l30.45762-.00123h.00123a19.411,19.411,0,0,1,19.41,19.40966v.63075l-49.86791.00185Z"
|
|
27
|
+
transform="translate(-190.46477 -158)" fill="#2f2e41"/>
|
|
28
|
+
<polygon points="571.514 358.75 575.224 548 545.213 546.139 524.393 425.597 517.817 343.408 571.514 358.75"
|
|
29
|
+
fill="#2f2e41"/>
|
|
30
|
+
<path d="M813.48315,484.9709,817.68877,709l-35-1-7.56-133.17025-13.15012-48.21688-53.6962-25.20436,8.76674-60.27119,78.90049-1.09584Z"
|
|
31
|
+
transform="translate(-190.46477 -158)" fill="#2f2e41"/>
|
|
32
|
+
<circle cx="562.67565" cy="99.59389" r="26.83826" fill="#ffb8b8"/>
|
|
33
|
+
<polygon
|
|
34
|
+
points="584.936 137.738 589.047 143.966 600.006 174.649 591.239 294.095 539.734 295.192 533.16 158.211 546.933 140.995 584.936 137.738"
|
|
35
|
+
fill="#ccc"/>
|
|
36
|
+
<path d="M702.80325,319.499l-8.76674-1.09584s-2.19169,1.09584-3.2875,8.76671-14.24592,75.613-14.24592,75.613l17.53342,83.28385,19.7251-26.30016-12.05417-46.02526,12.05424-46.0253Z"
|
|
37
|
+
transform="translate(-190.46477 -158)" fill="#2f2e41"/>
|
|
38
|
+
<polygon
|
|
39
|
+
points="624.114 160.404 630.689 160.404 647.127 249.166 631.785 318.204 616.443 293 620.826 265.604 618.635 241.496 610.964 227.249 624.114 160.404"
|
|
40
|
+
fill="#2f2e41"/>
|
|
41
|
+
<path d="M768.99945,257.59388l-4.87969-1.21993s-3.65974-20.73866-12.19924-18.29882-30.498,4.8797-30.498-4.87969,20.73867-18.29882,32.93783-17.0789,27.77947,5.267,31.71794,23.17848c6.31357,28.713-13.02638,35.96549-13.02638,35.96549l.32185-1.04544a16.28235,16.28235,0,0,0-4.37432-16.62119Z"
|
|
42
|
+
transform="translate(-190.46477 -158)" fill="#2f2e41"/>
|
|
43
|
+
<path d="M695.13238,318.40319l35.06691-14.24592,8.2188-6.02712,24.65642,109.03608,11.5063-112.32365,45.47733,23.56058L804.7164,392.92027l-2.19168,28.49185,6.57505,23.01263s23.0126,16.43761,15.34174,33.971-16.43761,18.6293-16.43761,18.6293-37.25859-35.06688-39.45021-43.83362-5.47918-24.10847-5.47918-24.10847-18.6293,70.13377-40.546,69.0379-21.91679-24.10848-21.91679-24.10848l5.47918-24.10848,8.76674-25.20432-4.38337-41.64192Z"
|
|
44
|
+
transform="translate(-190.46477 -158)" fill="#2f2e41"/>
|
|
45
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 671.29 895.84"><defs><style>.cls-1{fill:#74baab;}.cls-2{fill:#ec8c92;}.cls-3{fill:#274d76;}.cls-4{fill:#93b4f6;}.cls-5{fill:#fff3a1;}.cls-6{fill:#f2bdba;}.cls-7{fill:#fff;}</style></defs><title>glider</title><g id="Background"><path class="cls-1" d="M1184,924.54c4.3-13,34.58-40.85,37.85-39.49s-21.37,17.23-32.41,44.12C1188.78,930.83,1181.27,932.83,1184,924.54Z" transform="translate(-687.18 -88.37)"/><path class="cls-2" d="M1194.76,880.35c3.11-6.62,12.14-3.79,19.81-1.07-3.31-9.91,1.57-22,9.54-20.16s2.18,14-.35,20.63c5.15-.71,14.62-6.25,18.14,0s-7.86,6.83-13,6.15c1.78,4,12.42,14.65,2.47,15.79-7.19.83-11-3.06-13.15-12.1C1204.43,889.77,1190,890.49,1194.76,880.35Z" transform="translate(-687.18 -88.37)"/><path class="cls-1" d="M1202.79,902.64s22.39,3.38,24.2,10.85C1224.57,919.55,1209.33,914.11,1202.79,902.64Z" transform="translate(-687.18 -88.37)"/><rect class="cls-1" x="1135.37" y="956.65" width="20.73" height="2" transform="translate(-1016.65 637.8) rotate(-30.97)"/><path class="cls-1" d="M1114.8,951.42l-1.33-1.5c6-5.38,14.56-12.17,21-14l.55,1.93C1128.94,939.58,1120.68,946.18,1114.8,951.42Z" transform="translate(-687.18 -88.37)"/><path class="cls-1" d="M1003.16,975.42l-1.4-1.43c7.14-7,17.26-16.21,24.91-20.43l1,1.76C1020.19,959.42,1010.21,968.52,1003.16,975.42Z" transform="translate(-687.18 -88.37)"/><path class="cls-1" d="M994.49,922.7l-1.61-1.19c4.14-5.6,10.21-12.69,15.61-14.62l.67,1.88C1005.32,910.15,1000.11,915.09,994.49,922.7Z" transform="translate(-687.18 -88.37)"/><path class="cls-1" d="M965.85,924.7l-1.69-1.06c.44-.71,10.85-17.28,19-21.6l1,1.76C976.43,907.88,966,924.53,965.85,924.7Z" transform="translate(-687.18 -88.37)"/><path class="cls-1" d="M956.65,972.72,955,971.65c4.14-6.54,10.52-15.34,17.44-20.15l1.14,1.64C966.89,957.76,960.69,966.34,956.65,972.72Z" transform="translate(-687.18 -88.37)"/><path class="cls-1" d="M863.19,943l-1.92-.57c.18-.59,4.44-14.44,14.34-24.07l1.39,1.44C867.47,929.11,863.23,942.91,863.19,943Z" transform="translate(-687.18 -88.37)"/><path class="cls-1" d="M835.83,952.63l-1.9-.63c.2-.59,5-14.67,15.35-25.86l1.47,1.36C840.67,938.36,835.87,952.49,835.83,952.63Z" transform="translate(-687.18 -88.37)"/><path class="cls-1" d="M1283.09,984.21a149,149,0,0,0-14.16-17.73,4.08,4.08,0,0,1,.58-6,50.42,50.42,0,0,1,9-5.25c.52-.24.84-.59.81-.88s-.41-.62-1-.78a30.27,30.27,0,0,0-17.66.61c-2.06.66-4.5-.15-7.05-2.32l-1-.83a6.16,6.16,0,0,1-2.19-4.33,42.05,42.05,0,0,0-8.51-23.34,1,1,0,0,0-1.05-.33,1,1,0,0,0-.73.92c-.11,1.55-.32,3.38-.61,5.45a6.61,6.61,0,0,1-10.11,4.66l-.13-.08a5,5,0,0,1-2.11-5.58l2.51-8.8a.42.42,0,0,0-.16-.48.43.43,0,0,0-.51,0l-6.63,4.29a10.26,10.26,0,0,1-10.44.43,318.87,318.87,0,0,0-36.49-16.65,4,4,0,0,1-2-5.84l5.14-8.08a1.41,1.41,0,0,0-.1-1.7,1.43,1.43,0,0,0-1.66-.43l-18.39,7.28a11.8,11.8,0,0,1-7.76.29c-11.11-3.38-22.74-6.37-34.58-8.87a2.58,2.58,0,0,1-1.93-1.78,2.56,2.56,0,0,1,.62-2.54c2.16-2.21,3.92-4.05,5.59-5.79,2.46-2.57,4.78-5,7.94-8.15a1,1,0,0,0,.14-1.21.92.92,0,0,0-1.1-.43c-10,3-23.44,9-31.33,14.06a8,8,0,0,1-5.64,1.14c-23.3-3.84-43.61-5.34-72.42-5.34-15,0-30.18.7-45.06,2.06a2.74,2.74,0,0,1-2.75-1.58l-1.08-2.31a1.43,1.43,0,0,0-2-.65l-5.91,3.27a4.82,4.82,0,0,1-6.68-2.12l-.28-.58a.65.65,0,0,0-.44-.35.65.65,0,0,0-.55.11l-4,3a2.7,2.7,0,0,1-4.33-2.16l0-5.67a1.42,1.42,0,0,0-.1-.84,1.11,1.11,0,0,0-.25.25l-9.22,12.26a10.12,10.12,0,0,1-5.82,3.37c-35,6.53-63.48,15.45-89.77,28.06a5.23,5.23,0,0,1-5.46-.53,82.94,82.94,0,0,0-35.06-15.48.55.55,0,0,0-.64.35.57.57,0,0,0,.2.73c6,4.37,11.27,8.37,15.53,11.89a3.48,3.48,0,0,1-2.2,6.16l-7.49,0a.44.44,0,0,0-.46.36.44.44,0,0,0,.23.52c1.62.84,3.15,1.72,4.55,2.59a5.87,5.87,0,0,1,0,10c-4.14,2.58-8.17,5.26-12,8a5,5,0,0,1-6.79-1l-7.6-9.5a1.75,1.75,0,0,0-.25-.27,1.73,1.73,0,0,0,0,.95l3.81,15.07a3.72,3.72,0,0,1-1.22,3.89l-.58.48a3.3,3.3,0,0,1-3.25.56c-3.5-1.28-13.19-3.85-27.57,0,7.47,1.64,13.34,3.75,17.43,6.29a3,3,0,0,1,1.67,2.43,2,2,0,0,1-.58,1.46A4.45,4.45,0,0,1,769,962a46.34,46.34,0,0,0-18.14,4.54.75.75,0,0,0,.37,1.41,51.11,51.11,0,0,1,8.55.39,2.75,2.75,0,0,1,2.2,1.75,2.81,2.81,0,0,1-.47,2.82c-3.05,3.67-5.92,7.48-8.52,11.33l-1.65-1.12A142.47,142.47,0,0,1,760,971.6a.84.84,0,0,0,.14-.82.77.77,0,0,0-.62-.49,48.1,48.1,0,0,0-8.21-.37,2.75,2.75,0,0,1-2.73-2,2.71,2.71,0,0,1,1.37-3.13,47.93,47.93,0,0,1,19-4.77c1.39-.05,1.83-.45,1.88-.59s-.26-.46-.74-.75c-3.89-2.42-9.54-4.45-16.79-6a2,2,0,0,1-.09-3.9c14.93-4,25.09-1.25,28.77.1a1.3,1.3,0,0,0,1.28-.23l.58-.48a1.73,1.73,0,0,0,.57-1.83l-3.8-15.07a2.75,2.75,0,0,1,1-3.36,2.13,2.13,0,0,1,2.7.94l7.58,9.47a3,3,0,0,0,4.07.59c3.83-2.73,7.89-5.43,12.07-8a3.87,3.87,0,0,0,0-6.6c-1.36-.84-2.85-1.69-4.42-2.51a2.47,2.47,0,0,1,1.13-4.65l7.51,0a1.44,1.44,0,0,0,1.38-1,1.47,1.47,0,0,0-.46-1.65c-4.22-3.49-9.41-7.46-15.42-11.81a2.6,2.6,0,0,1,2-4.67,85.23,85.23,0,0,1,35.92,15.86,3.2,3.2,0,0,0,3.37.32c26.46-12.69,55.14-21.66,90.28-28.22a8.05,8.05,0,0,0,4.62-2.66L943,871a2.21,2.21,0,0,1,2.57-1A2.64,2.64,0,0,1,947,872.9l0,5.57a.66.66,0,0,0,.39.62.68.68,0,0,0,.73-.06l4-3a2.68,2.68,0,0,1,2.22-.47,2.63,2.63,0,0,1,1.77,1.43l.28.58A2.75,2.75,0,0,0,958,879a2.78,2.78,0,0,0,2.22-.22l5.91-3.27a3.43,3.43,0,0,1,4.77,1.55l1.08,2.32a.73.73,0,0,0,.75.43c15-1.37,30.17-2.07,45.25-2.07,28.93,0,49.33,1.51,72.74,5.37a6.08,6.08,0,0,0,4.24-.85c8-5.13,21.71-11.28,31.84-14.3a2.93,2.93,0,0,1,3.39,1.32,3,3,0,0,1-.45,3.65c-3.14,3.14-5.45,5.56-7.9,8.12-1.68,1.75-3.44,3.59-5.61,5.81a.55.55,0,0,0-.13.56.56.56,0,0,0,.43.4c11.89,2.52,23.58,5.52,34.75,8.92a9.81,9.81,0,0,0,6.44-.24l18.38-7.28a3.46,3.46,0,0,1,4.19,5.07l-5.14,8.07A2,2,0,0,0,1175,904a2,2,0,0,0,1.18,1.24A318,318,0,0,1,1212.89,922a8.26,8.26,0,0,0,8.41-.35l6.63-4.29a2.45,2.45,0,0,1,3.68,2.73l-2.52,8.8a3,3,0,0,0,1.27,3.35l.12.08a4.62,4.62,0,0,0,7.06-3.26c.29-2,.49-3.81.6-5.32a3,3,0,0,1,2.13-2.68,3,3,0,0,1,3.21,1,43.52,43.52,0,0,1,8.94,24.48,4.18,4.18,0,0,0,1.48,2.91l1,.83c1.4,1.19,3.42,2.49,5.16,2a32.13,32.13,0,0,1,18.79-.64,3,3,0,0,1,2.45,2.55,3,3,0,0,1-2,2.86,48,48,0,0,0-8.6,5,2.07,2.07,0,0,0-.83,1.48,2,2,0,0,0,.53,1.58,150.42,150.42,0,0,1,14.35,18Z" transform="translate(-687.18 -88.37)"/><path d="M1346.38,845.5a13.13,13.13,0,0,1-4.88-1l-167.24-67.1a11.31,11.31,0,0,1-6.85-6.91,12.84,12.84,0,0,1,.43-8.82c2.38-5.94,8.88-10.66,16.24-7.71l12,4.8a2.52,2.52,0,0,0,2.23.11c2.43-1.23,4-7.6,5.83-15,.55-2.23,1.11-4.5,1.75-6.88l.12-.44c2.51-9.4,7.69-29,29.82-28.05,8.24.33,12.21.79,19.4,1.61l.18,0c1.82.21,3.86.45,6.23.71,6.65.73,11.07,2.47,14.37,5.64,4,3.85,6.09,9.79,6.38,18.16.4,11.62,3,14.23,7.65,15,40.13,6.49,40,23.82,39.92,40.58,0,1,0,2,0,3,0,10,1,19.67,8.08,22.5l12.61,5a12,12,0,0,1,7.18,7.28,13.45,13.45,0,0,1-.34,9.38,13.12,13.12,0,0,1-5.88,6.76A10.85,10.85,0,0,1,1346.38,845.5Zm-4.13-2.85a9.66,9.66,0,0,0,8.37-.21,11.29,11.29,0,0,0,5-5.75,11.58,11.58,0,0,0,.31-8,10.07,10.07,0,0,0-6-6.07l-12.6-5.06c-8.15-3.27-9.31-13.63-9.34-24.34,0-1,0-2,0-3,.1-15.92.2-32.38-38.24-38.6-7.32-1.18-9-7.33-9.33-16.88-.27-7.82-2.16-13.32-5.77-16.79-3-2.84-7-4.41-13.2-5.1l-6.24-.7-.16,0c-7.16-.82-11.1-1.27-19.27-1.6-20.48-.81-25.43,17.67-27.81,26.57l-.12.44c-.63,2.36-1.19,4.62-1.73,6.79-2.11,8.55-3.63,14.7-6.88,16.33a4.58,4.58,0,0,1-3.87,0l-12-4.8c-6.14-2.47-11.61,1.56-13.63,6.6a10.81,10.81,0,0,0-.4,7.44,9.34,9.34,0,0,0,5.7,5.68Z" transform="translate(-687.18 -88.37)"/><path d="M1345.13,641.11a10.38,10.38,0,0,1-1.88-.18h0L1221.14,618.3a8.09,8.09,0,0,1-5.78-3.88,9.2,9.2,0,0,1-.94-6.23,10.24,10.24,0,0,1,3.33-5.86,8.14,8.14,0,0,1,7-1.8l8.73,1.61c.77.15,1.09,0,1.27-.17,1.36-1.06,1.57-5.73,1.78-10.67.07-1.57.14-3.19.25-4.9l0-.31c.43-6.77,1.31-20.86,16.6-23.29,5.63-.89,8.37-1.13,13.35-1.55l.27,0,4.16-.36c4.66-.41,7.95.18,10.66,1.91,3.31,2.1,5.57,5.9,6.92,11.6,1.8,7.58,3.81,9,6.89,8.84,28.26-1.08,30.67,11.31,32.8,22.24l0,.2c.12.61.23,1.22.36,1.83,1.36,6.65,3.31,12.94,8.27,13.86l9.2,1.7a8.55,8.55,0,0,1,6,4.09,9.59,9.59,0,0,1,1.09,6.6C1352.72,637.49,1349.87,641.11,1345.13,641.11Zm-1.52-2.15c4.55.85,7.21-2.2,7.84-5.59a7.69,7.69,0,0,0-.84-5.22,6.65,6.65,0,0,0-4.69-3.13l-9.2-1.71c-6.13-1.13-8.37-8.08-9.87-15.42-.13-.61-.25-1.23-.37-1.85l0-.19c-2.17-11.13-4.22-21.64-30.77-20.63-5.33.19-7.35-3.82-8.9-10.38-1.23-5.17-3.21-8.56-6-10.37-2.32-1.48-5.22-2-9.41-1.6l-4.17.35-.26,0c-4.94.41-7.66.64-13.22,1.53-13.7,2.18-14.49,14.71-14.91,21.44l0,.31c-.11,1.69-.18,3.3-.25,4.85-.27,6.12-.46,10.53-2.55,12.17a3.41,3.41,0,0,1-2.87.56l-8.73-1.62a6.21,6.21,0,0,0-5.3,1.37,8.19,8.19,0,0,0-2.65,4.69,7.12,7.12,0,0,0,.71,4.87,6.12,6.12,0,0,0,4.4,2.92L1343.61,639Z" transform="translate(-687.18 -88.37)"/><path d="M696.34,841.4a8.23,8.23,0,0,1-3.76-.9,10,10,0,0,1-4.53-5.09,11.05,11.05,0,0,1-.45-7.29,8.81,8.81,0,0,1,5.24-5.74l8.95-3.73c.82-.34,1-.72,1.11-1,.62-1.83-2-6.25-4.75-10.92-.89-1.5-1.78-3-2.69-4.62l-.17-.3c-3.64-6.42-11.22-19.8,1.26-31.1,4.62-4.17,7-6,11.29-9.38l.13-.1,3.69-2.89c4-3.15,7.35-4.57,10.84-4.6h.14c4.21,0,8.48,2.12,13.05,6.46,6.22,5.91,8.91,6,11.7,4,25.14-17.81,34.72-8,43.16.75l1.58,1.62c5.24,5.3,10.8,9.9,15.94,7.76l9.44-3.93c5.88-2.45,10.88.89,12.78,5.46,1.79,4.3,1,10-5,12.53L700.11,840.6A9.79,9.79,0,0,1,696.34,841.4Zm26.3-85.64h-.12c-3,0-6,1.31-9.62,4.17l-3.7,2.9-.12.09c-4.28,3.33-6.63,5.17-11.18,9.29-11.3,10.23-4.25,22.66-.87,28.64l.17.3c.9,1.6,1.79,3.1,2.65,4.55,3.41,5.77,5.86,9.91,4.94,12.61a3.63,3.63,0,0,1-2.23,2.17l-8.95,3.73a6.86,6.86,0,0,0-4.09,4.48,9,9,0,0,0,.38,5.94,7.88,7.88,0,0,0,3.59,4.08,6.83,6.83,0,0,0,5.85,0l125.22-52.2c4.72-2,5.35-6.4,3.89-9.92s-5.51-6.33-10.17-4.39l-9.44,3.94c-6.23,2.6-12.4-2.41-18.13-8.2l-1.59-1.63c-8.65-8.92-16.83-17.34-40.58-.52-4.69,3.32-8.92.87-14.23-4.17C730.13,757.7,726.31,755.76,722.64,755.76Z" transform="translate(-687.18 -88.37)"/></g><g id="man"><path class="cls-3" d="M808.24,655.18l93,156.09a15.43,15.43,0,0,1-4.33,21.06L878.1,845.12a5.81,5.81,0,0,0,3.27,10.61h67.22a62,62,0,0,0,20.16-3.36l42.47-14.54c18.14-6.21,23.28-27.53,13.49-44l-46.59-83,2.22-.79a68.32,68.32,0,0,0,34.19-102l-4.67-7.08H831.23C803.67,600.92,793.61,631.82,808.24,655.18Z" transform="translate(-687.18 -88.37)"/><path class="cls-1" d="M926.08,655.18l93,156.09a15.44,15.44,0,0,1-4.34,21.06l-18.78,12.79a5.81,5.81,0,0,0,3.27,10.61h67.23a62,62,0,0,0,20.15-3.36l42.47-14.54c18.14-6.21,23.29-27.53,13.5-44l-46.6-83,2.22-.79a68.32,68.32,0,0,0,34.19-102l-4.67-7.08H949.08C921.51,600.92,911.46,631.82,926.08,655.18Z" transform="translate(-687.18 -88.37)"/><path class="cls-4" d="M836,90.53c80.75,35.71,320.13,220.31,437.34,301.59,13.43,9.3,15.45,31.14-13.91,30.88L732.7,418.42c-9.83-.08-11.06-9.26-8.83-18.83,0,0,58.92-265.9,79.32-302.65C807,89.69,824.88,85.61,836,90.53Z" transform="translate(-687.18 -88.37)"/><path class="cls-5" d="M790,446.61c6.83-24,27.27-38.26,68.4-43.73,20-2.66,44.28-2.49,72.57-2.49,134.51,0,255.78,101.76,255.78,186.09,0,52-63.4,70.6-183.87,14.76-50.08-.69-86.39-.46-131.23-.32C827.37,540.81,779.35,483.93,790,446.61Z" transform="translate(-687.18 -88.37)"/><path class="cls-2" d="M904.44,479h-13.2a10.62,10.62,0,0,1-10.62-10.62V386.42h30l20.42,22.25a27,27,0,0,1,7.11,18.27v18.29A33.74,33.74,0,0,1,904.44,479Z" transform="translate(-687.18 -88.37)"/><path class="cls-6" d="M921.55,389.92h-1a2.12,2.12,0,0,1-2.12-2.12V362.39c6.72-3.86,4.89-14.51,3-18.75-2-4.54-5.15-4.93-6-2-1.77,6.15-7.31,7.15-10,7.09-9.61-.22-10.24-8.55-26.42-8.24a17.67,17.67,0,0,0-17.2,17.75v80.49A10.22,10.22,0,0,0,872,448.92h20.7a25.7,25.7,0,0,0,25.7-25.7v-1.39a4.72,4.72,0,0,1,3-4.44,9.79,9.79,0,0,0,6.33-9.15V396.05A6.13,6.13,0,0,0,921.55,389.92Z" transform="translate(-687.18 -88.37)"/><path d="M907.73,385.61H855.26a3.51,3.51,0,0,0-3.53,3.44c-.05,2.2-.05,3.66-.05,5.69v.51c0,10.81,6.73,19.62,15,19.62,6.29,0,12-5.19,14.09-12.9a.74.74,0,0,1,.7-.57.75.75,0,0,1,.7.57c2.14,7.71,7.8,12.9,14.09,12.9,8.27,0,15-8.81,15-19.62v-6.11A3.54,3.54,0,0,0,907.73,385.61Zm1.53,9.64c0,9.73-5.82,17.62-13,17.62-5.57,0-10.32-4.76-12.16-11.43a2.72,2.72,0,0,0-5.26,0c-1.85,6.67-6.59,11.43-12.16,11.43-7.18,0-13-7.89-13-17.62,0-2.3,0-3.8.05-6.15a1.53,1.53,0,0,1,1.53-1.49h52.47a1.53,1.53,0,0,1,1.53,1.53Z" transform="translate(-687.18 -88.37)"/><path d="M870.92,398.66h-.15A4.76,4.76,0,0,1,866,393.9h0a1.41,1.41,0,0,1,1.41-1.41h6.86a1.41,1.41,0,0,1,1.41,1.41h0A4.76,4.76,0,0,1,870.92,398.66Z" transform="translate(-687.18 -88.37)"/><path d="M892.57,398.66h-.15a4.77,4.77,0,0,1-4.77-4.76h0a1.41,1.41,0,0,1,1.41-1.41h6.87a1.41,1.41,0,0,1,1.4,1.41h0A4.76,4.76,0,0,1,892.57,398.66Z" transform="translate(-687.18 -88.37)"/><path d="M894.12,424.14H882.29v-2h11.83a3.83,3.83,0,0,0,3.23-1.76l1.68,1.08A5.82,5.82,0,0,1,894.12,424.14Z" transform="translate(-687.18 -88.37)"/><path class="cls-2" d="M953.92,567.3l-10.16,14a12.65,12.65,0,0,0,4.31,18.6l11.8,6.27a17.83,17.83,0,0,0,22.89-5.41l4-5.64Z" transform="translate(-687.18 -88.37)"/><path class="cls-2" d="M896.83,567.3l10.16,14a12.65,12.65,0,0,1-4.31,18.6l-11.8,6.27A17.83,17.83,0,0,1,868,600.79l-4-5.64Z" transform="translate(-687.18 -88.37)"/><path d="M989.73,513.57a98.39,98.39,0,0,1-8.39-75.49l1.92.56a96.39,96.39,0,0,0,8.22,74Z" transform="translate(-687.18 -88.37)"/><path d="M834.81,516c-12.37-26.27-14.49-49.69-6.87-76l1.93.56c-7.48,25.75-5.4,48.74,6.75,74.53Z" transform="translate(-687.18 -88.37)"/><path class="cls-7" d="M1136.62,491.8,922.05,275l-1.67-1.7-.41-.41-.36-.34-.71-.68a34.06,34.06,0,0,0-3-2.44,24.39,24.39,0,0,0-6.43-3.38,17.62,17.62,0,0,0-13.21.64,28.43,28.43,0,0,0-11.2,9.8l-10.57,15.85-42.27,63.4L747.69,482.55l-21.14,31.69-2.64,4-.66,1-.51.83c-.33.56-.72,1.09-1,1.67a32.39,32.39,0,0,0-2.93,7,27.39,27.39,0,0,0-.43,14.24,24.1,24.1,0,0,0,6.94,11.87,26.55,26.55,0,0,0,12.54,6.43,34.87,34.87,0,0,0,7.49.8l9.49,0,19.07-.08,152.5-.64c50.84-.4,101.67,0,152.5.16l37.81.1a37,37,0,0,0,14.67-3.34,31.92,31.92,0,0,0,11.4-9.11c6.19-7.79,8.89-18.64,7.66-29.09a46,46,0,0,0-4.47-15.16A49.41,49.41,0,0,0,1136.62,491.8Zm12.84-12.89a67.65,67.65,0,0,1,12.93,17.72,64.3,64.3,0,0,1,6.41,21.18,61.44,61.44,0,0,1-1.35,22.29,55.48,55.48,0,0,1-9.88,20.51,50.9,50.9,0,0,1-18,14.6,55.7,55.7,0,0,1-22.18,5.32l-1.4,0h-3.69l-4.76,0-9.53,0-19.07.07c-50.83.14-101.66.56-152.5.15l-152.5-.63-19.07-.08-9.56,0a51.74,51.74,0,0,1-11.42-1.33,44.44,44.44,0,0,1-20.82-11,42,42,0,0,1-11.87-20.68,45,45,0,0,1,.82-23.41,49.61,49.61,0,0,1,4.54-10.53c.44-.84,1-1.61,1.46-2.42l.75-1.18.67-1,2.68-4L733.52,473l85.73-126.28,42.85-63.13,10.72-15.78a47.12,47.12,0,0,1,7.52-8.37,40.44,40.44,0,0,1,4.62-3.52,35.2,35.2,0,0,1,5.24-2.85,33.09,33.09,0,0,1,24-1.18,39.55,39.55,0,0,1,10.43,5.36,49.58,49.58,0,0,1,4.41,3.55l1,1,1,.91,1.69,1.68Z" transform="translate(-687.18 -88.37)"/><path class="cls-4" d="M1170.79,517.57a65.86,65.86,0,0,0-6.62-21.84,69.35,69.35,0,0,0-13.3-18.24L934.07,263l-1.7-1.68-1-.93-1-1,0,0,0,0a49.71,49.71,0,0,0-4.59-3.69A40.88,40.88,0,0,0,914.81,250a35.18,35.18,0,0,0-11.08-1.82c-.59,0-1.18,0-1.76.05a34.94,34.94,0,0,0-12.59,3,36.86,36.86,0,0,0-5.52,3A43.38,43.38,0,0,0,879,258a49.28,49.28,0,0,0-7.84,8.73l-10.73,15.81-42.86,63.13L731.87,471.9l-21.43,31.57-2.68,3.94-.67,1,0,0,0,0-.75,1.18-.48.77c-.35.55-.71,1.13-1.05,1.76a52.55,52.55,0,0,0-4.7,10.92,46.77,46.77,0,0,0-.84,24.45,44.1,44.1,0,0,0,12.43,21.66,46.06,46.06,0,0,0,21.76,11.53,54.36,54.36,0,0,0,11.84,1.38l9.58,0,19.06.08,152.5.63c14.46.12,29.88.18,47.13.18,22,0,44.27-.1,65.85-.18q19.77-.09,39.54-.15l19.07-.07,9.53,0,4.76,0H1116l1.42,0a58.1,58.1,0,0,0,23-5.52,52.77,52.77,0,0,0,18.74-15.17,57.78,57.78,0,0,0,10.24-21.26A63,63,0,0,0,1170.79,517.57Zm-3.34,22.53a55.48,55.48,0,0,1-9.88,20.51,50.9,50.9,0,0,1-18,14.6,55.7,55.7,0,0,1-22.18,5.32l-1.4,0h-3.69l-4.76,0-9.53,0-19.07.07c-35.12.09-70.25.33-105.38.33q-23.56,0-47.12-.18l-152.5-.63-19.07-.08-9.56,0a51.74,51.74,0,0,1-11.42-1.33,44.44,44.44,0,0,1-20.82-11,42,42,0,0,1-11.87-20.68,45,45,0,0,1,.82-23.41,49.61,49.61,0,0,1,4.54-10.53c.44-.84,1-1.61,1.46-2.42l.75-1.18.67-1,2.68-4L733.52,473l85.73-126.28,42.85-63.13,10.72-15.78a47.12,47.12,0,0,1,7.52-8.37,40.44,40.44,0,0,1,4.62-3.52,35.2,35.2,0,0,1,5.24-2.85,32.86,32.86,0,0,1,11.88-2.84c.55,0,1.1-.05,1.65-.05a33.54,33.54,0,0,1,10.44,1.71,39.55,39.55,0,0,1,10.43,5.36,49.58,49.58,0,0,1,4.41,3.55l1,1,1,.91,1.69,1.68,216.8,214.54a67.65,67.65,0,0,1,12.93,17.72,64.3,64.3,0,0,1,6.41,21.18A61.44,61.44,0,0,1,1167.45,540.1Z" transform="translate(-687.18 -88.37)"/><path class="cls-4" d="M1146,504.81a49.41,49.41,0,0,0-9.36-13L922.05,275l-1.67-1.7-.41-.41-.36-.34-.71-.68a34.06,34.06,0,0,0-3-2.44,24.39,24.39,0,0,0-6.43-3.38,18,18,0,0,0-5.84-1,17.8,17.8,0,0,0-7.37,1.62,28.43,28.43,0,0,0-11.2,9.8l-10.57,15.85-42.27,63.4L747.69,482.55l-21.14,31.69-2.64,4-.66,1-.51.83c-.33.56-.72,1.09-1,1.67a32.39,32.39,0,0,0-2.93,7,27.39,27.39,0,0,0-.43,14.24,24.1,24.1,0,0,0,6.94,11.87,26.55,26.55,0,0,0,12.54,6.43,34.68,34.68,0,0,0,7.47.8v-2a32.93,32.93,0,0,1-7-.75,24.5,24.5,0,0,1-11.6-5.94,22,22,0,0,1-6.36-10.89,25.17,25.17,0,0,1,.4-13.2,30,30,0,0,1,2.75-6.53l0-.06,0-.06a7.73,7.73,0,0,1,.51-.87c.13-.21.27-.43.4-.66l.47-.76.65-1,2.64-4,21.13-31.69,84.53-126.79,42.28-63.4,10.56-15.85a26.28,26.28,0,0,1,10.36-9.08,15.63,15.63,0,0,1,6.55-1.45,15.9,15.9,0,0,1,5.19.88,22.13,22.13,0,0,1,5.9,3.1,30.26,30.26,0,0,1,2.82,2.29l.68.66.35.32.39.39,1.67,1.69L1135.2,493.21a47.21,47.21,0,0,1,9,12.48,43.51,43.51,0,0,1,4.29,14.5c1.18,10.11-1.52,20.43-7.24,27.63a29.88,29.88,0,0,1-10.7,8.54,34.54,34.54,0,0,1-13.84,3.15l-37.77-.1q-19.77-.06-39.53-.15c-21.58-.09-43.9-.18-65.86-.18-17.25,0-32.67.06-47.13.17l-152.5.64-19.06.08-9.5,0v2h0l9.49,0,19.07-.08,152.5-.64q23.57-.18,47.12-.17c35.13,0,70.26.23,105.38.33l37.81.1a37,37,0,0,0,14.67-3.34,31.92,31.92,0,0,0,11.4-9.11c6.19-7.79,8.89-18.64,7.66-29.09A46,46,0,0,0,1146,504.81Z" transform="translate(-687.18 -88.37)"/><path class="cls-6" d="M827.88,601c2.67,5,12.38,6,19.18.94,4,5.61,15.67,5.61,21.51-.94,8.65,8.26,29-.83,34.49-19.93-12.62,0-11.76-19.64.89-20.1-3.92-18-20.16-34.09-47.23-30.57-15.63,2-34.52,5.69-42.59,18.27-7.77,12.12-6.92,23.7-6.87,32.4C807.36,600.07,818,607.52,827.88,601Z" transform="translate(-687.18 -88.37)"/><path class="cls-3" d="M906.16,258.79c0-3.3,1.86-5.73,4.08-7.44,1.42-1.1.59-2.49-1.2-2.49h-7.65c-7,0-10.3,3.51-10.3,10.26s3.26,10.25,10.3,10.25h5.44c2.16,0,4.12-1.79,3.9-2.82C908.19,265.29,906.2,262.89,906.16,258.79Z" transform="translate(-687.18 -88.37)"/><path class="cls-6" d="M1022.87,601c-2.67,5-12.68,6-19.48.94-2.88,5.61-15.37,5.61-21.21-.94-8.8,8.4-29-1.4-34.81-21-6.85-23,9.94-54.41,46.66-49.64,20,2.59,45,8,46.73,30.79-10.36.07-13.48,19.88,2.73,19.88C1045.61,600,1032.79,607.52,1022.87,601Z" transform="translate(-687.18 -88.37)"/><rect x="1013.94" y="585.88" width="2" height="13.53" transform="translate(-813.46 785.27) rotate(-44.11)"/><rect x="994.03" y="587.01" width="2" height="12.67" transform="translate(-819.56 771.59) rotate(-44.11)"/><rect x="973.19" y="585.84" width="2" height="13.87" transform="translate(-825.03 756.97) rotate(-44.12)"/><rect x="822.26" y="587.05" width="2" height="11.5" transform="translate(-872.27 393.1) rotate(-29.46)"/><rect x="840.83" y="587.12" width="2" height="10.46" transform="translate(-869.65 402.11) rotate(-29.45)"/><rect x="862.87" y="587.08" width="2" height="11.11" transform="translate(-866.93 412.98) rotate(-29.45)"/><rect class="cls-7" x="948.18" y="287.12" width="2" height="124.07" transform="translate(-739.73 399.99) rotate(-28.11)"/><rect class="cls-7" x="872.1" y="172.54" width="2" height="68.33" transform="translate(-681.6 347.34) rotate(-28.11)"/><rect class="cls-7" x="828.15" y="101.39" width="2" height="46.07" transform="translate(-648.02 316.94) rotate(-28.11)"/><path d="M919.59,364.57c6.63-7.22,3.7-16.69,1.78-20.93-2-4.54-5.15-4.93-6-2-1.77,6.15-7.31,7.15-10,7.09-9.61-.22-10.24-8.55-26.42-8.24a17.82,17.82,0,0,0-17.2,17.75c0,15.18,14.49-2.3,26.66,6.18C905.37,376.19,915.05,369.52,919.59,364.57Z" transform="translate(-687.18 -88.37)"/><rect class="cls-7" x="232.2" y="731.82" width="68.05" height="2"/><rect x="346.9" y="731.82" width="80.05" height="2"/><rect x="1077.94" y="658.67" width="2" height="43.58" transform="translate(-882.16 526.73) rotate(-29.3)"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="524.67001" height="418.27099" viewBox="0 0 524.67001 418.27099" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M442.17403,400.47713c2.06599,.12871,3.20692-2.43846,1.64338-3.93389l-.1557-.61814c.0204-.04935,.04089-.09868,.06153-.14794,1.23211-2.94003,4.62545-4.33201,7.57137-3.11404,9.3142,3.85087-.51966,12.69986,.21957,18.68773,.25911,2.06671,8.35473,2.18034,7.89681,4.2086,4.30482-9.41207,6.56835-19.68889,6.56478-30.02306-.0009-2.59653-.14392-5.19297-.43543-7.78281-.23975-2.11845-.56985-4.22389-.9969-6.30999-2.30966-11.27639-7.30614-22.01572-14.51084-30.98461-3.46263-1.89129-1.35074-4.85018-3.09586-8.39544-.62694-1.27868-6.21792-1.30745-6.45092-2.70892,.25019,.03272,3.86434-3.721,2.6705-5.5767-.78555-1.22107-.54106-2.7763,.4681-3.82017,.09887-.1023,.19234-.2103,.27796-.32648,2.98093-4.04443,7.09003-3.33985,9.23695,2.15406,4.58304,2.31107,4.62871,6.14647,1.81834,9.83619-1.78798,2.34745-2.03264,5.52304-3.60129,8.03604,.16157,.20664,.32958,.40684,.49112,.61348,2.96237,3.79686,5.52482,7.87809,7.68524,12.16592-.61182-4.76599,.28705-10.50831,1.8215-14.21023,1.75933-4.24835,5.06953-7.8221,7.96883-11.49665,3.46275-4.38865,10.5104-2.39707,11.12286,3.15951,.00588,.05337,.0116,.10665,.01724,.16003-.42884,.24212-.84895,.49935-1.25929,.77094-2.33882,1.54808-1.52824,5.17442,1.24391,5.60071l.06278,.00965c-.1545,1.54372-5.63258,6.40679-6.01957,7.91187,3.70514,14.30838,.93282,16.19755-10.46624,16.43703l-.59825,.8522c1.08024,3.1058,1.94956,6.2861,2.60235,9.50743,.61462,2.99021,1.042,6.01282,1.28197,9.04845,.29847,3.82994,.27396,7.6795-.04769,11.50325l.01933-.13563c.81879-4.21143,3.1039-8.1457,6.42284-10.87249,4.94421-4.06436,11.93091-5.56281,17.2652-8.83022,2.56778-1.57285,5.85959,.45742,5.41241,3.4352l-.02177,.14262c-.79432,.32315-1.56922,.69808-2.31831,1.11814-.42921,.24237-.84965,.49978-1.26032,.77165-2.33916,1.54848-1.52796,5.1753,1.24498,5.60009l.06281,.00962c.0452,.00645,.08399,.01291,.12913,.0194-1.3617,3.23628-14.33553,7.80147-16.71149,10.39229-2.31031,12.49793-1.17531,12.12596-11.81075,8.49032h-.00647c-1.16085,5.06419-2.8578,10.01225-5.03931,14.72794l-18.0202,.00623c-.06471-.2002-.12288-.40688-.18109-.60712,1.66645,.10285,3.34571,.00534,4.98619-.29875-1.33757-1.64013-2.67509-3.29317-4.01266-4.93324-.0323-.03228-.05819-.06459-.08402-.09686l-.02036-.02517-1.85532-6.10724c.14644-1.35476,.38536-2.69828,.70958-4.02051l.00049-.00037v.00006Z" fill="#f2f2f2"/><path d="M251.74443,416.41995l-159.45702,.05516c-8.01074,.00277-15.18649-4.13684-19.19426-11.07295-2.00413-3.46855-3.00642-7.27337-3.00774-11.07904-.00132-3.80518,.99882-7.61119,3.00007-11.08063l79.67786-145.04905c4.00346-6.93937,11.17634-11.08346,19.18708-11.08623s15.18649,4.13635,19.19475,11.07295l79.78843,145.01196c1.99876,3.45927,2.99861,7.25971,2.99894,11.06293-.00015,3.80322-.99981,7.60874-3.00154,11.07868-4.00297,6.93889-11.17585,11.08346-19.1866,11.08623h.00002Zm-179.65463-22.09948c-.00026,3.46387,17.5953-4.00023,19.41817-.8451,3.64623,6.31026-6.50934,21.00225,.77874,20.99973,0,0,173.27016-3.828,176.91202-10.14078,1.82069-3.15639,2.73062-6.61911,2.72942-10.08102s-.91353-6.92351-2.73688-10.07864l-79.78845-145.01196c-3.63597-6.2922-10.16364-10.05801-17.45172-10.05549-7.28467,.00252-99.86105,161.74891-99.86132,165.21326h.00002Z" fill="#3f3d56"/><path d="M253.51521,414.41934c-1.99862,4.00069,91.61376,2.7712,92.72051,2.77082,0,0,26.3119-.58131,26.86492-1.53993,.27648-.47931,.41466-1.00515,.41448-1.53084s-.13873-1.05137-.4156-1.5305l-12.11626-22.02074c-.55215-.9555-1.54341-1.52736-2.65013-1.52698-.04608,.00002-.11394,.04093-.20168,.11933-16.16328,14.44385-36.0828,23.99237-57.75707,24.31469-23.047,.34272-46.73217,.6899-46.85919,.94416h.00002Z" fill="#3f3d56"/><path d="M0,417.0814c.00023,.66003,.53044,1.18982,1.19047,1.18959l522.28995-.18066c.65997-.00023,1.18982-.53038,1.18959-1.19041-.00023-.65997-.53044-1.18982-1.19041-1.18959l-522.28995,.18066c-.66003,.00023-1.18988,.53044-1.18965,1.19041Z" fill="#ccc"/><g><polygon points="403.87773 411.30541 394.83299 411.30765 390.51828 376.42194 403.86746 376.41823 403.87773 411.30541" fill="#a0616a"/><path d="M372.88925,411.11096h0c-.28145,.4744-.42951,2.00528-.42932,2.55685h0c.00059,1.6954,1.37542,3.06935,3.07089,3.06876l28.01047-.00969c1.15659-.0004,2.09391-.93832,2.09351-2.09496l-.0004-1.16617s1.38444-3.50542-1.46987-7.82444c0,0-3.54448,3.38386-8.84444-1.91244l-1.56336-2.82981-11.30656,8.27506-6.26838,.77377c-1.3714,.16927-2.58738-.02532-3.29241,1.16307h-.00012Z" fill="#2f2e41"/></g><g><polygon points="369.19708 381.46752 360.62951 384.36642 345.36911 352.70019 358.01396 348.42131 369.19708 381.46752" fill="#a0616a"/><path d="M339.77867,391.20807h0c-.11468,.53956,.23535,2.03724,.41217,2.5597h0c.54355,1.60589,2.28601,2.46714,3.89196,1.92358l26.53193-8.98019c1.09554-.3708,1.68312-1.55951,1.31228-2.65512l-.37389-1.10461s.18882-3.76416-3.8984-6.94155c0,0-2.27401,4.34084-8.99107,1.02096l-2.38732-2.18005-8.0607,11.46034-5.69037,2.74062c-1.24494,.59958-2.45919,.80471-2.74651,2.15628l-.00009,.00003Z" fill="#2f2e41"/></g><polygon points="355.22599 179.09003 337.68255 237.19081 316.97199 289.45207 349.76053 364.08569 361.91802 358.67731 347.37062 290.11706 377.87822 243.59436 392.11437 388.82623 404.27349 388.14652 420.76309 212.84336 423.11421 174.67566 355.22599 179.09003" fill="#2f2e41"/><path d="M408.20979,50.38513l-25.66813,4.73752-2.02258,11.48454-15.53439,7.43609-8.07702,84.4428s-13.50433,17.56819-2.69414,22.96862l68.9007-6.77904s3.37327-12.4903-.00473-13.67529-3.38832-31.01955-3.38832-31.01955l15.51573-61.36599-22.97048-8.09829-4.05664-10.13141Z" fill="#e6e6e6"/><circle cx="393.06995" cy="29.43589" r="20.7276" fill="#a0616a"/><path d="M406.79605,32.51227c-1.65401,.9055-.08471,5.22869-1.11848,5.60245-1.19492,.43202-5.55162-4.52715-5.60554-10.08176-.01633-1.68115,.37051-2.48839-.00155-4.48164-.48668-2.6073-1.98045-5.68253-3.36317-5.60089-.81965,.04839-1.62013,1.20723-1.67986,2.2414-.0837,1.44941,1.32419,2.01989,1.12139,2.80064-.38627,1.4871-6.29829,2.5138-8.40308,.00291-1.65013-1.9685-.38463-5.4247-1.12236-5.60167-.54378-.13045-1.12759,1.77241-3.35988,3.9226-.84103,.8101-2.09186,2.0149-2.80044,1.68159-1.02397-.48167-.28003-3.87624-.56157-3.92125-.23314-.03727-.37947,2.3487-1.67908,4.48223-1.66968,2.74103-5.11398,4.85374-6.72112,3.92377-.98466-.56978-1.06245-2.15606-1.12158-3.36084-.1245-2.53816-3.81308-8.37644-2.85882-11.09166,1.94221-5.5263,5.2701-1.63078,6.7752-3.47504,2.03756-2.49669,3.86572-1.15434,7.28133-3.92396,3.33668-2.70564,3.36577-5.42504,5.60011-5.604,2.01221-.16116,2.7278,1.98528,5.04242,1.67887,1.96079-.25957,2.38749-1.92436,3.92087-1.68198,1.40389,.2219,1.49646,1.68849,3.36201,2.23966,1.19101,.35188,1.45267-.15743,2.80103-.00097,2.80559,.32556,4.69002,2.88083,5.043,3.35949,1.36081,1.84526,.83282,2.62341,2.24236,4.48086,1.21555,1.6018,3.90913,.9216,4.92189,1.72162,3.30928,2.61409,4.73124,7.43497,4.75994,12.92962,.0201,3.8431-.48103,5.78482-1.59913,10.63564-.84901,3.6834-4.78175,8.44334-6.94987,10.5659-.58199,.56975-2.21351,2.167-3.36066,1.68178-1.08704-.45979-1.11995-2.52764-1.12139-2.80064-.0049-.93901,.24521-2.1009,2.23907-5.04263,2.09442-3.09006,2.92645-3.44271,2.79948-4.48262-.22445-1.83818-3.16424-3.52123-4.48263-2.79948h.00012Z" fill="#2f2e41"/><g><path d="M334.49457,225.75979c-.64513,5.40264,1.61895,10.11513,5.05699,10.52567s6.7481-3.63632,7.39324-9.03898c.28242-2.36492,.00723-4.59754-.6797-6.39504l2.44642-22.92684-10.7834-.91891-1.26717,22.69891c-1.09088,1.58522-1.88401,3.69026-2.16639,6.05519h.00003Z" fill="#a0616a"/><path d="M365.49095,73.49769s-5.58664,.07946-9.28568,7.30383c-1.96565,3.83897-12.48211,75.62767-12.48211,75.62767l-9.68742,58.80847,16.50214,.08313,12.859-55.69302,10.81723-32.30088-8.72315-53.82921Z" fill="#e6e6e6"/></g><path d="M411.92961,217.13028c-1.58023,5.20651-.17535,10.24237,3.13786,11.24797s7.28015-2.39987,8.86035-7.60638c.69172-2.27906,.81133-4.5254,.44941-6.41533l6.4191-22.14543-10.45641-2.79098-5.21815,22.12729c-1.35133,1.36996-2.50044,3.30383-3.19216,5.58289v-.00003Z" fill="#a0616a"/><path d="M423.41564,69.63219s8.10413-6.08248,14.86262,3.37246c6.75846,9.45495,9.48742,87.1388,9.48742,87.1388l-18.89796,47.96845-14.18755-4.72373,13.49008-58.7749-23.65861-44.57614,18.90403-30.40494h-.00003Z" fill="#e6e6e6"/><g><circle cx="218.47958" cy="311.43145" r="73" fill="#6c63ff"/><g><circle cx="218.49274" cy="349.47878" r="6.70264" fill="#fff"/><path d="M218.4641,266.68145c-.6157,4.0912,.48747,4.94727,.49357,22.58508,.0061,17.63782,3.66579,41.28574-.47148,41.28717s-5.65047-48.80276-20.01681-53.12218c-16.89088-5.07846,21.98785-23.99409,19.99471-10.75007Z" fill="#fff"/></g></g><path d="M120.50313,348.70219l-6.59532,13.93527c7.97328-5.71745,20.42715-10.64598,30.3376-13.28567-9.23403-4.46037-20.53313-11.65189-27.2835-18.77194l3.7934,14.72434c-44.47393-9.0585-76.41138-43.17661-76.4249-82.25924l-1.60648-.5527c.01412,40.82281,31.50971,76.96121,77.7792,86.20995Z" fill="#3f3d56"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" data-name="Layer 1" width="928.75816" height="567.73661" viewBox="0 0 928.75816 567.73661" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M857.74388,569.26443a10.05579,10.05579,0,0,0,.80113-15.39851l14.4116-32.69992L854.648,524.26882l-10.87859,30.5767a10.11028,10.11028,0,0,0,13.9745,14.41891Z" transform="translate(-135.62092 -166.13169)" fill="#a0616a"/><path d="M885.32645,424.37639l-5.24589-1.04918s-7.34424,3.14754-6.29506,12.59013S859.097,495.72047,859.097,495.72047l-14.1639,41.9671,19.93438,4.19671,13.11472-48.26217Z" transform="translate(-135.62092 -166.13169)" fill="#ccc"/><path d="M909.12092,584.86831h-114a8.50982,8.50982,0,0,1-8.5-8.5v-11a8.50981,8.50981,0,0,1,8.5-8.5h114a8.51013,8.51013,0,0,1,8.5,8.5v11A8.51014,8.51014,0,0,1,909.12092,584.86831Z" transform="translate(-135.62092 -166.13169)" fill="#6c63ff"/><polygon points="766.749 539.503 755.248 543.748 733.399 501.407 750.374 495.141 766.749 539.503" fill="#a0616a"/><path d="M883.747,707.64942h23.64386a0,0,0,0,1,0,0v14.88687a0,0,0,0,1,0,0H868.86015a0,0,0,0,1,0,0v0A14.88686,14.88686,0,0,1,883.747,707.64942Z" transform="translate(-328.29968 185.66124) rotate(-20.26053)" fill="#2f2e41"/><polygon points="788.731 557.111 776.483 556.555 772.799 509.051 790.875 509.872 788.731 557.111" fill="#a0616a"/><path d="M767.55224,552.84974h23.64387a0,0,0,0,1,0,0v14.88687a0,0,0,0,1,0,0H752.66539a0,0,0,0,1,0,0v0A14.88686,14.88686,0,0,1,767.55224,552.84974Z" fill="#2f2e41"/><path d="M869.58878,529.29415v0a64.582,64.582,0,0,0-15.886,39.06045l-4.04838,75.29989,35.672,62.95065,19.93437-10.49177-24.13108-47.213,14.68848-45.11464L935.687,572.31043l-3.14753-45.11464Z" transform="translate(-135.62092 -166.13169)" fill="#2f2e41"/><polygon points="789.574 401.982 800.066 406.179 791.673 550.965 767.542 547.818 760.197 437.654 789.574 401.982" fill="#2f2e41"/><path d="M902.86853,553.89864A10.05579,10.05579,0,0,1,916.249,546.2358l22.67947-27.61559,5.49195,17.739-22.37878,23.50466a10.11027,10.11027,0,0,1-19.17309-5.96523Z" transform="translate(-135.62092 -166.13169)" fill="#a0616a"/><circle cx="775.61928" cy="216.38257" r="24.56103" fill="#a0616a"/><path d="M947.75252,429.09769s-28.3278-26.754-67.14737-6.29507c0,0-9.96719,101.24564-16.26225,111.73742,0,0,54.55723-7.34425,69.24572-3.14754,0,0,0-44.06545,9.4426-60.8523S947.75252,429.09769,947.75252,429.09769Z" transform="translate(-135.62092 -166.13169)" fill="#ccc"/><path d="M936.73615,431.72063l11.512-2.12727a29.45574,29.45574,0,0,1,12.61905,14.7174c4.19671,10.49178,15.73766,61.90148,15.73766,61.90148l-45.11464,45.11464-9.4426-13.63931,28.3278-37.77039L935.687,468.44185Z" transform="translate(-135.62092 -166.13169)" fill="#ccc"/><path d="M932.24851,395.65565a2.13479,2.13479,0,0,0-1.85636-2.81905,4.93046,4.93046,0,0,0-3.4761,1.715,13.8334,13.8334,0,0,1-3.07115,2.63711c-1.18812.59889-2.79953.51354-3.47685-.62824-.63605-1.07221-.20023-2.508.18482-3.75347a36.9067,36.9067,0,0,0,1.62991-9.77c.11092-3.70032-.41115-7.562-2.45972-10.44807-2.64387-3.72475-7.37142-5.13883-11.84544-5.0363s-8.87547,1.48362-13.30713,2.35665c-1.52992.30139-3.32826.4555-4.35153-.73025-1.08805-1.26082-.68844-3.3014-.22563-5.00376,1.20094-4.41743,2.475-8.98461,5.26525-12.55224a18.89839,18.89839,0,0,1,12.06081-6.79014,28.93848,28.93848,0,0,1,13.46236,1.52838,36.09628,36.09628,0,0,1,17.68285,12.3186A29.23592,29.23592,0,0,1,944.04269,380.28a26.66715,26.66715,0,0,1-9.88578,16.85462" transform="translate(-135.62092 -166.13169)" fill="#2f2e41"/><path d="M677.62092,588.13169h-533a9.01016,9.01016,0,0,1-9-9v-404a9.01047,9.01047,0,0,1,9-9h533a9.01016,9.01016,0,0,1,9,9v404A9.00984,9.00984,0,0,1,677.62092,588.13169Zm-533-420a7.00786,7.00786,0,0,0-7,7v404a7.00817,7.00817,0,0,0,7,7h533a7.00849,7.00849,0,0,0,7-7v-404a7.00818,7.00818,0,0,0-7-7Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M625.62092,262.13169h-429a9.01047,9.01047,0,0,1-9-9v-31a9.01047,9.01047,0,0,1,9-9h429a9.01016,9.01016,0,0,1,9,9v31A9.01015,9.01015,0,0,1,625.62092,262.13169Zm-429-47a7.00786,7.00786,0,0,0-7,7v31a7.00785,7.00785,0,0,0,7,7h429a7.00818,7.00818,0,0,0,7-7v-31a7.00818,7.00818,0,0,0-7-7Z" transform="translate(-135.62092 -166.13169)" fill="#3f3d56"/><path d="M366.62092,345.13169h-170a9.01047,9.01047,0,0,1-9-9v-31a9.01047,9.01047,0,0,1,9-9h170a9.01047,9.01047,0,0,1,9,9v31A9.01047,9.01047,0,0,1,366.62092,345.13169Zm-170-47a7.00786,7.00786,0,0,0-7,7v31a7.00785,7.00785,0,0,0,7,7h170a7.00786,7.00786,0,0,0,7-7v-31a7.00787,7.00787,0,0,0-7-7Z" transform="translate(-135.62092 -166.13169)" fill="#3f3d56"/><path d="M625.62092,345.13169h-170a9.01047,9.01047,0,0,1-9-9v-31a9.01047,9.01047,0,0,1,9-9h170a9.01016,9.01016,0,0,1,9,9v31A9.01015,9.01015,0,0,1,625.62092,345.13169Zm-170-47a7.00786,7.00786,0,0,0-7,7v31a7.00785,7.00785,0,0,0,7,7h170a7.00818,7.00818,0,0,0,7-7v-31a7.00818,7.00818,0,0,0-7-7Z" transform="translate(-135.62092 -166.13169)" fill="#3f3d56"/><path d="M626.12092,541.13169h-114a8.50981,8.50981,0,0,1-8.5-8.5v-11a8.50982,8.50982,0,0,1,8.5-8.5h114a8.51014,8.51014,0,0,1,8.5,8.5v11A8.51013,8.51013,0,0,1,626.12092,541.13169Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M215.62092,397.13169a8,8,0,1,1,8-8A8.00916,8.00916,0,0,1,215.62092,397.13169Zm0-14a6,6,0,1,0,6,6A6.00656,6.00656,0,0,0,215.62092,383.13169Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M215.62092,423.13169a8,8,0,1,1,8-8A8.00916,8.00916,0,0,1,215.62092,423.13169Zm0-14a6,6,0,1,0,6,6A6.00656,6.00656,0,0,0,215.62092,409.13169Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M215.62092,449.13169a8,8,0,1,1,8-8A8.00916,8.00916,0,0,1,215.62092,449.13169Zm0-14a6,6,0,1,0,6,6A6.00656,6.00656,0,0,0,215.62092,435.13169Z" transform="translate(-135.62092 -166.13169)" fill="#3f3d56"/><path d="M254.62092,382.63169a6.5,6.5,0,0,0,0,13h93a6.5,6.5,0,0,0,0-13Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M254.62092,408.63169a6.5,6.5,0,0,0,0,13h93a6.5,6.5,0,0,0,0-13Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M254.62092,434.63169a6.5,6.5,0,0,0,0,13h93a6.5,6.5,0,0,0,0-13Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M475.12092,397.13169a8,8,0,1,1,8-8A8.00916,8.00916,0,0,1,475.12092,397.13169Zm0-14a6,6,0,1,0,6,6A6.00656,6.00656,0,0,0,475.12092,383.13169Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M475.12092,423.13169a8,8,0,1,1,8-8A8.00916,8.00916,0,0,1,475.12092,423.13169Zm0-14a6,6,0,1,0,6,6A6.00656,6.00656,0,0,0,475.12092,409.13169Z" transform="translate(-135.62092 -166.13169)" fill="#3f3d56"/><path d="M475.12092,449.13169a8,8,0,1,1,8-8A8.00916,8.00916,0,0,1,475.12092,449.13169Zm0-14a6,6,0,1,0,6,6A6.00656,6.00656,0,0,0,475.12092,435.13169Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M475.12092,475.13169a8,8,0,1,1,8-8A8.00916,8.00916,0,0,1,475.12092,475.13169Zm0-14a6,6,0,1,0,6,6A6.00656,6.00656,0,0,0,475.12092,461.13169Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M513.12092,382.63169a6.5,6.5,0,1,0,0,13h93a6.5,6.5,0,0,0,0-13Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M513.12092,408.63169a6.5,6.5,0,1,0,0,13h93a6.5,6.5,0,0,0,0-13Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M513.12092,434.63169a6.5,6.5,0,1,0,0,13h93a6.5,6.5,0,0,0,0-13Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M513.12092,460.63169a6.5,6.5,0,1,0,0,13h93a6.5,6.5,0,0,0,0-13Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M215.74787,314.13169a6.5,6.5,0,1,0,0,13h111a6.5,6.5,0,0,0,0-13Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M215.74787,231.13169a6.5,6.5,0,1,0,0,13h111a6.5,6.5,0,0,0,0-13Z" transform="translate(-135.62092 -166.13169)" fill="#6c63ff"/><path d="M345.00373,316.45616a.5.5,0,0,0-.43311.75l4.24414,7.35107a.50016.50016,0,0,0,.86621,0l4.24414-7.35107a.5.5,0,0,0-.4331-.75Z" transform="translate(-135.62092 -166.13169)" fill="#6c63ff"/><path d="M474.74787,314.13169a6.5,6.5,0,0,0,0,13h111a6.5,6.5,0,0,0,0-13Z" transform="translate(-135.62092 -166.13169)" fill="#e6e6e6"/><path d="M604.00373,316.45616a.5.5,0,0,0-.43311.75l4.24414,7.35107a.50016.50016,0,0,0,.86621,0l4.24414-7.35107a.5.5,0,0,0-.4331-.75Z" transform="translate(-135.62092 -166.13169)" fill="#6c63ff"/><circle cx="339.5" cy="249" r="4" fill="#6c63ff"/><circle cx="80" cy="275" r="4" fill="#6c63ff"/><path d="M1063.1884,733.86831h-320.294a1.19068,1.19068,0,0,1,0-2.38137h320.294a1.19068,1.19068,0,0,1,0,2.38137Z" transform="translate(-135.62092 -166.13169)" fill="#3f3d56"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg t="1690458210146" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8176" width="200" height="200"><path d="M0 0m36.562636 0l950.874728 0q36.562636 0 36.562636 36.562636l0 950.874728q0 36.562636-36.562636 36.562636l-950.874728 0q-36.562636 0-36.562636-36.562636l0-950.874728q0-36.562636 36.562636-36.562636Z" fill="#0D71E4" p-id="8177"></path><path d="M36.562636 0h950.873667C1007.629795 0 1024 16.370205 1024 36.562636v914.294052H0V36.562636C0 16.370205 16.370205 0 36.562636 0z" fill="#000000" p-id="8178"></path><path d="M146.285563 585.143312h438.856688v109.714437H146.285563zM146.285563 365.714437h329.143312v109.714438H146.285563zM146.285563 146.285563h512V256h-512z" fill="#FFFFFF" p-id="8179"></path></svg>
|