初始化

This commit is contained in:
xiaoyi
2024-01-27 19:53:17 +08:00
commit 07dbe71c31
840 changed files with 119152 additions and 0 deletions

77
admin/src/App.vue Normal file
View File

@@ -0,0 +1,77 @@
<script lang="ts" setup>
import eruda from 'eruda'
import VConsole from 'vconsole'
import zhCn from 'element-plus/es/locale/lang/zh-cn'
import hotkeys from 'hotkeys-js'
import eventBus from './utils/eventBus'
import useSettingsStore from '@/store/modules/settings'
const settingsStore = useSettingsStore()
const { auth } = useAuth()
const buttonConfig = ref({
autoInsertSpace: true,
})
// 侧边栏主导航当前实际宽度
const mainSidebarActualWidth = computed(() => {
let actualWidth = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--g-main-sidebar-width'))
if (['head', 'single'].includes(settingsStore.settings.menu.menuMode)) {
actualWidth = 0
}
return `${actualWidth}px`
})
// 侧边栏次导航当前实际宽度
const subSidebarActualWidth = computed(() => {
let actualWidth = parseInt(getComputedStyle(document.documentElement).getPropertyValue('--g-sub-sidebar-width'))
if (settingsStore.settings.menu.subMenuCollapse) {
actualWidth = 64
}
return `${actualWidth}px`
})
watch([
() => settingsStore.settings.app.enableDynamicTitle,
() => settingsStore.title,
], () => {
if (settingsStore.settings.app.enableDynamicTitle && settingsStore.title) {
const title = typeof settingsStore.title === 'function' ? settingsStore.title() : settingsStore.title
document.title = `${title} - ${import.meta.env.VITE_APP_TITLE}`
}
else {
document.title = import.meta.env.VITE_APP_TITLE
}
}, {
immediate: true,
})
onMounted(() => {
settingsStore.setMode(document.documentElement.clientWidth)
window.onresize = () => {
settingsStore.setMode(document.documentElement.clientWidth)
}
hotkeys('alt+i', () => {
eventBus.emit('global-system-info-toggle')
})
})
import.meta.env.VITE_APP_DEBUG_TOOL === 'eruda' && eruda.init()
import.meta.env.VITE_APP_DEBUG_TOOL === 'vconsole' && new VConsole()
</script>
<template>
<el-config-provider :locale="zhCn" :size="settingsStore.settings.app.elementSize" :button="buttonConfig">
<RouterView
v-slot="{ Component, route }"
:style="{
'--g-main-sidebar-actual-width': mainSidebarActualWidth,
'--g-sub-sidebar-actual-width': subSidebarActualWidth,
}"
>
<component :is="Component" v-if="auth(route.meta.auth ?? '')" />
<not-allowed v-else />
</RouterView>
<system-info />
</el-config-provider>
</template>

84
admin/src/api/index.ts Normal file
View File

@@ -0,0 +1,84 @@
import axios from 'axios'
// import qs from 'qs'
import { ElMessage } from 'element-plus'
import router from '@/router/index'
import useUserStore from '@/store/modules/user'
function toLogin() {
useUserStore().logout().then(() => {
router.push({
path: '/login',
query: {
redirect: router.currentRoute.value.path !== '/login' ? router.currentRoute.value.fullPath : undefined,
},
})
})
}
const api = axios.create({
baseURL: (import.meta.env.DEV && import.meta.env.VITE_OPEN_PROXY === 'true') ? '/proxy/' : import.meta.env.VITE_APP_API_BASEURL,
timeout: 1000 * 60,
responseType: 'json',
})
api.interceptors.request.use(
(request) => {
const userStore = useUserStore()
/**
* 全局拦截请求发送前提交的参数
* 以下代码为示例,在请求头里带上 token 信息
*/
if (userStore.isLogin && request.headers) {
request.headers.Authorization = userStore.token ? `Bearer ${userStore.token}` : ''
}
// 是否将 POST 请求参数进行字符串化处理
if (request.method === 'post') {
// request.data = qs.stringify(request.data, {
// arrayFormat: 'brackets',
// })
}
return request
},
)
api.interceptors.response.use(
(response) => {
/**
* 全局拦截请求发送后返回的数据,如果数据有报错则在这做全局的错误提示
* 假设返回数据格式为:{ status: 1, error: '', data: '' }
* 规则是当 status 为 1 时表示请求成功,为 0 时表示接口需要登录或者登录状态失效,需要重新登录
* 请求出错时 error 会返回错误信息
*/
return Promise.resolve(response.data)
},
(error) => {
let msg = ''
if (error?.response) {
const { data, status } = error.response
if (status === 401) {
msg = '权限验证失败,请重新登录'
// loginout
if(data.code === 401 && data.message.includes('请登录后继续操作')){
const userStore = useUserStore()
userStore.logout().then(() => {
router.push({ name: 'login' })
})
}
}
const { message, code } = data
message && (msg = message)
}
else {
msg = '接口请求异常,请稍后再试'
}
ElMessage({
message: msg,
type: 'error',
})
return Promise.reject(error)
},
)
export default api

View File

@@ -0,0 +1,14 @@
import api from '../index'
export default {
queryCats: params => api.get('app/queryAppCats', { params }),
deleteCats: (data: { id: number }) => api.post('app/delAppCats', data),
createCats: data => api.post('app/createAppCats', data),
updateCats: data => api.post('app/updateAppCats', data),
queryApp: params => api.get('app/queryApp', { params }),
deleteApp: (data: { id: number }) => api.post('app/delApp', data),
createApp: data => api.post('app/createApp', data),
updateApp: data => api.post('app/updateApp', data),
auditPassApp: (data: { id: number }) => api.post('app/auditPass', data),
auditFailApp: (data: { id: number }) => api.post('app/auditFail', data),
}

View File

@@ -0,0 +1,21 @@
import api from '../index'
export default {
queryAutoReply: (params: {
page?: number
size?: number
prompt?: string
status?: number
}) => api.get('autoreply/query', { params }),
delAutoReply: (data: { id: number }) => api.post('autoreply/del', data),
addAutoReply: (data: {
prompt: string
answer: string
}) => api.post('autoreply/add', data),
updateAutoReply: (data: {
id: number
prompt: string
answer: string
status: number
}) => api.post('autoreply/update', data),
}

View File

@@ -0,0 +1,13 @@
import api from '../index'
export default {
queryBadWords: (params = {}) => api.get('badwords/query', { params }),
queryViolation: (params = {}) => api.get('badwords/violation', { params }),
delBadWords: (data: { id: number }) => api.post('badwords/del', data),
addBadWords: (data: { word: string }) => api.post('badwords/add', data),
updateBadWords: (data: {
id: number
word: string
status: number
}) => api.post('badwords/update', data),
}

View File

@@ -0,0 +1,10 @@
import api from '../index'
export default {
queryChatAll: params => api.get('chatLog/chatAll', { params }),
queryDrawAll: params => api.get('chatLog/drawAll', { params }),
recDrawImg: (data: { id: number }) => api.post('chatLog/recDrawImg', data),
queryMjDrawAll: params => api.get('midjourney/getList', { params }),
recMjDrawImg: (data: { id: number }) => api.post('midjourney/rec', data),
delChatLog: (data: { id: number }) => api.post('midjourney/del', data),
}

View File

@@ -0,0 +1,26 @@
import api from '../index'
export default {
queryKeyList: params => api.get('chatgpt/keyList', { params }),
queryKeyModelList: params => api.get('chatgpt/keyModelList', { params }),
queryKeyDetail: params => api.get('chatgpt/keyDetail', { params }),
addGptKey: (data: any) => api.post('chatgpt/addKey', data),
updateGptKey: (data: any) => api.post('chatgpt/updateKey', data),
addWhiteUser: (data: any) => api.post('chatgpt/addWhiteUser', data),
updateWhiteUser: (data: any) => api.post('chatgpt/updateWhiteUser', data),
queryWhiteUserList: params => api.get('chatgpt/userWhiteList', { params }),
deleteGptKey: (data: any) => api.post('chatgpt/deleteKey', data),
queryChatBoxTypes: () => api.get('chatgpt/queryChatBoxTypes'),
setChatBoxType: data => api.post('chatgpt/setChatBoxType', data),
delChatBoxType: data => api.post('chatgpt/delChatBoxType', data),
queryChatBoxs: () => api.get('chatgpt/queryChatBoxs'),
setChatBox: data => api.post('chatgpt/setChatBox', data),
delChatBox: data => api.post('chatgpt/delChatBox', data),
queryChatPreTypes: () => api.get('chatgpt/queryChatPreTypes'),
setChatPreType: data => api.post('chatgpt/setChatPreType', data),
delChatPreType: data => api.post('chatgpt/delChatPreType', data),
queryChatPres: () => api.get('chatgpt/queryChatPres'),
setChatPre: data => api.post('chatgpt/setChatPre', data),
delChatPre: data => api.post('chatgpt/delChatPre', data),
}

View File

@@ -0,0 +1,15 @@
import api from '../index'
interface KeyValue {
configKey: string
configVal: any
}
export default {
queryAllConfig: () => api.get('config/queryAll'),
queryGptKeys: () => api.get('config/queryGptKeys'),
setGptKeys: data => api.post('config/setGptKeys', data),
queryConfig: data => api.post('config/query', data),
copyright: () => api.get('config/copyright'),
setConfig: (data: { settings: KeyValue[] }) => api.post('config/set', data),
}

View File

@@ -0,0 +1,7 @@
import api from '../index'
export default {
getBaseInfo: params => api.get('/statistic/base', { params }),
getChatStatistic: params => api.get('/statistic/chatStatistic', { params }),
getBaiduVisit: params => api.get('/statistic/baiduVisit', { params }),
}

View File

@@ -0,0 +1,12 @@
import api from '../index'
export default {
quertMenu: params => api.get('menu/query', { params }),
visibleMenu: (data: { id: number }) => api.post('menu/visible', data),
setMenu: (data: any) => api.post('menu/setMenu', data),
delMenu: (data: any) => api.post('menu/delete', data),
updateIcon: (data: any) => api.post('menu/updateIcon', data),
// queryMjDrawAll: params => api.get('midjourney/getList', { params }),
// recMjDrawImg: (data: { id: number }) => api.post('midjourney/rec', data),
// delChatLog: (data: { id: number }) => api.post('midjourney/del', data),
}

View File

@@ -0,0 +1,12 @@
import api from '../index'
export default {
queryAdminDrawList: params => api.get('midjourney/adminDrawList', { params }),
salesAuditOrder: data => api.post('sales/auditOrder', data),
updateSalesUser: data => api.post('sales/updateUserSales', data),
queryRecords: params => api.get('sales/inviteRecords', { params }),
querySalesUserList: params => api.get('sales/salesUserList', { params }),
queryPrompts: () => api.get('midjourney/queryPrompts'),
setPrompt: data => api.post('midjourney/setPrompt', data),
delPrompt: data => api.post('midjourney/delPrompt', data),
}

View File

@@ -0,0 +1,13 @@
import api from '../index'
export default {
queryModels: (params: any) => api.get('models/query', { params }),
setModels: (data: any) => api.post('models/setModel', data),
delModels: (data: any) => api.post('models/delModel', data),
// setMenu: (data: any) => api.post('menu/setMenu', data),
// delMenu: (data: any) => api.post('menu/delete', data),
// updateIcon: (data: any) => api.post('menu/updateIcon', data),
// queryMjDrawAll: params => api.get('midjourney/getList', { params }),
// recMjDrawImg: (data: { id: number }) => api.post('midjourney/rec', data),
// delChatLog: (data: { id: number }) => api.post('midjourney/del', data),
}

View File

@@ -0,0 +1,7 @@
import api from '../index'
export default {
queryAllOrder: params => api.get('order/queryAll', { params }),
deleteOrder: data => api.post('order/delete', data),
deleteNotPay: () => api.post('order/deleteNotPay'),
}

View File

@@ -0,0 +1,12 @@
import api from '../index'
export default {
queryAllPackage: params => api.get('crami/queryAllPackage', { params }),
updatePackage: data => api.post('crami/updatePackage', data),
createPackage: data => api.post('crami/createPackage', data),
delPackage: data => api.post('crami/delPackage', data),
queryAllCrami: params => api.get('crami/queryAllCrami', { params }),
delCrami: data => api.post('crami/delCrami', data),
createCrami: data => api.post('crami/createCrami', data),
batchDelCrami: data => api.post('crami/batchDelCrami', data),
}

View File

@@ -0,0 +1,9 @@
import api from '../index'
export default {
querySalesOrder: params => api.get('sales/salesOrder', { params }),
salesAuditOrder: data => api.post('sales/auditOrder', data),
updateSalesUser: data => api.post('sales/updateUserSales', data),
queryRecords: params => api.get('sales/inviteRecords', { params }),
querySalesUserList: params => api.get('sales/salesUserList', { params }),
}

View File

@@ -0,0 +1,32 @@
import api from '../index'
export default {
login: (data: {
username: string
password: string
}) => api.post('auth/login', data),
permission: () => api.get('auth/getInfo'),
getInfo: () => api.get('auth/getInfo'),
queryAllUser: params => api.get('user/queryAll', { params }),
updateUserStatus: (data: {
status: string
}) => api.post('user/updateStatus', data),
resetUserPassword: (data: { id: number }) => api.post('user/resetUserPass', data),
sendUserCrami: (data: {
userId: number
usesLeft: number
paintCount: number
balance: number
}) => api.post('user/recharge', data),
updatePassword: (data: {
oldPassword: string
password: string
}) => api.post('auth/updatePassword', data),
}

View File

