Add all dashboard projects

This commit is contained in:
meswork764
2026-05-23 14:07:11 +08:00
commit ba82fbfc14
3550 changed files with 467904 additions and 0 deletions

18
board_view/.babelrc Normal file
View File

@@ -0,0 +1,18 @@
{
"presets": [
["env", {
"modules": false,
"targets": {
"browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
}
}],
"stage-2"
],
"plugins": ["transform-vue-jsx", "transform-runtime"],
"env": {
"test": {
"presets": ["env", "stage-2"],
"plugins": ["transform-vue-jsx", "transform-es2015-modules-commonjs", "dynamic-import-node"]
}
}
}

9
board_view/.editorconfig Normal file
View File

@@ -0,0 +1,9 @@
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

5
board_view/.eslintignore Normal file
View File

@@ -0,0 +1,5 @@
/build/
/config/
/dist/
/*.js
/test/unit/coverage/

29
board_view/.eslintrc.js Normal file
View File

@@ -0,0 +1,29 @@
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
parserOptions: {
parser: 'babel-eslint'
},
env: {
browser: true,
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
'plugin:vue/essential',
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
'standard'
],
// required to lint *.vue files
plugins: [
'vue'
],
// add your custom rules here
rules: {
// allow async-await
'generator-star-spacing': 'off',
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
}
}

17
board_view/.gitignore vendored Normal file
View File

@@ -0,0 +1,17 @@
.DS_Store
node_modules/
/dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/test/unit/coverage/
/test/e2e/reports/
selenium-debug.log
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln

10
board_view/.postcssrc.js Normal file
View File

@@ -0,0 +1,10 @@
// https://github.com/michael-ciniawsky/postcss-load-config
module.exports = {
"plugins": {
"postcss-import": {},
"postcss-url": {},
// to edit target browsers: use "browserslist" field in package.json
"autoprefixer": {}
}
}

30
board_view/README.md Normal file
View File

@@ -0,0 +1,30 @@
# slvisualization
> A Vue.js project
## Build Setup
``` bash
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report
# run unit tests
npm run unit
# run e2e tests
npm run e2e
# run all tests
npm test
```
For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).

41
board_view/build/build.js Normal file
View File

@@ -0,0 +1,41 @@
'use strict'
require('./check-versions')()
process.env.NODE_ENV = 'production'
const ora = require('ora')
const rm = require('rimraf')
const path = require('path')
const chalk = require('chalk')
const webpack = require('webpack')
const config = require('../config')
const webpackConfig = require('./webpack.prod.conf')
const spinner = ora('building for production...')
spinner.start()
rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => {
if (err) throw err
webpack(webpackConfig, (err, stats) => {
spinner.stop()
if (err) throw err
process.stdout.write(stats.toString({
colors: true,
modules: false,
children: false, // If you are using ts-loader, setting this to true will make TypeScript errors show up during build.
chunks: false,
chunkModules: false
}) + '\n\n')
if (stats.hasErrors()) {
console.log(chalk.red(' Build failed with errors.\n'))
process.exit(1)
}
console.log(chalk.cyan(' Build complete.\n'))
console.log(chalk.yellow(
' Tip: built files are meant to be served over an HTTP server.\n' +
' Opening index.html over file:// won\'t work.\n'
))
})
})

View File

@@ -0,0 +1,54 @@
'use strict'
const chalk = require('chalk')
const semver = require('semver')
const packageConfig = require('../package.json')
const shell = require('shelljs')
function exec (cmd) {
return require('child_process').execSync(cmd).toString().trim()
}
const versionRequirements = [
{
name: 'node',
currentVersion: semver.clean(process.version),
versionRequirement: packageConfig.engines.node
}
]
if (shell.which('npm')) {
versionRequirements.push({
name: 'npm',
currentVersion: exec('npm --version'),
versionRequirement: packageConfig.engines.npm
})
}
module.exports = function () {
const warnings = []
for (let i = 0; i < versionRequirements.length; i++) {
const mod = versionRequirements[i]
if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) {
warnings.push(mod.name + ': ' +
chalk.red(mod.currentVersion) + ' should be ' +
chalk.green(mod.versionRequirement)
)
}
}
if (warnings.length) {
console.log('')
console.log(chalk.yellow('To use this template, you must update following to modules:'))
console.log()
for (let i = 0; i < warnings.length; i++) {
const warning = warnings[i]
console.log(' ' + warning)
}
console.log()
process.exit(1)
}
}

BIN
board_view/build/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

101
board_view/build/utils.js Normal file
View File

@@ -0,0 +1,101 @@
'use strict'
const path = require('path')
const config = require('../config')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const packageConfig = require('../package.json')
exports.assetsPath = function (_path) {
const assetsSubDirectory = process.env.NODE_ENV === 'production'
? config.build.assetsSubDirectory
: config.dev.assetsSubDirectory
return path.posix.join(assetsSubDirectory, _path)
}
exports.cssLoaders = function (options) {
options = options || {}
const cssLoader = {
loader: 'css-loader',
options: {
sourceMap: options.sourceMap
}
}
const postcssLoader = {
loader: 'postcss-loader',
options: {
sourceMap: options.sourceMap
}
}
// generate loader string to be used with extract text plugin
function generateLoaders (loader, loaderOptions) {
const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader]
if (loader) {
loaders.push({
loader: loader + '-loader',
options: Object.assign({}, loaderOptions, {
sourceMap: options.sourceMap
})
})
}
// Extract CSS when that option is specified
// (which is the case during production build)
if (options.extract) {
return ExtractTextPlugin.extract({
use: loaders,
fallback: 'vue-style-loader'
})
} else {
return ['vue-style-loader'].concat(loaders)
}
}
// https://vue-loader.vuejs.org/en/configurations/extract-css.html
return {
css: generateLoaders(),
postcss: generateLoaders(),
less: generateLoaders('less'),
sass: generateLoaders('sass', { indentedSyntax: true }),
scss: generateLoaders('sass'),
stylus: generateLoaders('stylus'),
styl: generateLoaders('stylus')
}
}
// Generate loaders for standalone style files (outside of .vue)
exports.styleLoaders = function (options) {
const output = []
const loaders = exports.cssLoaders(options)
for (const extension in loaders) {
const loader = loaders[extension]
output.push({
test: new RegExp('\\.' + extension + '$'),
use: loader
})
}
return output
}
exports.createNotifierCallback = () => {
const notifier = require('node-notifier')
return (severity, errors) => {
if (severity !== 'error') return
const error = errors[0]
const filename = error.file && error.file.split('!').pop()
notifier.notify({
title: packageConfig.name,
message: severity + ': ' + error.name,
subtitle: filename || '',
icon: path.join(__dirname, 'logo.png')
})
}
}

View File

@@ -0,0 +1,22 @@
'use strict'
const utils = require('./utils')
const config = require('../config')
const isProduction = process.env.NODE_ENV === 'production'
const sourceMapEnabled = isProduction
? config.build.productionSourceMap
: config.dev.cssSourceMap
module.exports = {
loaders: utils.cssLoaders({
sourceMap: sourceMapEnabled,
extract: isProduction
}),
cssSourceMap: sourceMapEnabled,
cacheBusting: config.dev.cacheBusting,
transformToRequire: {
video: ['src', 'poster'],
source: 'src',
img: 'src',
image: 'xlink:href'
}
}

View File

@@ -0,0 +1,95 @@
'use strict'
const path = require('path')
const utils = require('./utils')
const config = require('../config')
const vueLoaderConfig = require('./vue-loader.conf')
function resolve(dir) {
return path.join(__dirname, '..', dir)
}
const createLintingRule = () => ({
test: /\.(js|vue)$/,
loader: 'eslint-loader',
enforce: 'pre',
include: [resolve('src'), resolve('test')],
options: {
formatter: require('eslint-friendly-formatter'),
emitWarning: !config.dev.showEslintErrorsInOverlay
}
})
module.exports = {
context: path.resolve(__dirname, '../'),
entry: {
app: './src/main.js'
},
output: {
path: config.build.assetsRoot,
filename: '[name].js',
publicPath: process.env.NODE_ENV === 'production' ?
config.build.assetsPublicPath :
config.dev.assetsPublicPath
},
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
'vue$': 'vue/dist/vue.esm.js',
'@': resolve('src'),
}
},
module: {
rules: [
// ...(config.dev.useEslint ? [createLintingRule()] : []),
{
test: /\.vue$/,
loader: 'vue-loader',
options: vueLoaderConfig
},
{
test: /\.js$/,
loader: 'babel-loader',
include: [resolve('src'), resolve('test'), resolve('node_modules/webpack-dev-server/client')]
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('media/[name].[hash:7].[ext]')
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
}
}, {
test: /\.less$/,
loader: 'style-loader!css-loader!less-loader'
}
]
},
node: {
// prevent webpack from injecting useless setImmediate polyfill because Vue
// source contains it (although only uses it if it's native).
setImmediate: false,
// prevent webpack from injecting mocks to Node native modules
// that does not make sense for the client
dgram: 'empty',
fs: 'empty',
net: 'empty',
tls: 'empty',
child_process: 'empty'
}
}

View File

@@ -0,0 +1,95 @@
'use strict'
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const path = require('path')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
const portfinder = require('portfinder')
const HOST = process.env.HOST
const PORT = process.env.PORT && Number(process.env.PORT)
const devWebpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
},
// cheap-module-eval-source-map is faster for development
devtool: config.dev.devtool,
// these devServer options should be customized in /config/index.js
devServer: {
clientLogLevel: 'warning',
historyApiFallback: {
rewrites: [
{ from: /.*/, to: path.posix.join(config.dev.assetsPublicPath, 'index.html') },
],
},
hot: true,
contentBase: false, // since we use CopyWebpackPlugin.
compress: true,
host: HOST || config.dev.host,
port: PORT || config.dev.port,
open: config.dev.autoOpenBrowser,
overlay: config.dev.errorOverlay
? { warnings: false, errors: true }
: false,
publicPath: config.dev.assetsPublicPath,
proxy: config.dev.proxyTable,
quiet: true, // necessary for FriendlyErrorsPlugin
watchOptions: {
poll: config.dev.poll,
}
},
plugins: [
new webpack.DefinePlugin({
'process.env': require('../config/dev.env')
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update.
new webpack.NoEmitOnErrorsPlugin(),
// https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'index.html',
inject: true
}),
// copy custom static assets
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.dev.assetsSubDirectory,
ignore: ['.*']
}
])
]
})
module.exports = new Promise((resolve, reject) => {
portfinder.basePort = process.env.PORT || config.dev.port
portfinder.getPort((err, port) => {
if (err) {
reject(err)
} else {
// publish the new Port, necessary for e2e tests
process.env.PORT = port
// add port to devServer config
devWebpackConfig.devServer.port = port
// Add FriendlyErrorsPlugin
devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
compilationSuccessInfo: {
messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
},
onErrors: config.dev.notifyOnErrors
? utils.createNotifierCallback()
: undefined
}))
resolve(devWebpackConfig)
}
})
})

View File

@@ -0,0 +1,149 @@
'use strict'
const path = require('path')
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const env = process.env.NODE_ENV === 'testing'
? require('../config/test.env')
: require('../config/prod.env')
const webpackConfig = merge(baseWebpackConfig, {
module: {
rules: utils.styleLoaders({
sourceMap: config.build.productionSourceMap,
extract: true,
usePostCSS: true
})
},
devtool: config.build.productionSourceMap ? config.build.devtool : false,
output: {
path: config.build.assetsRoot,
filename: utils.assetsPath('js/[name].[chunkhash].js'),
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
},
plugins: [
// http://vuejs.github.io/vue-loader/en/workflow/production.html
new webpack.DefinePlugin({
'process.env': env
}),
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false
}
},
sourceMap: config.build.productionSourceMap,
parallel: true
}),
// extract css into its own file
new ExtractTextPlugin({
filename: utils.assetsPath('css/[name].[contenthash].css'),
// Setting the following option to `false` will not extract CSS from codesplit chunks.
// Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.
// It's currently set to `true` because we are seeing that sourcemaps are included in the codesplit bundle as well when it's `false`,
// increasing file size: https://github.com/vuejs-templates/webpack/issues/1110
allChunks: true,
}),
// Compress extracted CSS. We are using this plugin so that possible
// duplicated CSS from different components can be deduped.
new OptimizeCSSPlugin({
cssProcessorOptions: config.build.productionSourceMap
? { safe: true, map: { inline: false } }
: { safe: true }
}),
// generate dist index.html with correct asset hash for caching.
// you can customize output by editing /index.html
// see https://github.com/ampedandwired/html-webpack-plugin
new HtmlWebpackPlugin({
filename: process.env.NODE_ENV === 'testing'
? 'index.html'
: config.build.index,
template: 'index.html',
inject: true,
minify: {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true
// more options:
// https://github.com/kangax/html-minifier#options-quick-reference
},
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
chunksSortMode: 'dependency'
}),
// keep module.id stable when vendor modules does not change
new webpack.HashedModuleIdsPlugin(),
// enable scope hoisting
new webpack.optimize.ModuleConcatenationPlugin(),
// split vendor js into its own file
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks (module) {
// any required modules inside node_modules are extracted to vendor
return (
module.resource &&
/\.js$/.test(module.resource) &&
module.resource.indexOf(
path.join(__dirname, '../node_modules')
) === 0
)
}
}),
// extract webpack runtime and module manifest to its own file in order to
// prevent vendor hash from being updated whenever app bundle is updated
new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
minChunks: Infinity
}),
// This instance extracts shared chunks from code splitted chunks and bundles them
// in a separate chunk, similar to the vendor chunk
// see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk
new webpack.optimize.CommonsChunkPlugin({
name: 'app',
async: 'vendor-async',
children: true,
minChunks: 3
}),
// copy custom static assets
new CopyWebpackPlugin([
{
from: path.resolve(__dirname, '../static'),
to: config.build.assetsSubDirectory,
ignore: ['.*']
}
])
]
})
if (config.build.productionGzip) {
const CompressionWebpackPlugin = require('compression-webpack-plugin')
webpackConfig.plugins.push(
new CompressionWebpackPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
test: new RegExp(
'\\.(' +
config.build.productionGzipExtensions.join('|') +
')$'
),
threshold: 10240,
minRatio: 0.8
})
)
}
if (config.build.bundleAnalyzerReport) {
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
webpackConfig.plugins.push(new BundleAnalyzerPlugin())
}
module.exports = webpackConfig

View File

@@ -0,0 +1,7 @@
'use strict'
const merge = require('webpack-merge')
const prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {
NODE_ENV: '"development"'
})

View File

@@ -0,0 +1,76 @@
'use strict'
// Template version: 1.3.1
// see http://vuejs-templates.github.io/webpack for documentation.
const path = require('path')
module.exports = {
dev: {
// Paths
assetsSubDirectory: 'static',
assetsPublicPath: '/',
proxyTable: {},
// Various Dev Server settings
host: 'localhost', // can be overwritten by process.env.HOST
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
autoOpenBrowser: false,
errorOverlay: true,
notifyOnErrors: true,
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
// Use Eslint Loader?
// If true, your code will be linted during bundling and
// linting errors and warnings will be shown in the console.
useEslint: true,
// If true, eslint errors and warnings will also be shown in the error overlay
// in the browser.
showEslintErrorsInOverlay: false,
/**
* Source Maps
*/
// https://webpack.js.org/configuration/devtool/#development
devtool: 'cheap-module-eval-source-map',
// If you have problems debugging vue-files in devtools,
// set this to false - it *may* help
// https://vue-loader.vuejs.org/en/options.html#cachebusting
cacheBusting: true,
cssSourceMap: true
},
build: {
// Template for index.html
index: path.resolve(__dirname, '../dist/index.html'),
// Paths
assetsRoot: path.resolve(__dirname, '../dist'),
assetsSubDirectory: 'static',
assetsPublicPath: './',
/**
* Source Maps
*/
productionSourceMap: true,
// https://webpack.js.org/configuration/devtool/#production
devtool: '#source-map',
// Gzip off by default as many popular static hosts such as
// Surge or Netlify already gzip all static assets for you.
// Before setting to `true`, make sure to:
// npm install --save-dev compression-webpack-plugin
productionGzip: false,
productionGzipExtensions: ['js', 'css'],
// Run the build command with an extra argument to
// View the bundle analyzer report after build finishes:
// `npm run build --report`
// Set to `true` or `false` to always turn it on or off
bundleAnalyzerReport: process.env.npm_config_report
}
}

View File

@@ -0,0 +1,4 @@
'use strict'
module.exports = {
NODE_ENV: '"production"'
}

View File

@@ -0,0 +1,7 @@
'use strict'
const merge = require('webpack-merge')
const devEnv = require('./dev.env')
module.exports = merge(devEnv, {
NODE_ENV: '"testing"'
})

BIN
board_view/dist.zip Normal file

Binary file not shown.

30
board_view/index.html Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html style="font-size: 10px;">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>slvisualization</title>
<link rel="icon" href="favicon.png">
<script type="text/javascript">
document.write("<script src='./static/config.js?v=" + new Date().getTime() + "'><\/script>");
</script>
<style>
html,
body {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
display: flex;
}
</style>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>

5
board_view/jsconfig.json Normal file
View File

@@ -0,0 +1,5 @@
{
"vueCompilerOptions": {
"target": 2.7
}
}

37925
board_view/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

94
board_view/package.json Normal file
View File

@@ -0,0 +1,94 @@
{
"name": "slvisualization",
"version": "1.0.0",
"description": "A Vue.js project",
"author": "meswork.com",
"private": true,
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"unit": "jest --config test/unit/jest.conf.js --coverage",
"e2e": "node test/e2e/runner.js",
"test": "npm run unit && npm run e2e",
"lint": "eslint --ext .js,.vue src test/unit test/e2e/specs",
"build": "node build/build.js"
},
"dependencies": {
"@jiaminghi/data-view": "^2.10.0",
"axios": "^1.2.2",
"echarts": "^5.4.1",
"less": "^4.1.3",
"less-loader": "^5.0.0",
"speak-tts": "^2.0.8",
"vue": "^2.5.2",
"vue-router": "^3.0.1",
"vue-seamless-scroll": "^1.1.23"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.22.1",
"babel-eslint": "^8.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-jest": "^21.0.2",
"babel-loader": "^7.1.1",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chalk": "^2.0.1",
"chromedriver": "^2.27.2",
"copy-webpack-plugin": "^4.0.1",
"cross-spawn": "^5.0.1",
"css-loader": "^0.28.0",
"eslint": "^4.15.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.4",
"friendly-errors-webpack-plugin": "^1.6.1",
"html-webpack-plugin": "^2.30.1",
"jest": "^22.0.4",
"jest-serializer-vue": "^0.3.0",
"nightwatch": "^0.9.12",
"node-notifier": "^5.1.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.2.0",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-url": "^7.2.1",
"rimraf": "^2.6.0",
"selenium-server": "^3.0.1",
"semver": "^5.3.0",
"shelljs": "^0.7.6",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^0.5.8",
"vue-jest": "^1.0.2",
"vue-loader": "^13.3.0",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"webpack": "^3.6.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-merge": "^4.1.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}

View File

@@ -0,0 +1,357 @@
ALTER PROCEDURE [dbo].[_主页六个关键数据_查询]
AS
BEGIN
SET NOCOUNT ON;
DECLARE @nowDateTime DATETIME = GETDATE()
-- 计算6个关键指标
DECLARE @ FLOAT = 0
SELECT @ = ISNULL(SUM(ISNULL(, 0)), 0)
FROM View_生产订单_MES
WHERE YEAR() = YEAR(@nowDateTime) AND MONTH() = MONTH(@nowDateTime)
DECLARE @ FLOAT = 0
SELECT @ = ISNULL(SUM(ISNULL(, 0)), 0)
FROM View_生产订单_MES
WHERE YEAR() = YEAR(@nowDateTime) AND MONTH() = MONTH(@nowDateTime)
DECLARE @ FLOAT = 0
IF @ > 0
SET @ = ROUND((@ / @) * 100, 1)
DECLARE @ FLOAT = 0
SELECT @ = ISNULL(SUM(ISNULL(, 0)), 0)
FROM View_生产工时视图
WHERE YEAR() = YEAR(@nowDateTime) AND MONTH() = MONTH(@nowDateTime)
DECLARE @ FLOAT = 0, @ FLOAT = 0, @ FLOAT = 0
SELECT @ = COUNT(DISTINCT CASE WHEN = 1 THEN END),
@ = COUNT(DISTINCT )
FROM View_生产订单_MES
WHERE YEAR() = YEAR(@nowDateTime) AND MONTH() = MONTH(@nowDateTime)
IF @ > 0
SET @ = ROUND((@ / @) * 100, 1)
DECLARE @ FLOAT = 0, @ FLOAT = 0
SELECT @ = ISNULL(SUM(ISNULL(, 0)), 0)
FROM View_生产订单_MES
WHERE YEAR() = YEAR(@nowDateTime) AND MONTH() = MONTH(@nowDateTime)
IF @ > 0
SET @ = ROUND(((@ - @) / @) * 100, 1)
ELSE
SET @ = 100
-- 统一格式返回所有数据
SELECT Zone, Sort, TagName, TagValue, TagUnit, Icon, color FROM (
-- 生产信息 6项
SELECT '生产' AS Zone, 1 AS Sort, '当前计划' AS TagName, CAST(@ AS NVARCHAR(50)) AS TagValue, '' AS TagUnit, 'AssemblyPlan' AS Icon, '#0678b4' AS color
UNION ALL SELECT '生产', 2, '当前产量', CAST(@ AS NVARCHAR(50)), '', 'ManufacturingExecution', '#68b720'
UNION ALL SELECT '生产', 3, '计划完成', CAST(@ AS NVARCHAR(50)), '%', 'ProductionCheck', '#e97378'
UNION ALL SELECT '生产', 4, '工时消耗', CAST(@ AS NVARCHAR(50)), 'h', 'ManHourStatistics', '#9d6dd5'
UNION ALL SELECT '生产', 5, '齐套率', CAST(@ AS NVARCHAR(50)), '%', 'GroupMatching', '#dc7e86'
UNION ALL SELECT '生产', 6, '合格率', CAST(@ AS NVARCHAR(50)), '%', 'QualityBasicData', '#fafc80'
-- 环境监测 8项
UNION ALL SELECT '环境', 1, '二氧化碳', '420', 'ppm', 'CloudData', ''
UNION ALL SELECT '环境', 2, '甲醛', '0.08', 'mg/m³', 'SafetyMargin', ''
UNION ALL SELECT '环境', 3, 'TVOC', '0.15', 'mg/m³', 'QualityBasicData', ''
UNION ALL SELECT '环境', 4, 'PM2.5', '35', 'μg/m³', 'OqcInformation', ''
UNION ALL SELECT '环境', 5, 'PM10', '65', 'μg/m³', 'OqcInformation', ''
UNION ALL SELECT '环境', 6, '温度', '24.5', '', 'MeasurementRangeMaintenance', ''
UNION ALL SELECT '环境', 7, '湿度', '45', '%RH', 'Maintenancebasicequipmentinformation', ''
UNION ALL SELECT '环境', 8, '噪声', '55', 'dB', 'EquipmentAlarmStatistics', ''
-- 水 3项
UNION ALL SELECT '', 1, '瞬时流量', '2.5', 'm³/min', 'MaterialPull', ''
UNION ALL SELECT '', 2, '累计流量', '1580', '', 'InventoryManagement', ''
UNION ALL SELECT '', 3, '压力', '0.35', 'Mpa', 'EquipmentStatusMonitoring', ''
-- 电 4项
UNION ALL SELECT '', 1, '电压A', '380', 'V', 'ElectricalComponentParameters', ''
UNION ALL SELECT '', 2, '电压B', '382', 'V', 'ElectricalComponentParameters', ''
UNION ALL SELECT '', 3, '电压C', '378', 'V', 'ElectricalComponentParameters', ''
UNION ALL SELECT '', 4, '电能', '1250', 'kwh', 'RealTimeStatusEquipment', ''
-- 气 4项
UNION ALL SELECT '', 1, '瞬时流量', '15.8', 'm³/min', 'MaterialPull', ''
UNION ALL SELECT '', 2, '累计流量', '8520', '', 'InventoryManagement', ''
UNION ALL SELECT '', 3, '温度', '22', '', 'MeasurementRangeMaintenance', ''
UNION ALL SELECT '', 4, '压力', '0.65', 'Mpa', 'EquipmentStatusMonitoring', ''
) t
ORDER BY
CASE Zone WHEN '生产' THEN 0 WHEN '环境' THEN 1 WHEN '' THEN 2 WHEN '' THEN 3 WHEN '' THEN 4 END,
Sort
END
GO
ALTER PROCEDURE [dbo].[_左上订单看板_表格_查询]
AS
BEGIN
SET NOCOUNT ON;
SELECT TOP 50
t. AS ,
CONVERT(nvarchar(10), t., 23) AS ,
t.,
CAST(0 AS DECIMAL(5,1)) AS ,
ISNULL(lp., 0) AS ,
t.
FROM (
SELECT
,
MAX() AS ,
MAX() AS ,
-- 工艺部:有生产工艺的任务占比
ISNULL(CAST(ROUND(
SUM(CASE WHEN = 1 THEN 1.0 ELSE 0 END) / NULLIF(COUNT(*), 0) * 100
, 1) AS DECIMAL(5,1)), 0) AS ,
-- 装配部:自制件属性包含"装配"的工序完成进度
ISNULL(CAST(ROUND(
SUM(CASE WHEN LIKE '%装配%' THEN ISNULL(, 0) ELSE 0 END) * 100.0 /
NULLIF(SUM(CASE WHEN LIKE '%装配%' THEN ISNULL(, 0) ELSE 0 END), 0)
, 1) AS DECIMAL(5,1)), 0) AS
FROM View_生产订单_MES
WHERE IS NOT NULL AND <> ''
GROUP BY
) t
OUTER APPLY (
-- 生产部:取当前订单中顺序编号最大的那道工序的进度
SELECT TOP 1
CAST(ROUND(
SUM(ISNULL(, 0)) * 100.0 / NULLIF(SUM(ISNULL(, 0)), 0)
, 1) AS DECIMAL(5,1)) AS
FROM View_生产订单_MES
WHERE = t.
AND = (SELECT MAX() FROM View_生产订单_MES WHERE = t.)
GROUP BY
) lp
ORDER BY t. DESC
END
GO
ALTER PROCEDURE [dbo].[_左中装配看板_表格_查询]
AS
BEGIN
SET NOCOUNT ON;
SELECT TOP 50
AS ,
AS ,
CONVERT(nvarchar(10), ISNULL(, ), 23) AS ,
CASE
WHEN = '1' THEN '已出库'
WHEN = '0' THEN '未出库'
ELSE '未出库'
END AS
FROM View_生产订单_MES
WHERE IN ('机械装配', '电气装配')
AND IS NOT NULL AND <> ''
ORDER BY ISNULL(, ) DESC
END
GO
ALTER PROCEDURE [dbo].[_左下未完成看板_表格_查询]
AS
BEGIN
SET NOCOUNT ON;
SELECT TOP 50
m. AS ,
m. AS ,
CONVERT(nvarchar(10), m., 23) AS ,
m.,
CASE m.
WHEN '机加件' THEN '自制'
WHEN '机械装配' THEN '自制'
WHEN '电气装配' THEN '自制'
ELSE ISNULL(m., '自制')
END AS ,
CAST(ISNULL(h., 0) AS DECIMAL(10,1)) AS ,
CAST(
CASE
WHEN ISNULL(p., 0) - ISNULL(h., 0) < 0 THEN 0
ELSE ISNULL(p., 0) - ISNULL(h., 0)
END AS DECIMAL(10,1)
) AS
FROM View_生产订单_MES m
LEFT JOIN (
-- 按TaskAID汇总已完成工时
SELECT TaskAID, SUM(ISNULL(, 0)) AS
FROM View_生产工时视图
GROUP BY TaskAID
) h ON m.TaskAID = h.TaskAID
LEFT JOIN View_生产工艺视图 p ON m. = p. AND m. = p.
WHERE m. IN (0, 1, 2) -- 未完工状态
AND m. IS NOT NULL AND m. <> ''
ORDER BY m. DESC
END
GO
ALTER PROCEDURE [dbo].[_左上计划执行情况_曲线_查询]
AS
BEGIN
SET NOCOUNT ON;
DECLARE @date DATE = CAST(GETDATE() AS DATE)
SELECT
RIGHT(CONVERT(nvarchar(10), MAX(), 23), 5) AS ,
ISNULL(CAST(ROUND(AVG(
CASE WHEN = 1 THEN 100.0 ELSE 0 END
), 1) AS DECIMAL(5,1)), 0) AS ,
CAST(0 AS DECIMAL(5,1)) AS ,
ISNULL(CAST(ROUND(AVG(
CASE WHEN ISNULL(, 0) > 0 THEN ISNULL(, 0) * 100.0 / ELSE 0 END
), 1) AS DECIMAL(5,1)), 0) AS ,
-- 装配部:自制件属性包含“装配”的工序完成进度
ISNULL(CAST(ROUND(AVG(
CASE WHEN LIKE '%装配%' AND ISNULL(, 0) > 0
THEN ISNULL(, 0) * 100.0 /
ELSE NULL END
), 1) AS DECIMAL(5,1)), 0) AS ,
COUNT(1) AS
FROM View_生产订单_MES
WHERE IS NOT NULL AND <> ''
AND CAST( AS DATE) >= DATEADD(DAY, -10, @date)
AND CAST( AS DATE) <= @date
GROUP BY CAST( AS DATE)
ORDER BY CAST( AS DATE)
END
GO
ALTER PROCEDURE [dbo].[_中间主体订单_表格_查询]
AS
BEGIN
SET NOCOUNT ON;
SELECT TOP 100
t. AS ,
'' AS ,
'' AS ,
t.,
CAST(0 AS DECIMAL(5,1)) AS ,
ISNULL(lp., 0) AS ,
t.
FROM (
SELECT
,
MAX() AS ,
MAX() AS ,
ISNULL(CAST(ROUND(
SUM(CASE WHEN = 1 THEN 1.0 ELSE 0 END) / NULLIF(COUNT(*), 0) * 100
, 1) AS DECIMAL(5,1)), 0) AS ,
-- 装配部:自制件属性包含“装配”的工序完成进度
ISNULL(CAST(ROUND(
SUM(CASE WHEN LIKE '%装配%' THEN ISNULL(, 0) ELSE 0 END) * 100.0 /
NULLIF(SUM(CASE WHEN LIKE '%装配%' THEN ISNULL(, 0) ELSE 0 END), 0)
, 1) AS DECIMAL(5,1)), 0) AS
FROM View_生产订单_MES
WHERE IS NOT NULL AND <> ''
GROUP BY
) t
OUTER APPLY (
SELECT TOP 1
CAST(ROUND(
SUM(ISNULL(, 0)) * 100.0 / NULLIF(SUM(ISNULL(, 0)), 0)
, 1) AS DECIMAL(5,1)) AS
FROM View_生产订单_MES
WHERE = t.
AND = (SELECT MAX() FROM View_生产订单_MES WHERE = t.)
GROUP BY
) lp
ORDER BY t. DESC
END
GO
ALTER PROCEDURE [dbo].[_中间主体订单详情_表格_查询]
@ NVARCHAR(50) = NULL
AS
BEGIN
SET NOCOUNT ON;
SELECT
AS ,
AS ,
AS ,
AS ,
ISNULL(, 0) AS ,
0 AS ,
0 AS ,
0 AS ,
0 AS ,
0 AS ,
0 AS ,
0 AS ,
0 AS ,
AS ,
FROM View_生产订单_MES
WHERE = @
ORDER BY
END
GO
ALTER PROCEDURE [dbo].[_右上合同看板_表格_查询]
AS
BEGIN
SET NOCOUNT ON;
-- 合同看板数据暂无,返回空结果集保持前端一致
SELECT TOP 0
'' AS ,
'' AS ,
'' AS ,
'' AS ,
'' AS ,
'' AS ,
'' AS ,
'' AS ,
'' AS ,
'' AS
END
GO
ALTER PROCEDURE [dbo].[_右下质量看板_表格_查询]
AS
BEGIN
SET NOCOUNT ON;
-- 质量看板数据暂无,返回空结果集保持前端一致
SELECT TOP 0
'' AS ,
'' AS ,
'' AS ,
'' AS ,
'' AS ,
'' AS
END
GO
ALTER PROCEDURE [dbo].[_右下质量看板_饼图_查询]
AS
BEGIN
SET NOCOUNT ON;
-- 质量饼图数据暂无,返回默认值保持前端一致
SELECT '' AS , 0 AS
END
GO
ALTER PROCEDURE [dbo].[_中间实时OEE数据展示_查询]
AS
BEGIN
SET NOCOUNT ON;
CREATE TABLE #t (
NVARCHAR(50),
OEE NVARCHAR(50),
NVARCHAR(50),
NVARCHAR(50),
NVARCHAR(50),
NVARCHAR(50),
NVARCHAR(50)
)
INSERT INTO #t
VALUES ('加工中心1', '85.6', '88.2', '78.9', '98.3', '正常', '45'),
('加工中心2', '82.6', '82.2', '83.9', '93.3', '正常', '63')
SELECT * FROM #t
DROP TABLE #t
END
GO

28
board_view/src/App.vue Normal file
View File

@@ -0,0 +1,28 @@
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
export default {
name: 'App',
data () {
return {
msg: 'App'
}
}
}
</script>
<style>
#app {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
box-sizing: border-box;
}
</style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 803 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 800 KiB

Binary file not shown.

View File