@@ -0,0 +1,6 @@
import api from '../index'
export default {
upgradeBalance: data => api.post('balance/upgradeBalance', data),
queryUserAccountLog: params => api.get('balance/accountLog', { params }),
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.2 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.5 KiB

View File

@@ -0,0 +1 @@
<svg t="1682163126870" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2182" width="200" height="200"><path d="M702.976 551.168c-42.752 165.034667-192.853333 289.792-222.122667 141.226667-55.722667-283.050667-285.866667-5.205333-285.866666-218.965334 0-140.117333 120.832-237.226667 260.949333-237.226666 115.712 0 215.466667 70.485333 245.930667 176.298666" fill="#64EDAC" p-id="2183"></path><path d="M528.298667 889.258667h-2.389334c-61.098667-1.109333-105.386667-43.349333-121.514666-115.968-28.245333-127.573333-79.957333-122.026667-151.552-114.432-41.045333 4.352-87.637333 9.301333-122.368-21.930667-28.245333-25.429333-41.386667-68.266667-41.386667-134.997333 0-202.410667 164.693333-367.104 367.104-367.104 162.645333 0 307.712 109.056 352.682667 265.130666 5.205333 18.090667-5.205333 37.034667-23.381334 42.24s-37.034667-5.205333-42.24-23.296C706.645333 291.84 588.544 203.093333 456.106667 203.093333c-164.778667 0-298.837333 134.058667-298.837334 298.837334 0 58.624 11.776 77.909333 18.773334 84.224 12.117333 10.922667 40.021333 7.936 69.546666 4.864 73.216-7.765333 183.978667-19.456 225.365334 167.594666 13.653333 61.696 45.568 62.293333 56.064 62.464h1.194666c70.229333 0 181.674667-105.472 216.064-238.08 4.693333-18.261333 23.381333-29.184 41.642667-24.490666 18.261333 4.693333 29.184 23.381333 24.490667 41.642666-40.021333 154.709333-171.349333 289.109333-282.112 289.109334z" fill="#333C4F" p-id="2184"></path><path d="M267.690667 467.370667m-58.026667 0a58.026667 58.026667 0 1 0 116.053333 0 58.026667 58.026667 0 1 0-116.053333 0Z" fill="#333C4F" p-id="2185"></path><path d="M437.333333 331.690667m-43.52 0a43.52 43.52 0 1 0 87.04 0 43.52 43.52 0 1 0-87.04 0Z" fill="#333C4F" p-id="2186"></path><path d="M618.581333 389.632m-36.266666 0a36.266667 36.266667 0 1 0 72.533333 0 36.266667 36.266667 0 1 0-72.533333 0Z" fill="#333C4F" p-id="2187"></path><path d="M530.858667 619.690667a34.167467 34.167467 0 0 1-11.349334-66.389334l369.834667-129.365333c17.749333-6.229333 37.290667 3.157333 43.52 20.906667 6.229333 17.834667-3.157333 37.290667-20.906667 43.52L542.122667 617.728c-3.669333 1.28-7.509333 1.962667-11.264 1.962667z" fill="#333C4F" p-id="2188"></path></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" class="icon" viewBox="0 0 1024 1024"><path d="M768 298.667h170.667V384h-256V128H768v170.667zM341.333 384h-256v-85.333H256V128h85.333v256zM768 725.333V896h-85.333V640h256v85.333H768zM341.333 640v256H256V725.333H85.333V640h256z"/></svg>

After

Width:  |  Height:  |  Size: 299 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" class="icon" viewBox="0 0 1024 1024"><path d="M682.667 128h256v256h-85.334V213.333H682.667V128zm-597.334 0h256v85.333H170.667V384H85.333V128zm768 682.667V640h85.334v256h-256v-85.333h170.666zm-682.666 0h170.666V896h-256V640h85.334v170.667z"/></svg>

After

Width:  |  Height:  |  Size: 312 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" class="icon" viewBox="0 0 1024 1024"><path d="M704 328a72 72 0 1 0 144 0 72 72 0 1 0-144 0z"/><path d="M999.904 116.608a32 32 0 0 0-21.952-10.912L521.76 73.792a31.552 31.552 0 0 0-27.2 11.904l-92.192 114.848a32 32 0 0 0 .672 40.896l146.144 169.952-147.456 194.656 36.48-173.376a32 32 0 0 0-11.136-31.424L235.616 245.504l79.616-125.696a32 32 0 0 0-29.28-49.024L45.76 87.552a32 32 0 0 0-29.696 34.176l55.808 798.016a32.064 32.064 0 0 0 34.304 29.696l176.512-13.184c17.632-1.312 30.848-16.672 29.504-34.272s-16.576-31.04-34.304-29.536L133.44 883.232l-6.432-92.512 125.312-12.576a32 32 0 0 0 28.672-35.04 32.16 32.16 0 0 0-35.04-28.672L122.56 726.848 82.144 149.184l145.152-10.144-60.96 96.224a32 32 0 0 0 6.848 41.952l198.4 161.344-58.752 279.296a30.912 30.912 0 0 0 .736 14.752 31.68 31.68 0 0 0 1.408 11.04l51.52 154.56a31.968 31.968 0 0 0 27.456 21.76l523.104 47.552a32.064 32.064 0 0 0 34.848-29.632l55.776-798.048a32.064 32.064 0 0 0-7.776-23.232zm-98.912 630.848-412.576-39.648a31.52 31.52 0 0 0-34.912 28.768 32 32 0 0 0 28.8 34.912l414.24 39.808-6.272 89.536-469.728-42.72-39.584-118.72 234.816-310.016a31.936 31.936 0 0 0-1.248-40.192L468.896 219.84l65.088-81.056 407.584 28.48-40.576 580.192z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg t="1697261707959" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10449" width="32" height="32"><path d="M853.2 319.95V202.635c0-17.67-14.325-31.995-31.995-31.995h-618.57c-17.67 0-31.995 14.325-31.995 31.995v618.57c0 17.67 14.325 31.995 31.995 31.995h618.57c17.67 0 31.995-14.325 31.995-31.995V703.89H554.58c-106.022 0-191.97-85.948-191.97-191.97s85.948-191.97 191.97-191.97H853.2z m0 63.99H554.58c-70.681 0-127.98 57.299-127.98 127.98 0 70.681 57.299 127.98 127.98 127.98H853.2V383.94zM554.58 554.58c-23.56 0-42.66-19.1-42.66-42.66 0-23.56 19.1-42.66 42.66-42.66 23.56 0 42.66 19.1 42.66 42.66 0 23.56-19.1 42.66-42.66 42.66zM202.635 106.65h618.57c53.011 0 95.985 42.974 95.985 95.985v618.57c0 53.011-42.974 95.985-95.985 95.985h-618.57c-53.011 0-95.985-42.974-95.985-95.985v-618.57c0-53.011 42.974-95.985 95.985-95.985z" fill="#000000" p-id="10450"></path></svg>

After

Width:  |  Height:  |  Size: 914 B

View File

@@ -0,0 +1 @@
<svg t="1697263815818" class="icon" viewBox="0 0 4608 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="70584" width="32" height="32"><path d="M3266.56 773.12h327.68v-102.4h-327.68v-102.4H3584V35.84h-737.28v532.48h317.44v102.4h-327.68v102.4h327.68v112.64h-353.28v102.4h814.08v-102.4h-353.28V773.12z m10.24-634.88h215.04v112.64H3276.8V138.24z m0 215.04h215.04V460.8H3276.8V353.28zM3174.4 460.8h-215.04V353.28h215.04V460.8z m0-209.92h-215.04V138.24h215.04v112.64zM537.6 445.44h537.6v122.88H537.6z" p-id="70585"></path><path d="M1341.44 5.12H988.16L1075.2 128l256 81.92c46.08 15.36 76.8 61.44 76.8 107.52v389.12c0 46.08-30.72 92.16-76.8 107.52l-256 81.92-87.04 122.88h353.28c148.48 0 266.24-117.76 266.24-266.24V276.48c0-148.48-117.76-271.36-266.24-271.36zM276.48 814.08c-46.08-15.36-76.8-61.44-76.8-107.52V317.44c0-46.08 30.72-92.16 76.8-107.52l256-81.92L619.52 5.12H266.24C117.76 5.12 0 128 0 276.48v471.04C0 896 117.76 1013.76 266.24 1013.76h353.28l-87.04-122.88-256-76.8z m2216.96-563.2h-261.12v537.6h261.12v-537.6z m-107.52 430.08h-56.32V353.28h56.32v327.68z m-537.6 307.2h102.4V138.24h107.52l-61.44 281.6v102.4h61.44v225.28c0 15.36-10.24 25.6-25.6 25.6h-25.6v102.4h51.2c56.32 0 102.4-46.08 102.4-102.4v-358.4h-61.44l61.44-281.6V30.72h-312.32v957.44z" p-id="70586"></path><path d="M2206.72 138.24H2560v660.48c0 46.08-35.84 87.04-87.04 87.04h-76.8v102.4h107.52c87.04 0 163.84-71.68 163.84-163.84V138.24h35.84V35.84h-496.64v102.4zM3763.2 40.96h737.28v102.4H3763.2z m778.24 486.4v-102.4h-814.08v102.4h204.8l-163.84 358.4v102.4h691.2c30.72 0 51.2-25.6 51.2-51.2 0-10.24 0-15.36-5.12-20.48l-87.04-194.56h-112.64l76.8 163.84h-496.64l163.84-358.4h491.52z" p-id="70587"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264778021" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="108313" width="32" height="32"><path d="M647.488 57.76c121.888 31.392 220.384 96.64 287.616 204.32 55.776 89.344 73.408 186.592 52.576 290.24-13.44 66.848-43.136 125.984-86.496 178.272-10.112 12.256-16.704 25.696-13.92 41.152 3.232 17.536 7.424 35.296 14.208 51.712 15.008 36.192 39.264 66.848 62.368 98.112 4.864 6.592 10.176 14.496 11.008 22.24 2.24 22.752-16.32 40.576-40.864 41.184-45.312 1.152-86.944-12.736-125.728-34.112-39.648-21.856-77.6-46.72-116.608-69.824a20.608 20.608 0 0 0-14.784-1.984c-75.712 24-152.672 30.368-231.168 17.952-103.008-16.288-192.928-59.264-267.328-132.672C104.32 691.232 60.8 602.56 54.496 498.144c-7.072-117.024 31.808-218.88 111.872-303.808 96.928-102.784 218.816-149.12 358.592-151.616 41.6-0.128 82.464 4.704 122.528 15.04z m245.536 835.392c-20.096-30.944-38.528-62.816-45.6-99.68-6.336-32.768-0.32-62.016 21.824-88.736 59.328-71.552 89.568-154.144 84.832-247.392-5.76-114.464-57.856-205.696-146.272-276.768-63.904-51.392-137.568-81.952-218.56-91.84-143.808-17.536-272.064 18.464-378.624 119.296-65.12 61.664-104.992 137.824-113.376 227.488-12.672 135.84 40 245.056 144.512 329.92 66.368 53.952 143.68 83.264 228.64 93.216 72.416 8.544 142.72-0.032 211.36-23.712 6.496-2.24 10.912-1.472 16.736 1.984 47.552 28 94.944 56.288 143.296 82.88a198.176 198.176 0 0 0 86.336 24.256c-12.384-17.888-24.192-34.08-35.104-50.912z" p-id="108314"></path><path d="M675.328 661.728a349.28 349.28 0 0 1-101.824 55.648c-14.016 4.832-25.44 0.864-29.728-10.72-4.576-12.192 1.6-23.072 16.16-27.968a301.248 301.248 0 0 0 76.256-38.656c2.752-1.92 5.312-4.032 7.744-5.92-13.12-16.032-25.984-31.392-38.432-47.136a180.544 180.544 0 0 1-14.24-21.216c-6.88-11.616-3.936-24.16 6.56-30.08 10.56-5.984 20.928-2.208 28.928 8.672 13.76 18.624 28.192 36.704 42.432 54.944 1.984 2.624 4.736 4.672 7.136 6.944 25.44-20.288 59.808-77.888 67.136-112.704H567.52c-15.136 0-23.936-7.52-23.968-20.384-0.032-12.864 8.768-20.48 23.84-20.512h101.056c0-13.792-0.064-26.656 0.064-39.52 0.064-13.6 8.64-22.816 20.8-22.656 11.872 0.16 19.936 9.056 20 22.336 0.128 12.896 0.064 25.792 0.064 39.84h37.312c21.504 0 43.008-0.096 64.512 0.032 13.12 0.096 21.44 8.48 21.248 20.864-0.256 11.84-8.512 19.712-21.248 19.968-7.808 0.128-15.616 0-24 0-15.424 53.344-42.112 99.872-82.112 141.792 24.512 14.656 48.064 28.192 70.944 42.784 6.048 3.84 12.864 10.24 14.304 16.64 1.312 5.856-2.624 14.528-7.072 19.584-5.824 6.72-15.2 6.592-22.688 2.048-24.992-15.136-49.696-30.816-74.432-46.4-3.776-2.336-7.008-5.312-10.816-8.224zM464.832 536a20.896 20.896 0 0 1-16.544 21.504 19.648 19.648 0 0 1-23.488-13.184 2263.552 2263.552 0 0 1-22.048-63.616c-1.952-5.92-4.576-7.84-10.752-7.776-27.296 0.352-54.592 0.32-81.888 0.032-6.016-0.064-8.928 1.504-10.912 7.552-6.592 20.384-13.952 40.512-20.992 60.736-4.8 13.824-15.392 19.84-27.392 15.584-11.36-4-16.096-15.552-11.584-28.608l90.912-262.08c4.8-13.856 10.368-18.656 21.152-18.4 11.904 0.256 16.96 7.968 20.48 18.112 30.176 87.424 60.544 174.784 90.848 262.208 0.992 2.912 1.664 5.92 2.208 7.936z m-112.64-201.376l-2.496 0.064-33.536 97.184h69.664l-33.632-97.248z" p-id="108315"></path></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264793389" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="110299" width="32" height="32"><path d="M955.904 887.296H68.096C30.72 887.296 0 857.088 0 819.2V102.4c0-37.888 30.72-68.096 68.096-68.096h887.296c37.888 0 68.096 30.72 68.096 68.096v716.8c0.512 37.888-30.208 68.096-67.584 68.096z m0-751.104c0-18.944-15.36-34.304-34.304-34.304H102.4c-18.944 0-34.304 15.36-34.304 34.304v648.192c0 18.944 15.36 34.304 34.304 34.304h819.712c18.944 0 34.304-15.36 34.304-34.304V136.192h-0.512zM832 417.792c-10.752 0-20.992-2.56-30.208-7.68L697.856 519.168c14.848 31.744 1.536 69.632-30.208 84.48-15.36 7.168-33.28 8.192-49.664 2.048l-16.384-8.704c-5.632-4.096-10.24-8.704-14.336-14.336l-171.52-174.08c-19.968 12.288-44.544 12.288-64.512 0L247.296 514.56c5.12 9.216 8.192 19.968 8.192 30.72 0 35.328-28.672 64-64 64-10.24 0-17.92-2.048-24.064-5.12-6.144-2.56-19.968-7.68-30.72-26.624-8.704-16.896-7.68-18.944-9.216-32.256 0-35.328 28.672-64 64-64 11.264 0 22.016 3.072 31.232 8.704l104.96-105.472c-5.12-9.216-7.68-19.456-7.68-30.208 0-35.328 28.672-64 64-64s64 28.672 64 64c0 10.24-2.56 20.992-7.68 30.208l139.264 141.312c11.264-33.28 47.104-51.2 80.384-40.448 5.632 2.048 11.264 4.608 16.384 8.192l100.864-106.496c-19.456-32.256-7.168-74.752 28.16-91.136 26.624-12.288 59.392-4.096 77.312 18.944 23.552 30.72 14.336 74.24-17.92 93.696-9.728 6.144-20.992 9.216-32.768 9.216zM325.12 921.088h408.576c9.728 0 17.92 8.192 17.92 17.92v33.28c0 9.728-8.192 17.92-17.92 17.92H325.12c-9.728 0-17.92-8.192-17.92-17.92v-33.28c0-9.728 8.192-17.92 17.92-17.92z" p-id="110300"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264512822" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="101472" width="32" height="32"><path d="M512 928c228.8 0 415-186.2 415-415S740.8 98 512 98 97 284.2 97 513s186.2 415 415 415z m0-785c204 0 370 166 370 370S716 883 512 883 142 717 142 513s166-370 370-370z" p-id="101473"></path><path d="M463.2 301.2c0 5.4 0.7 11.5 1.1 16.9 1.2 15.1 4 31.1 6.7 46 5.2 29.8 9.6 59.9 14 89.8 4.2 28.8 8.3 57.6 12.3 86.5 1.9 13.6 3.7 27.2 5.9 40.7 1 6 2 12.2 2.5 18.3 0.2 1.9 0.6 5.5 1.8 7.1l0.1 0.1c1.5 2.5 3.7 4.8 6.9 4.3 3.5-0.4 5.5-6.8 6.2-9.5 2.3-8.6 3.7-17.9 4.7-26.7 1.5-12.5 3.2-25 5-37.5l11.5-80.7c2.6-20.9 5.2-41.7 7.8-62.6 1.8-14.2 3.6-28.4 5.5-42.5 1.1-8.5 2.3-17 3.7-25.4 1.5-10.2 1.9-20.5 1.2-30.8-0.7-10.7-6.2-19-14.5-25.4-10.3-8-23.2-10.5-36-10.4-11.8 0.1-24.5 2.5-33.4 10.9-8.4 8.4-11.9 19.5-13 30.9z m48.7 368.1c-8.4 0.2-16.3 2.5-23.8 6.4-7.8 4.1-13.9 9.9-18.3 17.5s-6.6 15.8-6.5 24.6c0.1 8.7 2.2 16.9 6.6 24.4 4.3 7.5 10.2 13.4 17.6 17.7 7.5 4.3 15.7 6.5 24.4 6.5 8.7 0.2 16.8-2 24.3-6.3 7.6-4.3 13.5-10.3 17.9-17.9 4.3-7.6 6.6-15.8 6.7-24.5 0-8.8-2.3-16.9-6.7-24.5-4.5-7.7-10.6-13.6-18.5-17.7-7.4-3.9-15.4-6.2-23.7-6.2z" p-id="101474"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264057182" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="76145" width="32" height="32"><path d="M512 703.8c-105.8 0-191.8-86-191.8-191.8s86-191.8 191.8-191.8S703.8 406.3 703.8 512 617.7 703.8 512 703.8z m0-321.8c-71.7 0-130 58.3-130 130s58.3 130 130 130 130-58.3 130-130-58.3-130-130-130z" fill="#979FB2" p-id="76146"></path><path d="M596.1 1024H427.9c-10.9 0-20.2-8-21.7-18.8l-17.1-121.8-52.9-21.8-98.1 73.9c-8.8 6.6-21 5.8-28.6-2l-119-118.9c-7.7-7.7-8.6-19.9-2-28.6l73.9-98.1-21.8-52.9-121.8-17.2C8 616.2 0 607 0 596.1V427.9c0-10.9 8-20.2 18.8-21.7l121.8-17.1 21.8-52.9-73.9-98.1c-6.6-8.7-5.7-20.9 2-28.6l118.9-119c7.8-7.8 20-8.6 28.6-2l98.1 73.9 52.9-21.8 17.1-121.8C407.8 8 417 0 427.9 0h168.2c10.9 0 20.2 8 21.7 18.8l17.1 121.8 52.9 21.8 98.1-73.9c8.7-6.6 20.9-5.7 28.6 2l118.9 118.9c7.7 7.7 8.6 19.9 2 28.6l-73.9 98.1 21.8 52.9 121.8 17.1c10.8 1.5 18.8 10.8 18.8 21.7V596c0 10.9-8 20.2-18.8 21.7l-121.8 17.1-21.8 52.9 73.9 98.1c6.6 8.7 5.7 20.9-2 28.6L814.6 933.5c-7.8 7.8-19.9 8.6-28.6 2l-98.1-73.9-52.9 21.8-17.1 121.8c-1.7 10.8-10.9 18.8-21.8 18.8z m-145.4-71h122.5l15.3-108.6c1-7.2 5.8-13.4 12.6-16.2l71.6-29.5c6.8-2.8 14.4-1.8 20.3 2.6l87.5 65.9 86.6-86.6-65.9-87.6c-4.4-5.8-5.4-13.5-2.6-20.3l29.5-71.6c2.8-6.8 8.9-11.5 16.2-12.6L953 573.3V450.7l-108.6-15.3c-7.2-1-13.4-5.8-16.2-12.6l-29.5-71.6c-2.8-6.7-1.8-14.4 2.6-20.3l65.9-87.5-86.6-86.6-87.6 66c-5.8 4.4-13.4 5.4-20.3 2.6l-71.6-29.5c-6.8-2.8-11.5-8.9-12.6-16.2L573.3 71H450.7l-15.3 108.6c-1 7.2-5.8 13.4-12.6 16.2l-71.6 29.5c-6.7 2.8-14.4 1.8-20.3-2.6l-87.5-65.9-85.6 86.6 64.9 87.5c4.4 5.8 5.4 13.5 2.6 20.3l-29.5 71.6c-2.8 6.7-8.9 11.5-16.2 12.6L71 450.7v122.5l108.6 15.3c7.2 1 13.4 5.8 16.2 12.6l29.5 71.6c2.8 6.7 1.8 14.4-2.6 20.3l-65.9 87.5 86.6 86.6 87.5-65.9c5.8-4.4 13.6-5.3 20.3-2.6l71.6 29.5c6.7 2.8 11.5 8.9 12.6 16.2L450.7 953z" fill="#979FB2" p-id="76147"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg t="1699980425390" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4079" width="32" height="32"><path d="M841.322 87.089h-3.9L541.113 167.9v-0.031h-57.292L186.577 86.803h-3.898c-47.329 0-85.833 38.504-85.833 85.834v595.568c0 22.92 8.948 43.111 25.875 58.393 12.931 11.674 30.025 20.311 52.204 26.391 1.558 0.43 156.07 43.113 307.962 83.951l0.956 0.258h55.15l2.121-0.559c154.5-40.689 306.48-82.951 308.012-83.379l1.078-0.322c21.422-6.861 37.787-15.387 50.029-26.064 17.613-15.363 26.922-35.551 26.922-58.381v-595.57c-0.001-47.328-38.505-85.834-85.833-85.834zM190.375 796.848c-35.303-9.676-35.303-22.967-35.303-28.643V172.637c0-14.134 10.678-25.822 24.39-27.421l303.424 82.752v648.673c-146.655-39.502-290.952-79.362-292.511-79.793z m678.553-28.356c0 5.154 0 17.191-35.969 28.826-9.916 2.756-147.693 41.006-291.846 79.1V228.254l303.424-82.751c13.713 1.599 24.391 13.287 24.391 27.421v595.568z" p-id="4080"></path></svg>

After

Width:  |  Height:  |  Size: 965 B

View File

@@ -0,0 +1 @@
<svg t="1697262371702" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="24650" width="32" height="32"><path d="M798.239721 592.527035 798.239721 177.35943c0-35.273365-28.599362-63.871703-63.87068-63.871703L127.584282 113.487727c-35.273365 0-63.871703 28.598338-63.871703 63.871703l0 415.167604c0 35.273365 28.598338 63.871703 63.871703 63.871703l63.871703 0 0 159.678746 159.679769-159.678746 383.232265 0C769.639337 656.398738 798.238698 627.800399 798.239721 592.527035L798.239721 592.527035zM324.689429 592.527035l-69.362764 69.361741 0-69.361741L127.584282 592.527035 127.584282 177.35943 734.369042 177.35943l0 415.167604L324.689429 592.527035 324.689429 592.527035zM894.047788 209.295793l-63.871703 0 0 63.871703 63.871703 0 0 415.168628L766.304382 688.336124l0 69.360717-69.362764-69.360717L383.072117 688.336124l0 63.87068 287.423175 0 159.679769 159.679769L830.175061 752.20578l63.872726 0c35.272341 0 63.87068-28.598338 63.87068-63.87068L957.918467 273.167496C957.918467 237.894132 929.319106 209.295793 894.047788 209.295793L894.047788 209.295793z" p-id="24651"></path></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg t="1697263845684" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="74288" width="32" height="32"><path d="M899.14 97.53H124.86A109 109 0 0 0 16 206.39v611.22a109 109 0 0 0 108.86 108.86h774.28A109 109 0 0 0 1008 817.61V206.39A109 109 0 0 0 899.14 97.53zM124.86 145h774.28a61.42 61.42 0 0 1 61.35 61.35v444.91L848.35 539.15a73.52 73.52 0 0 0-103.93 0L612.84 670.7 368 425.81a73.52 73.52 0 0 0-103.93 0L63.51 626.31V206.39A61.42 61.42 0 0 1 124.86 145z m774.28 734H124.86a61.42 61.42 0 0 1-61.35-61.35V693.5l234.14-234.14a26 26 0 0 1 36.75 0l345.9 346a23.75 23.75 0 0 0 33.59-33.59l-67.46-67.46L778 572.72a26 26 0 0 1 36.75 0L958 715.92a23.85 23.85 0 0 0 2.53 2.17v99.54A61.42 61.42 0 0 1 899.14 879z" p-id="74289"></path><path d="M622.73 458.43A97.46 97.46 0 1 0 525.27 361a97.46 97.46 0 0 0 97.46 97.43z m0-147.41a50 50 0 1 1-50 50 50 50 0 0 1 50-50.02z" p-id="74290"></path></svg>

After

Width:  |  Height:  |  Size: 930 B

View File

@@ -0,0 +1 @@
<svg t="1697262938838" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="40120" width="32" height="32"><path d="M742.4 281.6c12.8-12.8 25.6-25.6 38.4-44.8 44.8-76.8 32-166.4-32-204.8C710.4 12.8 665.6 12.8 627.2 38.4c-64-51.2-166.4-51.2-230.4 0-44.8-25.6-89.6-25.6-128-6.4-64 38.4-76.8 128-32 204.8 12.8 19.2 25.6 32 38.4 44.8C121.6 352 0 569.6 0 768c0 172.8 108.8 256 320 256h384c211.2 0 320-83.2 320-256 0-198.4-121.6-416-281.6-486.4z m-38.4 678.4h-384c-224 0-256-102.4-256-192 0-179.2 108.8-364.8 243.2-428.8l89.6-38.4-76.8-64c-6.4-12.8-19.2-19.2-25.6-32-25.6-51.2-19.2-102.4 6.4-115.2 6.4-6.4 12.8-6.4 19.2-6.4 12.8 0 25.6 6.4 38.4 12.8l38.4 25.6 32-32c38.4-32 108.8-32 147.2 0l32 25.6 38.4-25.6C665.6 76.8 691.2 76.8 704 83.2c25.6 12.8 38.4 64 6.4 115.2-6.4 12.8-12.8 19.2-25.6 32L614.4 294.4l89.6 38.4c134.4 64 243.2 256 243.2 428.8 12.8 96-19.2 198.4-243.2 198.4z" fill="#5D5D5D" p-id="40121"></path><path d="M640 608c19.2 0 32-12.8 32-32s-12.8-32-32-32h-76.8L620.8 486.4c19.2-12.8 19.2-38.4 6.4-44.8-12.8-12.8-32-12.8-44.8 0L512 512 441.6 441.6c-12.8-12.8-32-12.8-44.8 0C384 448 384 473.6 396.8 486.4l57.6 57.6H384c-19.2 0-32 12.8-32 32s12.8 32 32 32h96v64H384c-19.2 0-32 12.8-32 32s12.8 32 32 32h96v96c0 19.2 12.8 32 32 32s32-12.8 32-32v-96H640c19.2 0 32-12.8 32-32s-12.8-32-32-32h-96v-64H640z" fill="#5D5D5D" p-id="40122"></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264814315" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="111288" width="32" height="32"><path d="M512 96c229.76 0 416 186.24 416 416s-186.24 416-416 416S96 741.76 96 512 282.24 96 512 96z m0 64C317.6 160 160 317.6 160 512s157.6 352 352 352 352-157.6 352-352S706.4 160 512 160z m0 128a191.68 191.68 0 0 1 150.848 73.184l-45.76 45.76A128 128 0 0 0 384 480v63.968a128 128 0 0 0 233.088 73.088l45.76 45.728A192 192 0 0 1 320 544v-64a192 192 0 0 1 192-192z" fill="#000000" p-id="111289"></path></svg>

After

Width:  |  Height:  |  Size: 554 B

View File

@@ -0,0 +1 @@
<svg t="1697262564812" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="29874" width="32" height="32"><path d="M972.8 339.2V243.2c0-32-25.6-57.6-57.6-57.6H108.8c-32 0-57.6 25.6-57.6 57.6v96h921.6zM51.2 377.6v409.6c0 32 25.6 57.6 57.6 57.6h806.4c32 0 57.6-25.6 57.6-57.6V377.6H51.2z m281.6 288H115.2v-64h217.6v64zM512 531.2H115.2v-64H512v64z" fill="#999999" p-id="29875"></path></svg>

After

Width:  |  Height:  |  Size: 427 B

View File

@@ -0,0 +1 @@
<svg t="1697262841898" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="35869" width="32" height="32"><path d="M499.657 384.57c-9.597 0-18.747-5.565-22.859-14.913-5.552-12.618 0.176-27.348 12.794-32.899l205.94-90.614c12.621-5.552 27.348 0.177 32.899 12.794 5.552 12.618-0.177 27.348-12.794 32.899l-205.941 90.614a24.887 24.887 0 0 1-10.039 2.119zM689.088 821.16a24.849 24.849 0 0 1-14.27-4.498l-190.78-133.228c-11.302-7.893-14.066-23.452-6.173-34.755 7.892-11.301 23.452-14.065 34.754-6.173L703.4 775.734c11.302 7.893 14.065 23.452 6.173 34.755-4.853 6.949-12.606 10.671-20.485 10.671z" fill="#666666" p-id="35870"></path><path d="M812.673 351.613c-77.354 0-140.286-62.932-140.286-140.286S735.318 71.04 812.673 71.04 952.96 133.972 952.96 211.327s-62.933 140.286-140.287 140.286z m0-230.653c-49.828 0-90.366 40.539-90.366 90.367s40.538 90.366 90.366 90.366 90.367-40.538 90.367-90.366-40.539-90.367-90.367-90.367zM755.01 952.96c-59.186 0-107.336-48.15-107.336-107.336s48.15-107.336 107.336-107.336 107.336 48.15 107.336 107.336S814.195 952.96 755.01 952.96z m0-164.752c-31.659 0-57.416 25.757-57.416 57.416s25.757 57.416 57.416 57.416 57.416-25.757 57.416-57.416-25.757-57.416-57.416-57.416zM322.535 763.495c-67.177 0-130.333-26.16-177.833-73.661S71.04 579.177 71.04 512s26.16-130.332 73.661-177.833 110.657-73.661 177.833-73.661 130.333 26.16 177.833 73.661S574.029 444.823 574.029 512s-26.16 130.333-73.661 177.834-110.657 73.661-177.833 73.661z m0-453.069c-111.149 0-201.575 90.426-201.575 201.574 0 111.149 90.426 201.575 201.575 201.575S524.109 623.149 524.109 512c0-111.149-90.425-201.574-201.574-201.574z" fill="#666666" p-id="35871"></path><path d="M394.346 568.403H338.3v102.286h-33.269V568.403h-54.307v-28.707h54.307v-52.568h-54.307v-29.42h42.049l-42.049-104.396h34.323l39.255 99.15 37.83-99.15h32.214l-40.282 104.396h40.282v29.42H338.3v52.568h56.046v28.707z" fill="#666666" p-id="35872"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg t="1697262324112" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="21431" width="32" height="32"><path d="M702.976 551.168c-42.752 165.034667-192.853333 289.792-222.122667 141.226667-55.722667-283.050667-285.866667-5.205333-285.866666-218.965334 0-140.117333 120.832-237.226667 260.949333-237.226666 115.712 0 215.466667 70.485333 245.930667 176.298666" fill="#ffffff" p-id="21432"></path><path d="M528.298667 889.258667h-2.389334c-61.098667-1.109333-105.386667-43.349333-121.514666-115.968-28.245333-127.573333-79.957333-122.026667-151.552-114.432-41.045333 4.352-87.637333 9.301333-122.368-21.930667-28.245333-25.429333-41.386667-68.266667-41.386667-134.997333 0-202.410667 164.693333-367.104 367.104-367.104 162.645333 0 307.712 109.056 352.682667 265.130666 5.205333 18.090667-5.205333 37.034667-23.381334 42.24s-37.034667-5.205333-42.24-23.296C706.645333 291.84 588.544 203.093333 456.106667 203.093333c-164.778667 0-298.837333 134.058667-298.837334 298.837334 0 58.624 11.776 77.909333 18.773334 84.224 12.117333 10.922667 40.021333 7.936 69.546666 4.864 73.216-7.765333 183.978667-19.456 225.365334 167.594666 13.653333 61.696 45.568 62.293333 56.064 62.464h1.194666c70.229333 0 181.674667-105.472 216.064-238.08 4.693333-18.261333 23.381333-29.184 41.642667-24.490666 18.261333 4.693333 29.184 23.381333 24.490667 41.642666-40.021333 154.709333-171.349333 289.109333-282.112 289.109334z" fill="#333C4F" p-id="21433"></path><path d="M267.690667 467.370667m-58.026667 0a58.026667 58.026667 0 1 0 116.053333 0 58.026667 58.026667 0 1 0-116.053333 0Z" fill="#333C4F" p-id="21434"></path><path d="M437.333333 331.690667m-43.52 0a43.52 43.52 0 1 0 87.04 0 43.52 43.52 0 1 0-87.04 0Z" fill="#333C4F" p-id="21435"></path><path d="M618.581333 389.632m-36.266666 0a36.266667 36.266667 0 1 0 72.533333 0 36.266667 36.266667 0 1 0-72.533333 0Z" fill="#333C4F" p-id="21436"></path><path d="M530.858667 619.690667a34.167467 34.167467 0 0 1-11.349334-66.389334l369.834667-129.365333c17.749333-6.229333 37.290667 3.157333 43.52 20.906667 6.229333 17.834667-3.157333 37.290667-20.906667 43.52L542.122667 617.728c-3.669333 1.28-7.509333 1.962667-11.264 1.962667z" fill="#333C4F" p-id="21437"></path></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1 @@
<svg t="1697261940992" class="icon" viewBox="0 0 1070 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="12498" width="32" height="32"><path d="M847.058824 848.313725H224.627451c-64 0-115.45098-45.176471-115.45098-101.647058V212.078431c0-56.470588 51.45098-101.647059 115.45098-101.647058h84.078431c10.039216 0 18.823529 8.784314 18.82353 18.823529s-8.784314 18.823529-18.82353 18.823529h-84.078431c-42.666667 0-77.803922 28.862745-77.803922 64v533.333334c0 35.137255 35.137255 64 77.803922 64h622.431373c42.666667 0 77.803922-28.862745 77.803921-64V212.078431c0-35.137255-35.137255-64-77.803921-64h-464.313726c-10.039216 0-18.823529-8.784314-18.823529-18.823529s8.784314-18.823529 18.823529-18.823529h464.313726c64 0 115.45098 45.176471 115.45098 101.647058v533.333334c-1.254902 56.470588-52.705882 102.901961-115.45098 102.90196z" fill="#0B3155" p-id="12499"></path><path d="M532.078431 498.196078c-37.647059 0-72.784314-15.058824-99.137255-41.411764L143.058824 166.901961c-7.529412-7.529412-7.529412-18.823529 0-26.352941 7.529412-7.529412 18.823529-7.529412 26.352941 0l289.882353 289.882353c18.823529 18.823529 45.176471 30.117647 72.784313 30.117647 27.607843 0 53.960784-10.039216 72.784314-30.117647l287.372549-287.372549c7.529412-7.529412 18.823529-7.529412 26.352941 0 7.529412 7.529412 7.529412 18.823529 0 26.352941L631.215686 456.784314c-26.352941 26.352941-61.490196 41.411765-99.137255 41.411764z" fill="#0B3155" p-id="12500"></path><path d="M927.372549 692.705882c-5.019608 0-10.039216-1.254902-13.803922-5.019607L643.764706 417.882353c-7.529412-7.529412-7.529412-18.823529 0-26.352941 7.529412-7.529412 18.823529-7.529412 26.352941 0L941.176471 661.333333c7.529412 7.529412 7.529412 18.823529 0 26.352942-3.764706 3.764706-8.784314 5.019608-13.803922 5.019607zM134.27451 692.705882c-5.019608 0-10.039216-1.254902-13.803922-5.019607-7.529412-7.529412-7.529412-18.823529 0-26.352942l271.058824-271.058823c7.529412-7.529412 18.823529-7.529412 26.352941 0 7.529412 7.529412 7.529412 18.823529 0 26.352941L148.078431 687.686275c-3.764706 3.764706-8.784314 5.019608-13.803921 5.019607z" fill="#0B3155" p-id="12501"></path></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1 @@
<svg t="1697262172699" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="20060" width="32" height="32"><path d="M560.342299 77.721345c39.651265 0 77.721345 6.203112 113.358831 18.366076 29.312745 10.095261 58.62549 24.569189 87.330087 43.178525 28.826226 18.730966 55.584749 40.745932 79.42416 65.315121 24.569189 25.298967 45.002969 52.300748 60.936453 80.397196 16.541632 29.312745 27.60993 58.868749 32.840005 88.059865 8.514075 47.313933 10.46015 83.681197 6.081482 114.696757-3.770519 26.880152-11.798076 46.705785-21.163558 69.572159-3.892149 9.608742-8.027557 19.582373-11.919706 30.650671-13.86578 39.043117-47.192303 70.910084-76.505048 99.128162-12.162965 11.676446-23.717781 22.744744-32.961634 33.569783l-0.12163 0.121629-0.12163 0.12163c-40.137784 48.16534-55.828008 99.97957-44.273191 145.712317 8.878964 35.637487 8.635705 42.083858 8.270816 51.206082 0 1.337926-0.12163 2.675852-0.12163 4.257038-0.364889 7.297779-0.12163 16.784891 0.12163 23.352892H401.737239c-0.973037-10.21689-1.702815-21.650077-1.337926-25.785485 1.702815-8.757335-0.486519-17.636299-5.959853-24.447559-9.730372-11.919705-25.177337-13.257632-36.002375-13.257632-9.730372 0-21.285188 1.337926-34.66445 3.892149h-0.243259c-11.919705 2.432593-58.138971 9.000594-101.439126 9.000594-46.340896 0-58.990379-7.662668-61.179712-9.243854-5.351704-12.041335-2.432593-20.920299 2.675852-34.056301 4.257038-10.825039 9.487112-24.2043 3.162371-38.678228-2.432593-5.473334-5.473334-9.852001-8.514075-13.379261l4.986815-0.851407 3.40563-16.420003c0.973037-4.865186 1.824445-17.028151-11.433187-26.028744-0.486519-0.364889-1.094667-0.729778-1.702815-1.094667 3.52726-3.892149 6.446371-8.514075 7.905927-14.352298v-0.24326c3.162371-13.500891 7.784297-66.166528-26.272003-77.356455l-0.364889-0.12163-0.364889-0.12163c-4.986816-1.459556-11.311557-2.554223-19.217485-4.013778-7.784297-1.337926-16.541632-2.919112-24.325929-4.865186-4.013778-0.973037-6.81126-1.946074-8.878964-2.675852 0.486519-4.500297 2.310963-6.93289 6.081482-12.406224l0.12163-0.12163 0.121629-0.121629c12.041335-17.879558 27.001782-41.47571 36.610524-65.315121v-0.243259c4.135408-10.581779 9.243853-20.79867 14.109039-30.650671 6.081482-12.406224 11.433187-22.988003 14.352299-33.083264l0.486518-1.581186C158.234686 492.721701 162.248464 479.585699 149.72061 460.733104c-0.364889-0.486519-0.608148-0.973037-0.973037-1.459556-6.324742-9.365483-19.582373-28.947856-6.446371-64.098824 3.770519-9.852001 24.2043-60.328305 62.274379-118.710536 17.514669-26.880152 36.002376-50.962822 54.854971-71.518232 21.893337-23.839411 44.394821-43.056895 66.896306-57.165935 71.761492-45.246229 154.834541-70.058677 234.015441-70.058676m0-24.32593c-87.938235 0-175.268322 28.704597-246.908184 73.707566-104.966386 65.55838-175.146692 210.784179-193.999287 259.314408-18.366077 49.138377 3.648889 78.207863 9.973631 87.816606 6.446371 9.608742 4.986816 13.014372 0.364889 28.218078-4.378667 15.203706-18.244447 37.340302-27.853189 61.78786-9.608742 23.961041-26.393633 49.138377-34.177931 60.814824-8.149186 11.798076-11.433187 18.609336-10.33852 35.759116 1.824445 17.14978 54.976601 21.041929 69.937047 25.420597 14.595558 4.743556 12.041335 40.989191 10.216891 48.773488-1.824445 7.419408-21.163559 14.838817-20.433781 21.650077 0.608148 6.446371 26.636893 20.55541 25.420596 20.79867-1.216296 0.608148-13.257632 7.784297-15.811854 19.217484-2.432593 11.433187 11.798076 12.406224 17.636299 26.028745 6.203112 13.62252-22.623114 37.94845-4.986816 74.558974 8.392446 16.906521 44.151562 21.893337 82.586531 21.893336 44.151562 0 91.830384-6.568001 106.182682-9.487112 11.189928-2.189334 21.771707-3.40563 30.042523-3.405631 11.919705 0 19.460744 2.554223 18.122817 8.757335-1.946074 8.635705 2.797482 54.611712 4.621927 54.611712h407.094429c-1.581185 0-3.40563-32.840005-2.554223-46.584155 0.364889-13.62252 2.189334-18.609336-8.757334-62.396009-10.946668-43.543414 9.852001-88.546383 39.408005-124.18387 30.164153-35.150968 91.952013-78.572752 113.96698-140.360613 22.258225-62.15275 51.57097-95.965792 27.974819-227.325811C934.231835 237.177812 806.642335 116.156313 681.485428 73.221048c-39.408006-13.62252-80.397197-19.825632-121.143129-19.825633z" fill="" p-id="20061"></path></svg>

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@@ -0,0 +1 @@
<svg t="1699885577620" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10648" width="32" height="32"><path d="M874.033889 149.966111A508.620037 508.620037 0 0 0 511.999232 0.001536a511.794432 511.794432 0 0 0-402.072997 194.918108V128.001344a25.599962 25.599962 0 0 0-51.199923 0v152.166172a25.599962 25.599962 0 0 0 33.843149 24.268763l146.073381-49.766325a25.599962 25.599962 0 0 0-16.486375-48.435127l-76.287886 26.009561a460.696909 460.696909 0 0 1 366.181851-180.940529c254.105219 0 460.799309 206.69409 460.799309 460.799309s-206.69409 460.799309-460.799309 460.799309a460.543309 460.543309 0 0 1-405.912991-242.534037 25.599962 25.599962 0 1 0-45.055933 24.268764 511.845632 511.845632 0 0 0 451.020124 269.465196c136.754995 0 265.318002-53.24792 362.034657-149.964575s149.964575-225.279662 149.964575-362.034657a508.620037 508.620037 0 0 0-149.964575-362.034657z" fill="" p-id="10649"></path><path d="M511.999232 537.60073a25.599962 25.599962 0 0 1-12.441581-3.225596l-230.399655-127.999808a25.599962 25.599962 0 0 1 24.883163-44.748732l217.087674 120.575819 268.748397-171.007744a25.599962 25.599962 0 1 1 27.494359 43.161535l-281.599578 179.199732a25.599962 25.599962 0 0 1-13.721579 3.993594z" fill="" p-id="10650"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264567424" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="105412" width="32" height="32"><path d="M514.048 936.96c-68.608 0-136.192-15.872-197.12-46.592-24.064 6.656-61.44 15.872-97.28 25.088-19.456 5.12-38.912 9.728-56.32 14.336-19.968 5.12-40.96-0.512-56.32-14.336-14.848-14.336-21.504-34.816-17.408-55.296 9.216-44.032 16.384-89.088 23.04-124.928 2.56-15.36 5.12-29.696 7.168-41.472-34.816-69.632-50.688-148.48-45.568-226.816 13.824-225.792 203.776-406.016 430.08-410.624 120.832-2.56 233.984 43.52 319.488 129.024s131.072 198.656 129.024 319.488l-29.696-0.512 29.696 0.512c-4.096 227.328-185.344 416.256-411.136 430.592-9.216 1.024-18.432 1.536-27.648 1.536z m-197.12-106.496c9.216 0 18.432 2.048 27.136 6.656 59.904 29.696 127.488 43.52 194.56 38.912 195.584-12.288 351.744-176.128 355.328-372.224 2.048-104.448-37.376-202.752-111.104-275.968S611.328 114.688 506.88 116.736c-196.608 3.072-359.936 158.72-372.736 354.304-4.608 68.096 9.216 135.68 39.424 195.584 6.144 11.776 8.192 25.088 5.632 37.888-2.048 11.264-4.608 25.6-7.168 40.96-6.144 36.352-13.824 81.92-23.04 126.464 17.408-4.608 36.864-9.728 56.32-14.336 35.328-9.216 72.192-17.92 95.744-24.576 4.608-2.048 10.24-2.56 15.872-2.56z" fill="#666666" p-id="105413"></path><path d="M513.536 758.784c-119.808 0-217.088-97.28-217.088-217.088h59.904c0 87.04 70.144 157.184 157.184 157.184s157.184-70.144 157.184-157.184h59.904c0 119.808-97.28 217.088-217.088 217.088z" fill="#666666" p-id="105414"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<svg t="1697263119898" class="icon" viewBox="0 0 1088 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="42325" width="32" height="32"><path d="M773.41504 319.616c42.496 36.224 62.912 92.288 58.048 158.08-8.064 107.904-69.632 211.968-172.8 293.12a612.096 612.096 0 0 1-193.536 101.44A484.48 484.48 0 0 1 318.88704 896a429.44 429.44 0 0 1-88.192-9.152 700.288 700.288 0 0 1-84.416-23.232c-21.184-7.168-74.176-34.944-76.288-35.968a10.496 10.496 0 0 1-5.696-10.944 10.88 10.88 0 0 1 8.896-8.704l12.992-2.56 13.76-2.688a1246.272 1246.272 0 0 0 87.232-19.968c41.6-12.288 74.176-29.12 99.456-51.008 59.904-52.032 100.8-142.592 121.216-269.12a274.112 274.112 0 0 1 62.336-133.376c33.6-37.952 81.728-61.184 135.744-64.768a235.52 235.52 0 0 1 167.488 55.04z m-165.824-33.92c-47.872 3.328-90.624 23.424-120.192 57.152a249.216 249.216 0 0 0-57.216 122.88c-9.408 58.176-22.336 107.136-39.808 150.208-22.336 55.68-52.16 99.776-88.448 131.392-27.968 24.192-63.168 42.304-108.032 55.552-23.104 6.912-59.968 14.848-86.016 19.904 16.128 8.192 35.712 17.344 45.952 20.672 27.712 9.472 55.104 17.088 81.728 22.4 72 14.848 144.896 10.496 222.528-13.696a593.024 593.024 0 0 0 186.24-97.728c98.688-77.504 157.056-176.448 164.864-278.208 4.48-59.2-13.44-109.184-50.56-140.8a213.184 213.184 0 0 0-151.04-49.728z m-24 395.52c4.864 3.584 5.696 10.24 1.92 15.104-39.04 47.168-92.16 79.04-130.368 97.664a446.208 446.208 0 0 1-73.92 29.312 10.112 10.112 0 0 1-2.944 0.512 11.136 11.136 0 0 1-10.752-7.68c-1.92-5.568 1.6-11.456 7.488-13.248 1.344-0.256 123.136-35.2 192.768-119.808a11.84 11.84 0 0 1 15.808-1.792z m137.92-187.136c6.208 0.512 10.752 5.888 9.984 11.712-0.256 1.536-4.032 35.2-31.168 71.936a11.52 11.52 0 0 1-9.152 4.352 11.712 11.712 0 0 1-6.464-1.792 10.048 10.048 0 0 1-2.688-14.784c23.68-32.128 27.136-61.76 27.136-62.016 0.576-5.824 6.208-9.92 12.352-9.408z m20.48-291.84c23.36 7.68 42.688 21.76 54.784 39.808 12.672 18.88 15.872 39.552 8.896 58.432a61.888 61.888 0 0 1-8.896 15.808 10.688 10.688 0 0 1-8.832 4.352 12.928 12.928 0 0 1-6.72-2.048c-5.12-3.584-6.208-10.24-2.432-14.784a36.16 36.16 0 0 0 5.632-10.496c4.608-12.48 2.176-26.752-6.72-39.744a82.624 82.624 0 0 0-43.264-31.104c-18.56-6.144-37.888-6.4-54.272-1.024-15.616 5.12-26.624 14.72-31.232 27.264a11.52 11.52 0 0 1-14.208 6.656 10.624 10.624 0 0 1-7.04-13.568c7.04-18.816 22.912-33.152 45.184-40.512a112.32 112.32 0 0 1 69.12 1.024z m39.488-73.152c5.632 2.56 7.808 8.96 5.12 14.272l-21.248 41.6a12.224 12.224 0 0 1-10.24 5.824 11.008 11.008 0 0 1-4.8-1.024 10.368 10.368 0 0 1-5.12-14.272l21.248-41.6c2.688-5.312 9.408-7.36 15.04-4.8z" fill="#231815" p-id="42326"></path></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg t="1697262127958" class="icon" viewBox="0 0 1025 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="17078" width="32" height="32"><path d="M469.856 470.336c3.744 0 7.52-1.312 10.56-3.968l362.144-317.504-21.12-24.064-362.144 317.472c-6.656 5.824-7.328 15.936-1.472 22.592 3.168 3.616 7.584 5.472 12.032 5.472zM326.016 1024c196.544 0 313.984-154.56 313.984-304 0-43.072-10.304-90.528-25.536-121.344l144.704-72.352c5.408-2.72 8.832-8.256 8.832-14.304l0-128 96 0c0.352 0 3.264-0.192 3.616-0.192 21.312-1.44 27.68-8.224 28.384-31.808l0-128 96 0c4.128 0 6.976 0.448 8.896 0.736 3.872 0.608 11.104 1.728 17.376-3.904 6.464-5.76 6.176-13.056 5.92-19.488-0.064-2.304-0.192-5.344-0.192-9.344l0-144.992c0-25.92-21.088-47.008-47.008-47.008l-124 0c-11.328 0-22.336 4.128-31.008 11.648l-421.984 369.92c-20.768-4.16-52.16-9.568-74.016-9.568-179.744 0-325.984 146.24-325.984 325.984s146.24 326.016 326.016 326.016zM326.016 404c16.032 0 43.488 3.84 75.328 10.496 4.96 1.088 10.048-0.32 13.824-3.616l427.872-375.104c2.784-2.432 6.336-3.776 9.952-3.776l124 0c8.288 0 15.008 6.72 15.008 15.008l0 144.992-112 0c-8.832 0-16 7.168-16 16l0 144-112 0c-8.832 0-16 7.168-16 16l0 134.112-151.168 75.584c-4.192 2.08-7.264 5.952-8.384 10.496s-0.192 9.376 2.56 13.184c14.08 19.424 28.992 67.648 28.992 118.624 0 133.696-105.472 272-281.984 272-162.112 0-294.016-131.904-294.016-294.016s131.904-293.984 294.016-293.984zM272 864c61.76 0 112-50.24 112-112s-50.24-112-112-112-112 50.24-112 112 50.24 112 112 112zM272 672c44.096 0 80 35.904 80 80s-35.904 80-80 80-80-35.904-80-80 35.904-80 80-80z" fill="#444444" p-id="17079"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<svg t="1697262655455" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="31884" width="32" height="32"><path d="M127 192c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64z m0 384c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64z m0 384c-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64 0 35.346-28.654 64-64 64zM288 88h632c22.091 0 40 17.909 40 40s-17.909 40-40 40H288c-22.091 0-40-17.909-40-40s17.909-40 40-40z m0 384h632c22.091 0 40 17.909 40 40s-17.909 40-40 40H288c-22.091 0-40-17.909-40-40s17.909-40 40-40z m0 384h632c22.091 0 40 17.909 40 40s-17.909 40-40 40H288c-22.091 0-40-17.909-40-40s17.909-40 40-40z" fill="#707070" p-id="31885"></path></svg>

After

Width:  |  Height:  |  Size: 826 B

View File

@@ -0,0 +1 @@
<svg t="1697264134453" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="85358" width="32" height="32"><path d="M512 28.8C243.2 28.8 28.8 243.2 28.8 512S243.2 998.4 512 998.4 998.4 780.8 998.4 512 780.8 28.8 512 28.8z m0 918.4C272 947.2 76.8 752 76.8 512S272 76.8 512 76.8 947.2 272 947.2 512 752 947.2 512 947.2z" fill="#333333" p-id="85359"></path><path d="M592 582.4l25.6-16c41.6-25.6 64-70.4 64-124.8 0-92.8-64-147.2-169.6-147.2h-150.4c-3.2 0-3.2 3.2-3.2 3.2v425.6c0 3.2 3.2 6.4 3.2 6.4h41.6c3.2 0 3.2-3.2 3.2-6.4v-131.2h115.2v-6.4 3.2h12.8l99.2 134.4 3.2 3.2h51.2c3.2 0 3.2 0 3.2-3.2v-6.4l-99.2-134.4z m35.2-140.8c0 64-41.6 99.2-121.6 99.2h-102.4v-198.4h102.4c80 3.2 121.6 38.4 121.6 99.2z" fill="#333333" p-id="85360"></path></svg>

After

Width:  |  Height:  |  Size: 780 B

View File

@@ -0,0 +1 @@
<svg t="1697263176388" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="46062" width="32" height="32"><path d="M936.585366 274.731707v699.317073H87.414634V274.731707h849.170732z m0-49.951219H87.414634a49.95122 49.95122 0 0 0-49.951219 49.951219v699.317073a49.95122 49.95122 0 0 0 49.951219 49.95122h849.170732a49.95122 49.95122 0 0 0 49.951219-49.95122V274.731707a49.95122 49.95122 0 0 0-49.951219-49.951219z" fill="#515151" p-id="46063"></path><path d="M307.949268 505.256585a24.97561 24.97561 0 0 1 49.95122 0v246.259513a24.97561 24.97561 0 0 1-49.95122 0v-246.259513zM428.83122 505.256585a24.97561 24.97561 0 0 1 49.951219 0v246.259513a24.97561 24.97561 0 0 1-49.951219 0v-246.259513zM553.709268 501.76a24.97561 24.97561 0 0 1 49.95122 0v246.009756a24.97561 24.97561 0 0 1-49.95122 0v-246.009756zM670.09561 501.76a24.97561 24.97561 0 0 1 49.951219 0v246.009756a24.97561 24.97561 0 0 1-49.951219 0v-246.009756z" fill="#515151" p-id="46064"></path><path d="M319.762732 252.028878a24.97561 24.97561 0 0 1-48.602537-11.538732c1.723317-7.242927 5.244878-19.156293 10.964293-34.266536a376.557268 376.557268 0 0 1 37.063805-73.553171C364.344195 63.762732 427.457561 21.479024 510.001951 21.479024c82.569366 0 145.607805 42.308683 190.713756 111.191415a376.03278 376.03278 0 0 1 36.963903 73.578146c5.694439 15.110244 9.216 27.048585 10.914341 34.266537a24.97561 24.97561 0 0 1-48.602536 11.48878 154.099512 154.099512 0 0 0-1.998049-7.242926 310.871415 310.871415 0 0 0-7.068098-20.929561 326.755902 326.755902 0 0 0-32.018731-63.787708C622.267317 104.04839 573.639805 71.430244 510.001951 71.430244c-63.637854 0-112.340293 32.643122-149.029463 88.613463-13.237073 20.205268-23.901659 42.008976-32.118634 63.812683-2.872195 7.617561-5.244878 14.660683-7.093074 20.929561-1.073951 3.646439-1.748293 6.119024-1.998048 7.242927z" fill="#515151" p-id="46065"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg t="1699885324884" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1983" width="32" height="32"><path d="M192 768v64H128v-64h64z m704 0v64H320v-64h576zM192 480v64H128v-64h64z m704 0v64H320v-64h576zM192 192v64H128V192h64z m704 0v64H320V192h576z" p-id="1984"></path></svg>

After

Width:  |  Height:  |  Size: 319 B

View File

@@ -0,0 +1 @@
<svg t="1697262043423" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="14894" width="32" height="32"><path d="M534.828313 373.110827a68.575259 68.575259 0 1 0 0.04516 137.060198 68.575259 68.575259 0 0 0-0.04516-137.060198z m-228.48635 0a68.575259 68.575259 0 1 0 0.045159 137.150518 68.575259 68.575259 0 0 0-0.045159-137.150518zM923.270915 53.220904H100.706505A91.380992 91.380992 0 0 0 9.325513 144.601896V692.97817a91.380992 91.380992 0 0 0 91.380992 91.380992h228.486351v228.486351l304.648467-228.486351h289.407012a91.426152 91.426152 0 0 0 91.403572-91.380992V144.624476a91.380992 91.380992 0 0 0-91.380992-91.403572z m45.701786 594.07806a91.426152 91.426152 0 0 1-91.403572 91.403572H618.599868L374.894642 921.4871v-182.784564H146.408291a91.403572 91.403572 0 0 1-91.380992-91.403572V190.326262a91.380992 91.380992 0 0 1 91.380992-91.380992h731.160838a91.448732 91.448732 0 0 1 91.403572 91.380992v456.972702z m-205.658037-274.188137a68.575259 68.575259 0 1 0 0.06774 137.127938 68.575259 68.575259 0 0 0-0.06774-137.127938z" fill="#203646" p-id="14895"></path></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<svg t="1697262350998" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="23542" width="32" height="32"><path d="M744.3 891.4c7 7.8 14.3 8.8 22.6 7.3 16.6-2.8 28.9-12.6 40.5-23.6 12.1-11.6 24.9-21.9 41-27.9 21.4-7.5 43-7 64.1-2 28.9 6.8 53.6 22.9 75.7 42.2 10.6 9.3 20.6 19.4 31.2 28.9 4.3 3.8 6.3 7.8 3 14.8-15.1 7.5-31.7 6.3-46.8-2-11.3-6-20.9-15.1-31.2-22.9-8.6-6.5-16.6-14.1-25.4-20.1-18.6-12.3-38.5-11.8-56.8-1-19.4 11.3-37.5 24.9-56.1 37.5-10.8 7.3-22.9 12.3-35.7 14.8-14.6 2.8-28.7-1.3-41-8.3-15.1-8.8-28.9-19.6-43.5-29.2-6.5-4.3-13.3-8.6-20.1-12.6-23.6-13.3-46.5-10.6-68.1 5-10.1 7.3-20.1 15.1-29.9 22.9-24.4 19.1-52.3 23.6-81.7 17.1-13.3-2.8-25.6-9.6-36.5-18.6-11.1-9.3-22.6-18.6-34.4-26.9-15.6-10.8-32.7-10.1-48.8-1.8-12.6 6.5-23.9 15.1-35.7 23.1-25.9 18.1-54.1 28.4-86 22.9-28.9-4.8-54.6-16.3-73.2-39.7-16.8-21.1-36.2-20.4-55.8-13.3-16.1 5.8-29.4 15.8-42.2 26.4C60.9 914.7 47.6 924 32.3 930c-9.6 3.8-19.4 4.3-28.9 1.5-5.8-14.3-4.5-21.4 7-29.9 20.1-14.8 41-28.7 61.3-43.2 4.8-3.3 9.1-7.3 14.6-11.6-2.5-4.5-4.5-8.3-7-12.1C72.8 825 67.2 815 68 802.4c0.8-17.1 9.6-27.4 26.7-29.2 24.1-2.3 48.3-3.8 72.4-5.5 33.4-2.3 66.6-4.3 100.1-6.3 22.9-1.3 46-2 68.9-3.8 58.1-3.8 115.9-8 173.7-11.8 21.4-1.5 42.5-1.8 63.9-3 59.3-3.8 118.4-8 177.5-12.1 17.6-1.3 35.2-1.5 52.5-2.5 44.2-2.5 88.5-5.5 132.8-8 4.3-0.3 8.3-0.5 12.6 0 13.6 1.8 19.6 13.1 12.6 24.6-4.8 7.8-10.3 15.8-17.6 20.9-34.5 23.6-69.1 46.8-104.3 69.1-29.4 18.4-59.6 34.9-89.5 52.5-1.7 0.8-3.2 2.1-6 4.1z m137.3-127.2c-0.3-1-0.5-1.8-0.8-2.8-5-0.3-10.3-1-15.3-0.5-15.8 1-31.7 2.8-47.5 3.8-40.5 2.8-81 5.3-121.2 7.8-39.2 2.5-78.4 5-117.7 7.3-42 2.5-84.2 5.3-126.2 7.8-36.7 2.3-73.4 4.8-110.1 7-57.1 3.5-114.1 6.8-171.5 10.3-9.1 0.5-18.4 1-27.4 2.8-7.3 1.5-15.3 2.3-21.9 9.1 4.5 3.5 8.3 6.8 12.6 9.6 31.2 19.4 62.1 39.2 93.5 57.8 11.3 6.8 23.9 11.8 38 11.1 12.6-0.8 23.6-5.8 33.7-12.1 18.9-11.6 36.5-25.1 55.3-36.2 17.3-10.1 36.5-15.8 56.1-5.8 12.1 6.3 24.1 13.1 35.7 20.4 15.1 9.6 28.9 21.4 44.8 29.7 14.3 7.8 31.2 8.3 45.5-0.8 12.8-8.3 24.4-18.9 36.2-28.7 23.1-18.9 49-28.7 78.9-20.9 12.1 3 23.4 8.3 34.9 12.8 14.6 5.8 29.2 6 43.7 0 6.8-3 13.6-6.5 20.4-9.8 42.2-19.6 81.2-44 119.4-70.4 4.1-2.5 7.4-6.3 10.9-9.3zM127.6 735.5c6.8-10.6 11.6-18.1 16.6-25.6 22.1-33.2 40.2-68.1 53.1-106.1 7-21.4 14.6-42.7 19.4-64.6 5-22.4 7.8-45.3 10.1-68.1 3.3-32.4 3-65.1 0.8-97.8-2-29.2-7.3-57.8-13.8-86.5-6-26.9-14.8-53.1-25.6-78.4-13.1-30.4-28.9-59.3-47.5-86.5-7-10.3-7.8-18.6-2.5-26.7 5-7.5 18.6-12.8 27.9-8.8 20.9 8.5 41.5 17.6 61.3 27.9 37.2 19.1 72.2 42 105.6 66.9 42.5 31.4 81.7 66.1 118.2 104.3 31.9 33.7 61.1 69.6 87.7 107.6 23.9 34.2 46 69.6 64.1 107.4 15.3 32.2 29.9 65.1 43.2 98.3 8 20.4 13.8 42 18.9 63.6 2 9.1 1.3 19.4-0.8 28.4-3.8 17.1-20.4 25.1-36.7 18.6-29.2-11.6-58.6-22.1-89.3-28.9-19.1-4.3-38.5-8-58.1-9.8-38.5-3.5-76.9-3.8-115.2 0-35.7 3.8-71.2 11.1-105.1 23.1-25.9 9.1-50.5 21.6-75.9 32.4-13.3 5.8-26.4 12.8-41.7 11.3-3.9-0.2-7.7-1-14.7-2z m79.7-585.6c-0.3 3.8-0.5 4.5-0.3 5.3 16.3 43.2 32.7 86.5 44.8 131.2 9.6 35.2 14.3 71.2 17.9 107.4 3.3 34.2 1.5 68.4-3.8 102.3-3.3 20.6-6 41.5-11.1 61.6-6.8 26.1-14.6 52.3-26.4 76.7-4.8 9.8-8.3 20.4-13.1 32.9 5.3-1.5 8.5-2 11.6-3 18.9-5.8 37.2-12.3 56.3-16.8 19.4-4.8 39.5-7.3 59.1-11.1 46-8.5 92.5-6.3 138.8-3.3 21.9 1.5 43.7 6.8 65.4 11.6 20.4 4.5 40.2 10.8 60.3 16.1 5 1.3 10.1 1.8 15.1 2.8 0.5-3 1.3-4.3 1-5.3-4.5-15.6-8-31.7-13.8-46.8-10.8-28.4-22.6-56.6-34.9-84.2-21.4-47.8-49.5-91.8-80.7-133.8-42.2-56.8-91.5-107.1-146.3-152.4-40.2-33.2-84-61.8-129-88-2.9-1.4-6.7-1.9-10.9-3.2z" p-id="23543"></path><path d="M441.3 181.9c4.8 2 13.8 4.3 21.6 8.8 61.6 34.2 117.9 75.7 169 124 50.8 48.3 95.5 101.6 133.5 160.4 25.1 39 47 79.7 65.4 122.2 11.8 27.7 23.1 55.3 31.2 84.5 0.8 3.3 2.3 6.8 1.5 9.8-3.3 15.6-10.8 21.6-25.9 14.3-19.6-9.6-39.7-15.1-61.1-16.6-9.6-0.8-19.1-0.3-28.7 1-18.6 2.3-30.9-6.3-38.7-21.6-6.5-12.8-10.8-26.9-16.1-40.5-5.8-15.3-10.8-30.7-16.6-45.8-6-15.8-12.1-31.9-19.4-47.5-14.6-31.4-29.4-62.6-45-93.5-19.1-38.2-42.7-73.4-69.1-106.9-33.4-42.5-71.7-80.2-116.7-110.9-1-0.8-2-1.5-3-2.3-10.6-7.5-13.3-14.3-10.1-24.1 3.6-9.8 13.4-15.8 28.2-15.3z m373.2 470.9c-1.5-5-2.3-8.8-3.8-12.1-6-14.1-12.3-28.4-18.6-42.2-22.1-48.3-49-93.8-79.7-137-28.2-40-58.8-77.7-93.8-112.4-12.3-12.3-25.1-24.4-37.7-36.7-3-3-5.5-5-9.3-0.5 1.5 2.5 2.5 5.3 4.3 7.5 18.1 26.4 37.2 52.3 54.6 79.2 24.9 38.7 45.5 79.7 62.6 122.2 14.1 34.7 25.9 70.4 38.2 105.8 5.3 15.3 15.1 24.6 31.7 25.9 13.8 1 27.4 1.5 41.2 2 2.5 0.3 5.2-0.7 10.3-1.7z" p-id="23544"></path></svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View File

@@ -0,0 +1 @@
<svg t="1699885471712" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9656" width="32" height="32"><path d="M893.805714 41.984L1005.763048 838.704762a48.761905 48.761905 0 0 1-41.496381 55.076571L167.521524 1005.763048a48.761905 48.761905 0 0 1-55.076572-41.496381L0.487619 167.521524a48.761905 48.761905 0 0 1 41.496381-55.076572L838.704762 0.487619a48.761905 48.761905 0 0 1 55.076571 41.496381z m-56.58819 17.798095L59.782095 169.033143 169.033143 946.468571l777.435428-109.251047-109.251047-777.435429zM486.887619 520.338286a29.257143 29.257143 0 0 1 34.499048-5.12l2.779428 1.706666 267.849143 184.466286 2.535619 1.950476a29.257143 29.257143 0 0 1-33.011809 47.908572l-2.706286-1.682286-245.394286-168.96-182.710857 228.839619-2.121143 2.389333a29.257143 29.257143 0 0 1-45.470476-36.327619l1.852952-2.584381 199.728762-250.148571 2.169905-2.438095z m235.788191-324.973715a29.257143 29.257143 0 0 1 5.90019 38.619429l-1.901714 2.56-206.604191 251.12381a29.257143 29.257143 0 0 1-36.815238 6.997333l-2.730667-1.706667-260.949333-185.441524a29.257143 29.257143 0 0 1 31.207619-49.395809l2.681905 1.706667 238.738286 169.618285 189.293714-230.083047a29.257143 29.257143 0 0 1 41.203809-3.998477z" fill="#979797" p-id="9657"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264523945" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="101623" width="32" height="32"><path d="M512 998.44096c-262.3488 0-475.77088-213.44256-475.77088-475.77088C36.22912 260.3008 249.6512 46.85824 512 46.85824S987.7504 260.3008 987.7504 522.67008C987.7504 784.9984 774.3488 998.44096 512 998.44096zM512 102.76864c-231.5264 0-419.92192 188.35456-419.92192 419.90144 0 231.5264 188.39552 419.90144 419.92192 419.90144 231.56736 0 419.92192-188.37504 419.92192-419.90144C931.92192 291.1232 743.56736 102.76864 512 102.76864zM689.5616 807.85408c-23.22432 0-49.37728-4.95616-77.7216-14.76608l0.06144-0.18432c-16.60928-5.14048-29.06112-10.79296-37.0688-16.83456-7.65952-5.8368-11.53024-11.91936-11.53024-18.04288 0-4.21888 0.63488-7.96672 1.92512-11.3664 1.29024-3.23584 3.39968-5.67296 6.43072-7.43424 2.29376-1.39264 5.2224-2.08896 8.68352-2.08896 1.06496 0 2.19136 0.06144 3.3792 0.2048 5.16096 0.55296 11.9808 2.84672 20.13184 6.7584 28.9792 14.47936 55.1936 21.83168 77.88544 21.83168 13.06624 0 25.23136-2.27328 36.2496-6.73792 8.47872-3.13344 12.63616-13.59872 12.63616-31.90784l0-385.8432c0-10.69056-5.44768-16.36352-15.79008-16.36352L440.36096 325.07904c-14.52032 0-21.54496-6.26688-21.54496-19.16928 0-14.49984 7.02464-21.52448 21.54496-21.52448l271.4624 0c23.47008 0 39.26016 3.2768 46.8992 9.76896 9.1136 7.9872 13.78304 23.90016 13.78304 47.28832l0 397.27104c0 8.97024-1.78176 17.57184-5.26336 25.72288-3.50208 8.11008-8.72448 15.50336-15.52384 21.93408-6.77888 6.41024-15.48288 11.63264-25.82528 15.54432C715.53024 805.888 703.2832 807.85408 689.5616 807.85408zM341.03296 803.67616c-7.72096 0-14.06976-4.8128-19.39456-14.66368-5.4272-10.09664-8.192-21.93408-8.192-35.18464 2.00704-45.6704 4.32128-92.34432 6.90176-139.8784 2.62144-47.55456 4.9152-94.208 6.94272-139.96032 0-3.54304-1.39264-9.37984-10.67008-9.37984-0.90112 0-1.86368 0.06144-2.90816 0.16384l-65.55648 5.4272c-1.86368 0.14336-3.62496 0.24576-5.2224 0.24576-5.55008 0-9.46176-1.024-11.28448-2.9696-1.67936-1.80224-3.70688-6.20544-3.70688-17.05984 0-10.42432 1.76128-14.92992 3.25632-16.91648 1.39264-1.88416 5.30432-4.3008 16.0768-5.24288 12.3904-0.79872 24.86272-1.80224 37.31456-3.01056 12.43136-1.20832 24.84224-2.19136 37.2736-3.01056 1.88416-0.12288 3.72736-0.2048 5.50912-0.2048 13.02528 0 23.10144 3.80928 29.98272 11.32544 7.84384 8.62208 12.02176 20.86912 12.43136 36.37248l-14.09024 280.576c0 0 7.2704-7.41376 9.89184-10.24 2.58048-2.82624 6.08256-6.41024 10.48576-10.79296 5.69344-5.69344 11.20256-11.93984 16.384-18.51392 5.26336-6.63552 10.28096-13.37344 15.13472-20.25472 5.28384-7.5776 10.6496-11.9808 15.95392-13.06624 1.45408-0.3072 2.88768-0.45056 4.21888-0.45056 3.584 0 6.71744 1.024 9.64608 3.13344l2.82624-2.41664c-3.85024-7.72096-5.79584-18.96448-5.79584-33.46432l0-119.15264c0-19.02592 3.42016-32.03072 10.24-38.66624 6.81984-6.61504 19.12832-9.99424 36.57728-9.99424l146.26816 0c17.85856 0 30.59712 3.56352 37.80608 10.58816 7.18848 7.02464 10.83392 19.82464 10.83392 38.05184l0 119.15264c0 18.67776-3.66592 31.88736-10.8544 39.3216-7.20896 7.3728-19.92704 11.14112-37.7856 11.14112L481.28 694.6816c-14.39744 0-25.21088-2.12992-32.09216-6.32832l-2.6624 2.58048c1.4336 2.49856 2.12992 5.0176 2.12992 7.4752 0 10.24-14.97088 30.4128-44.56448 60.02688C374.8864 788.45952 353.6896 803.67616 341.03296 803.67616zM485.49888 515.31776c-3.62496 0-9.728 1.51552-9.728 11.53024l0 114.97472c0 11.0592 5.28384 13.37344 9.728 13.37344l140.26752 0c4.44416 0 9.76896-2.31424 9.76896-13.37344l0-114.97472c0-10.0352-6.12352-11.53024-9.76896-11.53024L485.49888 515.31776zM425.30816 421.41696c-14.09024 0-20.95104-6.656-20.95104-20.35712 0-13.68064 6.84032-20.33664 20.95104-20.33664l258.82624 0c13.70112 0 20.33664 6.656 20.33664 20.33664 0 13.70112-6.63552 20.35712-20.33664 20.35712L425.30816 421.41696zM384.53248 389.69344c-1.47456 0-3.01056-0.14336-4.64896-0.43008-5.2224-0.94208-11.14112-4.73088-17.63328-11.24352-9.25696-9.216-21.52448-20.6848-36.49536-34.07872-14.82752-13.23008-32.89088-28.73344-54.14912-46.44864l0.512-0.45056c-6.69696-3.70688-10.6496-7.72096-11.71456-12.00128-1.10592-4.42368-0.86016-8.45824 0.79872-12.32896 1.65888-3.8912 4.3008-7.168 7.80288-9.74848 3.584-2.64192 6.90176-4.34176 9.85088-5.07904 4.79232 0.02048 9.40032 1.31072 13.53728 3.93216l0.38912-0.43008c1.45408 0.8192 3.85024 2.39616 7.5776 5.4272 4.1984 3.42016 9.07264 7.70048 14.66368 12.86144l65.6384 58.40896c5.95968 5.59104 10.56768 9.99424 13.74208 13.18912 3.11296 3.11296 5.34528 5.632 6.71744 7.5776 1.26976 1.82272 2.10944 3.33824 2.43712 4.54656 0.34816 1.24928 0.53248 3.01056 0.53248 5.18144 0 3.25632-1.06496 6.79936-3.072 10.50624-2.02752 3.6864-4.85376 6.57408-8.2944 8.6016C390.41024 389.0176 387.64544 389.69344 384.53248 389.69344z" fill="#272636" p-id="101624"></path></svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@@ -0,0 +1 @@
<svg t="1697262110104" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="16079" width="32" height="32"><path d="M511.9250126 961.84999971l-3.5997003-1.7998497-446.40029355-222.69393897V286.49378867L511.9250126 62.03749678l3.59970029 1.79984971 446.40029356 222.65644218v450.86242237l-449.99999385 224.49378867zM116.70795283 703.57152675l367.80684434 183.50970468v-358.0951535L116.70795283 349.67602286v353.8955039z m395.21705977-580.4516206L148.61779297 304.37979805l363.30721963 177.13523672 363.30721963-177.13523672-363.30721963-181.2598919z m395.21705977 226.5561167l-367.80684435 179.31005508v358.09515352l367.80684435-183.5097047V349.67602286z m-270.87742354 219.58169853l184.82209629-90.14248651a27.74768731 27.74768731 0 0 1 36.67194316 12.56145292 27.37271865 27.37271865 0 0 1-12.56145292 36.55945283l-184.85959307 90.14248652a27.56020254 27.56020254 0 0 1-36.63444639-12.52395615 27.37271865 27.37271865 0 0 1 12.56145293-36.59694961zM375.5488792 621.11589893a27.37271865 27.37271865 0 0 1-11.96150274-2.73727178l-184.93458663-90.1799833a27.33522187 27.33522187 0 0 1-12.56145292-36.55945283 27.89767442 27.89767442 0 0 1 36.63444639-12.56145293l184.89708985 90.14248652a27.37271865 27.37271865 0 0 1-12.07399395 51.89567432z" p-id="16080"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg t="1699885612920" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11694" width="32" height="32"><path d="M521.4 222.5c-2.9 1-6.1 1.6-9.4 1.6s-6.5-0.6-9.4-1.6c6.2-0.5 12.5-0.5 18.8 0z" fill="" p-id="11695"></path><path d="M780.6 442.8L593.8 255.9c-10.5-10.5-22.4-18.5-35.2-24.1 7.8-10 12.4-22.5 12.4-36.1 0-32.5-26.4-58.9-58.9-58.9s-58.9 26.4-58.9 58.9c0 13.6 4.6 26.1 12.4 36.1-12.8 5.6-24.8 13.6-35.2 24.1l-187 186.9c-63.5 0.3-115 52.1-115 115.6v213.1c0 63.8 51.9 115.6 115.6 115.6h536c63.8 0 115.7-51.9 115.7-115.6V558.4c0-63.5-51.6-115.3-115.1-115.6zM512 167.4c15.6 0 28.4 12.7 28.4 28.4 0 12.4-7.9 22.9-19 26.8-2.9 1-6.1 1.6-9.4 1.6s-6.5-0.6-9.4-1.6c-11.1-3.9-19-14.4-19-26.8 0-15.7 12.7-28.4 28.4-28.4z m-60.2 110.1c13.6-13.6 30.6-21.6 48.3-24 7.9-1.1 15.9-1.1 23.8 0 17.7 2.5 34.7 10.5 48.3 24.1l165.2 165.2H286.6l165.2-165.3z m413.3 494c0 46.9-38.2 85.1-85.1 85.1H244c-46.9 0-85.1-38.2-85.1-85.1V558.4c0-46.9 38.2-85.1 85.1-85.1h536c46.9 0 85.1 38.2 85.1 85.1v213.1z" fill="" p-id="11696"></path><path d="M507.3 750.4c0 8.4-6.8 15.3-15.3 15.3H237.9c-8.4 0-15.3-6.8-15.3-15.3 0-8.4 6.8-15.3 15.3-15.3H492c8.5 0 15.3 6.9 15.3 15.3zM783.5 579.5c0 8.4-6.8 15.3-15.3 15.3H237.9c-8.4 0-15.3-6.8-15.3-15.3 0-8.4 6.8-15.3 15.3-15.3h530.4c8.4 0 15.2 6.9 15.2 15.3z" fill="" p-id="11697"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg t="1697262414317" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="26641" width="32" height="32"><path d="M833.6 65.8h-59.5c-16.5 0-35.4 10.1-35.4 26.6s19 32.9 35.4 32.9h59.5c35.4 0 59.5 24 59.5 59.5v684.7c0 35.4-24 59.5-59.5 59.5H193.2c-35.4 0-74.7-24-74.7-59.5V184.8c0-35.4 24-59.5 59.5-59.5h74.7c16.5 0 22.8-16.5 22.8-32.9s-6.3-26.6-22.8-26.6H178C94.5 65.8 59 117.7 59 186v677.1c0 73.4 44.3 125.3 125.3 125.3h642.9c81 0 125.3-43 125.3-125.3V186c0.1-68.3-41.7-120.2-118.9-120.2zM252.7 334.1c0 16.5 13.9 30.4 30.4 30.4h446.7c16.5 0 30.4-13.9 30.4-30.4s-13.9-30.4-30.4-30.4H283.1c-16.5 0.1-30.4 14-30.4 30.4z m475.8 134.2H283.1c-16.5 0-30.4 13.9-30.4 30.4s13.9 30.4 30.4 30.4h446.7c16.5 0 30.4-13.9 30.4-30.4-1.3-17.7-15.2-30.4-31.7-30.4z m0 178.4H283.1c-16.5 0-30.4 13.9-30.4 30.4s13.9 30.4 30.4 30.4h446.7c16.5 0 30.4-13.9 30.4-30.4-1.3-17.7-15.2-30.4-31.7-30.4zM403.3 140.5h207.6c24 0 44.3-24 44.3-51.9S635 36.7 609.6 36.7H403.3c-25.3 0-45.6 24-45.6 51.9s20.3 51.9 45.6 51.9z" p-id="26642"></path></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<svg t="1697262513509" class="icon" viewBox="0 0 1057 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="28019" width="32" height="32"><path d="M885.438 557.919c25.695-51.52 40.545-109.247 40.545-170.527C925.983 173.44 749.918 0 532.769 0 315.614 0 139.552 173.44 139.552 387.424c0 61.28 14.847 119.007 40.542 170.525L20.48 830.303c0 0 101.215 20.285 203.904 41.44 68.48 76.19 136.64 152.255 136.64 152.255l146.75-250.429c8.32 0.51 16.545 1.245 24.995 1.245 8.445 0 16.7-0.735 24.99-1.245l146.75 250.429c0 0 68.16-76.03 136.61-152.255 102.69-21.155 203.935-41.44 203.935-41.44L885.438 557.919zM353.407 907.838c0 0-49.152-46.59-95.36-91.52-65.535-18.625-131.68-37.63-131.68-37.63l92.8-158.275c53.505 69.795 130.272 121.025 219.104 142.655L353.407 907.838zM532.769 704.253c-176.577 0-319.682-143.425-319.682-320.349 0-176.897 143.137-320.319 319.682-320.319 176.54 0 319.679 143.422 319.679 320.319C852.448 560.829 709.308 704.253 532.769 704.253zM807.488 816.318c-46.21 44.93-95.36 91.52-95.36 91.52l-84.835-144.77c88.835-21.63 165.6-72.86 219.104-142.655l92.77 158.305C939.133 778.688 873.023 797.663 807.488 816.318zM532.769 160c-123.715 0-224.002 100.287-224.002 223.999s100.287 223.999 224.002 223.999c123.71 0 223.999-100.287 223.999-223.999S656.478 160 532.769 160zM532.769 543.999c-88.355 0-160.002-71.647-160.002-160s71.647-160 160.002-160c88.35 0 160 71.647 160 160S621.118 543.999 532.769 543.999z" fill="#272636" p-id="28020"></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg t="1697263566017" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="58016" width="32" height="32"><path d="M903.5 98.2H119.3c-30.9 0-56 25.1-56 56v606.1c0 30.9 25.1 56 56 56h224v56c0 30.9 25.1 56 56 56h224c30.9 0 56-25.1 56-56v-56h224c30.9 0 56-25.1 56-56V154.2c0.2-31-24.9-56-55.8-56z m-1.8 648.4H126.6V168.5h769.1l6 578.1zM567.3 326.7h-308c-15.4 0-28-12.6-28-28s12.6-28 28-28h308c15.4 0 28 12.6 28 28s-12.6 28-28 28z m56 148.9h-364c-15.4 0-28-12.6-28-28s12.6-28 28-28h364c15.4 0 28 12.6 28 28s-12.6 28-28 28z m140 149h-504c-15.4 0-28-12.6-28-28s12.6-28 28-28h504c15.4 0 28 12.6 28 28s-12.6 28-28 28z" p-id="58017"></path></svg>

After

Width:  |  Height:  |  Size: 677 B

View File

@@ -0,0 +1 @@
<svg t="1698085083457" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7292" width="32" height="32"><path d="M889.4 183.5H137.5c-19.7 0-35.7-16-35.7-35.7v-1.1c0-19.7 16-35.7 35.7-35.7h751.8c19.7 0 35.7 16 35.7 35.7v1.1c0.1 19.7-15.9 35.7-35.6 35.7zM357 893.7H137.5c-19.7 0-35.7-16-35.7-35.7v-1.1c0-19.7 16-35.7 35.7-35.7H357c19.7 0 35.7 16 35.7 35.7v1.1c0.1 19.7-15.9 35.7-35.7 35.7zM357 531.2H137.5c-19.7 0-35.7-16-35.7-35.7v-1.1c0-19.7 16-35.7 35.7-35.7H357c19.7 0 35.7 16 35.7 35.7v1.1c0.1 19.7-15.9 35.7-35.7 35.7z" p-id="7293"></path><path d="M956.2 656.9c0-26.7 16.2-50.2 41.3-59.8l12.8-4.9-3.4-13.3c-7.4-29.1-18.9-56.9-34.2-82.7l-7-11.8-12.6 5.6c-8.3 3.7-17.3 5.6-26.3 5.6-17 0-33.2-6.7-45.2-18.7-18.9-18.7-24.1-47.2-13.1-71.4l5.6-12.6-11.9-7c-25.8-15.3-53.7-26.8-82.7-34.2l-13.3-3.4-4.9 12.8c-9.4 24.9-33.2 41.4-59.8 41.3-26.7 0-50.1-16.2-59.8-41.3l-4.9-12.8-13.3 3.4c-29 7.4-56.9 18.9-82.7 34.2l-11.8 7 5.6 12.6c11 24.2 5.8 52.7-13.1 71.5-18.8 18.7-47.2 23.9-71.5 13.1l-12.6-5.5-7 11.8c-15.4 25.8-27 53.7-34.3 82.7l-3.3 13.3 12.8 4.9c24.9 9.4 41.4 33.2 41.3 59.8 0 26.7-16.2 50.2-41.3 59.8l-12.8 4.9 3.4 13.3c7.4 29.1 18.9 56.9 34.2 82.7l7 11.8L450 824c8.3-3.7 17.3-5.6 26.3-5.6 17 0 33.1 6.6 45.1 18.7 18.9 18.9 24 46.9 13.1 71.4l-5.6 12.6 11.9 7c25.8 15.3 53.7 26.8 82.7 34.2l13.3 3.4 4.9-12.8c9.4-24.9 33.2-41.3 59.8-41.3 26.7 0 50.2 16.2 59.8 41.3l4.9 12.8 13.3-3.4c29.1-7.4 56.9-18.9 82.7-34.2l11.8-7-5.6-12.6c-11-24.2-5.8-52.7 13.1-71.5 18.9-18.7 47.2-23.9 71.5-13.1l12.6 5.5 7-11.8c15.3-25.8 26.9-53.6 34.3-82.7l3.4-13.4-12.8-4.9c-24.9-9.2-41.4-33.1-41.3-59.7z m-21.8 70.8c-4.6 15.2-10.7 29.9-18.2 43.9-7.1-2-14.4-2.9-21.8-2.9-21.7 0-42.1 8.4-57.4 23.8-20.8 20.7-28.8 51-20.8 79.2-14 7.5-28.7 13.6-43.9 18.2-14.3-25.6-41.4-41.5-70.7-41.3-29.3-0.1-56.4 15.7-70.7 41.3-15.2-4.6-30-10.7-44-18.2 7.7-28.2-0.2-58.4-20.7-79.2-20.7-20.7-51-28.6-79.2-20.8-7.5-14-13.6-28.7-18.2-43.9 25.6-14.3 41.4-41.4 41.3-70.7 0.1-29.3-15.7-56.4-41.3-70.7 4.6-15.2 10.7-30 18.2-44 7.1 1.9 14.3 2.9 21.8 2.9 21.7 0 42.1-8.4 57.4-23.8 20.8-20.7 28.8-51 20.8-79.2 14-7.5 28.7-13.6 43.9-18.2 14.3 25.6 41.4 41.5 70.7 41.3 29.3 0.1 56.4-15.7 70.7-41.3 15.2 4.6 30 10.7 44 18.2-7.7 28.2 0.2 58.4 20.7 79.2 20.7 20.7 51 28.7 79.2 20.8 7.5 14 13.6 28.7 18.2 43.9-25.6 14.3-41.5 41.4-41.3 70.7 0 29.9 15.8 56.5 41.3 70.8z" fill="#4A4A4A" p-id="7294"></path><path d="M704.1 572.4c-44.6 0-80.7 36.2-80.7 80.7 0 44.6 36.2 80.7 80.7 80.7 44.6 0 80.7-36.2 80.7-80.7s-36.1-80.6-80.7-80.7z m0 103.3c-12.4 0-22.5-10.1-22.5-22.5s10.1-22.5 22.5-22.5 22.5 10.1 22.5 22.5c0.1 12.4-10 22.5-22.5 22.5z" fill="#4A4A4A" p-id="7295"></path></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg t="1698085018400" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5408" width="32" height="32"><path d="M542.208 765.5424h99.4816a9.9328 9.9328 0 0 0 10.0864-9.728v-0.3584l-3.072-86.2208a28.9792 28.9792 0 0 1 13.5168-25.344c75.6736-48.5376 122.0608-130.2528 122.0608-219.648 0-145.408-121.856-263.3216-272.2816-263.3216-150.3744 0-272.2816 117.8624-272.2816 263.3216 0 89.3952 46.3872 171.1616 122.112 219.648 8.1408 5.2224 13.1584 13.9264 13.5168 23.3984l3.1744 88.832c0.1536 5.2736 4.608 9.4208 10.0352 9.4208h93.184v-198.0416L409.2928 493.056a28.5696 28.5696 0 0 1-6.9632-28.5184 29.8496 29.8496 0 0 1 22.016-20.0192 30.9248 30.9248 0 0 1 29.0304 8.3968l59.904 61.5936 68.7104-62.7712a30.976 30.976 0 0 1 42.752 1.1776 28.5696 28.5696 0 0 1-1.2288 41.3696l-81.2544 74.24v197.0176z m302.592-341.2992c0.1024 102.144-50.0224 198.2464-135.0144 258.8672l2.4576 70.3488a67.072 67.072 0 0 1-19.7632 49.7664c-13.312 13.312-31.6416 20.8384-50.7904 20.8384H388.5568c-38.0416 0-69.2224-29.184-70.5536-65.8944l-2.6112-74.24C229.7344 623.36 179.0976 526.848 179.2 424.2432 179.2 246.4768 328.192 102.4 512 102.4s332.8 144.0768 332.8 321.8432zM421.2224 921.6a29.7472 29.7472 0 0 1-30.208-29.2352c0-16.1792 13.5168-29.2864 30.208-29.2864h181.5552c16.6912 0 30.208 13.1072 30.208 29.2864a29.7472 29.7472 0 0 1-30.208 29.2352H421.2224z" fill="#475569" p-id="5409"></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg t="1697263612743" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="62282" width="32" height="32"><path d="M846 835q-43-37-94-61l2-6q16-53 26-113l2-16q3-22 5-46l2-18q1-19 1-40h186q-4 85-37.5 162T846 835zM650 957q15-16 29-35l2-4q28-39 50-89l5-12q43 22 77 50-72 61-163 90z m-115 18V769q82 3 160 31-29 73-70 119t-90 56z m0-440h209q-2 113-34 221-85-31-175-33V535z m0-234q90-2 175-33 30 98 34 221H535V301z m0-252q49 10 90 56t70 119q-78 28-160 31V49z m278 108q-34 28-77 50l-5-12q-20-47-49-89l-3-4q-13-18-29-35 91 29 163 90z m163 332H790q0-20-1-40l-2-18q-2-23-5-46l-2-16q-9-57-26-113l-2-6q53-26 94-61 59 61 92.5 138T976 489zM489 255q-82-3-160-31 29-73 70-119t90-56v206z m0 234H280q4-123 34-221 80 30 175 33v188z m0 234q-90 2-175 33-32-108-34-221h209v188z m0 252q-49-10-90-56t-70-119q78-28 160-31v206zM211 867q34-28 77-50l5 12q22 50 49 89l3 4q14 19 29 35-90-29-163-90zM48 535h186q0 20 1 40l2 18q2 24 5 46l2 16q10 60 26 113l2 6q-51 24-94 61-59-61-92.5-138T48 535z m130-346q41 35 94 61l-2 6q-17 56-26 113l-2 16q-3 23-5 46l-2 18q-1 20-1 40H48q4-85 37.5-162T178 189zM374 67q-15 16-29 35l-3 4q-29 42-49 89l-5 12q-41-20-77-50 72-61 163-90zM512 0Q294 5 149.5 149.5T0 512q5 218 149.5 362.5T512 1024q218-5 362.5-149.5T1024 512q-5-218-149.5-362.5T512 0z" fill="#666666" p-id="62283"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264919669" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="113184" width="32" height="32"><path d="M677.969668 682.651591a35.412551 35.412551 0 0 0-34.132579-8.533144 34.13258 34.13258 0 0 0-25.172778 23.892805 33.705922 33.705922 0 0 0 8.959802 33.279265l125.010573 119.464029a36.265866 36.265866 0 0 0 34.559237 8.533145 34.985894 34.985894 0 0 0 25.172777-23.892806 33.705922 33.705922 0 0 0-9.386459-33.279265z m56.318756-106.664311a255.994347 255.994347 0 0 0-99.411138-247.461202 285.860354 285.860354 0 0 0-273.060636-42.665724 34.985894 34.985894 0 0 0-20.479548 26.879406 32.852608 32.852608 0 0 0 9.813117 31.145979l109.224254 104.531025a33.705922 33.705922 0 0 1 0 48.212269l-34.985894 33.279265a36.692523 36.692523 0 0 1-50.772212 0L263.685484 426.657245a37.545838 37.545838 0 0 0-32.425951-9.38646 35.412551 35.412551 0 0 0-26.026092 20.906205 255.994347 255.994347 0 0 0 42.665725 261.967548 282.447096 282.447096 0 0 0 255.994346 95.997881l162.983068 155.303237a167.676297 167.676297 0 0 0 229.541597 0 151.036665 151.036665 0 0 0 0-219.728481z m111.357541 326.392792a93.437937 93.437937 0 0 1-127.997173 0l-189.862474-181.755986-19.199576 4.266573a210.768679 210.768679 0 0 1-180.476014-42.665725 190.289131 190.289131 0 0 1-69.545131-164.689696l64.425244 61.438643a109.650912 109.650912 0 0 0 151.463321 0l34.985895-33.279265a99.411138 99.411138 0 0 0 0-144.636806L445.014813 341.325796a207.355421 207.355421 0 0 1 170.662897 67.411844 189.435817 189.435817 0 0 1 42.665725 170.662898l-4.69323 18.772919 189.862474 181.329329a85.331449 85.331449 0 0 1 2.133286 122.450629z m147.19675-485.109287L587.518332 29.866007a110.504226 110.504226 0 0 0-151.036664 0L31.157285 417.270785a99.837795 99.837795 0 0 0 17.06629 157.863181v346.445682A104.957682 104.957682 0 0 0 155.314543 1023.977387H512a34.13258 34.13258 0 1 0 0-68.265159H155.314543a34.985894 34.985894 0 0 1-35.839208-34.13258V554.654418a34.13258 34.13258 0 0 0-23.892806-31.999293 34.985894 34.985894 0 0 1-23.466148-24.74612 33.705922 33.705922 0 0 1 9.813116-31.999294l404.897726-387.404778a36.692523 36.692523 0 0 1 50.345554 0l404.897726 387.404778a33.705922 33.705922 0 0 1-13.653032 56.745414 34.13258 34.13258 0 0 0-23.892806 31.999293v81.918191a35.839209 35.839209 0 0 0 71.25176 0v-61.011986a100.264452 100.264452 0 0 0 17.06629-158.289838z" fill="#636363" p-id="113185"></path></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg t="1697262986318" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="41170" width="32" height="32"><path d="M715.5 801.1c-23.7 0-46.3-3.6-63.7-10.2-30.8-11.7-35.4-28.8-35.4-38s4.6-26.3 35.4-38c3.6-1.4 7.5-1.4 11.1 0 27.7 10.5 77.1 10.5 105.1 0 3.6-1.4 7.5-1.4 11.1 0 30.8 11.6 35.4 28.8 35.4 38s-4.6 26.3-35.4 38c-17.4 6.6-40 10.2-63.6 10.2z m-67.7-47.4c0.9 0 4.9 3.9 15.1 7.8 27.7 10.5 77.1 10.5 105.1 0 9-3.4 13.2-6.9 14.7-8.6-1.2-1.4-4-3.8-9.6-6.4-33 10.5-82.4 10.4-115.1 0-7.1 3.3-9.8 6.3-10.2 7.3-0.1-0.1 0-0.1 0-0.1z m135.4 0.1h0.2-0.2z" fill="" p-id="41171"></path><path d="M715.5 754.6c-23.7 0-46.4-3.6-63.7-10.2-30.8-11.6-35.4-28.8-35.4-38 0-33.1 51.4-48.2 99.1-48.2s99.1 15.1 99.1 48.2c0 9.2-4.6 26.3-35.4 38-17.5 6.5-40.1 10.2-63.7 10.2z m-67.7-47.4c0.8 0 4.8 3.9 15.1 7.8 27.7 10.5 77.2 10.6 105.1 0 9.1-3.4 13.3-6.9 14.7-8.6-4.2-5.4-27.2-16.7-67.2-16.7-42.2 0-65.6 12.5-67.8 17.5h0.1z m135.4 0h0.2-0.2z" fill="" p-id="41172"></path><path d="M498.8 891.4H256.2c-66.6 0-120.8-54.2-120.8-120.8V239.8c0-66.6 54.2-120.8 120.8-120.8h432.4c66.6 0 120.8 54.2 120.8 120.8v275.9c0 8.7-7 15.7-15.7 15.7s-15.7-7-15.7-15.7V239.8c0-49.3-40.1-89.3-89.4-89.3H256.2c-49.3 0-89.4 40.1-89.4 89.3v530.8c0 49.3 40.1 89.3 89.4 89.3h242.7c8.7 0 15.7 7 15.7 15.7s-7.1 15.8-15.8 15.8z" fill="" p-id="41173"></path><path d="M641.3 532.7c-8.7 0-15.7-7-15.7-15.7V384.8c0-8.7 7-15.7 15.7-15.7s15.7 7 15.7 15.7V517c0.1 8.6-7 15.7-15.7 15.7zM336.3 643.9c-8.7 0-15.7-7-15.7-15.7V473.6c0-8.7 7-15.7 15.7-15.7s15.7 7 15.7 15.7v154.6c0 8.7-7.1 15.7-15.7 15.7zM488.8 602.8c-8.7 0-15.7-7-15.7-15.7V384.8c0-8.7 7-15.7 15.7-15.7s15.7 7 15.7 15.7v202.3c0 8.7-7 15.7-15.7 15.7zM709.6 905c-98.7 0-179.1-80.3-179.1-179s80.3-179 179.1-179c98.7 0 179 80.3 179 179s-80.3 179-179 179z m0-326.6C628.2 578.4 562 644.6 562 726c0 81.4 66.2 147.6 147.6 147.6S857.2 807.4 857.2 726c0-81.4-66.2-147.6-147.6-147.6z" fill="" p-id="41174"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg t="1697261750686" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="11477" width="32" height="32"><path d="M632.555 583.662a334.724 334.724 0 0 1 34.43 15.764c13.844 7.312 19.14 24.463 11.828 38.308-7.312 13.845-24.463 19.14-38.308 11.829-39.825-21.033-84.256-32.18-130.354-32.18-134.46 0-249.156 95.628-274.315 225.944-2.968 15.373-17.837 25.43-33.21 22.462-15.374-2.968-25.43-17.837-22.462-33.21 22.237-115.181 102.51-207.796 207.629-248.892-76.518-42.868-128.233-124.698-128.233-218.602 0-138.316 112.198-250.435 250.592-250.435 138.392 0 250.59 112.12 250.59 250.435 0 93.886-51.695 175.702-128.187 218.577z m71.487-218.577c0-106.992-86.804-193.735-193.89-193.735-107.088 0-193.892 86.742-193.892 193.735 0 106.992 86.804 193.734 193.892 193.734 107.086 0 193.89-86.743 193.89-193.734z m12.694 346.77V626.83a28.26 28.26 0 0 1 3.87-14.324 28.468 28.468 0 0 1 10.175-10.174 28.26 28.26 0 0 1 14.324-3.87 28.26 28.26 0 0 1 14.324 3.87 28.468 28.468 0 0 1 10.174 10.174 28.26 28.26 0 0 1 3.87 14.324v85.025h84.179c15.656 0 28.348 12.692 28.348 28.349 0 15.656-12.692 28.348-28.348 28.348h-84.18v84.08a28.26 28.26 0 0 1-3.87 14.324 28.468 28.468 0 0 1-10.173 10.174 28.26 28.26 0 0 1-14.324 3.87 28.26 28.26 0 0 1-14.324-3.87 28.468 28.468 0 0 1-10.175-10.174 28.26 28.26 0 0 1-3.87-14.324v-84.08h-85.124c-15.656 0-28.348-12.692-28.348-28.348 0-15.657 12.692-28.349 28.348-28.349h85.124z" fill="#333333" p-id="11478"></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264315194" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="97649" width="32" height="32"><path d="M921.6 97.28l-212.48 0L709.12 25.6l-71.68 0 0 71.68-248.32 0L389.12 25.6l-71.68 0 0 71.68L102.4 97.28C64 97.28 30.72 128 30.72 168.96l0 747.52c0 38.4 30.72 71.68 71.68 71.68L921.6 988.16c38.4 0 71.68-30.72 71.68-71.68L993.28 168.96C993.28 128 960 97.28 921.6 97.28zM921.6 842.24c0 38.4-30.72 71.68-71.68 71.68L174.08 913.92c-38.4 0-71.68-30.72-71.68-71.68L102.4 238.08c0-38.4 30.72-71.68 71.68-71.68l143.36 0 0 107.52 71.68 0L389.12 168.96l248.32 0 0 107.52 71.68 0L709.12 168.96l143.36 0c38.4 0 71.68 30.72 71.68 71.68L924.16 842.24zM138.24 417.28l747.52 0 0-71.68L138.24 345.6 138.24 417.28zM432.64 798.72 353.28 665.6 281.6 665.6l107.52 176.64L460.8 842.24l343.04-355.84-71.68 0L432.64 798.72z" p-id="97650"></path></svg>

After

Width:  |  Height:  |  Size: 879 B

View File

@@ -0,0 +1 @@
<svg t="1697263769005" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="66926" width="32" height="32"><path d="M190.470321 741.970173h341.807407v78.456099H206.885926V821.728395C106.590815 821.728395 25.283951 739.90321 25.283951 638.963358c0-100.939852 81.306864-182.765037 181.601975-182.765037 1.415901 0 2.831802 0.012642 4.241383 0.050568C230.235654 305.859951 357.888 189.62963 512.512 189.62963c112.481975 0 214.136099 62.072099 266.973235 159.68079l-68.456297 37.534024c-39.316543-72.621827-114.864988-118.758716-198.523259-118.758716-124.757333 0-225.886815 101.786864-225.886815 227.340642 0.006321 2.553679 0.006321 2.553679 0.050568 5.101037l1.175704 53.842173-51.282173-15.385284a103.051062 103.051062 0 0 0-29.677037-4.329876c-57.236543 0-103.645235 46.699457-103.645235 104.308938 0 51.983802 37.786864 95.086617 87.22963 103.006815z m585.677432-34.866568l-40.403753 26.339555-86.869333-44.373333V454.08079l138.663506-68.298271 163.486025 79.353679v49.493333l-163.486025-77.893531-90.055111 44.702025v188.175802l78.664691 37.496099zM571.000099 570.355358l48.608395-28.678321v171.90558l110.832197 53.576692 147.595062-89.189136v-81.85679l40.429037 16.83279v88.588642l-188.024099 112.734815-159.440592-74.322173v-169.592099z m260.614321 216.683457l120.926815-72.786173V602.996938L786.899753 527.442173l-58.380642 25.884444V503.845926l58.380642-29.392593L998.716049 573.37679v164.724938l-122.898963 75.712791-44.196345-26.775704z" fill="#999999" p-id="66927"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<svg t="1697262852020" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="36913" width="32" height="32"><path d="M819.2 339.2c-166.4-19.2-275.2-6.4-384 6.4C313.6 352 198.4 364.8 19.2 339.2c-6.4 0-12.8 0-12.8 6.4C0 345.6 0 352 0 358.4l0 422.4c0 6.4 6.4 19.2 19.2 19.2 64 12.8 128 12.8 179.2 12.8 83.2 0 160-6.4 230.4-19.2 121.6-12.8 236.8-25.6 390.4 0 6.4 0 12.8 0 12.8-6.4 6.4-6.4 6.4-6.4 6.4-12.8L838.4 358.4C838.4 345.6 825.6 339.2 819.2 339.2zM800 755.2c-147.2-25.6-256-12.8-377.6 0-115.2 12.8-230.4 25.6-384 6.4l0-384c172.8 25.6 288 12.8 403.2 0 102.4-12.8 211.2-25.6 358.4-6.4L800 755.2z" p-id="36914"></path><path d="M915.2 236.8c-160-19.2-275.2-6.4-384 6.4C409.6 256 294.4 268.8 115.2 236.8c-6.4 0-19.2 6.4-19.2 12.8 0 6.4 6.4 19.2 12.8 19.2 179.2 32 300.8 19.2 422.4 6.4C633.6 262.4 742.4 256 896 268.8l0 409.6c0 6.4 6.4 19.2 19.2 19.2s19.2-6.4 19.2-19.2L934.4 256C928 249.6 921.6 243.2 915.2 236.8z" p-id="36915"></path><path d="M1011.2 153.6c-160-19.2-275.2-6.4-384 6.4C505.6 172.8 390.4 185.6 211.2 153.6 204.8 153.6 198.4 160 192 166.4c0 6.4 6.4 12.8 12.8 12.8 179.2 32 300.8 19.2 422.4 6.4 102.4-12.8 211.2-25.6 364.8-6.4l0 416c0 6.4 6.4 12.8 12.8 12.8s12.8-6.4 12.8-12.8L1017.6 166.4C1017.6 160 1017.6 153.6 1011.2 153.6z" p-id="36916"></path><path d="M678.4 435.2l57.6 0c6.4 0 12.8-6.4 12.8-12.8s-6.4-12.8-12.8-12.8l-57.6 0c-6.4 0-12.8 6.4-12.8 12.8S672 435.2 678.4 435.2z" p-id="36917"></path><path d="M128 704 70.4 704c-6.4 0-12.8 6.4-12.8 12.8s6.4 12.8 12.8 12.8L128 729.6c6.4 0 12.8-6.4 12.8-12.8S134.4 704 128 704z" p-id="36918"></path><path d="M518.4 428.8 428.8 524.8 345.6 428.8c-6.4-6.4-12.8-6.4-12.8 0-6.4 6.4-6.4 12.8 0 12.8l76.8 89.6L352 531.2c-6.4 0-12.8 6.4-12.8 12.8 0 6.4 6.4 12.8 12.8 12.8l70.4 0 0 44.8L352 601.6c-6.4 0-12.8 6.4-12.8 12.8s6.4 12.8 12.8 12.8l70.4 0L422.4 704c0 6.4 6.4 12.8 12.8 12.8s12.8-6.4 12.8-12.8L448 620.8 512 620.8c6.4 0 12.8-6.4 12.8-12.8S518.4 595.2 512 595.2L441.6 595.2 441.6 550.4 512 550.4c6.4 0 12.8-6.4 12.8-12.8 0-6.4-6.4-12.8-12.8-12.8L454.4 524.8l76.8-89.6c6.4-6.4 6.4-12.8 0-12.8C524.8 422.4 518.4 422.4 518.4 428.8z" p-id="36919"></path></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1 @@
<svg t="1699885635904" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="12742" width="32" height="32"><path d="M512 64a317.248 317.248 0 0 0-226.176 93.824A317.248 317.248 0 0 0 192 384c0 88 35.456 168.32 93.76 226.048 19.776 20.288 42.176 37.12 66.24 51.008V768a64 64 0 0 0 64 64h192a64 64 0 0 0 64-64v-106.944c24.064-13.824 46.464-30.72 66.24-51.008A317.248 317.248 0 0 0 832 384c0-177.024-142.976-320-320-320zM331.264 202.944A253.248 253.248 0 0 1 512 128c141.696 0 256 114.304 256 256a253.184 253.184 0 0 1-74.944 180.736l-0.512 0.512a245.248 245.248 0 0 1-66.88 48l-17.664 8.896V768h-192V622.144l-17.664-8.832a245.248 245.248 0 0 1-66.88-48.064l-0.512-0.512A253.248 253.248 0 0 1 256 384c0-70.656 28.48-134.784 74.944-180.736l0.32-0.32zM352 896v64h320v-64h-320z" fill="#000000" fill-opacity=".85" p-id="12743"></path></svg>

After

Width:  |  Height:  |  Size: 872 B

View File

@@ -0,0 +1 @@
<svg t="1697262636695" class="icon" viewBox="0 0 1260 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="30875" width="32" height="32"><path d="M481.163636 467.781818h-163.781818c-58.181818 0-105.6-47.127273-105.6-105.6V198.690909c0-58.181818 47.127273-105.6 105.6-105.6h163.781818c58.181818 0 105.6 47.127273 105.6 105.6v163.781818c0 58.181818-47.127273 105.309091-105.6 105.309091zM317.381818 148.654545c-27.636364 0-50.036364 22.109091-50.036363 50.036364v163.781818c0 27.636364 22.109091 50.036364 50.036363 50.036364h163.781818c27.636364 0 50.036364-22.109091 50.036364-50.036364V198.690909c0-27.636364-22.109091-50.036364-50.036364-50.036364h-163.781818zM939.345455 467.781818h-163.781819c-58.181818 0-105.6-47.127273-105.6-105.6V198.690909c0-58.181818 47.127273-105.6 105.6-105.6h163.781819c58.181818 0 105.6 47.127273 105.6 105.6v163.781818c-0.290909 58.181818-47.418182 105.309091-105.6 105.309091zM775.563636 148.654545c-27.636364 0-50.036364 22.109091-50.036363 50.036364v163.781818c0 27.636364 22.109091 50.036364 50.036363 50.036364h163.781819c27.636364 0 50.036364-22.109091 50.036363-50.036364V198.690909c0-27.636364-22.109091-50.036364-50.036363-50.036364h-163.781819zM939.345455 939.636364h-163.781819c-58.181818 0-105.6-47.127273-105.6-105.6v-163.781819c0-58.181818 47.127273-105.6 105.6-105.6h163.781819c58.181818 0 105.6 47.127273 105.6 105.6v163.781819c-0.290909 58.472727-47.418182 105.6-105.6 105.6z m-163.781819-319.127273c-27.636364 0-50.036364 22.109091-50.036363 50.036364v163.781818c0 27.636364 22.109091 50.036364 50.036363 50.036363h163.781819c27.636364 0 50.036364-22.109091 50.036363-50.036363v-163.781818c0-27.636364-22.109091-50.036364-50.036363-50.036364h-163.781819zM481.163636 939.636364h-163.781818c-58.181818 0-105.6-47.127273-105.6-105.6v-163.781819c0-58.181818 47.127273-105.6 105.6-105.6h163.781818c58.181818 0 105.6 47.127273 105.6 105.6v163.781819c0 58.472727-47.127273 105.6-105.6 105.6z m-163.781818-319.127273c-27.636364 0-50.036364 22.109091-50.036363 50.036364v163.781818c0 27.636364 22.109091 50.036364 50.036363 50.036363h163.781818c27.636364 0 50.036364-22.109091 50.036364-50.036363v-163.781818c0-27.636364-22.109091-50.036364-50.036364-50.036364h-163.781818z" p-id="30876"></path></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1 @@
<svg t="1697261624027" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="9431" width="32" height="32"><path d="M874.666667 426.666667c12.8 0 21.333333 8.533333 21.333333 21.333333s-8.533333 21.333333-21.333333 21.333333h-128c-12.8 0-21.333333-8.533333-21.333334-21.333333s8.533333-21.333333 21.333334-21.333333h128zM469.333333 170.666667C375.466667 170.666667 298.666667 247.466667 298.666667 341.333333s76.8 170.666667 170.666666 170.666667 170.666667-76.8 170.666667-170.666667-76.8-170.666667-170.666667-170.666666z m405.333334 341.333333c12.8 0 21.333333 8.533333 21.333333 21.333333s-8.533333 21.333333-21.333333 21.333334h-170.666667c-12.8 0-21.333333-8.533333-21.333333-21.333334s8.533333-21.333333 21.333333-21.333333h170.666667zM469.333333 128c119.466667 0 213.333333 93.866667 213.333334 213.333333s-93.866667 213.333333-213.333334 213.333334-213.333333-93.866667-213.333333-213.333334 98.133333-213.333333 213.333333-213.333333z m405.333334 469.333333c12.8 0 21.333333 8.533333 21.333333 21.333334s-8.533333 21.333333-21.333333 21.333333h-42.666667c-12.8 0-21.333333-8.533333-21.333333-21.333333s8.533333-21.333333 21.333333-21.333334h42.666667zM682.666667 640H256c-46.933333 0-85.333333 38.4-85.333333 85.333333s34.133333 81.066667 81.066666 85.333334H682.666667c46.933333 0 85.333333-38.4 85.333333-85.333334s-34.133333-81.066667-81.066667-85.333333H682.666667z m0-42.666667c72.533333 0 128 55.466667 128 128s-55.466667 128-128 128H256c-72.533333 0-128-55.466667-128-128s55.466667-128 128-128h426.666667z" p-id="9432"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<svg t="1697313842408" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="115028" width="32" height="32"><path d="M512 224a508.48 508.48 0 0 1 444.16 272.64 32 32 0 0 1 0 32A508.48 508.48 0 0 1 512 800 508.48 508.48 0 0 1 67.84 527.36a32 32 0 0 1 0-32A508.48 508.48 0 0 1 512 224z m0 64a442.24 442.24 0 0 0-379.2 224A442.24 442.24 0 0 0 512 736a442.24 442.24 0 0 0 379.2-224A442.24 442.24 0 0 0 512 288z" p-id="115029"></path><path d="M640 512a128 128 0 1 1-128-128 128 128 0 0 1 128 128" p-id="115030"></path></svg>

After

Width:  |  Height:  |  Size: 558 B

View File

@@ -0,0 +1 @@
<svg t="1699885416445" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6898" width="32" height="32"><path d="M568 760c4.3 252.3 379.7 252.4 384 0-4.3-252.3-379.7-252.4-384 0z m284.9-64.6l-35.7 35.7 20 19.9a4.2 4.2 0 0 1 0 5.7l-22.7 22.6a3.9 3.9 0 0 1-5.6 0l-20-20-35.7 35.7a3.4 3.4 0 0 1-1.6 1 43.9 43.9 0 1 1-27.6-27.6 3.4 3.4 0 0 1 1-1.6l99.6-99.7a4 4 0 0 1 5.7 0l22.6 22.6a4 4 0 0 1 0 5.7zM512 566c133.7 0 242-108.3 242-242S645.7 82 512 82 270 190.3 270 324s108.3 242 242 242z m4.8 299.3a264.4 264.4 0 0 1 0-205.6c2.3-5.4 4.8-10.8 7.4-16a4 4 0 0 0-3.7-5.8H512a311.4 311.4 0 0 1-122.2-24.7 319.8 319.8 0 0 1-57.9-32 4 4 0 0 0-4.2-0.3C208.7 646.3 128 772.7 128 918v25a4 4 0 0 0 4 4h429.9a4 4 0 0 0 3-6.7 261.9 261.9 0 0 1-48.1-75z" p-id="6899"></path></svg>

After

Width:  |  Height:  |  Size: 803 B

View File

@@ -0,0 +1 @@
<svg t="1697261962152" class="icon" viewBox="0 0 1228 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13548" width="32" height="32"><path d="M86.176896 791.989949a21.240784 21.240784 0 0 1-19.541522-29.567172l61.246284-143.648389c-37.626532-31.205746-67.788446-67.31508-89.636109-107.526919C12.914397 464.529882 0 414.668658 0 363.059621c0-49.594197 11.906977-97.646919 35.405353-142.847308 22.503094-43.294787 54.619159-82.098665 95.47429-115.307114C214.010004 37.250267 324.26788 0 441.371358 0s227.324941 37.250267 310.443164 104.868786c40.842994 33.232724 72.971197 72.036602 95.474291 115.307114 23.498376 45.200389 35.405353 93.253111 35.405353 142.847308h-42.481569C840.212597 186.299884 661.280231 42.481568 441.371358 42.481568S42.481568 186.299884 42.481568 363.059621c0 44.447858 11.130171 87.487756 33.099211 127.905934 21.422848 39.447171 52.070265 74.573359 91.031932 104.383282a21.240784 21.240784 0 0 1 6.639263 25.209777l-45.940782 107.745395 146.670649-67.836996a21.252922 21.252922 0 0 1 15.66963-0.91032 481.291895 481.291895 0 0 0 151.719887 24.056706 500.372188 500.372188 0 0 0 53.793803-2.900884l4.58801 42.226679a543.011545 543.011545 0 0 1-58.381813 3.143636 524.902259 524.902259 0 0 1-157.011877-23.607615L95.085888 790.035796a21.216509 21.216509 0 0 1-8.908992 1.954153z" p-id="13549"></path><path d="M1151.578219 1024a21.204371 21.204371 0 0 1-8.908992-1.96629L980.984378 947.2176a454.504232 454.504232 0 0 1-134.800086 20.09985c-101.37316 0.036413-196.835313-32.237442-268.871915-90.813455-35.441766-28.838916-63.321812-62.508594-82.851196-100.098713a265.958893 265.958893 0 0 1 0-248.407937c19.541521-37.626532 47.421568-71.271934 82.851196-100.098713 72.00019-58.588152 167.498755-90.849868 268.835502-90.849868s196.859588 32.261717 268.859778 90.849868c35.441766 28.838916 63.321812 62.508594 82.851196 100.098713a266.929901 266.929901 0 0 1 30.780931 124.203968c0 44.909087-11.190859 88.228149-33.244862 128.840529-18.631202 34.300832-44.192969 65.166726-76.07842 91.905838l51.803238 121.485148a21.240784 21.240784 0 0 1-19.541521 29.567172z m-169.198018-120.732617a21.228647 21.228647 0 0 1 8.921129 1.966289l119.094043 55.080388-36.412773-85.521466a21.240784 21.240784 0 0 1 6.639262-25.209776c33.208449-25.379703 59.292132-55.262452 77.510656-88.810753 18.64334-34.325107 28.098523-70.847119 28.098523-108.558614 0-150.348339-152.520968-272.670981-339.998198-272.670981S506.186094 501.840836 506.186094 652.201313 658.707062 924.872295 846.172155 924.872295a410.857454 410.857454 0 0 0 129.520233-20.524667 21.228647 21.228647 0 0 1 6.687813-1.080245z" p-id="13550"></path><path d="M276.542873 215.830643m-45.916507 0a45.916507 45.916507 0 1 0 91.833013 0 45.916507 45.916507 0 1 0-91.833013 0Z" p-id="13551"></path><path d="M537.319015 215.830643m-45.916507 0a45.916507 45.916507 0 1 0 91.833013 0 45.916507 45.916507 0 1 0-91.833013 0Z" p-id="13552"></path><path d="M715.790152 509.997297m-45.916506 0a45.916507 45.916507 0 1 0 91.833013 0 45.916507 45.916507 0 1 0-91.833013 0Z" p-id="13553"></path><path d="M976.566294 509.997297m-45.916506 0a45.916507 45.916507 0 1 0 91.833013 0 45.916507 45.916507 0 1 0-91.833013 0Z" p-id="13554"></path></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264496222" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="99600" width="32" height="32"><path d="M485.4784 624.2304v-209.92c0-14.4384 11.6736-26.112 26.112-26.112h0.2048c14.4384 0 26.112 11.6736 26.112 26.112v209.92c0 14.4384-11.6736 26.112-26.112 26.112h-0.2048c-14.336 0-26.112-11.776-26.112-26.112z m26.5216 78.1312h0.2048c14.4384 0 26.112 11.6736 26.112 26.112v0.2048c0 14.4384-11.6736 26.112-26.112 26.112h-0.2048c-14.4384 0-26.112-11.6736-26.112-26.112v-0.2048c-0.1024-14.4384 11.6736-26.112 26.112-26.112z m0 0" p-id="99601"></path><path d="M511.6928 259.8912l296.5504 533.2992H215.1424l296.5504-533.2992m0-80.0768c-9.0112 0-17.92 4.5056-22.9376 13.5168l-340.992 613.376c-9.728 17.5104 2.9696 39.1168 22.9376 39.1168h681.984c20.0704 0 32.6656-21.504 22.9376-39.1168l-340.992-613.376c-5.0176-9.0112-13.9264-13.5168-22.9376-13.5168z m0 0" p-id="99602"></path></svg>

After

Width:  |  Height:  |  Size: 928 B

View File

@@ -0,0 +1 @@
<svg t="1697263219637" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="48698" width="32" height="32"><path d="M902.981818 318.836364L395.636364 614.4l-2.327273 2.327273c-4.654545 2.327273-9.309091 2.327273-13.963636 2.327272-11.636364 0-20.945455-6.981818-25.6-13.963636l-2.327273-4.654545-81.454546-176.872728c0-2.327273-2.327273-4.654545-2.327272-6.981818 0-6.981818 6.981818-13.963636 13.963636-13.963636 2.327273 0 6.981818 0 9.309091 2.327273l95.418182 67.490909c6.981818 4.654545 16.290909 6.981818 23.272727 6.981818 4.654545 0 9.309091 0 13.963636-2.327273L870.4 279.272727c-76.8-95.418182-209.454545-158.254545-358.4-158.254545C267.636364 121.018182 69.818182 286.254545 69.818182 488.727273c0 111.709091 60.509091 211.781818 153.6 279.272727 6.981818 4.654545 11.636364 13.963636 11.636363 23.272727 0 2.327273 0 6.981818-2.327272 9.309091-6.981818 27.927273-18.618182 72.145455-20.945455 74.472727 0 2.327273-2.327273 6.981818-2.327273 11.636364 0 6.981818 6.981818 13.963636 13.963637 13.963636 2.327273 0 4.654545-2.327273 9.309091-2.327272l97.745454-55.854546c6.981818-4.654545 13.963636-6.981818 23.272728-6.981818 4.654545 0 9.309091 0 13.963636 2.327273 44.218182 13.963636 93.090909 20.945455 144.290909 20.945454 244.363636 0 442.181818-165.236364 442.181818-367.709091 0-62.836364-18.618182-121.018182-51.2-172.218181z" fill="#A8ABB0" p-id="48699"></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<svg t="1697263270014" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="51464" width="32" height="32"><path d="M429.092232 768.396725c-11.149242 0.532379-22.395745 0.829282-33.62689 0.829282-85.129425 0-164.935062-15.290535-224.715065-43.05102-52.572411-24.407523-83.952049-56.268349-83.952049-85.231806v-66.066168c28.902029 25.390376 70.657935 46.798148 121.663924 62.26273 56.186445 17.036123 120.855118 26.040492 187.00319 26.040493 17.199932 0 34.481768-0.624521 51.589558-1.84285a287.776362 287.776362 0 0 1 22.165388-46.649697c-24.069667 2.63118-48.815045 3.982603-73.754946 3.982604-85.129425 0-164.935062-15.290535-224.715065-43.051021-52.572411-24.407523-83.952049-56.273468-83.952049-85.231806V424.321299c28.89691 25.395495 70.652816 46.803267 121.658805 62.26273 56.186445 17.036123 120.855118 26.040492 187.008309 26.040492 66.153191 0 130.816745-9.004369 187.003189-26.040492 51.005989-15.459463 92.756776-36.867235 121.658805-62.26273v48.507903a296.140853 296.140853 0 0 1 44.494586 1.146663V189.281157c0-47.166718-37.440566-91.067497-105.426369-123.614274-66.296524-31.73797-154.277247-49.214329-247.730211-49.214329-93.463202 0-181.449045 17.476359-247.74045 49.214329-67.980684 32.546776-105.416131 76.447555-105.416131 123.614274v451.662024c0 47.15648 37.435447 91.047021 105.416131 123.583559 66.291405 31.732851 154.272128 49.20921 247.74045 49.20921 12.57745 0 25.282876-0.342975 37.94735-1.008448a292.055869 292.055869 0 0 1-4.32046-44.330777zM170.750277 104.008398c59.774883-27.760486 139.58052-43.045901 224.715065-43.045901 85.124306 0 164.924824 15.290535 224.704826 43.05102 52.572411 24.412642 83.962287 56.288825 83.962287 85.26764 0 28.958338-31.389876 60.814045-83.967406 85.226687-59.780002 27.750247-139.58052 43.035663-224.699707 43.035663-85.129425 0-164.935062-15.285416-224.715065-43.035663-52.572411-24.407523-83.952049-56.268349-83.952049-85.226687 0-28.978814 31.384757-60.854998 83.952049-85.272759z m-83.952049 169.757187c28.902029 25.395495 70.657935 46.803267 121.669043 62.267849 56.181326 17.031004 120.849999 26.035373 186.998071 26.035373 66.153191 0 130.811626-9.004369 186.99807-26.035373 51.005989-15.464582 92.767014-36.872354 121.669043-62.267849v66.066167c0 28.963457-31.389876 60.824283-83.967406 85.236925-59.780002 27.760486-139.58052 43.045901-224.699707 43.045901-85.129425 0-164.935062-15.285416-224.715065-43.045901-52.572411-24.407523-83.952049-56.273468-83.952049-85.231806V273.765585z m817.104271 303.558323c-49.362781-49.373019-115.091093-76.565293-185.088674-76.565292-69.966866 0-135.669583 27.176916-185.001649 76.514102-102.022216 102.042692-102.00174 268.098821 0.046071 370.167108 49.357662 49.373019 115.085974 76.560174 185.083554 76.560174h0.010238c69.961747 0 135.664464-27.171797 184.996531-76.514102 102.022216-102.042692 102.00174-268.093702-0.046071-370.16199z m-27.391916 343.312691c-42.016977 41.648407-97.978184 64.581649-157.573901 64.58165-59.616193 0-115.602995-22.9486-157.645567-64.617483-42.022096-41.653526-65.165219-97.118188-65.165219-156.176407 0-59.037743 23.127766-114.476809 65.124266-156.109859 42.016977-41.643288 97.978184-64.581649 157.568782-64.581649 59.621312 0 115.613233 22.953719 157.650687 64.62772 42.027215 41.658645 65.165219 97.123307 65.165218 156.181526 0 59.032624-23.127766 114.461452-65.124266 156.094502z m-198.20874-91.763685l-71.164719-74.7378-34.604625 34.614864 91.343924 95.920335 0.752498-0.752497 11.149241 13.381137 189.204371-193.509473-29.618692-35.546526z" fill="#272636" p-id="51465"></path></svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1 @@
<svg t="1697264544018" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="103534" width="32" height="32"><path d="M811.008 768.170667v106.666666a106.666667 106.666667 0 0 1-106.666667 106.666667h-128a21.248 21.248 0 0 1-21.333333-21.333333V938.666667c0-75.52-43.306667-127.872-128.341333-127.872-84.224 0-128.085333 52.821333-128.085334 127.872v21.461333a21.333333 21.333333 0 0 1-21.333333 21.333333h-128a106.666667 106.666667 0 0 1-106.666667-106.709333l0.426667-128a21.333333 21.333333 0 0 1 21.333333-21.248h42.666667c58.752 0 106.410667-55.210667 106.410667-128 0-73.386667-47.36-128-106.410667-128H64.213333a21.333333 21.333333 0 0 1-21.333333-21.333333v-128a106.666667 106.666667 0 0 1 106.666667-106.666667h106.368V213.333333c0-97.066667 61.013333-170.538667 170.752-170.538666 107.008 0 171.392 75.434667 171.392 170.538666v0.128h106.837333a106.666667 106.666667 0 0 1 106.666667 106.666667v106.666667h20.778666c84.053333 0 149.077333 75.008 149.077334 170.666666 0 95.104-65.28 170.666667-149.077334 170.666667h-21.333333z m-42.666667-20.736v-0.597334a21.333333 21.333333 0 0 1 21.333334-21.333333h42.666666c58.752 0 106.410667-55.210667 106.410667-128 0-73.386667-47.36-128-106.410667-128h-42.666666a21.333333 21.333333 0 0 1-20.778667-26.325333V320.128a64 64 0 0 0-64-64h-126.890667a21.76 21.76 0 0 1-1.28 0 21.333333 21.333333 0 0 1-21.333333-21.333333V213.333333c0-72.917333-46.933333-127.872-128.725333-127.872-84.224 0-128.085333 52.821333-128.085334 127.872v21.461334a21.248 21.248 0 0 1-21.333333 21.333333H149.546667a64 64 0 0 0-64 64v106.666667h21.461333c84.053333 0 149.077333 75.008 149.077333 170.666666 0 95.104-65.28 170.666667-149.077333 170.666667h-21.418667l-0.341333 106.666667a64 64 0 0 0 64 64h106.666667V938.666667c0-97.066667 61.013333-170.538667 170.752-170.538667 110.592 0 171.008 73.002667 171.008 170.538667v0.170666h106.666666a64 64 0 0 0 64-64v-127.402666z" p-id="103535"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" class="icon" viewBox="0 0 1024 1024"><path d="M512.213 958.99 63.595 510.93l84.025-84.023 300.584 302.222V63.546h127.94V729.13l299.652-302.222 84.01 84.024-447.593 448.058z"/></svg>

After

Width:  |  Height:  |  Size: 244 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" class="icon" viewBox="0 0 1024 1024"><path d="M916.21 242.526v215.58H204.8l194.021-194.022-75.453-75.452L0 512l323.368 323.368 75.453-75.452L204.8 565.895H1024V242.526z"/></svg>

After

Width:  |  Height:  |  Size: 240 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" class="icon" viewBox="0 0 1024 1024"><path d="m959.804 511.604-84.009 84.024-299.652-302.222V958.99h-127.94V293.406L147.62 595.63l-84.025-84.024L512.213 63.546l447.591 448.058z"/></svg>

After

Width:  |  Height:  |  Size: 248 B

View File

@@ -0,0 +1 @@
<svg t="1689231562248" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10375" width="200" height="200"><path d="M61.952 510.976c0 247.808 200.704 448.512 448.512 448.512s448.512-200.704 448.512-448.512c0-247.808-200.704-448.512-448.512-448.512-247.296 0-448.512 200.704-448.512 448.512z" fill="#FB9E02" p-id="10376"></path><path d="M290.816 379.392l210.432-119.296c5.632-3.072 13.312-3.072 18.944 0l210.432 119.296c5.632 3.072 9.728 9.728 9.728 15.872V634.88c0 6.656-3.584 12.8-9.728 15.872l-210.432 119.296c-5.632 3.072-13.312 3.072-18.944 0l-210.432-119.296c-5.632-3.072-9.728-9.728-9.728-15.872V395.776c0.512-6.656 4.096-12.8 9.728-16.384z m31.232 25.6c-1.536 1.024-2.56 2.56-2.56 4.096v211.968c0 1.536 1.024 3.072 2.56 4.096l186.368 105.984c1.536 1.024 3.072 1.024 4.608 0l186.368-105.984c1.536-1.024 2.56-2.56 2.56-4.096V409.088c0-1.536-1.024-3.072-2.56-4.096l-186.368-105.984c-1.536-1.024-3.072-1.024-4.608 0L322.048 404.992z m188.416 91.136l145.408-82.944c9.216-5.12 20.48-2.048 25.6 6.656s2.048 20.48-6.656 25.6l-145.408 82.432v163.84c0 10.24-8.704 18.432-18.944 18.432s-18.944-8.192-18.944-18.432v-163.328L346.624 445.952c-9.216-5.12-12.288-16.384-6.656-25.6 5.12-8.704 16.896-11.776 25.6-6.656l144.896 82.432z" fill="#FFFFFF" p-id="10377"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg t="1682349353098" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="102778" width="200" height="200"><path d="M170.666667 85.333333h213.333333a85.333333 85.333333 0 0 1 85.333333 85.333334v213.333333a85.333333 85.333333 0 0 1-85.333333 85.333333H170.666667a85.333333 85.333333 0 0 1-85.333334-85.333333V170.666667a85.333333 85.333333 0 0 1 85.333334-85.333334z m0 469.333334h213.333333a85.333333 85.333333 0 0 1 85.333333 85.333333v213.333333a85.333333 85.333333 0 0 1-85.333333 85.333334H170.666667a85.333333 85.333333 0 0 1-85.333334-85.333334v-213.333333a85.333333 85.333333 0 0 1 85.333334-85.333333z m469.333333 0h213.333333a85.333333 85.333333 0 0 1 85.333334 85.333333v213.333333a85.333333 85.333333 0 0 1-85.333334 85.333334h-213.333333a85.333333 85.333333 0 0 1-85.333333-85.333334v-213.333333a85.333333 85.333333 0 0 1 85.333333-85.333333z" fill="#FFB319" p-id="102779"></path><path d="M746.666667 5.804329m60.339778 60.339779l150.849447 150.849447q60.339779 60.339779 0 120.679557l-150.849447 150.849447q-60.339779 60.339779-120.679557 0l-150.849447-150.849447q-60.339779-60.339779 0-120.679557l150.849447-150.849447q60.339779-60.339779 120.679557 0Z" fill="#FF6E26" p-id="102780"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" class="icon" viewBox="0 0 1024 1024"><path d="M165.415 827.077c-11.815 0-19.692-7.877-19.692-19.692V214.646c0-11.815 7.877-19.692 19.692-19.692h159.508c7.877 0 17.723 3.938 23.63 9.846l228.432 287.508c7.877 9.846 7.877 25.6 0 37.415l-230.4 287.508c-5.908 7.877-15.754 11.815-25.6 11.815l-155.57-1.97zm706.954-334.77L641.97 206.77c-9.846-11.815-27.569-15.754-41.354-3.938l-45.292 37.415c-13.785 9.846-15.754 29.539-3.938 41.354L738.462 512 551.385 744.37c-9.847 11.815-7.877 31.507 3.938 41.353l45.292 37.415c13.785 9.847 29.539 7.877 41.354-3.938l230.4-287.508c7.877-15.754 7.877-29.538 0-39.384z"/></svg>

After

Width:  |  Height:  |  Size: 670 B

View File

@@ -0,0 +1 @@
<svg t="1682347988737" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="14488" width="200" height="200"><path d="M237.714286 603.428571c30.321371 0 54.857143-24.572343 54.857143-54.857143s-24.535771-54.857143-54.857143-54.857143-54.857143 24.572343-54.857143 54.857143S207.392914 603.428571 237.714286 603.428571z" fill="#F69661" p-id="14489"></path><path d="M420.571429 603.428571c30.321371 0 54.857143-24.572343 54.857143-54.857143s-24.535771-54.857143-54.857143-54.857143-54.857143 24.572343-54.857143 54.857143S390.250057 603.428571 420.571429 603.428571z" fill="#F69661" p-id="14490"></path><path d="M603.428571 603.428571c30.321371 0 54.857143-24.572343 54.857143-54.857143s-24.535771-54.857143-54.857143-54.857143-54.857143 24.572343-54.857143 54.857143S573.1072 603.428571 603.428571 603.428571z" fill="#F69661" p-id="14491"></path><path d="M804.571429 256 36.571429 256c0 0-36.571429 0-36.571429 36.571429l0 512c0 36.571429 36.571429 36.571429 36.571429 36.571429l109.714286 0 0 182.857143 182.857143-182.857143 475.428571 0c0 0 36.571429 0 36.571429-36.571429L841.142857 292.571429C841.142857 256 804.571429 256 804.571429 256zM768 768 298.858057 768l-21.429029 21.429029L219.428571 847.429486 219.428571 768 73.142857 768 73.142857 329.142857l694.857143 0L768 768z" fill="#F69661" p-id="14492"></path><path d="M987.428571 73.142857 219.428571 73.142857c0 0-36.571429 0-36.571429 36.571429l0 109.714286 73.142857 0L256 146.285714l694.857143 0 0 438.857143-73.142857 0 0 73.142857 109.714286 0c0 0 36.571429 0 36.571429-36.571429L1024 109.714286C1024 73.142857 987.428571 73.142857 987.428571 73.142857z" fill="#F69661" p-id="14493"></path></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1 @@
<svg t="1686072154961" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5190" width="200" height="200"><path d="M809.6 928H186.112a38.72 38.72 0 0 1 0-77.504h623.488a38.72 38.72 0 0 1 0 77.504z m-17.6-832H203.584A171.776 171.776 0 0 0 32 267.584v326.4a171.776 171.776 0 0 0 171.584 171.584h588.8a171.776 171.776 0 0 0 171.584-171.584v-326.4A171.904 171.904 0 0 0 792 96z m-114.816 467.648H318.4a38.72 38.72 0 1 1 0-77.504h358.848a38.72 38.72 0 1 1 0 77.504z m0-188.224H318.4a38.72 38.72 0 1 1 0-77.504h358.848a38.72 38.72 0 1 1 0 77.504z" fill="#EEBB7A" p-id="5191"></path></svg>

After

Width:  |  Height:  |  Size: 623 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" class="icon" viewBox="0 0 1024 1024"><path d="M487 71.425a75 75 0 0 1 72.575 0l335.7 185.5a75 75 0 0 1 38.75 65.65V690.85a75 75 0 0 1-38.75 65.625l-335.7 185.55a75 75 0 0 1-72.55 0l-335.7-185.5a75 75 0 0 1-38.75-65.675V322.6a75 75 0 0 1 38.75-65.6L487 71.4v.025zM859 322.6 523.275 137.1l-335.7 185.5v368.25l335.7 185.5 335.75-185.5V322.6zm-601.75 37.1A37.5 37.5 0 0 1 308.2 345l215.1 118.875L738.45 345a37.5 37.5 0 0 1 36.25 65.625l-213.9 118.25V764.55a37.5 37.5 0 0 1-75 0v-235.7l-213.9-118.2a37.5 37.5 0 0 1-14.65-51v.05z"/></svg>

After

Width:  |  Height:  |  Size: 597 B

View File

@@ -0,0 +1 @@
<svg t="1683448158072" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13946" width="200" height="200"><path d="M367.36 499.2l-296.0384 296.0896a55.6032 55.6032 0 0 0-15.9744 33.3824L42.752 945.664a35.84 35.84 0 0 0 39.424 39.424l117.0944-12.5952c12.5952-1.3312 24.3712-6.9632 33.3824-15.9232l41.4208-41.472a5.632 5.632 0 0 0 1.6384-3.9424v-35.1744c0-3.072 2.5088-5.632 5.632-5.632h35.1232a5.632 5.632 0 0 0 5.632-5.5808v-40.6528a5.632 5.632 0 0 1 1.6384-3.9424l18.7904-18.8416a5.632 5.632 0 0 1 3.9936-1.5872h40.6016a5.632 5.632 0 0 0 2.816-0.768l1.536-1.2288a5.632 5.632 0 0 0 1.6384-3.9936v-40.96a5.632 5.632 0 0 1 1.6384-3.9936l28.0576-28.0576a5.632 5.632 0 0 1 3.9936-1.6896h40.96a5.632 5.632 0 0 0 3.9936-1.5872l56.9344-56.9856 3.4304 3.4304a40.7552 40.7552 0 0 0 63.744-7.8336l58.9312-98.304a42.7008 42.7008 0 0 0-6.4-52.1216L522.24 379.5456a42.7008 42.7008 0 0 0-52.1728-6.4512L371.7632 432.128a40.704 40.704 0 0 0-7.8336 63.744l3.4304 3.4304z" fill="#F9BE29" p-id="13947"></path><path d="M199.2704 972.544c12.5952-1.3312 24.3712-6.9632 33.3824-15.9232l41.4208-41.472a5.632 5.632 0 0 0 1.6384-3.9424v-35.1744c0-3.072 2.5088-5.632 5.5808-5.632h35.1744a5.632 5.632 0 0 0 5.632-5.5808v-40.6528a5.632 5.632 0 0 1 1.6384-3.9424l18.7904-18.7904a5.632 5.632 0 0 1 3.9936-1.6384h40.6016a5.632 5.632 0 0 0 2.816-0.768l1.536-1.2288a5.632 5.632 0 0 0 1.6384-3.9936v-40.96a5.632 5.632 0 0 1 1.6384-3.9936l28.0576-28.0576a5.632 5.632 0 0 1 3.9424-1.6896h41.0112a5.632 5.632 0 0 0 3.9936-1.5872l56.9344-56.9856 3.4304 3.4304a40.7552 40.7552 0 0 0 63.744-7.8336l32.256-53.76-56.4224-56.4224a42.2912 42.2912 0 0 0-59.7504 0l-438.9888 438.9888a36.0448 36.0448 0 0 0 9.216 0.256l117.0944-12.6464z" fill="#F8AC2B" p-id="13948"></path><path d="M925.5936 102.4a292.0448 292.0448 0 0 1-289.4336 486.5536l-40.2944 67.1744a40.7552 40.7552 0 0 1-59.5456 11.52l-4.1984-3.6864-3.4304-3.4304-56.9344 56.9856a5.632 5.632 0 0 1-2.56 1.4336l-1.4336 0.1536h-40.96a5.632 5.632 0 0 0-2.816 0.768l-1.1776 0.9216-28.0576 28.0576a5.632 5.632 0 0 0-1.4848 2.5088l-0.1536 1.4336v41.0112a5.632 5.632 0 0 1-0.768 2.816l-0.8704 1.1776-1.536 1.2288-1.3312 0.512-1.4848 0.256h-40.6016a5.632 5.632 0 0 0-2.816 0.7168l-1.1776 0.8704-18.7904 18.8416a5.5808 5.5808 0 0 0-1.4848 2.56l-0.1536 1.3824v40.6528a5.632 5.632 0 0 1-4.1472 5.4272L316.416 870.4h-35.1744a5.632 5.632 0 0 0-5.12 3.4304l-0.512 2.2016v35.1744a5.632 5.632 0 0 1-0.7168 2.816l-0.8704 1.1264-41.472 41.472c-7.168 7.168-16.128 12.1856-25.856 14.592l-7.4752 1.3312-117.0432 12.6464a35.84 35.84 0 0 1-39.68-34.6624l0.2048-4.8128 12.5952-117.0432c1.1264-10.0864 4.9152-19.6608 11.008-27.648l4.9664-5.7344 296.0384-296.0384-3.4304-3.4304A40.7552 40.7552 0 0 1 367.2064 435.2l4.608-3.1744 67.1744-40.3456A292.0448 292.0448 0 0 1 925.5936 102.4z m-234.752 94.8224a93.7984 93.7984 0 0 0 0 132.5056 93.7984 93.7984 0 0 0 132.5056 0 93.7984 93.7984 0 0 0 0-132.5056 93.7984 93.7984 0 0 0-132.5056 0z" fill="#F9BE29" p-id="13949"></path><path d="M511.9488 545.9456a42.2912 42.2912 0 0 1 55.4496-3.7888l4.3008 3.7888 56.4224 56.4224-32.256 53.76a40.7552 40.7552 0 0 1-59.5456 11.52l-4.1984-3.6864-3.4304-3.4304-56.9344 56.9856a5.632 5.632 0 0 1-2.56 1.4336l-1.4336 0.2048h-40.96a5.632 5.632 0 0 0-2.816 0.7168l-1.1776 0.9216-28.0576 28.0576a5.632 5.632 0 0 0-1.4848 2.5088l-0.1536 1.4336v41.0112a5.632 5.632 0 0 1-0.768 2.816l-0.8704 1.1776-1.536 1.2288-1.3312 0.512-1.4848 0.256h-40.6016a5.632 5.632 0 0 0-2.816 0.7168l-1.1776 0.9216-18.7904 18.7904a5.5808 5.5808 0 0 0-1.4848 2.56l-0.1536 1.3824v40.6528a5.632 5.632 0 0 1-4.1472 5.4272L316.416 870.4h-35.1744a5.632 5.632 0 0 0-5.12 3.3792l-0.512 2.2016v35.1744a5.632 5.632 0 0 1-0.7168 2.816l-0.8704 1.1264-41.472 41.472c-7.168 7.168-16.128 12.1856-25.856 14.6432l-7.4752 1.28-117.0432 12.6464-4.7104 0.1536-4.608-0.4096L512 545.9456z m380.928-410.9312a246.1184 246.1184 0 0 1 0 347.648 246.1184 246.1184 0 0 1-347.648 0 246.1184 246.1184 0 0 1 0-347.648 246.1184 246.1184 0 0 1 347.648 0z m-202.0352 62.208a93.7984 93.7984 0 0 0 0 132.5056 93.7984 93.7984 0 0 0 132.5056 0 93.7984 93.7984 0 0 0 0-132.5056 93.7984 93.7984 0 0 0-132.5056 0z" fill="#F8AC2B" p-id="13950"></path><path d="M567.3984 542.208l4.3008 3.7376 56.4224 56.4224-10.496 17.4592-45.9264-45.8752a42.2912 42.2912 0 0 0-55.4496-3.7888L512 573.952 102.912 982.9376l-20.736 2.2528-4.7104 0.1536-4.608-0.4096L512 545.9456a42.2912 42.2912 0 0 1 55.4496-3.7888z m-134.656 6.5536l-1.024 3.0208-9.5744 21.1456a95.232 95.232 0 0 1-18.5856 27.7504l-5.3248 5.4784-354.048 354.048a36.096 36.096 0 0 1-1.5872-9.472l0.1536-5.0176 7.2704-67.4816 310.1696-310.1696c11.5712-11.6224 19.2-16.896 28.416-21.5552l4.8128-2.304 21.1456-9.6256a12.9536 12.9536 0 0 1 18.176 14.1824z m112.4864-413.696a246.1184 246.1184 0 0 1 347.648 0 246.1184 246.1184 0 0 1-12.0832 358.8608 246.0672 246.0672 0 0 0-11.264-335.5648 246.0672 246.0672 0 0 0-335.5136-11.264c3.584-4.096 7.3216-8.1408 11.264-12.0832z" fill="#ED8C16" p-id="13951"></path></svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" class="icon" viewBox="0 0 1024 1024"><path d="M913.6 135.2H380.2c-26.7 0-44.4 17.8-44.4 44.4V224c0 26.7 17.8 44.4 44.4 44.4h533.3c26.7 0 44.4-17.8 44.4-44.4v-44.4c.1-26.6-17.7-44.4-44.3-44.4zm-755.6 0h-44.4c-22.2 0-44.4 22.2-44.4 44.4V224c0 22.2 22.2 44.4 44.4 44.4H158c22.2 0 44.4-22.2 44.4-44.4v-44.4c.1-22.2-22.1-44.4-44.4-44.4zm0 311.1h-44.4c-22.2 0-44.4 22.2-44.4 44.4v44.4c0 22.2 22.2 44.4 44.4 44.4H158c22.2 0 44.4-22.2 44.4-44.4v-44.4c.1-22.2-22.1-44.4-44.4-44.4zm755.6 0H380.2c-26.7 0-44.4 17.8-44.4 44.4v44.4c0 26.7 17.8 44.4 44.4 44.4h533.3c26.7 0 44.4-17.8 44.4-44.4v-44.4c.1-26.6-17.7-44.4-44.3-44.4zM158 757.4h-44.4c-22.2 0-44.4 22.2-44.4 44.4v44.4c0 22.2 22.2 44.4 44.4 44.4H158c22.2 0 44.4-22.2 44.4-44.4v-44.4c.1-22.2-22.1-44.4-44.4-44.4zm755.6 0H380.2c-26.7 0-44.4 17.8-44.4 44.4v44.4c0 26.7 17.8 44.4 44.4 44.4h533.3c26.7 0 44.4-17.8 44.4-44.4v-44.4c.1-26.6-17.7-44.4-44.3-44.4z"/></svg>

After

Width:  |  Height:  |  Size: 971 B

View File

@@ -0,0 +1 @@
<svg t="1683827858755" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6208" width="200" height="200"><path d="M547.6 618.4c10.1 7.2 20.4 13.5 31.2 18.9 11.6 5.9 23.5 10.8 35.6 14.6 94.5 30.2 201.8-0.6 265-84.3 58.1-77.1 62.8-177.9 20.3-257.8-0.1-0.1-0.1-0.2-0.2-0.3-4.4-8.4-9.4-16.5-14.9-24.3-0.3-0.4-0.6-0.9-0.9-1.3-26.1-39.4-59.3-75.1-99.2-105.2C595 35.8 325.7 73.5 182.8 262.9 40 452.3 77.7 721.7 267.1 864.6c35.4 26.7 73.7 47.2 113.4 61.4 0.4 0.1 0.7 0.3 1.1 0.4 0.7 0.3 1.4 0.5 2.1 0.7 0.3 0.1 0.6 0.2 1 0.3 35.6 11.8 76.4 0.4 100.2-31.3 22-29.2 23.6-67.4 7.1-97.5-5-9.2-11.7-17.6-20.1-24.8-1.5-1.3-3.1-2.6-4.7-3.8-1.8-1.3-3.6-2.6-5.5-3.8-34.2-29.7-40-81.2-12.3-118 23.4-30.9 63.4-41.9 98.2-29.8z m-283 6.2c-38.2-28.8-45.9-83.2-17-121.4 28.8-38.2 83.2-45.9 121.4-17 38.2 28.8 45.9 83.2 17 121.4-28.8 38.2-83.2 45.8-121.4 17z" fill="#FDF17F" p-id="6209"></path><path d="M365.2 816.8m-58.4 0a58.4 58.4 0 1 0 116.8 0 58.4 58.4 0 1 0-116.8 0Z" fill="#F65D73" p-id="6210"></path><path d="M365.2 284.4m-58.4 0a58.4 58.4 0 1 0 116.8 0 58.4 58.4 0 1 0-116.8 0Z" fill="#50E6CC" p-id="6211"></path><path d="M590.4 226m-58.4 0a58.4 58.4 0 1 0 116.8 0 58.4 58.4 0 1 0-116.8 0Z" fill="#46CDFB" p-id="6212"></path><path d="M766.8 351m-58.4 0a58.4 58.4 0 1 0 116.8 0 58.4 58.4 0 1 0-116.8 0Z" fill="#BD9EE2" p-id="6213"></path><path d="M681.9 522m-58.4 0a58.4 58.4 0 1 0 116.8 0 58.4 58.4 0 1 0-116.8 0Z" fill="#EB866B" p-id="6214"></path><path d="M899.6 309.8c-0.1-0.1-0.1-0.2-0.2-0.3-4.4-8.4-9.4-16.5-14.9-24.3-0.3-0.4-0.6-0.9-0.9-1.3-26.1-39.4-59.3-75.1-99.2-105.2-87.1-65.7-191-93.2-291.9-85.3 78.9 6.1 157.1 34.1 225 85.3 39.9 30.1 73.1 65.8 99.2 105.2 0.3 0.4 0.6 0.9 0.9 1.3 5.5 7.8 10.5 15.9 14.9 24.3 0.1 0.1 0.1 0.2 0.2 0.3 42.5 80 37.8 180.7-20.3 257.8-40 53-97.7 84.8-158.6 93.3 83.6 11.7 171-21.1 225.5-93.3 58.2-77.1 62.9-177.9 20.3-257.8zM492 798.7c-5-9.2-11.7-17.6-20.1-24.8-1.5-1.3-3.1-2.6-4.7-3.8-1.8-1.4-3.6-2.6-5.5-3.9-34.2-29.7-40-81.2-12.3-118 9.3-12.4 21.4-21.6 34.7-27.4-1.2-0.8-2.3-1.6-3.5-2.4-34.8-12.1-74.8-1.1-98.1 29.8-27.7 36.7-21.9 88.3 12.3 118 1.9 1.2 3.7 2.5 5.5 3.9 1.6 1.2 3.2 2.5 4.8 3.8 8.3 7.2 15 15.6 20.1 24.8 16.4 30.1 14.9 68.3-7.1 97.5-10.3 13.7-23.7 23.5-38.5 29.4 0.3 0.1 0.7 0.2 1 0.4 0.4 0.1 0.7 0.3 1.1 0.4 0.7 0.3 1.4 0.5 2.1 0.8 0.3 0.1 0.6 0.2 1 0.3 35.6 11.8 76.4 0.4 100.2-31.3 21.9-29.2 23.5-67.4 7-97.5z" fill="#FAD672" p-id="6215"></path><path d="M423.6 816.8c0 32.2-26.1 58.4-58.4 58.4-7 0-13.8-1.2-20-3.5 22.4-8.2 38.4-29.7 38.4-54.9s-16-46.7-38.4-54.9c6.2-2.3 13-3.5 20-3.5 32.3 0 58.4 26.1 58.4 58.4z" fill="#F04B69" p-id="6216"></path><path d="M423.5 284.4c0 32.2-26.1 58.4-58.4 58.4-7 0-13.8-1.2-20-3.5 22.4-8.2 38.4-29.7 38.4-54.9s-16-46.7-38.4-54.9c6.2-2.3 13-3.5 20-3.5 32.3 0 58.4 26.2 58.4 58.4z" fill="#45DABD" p-id="6217"></path><path d="M648.8 226c0 32.2-26.1 58.4-58.4 58.4-7 0-13.8-1.2-20-3.5 22.4-8.2 38.4-29.6 38.4-54.9 0-25.2-16-46.7-38.4-54.9 6.2-2.3 13-3.5 20-3.5 32.2 0.1 58.4 26.2 58.4 58.4z" fill="#15B7FF" p-id="6218"></path><path d="M825.2 351c0 32.2-26.1 58.4-58.4 58.4-7 0-13.8-1.2-20-3.5 22.4-8.2 38.4-29.7 38.4-54.9s-16-46.7-38.4-54.9c6.2-2.3 13-3.5 20-3.5 32.2 0 58.4 26.1 58.4 58.4z" fill="#978CDB" p-id="6219"></path><path d="M740.2 522c0 32.2-26.1 58.4-58.4 58.4-7 0-13.8-1.2-20-3.5 22.4-8.2 38.4-29.6 38.4-54.9s-16-46.7-38.4-54.9c6.2-2.3 13-3.5 20-3.5 32.3 0 58.4 26.2 58.4 58.4z" fill="#DA6749" p-id="6220"></path></svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -0,0 +1 @@
<svg t="1684579834390" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6082" width="200" height="200"><path d="M813.668 142.196c38.66 3.88 68.968 29.468 76.562 67.572 11.222 56.4 24.17 159.66 24.17 335.832 0 176.176-12.948 279.44-24.17 335.82-7.594 38.126-37.9 63.706-76.562 67.58-52.596 5.288-145.736 11-302.468 11-156.732 0-249.872-5.712-302.468-11-38.66-3.874-68.968-29.454-76.562-67.58C120.948 825.04 108 721.776 108 545.6c0-176.174 12.948-279.432 24.17-335.832 7.594-38.104 37.9-63.692 76.562-67.572 52.596-5.28 145.736-10.996 302.468-10.996 156.732 0 249.872 5.716 302.468 10.996z" fill="#FF934A" p-id="6083"></path><path d="M625.754 65.096c39.2 0.796 68.768 35.396 64.176 74.328l-5.242 44.448c-3.988 33.834-32.66 59.328-66.73 59.328H404.532c-34.072 0-62.744-25.494-66.73-59.328l-5.242-44.448c-4.592-38.932 24.976-73.532 64.176-74.328C430.784 64.4 468.82 64 511.244 64c42.426 0 80.46 0.4 114.51 1.096z" fill="#FFDA8F" p-id="6084"></path><path d="M287.2 702.4c0-32.12 20.564-55.754 52.662-55.978 1.098-0.022 2.196-0.022 3.338-0.022s2.24 0 3.338 0.022c32.1 0.224 52.662 23.856 52.662 55.978 0 32.12-20.564 55.754-52.662 55.978-1.098 0.022-2.196 0.022-3.338 0.022s-2.24 0-3.338-0.022c-32.1-0.224-52.662-23.856-52.662-55.978zM466.892 683.494c1.166-20.226 16.688-33.69 36.894-35.146 14.896-1.052 35.638-1.948 63.414-1.948 27.776 0 48.52 0.896 63.414 1.948 20.206 1.456 35.728 14.92 36.894 35.146 0.312 5.42 0.492 11.694 0.492 18.906 0 7.212-0.18 13.484-0.492 18.906-1.166 20.226-16.688 33.69-36.894 35.146-14.896 1.052-35.638 1.948-63.414 1.948-27.776 0-48.52-0.896-63.414-1.948-20.206-1.456-35.728-14.92-36.894-35.146-0.312-5.42-0.492-11.694-0.492-18.906 0-7.212 0.18-13.484 0.492-18.906zM287.2 478.4c0-32.118 20.564-55.754 52.662-55.988a540.422 540.422 0 0 1 6.676 0c32.1 0.234 52.662 23.87 52.662 55.988 0 32.12-20.564 55.754-52.662 55.978-1.098 0.022-2.196 0.022-3.338 0.022s-2.24 0-3.338-0.022c-32.1-0.224-52.662-23.856-52.662-55.978zM467.34 456.228c1.726-18.514 16.958-29.778 35.504-31.06 20.116-1.388 51.722-2.768 97.956-2.768s77.84 1.38 97.956 2.768c18.546 1.282 33.78 12.546 35.504 31.06 0.58 6.132 0.94 13.46 0.94 22.172 0 8.714-0.36 16.04-0.94 22.176-1.726 18.502-16.958 29.77-35.504 31.046-20.116 1.39-51.722 2.778-97.956 2.778s-77.84-1.388-97.956-2.778c-18.546-1.276-33.78-12.544-35.504-31.046-0.58-6.138-0.94-13.462-0.94-22.176 0-8.714 0.36-16.04 0.94-22.172z" fill="#FFFFFF" p-id="6085"></path></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1 @@
<svg t="1682346903227" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2449" width="200" height="200"><path d="M195.30666667 869.76L39.04 171.30666667l301.65333333-54.08-18.13333333 79.14666666-194.56 33.06666667 100.37333333 485.33333333zM828.16 989.33333333L232.21333333 876.48 391.57333333 34.66666667l595.94666667 112.74666666-159.36 841.92zM319.46666667 817.06666667l449.17333333 85.01333333L900.26666667 206.82666667l-449.17333334-85.01333334L319.46666667 817.06666667z" fill="#FF9F06" p-id="2450"></path><path d="M478.62933333 457.42613333L517.312 252.39466667l73.37493333 13.8432-38.68266666 205.0304z" fill="#FF9F06" p-id="2451"></path><path d="M695.86346667 316.81813333l6.4704-28.8288 104.07466666 23.36-6.4704 28.8288zM685.09866667 365.24586667l6.4704-28.8288 104.07466666 23.36-6.4704 28.8288zM673.70026667 412.86186667l6.47146666-28.8288 104.07466667 23.36-6.47146667 28.8288zM663.77706667 460.69866667l6.4704-28.8288 104.07466666 23.36-6.4704 28.8288zM651.7728 510.14506667l6.4704-28.82773334 104.07466667 23.36-6.4704 28.8288zM640.58026667 560.04373333l6.47146666-28.8288 104.07466667 23.36-6.47146667 28.8288zM630.8832 608.47146667l6.4704-28.8288 104.07466667 23.36-6.4704 28.8288zM619.50826667 655.984l6.4704-28.8288 104.07466666 23.36-6.4704 28.8288zM609.45706667 703.9008l6.4704-28.8288 104.07466666 23.36-6.4704 28.8288zM598.54293333 753.24373333l6.47146667-28.8288 104.07466667 23.36-6.47146667 28.8288z" fill="#F7931E" p-id="2452"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@@ -0,0 +1 @@
<svg t="1697261264965" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7437" width="32" height="32"><path d="M661.333333 640h-53.333333a10.666667 10.666667 0 1 0 0 21.333333H661.333333v53.333334a10.666667 10.666667 0 1 0 21.333334 0V661.333333h53.333333a10.666667 10.666667 0 1 0 0-21.333333H682.666667v-53.333333a10.666667 10.666667 0 1 0-21.333334 0V640z m-149.333333 384C229.226667 1024 0 794.773333 0 512S229.226667 0 512 0s512 229.226667 512 512-229.226667 512-512 512z m0-512a106.666667 106.666667 0 1 0 0-213.333333 106.666667 106.666667 0 0 0 0 213.333333z m0-21.333333a85.333333 85.333333 0 1 1 0-170.666667 85.333333 85.333333 0 0 1 0 170.666667z m125.269333 89.173333A192 192 0 0 0 320 725.333333h21.333333a170.666667 170.666667 0 0 1 283.477334-128.064l12.458666-17.450666z" fill="#FFB91E" p-id="7438"></path></svg>

After

Width:  |  Height:  |  Size: 872 B

View File

@@ -0,0 +1 @@
<svg t="1682349965298" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="110993" width="200" height="200"><path d="M170.666667 136.533333m136.533333 0l512 0q136.533333 0 136.533333 136.533334l0 307.2q0 136.533333-136.533333 136.533333l-512 0q-136.533333 0-136.533333-136.533333l0-307.2q0-136.533333 136.533333-136.533334Z" fill="#FC7300" p-id="110994"></path><path d="M170.666667 170.666667m136.533333 0l512 0q136.533333 0 136.533333 136.533333l0 307.2q0 136.533333-136.533333 136.533333l-512 0q-136.533333 0-136.533333-136.533333l0-307.2q0-136.533333 136.533333-136.533333Z" fill="#FA8511" p-id="110995"></path><path d="M170.666667 273.066667h512a136.533333 136.533333 0 0 1 136.533333 136.533333v307.2a136.533333 136.533333 0 0 1-136.533333 136.533333h-188.757334l-67.242666 67.4816L359.1168 853.333333H170.666667a136.533333 136.533333 0 0 1-136.533334-136.533333v-307.2a136.533333 136.533333 0 0 1 136.533334-136.533333z" fill="#FBC476" p-id="110996"></path><path d="M170.666667 307.2h512a136.533333 136.533333 0 0 1 136.533333 136.533333v307.2a136.533333 136.533333 0 0 1-136.533333 136.533334h-188.757334l-67.242666 67.4816L359.1168 887.466667H170.666667a136.533333 136.533333 0 0 1-136.533334-136.533334v-307.2a136.533333 136.533333 0 0 1 136.533334-136.533333z" fill="#FAB85F" p-id="110997"></path><path d="M204.8 477.866667m34.133333 0l375.466667 0q34.133333 0 34.133333 34.133333l0 0q0 34.133333-34.133333 34.133333l-375.466667 0q-34.133333 0-34.133333-34.133333l0 0q0-34.133333 34.133333-34.133333Z" fill="#FFFFFF" p-id="110998"></path><path d="M204.8 648.533333m34.133333 0l273.066667 0q34.133333 0 34.133333 34.133334l0 0q0 34.133333-34.133333 34.133333l-273.066667 0q-34.133333 0-34.133333-34.133333l0 0q0-34.133333 34.133333-34.133334Z" fill="#FFFFFF" p-id="110999"></path></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1 @@
<svg t="1689230093122" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1639" width="200" height="200"><path d="M893.359817 142.982769c-141.157457 0-270.146168-48.674985-360.19489-133.856209-12.168746-12.168746-31.63874-12.168746-43.807487 0-87.614973 85.181224-219.037433 133.856209-360.19489 133.856209-17.036245 0-31.63874 14.602496-31.63874 31.63874V561.587641c0 124.121212 65.71123 238.507427 172.796197 309.086156l223.904931 146.024955c4.867499 2.433749 12.168746 4.867499 17.036245 4.867499 4.867499 0 12.168746-2.433749 17.036245-4.867499l223.904932-146.024955C861.721076 800.095068 924.998557 683.275104 924.998557 561.587641V174.621509c0-17.036245-14.602496-31.63874-31.63874-31.63874zM569.671165 668.672608c0 21.903743-24.337493 46.241236-58.409982 46.241236-36.506239 0-58.409982-24.337493-58.409982-46.241236 0-31.63874 36.506239-53.542484 36.506239-99.783719 0-58.409982-51.108734-138.723708-51.108734-189.832442 0-38.939988 29.204991-65.71123 73.012477-65.71123s73.012478 26.771242 73.012478 65.71123c0 48.674985-51.108734 131.42246-51.108734 189.832442 2.433749 51.108734 36.506239 65.71123 36.506238 99.783719z" fill="#F5B53A" p-id="1640"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg t="1682349941304" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="107471" width="200" height="200"><path d="M181.589333 504.32a336 336 0 1 0 672 0 336 336 0 0 0-672 0z" fill="#FEEDCD" p-id="107472"></path><path d="M924.928 663.466667a440.234667 440.234667 0 0 1-404.053333 288.64l-6.698667 0.128h-4.48c-105.258667 0-207.402667-37.717333-287.402667-106.282667a443.136 443.136 0 0 1-149.248-263.338667l-1.28-7.765333 66.858667 44.586667 36.821333-55.210667-123.008-82.048a33.28 33.28 0 0 0-51.754666 27.52c0 280.704 228.352 509.013333 509.013333 509.013333h0.256a506.88 506.88 0 0 0 291.541333-91.733333 506.24 506.24 0 0 0 186.154667-241.706667l2.858667-7.68-62.848-21.333333-2.730667 7.168zM509.696 0.64c-104.874667 0-205.696 31.786667-291.626667 91.776A506.453333 506.453333 0 0 0 31.786667 334.165333l-2.858667 7.68 62.848 21.333334 2.730667-7.253334a444.373333 444.373333 0 0 1 415.104-288.938666 443.008 443.008 0 0 1 436.693333 369.706666l1.237333 7.765334-66.858666-44.586667-36.778667 55.210667 122.965333 82.048a33.28 33.28 0 0 0 51.626667-27.52C1018.752 229.034667 790.4 0.682667 509.696 0.682667z" fill="#FFA500" p-id="107473"></path><path d="M662.528 438.4v-46.933333h-238.506667v46.933333h238.506667zM358.741333 387.413333l46.848-30.592c-11.861333-14.08-23.424-28.245333-34.602666-42.752l-36.693334-42.752-44.928 26.410667c8.106667 9.6 18.986667 23.765333 32.682667 42.837333 16.341333 20.352 28.586667 36.010667 36.693333 46.848z m16.341334 254.72V434.346667H275.2v50.944h46.848v171.221333c1.365333 20.352-4.778667 34.602667-18.389333 42.837333l32.682666 42.88c8.106667-8.234667 17.621333-17.066667 28.458667-26.538666 10.837333-10.837333 27.904-23.765333 50.986667-38.741334 9.472-6.741333 16.341333-11.52 20.309333-14.293333a423.68 423.68 0 0 1-12.202667-57.130667l-48.810666 36.693334z" fill="#FFA500" p-id="107474"></path><path d="M744.021333 682.965333v-393.386666h-307.797333v48.938666h252.672v326.186667c2.773333 23.04-9.472 33.237333-36.693333 30.592H584.96c5.376 21.76 8.789333 39.338667 10.154667 52.906667h81.493333c47.786667-0.085333 70.186667-21.802667 67.413333-65.237334z" fill="#FFA500" p-id="107475"></path><path d="M633.941333 491.434667h-187.562666v173.226666h187.562666v-173.226666z m-48.896 128.341333h-89.728v-83.541333h89.728v83.541333z" fill="#FFA500" p-id="107476"></path></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1 @@
<svg t="1688493463441" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5541" width="200" height="200"><path d="M512 0C230.4 0 0 230.4 0 512s230.4 512 512 512 512-230.4 512-512S793.6 0 512 0z" fill="#F49C2E" p-id="5542"></path><path d="M750.933333 257.422222c2.844444 1.422222 2.844444 4.266667 2.844445 5.688889l-103.822222 432.355556c0 1.422222-1.422222 2.844444-2.844445 4.266666-1.422222 0-1.422222 1.422222-2.844444 1.422223h-1.422223l-207.644444-64c-1.422222 0-2.844444-1.422222-4.266667-4.266667 0-1.422222 0-4.266667 1.422223-5.688889l206.222222-247.466667-257.422222 234.666667c-1.422222 1.422222-4.266667 1.422222-5.688889 1.422222l-186.311111-59.733333c-2.844444 0-4.266667-2.844444-4.266667-5.688889s1.422222-4.266667 2.844444-5.688889L745.244444 256c2.844444 0 4.266667 0 5.688889 1.422222z m-261.688889 426.666667c1.422222 0 2.844444 1.422222 2.844445 2.844444v4.266667l-54.044445 86.755556c-1.422222 1.422222-2.844444 2.844444-4.266666 2.844444h-1.422222c-2.844444 0-4.266667-2.844444-4.266667-5.688889v-103.822222c0-1.422222 1.422222-2.844444 2.844444-4.266667 1.422222-1.422222 2.844444-1.422222 4.266667-1.422222l54.044444 18.488889z" fill="#FFFFFF" p-id="5543"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg t="1684852746534" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="12785" width="200" height="200"><path d="M803.7 887.2H226.9c-47.4 0-86.2-38.8-86.2-86.2V278.2c0-47.4 38.8-86.2 86.2-86.2h576.8c47.4 0 86.2 38.8 86.2 86.2v522.9c0 47.3-38.8 86.1-86.2 86.1z" fill="#FCA235" opacity=".7" p-id="12786"></path><path d="M646.6 496.6H384c-49.5 0-90-40.5-90-90V175.8c0-25.5 20.8-46.3 46.3-46.3h349.9c25.5 0 46.3 20.8 46.3 46.3v230.7c0.1 49.6-40.4 90.1-89.9 90.1z" fill="#FCA235" opacity=".7" p-id="12787"></path><path d="M642.9 743.5H387.7c-22 0-40-18-40-40s18-40 40-40h255.2c22 0 40 18 40 40s-18 40-40 40zM616.5 416.2c-22 0-40-18-40-40V273.9c0-22 18-40 40-40s40 18 40 40v102.2c0 22.1-18 40.1-40 40.1z" fill="#FFFFFF" p-id="12788"></path></svg>

After

Width:  |  Height:  |  Size: 784 B

View File

@@ -0,0 +1 @@
<svg t="1682349246966" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="89153" width="200" height="200"><path d="M910.72 807.04L704.832 603.712c13.248-27.84 20.608-59.008 20.608-91.648A213.12 213.12 0 0 0 512 298.624a215.486 215.486 0 0 0-57.024 7.68l91.392 91.008c37.824 38.144 34.944 102.016-6.144 142.976C499.328 581.12 435.2 584 397.312 546.496l-91.072-91.648c-5.056 18.112-7.68 37.248-7.68 57.28a213.76 213.76 0 0 0 213.504 214.016 209.28 209.28 0 0 0 91.328-20.8L808.256 909.12c26.24 25.664 69.888 24.128 97.984-4.352 28.032-27.968 30.016-72.064 4.48-97.728z m-55.36 82.944a36.736 36.736 0 0 1-36.608-36.416 36.48 36.48 0 0 1 36.608-35.584 35.84 35.84 0 0 1 36.224 35.584 36.16 36.16 0 0 1-36.224 36.416zM960 417.344h-20.736l-48.64-0.512h-0.384a59.776 59.776 0 0 1-27.136-9.664c-0.64 0-0.896-0.192-1.152-0.64a62.272 62.272 0 0 1-24.832-73.28 54.016 54.016 0 0 1 10.24-19.52l10.752-11.008 24.256-23.872 14.272-14.528a74.88 74.88 0 0 0-0.768-92.096l-41.728-42.752a76.672 76.672 0 0 0-92.992-1.344l-15.168 14.592-33.728 34.688h-0.512a63.424 63.424 0 0 1-64.896 8.512 69.184 69.184 0 0 1-20.096-13.568 67.008 67.008 0 0 1-17.856-37.504V64.64A74.368 74.368 0 0 0 543.04 0h-59.456a75.712 75.712 0 0 0-66.432 64.256v69.504c-0.256 1.792-0.896 3.712-1.024 5.312v0.64c-0.512 1.728-0.704 3.52-0.96 5.056-0.64 0-0.64 0.64-0.64 0.64-0.64 1.536-1.024 3.968-1.856 5.056-0.576 1.92-1.664 3.456-2.496 5.248v0.192a56.128 56.128 0 0 1-15.488 19.328 63.552 63.552 0 0 1-80.704 1.28l-10.88-10.944-24.192-23.68-14.656-14.912a74.752 74.752 0 0 0-92.096 1.088l-42.688 42.112a75.904 75.904 0 0 0-1.28 92.544l14.656 14.464 34.432 34.24 1.92 3.072c0.448 0.192 0.832 1.088 1.728 2.24 0.448 0.64 0.832 1.92 1.536 2.816 0 0.192 1.152 1.344 1.152 1.984 0.576 0.896 1.28 2.432 2.048 3.52 0 0.64 0.192 1.344 0.576 1.984 0.64 0.896 0.896 2.432 1.856 3.776 0 0.448 0.128 1.088 0.32 1.728 0.192 1.92 1.216 3.456 1.216 5.376a19.456 19.456 0 0 1 0.832 5.696 61.76 61.76 0 0 1-18.304 53.12 62.72 62.72 0 0 1-37.568 18.24H65.024c-34.112 4.8-60.992 32-64.832 65.792L0 540.608c3.456 34.368 30.272 61.376 64.256 65.984h20.928l48.512 0.64c1.728 0.256 4.16 0.256 5.824 0.896h1.664c1.536 0.64 2.432 1.152 4.16 1.344 26.176 8.128 45.184 32.512 45.184 61.44a63.808 63.808 0 0 1-13.888 39.872l-10.688 10.368-24.448 23.872-14.592 14.528a76.224 76.224 0 0 0 0.768 92.288l42.432 42.752a75.392 75.392 0 0 0 92.544 0.896l14.464-14.464 34.752-33.984c0-0.448 0.256-0.448 0.704-0.704 1.344-1.344 2.752-1.92 3.776-3.264 1.216-0.192 1.408-0.192 2.304-0.896 0.64-0.448 1.728-1.344 2.624-1.92 1.216-0.768 2.752-0.896 3.968-1.536 0.768-0.448 1.344-0.704 1.6-1.152 1.792-0.192 3.008-0.896 5.44-1.536 2.112-0.64 3.52-1.472 5.056-1.472h0.576c1.664-0.448 3.392-0.704 5.312-1.152h0.448c1.6 0 3.072 0 4.416-0.64a63.872 63.872 0 0 1 48.896 19.072 63.232 63.232 0 0 1 18.56 37.952l-0.192 14.912v54.336c4.032 34.432 31.36 61.44 65.408 64.96H540.8a74.496 74.496 0 0 0 65.984-63.808v-20.608l0.64-35.072v-13.888a63.232 63.232 0 0 1 14.592-34.368c0.512-0.256 1.024-1.536 1.984-1.984a81.92 81.92 0 0 1 12.736-11.2c1.472-0.192 2.88-1.344 3.776-1.92 1.152-0.64 1.152-0.64 1.6-0.64 0.64-0.256 1.024-0.256 1.152-0.256 1.28-0.896 2.24-0.896 3.648-1.472l-57.344-57.28a279.04 279.04 0 0 1-78.144 10.752A279.488 279.488 0 0 1 231.744 512a280.32 280.32 0 0 1 281.088-280.256 280.512 280.512 0 0 1 279.36 281.152c0 26.304-4.032 52.416-11.008 76.096l57.728 56.832c3.008-6.784 7.616-12.736 12.864-18.688 6.016-5.696 13.888-10.048 21.12-12.864a56.96 56.96 0 0 1 16.384-4.864h69.824a75.264 75.264 0 0 0 64.768-65.536v-60.608A74.496 74.496 0 0 0 960 417.344z" fill="#f59e37" p-id="89154"></path></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1 @@
<svg t="1682346977156" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6872" width="200" height="200"><path d="M1024 806.4V704s-70.4-12.8-70.4-19.2c0-6.4 0-12.8-6.4-12.8 6.4-12.8 44.8-44.8 44.8-44.8l-76.8-102.4s-51.2 38.4-64 44.8c-6.4 0-12.8-6.4-19.2-6.4-6.4 0-25.6-64-25.6-64H704s-12.8 64-25.6 64c-6.4 0-12.8 6.4-19.2 6.4-12.8-6.4-64-44.8-64-44.8l-70.4 102.4s38.4 38.4 38.4 51.2c0 6.4-6.4 6.4-6.4 12.8-19.2 6.4-64 12.8-64 12.8v102.4s57.6 12.8 64 19.2c0 6.4 6.4 12.8 6.4 19.2-12.8 12.8-44.8 38.4-44.8 38.4l76.8 102.4s64-38.4 70.4-44.8c6.4 0 12.8 6.4 12.8 6.4 6.4 0 19.2 64 19.2 64H800s6.4-57.6 12.8-57.6 12.8-6.4 19.2-6.4c6.4 6.4 51.2 44.8 51.2 44.8l102.4-102.4s-38.4-25.6-51.2-38.4c0-6.4 6.4-12.8 6.4-19.2 19.2-12.8 83.2-25.6 83.2-25.6z m-262.4 76.8c-70.4 0-128-57.6-128-128s57.6-128 128-128 128 57.6 128 128-57.6 128-128 128z" fill="#F1D2B0" p-id="6873"></path><path d="M428.8 492.8C550.4 492.8 672 377.6 672 256c0-121.6-115.2-243.2-236.8-243.2-121.6 0-243.2 128-243.2 249.6s115.2 230.4 236.8 230.4zM480 544H243.2c-64 0-153.6 32-179.2 121.6-32 89.6-32 89.6-57.6 179.2-12.8 44.8 204.8 70.4 422.4 70.4 70.4 0 25.6-57.6 25.6-128C448 614.4 588.8 544 480 544z" fill="#F49F3F" p-id="6874"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="200.781" height="200" class="icon" viewBox="0 0 1028 1024"><path d="M989.867 234.667H499.2c-17.067 0-34.133-21.334-34.133-42.667 0-25.6 12.8-42.667 34.133-42.667h490.667c17.066 0 34.133 17.067 34.133 42.667 0 21.333-12.8 42.667-34.133 42.667zm-473.6 128h465.066c25.6 0 46.934 21.333 46.934 42.666 0 25.6-21.334 42.667-46.934 42.667H516.267c-25.6 0-46.934-17.067-46.934-42.667s21.334-42.666 46.934-42.666zm0 298.666c-25.6 0-46.934-21.333-46.934-42.666 0-25.6 21.334-42.667 46.934-42.667h465.066c25.6 0 46.934 17.067 46.934 42.667s-21.334 42.666-46.934 42.666H516.267zm4.266 128H972.8c29.867 0 51.2 17.067 51.2 42.667s-21.333 42.667-51.2 42.667H520.533c-29.866 0-51.2-17.067-51.2-42.667s21.334-42.667 51.2-42.667zm-192 25.6c-17.066 17.067-46.933 17.067-64 0L12.8 541.867c-17.067-17.067-17.067-51.2 0-68.267l251.733-273.067c17.067-17.066 46.934-17.066 64 0s17.067 51.2 0 68.267L106.667 507.733l221.866 238.934c17.067 21.333 17.067 51.2 0 68.266z"/></svg>

After

Width:  |  Height:  |  Size: 998 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Some files were not shown because too many files have changed in this diff Show More