@@ -0,0 +1,4 @@
@font-face{
font-family:electronicFont;
src:url(./DS-DIGIT.TTF)
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1006 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660038930295" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="33570" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M490.40135 166.069621L144.182989 826.252359c-30.71808 58.684332-24.446472 69.819636 31.742016 69.819637H847.947003c56.188488 0 62.460096-11.135304 31.67802-69.819637L533.534654 166.069621c-26.55834-50.684832-16.574964-50.684832-43.133304 0z m-113.336917-59.452285c74.491344-142.071121 195.315793-142.071121 269.807138 0l346.218361 660.118743c74.491344 142.071121 9.5994 257.263921-145.078933 257.263921H175.989001C21.310668 1024-43.581276 908.8072 30.910068 766.736079L377.064433 106.617336z" p-id="33571"></path><path d="M447.972002 384.039998m63.996 0l0 0q63.996 0 63.996 63.996l0 127.992q0 63.996-63.996 63.996001l0 0q-63.996 0-63.996-63.996001l0-127.992q0-63.996 63.996-63.996Z" p-id="33572"></path><path d="M511.968002 768.015999m-63.996 0a63.996 63.996 0 1 0 127.992 0 63.996 63.996 0 1 0-127.992 0Z" p-id="33573"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1545972017991" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1585" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M905.216 401.408 905.216 401.408c-26.624-28.672-65.536-45.056-104.448-45.056-4.096 0-8.192 0-10.24 0L790.528 180.224c0-18.432-16.384-34.816-34.816-34.816L108.544 145.408c-18.432 0-34.816 16.384-34.816 34.816l0 647.168c0 18.432 16.384 34.816 34.816 34.816l647.168 0c18.432 0 34.816-16.384 34.816-34.816l0-176.128c4.096 0 6.144 0 10.24 0 40.96 0 77.824-16.384 104.448-43.008 26.624-26.624 43.008-63.488 43.008-104.448C948.224 462.848 931.84 428.032 905.216 401.408zM448.512 188.416l286.72 0 0 182.272c-14.336 8.192-26.624 16.384-38.912 28.672-20.48 20.48-34.816 45.056-40.96 75.776L448.512 475.136 448.512 188.416zM415.744 794.624l-286.72 0 0-286.72 286.72 0L415.744 794.624zM415.744 475.136l-286.72 0 0-286.72 286.72 0L415.744 475.136zM735.232 794.624l-286.72 0 0-286.72 204.8 0c2.048 38.912 18.432 73.728 43.008 100.352 10.24 10.24 24.576 20.48 38.912 26.624L735.232 794.624zM800.768 608.256c-57.344 0-104.448-47.104-104.448-104.448 0-57.344 47.104-104.448 104.448-104.448s104.448 47.104 104.448 104.448C905.216 561.152 858.112 608.256 800.768 608.256z" p-id="1586"></path><path d="M849.92 460.8 849.92 460.8c4.096-4.096 12.288-4.096 18.432 0 4.096 4.096 4.096 12.288 0 18.432l-79.872 79.872c-4.096 6.144-12.288 6.144-18.432 0l0 0-36.864-36.864c-4.096-4.096-4.096-12.288 0-18.432 6.144-4.096 12.288-4.096 18.432 0L778.24 532.48 849.92 460.8 849.92 460.8z" p-id="1587"></path><path d="M301.056 593.92 301.056 593.92c6.144-6.144 16.384-6.144 22.528 0 6.144 6.144 6.144 16.384 0 22.528L286.72 655.36l38.912 38.912c6.144 6.144 6.144 16.384 0 22.528-6.144 6.144-16.384 6.144-22.528 0l-38.912-38.912-38.912 38.912c-6.144 6.144-16.384 6.144-22.528 0-6.144-6.144-6.144-16.384 0-22.528l38.912-38.912-38.912-38.912c-6.144-6.144-6.144-16.384 0-22.528 6.144-6.144 16.384-6.144 22.528 0l38.912 38.912L301.056 593.92 301.056 593.92z" p-id="1588"></path><path d="M245.76 253.952 245.76 253.952c0-8.192 8.192-16.384 16.384-16.384 8.192 0 16.384 8.192 16.384 16.384l0 55.296 55.296 0c8.192 0 16.384 6.144 16.384 16.384 0 8.192-8.192 16.384-16.384 16.384l-55.296 0 0 55.296c0 10.24-8.192 16.384-16.384 16.384-10.24 0-16.384-8.192-16.384-16.384l0-55.296L190.464 342.016c-10.24 0-16.384-8.192-16.384-16.384 0-10.24 8.192-16.384 16.384-16.384L245.76 309.248 245.76 253.952 245.76 253.952z" p-id="1589"></path><path d="M665.6 671.744 665.6 671.744c8.192 0 16.384 8.192 16.384 16.384 0 8.192-8.192 16.384-16.384 16.384-120.832 0-22.528 0-143.36 0-8.192 0-16.384-8.192-16.384-16.384 0-8.192 6.144-16.384 16.384-16.384C641.024 671.744 544.768 671.744 665.6 671.744L665.6 671.744z" p-id="1590"></path><path d="M665.6 606.208 665.6 606.208c8.192 0 16.384 8.192 16.384 16.384 0 8.192-8.192 16.384-16.384 16.384-120.832 0-22.528 0-143.36 0-8.192 0-16.384-8.192-16.384-16.384 0-10.24 6.144-16.384 16.384-16.384C641.024 606.208 544.768 606.208 665.6 606.208L665.6 606.208z" p-id="1591"></path><path d="M665.6 309.248 665.6 309.248c8.192 0 16.384 6.144 16.384 16.384 0 8.192-8.192 16.384-16.384 16.384-120.832 0-22.528 0-143.36 0-8.192 0-16.384-8.192-16.384-16.384 0-10.24 6.144-16.384 16.384-16.384C641.024 309.248 544.768 309.248 665.6 309.248L665.6 309.248z" p-id="1592"></path></svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1543302210318" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2855" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M851.2 953.6c-12.8 0-19.2-6.4-19.2-19.2V556.8c0-64-44.8-108.8-96-108.8h-448C236.8 448 192 492.8 192 556.8v377.6c0 12.8-6.4 19.2-19.2 19.2s-19.2-6.4-19.2-19.2V556.8c0-83.2 57.6-147.2 134.4-147.2h448c70.4 0 134.4 64 134.4 147.2v377.6c0 12.8-12.8 19.2-19.2 19.2z" fill="" p-id="2856"></path><path d="M947.2 960H76.8c-6.4 0-12.8-6.4-12.8-19.2s6.4-19.2 19.2-19.2h864c12.8 0 19.2 6.4 19.2 19.2s-12.8 19.2-19.2 19.2z" fill="" p-id="2857"></path><path d="M556.8 960h-256c-25.6 0-44.8-19.2-44.8-44.8v-236.8c0-25.6 19.2-44.8 44.8-44.8h249.6c25.6 0 44.8 19.2 44.8 44.8v236.8c6.4 25.6-19.2 44.8-38.4 44.8z m-256-288c-6.4 0-6.4 0-6.4 6.4v236.8c0 6.4 0 6.4 6.4 6.4h249.6c6.4 0 6.4 0 6.4-6.4v-236.8c0-6.4 0-6.4-6.4-6.4H300.8zM627.2 448H512c-25.6 0-44.8-19.2-44.8-44.8v-64c0-25.6 19.2-44.8 44.8-44.8h115.2c25.6 0 44.8 19.2 44.8 44.8v64c0 25.6-19.2 44.8-44.8 44.8zM512 332.8c-6.4 0-6.4 0-6.4 6.4v64c0 6.4 0 6.4 6.4 6.4h115.2c6.4 0 6.4 0 6.4-6.4v-64c0-6.4 0-6.4-6.4-6.4H512zM851.2 550.4c-12.8 0-19.2-6.4-19.2-19.2V102.4l-70.4-6.4-6.4 326.4c0 12.8-6.4 19.2-19.2 19.2s-19.2-6.4-19.2-19.2v-320c0-25.6 19.2-44.8 44.8-44.8H832c25.6 0 44.8 19.2 44.8 44.8v428.8c-6.4 6.4-19.2 19.2-25.6 19.2z" fill="" p-id="2858"></path><path d="M428.8 953.6c-12.8 0-19.2-6.4-19.2-19.2v-281.6c0-12.8 6.4-19.2 19.2-19.2s19.2 6.4 19.2 19.2v281.6c0 12.8-12.8 19.2-19.2 19.2zM582.4 556.8H275.2c-12.8 0-19.2-6.4-19.2-19.2s6.4-19.2 19.2-19.2H576c12.8 0 19.2 6.4 19.2 19.2s-6.4 19.2-12.8 19.2z" fill="" p-id="2859"></path></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1617756750848" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="15240" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><defs><style type="text/css"></style></defs><path d="M580.15 677.86c-77.21 0-149.79-30.07-204.38-84.66-54.59-54.59-84.66-127.18-84.66-204.38 0-77.21 30.07-149.79 84.66-204.38 54.59-54.59 127.18-84.66 204.38-84.66 77.21 0 149.79 30.07 204.38 84.66 54.59 54.59 84.66 127.18 84.66 204.38 0 77.21-30.07 149.79-84.66 204.38-54.59 54.59-127.18 84.66-204.38 84.66z m0-518.09c-126.29 0-229.04 102.75-229.04 229.04s102.75 229.04 229.04 229.04S809.19 515.1 809.19 388.81 706.44 159.77 580.15 159.77z" p-id="15241"></path><path d="M873.09 724.18L761.22 612.31c-11.72-11.72-11.72-30.71 0-42.43 11.72-11.72 30.71-11.72 42.43 0l111.87 111.87c11.72 11.72 11.72 30.71 0 42.43-11.72 11.72-30.72 11.72-42.43 0zM898 925.64H127.07c-16.57 0-30-13.43-30-30s13.43-30 30-30H898c16.57 0 30 13.43 30 30s-13.44 30-30 30zM227.89 539.84H127.07c-16.57 0-30-13.43-30-30s13.43-30 30-30h100.82c16.57 0 30 13.43 30 30s-13.43 30-30 30zM227.89 160.15H127.07c-16.57 0-30-13.43-30-30s13.43-30 30-30h100.82c16.57 0 30 13.43 30 30s-13.43 30-30 30z" p-id="15242"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660036615984" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10768" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M490.7 256v512c0 11.7 9.6 21.3 21.3 21.3 11.7 0 21.3-9.6 21.3-21.3V256c0-11.7-9.6-21.3-21.3-21.3-11.7 0-21.3 9.6-21.3 21.3zM362.7 362.7v298.7c0 11.7 9.6 21.3 21.3 21.3 11.7 0 21.3-9.6 21.3-21.3V362.7c0-11.7-9.6-21.3-21.3-21.3-11.7-0.1-21.3 9.5-21.3 21.3zM618.7 362.7v298.7c0 11.7 9.6 21.3 21.3 21.3s21.3-9.6 21.3-21.3V362.7c0-11.7-9.6-21.3-21.3-21.3s-21.3 9.5-21.3 21.3zM234.7 469.3v85.3c0 11.7 9.6 21.3 21.3 21.3s21.3-9.6 21.3-21.3v-85.3c0-11.7-9.6-21.3-21.3-21.3s-21.3 9.6-21.3 21.3zM768 448c-11.7 0-21.3 9.6-21.3 21.3v85.3c0 11.7 9.6 21.3 21.3 21.3s21.3-9.6 21.3-21.3v-85.3c0-11.7-9.6-21.3-21.3-21.3z" p-id="10769"></path><path d="M885.8 265.4c-3.9-5.9-10.7-9.4-17.8-9.4-17.1 0-26.8 18.9-17.4 33.2 49.2 74.6 74.5 166.3 64.7 264.4C896.4 743.2 743 896.5 553.4 915.3 297.4 940.7 84 727.6 108.6 471.8c18-186.8 166.7-339.3 353-362 110.4-13.4 213 18 293 78 3.7 2.7 8.1 4.3 12.6 4.3 20.5 0 29.5-26.3 13.1-38.6-86.4-64.8-197-99.2-315.9-86.9C255.5 88.1 87 257.3 66.3 466.3c-28 283 207.6 519 490.5 491.5 210-20.4 379.9-190 400.9-399.9 10.9-108.6-17.4-210-71.9-292.5z" p-id="10770"></path></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1752139057834" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8124" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M512.624 80c44.272 0 86.08 9.168 126.672 27.264a328.608 328.608 0 0 1 104.592 74.048 346.272 346.272 0 0 1 70.64 109.664 354.864 354.864 0 0 1 26 134V512h-110.816v-67.664c0-33.568-5.776-66.288-17.216-97.12a254.752 254.752 0 0 0-46.816-79.488c-20.064-23.008-43.392-41.072-69.312-53.68-26.896-13.12-54.608-19.76-83.952-19.76-29.36 0-57.888 6.64-84.784 19.76-25.92 12.608-49.248 30.672-69.312 53.68a254.752 254.752 0 0 0-46.816 79.488 279.36 279.36 0 0 0-17.232 97.28l0.448 406.624H576v97.44H100.336c-20.048 0-36.336-21.504-36.336-48 0-26.464 16.288-48 35.04-48h85.104l-0.672-427.36c0-46.416 8.736-91.552 26-134.224a346.272 346.272 0 0 1 70.64-109.664 328.608 328.608 0 0 1 104.592-74.048A312.112 312.112 0 0 1 512.624 80z m28.32 256v190.64L576 526.624v104.96L502.592 752V570.048H400L540.928 336z" p-id="8125"></path><path d="M891.53932 621.028475c68.346113 68.346113 56.568542 160.496269 28.182448 229.702223l66.434096 66.434097a8.32 8.32 0 0 1 0.282843 11.754943l-50.843806 50.843806a8.32 8.32 0 0 1-11.754943-0.282843l-68.968367-68.968367c-73.448596 19.821617-147.87017 19.255932-209.98243-42.856328-71.389501-71.389501-74.036908-184.458703-5.928383-252.567228 68.108525-68.108525 181.189042-65.449804 252.567228 5.928383z m-53.615665 54.905427c-38.738138-38.738138-101.065358-39.224627-139.203869-1.086116-38.127198 38.127198-37.652022 100.465731 1.086116 139.203869 38.726824 38.726824 101.054044 39.213314 139.192556 1.074803s37.652022-100.465731-1.086116-139.20387z" p-id="8126"></path></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1752139057834" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8124" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M512.624 80c44.272 0 86.08 9.168 126.672 27.264a328.608 328.608 0 0 1 104.592 74.048 346.272 346.272 0 0 1 70.64 109.664 354.864 354.864 0 0 1 26 134V512h-110.816v-67.664c0-33.568-5.776-66.288-17.216-97.12a254.752 254.752 0 0 0-46.816-79.488c-20.064-23.008-43.392-41.072-69.312-53.68-26.896-13.12-54.608-19.76-83.952-19.76-29.36 0-57.888 6.64-84.784 19.76-25.92 12.608-49.248 30.672-69.312 53.68a254.752 254.752 0 0 0-46.816 79.488 279.36 279.36 0 0 0-17.232 97.28l0.448 406.624H576v97.44H100.336c-20.048 0-36.336-21.504-36.336-48 0-26.464 16.288-48 35.04-48h85.104l-0.672-427.36c0-46.416 8.736-91.552 26-134.224a346.272 346.272 0 0 1 70.64-109.664 328.608 328.608 0 0 1 104.592-74.048A312.112 312.112 0 0 1 512.624 80z m28.32 256v190.64L576 526.624v104.96L502.592 752V570.048H400L540.928 336z" p-id="8125"></path><path d="M891.53932 621.028475c68.346113 68.346113 56.568542 160.496269 28.182448 229.702223l66.434096 66.434097a8.32 8.32 0 0 1 0.282843 11.754943l-50.843806 50.843806a8.32 8.32 0 0 1-11.754943-0.282843l-68.968367-68.968367c-73.448596 19.821617-147.87017 19.255932-209.98243-42.856328-71.389501-71.389501-74.036908-184.458703-5.928383-252.567228 68.108525-68.108525 181.189042-65.449804 252.567228 5.928383z m-53.615665 54.905427c-38.738138-38.738138-101.065358-39.224627-139.203869-1.086116-38.127198 38.127198-37.652022 100.465731 1.086116 139.203869 38.726824 38.726824 101.054044 39.213314 139.192556 1.074803s37.652022-100.465731-1.086116-139.20387z" p-id="8126"></path></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1568877932940" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1997" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M855.8 868.3H167.1l-7.5-9.5c-29.3-37.4-52.2-78.9-67.9-123.3-16.2-46-24.4-94.3-24.4-143.5 0-59.2 11.8-116.6 35.2-170.7 22.4-52.1 54.6-98.9 95.5-138.9 40.8-40 88.2-71.3 141.1-93.3 54.6-22.6 112.6-34.2 172.4-34.2 59.7 0 117.7 11.5 172.4 34.2 52.9 22 100.3 53.2 141.1 93.3 40.9 40.1 73 86.8 95.5 138.9 23.3 54 35.2 111.5 35.2 170.7 0 49.2-8.2 97.5-24.5 143.5-15.7 44.4-38.6 85.9-67.9 123.3l-7.5 9.5z m-665-51.9h641.1c48.4-65.7 73.8-143 73.8-224.4 0-212.3-176.9-385.1-394.4-385.1-217.4 0.1-394.4 172.8-394.4 385.1 0.1 81.4 25.7 158.8 73.9 224.4z m0 0" p-id="1998"></path><path d="M421 650.7c0 49.9 40.5 90.4 90.4 90.4 49.9 0 90.4-40.5 90.4-90.4s-40.5-90.4-90.4-90.4c-49.9 0-90.4 40.5-90.4 90.4z m0 0" p-id="1999"></path><path d="M518.2 643.3c-10.8 8.3-26.5 6.3-34.9-4.6L382.9 508.3c-8.3-10.8-6.3-26.5 4.6-34.9 10.8-8.3 26.5-6.3 34.9 4.6l100.5 130.5c8.2 10.7 6.1 26.4-4.7 34.8z m0 0" p-id="2000"></path><path d="M806.9 602.1c-13.7 0-24.8-11.6-24.8-25.9 0-141-121.4-255.6-270.6-255.6-149.2 0-270.6 114.6-270.6 255.6 0 14.3-11.1 25.9-24.8 25.9-13.7 0-24.8-11.6-24.8-25.9 0-41.8 8.5-82.4 25.5-120.5 16.3-36.7 39.5-69.5 69.2-97.8 60.4-57.5 140.5-89.2 225.6-89.2s165.2 31.7 225.6 89.2c29.6 28.2 52.9 61.1 69.1 97.8 16.9 38.2 25.5 78.7 25.5 120.5-0.1 14.2-11.2 25.9-24.9 25.9z m0 0" p-id="2001"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><defs><style/></defs><path d="M794.796 352.927c-8.837 6.628-11.047 22.094-4.418 30.931l68.49 95.002c6.627 8.837 22.093 11.047 30.93 4.419s11.047-22.094 4.419-30.931l-68.49-95.002c-4.419-6.628-19.884-11.047-30.93-4.419zM467.813 461.185c46.396-55.234 48.606-139.189 0-198.841-55.234-66.28-152.445-75.118-218.725-19.884s-75.118 152.445-19.884 218.725c48.605 57.443 130.351 72.908 194.422 35.35l66.28 83.955c8.838 11.046 26.513 13.256 39.769 4.418 11.046-8.837 13.256-26.512 4.418-39.768l-66.28-83.955zm-48.606-15.465c-46.396 39.768-117.095 33.14-154.654-15.466-39.768-46.396-33.14-117.095 15.466-154.654 46.396-39.768 117.095-33.14 154.654 15.465 37.559 46.397 30.93 117.096-15.466 154.655z"/><path d="M856.658 262.344H668.864v-81.746c0-24.303-19.885-44.187-44.187-44.187H70.13c-24.303 0-44.187 19.884-44.187 44.187v530.243c0 48.606 39.768 88.374 88.374 88.374h66.28c11.047 50.815 55.234 88.374 108.258 88.374s97.211-37.56 108.258-88.374h231.981c11.047 50.815 55.234 88.374 108.258 88.374s97.211-37.56 108.258-88.374h66.28c48.606 0 88.374-39.768 88.374-88.374V467.813c0-8.837 0-13.256-4.418-19.884L872.123 271.181c-6.628-8.837-15.465-8.837-15.465-8.837zM291.065 843.402c-37.558 0-66.28-28.722-66.28-66.28s28.722-66.28 66.28-66.28 66.28 28.72 66.28 66.28-33.14 66.28-66.28 66.28zm448.498 0c-37.56 0-66.28-28.722-66.28-66.28s28.72-66.28 66.28-66.28 66.28 28.72 66.28 66.28-30.93 66.28-66.28 66.28zm214.306-154.654c0 35.35-24.303 66.28-61.862 66.28H847.82c-11.046-50.815-55.233-88.374-108.257-88.374s-97.212 37.559-108.258 88.374H399.323c-11.046-50.815-55.233-88.374-108.258-88.374s-97.21 37.559-108.257 88.374H138.62c-37.56 0-66.28-30.93-66.28-66.28v-97.212h291.633c11.047 0 22.093-11.046 22.093-22.093s-11.046-22.093-22.093-22.093H114.318c-24.303 0-44.187-19.885-44.187-44.187V224.785c0-24.303 19.884-44.187 44.187-44.187h468.381c24.303 0 44.187 19.884 44.187 44.187v344.658c0 11.047 11.047 22.093 22.093 22.093s22.094-11.046 22.094-22.093V306.531h172.329l110.467 161.282v220.935z"/></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1617756080662" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8203" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><defs><style type="text/css"></style></defs><path d="M512 0C229.376 0 0 229.376 0 512s229.376 512 512 512 512-229.376 512-512S794.624 0 512 0z m0 969.728c-253.44 0-459.264-205.312-459.264-459.264S258.56 51.712 512 51.712s459.264 205.312 459.264 459.264-205.824 458.752-459.264 458.752z" p-id="8204"></path><path d="M776.704 487.424L409.088 275.456c-5.632-3.584-12.288-5.12-18.944-5.12-20.48 0-37.376 16.896-37.376 37.376v423.936c0 20.48 16.384 37.376 36.864 37.888h0.512c6.656 0 13.312-1.536 18.944-5.12l367.616-211.968c17.92-10.752 24.064-33.792 13.312-51.712-2.56-5.632-7.68-10.24-13.312-13.312z m-369.152 217.088v-368.64l319.488 184.32-319.488 184.32z" p-id="8205"></path></svg>

After

Width:  |  Height:  |  Size: 1003 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1540799113925" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3559" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M524.491 200.893l238.996 195.911a30.001 30.001 0 0 0 42.22-4.183l37.548-45.805c18.627-22.723 27.29-51.34 24.394-80.58-2.896-29.239-17.006-55.6-39.729-74.227L712.663 97.531C693.05 81.454 668.301 72.6 642.975 72.6c-33.116 0-64.14 14.677-85.117 40.267l-37.549 45.806a30 30 0 0 0 4.182 42.22z m79.769-49.988c9.536-11.633 23.646-18.305 38.715-18.305 11.661 0 22.606 3.919 31.651 11.333l115.256 94.479c10.329 8.467 16.742 20.449 18.06 33.74 1.316 13.29-2.622 26.297-11.089 36.626l-18.529 22.605-192.595-157.874 18.531-22.604zM877.574 891.14l-549.246-0.146 77.196-19.465a30.003 30.003 0 0 0 15.866-10.071l316.484-386.085a30.002 30.002 0 0 0-4.183-42.22L494.696 237.242a30.004 30.004 0 0 0-42.22 4.182L135.992 627.51a29.996 29.996 0 0 0-6.762 17.533L116.373 904.46a29.98 29.98 0 0 0 0.916 8.96 29.997 29.997 0 0 0-0.952 7.517c-0.004 16.568 13.423 30.004 29.992 30.008l731.23 0.194h0.008c16.564 0 29.995-13.427 30-29.992 0.004-16.568-13.424-30.002-29.993-30.007zM188.667 657.896L479.86 302.663l192.593 157.874L381.26 815.769l-202.954 51.177 10.361-209.05z" fill="" p-id="3560"></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1539849578742" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2054" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M332.8 537.6h-51.2c-12.8 0-25.6 12.8-25.6 25.6s12.8 25.6 25.6 25.6h51.2c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6zM332.8 384h-51.2c-12.8 0-25.6 12.8-25.6 25.6s12.8 25.6 25.6 25.6h51.2c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6zM742.4 537.6h-307.2c-12.8 0-25.6 12.8-25.6 25.6s12.8 25.6 25.6 25.6h307.2c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6zM332.8 691.2h-51.2c-12.8 0-25.6 12.8-25.6 25.6s12.8 25.6 25.6 25.6h51.2c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6zM742.4 691.2h-307.2c-12.8 0-25.6 12.8-25.6 25.6s12.8 25.6 25.6 25.6h307.2c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6zM742.4 384h-307.2c-12.8 0-25.6 12.8-25.6 25.6s12.8 25.6 25.6 25.6h307.2c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6z" p-id="2055" fill="#ffffff"></path><path d="M896 153.6h-128v-76.8c0-12.8-12.8-25.6-25.6-25.6s-25.6 12.8-25.6 25.6v76.8h-409.6v-76.8c0-12.8-12.8-25.6-25.6-25.6s-25.6 12.8-25.6 25.6v76.8h-128c-15.36 0-25.6 10.24-25.6 25.6v768c0 15.36 10.24 25.6 25.6 25.6h768c15.36 0 25.6-10.24 25.6-25.6v-768c0-15.36-10.24-25.6-25.6-25.6z m-25.6 768h-716.8v-716.8h102.4v25.6c0 12.8 12.8 25.6 25.6 25.6s25.6-12.8 25.6-25.6v-25.6h409.6v25.6c0 12.8 12.8 25.6 25.6 25.6s25.6-12.8 25.6-25.6v-25.6h102.4v716.8z" p-id="2056" fill="#ffffff"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1540798883601" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3131" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M975.744 354.048a1.984 1.984 0 0 1-0.256-0.384l-237.184-271.36a58.24 58.24 0 0 0-44.608-21.824h-0.32a58.88 58.88 0 0 0-44.864 21.696 67.584 67.584 0 0 0-16.128 44.8v114.496H541.568c-16.64 0-30.016 13.44-30.016 30.144 0 16.64 13.376 30.144 30.016 30.144h120.96a30.08 30.08 0 0 0 30.08-30.144v-144.64c0-2.048 0.512-3.712 0.896-4.544l236.48 270.656c2.368 3.008 2.368 9.024 0 11.904l-236.288 270.784a9.728 9.728 0 0 1-1.088-4.736V513.92a30.08 30.08 0 0 0-30.08-30.208H390.592V356.864c0-36.608-27.392-66.304-60.928-66.304-17.28 0-33.6 7.68-44.928 21.12L48.512 583.488l-0.256 0.256a71.104 71.104 0 0 0 0.448 90.368l236.096 267.648a58.24 58.24 0 0 0 44.544 21.76h0.256c17.024 0 33.28-7.872 44.992-21.632 10.432-11.904 16-27.776 16-44.736V784h92.736a30.08 30.08 0 0 0 0-60.288H360.512c-16.64 0-30.08 13.376-30.08 30.144v143.36a11.52 11.52 0 0 1-0.832 4.48L94.08 634.56c-2.24-2.88-2.24-8.896 0-11.904l235.328-270.592a11.008 11.008 0 0 1 1.024 4.864v157.056c0 16.704 13.44 30.144 30.08 30.144h272v126.848c0 36.48 27.392 66.368 60.864 66.368a57.92 57.92 0 0 0 44.8-21.12l237.248-271.744 0.256-0.448a71.232 71.232 0 0 0 0.064-89.984z" fill="" p-id="3132"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1540798965773" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3335" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M 929.1 736.8 c 0 -17.4 -14.1 -31.6 -31.6 -31.6 H 163.1 V 128.4 c 0 -17.4 -14.1 -31.6 -31.6 -31.6 h -1.9 C 112.2 96.9 98 111 98 128.4 v 639.9 h 799.5 c 17.5 0.1 31.6 -14.1 31.6 -31.5 Z M 929.3 825.5 h -64 V 866 l -63.5 -0.1 v -40.4 h -64 v 40.4 l -63.7 -0.1 V 826 h -64 v 39.8 h -64.3 v -39.3 h -64 v 39.2 h -63.7 v -39.2 h -64 v 39.1 h -63.8 v -40.1 h -64 v 40.1 h -64 V 826 H 98 v 100.8 h 831.1 v -37.3 h 0.2 Z" p-id="3336"></path><path d="M 414.4 631.7 c 3.9 3.6 8.9 5.5 14.1 5.5 c 0.8 0 1.6 0 2.4 -0.1 h 0.4 l 145.1 -22.7 l 330.1 -347.5 c 10.6 -10.7 16.5 -25.5 16.1 -40.5 c -0.3 -15.1 -6.8 -29.6 -17.9 -39.9 l -74.6 -71.9 c -10.1 -9.4 -22.1 -14.3 -34.7 -14.3 c -14.8 0 -29.4 7 -41.1 19.7 L 422.4 469 l -14.7 145.3 l -0.1 0.7 v 0.4 c -0.2 6.1 2.2 12 6.8 16.3 Z M 795 158.6 h 0.3 l 71.2 68.8 v 0.3 l -14.1 15.2 l -71.4 -69.1 l 14 -15.2 Z M 476.5 493.2 L 742.7 215 l 71.5 69.2 l -266.1 278.1 l -82.9 13.6 l 11.3 -82.7 Z" p-id="3337"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1756469455765" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4526" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><path d="M903 929.5H132.5c-20.1 0-36.5-16.4-36.5-36.6V119.5c0-13.8 11.2-25 25-25s25 11.2 25 25v760h757c13.8 0 25 11.2 25 25s-11.2 25-25 25z" p-id="4527"></path><path d="M241 536.7h50V796h-50zM417.7 458.5h50V796h-50zM594.3 536.7h50V796h-50zM771 411h50v385h-50zM246.9 467.2L217 426.8l218.9-156.9 185.8 114.3 182.8-150.4 32.5 38.4-211 173.6-187.9-115.7z" p-id="4528"></path><path d="M715.2 184.2l194.6-3.9-43.9 187" p-id="4529"></path></svg>

After

Width:  |  Height:  |  Size: 760 B

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660037232001" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="17514" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M874.0864 994.2016c-24.7808 0-48.8448-10.0352-66.048-27.5456L593.2032 751.7184c-40.96 2.8672-81.5104-12.0832-110.4896-41.3696-31.6416-31.6416-46.3872-75.3664-40.3456-119.9104a41.84064 41.84064 0 0 1 27.648-33.792c14.7456-5.2224 31.6416-1.4336 42.9056 9.6256l25.7024 25.7024c7.2704 7.2704 19.456 7.3728 26.7264 0.3072 3.4816-3.2768 5.3248-7.9872 5.4272-13.312 0.1024-5.4272-2.2528-11.0592-6.144-15.0528l-24.4736-24.4736a41.472 41.472 0 0 1-9.728-43.2128c5.12-14.9504 18.2272-25.6 34.0992-27.5456 44.2368-6.144 87.9616 8.6016 119.6032 40.5504 29.184 29.184 44.1344 69.632 41.2672 110.3872l214.9376 215.1424c17.6128 17.6128 27.3408 40.96 27.3408 65.8432 0 25.1904-9.8304 48.64-27.5456 66.048a92.1088 92.1088 0 0 1-66.048 27.5456zM611.328 697.4464l233.1648 233.1648c7.8848 8.0896 18.3296 12.3904 29.5936 12.3904 11.3664 0 21.9136-4.4032 29.7984-12.4928a41.3696 41.3696 0 0 0 12.5952-29.7984c0-11.264-4.3008-21.504-12.3904-29.5936L671.0272 637.7472l2.2528-13.0048c4.9152-28.8768-4.608-58.4704-25.3952-79.2576a90.15296 90.15296 0 0 0-55.808-26.4192l8.8064 8.8064a72.31488 72.31488 0 0 1 21.0944 52.0192c-0.3072 19.2512-7.8848 36.864-21.2992 49.5616-27.2384 26.2144-71.3728 25.8048-98.304-1.1264l-9.728-9.728a90.3168 90.3168 0 0 0 26.3168 55.7056 90.95168 90.95168 0 0 0 79.36 25.3952l13.0048-2.2528z m-40.0384-177.9712h-0.2048c0.1024 0.1024 0.2048 0.1024 0.2048 0z" p-id="17515"></path><path d="M691.3024 956.2112H180.5312c-47.3088 0-85.9136-38.5024-85.9136-85.9136v-748.544c0-47.3088 38.5024-85.9136 85.9136-85.9136h662.528c47.3088 0 85.8112 38.5024 85.8112 85.9136V717.824a25.6 25.6 0 0 1-51.2 0V121.7536a34.7136 34.7136 0 0 0-34.6112-34.7136h-662.528c-19.1488 0-34.7136 15.5648-34.7136 34.7136V870.4c0 19.1488 15.5648 34.7136 34.7136 34.7136h510.8736c14.1312 0 25.6 11.4688 25.6 25.6s-11.5712 25.4976-25.7024 25.4976zM382.1568 733.184H262.8608a25.6 25.6 0 0 1 0-51.2h119.3984c14.1312 0 25.6 11.4688 25.6 25.6s-11.4688 25.6-25.7024 25.6z m0-171.4176H262.8608a25.6 25.6 0 0 1 0-51.2h119.3984c14.1312 0 25.6 11.4688 25.6 25.6s-11.4688 25.6-25.7024 25.6z m378.4704-145.1008H262.8608a25.6 25.6 0 0 1 0-51.2h497.8688c14.1312 0 25.6 11.4688 25.6 25.6s-11.5712 25.6-25.7024 25.6z m0.8192-135.3728H263.5776a25.6 25.6 0 0 1 0-51.2h497.8688a25.6 25.6 0 0 1 0 51.2z" p-id="17516"></path></svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1525413963024" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5625" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M761.12 143.606h-61.134V89.18c0.051-6.693-2.574-13.125-7.282-17.858s-11.109-7.367-17.77-7.312a24.782 24.782 0 0 0-17.757 7.316 25.038 25.038 0 0 0-7.278 17.854v54.426H372.178V89.18a25.046 25.046 0 0 0-7.278-17.854 24.782 24.782 0 0 0-17.757-7.316 24.802 24.802 0 0 0-17.761 7.316 25.076 25.076 0 0 0-7.278 17.854v54.426h-60.555c-76.274 0-138.581 53.336-138.581 118.203v576.525c0 64.968 62.294 118.198 138.581 118.198H761.12c76.271 0 138.577-53.259 138.577-118.198V261.839c-0.589-64.968-62.29-118.202-138.577-118.202v-0.031z m88.502 694.789c0 37.478-40.15 68.467-89.077 68.467H261.52c-48.915 0-89.077-30.427-89.077-68.467V261.839c0-37.479 40.15-68.472 89.077-68.472h61.13v54.431c0 13.9 11.21 25.166 25.039 25.166 13.828 0 25.035-11.266 25.035-25.166v-54.443h278.352v54.443c0 13.9 11.207 25.166 25.035 25.166s25.04-11.266 25.04-25.166v-54.443h61.129c48.911 0 89.078 30.426 89.078 68.467v576.513l-1.736 0.06zM382.145 433.96a25.039 25.039 0 0 1-7.279 17.854 24.78 24.78 0 0 1-17.756 7.317h-79.845c-13.827 0-25.039-11.271-25.039-25.171 0-13.898 11.212-25.165 25.039-25.165h80.301a24.685 24.685 0 0 1 17.415 7.49 24.936 24.936 0 0 1 7.037 17.674h0.127z m387.778 0a25.042 25.042 0 0 1-7.278 17.854 24.783 24.783 0 0 1-17.757 7.317H440.883c-13.829 0-25.04-11.271-25.04-25.171 0-13.898 11.211-25.165 25.04-25.165h303.933a24.762 24.762 0 0 1 17.757 7.316 25.02 25.02 0 0 1 7.278 17.848h0.072z m-387.85 160.895a25.047 25.047 0 0 1-7.278 17.854 24.762 24.762 0 0 1-17.757 7.317h-79.772c-13.827 0-25.039-11.271-25.039-25.171 0-13.896 11.212-25.165 25.039-25.165h80.301c13.495 0.562 24.21 11.597 24.452 25.165h0.054z m387.778 0a25.043 25.043 0 0 1-7.278 17.854 24.759 24.759 0 0 1-17.757 7.317H440.883c-13.829 0-25.04-11.271-25.04-25.171 0-13.896 11.211-25.165 25.04-25.165h303.933c13.98 0.575 25.035 11.705 25.035 25.165zM382.073 756.402a25.047 25.047 0 0 1-7.278 17.854 24.797 24.797 0 0 1-17.757 7.315h-79.772c-13.827 0-25.039-11.27-25.039-25.169 0-13.901 11.212-25.168 25.039-25.168h80.301a24.686 24.686 0 0 1 17.415 7.491 24.938 24.938 0 0 1 7.037 17.677h0.054z m387.778 0a25.043 25.043 0 0 1-7.278 17.854 24.794 24.794 0 0 1-17.757 7.315H440.883c-13.829 0-25.04-11.27-25.04-25.169 0-13.901 11.211-25.168 25.04-25.168h303.933a24.766 24.766 0 0 1 17.757 7.316 25.04 25.04 0 0 1 7.278 17.852z m0 0" p-id="5626"></path></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1617756167962" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="8992" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><defs><style type="text/css"></style></defs><path d="M794.624 62.805c45.243 0 81.92 36.677 81.92 81.92V854.7c0 45.243-36.677 81.92-81.92 81.92h-529.75c-45.243 0-81.92-36.677-81.92-81.92V144.725c0-45.243 36.677-81.92 81.92-81.92h529.75z m0 81.92h-529.75V854.7h529.75V144.725zM520.192 404.14c100.289 0 181.59 81.911 181.59 182.954 0 39.282-12.288 75.671-33.201 105.481l25.704 25.705c15.996 15.996 15.996 41.93 0 57.926-15.996 15.996-41.93 15.996-57.926 0l-28.727-28.726c-25.938 14.385-55.74 22.569-87.44 22.569-100.289 0-181.59-81.912-181.59-182.955s81.301-182.954 181.59-182.954z m0 81.92c-54.908 0-99.67 45.098-99.67 101.034 0 55.937 44.762 101.035 99.67 101.035s99.67-45.098 99.67-101.035c0-55.936-44.762-101.034-99.67-101.034z m146.09-243.03c22.622 0 40.96 18.339 40.96 40.96 0 22.622-18.338 40.96-40.96 40.96h-286.72c-22.62 0-40.96-18.338-40.96-40.96 0-22.621 18.34-40.96 40.96-40.96h286.72z" p-id="8993"></path></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1553736654324" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1686" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M1020.221442 259.023358l0.057305-0.01535L512.668731 6.224772 5.978666 258.526031l-0.948605 0 0 505.962493 507.639692 252.7904 507.610016-252.7904L1020.27977 259.023358 1020.221442 259.023358zM512.668731 67.442018l381.63693 190.562127L749.096465 330.981227l-383.65796-190.004425L512.668731 67.442018zM298.950208 176.850847l388.576993 186.487322-174.857447 84.181261-381.642047-188.511421L298.950208 176.850847zM68.45458 322.952366l20.269649-0.025583-20.269649-0.696872 0-31.654954L480.873584 495.91772l0 442.368106L68.45458 732.932832 68.45458 322.952366zM956.881858 353.789699l0 379.144156L544.462854 938.285826 544.462854 495.91772l412.417981-205.343785L956.880835 353.789699z" p-id="1687"></path></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1553831911600" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1975" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M510.759 0C228.679 0 0 228.677 0 510.748c0 117.224 39.911 224.892 106.318 311.091l38.377-39.956C95.222 715.203 63.249 634.79 56.233 547.225l220.465 0c16.665 107.625 105.717 190.467 215.8 198.984l0 219.895c-83.913-3.356-161.914-29.321-228.223-72.049l-34.636 42.919c80.66 53.305 177.202 84.525 281.12 84.525 282.078 0 510.748-228.672 510.748-510.752C1021.507 228.677 792.836 0 510.759 0zM492.498 691.544c-79.903-8.023-144.782-66.934-160.493-144.319l160.493 0L492.498 691.544zM492.498 492.502l-162.33 0c8.664-85.968 76.465-153.749 162.33-162.437L492.498 492.502zM492.498 274.489c-116.356 8.884-209.087 101.64-217.971 218.013L55.647 492.502C65.055 255.277 255.29 65.046 492.498 55.623L492.498 274.489zM547.221 56.52C775.889 74.679 956.69 261.363 965.857 492.502L746.951 492.502c-8.415-110.212-92.072-199.151-199.73-215.836L547.221 56.52zM547.221 332.187c77.128 15.798 136.044 80.477 144.089 160.315L547.221 492.502 547.221 332.187zM547.221 547.225l142.252 0c-14.502 71.43-70.847 127.4-142.252 141.949L547.221 547.225zM547.221 965.024 547.221 744.544c101.593-15.785 181.821-95.668 197.559-197.318l220.158 0C947.26 769.922 769.872 947.353 547.221 965.024z" p-id="1976"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660282756858" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1836" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M163.2656 477.792h277.44v64h-277.44zM1022.9456 984.32a30.24 30.24 0 0 0-0.704-5.056l-99.232-284.8 22.944-63.04h7.04a32 32 0 0 0 0-64h-286.08a32 32 0 0 0 0 64h6.56l23.136 63.52-98.88 283.968a85.12 85.12 0 0 1-1.856 10.624c0 0.448 0.224 0.832 0.224 1.28a31.008 31.008 0 0 0 0.96 4.608 31.808 31.808 0 0 0 1.984 7.584c0.416 0.896 1.152 1.6 1.664 2.432a31.648 31.648 0 0 0 5.536 7.424c0.64 0.608 1.536 0.96 2.24 1.504a31.424 31.424 0 0 0 8.384 4.96c0.224 0.096 0.32 0.256 0.544 0.32a184.864 184.864 0 0 1 10.464 1.92h362.56c0.544 0 1.056 0.224 1.6 0.224a31.872 31.872 0 0 0 10.56-1.792c0.544-0.192 0.928-0.64 1.472-0.896 0.832-0.32 1.44-0.928 2.24-1.312a31.616 31.616 0 0 0 8.096-5.44c0.512-0.544 0.832-1.216 1.312-1.792a31.744 31.744 0 0 0 5.44-8.096 32.864 32.864 0 0 0 0.96-3.552 31.296 31.296 0 0 0 1.696-8.352c0-0.352 0.192-0.64 0.192-1.024a30.176 30.176 0 0 0-1.056-5.216z m-349.984-26.784l87.712-251.968a59748.224 59748.224 0 0 1 1.536-11.008 31427.936 31427.936 0 0 0-1.696-11.2l-18.944-51.968h136.288l-18.912 51.968a30.08 30.08 0 0 0-0.576 3.744 24.288 24.288 0 0 0-0.128 13.696 29.984 29.984 0 0 0 0.544 3.872l88.128 252.896zM163.2656 318.624h408.512v64H163.2656z" p-id="1837"></path><path d="M64.0016 125.792h136v41.92a26.464 26.464 0 0 0 26.464 26.496h427.072a26.464 26.464 0 0 0 26.464-26.496v-41.92h136v338.08h64V100.672a38.592 38.592 0 0 0-38.24-38.88H680.0016V28.672a26.464 26.464 0 0 0-26.464-26.464H226.4656a26.464 26.464 0 0 0-26.464 26.432v33.152H38.2416A38.592 38.592 0 0 0 0.0016 100.672v882.24a38.592 38.592 0 0 0 38.24 38.88H486.7216v-64H64.0016zM264.0016 66.24h352v64h-352z" p-id="1838"></path></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660698025637" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2094" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M973.236849 450.006064c-9.705036 0-17.573237 7.868201-17.573237 17.573237l0 521.275247L35.270295 988.854549 35.270295 68.459185l564.896744 0c9.705036 0 17.573237-7.868201 17.573237-17.573237 0-9.705036-7.868201-17.573237-17.573237-17.573237L17.697057 33.31271 0.12382 33.31271l0 17.573237 0 955.540815 0 17.573237 17.573237 0L973.236849 1024l17.573237 0 0-17.573237L990.810087 467.579301C990.810087 457.873242 982.942909 450.006064 973.236849 450.006064z" p-id="2095"></path><path d="M1016.510422 126.234029 872.256994 10.860349c-7.573489-6.056949-18.622126-4.834098-24.688285 2.733251L634.57571 279.317567c-1.670036 2.083451-2.842745 4.519943-3.430122 7.124258l-38.934754 172.627662c-2.920516 12.94994 9.021467 24.338315 21.818935 20.805862l177.323615-48.947805c3.572362-0.986467 6.742565-3.077082 9.055237-5.973038l218.857567-274.031167C1025.319042 143.344732 1024.085958 132.293025 1016.510422 126.234029zM776.504186 398.566508l-143.555533 39.626509 31.589462-140.058896L864.013239 49.272193l116.829845 93.440136L776.504186 398.566508z" p-id="2096"></path><path d="M416.399665 675.296133l-11.400654-10.006911-11.564383 9.816576L197.432605 841.483106c-7.399527 6.281053-8.306176 17.370623-2.025123 24.769127 6.281053 7.399527 17.370623 8.305153 24.769127 2.025123l184.437639-156.560732 196.315154 172.312484 12.374842 10.862395 11.643178-11.643178 169.606863-169.606863 26.316366-26.316366-37.042661-3.599991-136.867204-13.301957c-9.660011-0.938372-18.251689 6.130627-19.190061 15.790638-0.938372 9.660011 6.130627 18.251689 15.790638 19.191084l99.824543 9.701966L611.738585 846.753133 416.399665 675.296133z" p-id="2097"></path><path d="M176.954201 418.824901l191.107549 0c9.705036 0 17.573237-7.868201 17.573237-17.573237 0-9.705036-7.868201-17.573237-17.573237-17.573237L176.954201 383.678426c-9.705036 0-17.573237 7.868201-17.573237 17.573237C159.380964 410.956699 167.248142 418.824901 176.954201 418.824901z" p-id="2098"></path><path d="M176.954201 291.419186l191.107549 0c9.705036 0 17.573237-7.868201 17.573237-17.573237 0-9.705036-7.868201-17.573237-17.573237-17.573237L176.954201 256.272711c-9.705036 0-17.573237 7.868201-17.573237 17.573237C159.380964 283.550984 167.248142 291.419186 176.954201 291.419186z" p-id="2099"></path><path d="M176.954201 546.229592l191.107549 0c9.705036 0 17.573237-7.868201 17.573237-17.573237 0-9.705036-7.868201-17.573237-17.573237-17.573237L176.954201 511.083118c-9.705036 0-17.573237 7.868201-17.573237 17.573237C159.380964 538.362414 167.248142 546.229592 176.954201 546.229592z" p-id="2100"></path></svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660966027988" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3431" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M170.666667 910.222222V113.777778h682.666666v455.111111h56.888889V56.888889H113.777778v910.222222h398.222222v-56.888889z" p-id="3432"></path><path d="M227.555556 568.888889h227.555555v56.888889H227.555556v-56.888889z m0-170.666667h568.888888v56.888889H227.555556V398.222222z m0-170.666666h341.333333v56.888888H227.555556V227.555556z" p-id="3433"></path><path d="M682.666667 625.777778c62.577778 0 113.777778 51.2 113.777777 113.777778s-51.2 113.777778-113.777777 113.777777-113.777778-51.2-113.777778-113.777777 51.2-113.777778 113.777778-113.777778m0-56.888889c-96.711111 0-170.666667 73.955556-170.666667 170.666667s73.955556 170.666667 170.666667 170.666666 170.666667-73.955556 170.666666-170.666666-73.955556-170.666667-170.666666-170.666667z" p-id="3434"></path><path d="M967.111111 967.111111l-164.977778-130.844444M794.737778 800.256l211.057778 164.067556-34.872889 44.942222-211.114667-164.067556z" p-id="3435"></path></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M500 10C229.4 10 10 229.4 10 500s219.4 490 490 490 490-219.4 490-490S770.6 10 500 10zM393.9 313.3L555.7 220c12.7-7.3 29.2-2.9 36.5 9.7 7.3 12.7 2.9 29-9.8 36.5l-161.8 93.5c-12.7 7.3-29 2.9-36.3-9.8-7.4-13-3.1-29.3 9.6-36.6zm295.3 137.6l-161.8 93.3-93.3-161.8 161.8-93.3 93.3 161.8zM157.1 650.3c-11-19.2-4.5-43.7 14.7-54.7l295.6-155.2 26.7 46.3L211.8 665c-19.1 11-43.7 4.5-54.7-14.7zM785 783.7H438l-1.3-25.5 26.2-1.2s1.6-11.9 1.6-26.7c0-14.8 12-26.7 26.7-26.7h240.2c14.8 0 26.7 11.9 26.7 26.7V757l27.5-.6-.6 27.3zm-55.7-263.3l-161.9 93.3c-12.7 7.3-29.2 2.9-36.5-9.8-7.3-12.7-2.9-29.2 9.7-36.5l161.8-93.3c12.7-7.3 29.2-2.9 36.5 9.8 7.6 12.7 3.2 29-9.6 36.5z"/></svg>

After

Width:  |  Height:  |  Size: 737 B

View File

@@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><defs><style/></defs><path d="M847.5 960.3H175c-32.5 0-17.8-44.8-17.8-44.8 21.3-159.3 116.9-289.1 243.5-337.8-93.2-42.1-158.2-135.6-158.4-244.4-.3-148.4 120.6-269.6 269-269.6 148.6 0 269 120.4 269 269 0 109.1-65.1 202.8-158.4 245C748.3 626.4 844 756.2 865.3 915.5c0 0 18.8 44.8-17.8 44.8zM467.4 824.8l31.2 81.7c6.5 11.3 17 11.3 23.6 0l31.2-81.7c3.9-15.7 3.4-30 0-40.8l-31.2-129c-6.5-11.3-17.1-11.3-23.6 0l-31.2 129c-3 11.7-3.6 26.5 0 40.8zm123.4-266.9H430.5c-12.6 13.2-12.6 34.7 0 47.9l57.2 30.4c12.6 13.2 33.2 13.2 45.8 0l57.3-30.4c12.6-13.2 12.6-34.7 0-47.9z"/></svg>

After

Width:  |  Height:  |  Size: 671 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1732528274609" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10411" width="32" height="32" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M902.61843 537.9c-13.1 204.8-182.9 365.9-390.9 365.9-111.1 0-211.7-46.2-282.8-121.1l-54.3 20c81.8 94.9 202.9 154.8 337.2 154.8 243.5 0 442-196.1 445.2-438.9l-54.4 19.3zM511.81843 119.6c111.1 0 211.7 46.2 282.8 121.1l54.3-19.4C767.71843 126.5 646.61843 66.5 511.81843 66.5c-243.5 0-442 196.7-444.5 438.9L121.01843 486c13-204.1 183.5-366.4 390.8-366.4z" p-id="10412"></path><path d="M511.81843 186.4c-161.7 0-296.6 119.3-320.9 274.1l35.6-13.1c30-130.5 146.1-227.9 285.3-227.9 66.8 0 128 22.5 177.3 59.9l36.2-13.1c-57.4-49.9-131.8-79.9-213.5-79.9z m285.3 390.2C767.71843 707.1 651.01843 804.5 511.81843 804.5c-66.8 0-128-22.5-177.3-59.9l-35.6 13.1c56.8 49.3 131.1 79.9 212.9 79.9 162.3 0 296.6-118.6 320.9-274.1l-35.6 13.1z" p-id="10413"></path><path d="M137.21843 835c-20.2 0-38.4-12.7-45.1-31.6l-89.2-245c-9.1-24.8 3.8-52.4 28.7-61.5l838.8-305.3c5.2-2 10.7-2.9 16.3-2.9 20.1 0 38.2 12.7 45.1 31.6l89.1 245.2c4.5 12 4 25.1-1.6 36.7-5.3 11.5-15.2 20.5-27.2 24.7L153.51843 832.1c-5.2 2-10.7 2.9-16.3 2.9z m747.1-604.9L45.51843 535.3c-3.6 1.3-5.5 5.4-4.1 9.1l89.2 245.1c1 2.7 3.7 4.6 6.6 4.6l841.2-305.7 15.9-13.2-11.7 4.3-89.2-245.2c-1-2.7-3.7-4.6-6.6-4.6-0.9-0.1-1.7 0.1-2.5 0.4z" p-id="10414"></path><path d="M376.81843 452.2c32.2 17.2 65.6 27.9 100.2 31.7l-3.1 19.7c-11.6-1.6-23-4-34.2-7l4.7 12.8-94.6 34.8L345.01843 531c-6.7 9.9-14.1 19.5-21.9 28.5L308.01843 546.3c25.5-27.8 44.2-57.6 56.3-89.5-0.1-0.1 12.5-4.6 12.5-4.6z m86 72.2l27.5 74.6-16.5 6.1-3.6-9.7-84.1 31 3.6 9.7-16.5 6.1-27.5-74.6 117.1-43.2z m-29.2-29.7c-20.4-6.1-39.4-14.4-57.3-24.8-6.6 19.3-15.9 38.1-27.9 56.2l85.2-31.4z m-53.5 115.5l84.1-31-12.1-32.7-84.1 31 12.1 32.7z m235.1-57.9l-16.7 6.1-30.6-83c0.2 16.7-1.1 32.6-4.2 48l-14.2-15.8c6.1-20.4 8.1-41.7 6.1-64.2l-22.1 8.1-6.1-16.4L550.01843 427l-12.4-33.6 16.7-6.1 12.4 33.6 18.1-6.7 6 16.4-18.1 6.7 3 8.1c9.9 5 20.2 11 30.9 17.8 12.3-11 22.4-22.2 30.6-33.3-8.9-3.8-16.8-8.1-23.7-12.9-1.7 4.9-4.2 11.1-7.6 18.3l-15.6-9.2c8.2-15.8 12.9-35 14.3-57.7l17.7-2.2-1 13.4 48.7-18 4.9 13.1c-1 16.1-5.3 31.9-12.5 46.3 13.9 3 29.8 4.5 47.9 4.2l-1.8 19c-21.1-1-39.3-3.8-54.6-8.5-8.1 12.2-18.4 24.2-31 35.9l76.1-28 25.4 68.9-16.5 6.1-2.6-6.9-44.6 16.3 2.6 6.9-16.7 6.1-25.1-68.1-7.3 6.4-7.7-4.9-1.8 7.8c-7.8-6.5-15.1-12.3-21.7-17.3l32.2 87.4z m42-167.5l-39 14.4-0.6 2.9c8 5.9 17.3 10.7 27.9 14.4 5.9-10.9 9.8-21.5 11.7-31.7z m-2.3 127.5l44.4-16.4-11.2-30.4-44.4 16.4 11.2 30.4z" p-id="10415"></path></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1735097171563" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4416" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><path d="M597.333333 810.666667h42.666667v85.333333H85.333333v-85.333333h42.666667V170.666667a42.666667 42.666667 0 0 1 42.666667-42.666667h384a42.666667 42.666667 0 0 1 42.666666 42.666667v341.333333h85.333334a85.333333 85.333333 0 0 1 85.333333 85.333333v170.666667a42.666667 42.666667 0 1 0 85.333333 0v-298.666667h-85.333333a42.666667 42.666667 0 0 1-42.666667-42.666666V273.664l-70.698666-70.698667 60.330666-60.330666 211.2 211.2A42.538667 42.538667 0 0 1 938.666667 384v384a128 128 0 1 1-256 0v-170.666667h-85.333334v213.333334z m-384 0h298.666667V213.333333H213.333333v597.333334z m170.666667-341.333334h128l-170.666667 256v-170.666666H213.333333l170.666667-256v170.666666z" fill="#000000" p-id="4417"></path></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1730790838126" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6758" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16"><path d="M405.376 905.984H124.074667V137.258667H764.458667v214.357333c16.128 0 48.554667 3.925333 64.469333 3.925333V101.930667c0-15.573333-15.914667-31.232-31.872-31.232H85.461333C69.333333 70.698667 53.205333 86.357333 53.205333 101.930667v838.570666c0 15.829333 16.042667 31.701333 32 31.701334h356.138667c-16-19.882667-17.92-50.645333-29.909333-66.304h-6.058667v0.085333z" fill="#292D32" p-id="6759"></path><path d="M587.904 246.784H235.349333a32.725333 32.725333 0 0 0 0 65.408h352.554667a32.725333 32.725333 0 0 0 0-65.408z" fill="#292D32" p-id="6760"></path><path d="M714.24 667.306667c15.744-14.122667 29.952-29.866667 42.410667-46.933334 15.402667 17.066667 32.256 32.768 50.346666 46.933334h-92.757333z m-34.474667 56.533333a673.792 673.792 0 0 0-34.517333-50.346667v-11.264h18.090667a40.704 40.704 0 0 1-10.752 7.893334c8.661333 8.96 16.085333 19.072 22.058666 29.994666 9.045333-7.936 20.352-15.829333 29.994667-24.874666v22.016h107.989333v-23.722667c9.856 8.277333 20.48 15.658667 31.658667 22.058667a189.44 189.44 0 0 1 18.090667-33.365334 269.738667 269.738667 0 0 1-85.930667-68.992c1.792-3.754667 3.84-7.338667 6.229333-10.752l-31.701333-10.752a314.965333 314.965333 0 0 1-80.298667 90.453334v-32.768h-25.429333V572.885333h-32.810667v56.533334h-36.181333v32.810666h34.517333a304.810667 304.810667 0 0 1-37.888 97.834667c7.253333 11.093333 13.184 23.04 17.493334 35.584 9.173333-16.896 16.597333-34.688 22.058666-53.12v115.925333h32.853334v-139.690666c5.162667 9.557333 9.898667 19.370667 14.08 29.44l20.394666-24.32z m104.021334 61.098667c-3.413333-18.688-7.893333-46.933333-14.122667-70.698667l-27.136 4.522667c5.077333 23.722667 8.832 47.701333 11.306667 71.808l29.952-5.632z m-56.533334 6.186666c0-18.645333-10.752-48.64-16.981333-72.362666l-28.245333 7.936c7.168 23.637333 12.245333 47.829333 15.232 72.362666l29.994666-7.936z m84.821334-76.885333c-8.704 34.56-20.608 68.266667-35.626667 100.693333h-105.770667v31.061334H851.072v-31.104h-46.933333c14.165333-27.136 29.994667-62.762667 42.410666-94.421334l-34.474666-6.229333z" fill="#292D32" p-id="6761"></path><path d="M235.52 418.602667h200.96a32.853333 32.853333 0 0 1 0 65.706666H235.52a32.853333 32.853333 0 1 1 0-65.706666z" fill="#0077FF" p-id="6762"></path></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1730790887924" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7097" width="200" height="200" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M399.36 536.84A55 55 0 0 0 460.61 626l70.6 72.72a55 55 0 1 0 34.24-36.52l-73.3-75.51a55.29 55.29 0 0 0 0.38-19.8l69.5-69.5a55 55 0 1 0-1.67-100l-69.34-70a55 55 0 1 0-34.76 36l73.67 74.42a54.91 54.91 0 0 0 0.39 20.64l-67.93 67.93a55 55 0 0 0-63.03 10.46z" fill="#666666" p-id="7098"></path><path d="M891 164.57c-12.66-3.71-91.55-26.8-172.69-49.62C536.09 63.73 520.74 63.73 512.5 63.73h-1c-8.25 0-23.6 0-205.77 51.23-81.14 22.82-160 45.91-172.69 49.62a44.07 44.07 0 0 0-35.74 43.21v277.93c0 55.41 11.8 112.58 35.09 169.94a564.11 564.11 0 0 0 91.68 150.94C307 904.26 411.86 960.27 511.81 960.27v-64c-81.13 0-168.22-47.78-238.94-131.09C203 682.89 161.3 578.42 161.3 485.72V223.25c155.16-45.72 324.39-92.69 350.7-95.44 26.31 2.75 195.54 49.72 350.7 95.44v262.47c0 92.7-41.71 197.17-111.57 279.46-70.73 83.31-157.82 131.09-238.94 131.09v64c99.95 0 204.82-56 287.73-153.67a564.12 564.12 0 0 0 91.69-150.94c23.28-57.36 35.09-114.53 35.09-169.94V207.79a44.07 44.07 0 0 0-35.7-43.22z" fill="#666666" p-id="7099"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1730790859772" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6927" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16"><path d="M387 511.2h-1.3v1.9zM638.5 511.2h1.7l-1.7-2.5z" p-id="6928"></path><path d="M771 736.2v-5.1h-3.4zM97 937.3v-837h675.9v184.2h60V70.3c0-16.6-13.4-30-30-30H67c-16.6 0-30 13.4-30 30v897c0 16.6 13.4 30 30 30h470.1l-74-60H97z" p-id="6929"></path><path d="M867.9 383.1c-34.2-12.5-67.8-27.4-100.1-44.4l-109-57.4-114.9 60.2c-32.3 16.9-66.1 31.8-100.4 44.2l-112.9 40.9v113.1c0 72.2 17.3 144.4 49.9 208.8 32.7 64.4 80.7 120.9 139 163.5l138.3 101.2 139.5-101.6c58.4-42.5 106.5-98.9 139.3-163.3s50.1-136.5 50.1-208.7v-113l-118.8-43.5z m58.9 156.5c0 104.5-41.4 204.6-113 278.6l-66.6-47.6c6.5-5.1 12.7-10.8 18.5-17.1 29.7-32.4 44.8-76.8 44.8-131.8 0-50.9-14.7-92.8-43.7-124.7-29.1-32-68-48.2-115.6-48.2-51 0-92.1 16.6-122.1 49.2-29.9 32.6-45 76.8-45 131.6 0 50.9 14.9 92.9 44.2 124.7 29.4 31.9 68.9 48.1 117.5 48.1 19 0 36.9-2.4 53.2-7.2l63 46.8h26.6c-8.5 7.3-17.3 14.4-26.4 21L658 938.8l-103-75.3c-102.9-75.3-164.4-196.4-164.4-323.9v-71L464 442c36.8-13.3 73.1-29.3 107.7-47.5l87-45.6 81.1 42.8c34.6 18.2 70.7 34.3 107.4 47.7l79.5 29.1v71.1zM727.1 722.4c-19.5 22.4-46.9 33.7-81.4 33.7-32 0-58.3-11.8-78.1-35.2-20-23.5-30.1-55.4-30.1-94.7 0-39 10.4-70.9 30.9-94.8 20.3-23.7 47.3-35.7 80.2-35.7 33.4 0 60.1 11.4 79.2 33.8 19.3 22.6 29 55.4 29 97.4-0.1 40.8-10.1 72.9-29.7 95.5zM578.7 231.4c0-16.6-13.4-30-30-30H226.3c-16.6 0-30 13.4-30 30s13.4 30 30 30h322.4c16.5 0 30-13.4 30-30zM226.3 462H252c16.6 0 30-13.4 30-30s-13.4-30-30-30h-25.7c-16.6 0-30 13.4-30 30 0 16.5 13.4 30 30 30zM196.3 640c0 16.6 13.4 30 30 30H252c16.6 0 30-13.4 30-30s-13.4-30-30-30h-25.7c-16.6 0-30 13.4-30 30zM196.3 799.8c0 16.6 13.4 30 30 30h92.9c16.6 0 30-13.4 30-30s-13.4-30-30-30h-92.9c-16.6 0-30 13.4-30 30z" p-id="6930"></path></svg>

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1734578387065" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4314" xmlns:xlink="http://www.w3.org/1999/xlink" width="32" height="32"><path d="M929 468c-27.86 0-73.16-3.36-130.31-19.46A370.36 370.36 0 0 1 704 407.21C683 394.16 672 384 672 384s-11 10.16-32 23.21a370.37 370.37 0 0 1-94.72 41.34C488.13 464.65 442.83 468 415 468c-20 0-31-1.72-31-1.72s0.77 74.8 23 206.88C425.21 780.9 472.74 853.74 519.85 896a224.59 224.59 0 0 0 42.71 30.57c39.29 21.22 72.49 29 91.69 31.8A132.22 132.22 0 0 0 672 960c1.43 0 48-0.26 109.41-33.43C839 895.47 913.17 814.23 937 673.16c22.27-132.08 23-206.88 23-206.88S949 468 929 468z m-55.15 194.52q-0.81 4.78-1.71 9.48H672v224c-2.85-0.17-14.61-1.17-32-6.22a240.9 240.9 0 0 1-47-19.49c-13.78-7.44-40.94-25.82-68.08-65.36-25.47-37.12-43.29-81.79-53-132.89H672V462.71c9.26 5.68 19.94 11.71 32 17.7a444.17 444.17 0 0 0 77.37 29.74 583.21 583.21 0 0 0 110.25 20.27c-3.15 32.81-8.54 77.37-17.77 132.1z" p-id="4315"></path><path d="M547.36 954.73a255.87 255.87 0 0 1-48.88-34.91A312.67 312.67 0 0 1 474.73 896H128.11l-0.11-0.11V128.11l0.11-0.11h511.78l0.11 0.11v240.52c6.33-4.66 9.87-7.77 10.34-8.19l21.87-20.57 21.47 20.58c0.52 0.47 4.05 3.56 10.32 8.17V128a64.19 64.19 0 0 0-64-64H128a64.19 64.19 0 0 0-64 64v768a64.19 64.19 0 0 0 64 64h429.51q-5.01-2.51-10.15-5.27z" p-id="4316"></path><path d="M576 224H192v64h384v-64zM448 352H192v64h256v-64z" p-id="4317"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1735097181665" class="icon" viewBox="0 0 1366 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5447" xmlns:xlink="http://www.w3.org/1999/xlink" width="42.6875" height="32"><path d="M938.666667 938.666667 341.333333 938.666667C341.333333 938.666667 83.712 912.256 85.333333 682.666667 86.229333 553.130667 205.354667 437.333333 341.333333 426.666667 341.333333 249.941333 454.442667 85.333333 640 85.333333 786.474667 85.333333 884.181333 174.762667 918.997333 299.264 1130.368 290.048 1273.344 457.301333 1280 597.333333 1288.96 785.621333 1092.309333 938.666667 938.666667 938.666667L938.666667 938.666667ZM984.192 214.528C921.557333 87.594667 791.168 0 640 0 437.333333 0 271.786667 157.098667 257.408 356.053333 108.458667 398.506667 0 528.64 0 682.666667 0 864.426667 151.04 1012.522667 341.333333 1023.018667 341.333333 1023.018667 931.456 1024 938.666667 1024 1162.538667 1024 1365.333333 842.538667 1365.333333 618.666667 1365.333333 402.986667 1196.714667 227.114667 984.192 214.528L984.192 214.528ZM810.666667 469.333333 640 469.333333 706.304 291.456C715.306667 269.653333 704.938667 244.693333 683.178667 235.733333 661.376 226.730667 636.458667 237.141333 627.456 258.901333L529.792 495.530667C525.098667 506.794667 525.824 518.784 530.432 529.109333 536.618667 544.981333 551.893333 556.330667 569.984 556.330667L752 555.093333 643.498667 747.52C634.197333 769.877333 643.242667 796.245333 663.722667 806.357333 684.16 816.512 708.224 806.570667 717.482667 784.256 717.482667 784.256 853.333333 537.344 853.333333 512 853.333333 488.448 834.218667 469.333333 810.666667 469.333333L810.666667 469.333333Z" fill="#000000" p-id="5448"></path></svg>

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Svg Vector Icons : http://www.sfont.cn -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.sfont.cn </metadata>
<g><path d="M500,9.7C229.4,9.7,10,229.2,10,500c0,270.8,219.4,490.3,490,490.3c270.6,0,490-219.5,490-490.3C990,229.2,770.6,9.7,500,9.7z M499.9,925C265.3,925,75.2,734.7,75.2,500c0-234.7,190.2-425.1,424.8-425.1c234.6,0,424.8,190.3,424.8,425.1C924.7,734.7,734.5,925,499.9,925z"/><path d="M702.9,642.2L600.4,533.4c15-25.9,23.8-55.9,23.8-88c0-97.1-78.7-175.7-175.8-175.7c-97.1,0-175.8,78.7-175.8,175.7c0,97.1,78.7,175.8,175.8,175.8c36.2,0,69.9-11,97.9-29.8l100.5,106.7c15.4,15.5,40.5,15.5,56,0C718.3,682.7,718.3,657.6,702.9,642.2z M448.4,552.4c-59.1,0-107-47.9-107-107c0-59.1,47.9-107,107-107c59.1,0,107,47.9,107,107C555.5,504.5,507.6,552.4,448.4,552.4z"/></g>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1532937577028" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3113" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M947.2 102.4H76.8c-15.36 0-25.6 10.24-25.6 25.6v768c0 15.36 10.24 25.6 25.6 25.6h870.4c15.36 0 25.6-10.24 25.6-25.6V128c0-15.36-10.24-25.6-25.6-25.6z m-25.6 51.2v512H102.4V153.6h819.2zM102.4 870.4v-153.6h819.2v153.6H102.4z" p-id="3114"></path><path d="M537.6 768H179.2c-12.8 0-25.6 12.8-25.6 25.6s12.8 25.6 25.6 25.6h358.4c12.8 0 25.6-12.8 25.6-25.6s-12.8-25.6-25.6-25.6zM844.8 768h-153.6c-12.8 0-25.6 10.24-25.6 25.6 0 12.8 12.8 25.6 25.6 25.6h153.6c12.8 0 25.6-12.8 25.6-25.6 0-15.36-12.8-25.6-25.6-25.6zM179.2 460.8h102.4c10.24 0 17.92-5.12 23.04-15.36l79.36-158.72 156.16 312.32c5.12 7.68 12.8 15.36 23.04 15.36s17.92-5.12 23.04-15.36l104.96-209.92 28.16 56.32c5.12 7.68 12.8 15.36 23.04 15.36h102.4c15.36 0 25.6-10.24 25.6-25.6s-10.24-25.6-25.6-25.6h-87.04l-43.52-87.04c-7.68-17.92-38.4-17.92-46.08 0L563.2 532.48 407.04 220.16c-7.68-17.92-38.4-17.92-46.08 0L266.24 409.6H179.2c-15.36 0-25.6 10.24-25.6 25.6s10.24 25.6 25.6 25.6z" p-id="3115"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M549.9 662.2v113.4c21.3-11.5 32.8-31.1 32.8-55.8 0-24.8-10.2-42.7-32.8-57.6m-93.8-137.7c0 21.3 8.1 36.2 25.6 49v-95.1c-17.9 11.6-25.6 29.5-25.6 46.1"/><path d="M586.1 245.3c55.4-55 91.2-147.5 100.2-172.2 4.3-11.9.9-25.6-9-33.7-9.8-8.1-23.9-9.4-35-3.4-.4 0-33.2 18.3-63.5 18.3-5.1 0-6.8-.9-16.6-11.9C550.7 29.6 533.2 10 500 10s-50.7 19.6-62.2 32.4c-9.8 11.1-11.5 11.9-16.2 11.9-30.3 0-63.1-17.9-63.1-18.3-11.1-6.4-25.1-4.7-35 3.4-9.8 8.1-13.2 21.7-9 33.7 9 24.7 44.8 117.2 100.2 172.2C247.2 313.9 81 557.3 81 719.3 81 958 292.8 990 500 990s419-32 419-270.7c0-162-166.2-405.4-332.9-474M549.9 822v49.4h-68.2v-43.1c-33.3-2.6-66.5-12.8-84.8-25.2l13.2-42.6c18.8 11.9 43.9 21.3 71.6 24.3V630.7c-48.2-22.6-76.7-54.1-76.7-100.6s29.4-83.5 76.7-98.9v-50.3h68.2V424c30.7 2.1 54.1 10.2 68.2 18.3L604 483.6c-9.8-6-29-14.5-54.6-17.5v139.8c55.8 25.2 84 55.8 84 108.7.4 48.2-26.8 91.2-83.5 107.4"/></svg>

After

Width:  |  Height:  |  Size: 960 B

View File

@@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1038 1024" xmlns="http://www.w3.org/2000/svg" data-spm-anchor-id="a313x.7781069.0.i1" width="223.008" height="220"><defs><style/></defs><path d="M941.176 157.501c-26.234-26.234-69.08-26.234-95.313 0L548.981 454.383l95.313 95.313 296.882-296.882c26.234-26.234 26.234-69.08 0-95.313zM519.451 562.617c-1.846 9.756 6.724 18.324 16.611 16.611l96.631-17.797-95.313-95.313-17.929 96.5zm334.383 366.24c0 17.439-14.24 31.679-31.679 31.679H169.382c-17.439 0-31.679-14.24-31.679-31.679V137.85c0-17.439 14.24-31.679 31.679-31.679h652.773c11.04 0 20.639 5.6 26.239 14.079l34.238-34.078c-14.559-17.12-36.158-27.998-60.477-27.998H169.382c-43.838 0-79.517 35.678-79.517 79.676v791.168c0 43.838 35.678 79.676 79.676 79.676h652.773c43.838 0 79.676-35.678 79.676-79.676V328.083l-47.998 47.998v552.777zM746.638 697.506H245.059c-10.56 0-19.199 8.64-19.199 19.199v11.999c0 10.56 8.64 19.199 19.199 19.199h501.579c10.56 0 19.199-8.64 19.199-19.199v-11.999c0-10.56-8.64-19.199-19.199-19.199zm-95.996-378.704H245.059c-10.56 0-19.199 8.64-19.199 19.199V350c0 10.56 8.64 19.199 19.199 19.199h355.185l50.398-50.398zm-1.28 258.869L518.647 601.83c-13.28 2.4-24.799-9.12-22.399-22.399l1.44-8.16H245.059c-10.56 0-19.199 8.64-19.199 19.199v11.999c0 10.56 8.64 19.199 19.199 19.199h501.579c10.56 0 19.199-8.64 19.199-19.199V590.47c0-10.56-8.64-19.199-19.199-19.199H642.963l6.399 6.399zm-404.304-82.236h232.47l50.398-50.398H245.058c-10.56 0-19.199 8.64-19.199 19.199v11.999c0 10.56 8.64 19.199 19.199 19.199zm520.779-19.2v-11.199l-30.398 30.398h11.199c10.56 0 19.199-8.64 19.199-19.199z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M23.85 26.83c-3.46 2.12-7.89 6.54-10 10C10 43.18 10 47.6 10 500c0 452.4 0 456.82 3.85 463.17 2.12 3.46 6.54 7.89 10 10 6.35 3.85 10.58 3.85 362.38 3.85h356.03l6.54-4.42c13.85-9.04 13.27-4.04 12.89-137.91l-.58-119.83-26.35 28.28-26.55 28.26v151.77H63.86V76.84h644.36l.39 189.65.58 189.46 26.54-37.7 26.35-37.7V212.83c0-187.15.77-176.19-13.27-185.42l-6.54-4.42H386.23c-351.8-.01-356.03-.01-362.38 3.84z"/><path d="M154.64 210.71c-3.85 2.69-4.23 4.62-4.23 18.85 0 13.08.58 16.54 3.46 19.04 3.27 3.08 22.12 3.27 231.39 3.27 203.12 0 228.31-.39 232.16-3.08 3.85-2.5 4.23-4.62 4.23-18.27 0-25.77 29.04-22.89-235.24-22.89-202.72 0-227.92.39-231.77 3.08zm751.11 41.16c-10.58 2.69-25 10.58-32.51 17.7-4.81 4.62-245.24 345.65-254.09 360.45-2.31 3.85-34.04 150.61-34.04 157.34 0 7.69 4.04 11.54 9.81 9.81 2.31-.77 34.43-20.58 71.17-44.05l66.94-42.51 124.44-177.72c68.48-97.9 126.18-181.77 128.49-186.57 3.08-6.92 3.85-12.89 4.04-26.16 0-15.77-.58-18.66-6.16-30.01-11.54-23.27-32.89-37.7-57.7-39.24-7.12-.38-16.35 0-20.39.96zm-25.39 124.64c12.69 8.85 24.23 17.12 25.58 18.47 1.73 1.73-17.89 31.16-93.67 139.45-52.7 75.4-96.56 137.14-97.33 137.14-.77.19-13.46-8.27-28.08-18.47l-26.74-18.66 12.89-18.85c97.71-140.41 180.8-257.36 182.34-256.4.97.59 12.32 8.48 25.01 17.32zM682.63 694.27c4.23 3.27 3.85 3.46-21.93 19.81-14.43 9.23-26.54 16.35-26.93 15.96-.58-.38 5.58-29.62 11.93-56.55.96-4.23 1.73-4.04 16.93 6.54 8.65 6.16 17.69 12.51 20 14.24zM154.26 346.12c-5.39 5.39-5.58 32.31-.39 37.12 3.27 3.08 22.12 3.27 232.55 3.27 264.09 0 235.24 2.69 235.24-21.73 0-25.2 28.85-22.5-235.62-22.5-225.43 0-227.93 0-231.78 3.84zm2.88 133.11c-5.96 3.46-6.73 5.39-6.73 20.77 0 7.89.77 15.39 1.54 16.54 4.23 6.35 7.89 6.54 234.66 6.54 262.75 0 235.05 2.69 235.05-23.08s27.7-23.08-235.43-23.08c-164.27.19-226.2.77-229.09 2.31zm6.74 133.87c-11.35 1.16-13.46 4.62-13.46 21.93 0 24.81-11.35 22.7 117.33 22.7s117.33 2.12 117.33-22.7c0-23.85 10.39-21.73-110.98-22.12-56.94-.2-106.57-.2-110.22.19zm388.53 60.01c-1.54.77-13.66 23.27-26.93 49.82-13.27 26.54-24.43 48.28-25.01 48.28s-5.96-10-12.12-22.12c-8.08-16.54-12.31-22.7-15.77-24.04-9.62-3.66-13.66.19-25.39 24.04-6.15 12.12-11.54 22.12-12.12 22.12s-5.96-10-12.12-22.12c-11.73-23.85-15.77-27.7-25.39-24.04-3.46 1.35-7.69 7.5-15.77 24.04-6.15 12.12-11.54 22.12-12.12 22.12s-5.96-10-12.12-22.12c-11.73-23.85-15.77-27.7-25.39-24.04-3.46 1.35-7.69 7.5-15.77 24.04-6.15 12.12-11.54 22.12-12.12 22.12s-5.96-10-12.12-22.12c-8.27-16.93-12.12-22.7-15.96-24.04-10.96-4.23-13.08-1.35-46.36 64.44-17.12 33.85-31.16 63.86-31.35 66.74 0 10 11.54 16.35 20.77 11.35 1.73-.96 14.04-23.46 27.31-50.01 13.27-26.54 24.43-48.28 25-48.28s6.16 10.19 12.5 22.7c9.23 18.08 12.5 22.7 16.16 23.08 10.77 1.54 13.27-.77 24.62-23.66 6.15-12.12 11.54-22.12 12.12-22.12s6.16 10.19 12.5 22.7c9.23 18.08 12.5 22.7 16.16 23.08 10.77 1.54 13.27-.77 24.62-23.66 6.15-12.12 11.54-22.12 12.12-22.12s6.16 10.19 12.5 22.7l11.54 22.5h17.32l11.54-22.5c6.35-12.5 11.93-22.7 12.5-22.7s6.16 10.19 12.5 22.7l11.54 22.5h17.32l32.12-63.47c17.7-35.01 32.12-65.4 32.31-67.9.21-8.86-12.67-15.2-21.14-10.01z"/></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><defs><style/></defs><path d="M813.935 991.447H209.164c-49.6 0-89.949-36.306-89.949-80.931V113.134c0-44.625 40.349-80.931 89.949-80.931h480.553l214.196 175.942v702.371c0 44.625-40.349 80.931-89.978 80.931zM209.164 91.171c-16.815 0-31.011 10.036-31.011 21.964v797.382c0 11.898 14.197 21.964 31.011 21.964h604.771c16.815 0 31.011-10.065 31.011-21.964V246.808H679.157V99.812l-10.531-8.64H209.164zm563.811 280.087c0 9.774-7.913 17.687-17.687 17.687H495.943c-9.774 0-17.687-7.912-17.687-17.687 0-9.774 7.912-17.687 17.687-17.687h259.345c9.774 0 17.687 7.912 17.687 17.687zm-405.964 88.786h-44.305c-36.742 0-66.618-29.876-66.618-66.618v-44.305c0-36.742 29.876-66.618 66.618-66.618h44.305c36.713 0 66.589 29.876 66.589 66.618v44.305c0 36.742-29.876 66.618-66.589 66.618zm31.214-110.924c0-17.222-13.993-31.244-31.215-31.244h-44.305c-17.251 0-31.244 14.022-31.244 31.244v44.305c0 17.251 13.993 31.244 31.244 31.244h44.305c17.222 0 31.215-13.993 31.215-31.244V349.12zm-111.97 174.574h465.629c9.774 0 17.687 7.913 17.687 17.687 0 9.774-7.912 17.687-17.687 17.687H286.255c-9.774 0-17.687-7.912-17.687-17.687 0-9.774 7.912-17.687 17.687-17.687zm0 116.917h465.629c9.774 0 17.687 7.912 17.687 17.687 0 9.745-7.912 17.687-17.687 17.687H286.255c-9.774 0-17.687-7.942-17.687-17.687 0-9.774 7.912-17.687 17.687-17.687zm0 122.793H545.6c9.774 0 17.687 7.912 17.687 17.687 0 9.745-7.912 17.687-17.687 17.687H286.255c-9.774 0-17.687-7.942-17.687-17.687 0-9.774 7.912-17.687 17.687-17.687z"/></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1026 1024" xmlns="http://www.w3.org/2000/svg" width="200.391" height="200"><defs><style/></defs><path d="M992 799.232H800V991.04a32 32 0 1 1-64 0V799.232H544a32 32 0 1 1 0-63.936h192V543.488a32 32 0 0 1 64 0v191.808h192a32 32 0 1 1 0 63.936zM832 283.136C832 153.472 752.64 64 612.608 64H283.456c-140.16 0-219.52 84.288-219.52 219.136v328.832c0 129.728 86.208 219.264 219.52 219.264h116.48v63.872H256c-141.312 0-256-114.432-256-255.68V255.808A255.872 255.872 0 0 1 256 0h384c141.376 0 256 114.56 256 255.808v143.808h-64v-116.48z"/></svg>

After

Width:  |  Height:  |  Size: 567 B

View File

@@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><defs><style/></defs><path d="M692 136.1V67.9H332v68.2H117v820h378.9v-50H167v-720h165v61.8h360v-61.8h165V548h50V136.1H692zm-50 61.8H382v-80h260v80zM287 525.8h280v50H287v-50zm450-100.7H287v-50h450v50zm5 316h165v50H742v165h-50v-165H527v-50h165v-165h50v165z"/></svg>

After

Width:  |  Height:  |  Size: 365 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1553579626916" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2009" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M65.344 944.64l893.312 0 0 72.064-893.312 0 0-72.064Z" p-id="2010"></path><path d="M838.016 40 185.984 40c-70.656 0-128 57.344-128 128l0 531.968c0 70.656 57.344 128 128 128l652.032 0c70.656 0 128-57.344 128-128L966.016 168C966.016 97.344 908.672 40 838.016 40zM832 486.656l-60.032 0 0 193.344L254.976 680 256 486.656 192 486.656 192 416l325.312-275.968L832 428.032 832 486.656z" p-id="2011"></path><path d="M512 266.304 316.032 436.288 316.032 620.352 446.72 620.352 446.72 494.976 577.344 494.976 577.344 620.352 707.968 620.352 707.968 436.288Z" p-id="2012"></path></svg>

After

Width:  |  Height:  |  Size: 959 B

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1568894312656" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1948" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M853.333333 1024H170.666667c-36.266667 0-64-27.733333-64-64V192c0-36.266667 27.733333-64 64-64h177.066666c19.2 0 36.266667-12.8 40.533334-32 14.933333-55.466667 64-96 123.733333-96s108.8 40.533333 123.733333 96c4.266667 19.2 21.333333 32 40.533334 32H853.333333c36.266667 0 64 27.733333 64 64v768c0 36.266667-27.733333 64-64 64z m21.333334-832c0-12.8-8.533333-21.333333-21.333334-21.333333h-177.066666c-38.4 0-72.533333-25.6-83.2-64s-42.666667-64-83.2-64c-38.4 0-72.533333 25.6-83.2 64s-42.666667 64-83.2 64H170.666667c-12.8 0-21.333333 8.533333-21.333334 21.333333v768c0 12.8 8.533333 21.333333 21.333334 21.333333h682.666666c12.8 0 21.333333-8.533333 21.333334-21.333333V192z m-106.666667 213.333333H256c-12.8 0-21.333333-8.533333-21.333333-21.333333s8.533333-21.333333 21.333333-21.333333h512c12.8 0 21.333333 8.533333 21.333333 21.333333s-8.533333 21.333333-21.333333 21.333333zM554.666667 170.666667h-85.333334c-12.8 0-21.333333-8.533333-21.333333-21.333334s8.533333-21.333333 21.333333-21.333333h85.333334c12.8 0 21.333333 8.533333 21.333333 21.333333s-8.533333 21.333333-21.333333 21.333334zM256 554.666667h426.666667c12.8 0 21.333333 8.533333 21.333333 21.333333s-8.533333 21.333333-21.333333 21.333333H256c-12.8 0-21.333333-8.533333-21.333333-21.333333s8.533333-21.333333 21.333333-21.333333z m0 192h341.333333c12.8 0 21.333333 8.533333 21.333334 21.333333s-8.533333 21.333333-21.333334 21.333333H256c-12.8 0-21.333333-8.533333-21.333333-21.333333s8.533333-21.333333 21.333333-21.333333z" fill="#666767" p-id="1949"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1525413963024" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5625" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M761.12 143.606h-61.134V89.18c0.051-6.693-2.574-13.125-7.282-17.858s-11.109-7.367-17.77-7.312a24.782 24.782 0 0 0-17.757 7.316 25.038 25.038 0 0 0-7.278 17.854v54.426H372.178V89.18a25.046 25.046 0 0 0-7.278-17.854 24.782 24.782 0 0 0-17.757-7.316 24.802 24.802 0 0 0-17.761 7.316 25.076 25.076 0 0 0-7.278 17.854v54.426h-60.555c-76.274 0-138.581 53.336-138.581 118.203v576.525c0 64.968 62.294 118.198 138.581 118.198H761.12c76.271 0 138.577-53.259 138.577-118.198V261.839c-0.589-64.968-62.29-118.202-138.577-118.202v-0.031z m88.502 694.789c0 37.478-40.15 68.467-89.077 68.467H261.52c-48.915 0-89.077-30.427-89.077-68.467V261.839c0-37.479 40.15-68.472 89.077-68.472h61.13v54.431c0 13.9 11.21 25.166 25.039 25.166 13.828 0 25.035-11.266 25.035-25.166v-54.443h278.352v54.443c0 13.9 11.207 25.166 25.035 25.166s25.04-11.266 25.04-25.166v-54.443h61.129c48.911 0 89.078 30.426 89.078 68.467v576.513l-1.736 0.06zM382.145 433.96a25.039 25.039 0 0 1-7.279 17.854 24.78 24.78 0 0 1-17.756 7.317h-79.845c-13.827 0-25.039-11.271-25.039-25.171 0-13.898 11.212-25.165 25.039-25.165h80.301a24.685 24.685 0 0 1 17.415 7.49 24.936 24.936 0 0 1 7.037 17.674h0.127z m387.778 0a25.042 25.042 0 0 1-7.278 17.854 24.783 24.783 0 0 1-17.757 7.317H440.883c-13.829 0-25.04-11.271-25.04-25.171 0-13.898 11.211-25.165 25.04-25.165h303.933a24.762 24.762 0 0 1 17.757 7.316 25.02 25.02 0 0 1 7.278 17.848h0.072z m-387.85 160.895a25.047 25.047 0 0 1-7.278 17.854 24.762 24.762 0 0 1-17.757 7.317h-79.772c-13.827 0-25.039-11.271-25.039-25.171 0-13.896 11.212-25.165 25.039-25.165h80.301c13.495 0.562 24.21 11.597 24.452 25.165h0.054z m387.778 0a25.043 25.043 0 0 1-7.278 17.854 24.759 24.759 0 0 1-17.757 7.317H440.883c-13.829 0-25.04-11.271-25.04-25.171 0-13.896 11.211-25.165 25.04-25.165h303.933c13.98 0.575 25.035 11.705 25.035 25.165zM382.073 756.402a25.047 25.047 0 0 1-7.278 17.854 24.797 24.797 0 0 1-17.757 7.315h-79.772c-13.827 0-25.039-11.27-25.039-25.169 0-13.901 11.212-25.168 25.039-25.168h80.301a24.686 24.686 0 0 1 17.415 7.491 24.938 24.938 0 0 1 7.037 17.677h0.054z m387.778 0a25.043 25.043 0 0 1-7.278 17.854 24.794 24.794 0 0 1-17.757 7.315H440.883c-13.829 0-25.04-11.27-25.04-25.169 0-13.901 11.211-25.168 25.04-25.168h303.933a24.766 24.766 0 0 1 17.757 7.316 25.04 25.04 0 0 1 7.278 17.852z m0 0" p-id="5626"></path></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><defs><style/></defs><path d="M1008.37 984.192c.493 2.2.762 4.483.762 6.831a30.92 30.92 0 0 1-5.604 17.79c-5.512 8.668-15.196 14.425-26.23 14.425a31.1 31.1 0 0 1-8.347-1.144H55.049a31.083 31.083 0 0 1-8.348 1.144c-11.034 0-20.717-5.757-26.23-14.426a30.916 30.916 0 0 1-5.603-17.789c0-2.348.269-4.631.763-6.83v-671.77c0-17.16 13.91-31.07 31.07-31.07s31.071 13.91 31.071 31.07v647.53h868.456V62.902H328.816c-17.16 0-31.07-13.91-31.07-31.07s13.91-31.07 31.07-31.07h649.245c17.16 0 31.07 13.91 31.07 31.07 0 2.348-.268 4.632-.762 6.83v945.53zM201.077 312.554h638.19v57.948h-638.19v-57.948zm0 157.236h638.19v57.948h-638.19V469.79zm638.19 358.636h-638.19v-57.948h638.19v57.948zm-638.19-210.442h638.19v57.947h-638.19v-57.947zm65.525-444.212h-76.438v76.438c0 17.16-13.91 31.07-31.07 31.07s-31.071-13.91-31.071-31.07v-76.438H51.586c-17.16 0-31.07-13.91-31.07-31.07s13.91-31.072 31.07-31.072h76.438V35.193c0-17.16 13.91-31.071 31.07-31.071s31.071 13.91 31.071 31.07v76.438h76.438c17.16 0 31.07 13.911 31.07 31.071 0 17.16-13.91 31.071-31.07 31.071z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1529999721656" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2513" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M1008.369322 984.192477C1008.862642 986.391446 1009.131794 988.675431 1009.131794 991.023083 1009.131794 997.641722 1007.055583 1003.772378 1003.528387 1008.8127 998.015714 1017.481245 988.332319 1023.237528 977.298585 1023.237528 974.405385 1023.237528 971.607875 1022.833418 968.95066 1022.09382L55.04934 1022.09382C52.392125 1022.833418 49.594615 1023.237528 46.701415 1023.237528 35.6673 1023.237528 25.983905 1017.480864 20.471232 1008.811937 16.944036 1003.771997 14.868206 997.641722 14.868206 991.023083 14.868206 988.675431 15.136977 986.391827 15.630678 984.192858L15.630678 312.422934C15.630678 295.263118 29.541599 281.352197 46.701415 281.352197 63.86123 281.352197 77.772152 295.263118 77.772152 312.422934L77.772152 959.952345 946.227848 959.952345 946.227848 62.903946 328.816083 62.903946C311.656268 62.903946 297.745346 48.993025 297.745346 31.833209 297.745346 14.673394 311.656268 0.762472 328.816083 0.762472L978.061057 0.762472C995.220873 0.762472 1009.131794 14.673394 1009.131794 31.833209 1009.131794 34.180861 1008.862642 36.464846 1008.369322 38.663434L1008.369322 984.192477ZM201.077993 312.554079 839.267121 312.554079 839.267121 370.501957 201.077993 370.501957 201.077993 312.554079ZM201.077993 469.789927 839.267121 469.789927 839.267121 527.737805 201.077993 527.737805 201.077993 469.789927ZM839.267121 828.425912 201.077993 828.425912 201.077993 770.478034 839.267121 770.478034 839.267121 828.425912ZM201.077993 617.983619 839.267121 617.983619 839.267121 675.931497 201.077993 675.931497 201.077993 617.983619ZM266.602937 173.771961 190.165111 173.771961 190.165111 250.209787C190.165111 267.369984 176.25457 281.280524 159.094374 281.280524 141.934558 281.280524 128.023637 267.369984 128.023637 250.209787L128.023637 173.771961 51.585811 173.771961C34.425996 173.771961 20.515074 159.861421 20.515074 142.701224 20.515074 125.541409 34.425996 111.630487 51.585811 111.630487L128.023637 111.630487 128.023637 35.192661C128.023637 18.032846 141.934558 4.121924 159.094374 4.121924 176.25457 4.121924 190.165111 18.032846 190.165111 35.192661L190.165111 111.630487 266.602937 111.630487C283.763133 111.630487 297.673674 125.541409 297.673674 142.701224 297.673674 159.861421 283.763133 173.771961 266.602937 173.771961Z" p-id="2514"></path></svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1552714746003" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2671" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M704 111.04V38.29333333H320v72.74666667H90.66666667v874.66666667h404.16v-53.33333334H144v-768h176v65.92h384v-65.92h176V550.4h53.33333333V111.04H704z m-53.33333333 65.92H373.33333333v-85.33333333h277.33333334v85.33333333zM272 526.72h298.66666667v53.33333333H272v-53.33333333z m480-107.41333333H272v-53.33333334h480v53.33333334z m5.33333333 337.06666666h176v53.33333334H757.33333333v176h-53.33333333v-176H528v-53.33333334h176v-176h53.33333333v176z" p-id="2672"></path></svg>

After

Width:  |  Height:  |  Size: 858 B

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660038599444" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="31625" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M503.808 768c0-56.32 21.504-107.52 56.32-146.432H241.152c-12.288 0-22.016-9.728-22.016-22.016v-29.696c0-12.288 9.728-22.016 22.016-22.016h395.264c8.192 0 15.36 4.608 18.944 11.776 20.992-6.656 43.52-10.752 67.072-10.752 64.512 0 122.88 28.16 162.816 73.216 9.216 10.752 26.624 4.096 26.624-10.24V125.952c0-29.184-23.552-52.736-52.736-52.736h-6.144c-19.456 0-38.4 10.24-47.104 27.648-9.728 19.456-30.208 32.256-53.248 32.256-19.968 0-37.376-9.728-48.128-24.576-15.872-21.504-39.936-35.328-66.56-35.328h-3.072c-28.672 0-56.32 12.288-73.216 35.328-10.752 14.848-28.672 24.576-48.128 24.576-18.432 0-35.328-8.704-46.08-22.016-18.432-22.528-44.032-37.888-73.216-37.888s-54.784 15.36-73.216 37.888c-10.752 13.312-27.648 22.016-46.08 22.016-23.04 0-43.008-13.312-53.248-32.256-9.216-17.408-27.648-27.648-47.104-27.648h-6.656c-29.184 0-52.736 23.552-52.736 52.736v772.096c0 29.184 23.552 52.736 52.736 52.736h6.656c19.456 0 38.4-10.24 47.104-27.648 9.728-19.456 30.208-32.256 53.248-32.256 18.432 0 35.328 8.704 46.08 22.016 18.432 22.528 44.032 37.888 73.216 37.888s54.784-15.36 73.216-37.888c10.752-13.312 27.648-22.016 46.08-22.016h1.024c11.776 0 19.456-11.776 14.336-22.528-15.872-29.696-25.088-64-25.088-100.352zM219.136 387.584c0-12.288 9.728-22.016 22.016-22.016h541.696c11.776 0 22.016 9.728 22.016 22.016v29.696c0 11.776-9.728 22.016-22.016 22.016H241.152c-11.776 0-22.016-9.728-22.016-22.016v-29.696z" p-id="31626"></path><path d="M727.04 585.216c-100.864 0-182.784 81.92-182.784 182.784s81.92 182.784 182.784 182.784 182.784-81.92 182.784-182.784-81.92-182.784-182.784-182.784z m81.92 246.272l-17.92 18.432c-5.632 5.632-14.848 5.632-20.48 0l-70.656-70.144v-86.016c0-8.192 6.656-14.336 14.336-14.336h25.6c8.192 0 14.336 6.656 14.336 14.336v63.488l54.272 54.272c6.144 4.608 6.144 13.824 0.512 19.968z" p-id="31627"></path></svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><defs><style/></defs><path d="M327 564.9c-16.6 0-30 13.4-30 30s13.4 30 30 30h155V697c0 16.6 13.4 30 30 30s30-13.4 30-30v-72.1h155c16.6 0 30-13.4 30-30s-13.4-30-30-30H542v-48.7h155c16.6 0 30-13.4 30-30s-13.4-30-30-30H552.5l108-108c11.7-11.7 11.7-30.7 0-42.4s-30.7-11.7-42.4 0L512 411.9 405.9 305.8c-11.7-11.7-30.7-11.7-42.4 0s-11.7 30.7 0 42.4l108 108H327c-16.6 0-30 13.4-30 30s13.4 30 30 30h155v48.7H327zM102.3 717.6c-21 0-38.3 17.2-38.3 38.3v165.8c0 21 17.2 38.3 38.3 38.3 21 0 38.3-17.2 38.3-38.3V755.9c-.1-21.1-17.3-38.3-38.3-38.3z"/><path d="M581.6 733.4C557.1 794.9 512 844 458.2 857.9H315.7v-38.3h74.7c24.7 0 44.6-20 44.6-44.6 0-24.7-20-44.6-44.6-44.6h-52.5C315.1 711 288.6 700 260.2 700c-28.4 0-54.9 10.9-77.7 30.4h-10v216.7h285.8c93.3-7.9 167.1-106.4 167.1-227 0-5.2-.5-10.1-.8-15.2-18.9 0-36.1 11.1-43 28.5z"/><path d="M959.8 497.7C952.3 258.1 752.9 64.6 513.2 64 265.2 63.4 64 264.2 64 512v1.1c0 13 10.8 23.4 23.8 23.4h12.5c13.3 0 23.7-10.9 23.7-24.2v-.2c0-223.1 189.3-402.9 415.8-387 191.9 13.4 347 169.4 359.4 361.4 11.4 176.5-96 330-249.8 388.4-11.6 4.4-19.2 15.5-19.2 27.9 0 20.9 20.9 35.6 40.5 28.2C844 865.3 965.9 695.3 959.8 497.7z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1560912753656" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1983" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M239.158 100.98c85.459 0 154.738 69.28 154.738 154.74 0 85.457-69.277 154.737-154.738 154.737-85.46 0-154.74-69.28-154.74-154.737 0-85.46 69.28-154.74 154.74-154.74z m77.147 140.082v-59.263l-99.341 88.577-54.954-49.169v59.263l54.954 49.17 99.341-88.578zM932.298 622.77c-5.654 0.308-12.248 0.47-19.79 0.47H739.172c-4.397 0-8.793-2.2-13.19-6.595-4.397-4.402-6.596-8.166-6.596-11.309v-0.94c-0.622-30.777-0.946-58.721-0.946-83.85v-85.724c0-6.909 2.835-13.35 8.484-19.313 5.651-5.967 12.558-8.943 20.725-8.943 0.628 0 5.338-0.319 14.135-0.948 8.792-0.63 19.623-0.16 32.503 1.41 12.876 1.567 26.534 5.027 40.979 10.363 14.441 5.338 27.945 13.975 40.509 25.91 19.47 20.1 33.286 44.436 41.45 73.01 8.166 28.574 15.707 58.25 22.608 89.024 0 1.257 0.164 2.2 0.473 2.83 0.314 0.624 0.467 1.57 0.467 2.826 0.001 7.543-2.82 11.468-8.474 11.78z m73.951 11.304c-4.711-35.484-13.034-71.758-24.965-108.811-11.94-37.055-29.833-71.918-53.703-104.564-13.185-18.217-29.513-33.917-48.99-47.104a291.086 291.086 0 0 0-62.173-32.04c-21.984-8.165-44.28-13.969-66.891-17.423-22.609-3.454-44.28-4.237-65.005-2.355-6.903 0.624-12.716 5.498-17.427 14.601-4.71 9.103-7.063 17.114-7.063 24.02v454.087c0 11.309 4.08 21.041 12.246 29.204 8.167 8.162 17.892 12.244 29.202 12.244h16.96c0-15.698 2.982-30.62 8.95-44.75 5.97-14.132 14.131-26.526 24.495-37.207 10.366-10.679 22.45-19.163 36.27-25.44 13.815-6.28 28.886-9.423 45.214-9.423 16.334 0 31.874 2.2 46.637 6.597 14.76 4.396 27.64 11.303 38.62 20.723 10.995 9.423 19.789 21.668 26.384 36.742 6.59 15.075 9.886 33.292 9.886 54.642h38.63c3.766 0 6.754-1.886 8.954-5.65 2.19-3.772 4.08-8.325 5.644-13.668a95.304 95.304 0 0 0 3.3-16.012c0.63-5.34 0.942-9.896 0.942-13.662 0-19.469 0.159-44.596 0.47-75.37 0.32-30.764-1.884-63.893-6.595-99.38h0.008z m-168.163 164.39c16.326 0 30.461 5.966 42.394 17.903 11.935 11.935 17.9 26.057 17.9 42.394 0 16.953-5.967 31.399-17.9 43.327-11.933 11.938-26.062 17.904-42.394 17.904-16.952 0-31.246-5.966-42.866-17.904-11.618-11.933-17.427-26.373-17.427-43.327 0-16.335 5.81-30.46 17.427-42.394 11.62-11.937 25.907-17.902 42.866-17.902z m-648.15-0.937c-16.958 0-31.251 5.966-42.866 17.894-11.622 11.934-17.427 26.376-17.427 43.342 0 16.318 5.805 30.453 17.427 42.39 11.617 11.935 25.908 17.901 42.866 17.901s31.245-5.967 42.865-17.9c11.622-11.937 17.424-26.066 17.424-42.391 0-16.958-5.807-31.41-17.424-43.342-11.62-11.928-25.908-17.894-42.865-17.894z m240.683-590.689c4.677 16.642 7.037 33.955 7.037 51.937 0 27.427-5.217 53.075-15.657 76.927-10.435 23.852-24.597 44.722-42.482 62.61-17.89 17.885-38.752 31.905-62.61 42.038-23.856 10.134-49.192 15.202-76.03 15.202-27.43 0-53.07-5.068-76.921-15.202-23.853-10.135-44.72-24.153-62.61-42.038-17.89-17.888-32.05-38.758-42.483-62.61-10.438-23.852-15.657-49.495-15.657-76.927 0-2.997 0.078-5.971 0.201-8.932-8.977 11.017-16.044 23.056-21.165 36.131-5.656 14.442-8.48 29.204-8.48 44.278v489.882c0 11.935 3.454 21.042 10.362 27.32 6.914 6.274 15.704 9.422 26.38 9.422h21.67c0-40.194 10.21-70.186 30.618-89.967 20.405-19.785 49.772-29.682 88.081-29.682 40.2 0 69.722 10.678 88.558 32.037 18.841 21.353 28.266 50.559 28.266 87.612H564.88c10.056 0 18.681-3.454 25.908-10.366 7.221-6.905 10.835-15.695 10.835-26.374l-1.885-613.298H430.619z m0 0" fill="#ffffff" p-id="1984"></path></svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Svg Vector Icons : http://www.sfont.cn -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.sfont.cn </metadata>
<g><g transform="translate(0.000000,511.000000) scale(0.100000,-0.100000)"><path d="M2005.1,2538.4c-82.4-44.1-145.6-122.6-166.7-201.2l-19.2-82.4h-364c-358.3,0-362.1,0-408.1-47.9c-63.2-61.3-65.1-164.8-5.7-220.3c40.2-38.3,61.3-38.3,1212.8-38.3h1172.6l40.2-44.1c59.4-63.2,53.7-137.9-13.4-206.9l-55.6-55.6H1938H480l-46-47.9c-47.9-46-65.1-147.5-32.6-193.5c40.2-63.2,95.8-65.1,1343.1-65.1c1222.4,0,1247.3,0,1285.6-38.3c59.4-59.4,51.7-159-21.1-218.4l-59.4-49.8H1869H786.5l-46-47.9c-67.1-65.1-65.1-164.8,1.9-218.4c49.8-40.2,65.1-40.2,1419.7-40.2c927.3,0,1381.4-5.7,1406.3-21.1c55.6-28.7,76.6-99.6,53.6-170.5c-42.1-118.8,30.7-115-1774.2-115c-1737.8-1.9-1678.4,1.9-1726.3-90.1C89.1,266.1,93,216.3,135.1,164.6l36.4-46l1212.8-9.6l1210.9-9.6l36.4-49.8c53.6-70.9,32.6-160.9-47.9-210.8c-55.6-32.6-101.6-36.4-515.4-36.4c-251,0-456-5.7-456-13.4c0-9.6-23-274-49.8-588.2c-69-793.2-88.1-764.5,473.2-774l356.4-7.7l32.6,137.9c143.7,641.9,860.3,1021.2,1421.7,754.9c160.9-74.7,321.9-235.7,400.4-398.5c63.2-128.4,116.9-362.1,101.5-446.4c-5.7-32.6,51.7-34.5,1544.3-34.5h1550l24.9,124.5c36.4,176.3,126.5,346.8,258.7,488.6c195.4,208.8,429.2,325.7,695.5,346.8c525,46,969.5-360.2,969.5-883.3c0-84.3,1.9-86.2,63.2-86.2c143.7,0,274,76.6,318.1,189.7c30.6,72.8,139.9,1373.7,126.4,1486.8c-21.1,174.4-92,274-578.6,802.8c-400.4,436.8-477.1,513.5-574.8,559.5l-111.1,55.6l-588.2,5.7c-442.6,3.8-590.1,11.5-590.1,28.7c0,13.4,13.4,160.9,28.7,329.6c36.4,388.9,36.4,496.2,0,565.2c-63.2,122.6,118.8,115-2791.6,115C2798.3,2559.5,2031.9,2553.8,2005.1,2538.4z M8613.3,1231.8c47.9-24.9,205-180.1,440.7-436.8c201.2-220.3,367.9-408.1,371.7-417.7c7.7-19.2-1793.3-21.1-1804.8-1.9c-3.8,5.8,9.6,193.5,28.7,413.8c19.2,222.3,36.4,421.5,36.4,446.4v44.1l427.3-5.8C8486.8,1268.2,8548.1,1264.3,8613.3,1231.8z"/><path d="M3250.5-816.4c-321.9-84.3-574.8-348.7-641.9-674.4c-65.1-314.2,90.1-638,371.7-776c385.1-189.7,887.1,1.9,1086.4,415.8c55.6,113,65.1,155.2,70.9,312.3c9.6,235.7-32.6,356.4-180.1,515.4C3781.2-831.8,3505.3-751.3,3250.5-816.4z M3541.7-1215c76.6-28.7,139.9-92,180.1-180.1c47.9-103.5,46-191.6-9.6-308.5c-136-291.2-548-329.5-682.1-65.1c-97.7,191.6-3.8,444.5,201.2,538.4C3317.5-1190,3459.3-1182.4,3541.7-1215z"/><path d="M8281.8-820.2c-419.6-118.8-705.1-538.4-634.2-933.1c88.1-486.7,582.5-726.2,1046.1-505.8c509.7,241.4,661,890.9,295.1,1256.9C8816.3-829.8,8519.4-753.2,8281.8-820.2z M8601.7-1220.7c350.6-183.9,191.6-720.4-214.6-724.2c-111.1-1.9-187.8,30.6-264.4,113c-222.2,233.7-17.2,638,325.7,638C8504-1193.9,8573-1205.4,8601.7-1220.7z"/></g></g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1542251527427" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="508" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M 445.6 371.5 c 14.5 0 26.2 -11.8 26.2 -26.2 v -8.9 c 0 -14.5 -11.8 -26.2 -26.2 -26.2 h -38.8 l 59.8 -84.1 c 5.4 -8 6 -18.2 1.5 -26.7 c -4.5 -8.7 -13.4 -14.1 -23.2 -14.1 H 431 c -9 0 -17.3 4.5 -22.2 12.2 l -60.2 89.1 l -59.4 -88.9 c -4.8 -7.7 -13.1 -12.4 -22.2 -12.4 h -16.9 c -9.8 0 -18.7 5.4 -23.3 14.1 c -4.4 8.5 -3.9 18.7 1.5 26.7 l 59.1 84.2 h -40.2 c -14.5 0 -26.2 11.8 -26.2 26.2 v 8.9 c 0 14.5 11.8 26.2 26.2 26.2 h 66.7 v 9.3 h -66.7 c -14.5 0 -26.2 11.8 -26.2 26.2 v 9.1 c 0 14.5 11.8 26.2 26.2 26.2 h 66.7 V 487 c 0 14.5 11.8 26.2 26.2 26.2 H 355 c 14.5 0 26.2 -11.8 26.2 -26.2 v -44.6 h 64.4 c 14.5 0 26.2 -11.8 26.2 -26.2 v -9.1 c 0 -14.5 -11.8 -26.2 -26.2 -26.2 h -64.4 v -9.3 h 64.4 Z M 564 219.9 c -17.7 0 -32 14.3 -32 32 s 14.3 32 32 32 h 200 c 17.7 0 32 -14.3 32 -32 s -14.3 -32 -32 -32 H 564 Z M 694 415.9 c 17.7 0 32 -14.3 32 -32 s -14.3 -32 -32 -32 H 564 c -17.7 0 -32 14.3 -32 32 s 14.3 32 32 32 h 130 Z" p-id="509"></path><path d="M 162 895.9 V 128.1 l 0.1 -0.1 h 701.8 l 0.1 0.1 v 281.6 c 6.6 -3 13.5 -4.5 20.5 -4.5 c 12.6 0 24.6 5 34.7 14.3 l 8.9 8.2 V 128 c 0 -35.2 -28.8 -64 -64 -64 H 162 c -35.2 0 -64 28.8 -64 64 v 768 c 0 35.2 28.8 64 64 64 h 316.7 c -0.1 -0.9 -0.1 -1.8 0 -2.7 v -0.4 l 0.1 -0.7 l 8.4 -60.2 h -325 c -0.1 0 -0.2 -0.1 -0.2 -0.1 Z" p-id="510"></path><path d="M 943.7 511.5 l -34.6 -31.9 c -10.1 -9.4 -22.1 -14.3 -34.7 -14.3 c -14.8 0 -29.4 7 -41.1 19.7 L 561.4 774 l -14.7 105.3 l -0.1 0.7 v 0.4 c -0.3 6.2 2.1 12.1 6.7 16.4 c 3.9 3.6 8.9 5.5 14.1 5.5 c 0.8 0 1.6 0 2.4 -0.1 h 0.4 l 105.1 -22.7 L 945.4 592 c 10.6 -10.7 16.5 -25.5 16.1 -40.5 c -0.1 -15.2 -6.7 -29.7 -17.8 -40 Z M 647.1 827.3 l -32.9 3.6 l 1.2 -32.7 L 821.7 580 l 31.5 29.2 l -206.1 218.1 Z m 258.4 -274.6 l -14.1 15.2 l -31.4 -29.1 l 14 -15.2 h 0.3 l 31.2 28.8 c 0.1 0.1 0.1 0.2 0 0.3 Z" p-id="511"></path></svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@@ -0,0 +1 @@
<svg class="icon" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" width="200" height="200"><defs><style/></defs><path d="M247.836 934.116a28.444 28.444 0 1 1-40.561-39.88l59.818-60.87a28.444 28.444 0 1 1 40.562 39.907l-59.819 60.871zm-142.392 5.518a28.444 28.444 0 0 1-40.22-40.22L202.097 762.51a28.444 28.444 0 1 1 40.22 40.22L105.444 939.635zm.17-127.431a28.444 28.444 0 0 1-40.562-39.908l79.73-81.095a28.444 28.444 0 1 1 40.59 39.822l-79.758 81.124zm689.55-146.887c12.971 129.024-32.71 223.46-136.05 277.532-61.894 32.37-115.427 29.696-163.64 5.092-9.586-4.893-24.462-14.052-22.926-13.512-24.946-8.476-29.241-30.492-22.585-53.39 3.072-10.695 8.277-21.76 17.237-38.286l2.56-4.779 1.564-2.816c-5.29.768-11.207 1.735-18.033 2.93-51.371 8.932-61.668 9.785-81.067-.341-68.437-35.783-162.987-130.162-175.104-159.574-7.936-19.171-10.724-41.557-9.927-67.697.483-15.36 2.048-30.55 4.835-50.233l1.792-12.118c-3.953 2.447-8.248 5.405-13.738 9.444-1.622 1.195-11.094 8.22-13.824 10.183-5.69 4.125-10.155 7.111-14.507 9.586-19.883 11.378-40.135 13.568-53.788-8.96-34.873-57.572-36.466-90.823-18.233-168.021 28.131-119.154 123.648-174.109 276.508-164.41C440.206 157.27 528.953 105.33 622.393 80.584c95.516-25.287 196.636-30.322 303.16-15.19a28.473 28.473 0 0 1 24.69 23.524c45.085 234.553-6.599 427.805-155.079 576.399zM636.956 135.595c-87.011 23.04-170.467 72.903-250.481 150.101l-9.302 8.96-12.885-1.08C229.461 282.083 156.7 321.848 135.111 413.411c-12.658 53.532-14.108 75.52.768 106.097l10.638-7.879a275.627 275.627 0 0 1 18.034-12.288c29.668-18.318 56.49-22.898 78.962-.426 10.752 10.752 11.15 18.944 9.159 38.115-.398 4.04-.996 8.505-1.906 14.791l-2.39 16.441a391.51 391.51 0 0 0-4.323 43.947c-.569 18.773 1.309 33.735 5.632 44.26 6.656 16.099 91.591 100.892 148.907 130.844 2.276 1.194 12.715.313 44.97-5.29 21.903-3.812 35.84-5.633 51.2-6.202 5.263-.199 10.411-.199 15.446 0 16.981.74 30.151 13 31.8 29.867.826 8.05-.852 15.275-4.18 23.751-3.442 8.818-5.177 12.117-18.12 35.783l-2.474 4.551a276.28 276.28 0 0 0-9.785 19.513c6.002 3.47 11.719 6.884 13.91 7.965 32.71 16.725 66.957 18.403 111.388-4.836 84.821-44.373 119.267-120.206 104.39-233.984l-1.877-14.222 10.383-9.984C883.2 502.244 933.945 331.634 897.906 119.154c-91.876-10.81-178.802-5.32-260.95 16.44zM668.444 512a156.444 156.444 0 1 1 0-312.889 156.444 156.444 0 0 1 0 312.889zm0-56.889a99.556 99.556 0 1 0 0-199.111 99.556 99.556 0 0 0 0 199.111z"/></svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Svg Vector Icons : http://www.sfont.cn -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<metadata> Svg Vector Icons : http://www.sfont.cn </metadata>
<g><path d="M990,466.4l-11.9-11.9l-33.3,33.3L512.2,55.2l33.3-33.3L533.6,10l-33.3,33.3l-31.5-31.5l-11.9,11.9l31.5,31.5L55.2,488.4l-31.5-31.5l-11.9,11.9l31.5,31.5L10,533.6l11.9,11.9l33.3-33.3l432.6,432.6l-33.3,33.3l11.9,11.9l33.3-33.3l32.1,32.1l11.9-11.9l-32.1-32.1l433.2-433.2l32.1,32.1l11.9-11.9l-32.1-32.1L990,466.4z M499.7,932.9L67.1,500.3L500.3,67.1l432.6,432.6L499.7,932.9z"/><path d="M616.7,526.7c-9.1,0-18.8,3-28.4,7.9L466.6,412.8c4.9-9.6,7.8-19.2,7.8-28c0-48.4-46-95.3-94.4-95.3c-0.3,0-0.6,0-0.9,0c-0.2,0-5.7,5.6-8.7,8.6c39,39.1,35.8,32.7,35.8,56.7c0,19.4-31.1,50.1-50.1,50.1c-4.2,0-7.4,0.1-10.1,0.1c-13.2,0-13.4-2.8-46.5-35.9c-3.1,3.1-8.6,8.5-8.6,8.7c0.6,48.7,46.6,95.3,95.3,95.3c8.8,0,18.3-2.8,27.6-7.5l122.2,122.2c-4.6,9.3-7.4,18.6-7.4,27.2c0,48.4,46,95.3,94.4,95.3c0.3,0,0.6,0,0.9,0c0.2,0,5.7-5.6,8.7-8.6c-39-39-35.8-32.7-35.8-56.6c0-19.4,31.1-50.1,50.1-50.1c4.2,0,7.4-0.1,10.1-0.1c13.2,0,13.4,2.8,46.6,35.9c3.1-3.1,8.6-8.5,8.6-8.7C711.4,573.3,665.4,526.7,616.7,526.7"/><path d="M489,67.1h22v865.8h-22V67.1L489,67.1z"/></g>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660956993972" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2452" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M1005.9 375.6c-0.1-0.1-0.2-0.3-0.3-0.4l-252.3-288.1c-12.2-14.6-29.4-23-47.5-23.1-0.1 0-0.2 0-0.3 0-18.1 0-35.4 8.4-47.8 23-11.1 12.6-17.1 29.5-17.1 47.6l0 121.5L544 256.1c-17.7 0-32 14.3-32 32s14.3 32 32 32l128.7 0c17.7 0 32-14.3 32-32l0-153.5c0-2.2 0.5-3.9 0.9-4.8l251.6 287.3c2.5 3.1 2.5 9.5 0 12.6l-251.4 287.4c-0.6-1.1-1.1-2.8-1.1-5.1L704.7 545.3c0-17.7-14.3-32-32-32L512 513.3 383.3 513.3 383.3 378.6c0-38.8-29.1-70.4-64.8-70.4-18.4 0-35.8 8.2-47.8 22.4L19.4 619.1c-0.1 0.1-0.2 0.2-0.3 0.3-22.7 26.8-22.7 68.7 0 95.5 0.1 0.2 0.3 0.4 0.5 0.5l251.2 284.1c12.2 14.6 29.4 23 47.4 23.1 0.1 0 0.2 0 0.3 0 18.1 0 35.4-8.4 47.8-23 11.1-12.6 17.1-29.5 17.1-47.6L383.4 832 482 832c17.7 0 32-14.3 32-32s-14.3-32-32-32L351.3 768c-17.7 0-32 14.3-32 32l0 152.2c0 2.2-0.5 3.9-0.9 4.8L67.8 673.5c-2.4-3.1-2.4-9.5 0-12.6L318.2 373.6c0.6 1.1 1.1 2.8 1.1 5.1l0 166.7c0 17.7 14.3 32 32 32L512 577.4l128.7 0 0 134.7c0 38.8 29.1 70.4 64.8 70.4 18.4 0 35.8-8.1 47.7-22.4l252.3-288.5c0.1-0.1 0.2-0.3 0.3-0.4C1028.6 444.4 1028.6 402.4 1005.9 375.6z" p-id="2453"></path></svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660282771635" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2260" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M802.5 719.5H525.8V830.1h0.7c3.5 31.1 29.5 55.3 61.6 55.3 2.4 0 4.6-0.4 6.9-0.7v0.7h124.5V927H595v-0.7c-2.3 0.2-4.5 0.7-6.9 0.7-54.9 0-99.4-42.8-103.1-96.8h-0.7V719.5H97V180h249V97h41.5v83h249V97H678v83h249v539.5H802.5z m-581-498h-83V678h83V221.5z m539.5 0H263V678h498V221.5z m124.5 0h-83V678h83V221.5zM539.8 442.8h82.9L498.2 581.2l-0.2-138.3h-82.9l124.5-138.3 0.2 138.2z" p-id="2261"></path></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660038670554" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="32586" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M932 848H792V400c0-30.9-25.1-56-56-56H624V232c0-30.9-25.1-56-56-56H456c-30.9 0-56 25.1-56 56v336H288c-30.9 0-56 25.1-56 56v224H120V148c0-15.5-12.5-28-28-28s-28 12.5-28 28v700c0 30.9 25.1 56 56 56h812c15.5 0 28-12.5 28-28s-12.5-28-28-28z m-644 0V624h112v224H288z m168 0V232h112v616H456z m168 0V400h112v448H624z" p-id="32587"></path></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1545972017991" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1585" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M905.216 401.408 905.216 401.408c-26.624-28.672-65.536-45.056-104.448-45.056-4.096 0-8.192 0-10.24 0L790.528 180.224c0-18.432-16.384-34.816-34.816-34.816L108.544 145.408c-18.432 0-34.816 16.384-34.816 34.816l0 647.168c0 18.432 16.384 34.816 34.816 34.816l647.168 0c18.432 0 34.816-16.384 34.816-34.816l0-176.128c4.096 0 6.144 0 10.24 0 40.96 0 77.824-16.384 104.448-43.008 26.624-26.624 43.008-63.488 43.008-104.448C948.224 462.848 931.84 428.032 905.216 401.408zM448.512 188.416l286.72 0 0 182.272c-14.336 8.192-26.624 16.384-38.912 28.672-20.48 20.48-34.816 45.056-40.96 75.776L448.512 475.136 448.512 188.416zM415.744 794.624l-286.72 0 0-286.72 286.72 0L415.744 794.624zM415.744 475.136l-286.72 0 0-286.72 286.72 0L415.744 475.136zM735.232 794.624l-286.72 0 0-286.72 204.8 0c2.048 38.912 18.432 73.728 43.008 100.352 10.24 10.24 24.576 20.48 38.912 26.624L735.232 794.624zM800.768 608.256c-57.344 0-104.448-47.104-104.448-104.448 0-57.344 47.104-104.448 104.448-104.448s104.448 47.104 104.448 104.448C905.216 561.152 858.112 608.256 800.768 608.256z" p-id="1586"></path><path d="M849.92 460.8 849.92 460.8c4.096-4.096 12.288-4.096 18.432 0 4.096 4.096 4.096 12.288 0 18.432l-79.872 79.872c-4.096 6.144-12.288 6.144-18.432 0l0 0-36.864-36.864c-4.096-4.096-4.096-12.288 0-18.432 6.144-4.096 12.288-4.096 18.432 0L778.24 532.48 849.92 460.8 849.92 460.8z" p-id="1587"></path><path d="M301.056 593.92 301.056 593.92c6.144-6.144 16.384-6.144 22.528 0 6.144 6.144 6.144 16.384 0 22.528L286.72 655.36l38.912 38.912c6.144 6.144 6.144 16.384 0 22.528-6.144 6.144-16.384 6.144-22.528 0l-38.912-38.912-38.912 38.912c-6.144 6.144-16.384 6.144-22.528 0-6.144-6.144-6.144-16.384 0-22.528l38.912-38.912-38.912-38.912c-6.144-6.144-6.144-16.384 0-22.528 6.144-6.144 16.384-6.144 22.528 0l38.912 38.912L301.056 593.92 301.056 593.92z" p-id="1588"></path><path d="M245.76 253.952 245.76 253.952c0-8.192 8.192-16.384 16.384-16.384 8.192 0 16.384 8.192 16.384 16.384l0 55.296 55.296 0c8.192 0 16.384 6.144 16.384 16.384 0 8.192-8.192 16.384-16.384 16.384l-55.296 0 0 55.296c0 10.24-8.192 16.384-16.384 16.384-10.24 0-16.384-8.192-16.384-16.384l0-55.296L190.464 342.016c-10.24 0-16.384-8.192-16.384-16.384 0-10.24 8.192-16.384 16.384-16.384L245.76 309.248 245.76 253.952 245.76 253.952z" p-id="1589"></path><path d="M665.6 671.744 665.6 671.744c8.192 0 16.384 8.192 16.384 16.384 0 8.192-8.192 16.384-16.384 16.384-120.832 0-22.528 0-143.36 0-8.192 0-16.384-8.192-16.384-16.384 0-8.192 6.144-16.384 16.384-16.384C641.024 671.744 544.768 671.744 665.6 671.744L665.6 671.744z" p-id="1590"></path><path d="M665.6 606.208 665.6 606.208c8.192 0 16.384 8.192 16.384 16.384 0 8.192-8.192 16.384-16.384 16.384-120.832 0-22.528 0-143.36 0-8.192 0-16.384-8.192-16.384-16.384 0-10.24 6.144-16.384 16.384-16.384C641.024 606.208 544.768 606.208 665.6 606.208L665.6 606.208z" p-id="1591"></path><path d="M665.6 309.248 665.6 309.248c8.192 0 16.384 6.144 16.384 16.384 0 8.192-8.192 16.384-16.384 16.384-120.832 0-22.528 0-143.36 0-8.192 0-16.384-8.192-16.384-16.384 0-10.24 6.144-16.384 16.384-16.384C641.024 309.248 544.768 309.248 665.6 309.248L665.6 309.248z" p-id="1592"></path></svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1525414131085" class="icon" style="" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6999" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css"></style></defs><path d="M958.4 241.7c-7.7-35.5-42.7-58.1-78.2-50.4s-58.1 42.7-50.4 78.2c2.1 9.5 6.1 18.1 11.5 25.4L685 537.5c-10-2.8-20.9-3.4-31.8-1C639.1 539.6 627 547 618 557L422.4 429.9c0.7-6.7 0.4-13.6-1.1-20.6-7.7-35.5-42.7-58.1-78.2-50.4s-58.1 42.7-50.4 78.2c2.1 9.5 6.1 18.1 11.6 25.4L147.9 705.1c-10.1-2.9-20.9-3.4-31.9-1-35.5 7.7-58.1 42.7-50.4 78.2s42.7 58.1 78.2 50.4 58.1-42.7 50.4-78.2c-1.9-8.9-5.6-17-10.5-24l157-243.5c9.6 2.4 19.8 2.8 30.1 0.5 12.8-2.8 23.8-9.1 32.5-17.6l198.1 128.5c-0.2 5.4 0.3 10.8 1.5 16.3 7.7 35.5 42.7 58.1 78.2 50.4s58.1-42.7 50.4-78.2c-1.9-8.9-5.6-17-10.5-24l156.9-243.5c9.6 2.5 19.9 2.8 30.2 0.6 35.4-7.7 58-42.8 50.3-78.3z" p-id="7000"></path></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660038516340" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="31470" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M859.17 73.02h-7.07c-20.43 0-37.47 12.59-47.79 30.21-10.39 17.74-29.65 29.65-51.69 29.65-18.63 0-35.28-8.51-46.26-21.86-18.52-22.52-44.12-38-73.28-38h-0.27c-29.16 0-54.76 15.48-73.28 38-10.98 13.35-27.62 21.86-46.26 21.86-18.63 0-35.28-8.51-46.25-21.86-18.52-22.52-44.12-38-73.28-38s-54.76 15.48-73.28 38c-10.98 13.35-27.62 21.86-46.25 21.86-22.04 0-41.3-11.91-51.69-29.65-10.32-17.62-27.36-30.21-47.79-30.21h-7.9c-29.22 0-52.9 23.69-52.9 52.9v772.16c0 29.22 23.69 52.9 52.9 52.9h7.9c20.43 0 37.47-12.59 47.79-30.21 10.39-17.74 29.65-29.65 51.69-29.65 18.63 0 35.28 8.51 46.25 21.86 18.52 22.52 44.12 38 73.28 38s54.76-15.48 73.28-38c10.98-13.35 27.62-21.86 46.25-21.86s35.28 8.51 46.26 21.86c18.52 22.52 44.12 38 73.28 38h0.27c29.16 0 54.76-15.48 73.28-38 10.98-13.35 27.62-21.86 46.26-21.86 22.04 0 41.3 11.91 51.69 29.65 10.32 17.63 27.36 30.21 47.79 30.21h7.07c29.22 0 52.9-23.69 52.9-52.9V125.92c0.01-29.22-23.68-52.9-52.9-52.9zM658.03 600.15c0 12.03-9.76 21.79-21.79 21.79H240.96c-12.03 0-21.79-9.76-21.79-21.79v-29.8c0-12.04 9.76-21.79 21.79-21.79h395.28c12.03 0 21.79 9.76 21.79 21.79v29.8z m146.32-182.98c0 12.03-9.76 21.79-21.79 21.79H241.1c-12.03 0-21.79-9.76-21.79-21.79v-29.56c0-12.04 9.76-21.79 21.79-21.79h541.46c12.03 0 21.79 9.75 21.79 21.79v29.56z" p-id="31471"></path></svg>

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660038479323" class="icon" viewBox="0 0 1025 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="31315" xmlns:xlink="http://www.w3.org/1999/xlink" width="200.1953125" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M371.440105 668.977584c-31.229733 6.158552-67.12392 6.99054-67.12392 6.99054 5.487231-24.301618 10.11382-52.483799 29.815456-72.819915l98.854074-19.330158L371.440105 668.977584 371.440105 668.977584zM340.60641 288.803142l38.786189 3.068019 0.275283 9.618516-49.043279 0 0 1.008005c0 37.823211-30.776387 68.525917-68.714214 68.525917-37.943967 0-68.719331-30.702705-68.719331-68.525917 0-1.709003 0.064471-3.462011 0.194438-5.172038l-13.915585 0c3.527506-41.680237 38.513976-74.353925 81.146957-74.353925C300.318959 222.972743 333.374358 251.308428 340.60641 288.803142L340.60641 288.803142zM64.425332 570.935031l10.716577 324.048521 127.057746 0 0-36.486709-51.857506-6.332523 40.536126-263.108737 65.973669-78.518981 66.880361 31.423147 71.571422 8.897051c-36.958476 9.290019-71.946993 20.246061-105.832334 33.529213l-45.06652 118.290661-29.949516 4.252041 17.631388 117.350197 174.204747-0.132013c5.26107 7.122553 11.02256 13.84702 17.290611 20.0506 31.236897 31.227687 74.385649 50.446299 122.059678 50.446299 47.661749 0 90.822782-19.218612 122.051492-50.446299 6.332523-6.266004 12.182021-13.06006 17.443091-20.291089l274.310384-0.220021L959.446749 501.071589l-43.939806 0.504514c16.087145-9.555068 30.332251-18.210607 43.939806-26.473178l0-82.099701L791.022936 496.316057c-89.760539-132.53679-198.341605-260.083699-331.569159-369.217377-6.06952 3.463034-12.151321 6.926069-18.209584 10.387056l258.504662 367.991397c-90.243563 8.215496-168.033915 17.375549-238.117378 30.76513l2.750779-14.879586-120.341465-40.060266-105.211157-92.071275-102.249567-2.367021L64.425332 570.935031 64.425332 570.935031zM604.515411 663.718561c15.065837 15.075047 24.388603 35.851206 24.388603 58.775388 0 22.963069-9.322767 43.717738-24.388603 58.729337-15.068907 14.988062-35.881906 24.345622-58.871583 24.345622-23.000933 0-43.81291-9.359607-58.88284-24.345622-15.065837-15.011599-24.39065-35.762174-24.39065-58.729337 0-22.921112 9.324813-43.696247 24.39065-58.775388 15.06993-14.988062 35.881906-24.283198 58.88284-24.283198C568.633505 639.435364 589.448551 648.729476 604.515411 663.718561z" p-id="31316"></path></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1660038325236" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="27655" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M793.6 307.2l29.866667-29.866667c72.533333 98.133333 64 238.933333-25.6 328.533334-76.8 76.8-196.266667 93.866667-290.133334 51.2l-221.866666 221.866666-34.133334-29.866666-59.733333-59.733334-29.866667-29.866666L384 537.6c-46.933333-93.866667-29.866667-213.333333 51.2-290.133333 89.6-89.6 230.4-98.133333 328.533333-25.6l-29.866666 29.866666L644.266667 341.333333l59.733333 59.733334 89.6-93.866667z m21.333333 38.4L733.866667 426.666667l-29.866667 29.866666-119.466667-119.466666 29.866667-29.866667 76.8-76.8c-76.8-34.133333-166.4-17.066667-226.133333 42.666667-85.333333 85.333333-85.333333 217.6 0 302.933333s217.6 85.333333 302.933333 0c59.733333-64 76.8-153.6 46.933333-230.4zM221.866667 755.2l59.733333 59.733333 183.466667-183.466666c-12.8-8.533333-21.333333-17.066667-34.133334-25.6s-21.333333-21.333333-25.6-34.133334l-183.466666 183.466667z" p-id="27656"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

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