commit 99e22d697b88779cc508318eeb3a00e9bc41b042 Author: CHIEFSOFT\ameye Date: Wed Apr 17 09:36:56 2024 -0400 first commit diff --git a/.env b/.env new file mode 100644 index 0000000..d14a117 --- /dev/null +++ b/.env @@ -0,0 +1,14 @@ +PORT=3011 +VITE_APP_BASE_LAYOUT_CONFIG_KEY='digifi-agent' +VITE_APP_API_URL=https://dev-agents.digifi.com +VITE_APP_VERSION=v8.2.3 +VITE_APP_THEME_NAME=digifi +VITE_APP_THEME_DEMO=digifi +VITE_APP_BOOTSTRAP_DOCS_LINK=https://getbootstrap.com/docs/5.0 +VITE_APP_SASS_PATH=src/_digifi/assets/sass/core/components +VITE_APP_SASS_VARIABLES_PATH=src/_digifi/assets/sass/core/components/_variables.scss +VITE_APP_PURCHASE_URL=https://www.digifi.com/ +VITE_APP_PREVIEW_URL=https://www.digifi.com/demo1/ +VITE_APP_PREVIEW_REACT_URL=https://www.digifi.com +VITE_APP_PREVIEW_DOCS_URL=https://www.digifi.com/ +VITE_APP_THEME_API_URL=https://api.digifi/api/api \ No newline at end of file diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..a9607c4 --- /dev/null +++ b/.env.development @@ -0,0 +1,14 @@ +PORT=3011 +VITE_APP_BASE_LAYOUT_CONFIG_KEY='metronic-react-demo1-8150' +VITE_APP_API_URL=https://preview.keenthemes.com/metronic8/laravel/api +VITE_APP_VERSION=v8.2.3 +VITE_APP_THEME_NAME=WrenchBoard +VITE_APP_THEME_DEMO=demo1 +VITE_APP_BOOTSTRAP_DOCS_LINK=https://getbootstrap.com/docs/5.0 +VITE_APP_SASS_PATH=src/_metronic/assets/sass/core/components +VITE_APP_SASS_VARIABLES_PATH=src/_metronic/assets/sass/core/components/_variables.scss +VITE_APP_PURCHASE_URL=https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469 +VITE_APP_PREVIEW_URL=https://preview.keenthemes.com/metronic8/react/demo1/ +VITE_APP_PREVIEW_REACT_URL=https://preview.keenthemes.com/metronic8/react +VITE_APP_PREVIEW_DOCS_URL=https://preview.keenthemes.com/metronic8/react/docs +VITE_APP_THEME_API_URL=https://preview.keenthemes.com/theme-api/api \ No newline at end of file diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..a9607c4 --- /dev/null +++ b/.env.production @@ -0,0 +1,14 @@ +PORT=3011 +VITE_APP_BASE_LAYOUT_CONFIG_KEY='metronic-react-demo1-8150' +VITE_APP_API_URL=https://preview.keenthemes.com/metronic8/laravel/api +VITE_APP_VERSION=v8.2.3 +VITE_APP_THEME_NAME=WrenchBoard +VITE_APP_THEME_DEMO=demo1 +VITE_APP_BOOTSTRAP_DOCS_LINK=https://getbootstrap.com/docs/5.0 +VITE_APP_SASS_PATH=src/_metronic/assets/sass/core/components +VITE_APP_SASS_VARIABLES_PATH=src/_metronic/assets/sass/core/components/_variables.scss +VITE_APP_PURCHASE_URL=https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469 +VITE_APP_PREVIEW_URL=https://preview.keenthemes.com/metronic8/react/demo1/ +VITE_APP_PREVIEW_REACT_URL=https://preview.keenthemes.com/metronic8/react +VITE_APP_PREVIEW_DOCS_URL=https://preview.keenthemes.com/metronic8/react/docs +VITE_APP_THEME_API_URL=https://preview.keenthemes.com/theme-api/api \ No newline at end of file diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..409ae54 --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +src/_metronic/assets/* \ No newline at end of file diff --git a/.eslintrc.cjs b/.eslintrc.cjs new file mode 100644 index 0000000..d6c9537 --- /dev/null +++ b/.eslintrc.cjs @@ -0,0 +1,18 @@ +module.exports = { + root: true, + env: { browser: true, es2020: true }, + extends: [ + 'eslint:recommended', + 'plugin:@typescript-eslint/recommended', + 'plugin:react-hooks/recommended', + ], + ignorePatterns: ['dist', '.eslintrc.cjs'], + parser: '@typescript-eslint/parser', + plugins: ['react-refresh'], + rules: { + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..327a515 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,121 @@ +FROM alpine:3.15 + +ENV NODE_VERSION 14.19.0 + +RUN addgroup -g 1000 node \ + && adduser -u 1000 -G node -s /bin/sh -D node \ + && apk add --no-cache \ + libstdc++ \ + && apk add --no-cache --virtual .build-deps \ + curl \ + && ARCH= && alpineArch="$(apk --print-arch)" \ + && case "${alpineArch##*-}" in \ + x86_64) \ + ARCH='x64' \ + CHECKSUM="8d5e638d88b62de2f147dee812a5d74e4860a20468eb7ff32c41a02b58e2aebf" \ + ;; \ + *) ;; \ + esac \ + && if [ -n "${CHECKSUM}" ]; then \ + set -eu; \ + curl -fsSLO --compressed "https://unofficial-builds.nodejs.org/download/release/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz"; \ + echo "$CHECKSUM node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" | sha256sum -c - \ + && tar -xJf "node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" -C /usr/local --strip-components=1 --no-same-owner \ + && ln -s /usr/local/bin/node /usr/local/bin/nodejs; \ + else \ + echo "Building from source" \ + # backup build + && apk add --no-cache --virtual .build-deps-full \ + binutils-gold \ + g++ \ + gcc \ + gnupg \ + libgcc \ + linux-headers \ + make \ + python3 \ + # gpg keys listed at https://github.com/nodejs/node#release-keys + && for key in \ + 4ED778F539E3634C779C87C6D7062848A1AB005C \ + 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \ + 74F12602B6F1C4E913FAA37AD3A89613643B6201 \ + 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \ + 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 \ + C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \ + C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C \ + DD8F2338BAE7501E3DD5AC78C273792F7D83545D \ + A48C2BEE680E841632CD4E44F07496B3EB3C1762 \ + 108F52B48DB57BB0CC439B2997B01419BD92F80A \ + B9E2F5981AA6E0CD28160D9FF13993A75599653C \ + ; do \ + gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || \ + gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; \ + done \ + && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.xz" \ + && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \ + && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc \ + && grep " node-v$NODE_VERSION.tar.xz\$" SHASUMS256.txt | sha256sum -c - \ + && tar -xf "node-v$NODE_VERSION.tar.xz" \ + && cd "node-v$NODE_VERSION" \ + && ./configure \ + && make -j$(getconf _NPROCESSORS_ONLN) V= \ + && make install \ + && apk del .build-deps-full \ + && cd .. \ + && rm -Rf "node-v$NODE_VERSION" \ + && rm "node-v$NODE_VERSION.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt; \ + fi \ + && rm -f "node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" \ + && apk del .build-deps \ + # smoke tests + && node --version \ + && npm --version + +ENV YARN_VERSION 1.22.17 + +RUN apk add --no-cache --virtual .build-deps-yarn curl gnupg tar \ + && for key in \ + 6A010C5166006599AA17F08146C2130DFD2497F5 \ + ; do \ + gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || \ + gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; \ + done \ + && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" \ + && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc" \ + && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz \ + && mkdir -p /opt \ + && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ \ + && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn \ + && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg \ + && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz \ + && apk del .build-deps-yarn \ + # smoke test + && yarn --version + +COPY docker-entrypoint.sh /usr/local/bin/ +ENTRYPOINT ["docker-entrypoint.sh"] + +# set working directory +WORKDIR /app + +# add `/app/node_modules/.bin` to $PATH +ENV PATH /app/node_modules/.bin:$PATH + +# install app dependencies +COPY package.json ./ +#COPY package-lock.json ./ +RUN npm install --silent +RUN npm install react-scripts@3.4.1 -g --silent +RUN npm install -g serve + +# add app +COPY . ./ + +# build app +RUN npm run-script build + +# start app +# CMD ["serve", "-s", "build"] + +CMD ["npm", "start"] + diff --git a/README.md b/README.md new file mode 100644 index 0000000..1ebe379 --- /dev/null +++ b/README.md @@ -0,0 +1,27 @@ +# React + TypeScript + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh + +## Expanding the ESLint configuration + +If you are developing a production application, we recommend updating the configuration to enable type aware lint rules: + +- Configure the top-level `parserOptions` property like this: + +```js + parserOptions: { + ecmaVersion: 'latest', + sourceType: 'module', + project: ['./tsconfig.json', './tsconfig.node.json'], + tsconfigRootDir: __dirname, + }, +``` + +- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked` +- Optionally add `plugin:@typescript-eslint/stylistic-type-checked` +- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..fe5c5ff --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,21 @@ +version: '3' +services: + digifi-bko: + build: + context: . + dockerfile: docker/Dockerfile + restart: unless-stopped + #image: registry.chiefsoft.net/wrenchboardagents_wrenchboard-agents:latest + ports: + - 6032:4173 + extra_hosts: + - backend.wrenchboard.api.live:10.10.33.15 + - backend.wrenchboard.api.test:10.10.33.15 + # #- backend.wrenchboard.api.live:172.31.4.27 + # #- backend.wrenchboard.api.test:10.20.30.27 + - apigateway.wrenchboard.app.dev.fluxtra.net:10.20.30.19 + - apigateway.wrenchboard.app.lotus.fluxtra.net:172.31.4.19 + environment: + - CHOKIDAR_USEPOLLING=true +volumes: + src: diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh new file mode 100644 index 0000000..1b3116e --- /dev/null +++ b/docker-entrypoint.sh @@ -0,0 +1,11 @@ +#!/bin/sh +set -e + +# Run command with node if the first argument contains a "-" or is not a system command. The last +# part inside the "{}" is a workaround for the following bug in ash/dash: +# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=874264 +if [ "${1#-}" != "${1}" ] || [ -z "$(command -v "${1}")" ] || { [ -f "${1}" ] && ! [ -x "${1}" ]; }; then + set -- node "$@" +fi + +exec "$@" diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..79566be --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,23 @@ +# pull official base image +#FROM node:13.12.0-alpine +FROM node:18.19.0-alpine +# set working directory +WORKDIR /app + +# add `/app/node_modules/.bin` to $PATH +ENV PATH /app/node_modules/.bin:$PATH + +# install app dependencies +COPY package.json ./ +#COPY package-lock.json ./ +RUN npm install --silent +# RUN npm install react-scripts@3.4.1 -g --silent + +# add app +COPY . ./ +RUN npm run build + +# start app +#CMD ["npm","run", "start"] +CMD ["npm","run", "preview"] + diff --git a/index.html b/index.html new file mode 100644 index 0000000..e7fab9e --- /dev/null +++ b/index.html @@ -0,0 +1,47 @@ + + + + + + + + + + WrenchBoard Agent + + + + + + + + + + +
+ + +
+ + + Loading ... +
+ + +
+ + + + \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..a920e8b --- /dev/null +++ b/package-lock.json @@ -0,0 +1,10219 @@ +{ + "name": "demo1", + "version": "8.2.3", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "demo1", + "version": "8.2.3", + "dependencies": { + "@formatjs/intl-pluralrules": "5.2.4", + "@formatjs/intl-relativetimeformat": "11.2.4", + "@fortawesome/fontawesome-free": "6.1.1", + "@popperjs/core": "^2.11.6", + "animate.css": "4.1.1", + "apexcharts": "3.35.0", + "axios": "1.6.5", + "bootstrap": "5.3.0", + "bootstrap-icons": "^1.5.0", + "chart.js": "4.3.0", + "clsx": "2.1.0", + "formik": "2.2.9", + "line-awesome": "1.3.0", + "nouislider": "15.5.1", + "prism-react-renderer": "2.0.5", + "prism-themes": "1.9.0", + "prismjs": "1.28.0", + "qs": "6.10.3", + "react": "^18.2.0", + "react-apexcharts": "1.4.0", + "react-bootstrap": "2.5.0-beta.1", + "react-copy-to-clipboard": "5.1.0", + "react-dom": "^18.2.0", + "react-flatpickr": "^3.10.13", + "react-inlinesvg": "4.1.0", + "react-intl": "^6.4.4", + "react-query": "3.38.0", + "react-router-dom": "6.3.0", + "react-select": "^5.8.0", + "react-table": "^7.7.0", + "react-topbar-progress-indicator": "4.1.1", + "socicon": "3.0.5", + "yup": "^1.0.0" + }, + "devDependencies": { + "@types/bootstrap": "5.1.10", + "@types/chart.js": "2.9.37", + "@types/jest": "29.5.2", + "@types/node": "20.3.1", + "@types/prismjs": "1.26.0", + "@types/qs": "6.9.7", + "@types/react": "^18.2.15", + "@types/react-copy-to-clipboard": "5.0.2", + "@types/react-dom": "^18.2.7", + "@types/react-table": "^7.7.9", + "@types/sass-loader": "8.0.3", + "@typescript-eslint/eslint-plugin": "^6.0.0", + "@typescript-eslint/parser": "^6.0.0", + "@vitejs/plugin-react-swc": "^3.3.2", + "css-loader": "6.7.1", + "del": "7.0.0", + "eslint": "^8.45.0", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-refresh": "^0.4.3", + "mini-css-extract-plugin": "2.6.1", + "remove-files-webpack-plugin": "^1.5.0", + "rtlcss-webpack-plugin": "4.0.7", + "sass": "1.55.0", + "sass-loader": "13.2.0", + "typescript": "^5.3.3", + "vite": "^4.4.5", + "webpack": "5.74.0", + "webpack-cli": "5.1.4", + "webpack-rtl-plugin": "^2.0.0" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/runtime": { + "version": "7.23.8", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.8.tgz", + "integrity": "sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", + "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.11.0.tgz", + "integrity": "sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/serialize": "^1.1.2", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/babel-plugin/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.11.0", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.11.0.tgz", + "integrity": "sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==", + "dependencies": { + "@emotion/memoize": "^0.8.1", + "@emotion/sheet": "^1.2.2", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.1.tgz", + "integrity": "sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==" + }, + "node_modules/@emotion/memoize": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz", + "integrity": "sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==" + }, + "node_modules/@emotion/react": { + "version": "11.11.3", + "resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.11.3.tgz", + "integrity": "sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==", + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.11.0", + "@emotion/cache": "^11.11.0", + "@emotion/serialize": "^1.1.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.1", + "@emotion/utils": "^1.2.1", + "@emotion/weak-memoize": "^0.3.1", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.3.tgz", + "integrity": "sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==", + "dependencies": { + "@emotion/hash": "^0.9.1", + "@emotion/memoize": "^0.8.1", + "@emotion/unitless": "^0.8.1", + "@emotion/utils": "^1.2.1", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/sheet": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.2.tgz", + "integrity": "sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==" + }, + "node_modules/@emotion/unitless": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz", + "integrity": "sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/utils": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.1.tgz", + "integrity": "sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.1.tgz", + "integrity": "sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==" + }, + "node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/js": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.5.3.tgz", + "integrity": "sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==", + "dependencies": { + "@floating-ui/utils": "^0.2.0" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.5.4.tgz", + "integrity": "sha512-jByEsHIY+eEdCjnTVu+E3ephzTOzkQ8hgUfGwos+bg7NlH33Zc5uO+QHz1mrQUOgIKKDD1RtS201P9NvAfq3XQ==", + "dependencies": { + "@floating-ui/core": "^1.5.3", + "@floating-ui/utils": "^0.2.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", + "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==" + }, + "node_modules/@formatjs/ecma402-abstract": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.17.0.tgz", + "integrity": "sha512-6ueQTeJZtwKjmh23bdkq/DMqH4l4bmfvtQH98blOSbiXv/OUiyijSW6jU22IT8BNM1ujCaEvJfTtyCYVH38EMQ==", + "dependencies": { + "@formatjs/intl-localematcher": "0.4.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/fast-memoize": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz", + "integrity": "sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/icu-messageformat-parser": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@formatjs/icu-messageformat-parser/-/icu-messageformat-parser-2.7.3.tgz", + "integrity": "sha512-X/jy10V9S/vW+qlplqhMUxR8wErQ0mmIYSq4mrjpjDl9mbuGcCILcI1SUYkL5nlM4PJqpc0KOS0bFkkJNPxYRw==", + "dependencies": { + "@formatjs/ecma402-abstract": "1.18.0", + "@formatjs/icu-skeleton-parser": "1.7.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/icu-messageformat-parser/node_modules/@formatjs/ecma402-abstract": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.0.tgz", + "integrity": "sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==", + "dependencies": { + "@formatjs/intl-localematcher": "0.5.2", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/icu-messageformat-parser/node_modules/@formatjs/intl-localematcher": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.2.tgz", + "integrity": "sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/icu-skeleton-parser": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/@formatjs/icu-skeleton-parser/-/icu-skeleton-parser-1.7.0.tgz", + "integrity": "sha512-Cfdo/fgbZzpN/jlN/ptQVe0lRHora+8ezrEeg2RfrNjyp+YStwBy7cqDY8k5/z2LzXg6O0AdzAV91XS0zIWv+A==", + "dependencies": { + "@formatjs/ecma402-abstract": "1.18.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/icu-skeleton-parser/node_modules/@formatjs/ecma402-abstract": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.0.tgz", + "integrity": "sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==", + "dependencies": { + "@formatjs/intl-localematcher": "0.5.2", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/icu-skeleton-parser/node_modules/@formatjs/intl-localematcher": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.2.tgz", + "integrity": "sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl": { + "version": "2.9.9", + "resolved": "https://registry.npmjs.org/@formatjs/intl/-/intl-2.9.9.tgz", + "integrity": "sha512-JI3CNgL2Zdg5lv9ncT2sYKqbAj2RGrCbdzaCckIxMPxn4QuHuOVvYUGmBAXVusBmfG/0sxLmMrnwnBioz+QKdA==", + "dependencies": { + "@formatjs/ecma402-abstract": "1.18.0", + "@formatjs/fast-memoize": "2.2.0", + "@formatjs/icu-messageformat-parser": "2.7.3", + "@formatjs/intl-displaynames": "6.6.4", + "@formatjs/intl-listformat": "7.5.3", + "intl-messageformat": "10.5.8", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "typescript": "5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@formatjs/intl-displaynames": { + "version": "6.6.4", + "resolved": "https://registry.npmjs.org/@formatjs/intl-displaynames/-/intl-displaynames-6.6.4.tgz", + "integrity": "sha512-ET8KQ+L9Q0K8x1SnJQa4DNssUcbATlMopWqYvGGR8yAvw5qwAQc1fv+DshCoZNIE9pbcue0IGC4kWNAkWqlFag==", + "dependencies": { + "@formatjs/ecma402-abstract": "1.18.0", + "@formatjs/intl-localematcher": "0.5.2", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl-displaynames/node_modules/@formatjs/ecma402-abstract": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.0.tgz", + "integrity": "sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==", + "dependencies": { + "@formatjs/intl-localematcher": "0.5.2", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl-displaynames/node_modules/@formatjs/intl-localematcher": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.2.tgz", + "integrity": "sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl-listformat": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/@formatjs/intl-listformat/-/intl-listformat-7.5.3.tgz", + "integrity": "sha512-l7EOr0Yh1m8KagytukB90yw81uyzrM7amKFrgxXqphz4KeSIL0KPa68lPsdtZ+JmQB73GaDQRwLOwUKFZ1VZPQ==", + "dependencies": { + "@formatjs/ecma402-abstract": "1.18.0", + "@formatjs/intl-localematcher": "0.5.2", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl-listformat/node_modules/@formatjs/ecma402-abstract": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.0.tgz", + "integrity": "sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==", + "dependencies": { + "@formatjs/intl-localematcher": "0.5.2", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl-listformat/node_modules/@formatjs/intl-localematcher": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.2.tgz", + "integrity": "sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl-localematcher": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.4.0.tgz", + "integrity": "sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl-pluralrules": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/@formatjs/intl-pluralrules/-/intl-pluralrules-5.2.4.tgz", + "integrity": "sha512-6meo376d8I4zikRFSUxATLnqzGwezmc57SmToP4z1/NQwTHXGe0yIG/ABPbO3QMx7IUkofH/ROP3A4DhtPTpnA==", + "dependencies": { + "@formatjs/ecma402-abstract": "1.17.0", + "@formatjs/intl-localematcher": "0.4.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl-relativetimeformat": { + "version": "11.2.4", + "resolved": "https://registry.npmjs.org/@formatjs/intl-relativetimeformat/-/intl-relativetimeformat-11.2.4.tgz", + "integrity": "sha512-AJtPvpF7ub/nlu+PmysW9qho7Bev/v0qBNamY4Olh81P73ayf6JgFhxSxuLI2IxuHbXwqPb0iNBhvEXGBklCbQ==", + "dependencies": { + "@formatjs/ecma402-abstract": "1.17.0", + "@formatjs/intl-localematcher": "0.4.0", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl/node_modules/@formatjs/ecma402-abstract": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.0.tgz", + "integrity": "sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==", + "dependencies": { + "@formatjs/intl-localematcher": "0.5.2", + "tslib": "^2.4.0" + } + }, + "node_modules/@formatjs/intl/node_modules/@formatjs/intl-localematcher": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.2.tgz", + "integrity": "sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@fortawesome/fontawesome-free": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-6.1.1.tgz", + "integrity": "sha512-J/3yg2AIXc9wznaVqpHVX3Wa5jwKovVF0AMYSnbmcXTiL3PpRPfF58pzWucCwEiCJBp+hCNRLWClTomD8SseKg==", + "hasInstallScript": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "dev": true + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.21.tgz", + "integrity": "sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@kurkle/color": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.2.tgz", + "integrity": "sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw==" + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@react-aria/ssr": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.1.tgz", + "integrity": "sha512-NqzkLFP8ZVI4GSorS0AYljC13QW2sc8bDqJOkBvkAt3M8gbcAXJWVRGtZBCRscki9RZF+rNlnPdg0G0jYkhJcg==", + "dependencies": { + "@swc/helpers": "^0.5.0" + }, + "engines": { + "node": ">= 12" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0" + } + }, + "node_modules/@restart/hooks": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/@restart/hooks/-/hooks-0.4.15.tgz", + "integrity": "sha512-cZFXYTxbpzYcieq/mBwSyXgqnGMHoBVh3J7MU0CCoIB4NRZxV9/TuwTBAaLMqpNhC3zTPMCgkQ5Ey07L02Xmcw==", + "dependencies": { + "dequal": "^2.0.3" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@restart/ui": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/@restart/ui/-/ui-1.6.6.tgz", + "integrity": "sha512-eC3puKuWE1SRYbojWHXnvCNHGgf3uzHCb6JOhnF4OXPibOIPEkR1sqDSkL643ydigxwh+ruCa1CmYHlzk7ikKA==", + "dependencies": { + "@babel/runtime": "^7.21.0", + "@popperjs/core": "^2.11.6", + "@react-aria/ssr": "^3.5.0", + "@restart/hooks": "^0.4.9", + "@types/warning": "^3.0.0", + "dequal": "^2.0.3", + "dom-helpers": "^5.2.0", + "uncontrollable": "^8.0.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + } + }, + "node_modules/@restart/ui/node_modules/uncontrollable": { + "version": "8.0.4", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-8.0.4.tgz", + "integrity": "sha512-ulRWYWHvscPFc0QQXvyJjY6LIXU56f0h8pQFvhxiKk5V1fcI8gp9Ht9leVAhrVjzqMw0BgjspBINx9r6oyJUvQ==", + "peerDependencies": { + "react": ">=16.14.0" + } + }, + "node_modules/@romainberger/css-diff": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@romainberger/css-diff/-/css-diff-1.0.3.tgz", + "integrity": "sha512-zR2EvxtJvQXRxFtTnqazMsJADngyVIulzYQ+wVYWRC1Hw3e4gfEIbigX46wTsPUyjAI+lRXFrBSoCWcgZ6ZSlQ==", + "dev": true, + "dependencies": { + "lodash.merge": "^4.4.0", + "postcss": "^5.0.21" + } + }, + "node_modules/@romainberger/css-diff/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@romainberger/css-diff/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@romainberger/css-diff/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "dependencies": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@romainberger/css-diff/node_modules/chalk/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@romainberger/css-diff/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@romainberger/css-diff/node_modules/has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@romainberger/css-diff/node_modules/postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "dependencies": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/@romainberger/css-diff/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@romainberger/css-diff/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@romainberger/css-diff/node_modules/supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==", + "dev": true, + "dependencies": { + "has-flag": "^1.0.0" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/@sindresorhus/df": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@sindresorhus/df/-/df-3.1.1.tgz", + "integrity": "sha512-SME/vtXaJcnQ/HpeV6P82Egy+jThn11IKfwW8+/XVoRD0rmPHVTeKMtww1oWdVnMykzVPjmrDN9S8NBndPEHCQ==", + "dev": true, + "dependencies": { + "execa": "^2.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@stroncium/procfs": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@stroncium/procfs/-/procfs-1.2.1.tgz", + "integrity": "sha512-X1Iui3FUNZP18EUvysTHxt+Avu2nlVzyf90YM8OYgP6SGzTzzX/0JgObfO1AQQDzuZtNNz29bVh8h5R97JrjxA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@swc/core": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.3.102.tgz", + "integrity": "sha512-OAjNLY/f6QWKSDzaM3bk31A+OYHu6cPa9P/rFIx8X5d24tHXUpRiiq6/PYI6SQRjUPlB72GjsjoEU8F+ALadHg==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "@swc/counter": "^0.1.1", + "@swc/types": "^0.1.5" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.3.102", + "@swc/core-darwin-x64": "1.3.102", + "@swc/core-linux-arm-gnueabihf": "1.3.102", + "@swc/core-linux-arm64-gnu": "1.3.102", + "@swc/core-linux-arm64-musl": "1.3.102", + "@swc/core-linux-x64-gnu": "1.3.102", + "@swc/core-linux-x64-musl": "1.3.102", + "@swc/core-win32-arm64-msvc": "1.3.102", + "@swc/core-win32-ia32-msvc": "1.3.102", + "@swc/core-win32-x64-msvc": "1.3.102" + }, + "peerDependencies": { + "@swc/helpers": "^0.5.0" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } + } + }, + "node_modules/@swc/core-darwin-arm64": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.3.102.tgz", + "integrity": "sha512-CJDxA5Wd2cUMULj3bjx4GEoiYyyiyL8oIOu4Nhrs9X+tlg8DnkCm4nI57RJGP8Mf6BaXPIJkHX8yjcefK2RlDA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-darwin-x64": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.3.102.tgz", + "integrity": "sha512-X5akDkHwk6oAer49oER0qZMjNMkLH3IOZaV1m98uXIasAGyjo5WH1MKPeMLY1sY6V6TrufzwiSwD4ds571ytcg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.3.102.tgz", + "integrity": "sha512-kJH3XtZP9YQdjq/wYVBeFuiVQl4HaC4WwRrIxAHwe2OyvrwUI43dpW3LpxSggBnxXcVCXYWf36sTnv8S75o2Gw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.3.102.tgz", + "integrity": "sha512-flQP2WDyCgO24WmKA1wjjTx+xfCmavUete2Kp6yrM+631IHLGnr17eu7rYJ/d4EnDBId/ytMyrnWbTVkaVrpbQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.3.102.tgz", + "integrity": "sha512-bQEQSnC44DyoIGLw1+fNXKVGoCHi7eJOHr8BdH0y1ooy9ArskMjwobBFae3GX4T1AfnrTaejyr0FvLYIb0Zkog==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.3.102.tgz", + "integrity": "sha512-dFvnhpI478svQSxqISMt00MKTDS0e4YtIr+ioZDG/uJ/q+RpcNy3QI2KMm05Fsc8Y0d4krVtvCKWgfUMsJZXAg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.3.102.tgz", + "integrity": "sha512-+a0M3CvjeIRNA/jTCzWEDh2V+mhKGvLreHOL7J97oULZy5yg4gf7h8lQX9J8t9QLbf6fsk+0F8bVH1Ie/PbXjA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.3.102.tgz", + "integrity": "sha512-w76JWLjkZNOfkB25nqdWUNCbt0zJ41CnWrJPZ+LxEai3zAnb2YtgB/cCIrwxDebRuMgE9EJXRj7gDDaTEAMOOQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.3.102.tgz", + "integrity": "sha512-vlDb09HiGqKwz+2cxDS9T5/461ipUQBplvuhW+cCbzzGuPq8lll2xeyZU0N1E4Sz3MVdSPx1tJREuRvlQjrwNg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.3.102", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.3.102.tgz", + "integrity": "sha512-E/jfSD7sShllxBwwgDPeXp1UxvIqehj/ShSUqq1pjR/IDRXngcRSXKJK92mJkNFY7suH6BcCWwzrxZgkO7sWmw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/counter": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.2.tgz", + "integrity": "sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==", + "dev": true + }, + "node_modules/@swc/helpers": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.3.tgz", + "integrity": "sha512-FaruWX6KdudYloq1AHD/4nU+UsMTdNE8CKyrseXWEcgjDAbvkwJg2QGPAnfIJLIWsjZOSPLOAykK6fuYp4vp4A==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@swc/types": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.5.tgz", + "integrity": "sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==", + "dev": true + }, + "node_modules/@types/bootstrap": { + "version": "5.1.10", + "resolved": "https://registry.npmjs.org/@types/bootstrap/-/bootstrap-5.1.10.tgz", + "integrity": "sha512-N93bSEnlUuRkzZim83hE36dIExrXf+6NlUQRJfOfT7N9kk53j6UtMNXG4TgCUACsmc7XVPwtnJyGVfSrD2KvOA==", + "dev": true, + "dependencies": { + "@popperjs/core": "^2.9.2", + "@types/jquery": "*" + } + }, + "node_modules/@types/chart.js": { + "version": "2.9.37", + "resolved": "https://registry.npmjs.org/@types/chart.js/-/chart.js-2.9.37.tgz", + "integrity": "sha512-9bosRfHhkXxKYfrw94EmyDQcdjMaQPkU1fH2tDxu8DWXxf1mjzWQAV4laJF51ZbC2ycYwNDvIm1rGez8Bug0vg==", + "dev": true, + "dependencies": { + "moment": "^2.10.2" + } + }, + "node_modules/@types/eslint": { + "version": "8.56.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.2.tgz", + "integrity": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==", + "dev": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", + "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", + "dev": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", + "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", + "dependencies": { + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "29.5.2", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz", + "integrity": "sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg==", + "dev": true, + "dependencies": { + "expect": "^29.0.0", + "pretty-format": "^29.0.0" + } + }, + "node_modules/@types/jquery": { + "version": "3.5.29", + "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.5.29.tgz", + "integrity": "sha512-oXQQC9X9MOPRrMhPHHOsXqeQDnWeCDT3PelUIg/Oy8FAbzSZtFHRjc7IpbfFVmpLtJ+UOoywpRsuO5Jxjybyeg==", + "dev": true, + "dependencies": { + "@types/sizzle": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.3.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz", + "integrity": "sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg==", + "dev": true + }, + "node_modules/@types/node-sass": { + "version": "4.11.7", + "resolved": "https://registry.npmjs.org/@types/node-sass/-/node-sass-4.11.7.tgz", + "integrity": "sha512-QY0sXZGPRzJ2obo66f9zB6S0Uo9PRdcoPKPbyftSoKXub90s4ut/JK3fYHOqmhYhRRVEB3P5o5rEnq2/bWBdeg==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + }, + "node_modules/@types/prismjs": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.0.tgz", + "integrity": "sha512-ZTaqn/qSqUuAq1YwvOFQfVW1AR/oQJlLSZVustdjwI+GZ8kr0MSHBj0tsXPW1EqHubx50gtBEjbPGsdZwQwCjQ==" + }, + "node_modules/@types/prop-types": { + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==" + }, + "node_modules/@types/q": { + "version": "1.5.8", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.8.tgz", + "integrity": "sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "node_modules/@types/react": { + "version": "18.2.47", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.47.tgz", + "integrity": "sha512-xquNkkOirwyCgoClNk85BjP+aqnIS+ckAJ8i37gAbDs14jfW/J23f2GItAf33oiUPQnqNMALiFeoM9Y5mbjpVQ==", + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-copy-to-clipboard": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@types/react-copy-to-clipboard/-/react-copy-to-clipboard-5.0.2.tgz", + "integrity": "sha512-O29AThfxrkUFRsZXjfSWR2yaWo0ppB1yLEnHA+Oh24oNetjBAwTDu1PmolIqdJKzsZiO4J1jn6R6TmO96uBvGg==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-dom": { + "version": "18.2.18", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.18.tgz", + "integrity": "sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-table": { + "version": "7.7.19", + "resolved": "https://registry.npmjs.org/@types/react-table/-/react-table-7.7.19.tgz", + "integrity": "sha512-47jMa1Pai7ily6BXJCW33IL5ghqmCWs2VM9s+h1D4mCaK5P4uNkZOW3RMMg8MCXBvAJ0v9+sPqKjhid0PaJPQA==", + "dev": true, + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.10", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.10.tgz", + "integrity": "sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/sass": { + "version": "1.45.0", + "resolved": "https://registry.npmjs.org/@types/sass/-/sass-1.45.0.tgz", + "integrity": "sha512-jn7qwGFmJHwUSphV8zZneO3GmtlgLsmhs/LQyVvQbIIa+fzGMUiHI4HXJZL3FT8MJmgXWbLGiVVY7ElvHq6vDA==", + "deprecated": "This is a stub types definition. sass provides its own type definitions, so you do not need this installed.", + "dev": true, + "dependencies": { + "sass": "*" + } + }, + "node_modules/@types/sass-loader": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/@types/sass-loader/-/sass-loader-8.0.3.tgz", + "integrity": "sha512-lwOlTt9erV7A9rwTYGqya+swf6D/2OqiHjegr1No9Lu/2KAUFONyyZD5jjVKPO1BHgtr+7r0R/IbwzQcmsPoYg==", + "dev": true, + "dependencies": { + "@types/node-sass": "*", + "@types/sass": "*", + "@types/webpack": "^4" + } + }, + "node_modules/@types/scheduler": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==" + }, + "node_modules/@types/semver": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", + "dev": true + }, + "node_modules/@types/sizzle": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.8.tgz", + "integrity": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==", + "dev": true + }, + "node_modules/@types/source-list-map": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.6.tgz", + "integrity": "sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "dev": true + }, + "node_modules/@types/tapable": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.12.tgz", + "integrity": "sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==", + "dev": true + }, + "node_modules/@types/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-Hm/T0kV3ywpJyMGNbsItdivRhYNCQQf1IIsYsXnoVPES4t+FMLyDe0/K+Ea7ahWtMtSNb22ZdY7MIyoD9rqARg==", + "dev": true, + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/warning": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.3.tgz", + "integrity": "sha512-D1XC7WK8K+zZEveUPY+cf4+kgauk8N4eHr/XIHXGlGYkHLud6hK9lYfZk1ry1TNh798cZUCgb6MqGEG8DkJt6Q==" + }, + "node_modules/@types/webpack": { + "version": "4.41.38", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.38.tgz", + "integrity": "sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "dev": true + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "6.18.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.18.1.tgz", + "integrity": "sha512-nISDRYnnIpk7VCFrGcu1rnZfM1Dh9LRHnfgdkjcbi/l7g16VYRri3TjXi9Ir4lOZSw5N/gnV/3H7jIPQ8Q4daA==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.18.1", + "@typescript-eslint/type-utils": "6.18.1", + "@typescript-eslint/utils": "6.18.1", + "@typescript-eslint/visitor-keys": "6.18.1", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.18.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.18.1.tgz", + "integrity": "sha512-zct/MdJnVaRRNy9e84XnVtRv9Vf91/qqe+hZJtKanjojud4wAVy/7lXxJmMyX6X6J+xc6c//YEWvpeif8cAhWA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "6.18.1", + "@typescript-eslint/types": "6.18.1", + "@typescript-eslint/typescript-estree": "6.18.1", + "@typescript-eslint/visitor-keys": "6.18.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.18.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.18.1.tgz", + "integrity": "sha512-BgdBwXPFmZzaZUuw6wKiHKIovms97a7eTImjkXCZE04TGHysG+0hDQPmygyvgtkoB/aOQwSM/nWv3LzrOIQOBw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.18.1", + "@typescript-eslint/visitor-keys": "6.18.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "6.18.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.18.1.tgz", + "integrity": "sha512-wyOSKhuzHeU/5pcRDP2G2Ndci+4g653V43gXTpt4nbyoIOAASkGDA9JIAgbQCdCkcr1MvpSYWzxTz0olCn8+/Q==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "6.18.1", + "@typescript-eslint/utils": "6.18.1", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.18.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.18.1.tgz", + "integrity": "sha512-4TuMAe+tc5oA7wwfqMtB0Y5OrREPF1GeJBAjqwgZh1lEMH5PJQgWgHGfYufVB51LtjD+peZylmeyxUXPfENLCw==", + "dev": true, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.18.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.18.1.tgz", + "integrity": "sha512-fv9B94UAhywPRhUeeV/v+3SBDvcPiLxRZJw/xZeeGgRLQZ6rLMG+8krrJUyIf6s1ecWTzlsbp0rlw7n9sjufHA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.18.1", + "@typescript-eslint/visitor-keys": "6.18.1", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "6.18.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.18.1.tgz", + "integrity": "sha512-zZmTuVZvD1wpoceHvoQpOiewmWu3uP9FuTWo8vqpy2ffsmfCE8mklRPi+vmnIYAIk9t/4kOThri2QCDgor+OpQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.18.1", + "@typescript-eslint/types": "6.18.1", + "@typescript-eslint/typescript-estree": "6.18.1", + "semver": "^7.5.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.18.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.18.1.tgz", + "integrity": "sha512-/kvt0C5lRqGoCfsbmm7/CwMqoSkY3zzHLIjdhHZQW3VFrnz7ATecOHR7nb7V+xn4286MBxfnQfQhAmCI0u+bJA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.18.1", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/@vitejs/plugin-react-swc": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.5.0.tgz", + "integrity": "sha512-1PrOvAaDpqlCV+Up8RkAh9qaiUjoDUcjtttyhXDKw53XA6Ve16SOp6cCOpRs8Dj8DqUQs6eTW5YkLcLJjrXAig==", + "dev": true, + "dependencies": { + "@swc/core": "^1.3.96" + }, + "peerDependencies": { + "vite": "^4 || ^5" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "dev": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "dev": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "dev": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "dev": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "dev": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webpack-cli/configtest": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", + "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/info": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", + "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + } + }, + "node_modules/@webpack-cli/serve": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", + "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", + "dev": true, + "engines": { + "node": ">=14.15.0" + }, + "peerDependencies": { + "webpack": "5.x.x", + "webpack-cli": "5.x.x" + }, + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-4.0.1.tgz", + "integrity": "sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==", + "dev": true, + "dependencies": { + "clean-stack": "^4.0.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha512-0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ==", + "dev": true + }, + "node_modules/animate.css": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/animate.css/-/animate.css-4.1.1.tgz", + "integrity": "sha512-+mRmCTv6SbCmtYJCN4faJMNFVNN5EuCTTprDTAo7YzIGji2KADmakjVA3+8mVDkZ2Bf09vayB35lSQIex2+QaQ==" + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/apexcharts": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/apexcharts/-/apexcharts-3.35.0.tgz", + "integrity": "sha512-oipJRkaxt8DPGRmn1kur6aPzML1JSpf2M3ecu+gyw+8xiNmT2C0p1uuuqPZrk+Lr2hmDxzNBPR7TvxwRl3ozgw==", + "dependencies": { + "svg.draggable.js": "^2.2.2", + "svg.easing.js": "^2.0.0", + "svg.filter.js": "^2.0.2", + "svg.pathmorphing.js": "^0.1.3", + "svg.resize.js": "^1.4.3", + "svg.select.js": "^3.0.1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz", + "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "dev": true, + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axios": { + "version": "1.6.5", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.5.tgz", + "integrity": "sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==", + "dependencies": { + "follow-redirects": "^1.15.4", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-runtime": { + "version": "6.25.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.25.0.tgz", + "integrity": "sha512-zeCYxDePWYAT/DfmQWIHsMSFW2vv45UIwIAMjGvQVsTd47RwsiRH0uK1yzyWZ7LDBKdhnGDPM6NYEO5CZyhPrg==", + "dev": true, + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.10.0" + } + }, + "node_modules/babel-runtime/node_modules/regenerator-runtime": { + "version": "0.10.5", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz", + "integrity": "sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/bootstrap": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.0.tgz", + "integrity": "sha512-UnBV3E3v4STVNQdms6jSGO2CvOkjUMdDAVR2V5N4uCMdaIkaQjbcEAMqRimDHIs4uqBYzDAKCQwCB+97tJgHQw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.7" + } + }, + "node_modules/bootstrap-icons": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/bootstrap-icons/-/bootstrap-icons-1.11.3.tgz", + "integrity": "sha512-+3lpHrCw/it2/7lBL15VR0HEumaBss0+f/Lb6ZvHISn1mlK83jjFpooTLsMWbIjJMDjDjOExMsTxnXSIT4k4ww==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ] + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/broadcast-channel": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/broadcast-channel/-/broadcast-channel-3.7.0.tgz", + "integrity": "sha512-cIAKJXAxGJceNZGTZSBzMxzyOn72cVgPnKx4dc6LRjQgbaJUQqhy5rzL3zbMxkMWsGKkv2hSFkPRMEXfoMZ2Mg==", + "dependencies": { + "@babel/runtime": "^7.7.2", + "detect-node": "^2.1.0", + "js-sha3": "0.8.0", + "microseconds": "0.2.0", + "nano-time": "1.0.0", + "oblivious-set": "1.0.0", + "rimraf": "3.0.2", + "unload": "2.2.0" + } + }, + "node_modules/browserslist": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==", + "dev": true, + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-callsite/node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==", + "dev": true, + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001576", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001576.tgz", + "integrity": "sha512-ff5BdakGe2P3SQsMsiqmt1Lc8221NR1VzHj5jXN5vBny9A6fpze94HiVV/n7XRosOlsShJcvMv5mdnpjOGCEgg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chart.js": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.3.0.tgz", + "integrity": "sha512-ynG0E79xGfMaV2xAHdbhwiPLczxnNNnasrmPEXriXsPJGjmhOBYzFVEsB65w2qMDz+CaBJJuJD0inE/ab/h36g==", + "dependencies": { + "@kurkle/color": "^0.3.0" + }, + "engines": { + "pnpm": ">=7" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/classnames": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.5.1.tgz", + "integrity": "sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==" + }, + "node_modules/clean-stack": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-4.2.0.tgz", + "integrity": "sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clean-stack/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/clsx": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.0.tgz", + "integrity": "sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "dev": true, + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/coa/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/coa/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/coa/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/color": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/color/-/color-3.2.1.tgz", + "integrity": "sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.3", + "color-string": "^1.6.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dev": true, + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/colors": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", + "integrity": "sha512-OsSVtHK8Ir8r3+Fxw/b4jS1ZLPXkV6ZxDRJQzeD7qo0SqMXWrHDM71DgYzPMHY8SFJ0Ao+nNU2p1MmwdzKqPrw==", + "dev": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" + }, + "node_modules/copy-to-clipboard": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/copy-to-clipboard/-/copy-to-clipboard-3.3.3.tgz", + "integrity": "sha512-2KV8NhB5JqC3ky0r9PMCAZKbUHSwtEo4CwCs0KXgruG43gX5PMqDEBbVU4OUzw2MuAWUfsuFmWvEKG5QRfSnJA==", + "dependencies": { + "toggle-selection": "^1.0.6" + } + }, + "node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.", + "dev": true, + "hasInstallScript": true + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha512-zj5D7X1U2h2zsXOAM8EyUREBnnts6H+Jm+d1M2DbiQQcUtnqgQsMrdo8JW9R80YFUmIdBZeMu5wvYM7hcgWP/Q==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "engines": { + "node": ">4" + } + }, + "node_modules/css-declaration-sorter/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/css-declaration-sorter/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/css-loader": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", + "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", + "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.7", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "dev": true + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "dev": true, + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", + "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", + "dev": true, + "dependencies": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.7", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-preset-default": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz", + "integrity": "sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ==", + "dev": true, + "dependencies": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.3", + "postcss-unique-selectors": "^4.0.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-preset-default/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/cssnano-preset-default/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha512-6RIcwmV3/cBMG8Aj5gucQRsJb4vv4I4rn6YjPbVWd5+Pn/fuG+YseGvXGk00XLkoZkaj31QOD7vMUpNPC4FIuw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha512-JPMZ1TSMRUPVIqEalIBNoBtAYbi8okvcFns4O0YIhcdGebeYZK7dMyHJiQ6GqNBA9kE0Hym4Aqym5rPdsV/4Cw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/cssnano-util-raw-cache/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/cssnano/node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "dev": true, + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==", + "dev": true, + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/cssnano/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/cssnano/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/cssnano/node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dev": true, + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dev": true, + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "dev": true + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.2.1.tgz", + "integrity": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/del": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/del/-/del-7.0.0.tgz", + "integrity": "sha512-tQbV/4u5WVB8HMJr08pgw0b6nG4RGt/tj+7Numvq+zqcvUFeMaIWWOUFltiU+6go8BSO2/ogsB4EasDaj0y68Q==", + "dev": true, + "dependencies": { + "globby": "^13.1.2", + "graceful-fs": "^4.2.10", + "is-glob": "^4.0.3", + "is-path-cwd": "^3.0.0", + "is-path-inside": "^4.0.0", + "p-map": "^5.5.0", + "rimraf": "^3.0.2", + "slash": "^4.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/del/node_modules/globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "dev": true, + "dependencies": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/dom-serializer/node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "dev": true, + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.629", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.629.tgz", + "integrity": "sha512-5UUkr3k3CZ/k+9Sw7vaaIMyOzMC0XbPyprKI3n0tbKDqkzTDOjK4izm7DxlkueRMim6ZZQ1ja9F7hoFVplHihA==", + "dev": true + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.0.tgz", + "integrity": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==", + "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true + }, + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", + "dev": true + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", + "@humanwhocodes/config-array": "^0.11.13", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.5.tgz", + "integrity": "sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w==", + "dev": true, + "peerDependencies": { + "eslint": ">=7" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint/node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-2.1.0.tgz", + "integrity": "sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^3.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": "^8.12.0 || >=9.7.0" + } + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.16", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", + "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", + "dev": true, + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/fastq": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/findup": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/findup/-/findup-0.1.5.tgz", + "integrity": "sha512-Udxo3C9A6alt2GZ2MNsgnIvX7De0V3VGxeP/x98NSVgSlizcDHdmJza61LI7zJy4OEtSiJyE72s0/+tBl5/ZxA==", + "dev": true, + "dependencies": { + "colors": "~0.6.0-1", + "commander": "~2.1.0" + }, + "bin": { + "findup": "bin/findup.js" + }, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/findup/node_modules/commander": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz", + "integrity": "sha512-J2wnb6TKniXNOtoHS8TSrG9IOQluPrsmyAJ8oCUJOBmv+uLBCyPYAZkD2jFvw2DCzIXNnISIM01NIvr35TkBMQ==", + "dev": true, + "engines": { + "node": ">= 0.6.x" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatpickr": { + "version": "4.6.13", + "resolved": "https://registry.npmjs.org/flatpickr/-/flatpickr-4.6.13.tgz", + "integrity": "sha512-97PMG/aywoYpB4IvbvUJi0RQi8vearvU0oov1WW3k0WZPBMrTQVqekSX5CjSG/M4Q3i6A/0FKXC7RyAoAUUSPw==" + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.4", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz", + "integrity": "sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/formik": { + "version": "2.2.9", + "resolved": "https://registry.npmjs.org/formik/-/formik-2.2.9.tgz", + "integrity": "sha512-LQLcISMmf1r5at4/gyJigGn0gOwFbeEAlji+N9InZF6LIMXnFNkO42sCI8Jt84YZggpD4cPWObAZaxpEFtSzNA==", + "funding": [ + { + "type": "individual", + "url": "https://opencollective.com/formik" + } + ], + "dependencies": { + "deepmerge": "^2.1.1", + "hoist-non-react-statics": "^3.3.0", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "react-fast-compare": "^2.0.1", + "tiny-warning": "^1.0.2", + "tslib": "^1.10.0" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/formik/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "dev": true, + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.4.tgz", + "integrity": "sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "dev": true + }, + "node_modules/history": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/history/-/history-5.3.0.tgz", + "integrity": "sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==", + "dependencies": { + "@babel/runtime": "^7.7.6" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha512-M5ezZw4LzXbBKMruP+BNANf0k+19hDQMgpzBIYnya//Al+fjNct9Wf3b1WedLqdEs2hKBvxq/jh+DsHJLj0F9A==", + "dev": true + }, + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha512-7Wn5GMLuHBjZCb2bTmnDOycho0p/7UVaAeqXZGbHrBCl6Yd/xDhQJAXe6Ga9AXJH2I5zY1dEdYw2u1UptnSBJA==", + "dev": true + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA==", + "dev": true + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/internal-slot": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/interpret": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", + "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/intl-messageformat": { + "version": "10.5.8", + "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-10.5.8.tgz", + "integrity": "sha512-NRf0jpBWV0vd671G5b06wNofAN8tp7WWDogMZyaU8GUAsmbouyvgwmFJI7zLjfAMpm3zK+vSwRP3jzaoIcMbaA==", + "dependencies": { + "@formatjs/ecma402-abstract": "1.18.0", + "@formatjs/fast-memoize": "2.2.0", + "@formatjs/icu-messageformat-parser": "2.7.3", + "tslib": "^2.4.0" + } + }, + "node_modules/intl-messageformat/node_modules/@formatjs/ecma402-abstract": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.0.tgz", + "integrity": "sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==", + "dependencies": { + "@formatjs/intl-localematcher": "0.5.2", + "tslib": "^2.4.0" + } + }, + "node_modules/intl-messageformat/node_modules/@formatjs/intl-localematcher": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.2.tgz", + "integrity": "sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha512-vOx7VprsKyllwjSkLV79NIhpyLfr3jAp7VaTCMXOJHu4m0Ew1CZ2fcjASwmV1jI3BWuWHB013M48eyeldk9gYg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha512-H1U8Vz0cfXNujrJzEcvvwMDW9Ra+biSYA3ThdQvAnMLJkEHQXn6bWzLkxHtVYJ+Sdbx0b6finn3jZiaVe7MAHA==", + "dev": true, + "dependencies": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-path-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-3.0.0.tgz", + "integrity": "sha512-kyiNFFLU0Ampr6SDZitD/DwUo4Zs1nSdnygUBqsu3LooL00Qvb5j+UnvApUn/TTj1J3OuE6BTdQ5rudKmU2ZaA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-path-inside": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz", + "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-base64": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", + "dev": true + }, + "node_modules/js-sha3": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz", + "integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/line-awesome": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/line-awesome/-/line-awesome-1.3.0.tgz", + "integrity": "sha512-Y0YHksL37ixDsHz+ihCwOtF5jwJgCDxQ3q+zOVgaSW8VugHGTsZZXMacPYZB1/JULBi6BAuTCTek+4ZY/UIwcw==" + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/match-sorter": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.1.tgz", + "integrity": "sha512-mxybbo3pPNuA+ZuCUhm5bwNkXrJTbsk5VWbR5wiwz/GC6LIiegBGn2w3O08UG/jdbYLinw51fSQ5xNU1U3MgBw==", + "dependencies": { + "@babel/runtime": "^7.12.5", + "remove-accents": "0.4.2" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "dev": true + }, + "node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/microseconds": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/microseconds/-/microseconds-0.2.0.tgz", + "integrity": "sha512-n7DHHMjR1avBbSpsTBj6fmMGh2AGrifVV4e+WYc3Q9lO+xnSZ3NyhcBND3vzzatt05LFhoKFRxrIyklmLlUtyA==" + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.6.1.tgz", + "integrity": "sha512-wd+SD57/K6DiV7jIR34P+s3uckTRuQvx0tKPcvjFlrEylk6P4mQ2KSWk1hblj1Kxaqok7LogKOieygXqBczNlg==", + "dev": true, + "dependencies": { + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" + } + }, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/moment": { + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", + "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/mount-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mount-point/-/mount-point-3.0.0.tgz", + "integrity": "sha512-jAhfD7ZCG+dbESZjcY1SdFVFqSJkh/yGbdsifHcPkvuLRO5ugK0Ssmd9jdATu29BTd4JiN+vkpMzVvsUgP3SZA==", + "dev": true, + "dependencies": { + "@sindresorhus/df": "^1.0.1", + "pify": "^2.3.0", + "pinkie-promise": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mount-point/node_modules/@sindresorhus/df": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@sindresorhus/df/-/df-1.0.1.tgz", + "integrity": "sha512-1Hyp7NQnD/u4DSxR2DGW78TF9k7R0wZ8ev0BpMAIzA6yTQSHqNb5wTuvtcPYf4FWbVse2rW7RgDsyL8ua2vXHw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/move-file": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/move-file/-/move-file-2.1.0.tgz", + "integrity": "sha512-i9qLW6gqboJ5Ht8bauZi7KlTnQ3QFpBCvMvFfEcHADKgHGeJ9BZMO7SFCTwHPV9Qa0du9DYY1Yx3oqlGt30nXA==", + "dev": true, + "dependencies": { + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10.17" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nano-time": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/nano-time/-/nano-time-1.0.0.tgz", + "integrity": "sha512-flnngywOoQ0lLQOTRNexn2gGSNuM9bKj9RZAWSzhQ+UJYaAFG9bac4DW9VHjUAzrOaIcajHybCTHe/bkvozQqA==", + "dependencies": { + "big-integer": "^1.6.16" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/nouislider": { + "version": "15.5.1", + "resolved": "https://registry.npmjs.org/nouislider/-/nouislider-15.5.1.tgz", + "integrity": "sha512-V8LNPhLPXLNjkgXLfyzDRGDeKvzZeaiIx5YagMiHnOMqgcRzT75jqvEZYXbSrEffXouwcEShSd8Vllm2Nkwqew==" + }, + "node_modules/npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "dev": true, + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz", + "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==", + "dev": true, + "dependencies": { + "array.prototype.reduce": "^1.0.6", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "safe-array-concat": "^1.0.0" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/oblivious-set": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/oblivious-set/-/oblivious-set-1.0.0.tgz", + "integrity": "sha512-z+pI07qxo4c2CulUHCDf9lcqDlMSo72N/4rLUpRXf6fu+q8vjt8y0xS+Tlf8NTJDdTXHbdeO1n3MlbctwEoXZw==" + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-finally": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz", + "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-5.5.0.tgz", + "integrity": "sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==", + "dev": true, + "dependencies": { + "aggregate-error": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss": { + "version": "8.4.33", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz", + "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/postcss-calc/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-calc/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-colormin/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-colormin/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-colormin/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-convert-values/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-convert-values/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-convert-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-comments/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-discard-comments/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-duplicates/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-discard-duplicates/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-empty/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-discard-empty/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-overridden/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-discard-overridden/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "dev": true, + "dependencies": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-longhand/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-merge-longhand/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-merge-longhand/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-rules/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-merge-rules/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-font-values/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-minify-font-values/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-minify-font-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-gradients/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-minify-gradients/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-minify-gradients/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-params/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-minify-params/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-minify-params/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-selectors/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-minify-selectors/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "dev": true, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.1.0.tgz", + "integrity": "sha512-SaIbK8XW+MZbd0xHPf7kdfA/3eOt7vxJ72IRecn3EzuZVLr1r0orzf0MX/pN8m+NMDoo6X/SQd8oeKqGZd8PXg==", + "dev": true, + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dev": true, + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-charset/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-normalize-charset/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "dev": true, + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-normalize-display-values/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-display-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-positions/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-normalize-positions/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-positions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-repeat-style/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-normalize-repeat-style/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-repeat-style/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "dev": true, + "dependencies": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-string/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-normalize-string/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-string/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "dev": true, + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-timing-functions/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-normalize-timing-functions/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-timing-functions/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-unicode/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-normalize-unicode/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-unicode/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "dev": true, + "dependencies": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-url/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-normalize-url/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-url/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-whitespace/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-normalize-whitespace/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-normalize-whitespace/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "dev": true, + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-ordered-values/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-ordered-values/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-ordered-values/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-initial/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-reduce-initial/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "dev": true, + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-reduce-transforms/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-reduce-transforms/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.3.tgz", + "integrity": "sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw==", + "dev": true, + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-svgo/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-svgo/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-svgo/node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "dev": true + }, + "node_modules/postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "dev": true, + "dependencies": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-unique-selectors/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/postcss-unique-selectors/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/prism-react-renderer": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-2.0.5.tgz", + "integrity": "sha512-VHTC2ZhOImeC3/mu/3TkEuRCa1K+kTCZQeCkwvWzQa01/ahU3dibyxWf3XiPLuO4k/rGjSTea1lEsfza6fMofw==", + "dependencies": { + "@types/prismjs": "^1.26.0", + "clsx": "^1.2.1" + }, + "peerDependencies": { + "react": ">=16.0.0" + } + }, + "node_modules/prism-react-renderer/node_modules/clsx": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz", + "integrity": "sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/prism-themes": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/prism-themes/-/prism-themes-1.9.0.tgz", + "integrity": "sha512-tX2AYsehKDw1EORwBps+WhBFKc2kxfoFpQAjxBndbZKr4fRmMkv47XN0BghC/K1qwodB1otbe4oF23vUTFDokw==" + }, + "node_modules/prismjs": { + "version": "1.28.0", + "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.28.0.tgz", + "integrity": "sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types-extra": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.1.tgz", + "integrity": "sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==", + "dependencies": { + "react-is": "^16.3.2", + "warning": "^4.0.0" + }, + "peerDependencies": { + "react": ">=0.14.0" + } + }, + "node_modules/property-expr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/property-expr/-/property-expr-2.0.6.tgz", + "integrity": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==", + "dev": true, + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-apexcharts": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/react-apexcharts/-/react-apexcharts-1.4.0.tgz", + "integrity": "sha512-DrcMV4aAMrUG+n6412yzyATWEyCDWlpPBBhVbpzBC4PDeuYU6iF84SmExbck+jx5MUm4U5PM3/T307Mc3kzc9Q==", + "dependencies": { + "prop-types": "^15.5.7" + }, + "peerDependencies": { + "apexcharts": "^3.18.0", + "react": ">=0.13" + } + }, + "node_modules/react-bootstrap": { + "version": "2.5.0-beta.1", + "resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-2.5.0-beta.1.tgz", + "integrity": "sha512-brHUvpjJrNmShg2xjT3qNfZ7mKLEUyGvh+wp+IgxcFKrh7BPKzpbAtJYa2S1QJx5MuPBT/D0ywMFbz1LBY0Qvg==", + "dependencies": { + "@babel/runtime": "^7.17.2", + "@restart/hooks": "^0.4.6", + "@restart/ui": "^1.3.0", + "@types/react-transition-group": "^4.4.4", + "classnames": "^2.3.1", + "dom-helpers": "^5.2.1", + "invariant": "^2.2.4", + "prop-types": "^15.8.1", + "prop-types-extra": "^1.1.0", + "react-transition-group": "^4.4.2", + "uncontrollable": "^7.2.1", + "warning": "^4.0.3" + }, + "peerDependencies": { + "@types/react": ">=16.14.8", + "react": ">=16.14.0", + "react-dom": ">=16.14.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-copy-to-clipboard": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/react-copy-to-clipboard/-/react-copy-to-clipboard-5.1.0.tgz", + "integrity": "sha512-k61RsNgAayIJNoy9yDsYzDe/yAZAzEbEgcz3DZMhF686LEyukcE1hzurxe85JandPUG+yTfGVFzuEw3xt8WP/A==", + "dependencies": { + "copy-to-clipboard": "^3.3.1", + "prop-types": "^15.8.1" + }, + "peerDependencies": { + "react": "^15.3.0 || 16 || 17 || 18" + } + }, + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" + }, + "peerDependencies": { + "react": "^18.2.0" + } + }, + "node_modules/react-fast-compare": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-2.0.4.tgz", + "integrity": "sha512-suNP+J1VU1MWFKcyt7RtjiSWUjvidmQSlqu+eHslq+342xCbGTYmC0mEhPCOHxlW0CywylOC1u2DFAT+bv4dBw==" + }, + "node_modules/react-flatpickr": { + "version": "3.10.13", + "resolved": "https://registry.npmjs.org/react-flatpickr/-/react-flatpickr-3.10.13.tgz", + "integrity": "sha512-4m+K1K8jhvRFI8J/AHmQfA5hLALzhebEtEK8mLevXjX24MV3u502crzBn+EGFIBOfNUtrL5PId9FsGwgtuz/og==", + "dependencies": { + "flatpickr": "^4.6.2", + "prop-types": "^15.5.10" + }, + "peerDependencies": { + "react": ">=16, <=18" + } + }, + "node_modules/react-from-dom": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/react-from-dom/-/react-from-dom-0.6.2.tgz", + "integrity": "sha512-qvWWTL/4xw4k/Dywd41RBpLQUSq97csuv15qrxN+izNeLYlD9wn5W8LspbfYe5CWbaSdkZ72BsaYBPQf2x4VbQ==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-inlinesvg": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/react-inlinesvg/-/react-inlinesvg-4.1.0.tgz", + "integrity": "sha512-S7kSE6ldKVpumEYTNXmCs4pAKoDzklP6TklI8oBx23fw8/+VBwO5X0M7/Ii0weieO1DqElUJg5EI8cq7zo5oPg==", + "dependencies": { + "react-from-dom": "^0.6.2" + }, + "peerDependencies": { + "react": "16.8 - 18" + } + }, + "node_modules/react-intl": { + "version": "6.5.5", + "resolved": "https://registry.npmjs.org/react-intl/-/react-intl-6.5.5.tgz", + "integrity": "sha512-cI5UKvBh4tc1zxLIziHBYGMX3dhYWDEFlvUDVN6NfT2i96zTXz/zH2AmM8+2waqgOhwkFUzd+7kK1G9q7fiC2g==", + "dependencies": { + "@formatjs/ecma402-abstract": "1.18.0", + "@formatjs/icu-messageformat-parser": "2.7.3", + "@formatjs/intl": "2.9.9", + "@formatjs/intl-displaynames": "6.6.4", + "@formatjs/intl-listformat": "7.5.3", + "@types/hoist-non-react-statics": "^3.3.1", + "@types/react": "16 || 17 || 18", + "hoist-non-react-statics": "^3.3.2", + "intl-messageformat": "10.5.8", + "tslib": "^2.4.0" + }, + "peerDependencies": { + "react": "^16.6.0 || 17 || 18", + "typescript": "5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/react-intl/node_modules/@formatjs/ecma402-abstract": { + "version": "1.18.0", + "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.18.0.tgz", + "integrity": "sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==", + "dependencies": { + "@formatjs/intl-localematcher": "0.5.2", + "tslib": "^2.4.0" + } + }, + "node_modules/react-intl/node_modules/@formatjs/intl-localematcher": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.5.2.tgz", + "integrity": "sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==", + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-query": { + "version": "3.38.0", + "resolved": "https://registry.npmjs.org/react-query/-/react-query-3.38.0.tgz", + "integrity": "sha512-VRbCTRrDfC5FsB70+JfZuxFRv9SAvkZ1h36MsN8+QaDN+NWB6s1vJndqpoLQnJqN0COTG2zsInMq0KFdYze6TA==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "broadcast-channel": "^3.4.1", + "match-sorter": "^6.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, + "node_modules/react-router": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.3.0.tgz", + "integrity": "sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==", + "dependencies": { + "history": "^5.2.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/react-router-dom": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.3.0.tgz", + "integrity": "sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==", + "dependencies": { + "history": "^5.2.0", + "react-router": "6.3.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/react-select": { + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/react-select/-/react-select-5.8.0.tgz", + "integrity": "sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==", + "dependencies": { + "@babel/runtime": "^7.12.0", + "@emotion/cache": "^11.4.0", + "@emotion/react": "^11.8.1", + "@floating-ui/dom": "^1.0.1", + "@types/react-transition-group": "^4.4.0", + "memoize-one": "^6.0.0", + "prop-types": "^15.6.0", + "react-transition-group": "^4.3.0", + "use-isomorphic-layout-effect": "^1.1.2" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-table": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/react-table/-/react-table-7.8.0.tgz", + "integrity": "sha512-hNaz4ygkZO4bESeFfnfOft73iBUj8K5oKi1EcSHPAibEydfsX2MyU6Z8KCr3mv3C9Kqqh71U+DhZkFvibbnPbA==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^16.8.3 || ^17.0.0-0 || ^18.0.0" + } + }, + "node_modules/react-topbar-progress-indicator": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/react-topbar-progress-indicator/-/react-topbar-progress-indicator-4.1.1.tgz", + "integrity": "sha512-Oy3ENNKfymt16zoz5SYy/WOepMurB0oeZEyvuHm8JZ3jrTCe1oAUD7fG6HhYt5sg8Wcg5gdkzSWItaFF6c6VhA==", + "dependencies": { + "topbar": "^0.1.3" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/rechoir": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", + "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", + "dev": true, + "dependencies": { + "resolve": "^1.20.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/remove-accents": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.4.2.tgz", + "integrity": "sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==" + }, + "node_modules/remove-files-webpack-plugin": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/remove-files-webpack-plugin/-/remove-files-webpack-plugin-1.5.0.tgz", + "integrity": "sha512-PWxldMWpXKmqAv0Lc6Gy1+9QnMLJad94xKSrD3mJLHuZbifVcbTaJn5iZY1YUqPv56GnvMdJZfU8807NxKhtvg==", + "dev": true, + "dependencies": { + "@types/webpack": "5.28.0", + "trash": "7.2.0" + }, + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "webpack": ">=2.2.0" + } + }, + "node_modules/remove-files-webpack-plugin/node_modules/@types/webpack": { + "version": "5.28.0", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-5.28.0.tgz", + "integrity": "sha512-8cP0CzcxUiFuA9xGJkfeVpqmWTk9nx6CWwamRGCj95ph1SmlRRk9KlCZ6avhCbZd4L68LvYT6l1kpdEnQXrF8w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "tapable": "^2.2.0", + "webpack": "^5" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha512-gDK5mkALDFER2YLqH6imYvK6g02gpNGM4ILDZ472EwWfXZnC2ZEpoB2ECXTyOVUKuk/bPJZMzwQPBYICzP+D3w==", + "dev": true + }, + "node_modules/rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha512-zgn5OjNQXLUTdq8m17KdaicF6w89TZs8ZU8y0AYENIU6wG8GG6LLm0yLSiPY8DmaYmHdgRW8rnApjoT0fQRfMg==", + "dev": true + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "3.29.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", + "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/rtlcss": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-3.5.0.tgz", + "integrity": "sha512-wzgMaMFHQTnyi9YOwsx9LjOxYXJPzS8sYnFaKm6R5ysvTkwzHiB0vxnbHwchHQT65PTdBjDG21/kQBWI7q9O7A==", + "dev": true, + "dependencies": { + "find-up": "^5.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.3.11", + "strip-json-comments": "^3.1.1" + }, + "bin": { + "rtlcss": "bin/rtlcss.js" + } + }, + "node_modules/rtlcss-webpack-plugin": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/rtlcss-webpack-plugin/-/rtlcss-webpack-plugin-4.0.7.tgz", + "integrity": "sha512-ouSbJtgcLBBQIsMgarxsDnfgRqm/AS4BKls/mz/Xb6HSl+PdEzefTR+Wz5uWQx4odoX0g261Z7yb3QBz0MTm0g==", + "dev": true, + "dependencies": { + "babel-runtime": "~6.25.0", + "rtlcss": "^3.5.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.2.tgz", + "integrity": "sha512-83S9w6eFq12BBIJYvjMux6/dkirb8+4zJRA9cxNBVb7Wq5fJBW+Xze48WqR8pxua7bDuAaaAxtVVd4Idjp1dBQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sass": { + "version": "1.55.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.55.0.tgz", + "integrity": "sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/sass-loader": { + "version": "13.2.0", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.2.0.tgz", + "integrity": "sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg==", + "dev": true, + "dependencies": { + "klona": "^2.0.4", + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "node_modules/scheduler": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", + "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/schema-utils/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dev": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + }, + "node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/socicon": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/socicon/-/socicon-3.0.5.tgz", + "integrity": "sha512-R2GmwmuntealTaGbIoFN8rcUtytwE5BK5Xqs5I/jWzOtp4q8iGCHwg6B2OIKtl6aDVI6+TpVljzJph+La0T/tg==" + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility", + "dev": true + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "dev": true, + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/stylehacks/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==", + "dev": true + }, + "node_modules/stylehacks/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dev": true, + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/stylehacks/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "dev": true, + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/stylis": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg.draggable.js": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/svg.draggable.js/-/svg.draggable.js-2.2.2.tgz", + "integrity": "sha512-JzNHBc2fLQMzYCZ90KZHN2ohXL0BQJGQimK1kGk6AvSeibuKcIdDX9Kr0dT9+UJ5O8nYA0RB839Lhvk4CY4MZw==", + "dependencies": { + "svg.js": "^2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.easing.js": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/svg.easing.js/-/svg.easing.js-2.0.0.tgz", + "integrity": "sha512-//ctPdJMGy22YoYGV+3HEfHbm6/69LJUTAqI2/5qBvaNHZ9uUFVC82B0Pl299HzgH13rKrBgi4+XyXXyVWWthA==", + "dependencies": { + "svg.js": ">=2.3.x" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.filter.js": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/svg.filter.js/-/svg.filter.js-2.0.2.tgz", + "integrity": "sha512-xkGBwU+dKBzqg5PtilaTb0EYPqPfJ9Q6saVldX+5vCRy31P6TlRCP3U9NxH3HEufkKkpNgdTLBJnmhDHeTqAkw==", + "dependencies": { + "svg.js": "^2.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.js": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/svg.js/-/svg.js-2.7.1.tgz", + "integrity": "sha512-ycbxpizEQktk3FYvn/8BH+6/EuWXg7ZpQREJvgacqn46gIddG24tNNe4Son6omdXCnSOaApnpZw6MPCBA1dODA==" + }, + "node_modules/svg.pathmorphing.js": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/svg.pathmorphing.js/-/svg.pathmorphing.js-0.1.3.tgz", + "integrity": "sha512-49HWI9X4XQR/JG1qXkSDV8xViuTLIWm/B/7YuQELV5KMOPtXjiwH4XPJvr/ghEDibmLQ9Oc22dpWpG0vUDDNww==", + "dependencies": { + "svg.js": "^2.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.resize.js": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/svg.resize.js/-/svg.resize.js-1.4.3.tgz", + "integrity": "sha512-9k5sXJuPKp+mVzXNvxz7U0uC9oVMQrrf7cFsETznzUDDm0x8+77dtZkWdMfRlmbkEEYvUn9btKuZ3n41oNA+uw==", + "dependencies": { + "svg.js": "^2.6.5", + "svg.select.js": "^2.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.resize.js/node_modules/svg.select.js": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/svg.select.js/-/svg.select.js-2.1.2.tgz", + "integrity": "sha512-tH6ABEyJsAOVAhwcCjF8mw4crjXSI1aa7j2VQR8ZuJ37H2MBUbyeqYr5nEO7sSN3cy9AR9DUwNg0t/962HlDbQ==", + "dependencies": { + "svg.js": "^2.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svg.select.js": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/svg.select.js/-/svg.select.js-3.0.1.tgz", + "integrity": "sha512-h5IS/hKkuVCbKSieR9uQCj9w+zLHoPh+ce19bBYyqF53g6mnPB8sAtIbe1s9dh2S2fCmYX2xel1Ln3PJBbK4kw==", + "dependencies": { + "svg.js": "^2.6.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/svgo/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/svgo/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/svgo/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/terser": { + "version": "5.26.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.26.0.tgz", + "integrity": "sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==", + "dev": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha512-qsdtZH+vMoCARQtyod4imc2nIJwg9Cc7lPRrw9CzF8ZKR0khdr8+2nX80PBhET3tcyTtJDxAffGh2rXH4tyU8A==", + "dev": true + }, + "node_modules/tiny-case": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-case/-/tiny-case-1.0.3.tgz", + "integrity": "sha512-Eet/eeMhkO6TX8mnUteS9zgPbUMQa4I6Kkp5ORiBD5476/m+PIRiumP5tmh5ioJpH7k51Kehawy2UDfsnxxY8Q==" + }, + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toggle-selection": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/toggle-selection/-/toggle-selection-1.0.6.tgz", + "integrity": "sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==" + }, + "node_modules/topbar": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/topbar/-/topbar-0.1.4.tgz", + "integrity": "sha512-P3n4WnN4GFd2mQXDo30rQmsAGe4V1bVkggtTreSbNyL50Fyc+eVkW5oatSLeGQmJoan2TLIgoXUZypN+6nw4MQ==" + }, + "node_modules/toposort": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/toposort/-/toposort-2.0.2.tgz", + "integrity": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" + }, + "node_modules/trash": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/trash/-/trash-7.2.0.tgz", + "integrity": "sha512-3bR8Z5aWO8b9qybS6skBoaavH/hX9Onb1RrdIIhJxv9VpH3aBtpbKuAX4rIh/0xpDZ7K4ga36wONk/okbhjTlA==", + "dev": true, + "dependencies": { + "@stroncium/procfs": "^1.2.1", + "globby": "^7.1.1", + "is-path-inside": "^3.0.2", + "make-dir": "^3.1.0", + "move-file": "^2.0.0", + "p-map": "^4.0.0", + "uuid": "^8.3.2", + "xdg-trashdir": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/trash/node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/trash/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/trash/node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/trash/node_modules/dir-glob": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz", + "integrity": "sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw==", + "dev": true, + "dependencies": { + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/trash/node_modules/globby": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz", + "integrity": "sha512-yANWAN2DUcBtuus5Cpd+SKROzXHs2iVXFZt/Ykrfz6SAXqacLX25NZpltE+39ceMexYF4TtEadjuSTw8+3wX4g==", + "dev": true, + "dependencies": { + "array-union": "^1.0.1", + "dir-glob": "^2.0.0", + "glob": "^7.1.2", + "ignore": "^3.3.5", + "pify": "^3.0.0", + "slash": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/trash/node_modules/ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "dev": true + }, + "node_modules/trash/node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/trash/node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/trash/node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/trash/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/trash/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/trash/node_modules/slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "dev": true, + "engines": { + "node": ">=16.13.0" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", + "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", + "devOptional": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/uncontrollable": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", + "integrity": "sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==", + "dependencies": { + "@babel/runtime": "^7.6.3", + "@types/react": ">=16.9.11", + "invariant": "^2.2.4", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": ">=15.0.0" + } + }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA==", + "dev": true + }, + "node_modules/uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha512-mZdDpf3vBV5Efh29kMw5tXoup/buMgxLzOt/XKFKcVmi+15ManNQWr6HfZ2aiZTYlYixbdNJ0KFmIZIv52tHSQ==", + "dev": true + }, + "node_modules/unload": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unload/-/unload-2.2.0.tgz", + "integrity": "sha512-B60uB5TNBLtN6/LsgAf3udH9saB5p7gqJwcFfbOEZ8BcBHnGwCf6G/TGiEqkRAxX7zAFIUtzdrXQSdL3Q/wqNA==", + "dependencies": { + "@babel/runtime": "^7.6.2", + "detect-node": "^2.0.4" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==", + "dev": true + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-isomorphic-layout-effect": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.1.2.tgz", + "integrity": "sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/user-home": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", + "integrity": "sha512-KMWqdlOcjCYdtIJpicDSFBQ8nFwS2i9sslAd6f4+CBGcU4gist2REnr2fxj2YocvJFxSF3ZOHLYLVZnUxv4BZQ==", + "dev": true, + "dependencies": { + "os-homedir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "dev": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "dev": true, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/vite": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.1.tgz", + "integrity": "sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==", + "dev": true, + "dependencies": { + "esbuild": "^0.18.10", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/warning": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz", + "integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack": { + "version": "5.74.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.74.0.tgz", + "integrity": "sha512-A2InDwnhhGN4LYctJj6M1JEaGL7Luj6LOmyBHjcI8529cm5p6VXiTIW2sn6ffvEAKmveLzvu4jrihwXtPojlAA==", + "dev": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/wasm-edit": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.7.6", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.1.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.1.3", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-cli": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", + "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", + "dev": true, + "dependencies": { + "@discoveryjs/json-ext": "^0.5.0", + "@webpack-cli/configtest": "^2.1.1", + "@webpack-cli/info": "^2.0.2", + "@webpack-cli/serve": "^2.0.5", + "colorette": "^2.0.14", + "commander": "^10.0.1", + "cross-spawn": "^7.0.3", + "envinfo": "^7.7.3", + "fastest-levenshtein": "^1.0.12", + "import-local": "^3.0.2", + "interpret": "^3.1.1", + "rechoir": "^0.8.0", + "webpack-merge": "^5.7.3" + }, + "bin": { + "webpack-cli": "bin/cli.js" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "5.x.x" + }, + "peerDependenciesMeta": { + "@webpack-cli/generators": { + "optional": true + }, + "webpack-bundle-analyzer": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + } + } + }, + "node_modules/webpack-cli/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/webpack-merge": { + "version": "5.10.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", + "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", + "dev": true, + "dependencies": { + "clone-deep": "^4.0.1", + "flat": "^5.0.2", + "wildcard": "^2.0.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/webpack-rtl-plugin": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-rtl-plugin/-/webpack-rtl-plugin-2.0.0.tgz", + "integrity": "sha512-lROgFkiPjapg9tcZ8FiLWeP5pJoG00018aEjLTxSrVldPD1ON+LPlhKPHjb7eE8Bc0+KL23pxcAjWDGOv9+UAw==", + "dev": true, + "dependencies": { + "@romainberger/css-diff": "^1.0.3", + "async": "^2.0.0", + "cssnano": "4.1.10", + "rtlcss": "2.4.0", + "webpack-sources": "1.3.0" + } + }, + "node_modules/webpack-rtl-plugin/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-rtl-plugin/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-rtl-plugin/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/webpack-rtl-plugin/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/webpack-rtl-plugin/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/webpack-rtl-plugin/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-rtl-plugin/node_modules/postcss": { + "version": "6.0.23", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", + "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", + "dev": true, + "dependencies": { + "chalk": "^2.4.1", + "source-map": "^0.6.1", + "supports-color": "^5.4.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack-rtl-plugin/node_modules/rtlcss": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/rtlcss/-/rtlcss-2.4.0.tgz", + "integrity": "sha512-hdjFhZ5FCI0ABOfyXOMOhBtwPWtANLCG7rOiOcRf+yi5eDdxmDjqBruWouEnwVdzfh/TWF6NNncIEsigOCFZOA==", + "dev": true, + "dependencies": { + "chalk": "^2.3.0", + "findup": "^0.1.5", + "mkdirp": "^0.5.1", + "postcss": "^6.0.14", + "strip-json-comments": "^2.0.0" + }, + "bin": { + "rtlcss": "bin/rtlcss.js" + } + }, + "node_modules/webpack-rtl-plugin/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-rtl-plugin/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-rtl-plugin/node_modules/webpack-sources": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz", + "integrity": "sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==", + "dev": true, + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/webpack/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wildcard": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", + "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/xdg-basedir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", + "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/xdg-trashdir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/xdg-trashdir/-/xdg-trashdir-3.1.0.tgz", + "integrity": "sha512-N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ==", + "dev": true, + "dependencies": { + "@sindresorhus/df": "^3.1.1", + "mount-point": "^3.0.0", + "user-home": "^2.0.0", + "xdg-basedir": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yup": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/yup/-/yup-1.3.3.tgz", + "integrity": "sha512-v8QwZSsHH2K3/G9WSkp6mZKO+hugKT1EmnMqLNUcfu51HU9MDyhlETT/JgtzprnrnQHPWsjc6MUDMBp/l9fNnw==", + "dependencies": { + "property-expr": "^2.0.5", + "tiny-case": "^1.0.3", + "toposort": "^2.0.2", + "type-fest": "^2.19.0" + } + }, + "node_modules/yup/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..9ed5608 --- /dev/null +++ b/package.json @@ -0,0 +1,78 @@ +{ + "name": "WrenchAgents", + "private": true, + "version": "8.2.3", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc && vite build", + "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", + "preview": "vite preview --host" + }, + "dependencies": { + "@formatjs/intl-pluralrules": "5.2.4", + "@formatjs/intl-relativetimeformat": "11.2.4", + "@fortawesome/fontawesome-free": "6.1.1", + "@popperjs/core": "^2.11.6", + "animate.css": "4.1.1", + "apexcharts": "3.35.0", + "axios": "1.6.5", + "bootstrap": "5.3.0", + "bootstrap-icons": "^1.5.0", + "chart.js": "4.3.0", + "clsx": "2.1.0", + "formik": "2.2.9", + "line-awesome": "1.3.0", + "nouislider": "15.5.1", + "prism-react-renderer": "2.0.5", + "prism-themes": "1.9.0", + "prismjs": "1.28.0", + "qs": "6.10.3", + "react": "^18.2.0", + "react-apexcharts": "1.4.0", + "react-bootstrap": "2.5.0-beta.1", + "react-copy-to-clipboard": "5.1.0", + "react-dom": "^18.2.0", + "react-flatpickr": "^3.10.13", + "react-inlinesvg": "4.1.0", + "react-intl": "^6.4.4", + "react-query": "3.38.0", + "react-router-dom": "6.3.0", + "react-select": "^5.8.0", + "react-table": "^7.7.0", + "react-topbar-progress-indicator": "4.1.1", + "socicon": "3.0.5", + "yup": "^1.0.0" + }, + "devDependencies": { + "@types/bootstrap": "5.1.10", + "@types/chart.js": "2.9.37", + "@types/jest": "29.5.2", + "@types/node": "20.3.1", + "@types/prismjs": "1.26.0", + "@types/qs": "6.9.7", + "@types/react": "^18.2.15", + "@types/react-copy-to-clipboard": "5.0.2", + "@types/react-dom": "^18.2.7", + "@types/react-table": "^7.7.9", + "@types/sass-loader": "8.0.3", + "@typescript-eslint/eslint-plugin": "^6.0.0", + "@typescript-eslint/parser": "^6.0.0", + "@vitejs/plugin-react-swc": "^3.3.2", + "css-loader": "6.7.1", + "del": "7.0.0", + "eslint": "^8.45.0", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-refresh": "^0.4.3", + "mini-css-extract-plugin": "2.6.1", + "remove-files-webpack-plugin": "^1.5.0", + "rtlcss-webpack-plugin": "4.0.7", + "sass": "1.55.0", + "sass-loader": "13.2.0", + "typescript": "^5.3.3", + "vite": "^4.4.5", + "webpack": "5.74.0", + "webpack-cli": "5.1.4", + "webpack-rtl-plugin": "^2.0.0" + } +} diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..9556081 Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/media/auth/404-error-dark.png b/public/media/auth/404-error-dark.png new file mode 100644 index 0000000..43af447 Binary files /dev/null and b/public/media/auth/404-error-dark.png differ diff --git a/public/media/auth/404-error.png b/public/media/auth/404-error.png new file mode 100644 index 0000000..5e8542f Binary files /dev/null and b/public/media/auth/404-error.png differ diff --git a/public/media/auth/500-error-dark.png b/public/media/auth/500-error-dark.png new file mode 100644 index 0000000..00c1da1 Binary files /dev/null and b/public/media/auth/500-error-dark.png differ diff --git a/public/media/auth/500-error.png b/public/media/auth/500-error.png new file mode 100644 index 0000000..923294e Binary files /dev/null and b/public/media/auth/500-error.png differ diff --git a/public/media/auth/505-error-dark.png b/public/media/auth/505-error-dark.png new file mode 100644 index 0000000..4b202a9 Binary files /dev/null and b/public/media/auth/505-error-dark.png differ diff --git a/public/media/auth/505-error.png b/public/media/auth/505-error.png new file mode 100644 index 0000000..c839fd2 Binary files /dev/null and b/public/media/auth/505-error.png differ diff --git a/public/media/auth/agency-dark.png b/public/media/auth/agency-dark.png new file mode 100644 index 0000000..2e32b40 Binary files /dev/null and b/public/media/auth/agency-dark.png differ diff --git a/public/media/auth/agency.png b/public/media/auth/agency.png new file mode 100644 index 0000000..fefddd5 Binary files /dev/null and b/public/media/auth/agency.png differ diff --git a/public/media/auth/bg1-dark.jpg b/public/media/auth/bg1-dark.jpg new file mode 100644 index 0000000..7d6fa9d Binary files /dev/null and b/public/media/auth/bg1-dark.jpg differ diff --git a/public/media/auth/bg1.jpg b/public/media/auth/bg1.jpg new file mode 100644 index 0000000..a305a07 Binary files /dev/null and b/public/media/auth/bg1.jpg differ diff --git a/public/media/auth/bg10-dark.jpeg b/public/media/auth/bg10-dark.jpeg new file mode 100644 index 0000000..5c73472 Binary files /dev/null and b/public/media/auth/bg10-dark.jpeg differ diff --git a/public/media/auth/bg10.jpeg b/public/media/auth/bg10.jpeg new file mode 100644 index 0000000..5e5040f Binary files /dev/null and b/public/media/auth/bg10.jpeg differ diff --git a/public/media/auth/bg11.png b/public/media/auth/bg11.png new file mode 100644 index 0000000..dae20f6 Binary files /dev/null and b/public/media/auth/bg11.png differ diff --git a/public/media/auth/bg2-dark.jpg b/public/media/auth/bg2-dark.jpg new file mode 100644 index 0000000..8f215d0 Binary files /dev/null and b/public/media/auth/bg2-dark.jpg differ diff --git a/public/media/auth/bg2.jpg b/public/media/auth/bg2.jpg new file mode 100644 index 0000000..801c893 Binary files /dev/null and b/public/media/auth/bg2.jpg differ diff --git a/public/media/auth/bg3-dark.jpg b/public/media/auth/bg3-dark.jpg new file mode 100644 index 0000000..af52b55 Binary files /dev/null and b/public/media/auth/bg3-dark.jpg differ diff --git a/public/media/auth/bg3.jpg b/public/media/auth/bg3.jpg new file mode 100644 index 0000000..582b667 Binary files /dev/null and b/public/media/auth/bg3.jpg differ diff --git a/public/media/auth/bg4-dark.jpg b/public/media/auth/bg4-dark.jpg new file mode 100644 index 0000000..13d1d2d Binary files /dev/null and b/public/media/auth/bg4-dark.jpg differ diff --git a/public/media/auth/bg4.jpg b/public/media/auth/bg4.jpg new file mode 100644 index 0000000..9c7b2d9 Binary files /dev/null and b/public/media/auth/bg4.jpg differ diff --git a/public/media/auth/bg5-dark.jpg b/public/media/auth/bg5-dark.jpg new file mode 100644 index 0000000..4c62196 Binary files /dev/null and b/public/media/auth/bg5-dark.jpg differ diff --git a/public/media/auth/bg5.jpg b/public/media/auth/bg5.jpg new file mode 100644 index 0000000..c8bd5b3 Binary files /dev/null and b/public/media/auth/bg5.jpg differ diff --git a/public/media/auth/bg6-dark.jpg b/public/media/auth/bg6-dark.jpg new file mode 100644 index 0000000..04bcc3e Binary files /dev/null and b/public/media/auth/bg6-dark.jpg differ diff --git a/public/media/auth/bg6.jpg b/public/media/auth/bg6.jpg new file mode 100644 index 0000000..fe2b508 Binary files /dev/null and b/public/media/auth/bg6.jpg differ diff --git a/public/media/auth/bg7-dark.jpg b/public/media/auth/bg7-dark.jpg new file mode 100644 index 0000000..2a3c51c Binary files /dev/null and b/public/media/auth/bg7-dark.jpg differ diff --git a/public/media/auth/bg7.jpg b/public/media/auth/bg7.jpg new file mode 100644 index 0000000..de6d180 Binary files /dev/null and b/public/media/auth/bg7.jpg differ diff --git a/public/media/auth/bg8-dark.jpg b/public/media/auth/bg8-dark.jpg new file mode 100644 index 0000000..e6bf942 Binary files /dev/null and b/public/media/auth/bg8-dark.jpg differ diff --git a/public/media/auth/bg8.jpg b/public/media/auth/bg8.jpg new file mode 100644 index 0000000..2cc808e Binary files /dev/null and b/public/media/auth/bg8.jpg differ diff --git a/public/media/auth/bg9-dark.jpg b/public/media/auth/bg9-dark.jpg new file mode 100644 index 0000000..befbba9 Binary files /dev/null and b/public/media/auth/bg9-dark.jpg differ diff --git a/public/media/auth/bg9.jpg b/public/media/auth/bg9.jpg new file mode 100644 index 0000000..c6a390f Binary files /dev/null and b/public/media/auth/bg9.jpg differ diff --git a/public/media/auth/chart-graph-dark.png b/public/media/auth/chart-graph-dark.png new file mode 100644 index 0000000..f3dd735 Binary files /dev/null and b/public/media/auth/chart-graph-dark.png differ diff --git a/public/media/auth/chart-graph.png b/public/media/auth/chart-graph.png new file mode 100644 index 0000000..7770796 Binary files /dev/null and b/public/media/auth/chart-graph.png differ diff --git a/public/media/auth/membership-dark.png b/public/media/auth/membership-dark.png new file mode 100644 index 0000000..d5ef702 Binary files /dev/null and b/public/media/auth/membership-dark.png differ diff --git a/public/media/auth/membership.png b/public/media/auth/membership.png new file mode 100644 index 0000000..e5be8d3 Binary files /dev/null and b/public/media/auth/membership.png differ diff --git a/public/media/auth/ok-dark.png b/public/media/auth/ok-dark.png new file mode 100644 index 0000000..d423365 Binary files /dev/null and b/public/media/auth/ok-dark.png differ diff --git a/public/media/auth/ok.png b/public/media/auth/ok.png new file mode 100644 index 0000000..c02b046 Binary files /dev/null and b/public/media/auth/ok.png differ diff --git a/public/media/auth/please-verify-your-email-dark.png b/public/media/auth/please-verify-your-email-dark.png new file mode 100644 index 0000000..e25dd76 Binary files /dev/null and b/public/media/auth/please-verify-your-email-dark.png differ diff --git a/public/media/auth/please-verify-your-email.png b/public/media/auth/please-verify-your-email.png new file mode 100644 index 0000000..85e333c Binary files /dev/null and b/public/media/auth/please-verify-your-email.png differ diff --git a/public/media/auth/welcome-dark.png b/public/media/auth/welcome-dark.png new file mode 100644 index 0000000..ef8cc86 Binary files /dev/null and b/public/media/auth/welcome-dark.png differ diff --git a/public/media/auth/welcome.png b/public/media/auth/welcome.png new file mode 100644 index 0000000..70fe04b Binary files /dev/null and b/public/media/auth/welcome.png differ diff --git a/public/media/avatars/300-1.jpg b/public/media/avatars/300-1.jpg new file mode 100644 index 0000000..c11d6c8 Binary files /dev/null and b/public/media/avatars/300-1.jpg differ diff --git a/public/media/avatars/300-10.jpg b/public/media/avatars/300-10.jpg new file mode 100644 index 0000000..94b3e12 Binary files /dev/null and b/public/media/avatars/300-10.jpg differ diff --git a/public/media/avatars/300-11.jpg b/public/media/avatars/300-11.jpg new file mode 100644 index 0000000..b7082f5 Binary files /dev/null and b/public/media/avatars/300-11.jpg differ diff --git a/public/media/avatars/300-12.jpg b/public/media/avatars/300-12.jpg new file mode 100644 index 0000000..2e34c3f Binary files /dev/null and b/public/media/avatars/300-12.jpg differ diff --git a/public/media/avatars/300-13.jpg b/public/media/avatars/300-13.jpg new file mode 100644 index 0000000..5234adc Binary files /dev/null and b/public/media/avatars/300-13.jpg differ diff --git a/public/media/avatars/300-14.jpg b/public/media/avatars/300-14.jpg new file mode 100644 index 0000000..65a7272 Binary files /dev/null and b/public/media/avatars/300-14.jpg differ diff --git a/public/media/avatars/300-15.jpg b/public/media/avatars/300-15.jpg new file mode 100644 index 0000000..d348093 Binary files /dev/null and b/public/media/avatars/300-15.jpg differ diff --git a/public/media/avatars/300-16.jpg b/public/media/avatars/300-16.jpg new file mode 100644 index 0000000..c629ec4 Binary files /dev/null and b/public/media/avatars/300-16.jpg differ diff --git a/public/media/avatars/300-17.jpg b/public/media/avatars/300-17.jpg new file mode 100644 index 0000000..d94c8ea Binary files /dev/null and b/public/media/avatars/300-17.jpg differ diff --git a/public/media/avatars/300-18.jpg b/public/media/avatars/300-18.jpg new file mode 100644 index 0000000..19762e8 Binary files /dev/null and b/public/media/avatars/300-18.jpg differ diff --git a/public/media/avatars/300-19.jpg b/public/media/avatars/300-19.jpg new file mode 100644 index 0000000..36c4c89 Binary files /dev/null and b/public/media/avatars/300-19.jpg differ diff --git a/public/media/avatars/300-2.jpg b/public/media/avatars/300-2.jpg new file mode 100644 index 0000000..d9dd909 Binary files /dev/null and b/public/media/avatars/300-2.jpg differ diff --git a/public/media/avatars/300-20.jpg b/public/media/avatars/300-20.jpg new file mode 100644 index 0000000..7331d99 Binary files /dev/null and b/public/media/avatars/300-20.jpg differ diff --git a/public/media/avatars/300-21.jpg b/public/media/avatars/300-21.jpg new file mode 100644 index 0000000..7de78f2 Binary files /dev/null and b/public/media/avatars/300-21.jpg differ diff --git a/public/media/avatars/300-22.jpg b/public/media/avatars/300-22.jpg new file mode 100644 index 0000000..bf65f7a Binary files /dev/null and b/public/media/avatars/300-22.jpg differ diff --git a/public/media/avatars/300-23.jpg b/public/media/avatars/300-23.jpg new file mode 100644 index 0000000..40def14 Binary files /dev/null and b/public/media/avatars/300-23.jpg differ diff --git a/public/media/avatars/300-24.jpg b/public/media/avatars/300-24.jpg new file mode 100644 index 0000000..793bfe4 Binary files /dev/null and b/public/media/avatars/300-24.jpg differ diff --git a/public/media/avatars/300-25.jpg b/public/media/avatars/300-25.jpg new file mode 100644 index 0000000..9958320 Binary files /dev/null and b/public/media/avatars/300-25.jpg differ diff --git a/public/media/avatars/300-26.jpg b/public/media/avatars/300-26.jpg new file mode 100644 index 0000000..f01ac21 Binary files /dev/null and b/public/media/avatars/300-26.jpg differ diff --git a/public/media/avatars/300-27.jpg b/public/media/avatars/300-27.jpg new file mode 100644 index 0000000..017de5e Binary files /dev/null and b/public/media/avatars/300-27.jpg differ diff --git a/public/media/avatars/300-28.jpg b/public/media/avatars/300-28.jpg new file mode 100644 index 0000000..9a7b92f Binary files /dev/null and b/public/media/avatars/300-28.jpg differ diff --git a/public/media/avatars/300-29.jpg b/public/media/avatars/300-29.jpg new file mode 100644 index 0000000..bea812b Binary files /dev/null and b/public/media/avatars/300-29.jpg differ diff --git a/public/media/avatars/300-3.jpg b/public/media/avatars/300-3.jpg new file mode 100644 index 0000000..ef369a1 Binary files /dev/null and b/public/media/avatars/300-3.jpg differ diff --git a/public/media/avatars/300-30.jpg b/public/media/avatars/300-30.jpg new file mode 100644 index 0000000..f87edbd Binary files /dev/null and b/public/media/avatars/300-30.jpg differ diff --git a/public/media/avatars/300-4.jpg b/public/media/avatars/300-4.jpg new file mode 100644 index 0000000..d9d0f68 Binary files /dev/null and b/public/media/avatars/300-4.jpg differ diff --git a/public/media/avatars/300-5.jpg b/public/media/avatars/300-5.jpg new file mode 100644 index 0000000..7fe72fd Binary files /dev/null and b/public/media/avatars/300-5.jpg differ diff --git a/public/media/avatars/300-6.jpg b/public/media/avatars/300-6.jpg new file mode 100644 index 0000000..c820176 Binary files /dev/null and b/public/media/avatars/300-6.jpg differ diff --git a/public/media/avatars/300-7.jpg b/public/media/avatars/300-7.jpg new file mode 100644 index 0000000..15c04b8 Binary files /dev/null and b/public/media/avatars/300-7.jpg differ diff --git a/public/media/avatars/300-8.jpg b/public/media/avatars/300-8.jpg new file mode 100644 index 0000000..8d77f46 Binary files /dev/null and b/public/media/avatars/300-8.jpg differ diff --git a/public/media/avatars/300-9.jpg b/public/media/avatars/300-9.jpg new file mode 100644 index 0000000..c152401 Binary files /dev/null and b/public/media/avatars/300-9.jpg differ diff --git a/public/media/avatars/blank.png b/public/media/avatars/blank.png new file mode 100644 index 0000000..e31a57d Binary files /dev/null and b/public/media/avatars/blank.png differ diff --git a/public/media/books/1.png b/public/media/books/1.png new file mode 100644 index 0000000..2bd8b32 Binary files /dev/null and b/public/media/books/1.png differ diff --git a/public/media/books/10.png b/public/media/books/10.png new file mode 100644 index 0000000..491a6ff Binary files /dev/null and b/public/media/books/10.png differ diff --git a/public/media/books/11.png b/public/media/books/11.png new file mode 100644 index 0000000..cdc0b79 Binary files /dev/null and b/public/media/books/11.png differ diff --git a/public/media/books/12.png b/public/media/books/12.png new file mode 100644 index 0000000..3a3ca7a Binary files /dev/null and b/public/media/books/12.png differ diff --git a/public/media/books/13.png b/public/media/books/13.png new file mode 100644 index 0000000..a0fe6a0 Binary files /dev/null and b/public/media/books/13.png differ diff --git a/public/media/books/2.png b/public/media/books/2.png new file mode 100644 index 0000000..aa104bb Binary files /dev/null and b/public/media/books/2.png differ diff --git a/public/media/books/3.png b/public/media/books/3.png new file mode 100644 index 0000000..388a169 Binary files /dev/null and b/public/media/books/3.png differ diff --git a/public/media/books/4.png b/public/media/books/4.png new file mode 100644 index 0000000..fe5e094 Binary files /dev/null and b/public/media/books/4.png differ diff --git a/public/media/books/5.png b/public/media/books/5.png new file mode 100644 index 0000000..a39e114 Binary files /dev/null and b/public/media/books/5.png differ diff --git a/public/media/books/6.png b/public/media/books/6.png new file mode 100644 index 0000000..27a9ea0 Binary files /dev/null and b/public/media/books/6.png differ diff --git a/public/media/books/7.png b/public/media/books/7.png new file mode 100644 index 0000000..5fa49a1 Binary files /dev/null and b/public/media/books/7.png differ diff --git a/public/media/books/8.png b/public/media/books/8.png new file mode 100644 index 0000000..2e652b8 Binary files /dev/null and b/public/media/books/8.png differ diff --git a/public/media/books/9.png b/public/media/books/9.png new file mode 100644 index 0000000..5aca4f2 Binary files /dev/null and b/public/media/books/9.png differ diff --git a/public/media/books/img-72.jpg b/public/media/books/img-72.jpg new file mode 100644 index 0000000..fe9c274 Binary files /dev/null and b/public/media/books/img-72.jpg differ diff --git a/public/media/demo/1600x1200/1.png b/public/media/demo/1600x1200/1.png new file mode 100644 index 0000000..a3f798c Binary files /dev/null and b/public/media/demo/1600x1200/1.png differ diff --git a/public/media/demo/1600x1200/2.jpg b/public/media/demo/1600x1200/2.jpg new file mode 100644 index 0000000..0ea2ac2 Binary files /dev/null and b/public/media/demo/1600x1200/2.jpg differ diff --git a/public/media/demo/1600x1200/3.png b/public/media/demo/1600x1200/3.png new file mode 100644 index 0000000..5b35b3a Binary files /dev/null and b/public/media/demo/1600x1200/3.png differ diff --git a/public/media/demo/2600x1200/1.jpg b/public/media/demo/2600x1200/1.jpg new file mode 100644 index 0000000..8974c5a Binary files /dev/null and b/public/media/demo/2600x1200/1.jpg differ diff --git a/public/media/email/icon-bullet.svg b/public/media/email/icon-bullet.svg new file mode 100644 index 0000000..5f233d8 --- /dev/null +++ b/public/media/email/icon-bullet.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/email/icon-dribbble.svg b/public/media/email/icon-dribbble.svg new file mode 100644 index 0000000..5cd6759 --- /dev/null +++ b/public/media/email/icon-dribbble.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/email/icon-facebook.svg b/public/media/email/icon-facebook.svg new file mode 100644 index 0000000..16af3e0 --- /dev/null +++ b/public/media/email/icon-facebook.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/email/icon-linkedin.svg b/public/media/email/icon-linkedin.svg new file mode 100644 index 0000000..55901a2 --- /dev/null +++ b/public/media/email/icon-linkedin.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/email/icon-polygon.svg b/public/media/email/icon-polygon.svg new file mode 100644 index 0000000..bba0b99 --- /dev/null +++ b/public/media/email/icon-polygon.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/email/icon-positive-vote-1.svg b/public/media/email/icon-positive-vote-1.svg new file mode 100644 index 0000000..cfb36ab --- /dev/null +++ b/public/media/email/icon-positive-vote-1.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/email/icon-positive-vote-2.svg b/public/media/email/icon-positive-vote-2.svg new file mode 100644 index 0000000..5ccf96d --- /dev/null +++ b/public/media/email/icon-positive-vote-2.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/email/icon-positive-vote-3.svg b/public/media/email/icon-positive-vote-3.svg new file mode 100644 index 0000000..4df3548 --- /dev/null +++ b/public/media/email/icon-positive-vote-3.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/email/icon-positive-vote-4.svg b/public/media/email/icon-positive-vote-4.svg new file mode 100644 index 0000000..95c05b6 --- /dev/null +++ b/public/media/email/icon-positive-vote-4.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/email/icon-twitter.svg b/public/media/email/icon-twitter.svg new file mode 100644 index 0000000..c08c172 --- /dev/null +++ b/public/media/email/icon-twitter.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/email/img-1.png b/public/media/email/img-1.png new file mode 100644 index 0000000..18f9b47 Binary files /dev/null and b/public/media/email/img-1.png differ diff --git a/public/media/email/img-2.png b/public/media/email/img-2.png new file mode 100644 index 0000000..c56cd34 Binary files /dev/null and b/public/media/email/img-2.png differ diff --git a/public/media/email/img-3.jpg b/public/media/email/img-3.jpg new file mode 100644 index 0000000..c313339 Binary files /dev/null and b/public/media/email/img-3.jpg differ diff --git a/public/media/email/img-4.jpg b/public/media/email/img-4.jpg new file mode 100644 index 0000000..4f73c84 Binary files /dev/null and b/public/media/email/img-4.jpg differ diff --git a/public/media/email/img-5.jpg b/public/media/email/img-5.jpg new file mode 100644 index 0000000..8cb9841 Binary files /dev/null and b/public/media/email/img-5.jpg differ diff --git a/public/media/email/img-6.jpg b/public/media/email/img-6.jpg new file mode 100644 index 0000000..162b8cf Binary files /dev/null and b/public/media/email/img-6.jpg differ diff --git a/public/media/email/logo-1.svg b/public/media/email/logo-1.svg new file mode 100644 index 0000000..d2cacc5 --- /dev/null +++ b/public/media/email/logo-1.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/email/logo-2.svg b/public/media/email/logo-2.svg new file mode 100644 index 0000000..3e312a4 --- /dev/null +++ b/public/media/email/logo-2.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/features-logos/amchart.png b/public/media/features-logos/amchart.png new file mode 100644 index 0000000..f6df970 Binary files /dev/null and b/public/media/features-logos/amchart.png differ diff --git a/public/media/features-logos/angular-forms.png b/public/media/features-logos/angular-forms.png new file mode 100644 index 0000000..3645ab5 Binary files /dev/null and b/public/media/features-logos/angular-forms.png differ diff --git a/public/media/features-logos/angular-i18n.png b/public/media/features-logos/angular-i18n.png new file mode 100644 index 0000000..322b0d8 Binary files /dev/null and b/public/media/features-logos/angular-i18n.png differ diff --git a/public/media/features-logos/angular-material.png b/public/media/features-logos/angular-material.png new file mode 100644 index 0000000..cd4cc00 Binary files /dev/null and b/public/media/features-logos/angular-material.png differ diff --git a/public/media/features-logos/angular-router.png b/public/media/features-logos/angular-router.png new file mode 100644 index 0000000..7c631e4 Binary files /dev/null and b/public/media/features-logos/angular-router.png differ diff --git a/public/media/features-logos/angular-rxjs.png b/public/media/features-logos/angular-rxjs.png new file mode 100644 index 0000000..2e291d2 Binary files /dev/null and b/public/media/features-logos/angular-rxjs.png differ diff --git a/public/media/features-logos/apexcharts.png b/public/media/features-logos/apexcharts.png new file mode 100644 index 0000000..fa46ea3 Binary files /dev/null and b/public/media/features-logos/apexcharts.png differ diff --git a/public/media/features-logos/axios.png b/public/media/features-logos/axios.png new file mode 100644 index 0000000..53e4a4e Binary files /dev/null and b/public/media/features-logos/axios.png differ diff --git a/public/media/features-logos/babel.png b/public/media/features-logos/babel.png new file mode 100644 index 0000000..b84b963 Binary files /dev/null and b/public/media/features-logos/babel.png differ diff --git a/public/media/features-logos/bootstrap.png b/public/media/features-logos/bootstrap.png new file mode 100644 index 0000000..959609f Binary files /dev/null and b/public/media/features-logos/bootstrap.png differ diff --git a/public/media/features-logos/composer.png b/public/media/features-logos/composer.png new file mode 100644 index 0000000..482af00 Binary files /dev/null and b/public/media/features-logos/composer.png differ diff --git a/public/media/features-logos/css3.png b/public/media/features-logos/css3.png new file mode 100644 index 0000000..eaa43df Binary files /dev/null and b/public/media/features-logos/css3.png differ diff --git a/public/media/features-logos/datatables.png b/public/media/features-logos/datatables.png new file mode 100644 index 0000000..c621436 Binary files /dev/null and b/public/media/features-logos/datatables.png differ diff --git a/public/media/features-logos/element-plus.png b/public/media/features-logos/element-plus.png new file mode 100644 index 0000000..1fbcbaf Binary files /dev/null and b/public/media/features-logos/element-plus.png differ diff --git a/public/media/features-logos/fullcalendar.png b/public/media/features-logos/fullcalendar.png new file mode 100644 index 0000000..4a876ab Binary files /dev/null and b/public/media/features-logos/fullcalendar.png differ diff --git a/public/media/features-logos/gulp.png b/public/media/features-logos/gulp.png new file mode 100644 index 0000000..c9021a3 Binary files /dev/null and b/public/media/features-logos/gulp.png differ diff --git a/public/media/features-logos/html5.png b/public/media/features-logos/html5.png new file mode 100644 index 0000000..566ffa6 Binary files /dev/null and b/public/media/features-logos/html5.png differ diff --git a/public/media/features-logos/laravel-blade.png b/public/media/features-logos/laravel-blade.png new file mode 100644 index 0000000..c87a205 Binary files /dev/null and b/public/media/features-logos/laravel-blade.png differ diff --git a/public/media/features-logos/laravel-guzlle.png b/public/media/features-logos/laravel-guzlle.png new file mode 100644 index 0000000..24e7c62 Binary files /dev/null and b/public/media/features-logos/laravel-guzlle.png differ diff --git a/public/media/features-logos/laravel-mix.png b/public/media/features-logos/laravel-mix.png new file mode 100644 index 0000000..7070dcc Binary files /dev/null and b/public/media/features-logos/laravel-mix.png differ diff --git a/public/media/features-logos/metronic.png b/public/media/features-logos/metronic.png new file mode 100644 index 0000000..472b4b2 Binary files /dev/null and b/public/media/features-logos/metronic.png differ diff --git a/public/media/features-logos/npm.png b/public/media/features-logos/npm.png new file mode 100644 index 0000000..1c30a2b Binary files /dev/null and b/public/media/features-logos/npm.png differ diff --git a/public/media/features-logos/react-bootstrap.png b/public/media/features-logos/react-bootstrap.png new file mode 100644 index 0000000..1dc09d2 Binary files /dev/null and b/public/media/features-logos/react-bootstrap.png differ diff --git a/public/media/features-logos/react-create-react-app.png b/public/media/features-logos/react-create-react-app.png new file mode 100644 index 0000000..775827d Binary files /dev/null and b/public/media/features-logos/react-create-react-app.png differ diff --git a/public/media/features-logos/react-query.png b/public/media/features-logos/react-query.png new file mode 100644 index 0000000..ea43636 Binary files /dev/null and b/public/media/features-logos/react-query.png differ diff --git a/public/media/features-logos/react-redux-saga.png b/public/media/features-logos/react-redux-saga.png new file mode 100644 index 0000000..cfb6936 Binary files /dev/null and b/public/media/features-logos/react-redux-saga.png differ diff --git a/public/media/features-logos/react-redux.png b/public/media/features-logos/react-redux.png new file mode 100644 index 0000000..f09c74e Binary files /dev/null and b/public/media/features-logos/react-redux.png differ diff --git a/public/media/features-logos/react-router.png b/public/media/features-logos/react-router.png new file mode 100644 index 0000000..203b229 Binary files /dev/null and b/public/media/features-logos/react-router.png differ diff --git a/public/media/features-logos/sass.png b/public/media/features-logos/sass.png new file mode 100644 index 0000000..5adb87c Binary files /dev/null and b/public/media/features-logos/sass.png differ diff --git a/public/media/features-logos/theme-api.png b/public/media/features-logos/theme-api.png new file mode 100644 index 0000000..21e4611 Binary files /dev/null and b/public/media/features-logos/theme-api.png differ diff --git a/public/media/features-logos/typescript.png b/public/media/features-logos/typescript.png new file mode 100644 index 0000000..0cc63ee Binary files /dev/null and b/public/media/features-logos/typescript.png differ diff --git a/public/media/features-logos/vite.png b/public/media/features-logos/vite.png new file mode 100644 index 0000000..8d4e063 Binary files /dev/null and b/public/media/features-logos/vite.png differ diff --git a/public/media/features-logos/vue-i18n.png b/public/media/features-logos/vue-i18n.png new file mode 100644 index 0000000..3387db7 Binary files /dev/null and b/public/media/features-logos/vue-i18n.png differ diff --git a/public/media/features-logos/vue-pania.png b/public/media/features-logos/vue-pania.png new file mode 100644 index 0000000..187aaba Binary files /dev/null and b/public/media/features-logos/vue-pania.png differ diff --git a/public/media/features-logos/vue-router.png b/public/media/features-logos/vue-router.png new file mode 100644 index 0000000..1689030 Binary files /dev/null and b/public/media/features-logos/vue-router.png differ diff --git a/public/media/features-logos/vue-vuetify.png b/public/media/features-logos/vue-vuetify.png new file mode 100644 index 0000000..832de36 Binary files /dev/null and b/public/media/features-logos/vue-vuetify.png differ diff --git a/public/media/features-logos/vuelidate.png b/public/media/features-logos/vuelidate.png new file mode 100644 index 0000000..c3cae9d Binary files /dev/null and b/public/media/features-logos/vuelidate.png differ diff --git a/public/media/features-logos/webpack.png b/public/media/features-logos/webpack.png new file mode 100644 index 0000000..98c696b Binary files /dev/null and b/public/media/features-logos/webpack.png differ diff --git a/public/media/features-logos/yarn.png b/public/media/features-logos/yarn.png new file mode 100644 index 0000000..ae36a4f Binary files /dev/null and b/public/media/features-logos/yarn.png differ diff --git a/public/media/flags/afghanistan.svg b/public/media/flags/afghanistan.svg new file mode 100644 index 0000000..b3cb5bc --- /dev/null +++ b/public/media/flags/afghanistan.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/aland-islands.svg b/public/media/flags/aland-islands.svg new file mode 100644 index 0000000..71ae0d7 --- /dev/null +++ b/public/media/flags/aland-islands.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/albania.svg b/public/media/flags/albania.svg new file mode 100644 index 0000000..53b8683 --- /dev/null +++ b/public/media/flags/albania.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/algeria.svg b/public/media/flags/algeria.svg new file mode 100644 index 0000000..8692d52 --- /dev/null +++ b/public/media/flags/algeria.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/american-samoa.svg b/public/media/flags/american-samoa.svg new file mode 100644 index 0000000..da124ea --- /dev/null +++ b/public/media/flags/american-samoa.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/andorra.svg b/public/media/flags/andorra.svg new file mode 100644 index 0000000..448f90e --- /dev/null +++ b/public/media/flags/andorra.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/angola.svg b/public/media/flags/angola.svg new file mode 100644 index 0000000..734bbf1 --- /dev/null +++ b/public/media/flags/angola.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/anguilla.svg b/public/media/flags/anguilla.svg new file mode 100644 index 0000000..2255268 --- /dev/null +++ b/public/media/flags/anguilla.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/antigua-and-barbuda.svg b/public/media/flags/antigua-and-barbuda.svg new file mode 100644 index 0000000..b4c7c93 --- /dev/null +++ b/public/media/flags/antigua-and-barbuda.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/argentina.svg b/public/media/flags/argentina.svg new file mode 100644 index 0000000..0cd84ab --- /dev/null +++ b/public/media/flags/argentina.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/armenia.svg b/public/media/flags/armenia.svg new file mode 100644 index 0000000..67a5a53 --- /dev/null +++ b/public/media/flags/armenia.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/aruba.svg b/public/media/flags/aruba.svg new file mode 100644 index 0000000..4f53a45 --- /dev/null +++ b/public/media/flags/aruba.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/australia.svg b/public/media/flags/australia.svg new file mode 100644 index 0000000..8fb8c0a --- /dev/null +++ b/public/media/flags/australia.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/austria.svg b/public/media/flags/austria.svg new file mode 100644 index 0000000..0be23ae --- /dev/null +++ b/public/media/flags/austria.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/azerbaijan.svg b/public/media/flags/azerbaijan.svg new file mode 100644 index 0000000..fa12d8d --- /dev/null +++ b/public/media/flags/azerbaijan.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/azores-islands.svg b/public/media/flags/azores-islands.svg new file mode 100644 index 0000000..40b29de --- /dev/null +++ b/public/media/flags/azores-islands.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/bahamas.svg b/public/media/flags/bahamas.svg new file mode 100644 index 0000000..c84792d --- /dev/null +++ b/public/media/flags/bahamas.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/bahrain.svg b/public/media/flags/bahrain.svg new file mode 100644 index 0000000..374a7db --- /dev/null +++ b/public/media/flags/bahrain.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/balearic-islands.svg b/public/media/flags/balearic-islands.svg new file mode 100644 index 0000000..c134fbf --- /dev/null +++ b/public/media/flags/balearic-islands.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/bangladesh.svg b/public/media/flags/bangladesh.svg new file mode 100644 index 0000000..0c948a0 --- /dev/null +++ b/public/media/flags/bangladesh.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/barbados.svg b/public/media/flags/barbados.svg new file mode 100644 index 0000000..bc5d4c1 --- /dev/null +++ b/public/media/flags/barbados.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/basque-country.svg b/public/media/flags/basque-country.svg new file mode 100644 index 0000000..619592a --- /dev/null +++ b/public/media/flags/basque-country.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/belarus.svg b/public/media/flags/belarus.svg new file mode 100644 index 0000000..02d6a04 --- /dev/null +++ b/public/media/flags/belarus.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/belgium.svg b/public/media/flags/belgium.svg new file mode 100644 index 0000000..5359447 --- /dev/null +++ b/public/media/flags/belgium.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/belize.svg b/public/media/flags/belize.svg new file mode 100644 index 0000000..b89ae5f --- /dev/null +++ b/public/media/flags/belize.svg @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/benin.svg b/public/media/flags/benin.svg new file mode 100644 index 0000000..7599965 --- /dev/null +++ b/public/media/flags/benin.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/bermuda.svg b/public/media/flags/bermuda.svg new file mode 100644 index 0000000..7be8ebd --- /dev/null +++ b/public/media/flags/bermuda.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/bhutan.svg b/public/media/flags/bhutan.svg new file mode 100644 index 0000000..31fdde0 --- /dev/null +++ b/public/media/flags/bhutan.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/bolivia.svg b/public/media/flags/bolivia.svg new file mode 100644 index 0000000..ee7868f --- /dev/null +++ b/public/media/flags/bolivia.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/bonaire.svg b/public/media/flags/bonaire.svg new file mode 100644 index 0000000..b7806da --- /dev/null +++ b/public/media/flags/bonaire.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/bosnia-and-herzegovina.svg b/public/media/flags/bosnia-and-herzegovina.svg new file mode 100644 index 0000000..28e70bc --- /dev/null +++ b/public/media/flags/bosnia-and-herzegovina.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/botswana.svg b/public/media/flags/botswana.svg new file mode 100644 index 0000000..69a6911 --- /dev/null +++ b/public/media/flags/botswana.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/brazil.svg b/public/media/flags/brazil.svg new file mode 100644 index 0000000..6d38a61 --- /dev/null +++ b/public/media/flags/brazil.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/british-columbia.svg b/public/media/flags/british-columbia.svg new file mode 100644 index 0000000..9793c4c --- /dev/null +++ b/public/media/flags/british-columbia.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/british-indian-ocean-territory.svg b/public/media/flags/british-indian-ocean-territory.svg new file mode 100644 index 0000000..6e1fcaf --- /dev/null +++ b/public/media/flags/british-indian-ocean-territory.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/british-virgin-islands.svg b/public/media/flags/british-virgin-islands.svg new file mode 100644 index 0000000..52174ad --- /dev/null +++ b/public/media/flags/british-virgin-islands.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/brunei.svg b/public/media/flags/brunei.svg new file mode 100644 index 0000000..4cca334 --- /dev/null +++ b/public/media/flags/brunei.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/bulgaria.svg b/public/media/flags/bulgaria.svg new file mode 100644 index 0000000..60671ef --- /dev/null +++ b/public/media/flags/bulgaria.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/burkina-faso.svg b/public/media/flags/burkina-faso.svg new file mode 100644 index 0000000..694be06 --- /dev/null +++ b/public/media/flags/burkina-faso.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/burundi.svg b/public/media/flags/burundi.svg new file mode 100644 index 0000000..3ffb8c8 --- /dev/null +++ b/public/media/flags/burundi.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/cambodia.svg b/public/media/flags/cambodia.svg new file mode 100644 index 0000000..cbba946 --- /dev/null +++ b/public/media/flags/cambodia.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/cameroon.svg b/public/media/flags/cameroon.svg new file mode 100644 index 0000000..06a0179 --- /dev/null +++ b/public/media/flags/cameroon.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/canada.svg b/public/media/flags/canada.svg new file mode 100644 index 0000000..aa6531c --- /dev/null +++ b/public/media/flags/canada.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/canary-islands.svg b/public/media/flags/canary-islands.svg new file mode 100644 index 0000000..1b55832 --- /dev/null +++ b/public/media/flags/canary-islands.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/cape-verde.svg b/public/media/flags/cape-verde.svg new file mode 100644 index 0000000..71f38fa --- /dev/null +++ b/public/media/flags/cape-verde.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/cayman-islands.svg b/public/media/flags/cayman-islands.svg new file mode 100644 index 0000000..8756e61 --- /dev/null +++ b/public/media/flags/cayman-islands.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/central-african-republic.svg b/public/media/flags/central-african-republic.svg new file mode 100644 index 0000000..00b434a --- /dev/null +++ b/public/media/flags/central-african-republic.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/ceuta.svg b/public/media/flags/ceuta.svg new file mode 100644 index 0000000..38998e1 --- /dev/null +++ b/public/media/flags/ceuta.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/chad.svg b/public/media/flags/chad.svg new file mode 100644 index 0000000..a1afd0d --- /dev/null +++ b/public/media/flags/chad.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/chile.svg b/public/media/flags/chile.svg new file mode 100644 index 0000000..bea60c7 --- /dev/null +++ b/public/media/flags/chile.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/china.svg b/public/media/flags/china.svg new file mode 100644 index 0000000..c4f7a0c --- /dev/null +++ b/public/media/flags/china.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/christmas-island.svg b/public/media/flags/christmas-island.svg new file mode 100644 index 0000000..0107ea6 --- /dev/null +++ b/public/media/flags/christmas-island.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/cocos-island.svg b/public/media/flags/cocos-island.svg new file mode 100644 index 0000000..5868744 --- /dev/null +++ b/public/media/flags/cocos-island.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/colombia.svg b/public/media/flags/colombia.svg new file mode 100644 index 0000000..3f67537 --- /dev/null +++ b/public/media/flags/colombia.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/comoros.svg b/public/media/flags/comoros.svg new file mode 100644 index 0000000..923141a --- /dev/null +++ b/public/media/flags/comoros.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/cook-islands.svg b/public/media/flags/cook-islands.svg new file mode 100644 index 0000000..671a871 --- /dev/null +++ b/public/media/flags/cook-islands.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/corsica.svg b/public/media/flags/corsica.svg new file mode 100644 index 0000000..528f6b1 --- /dev/null +++ b/public/media/flags/corsica.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/costa-rica.svg b/public/media/flags/costa-rica.svg new file mode 100644 index 0000000..596a10e --- /dev/null +++ b/public/media/flags/costa-rica.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/croatia.svg b/public/media/flags/croatia.svg new file mode 100644 index 0000000..b37f9ba --- /dev/null +++ b/public/media/flags/croatia.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/cuba.svg b/public/media/flags/cuba.svg new file mode 100644 index 0000000..b84b10e --- /dev/null +++ b/public/media/flags/cuba.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/curacao.svg b/public/media/flags/curacao.svg new file mode 100644 index 0000000..286b87d --- /dev/null +++ b/public/media/flags/curacao.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/czech-republic.svg b/public/media/flags/czech-republic.svg new file mode 100644 index 0000000..6e082b4 --- /dev/null +++ b/public/media/flags/czech-republic.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/democratic-republic-of-congo.svg b/public/media/flags/democratic-republic-of-congo.svg new file mode 100644 index 0000000..7fd9cc3 --- /dev/null +++ b/public/media/flags/democratic-republic-of-congo.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/denmark.svg b/public/media/flags/denmark.svg new file mode 100644 index 0000000..d2c9e7f --- /dev/null +++ b/public/media/flags/denmark.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/djibouti.svg b/public/media/flags/djibouti.svg new file mode 100644 index 0000000..852b206 --- /dev/null +++ b/public/media/flags/djibouti.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/dominica.svg b/public/media/flags/dominica.svg new file mode 100644 index 0000000..c1228c6 --- /dev/null +++ b/public/media/flags/dominica.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/dominican-republic.svg b/public/media/flags/dominican-republic.svg new file mode 100644 index 0000000..d96b67e --- /dev/null +++ b/public/media/flags/dominican-republic.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/east-timor.svg b/public/media/flags/east-timor.svg new file mode 100644 index 0000000..c6b2e2d --- /dev/null +++ b/public/media/flags/east-timor.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/ecuador.svg b/public/media/flags/ecuador.svg new file mode 100644 index 0000000..4978a74 --- /dev/null +++ b/public/media/flags/ecuador.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/egypt.svg b/public/media/flags/egypt.svg new file mode 100644 index 0000000..065d536 --- /dev/null +++ b/public/media/flags/egypt.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/el-salvador.svg b/public/media/flags/el-salvador.svg new file mode 100644 index 0000000..b2de291 --- /dev/null +++ b/public/media/flags/el-salvador.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/england.svg b/public/media/flags/england.svg new file mode 100644 index 0000000..574257a --- /dev/null +++ b/public/media/flags/england.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/equatorial-guinea.svg b/public/media/flags/equatorial-guinea.svg new file mode 100644 index 0000000..3cb6f88 --- /dev/null +++ b/public/media/flags/equatorial-guinea.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/eritrea.svg b/public/media/flags/eritrea.svg new file mode 100644 index 0000000..0c737c0 --- /dev/null +++ b/public/media/flags/eritrea.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/estonia.svg b/public/media/flags/estonia.svg new file mode 100644 index 0000000..f44b53a --- /dev/null +++ b/public/media/flags/estonia.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/ethiopia.svg b/public/media/flags/ethiopia.svg new file mode 100644 index 0000000..8990365 --- /dev/null +++ b/public/media/flags/ethiopia.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/european-union.svg b/public/media/flags/european-union.svg new file mode 100644 index 0000000..76377e8 --- /dev/null +++ b/public/media/flags/european-union.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/falkland-islands.svg b/public/media/flags/falkland-islands.svg new file mode 100644 index 0000000..f5f0c22 --- /dev/null +++ b/public/media/flags/falkland-islands.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/fiji.svg b/public/media/flags/fiji.svg new file mode 100644 index 0000000..21b61b7 --- /dev/null +++ b/public/media/flags/fiji.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/finland.svg b/public/media/flags/finland.svg new file mode 100644 index 0000000..bae8824 --- /dev/null +++ b/public/media/flags/finland.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/flag.svg b/public/media/flags/flag.svg new file mode 100644 index 0000000..2f091d5 --- /dev/null +++ b/public/media/flags/flag.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/france.svg b/public/media/flags/france.svg new file mode 100644 index 0000000..d271892 --- /dev/null +++ b/public/media/flags/france.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/french-polynesia.svg b/public/media/flags/french-polynesia.svg new file mode 100644 index 0000000..9eb56ae --- /dev/null +++ b/public/media/flags/french-polynesia.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/gabon.svg b/public/media/flags/gabon.svg new file mode 100644 index 0000000..e7590c7 --- /dev/null +++ b/public/media/flags/gabon.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/galapagos-islands.svg b/public/media/flags/galapagos-islands.svg new file mode 100644 index 0000000..5c9bb4a --- /dev/null +++ b/public/media/flags/galapagos-islands.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/gambia.svg b/public/media/flags/gambia.svg new file mode 100644 index 0000000..db309a4 --- /dev/null +++ b/public/media/flags/gambia.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/georgia.svg b/public/media/flags/georgia.svg new file mode 100644 index 0000000..19aeac1 --- /dev/null +++ b/public/media/flags/georgia.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/germany.svg b/public/media/flags/germany.svg new file mode 100644 index 0000000..4290c77 --- /dev/null +++ b/public/media/flags/germany.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/ghana.svg b/public/media/flags/ghana.svg new file mode 100644 index 0000000..3f83f4d --- /dev/null +++ b/public/media/flags/ghana.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/gibraltar.svg b/public/media/flags/gibraltar.svg new file mode 100644 index 0000000..d7c167e --- /dev/null +++ b/public/media/flags/gibraltar.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/greece.svg b/public/media/flags/greece.svg new file mode 100644 index 0000000..9632b6f --- /dev/null +++ b/public/media/flags/greece.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/greenland.svg b/public/media/flags/greenland.svg new file mode 100644 index 0000000..c2b7355 --- /dev/null +++ b/public/media/flags/greenland.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/grenada.svg b/public/media/flags/grenada.svg new file mode 100644 index 0000000..9ec3356 --- /dev/null +++ b/public/media/flags/grenada.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/guam.svg b/public/media/flags/guam.svg new file mode 100644 index 0000000..64bf9fd --- /dev/null +++ b/public/media/flags/guam.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/guatemala.svg b/public/media/flags/guatemala.svg new file mode 100644 index 0000000..4b4ff32 --- /dev/null +++ b/public/media/flags/guatemala.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/guernsey.svg b/public/media/flags/guernsey.svg new file mode 100644 index 0000000..250079e --- /dev/null +++ b/public/media/flags/guernsey.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/guinea-bissau.svg b/public/media/flags/guinea-bissau.svg new file mode 100644 index 0000000..03c737b --- /dev/null +++ b/public/media/flags/guinea-bissau.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/guinea.svg b/public/media/flags/guinea.svg new file mode 100644 index 0000000..309f35d --- /dev/null +++ b/public/media/flags/guinea.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/haiti.svg b/public/media/flags/haiti.svg new file mode 100644 index 0000000..fd0497d --- /dev/null +++ b/public/media/flags/haiti.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/hawaii.svg b/public/media/flags/hawaii.svg new file mode 100644 index 0000000..4955f12 --- /dev/null +++ b/public/media/flags/hawaii.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/honduras.svg b/public/media/flags/honduras.svg new file mode 100644 index 0000000..08d48d8 --- /dev/null +++ b/public/media/flags/honduras.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/hong-kong.svg b/public/media/flags/hong-kong.svg new file mode 100644 index 0000000..bc23f8a --- /dev/null +++ b/public/media/flags/hong-kong.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/hungary.svg b/public/media/flags/hungary.svg new file mode 100644 index 0000000..62a7816 --- /dev/null +++ b/public/media/flags/hungary.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/iceland.svg b/public/media/flags/iceland.svg new file mode 100644 index 0000000..93a5806 --- /dev/null +++ b/public/media/flags/iceland.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/india.svg b/public/media/flags/india.svg new file mode 100644 index 0000000..a35952d --- /dev/null +++ b/public/media/flags/india.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/indonesia.svg b/public/media/flags/indonesia.svg new file mode 100644 index 0000000..2f61500 --- /dev/null +++ b/public/media/flags/indonesia.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/iran.svg b/public/media/flags/iran.svg new file mode 100644 index 0000000..8f00529 --- /dev/null +++ b/public/media/flags/iran.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/iraq.svg b/public/media/flags/iraq.svg new file mode 100644 index 0000000..a78b6e9 --- /dev/null +++ b/public/media/flags/iraq.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/ireland.svg b/public/media/flags/ireland.svg new file mode 100644 index 0000000..c1f75ba --- /dev/null +++ b/public/media/flags/ireland.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/isle-of-man.svg b/public/media/flags/isle-of-man.svg new file mode 100644 index 0000000..9ff50f6 --- /dev/null +++ b/public/media/flags/isle-of-man.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/israel.svg b/public/media/flags/israel.svg new file mode 100644 index 0000000..0c1f226 --- /dev/null +++ b/public/media/flags/israel.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/italy.svg b/public/media/flags/italy.svg new file mode 100644 index 0000000..2c3a2e3 --- /dev/null +++ b/public/media/flags/italy.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/ivory-coast.svg b/public/media/flags/ivory-coast.svg new file mode 100644 index 0000000..eea20db --- /dev/null +++ b/public/media/flags/ivory-coast.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/jamaica.svg b/public/media/flags/jamaica.svg new file mode 100644 index 0000000..a709601 --- /dev/null +++ b/public/media/flags/jamaica.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/japan.svg b/public/media/flags/japan.svg new file mode 100644 index 0000000..7d0e0cb --- /dev/null +++ b/public/media/flags/japan.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/jersey.svg b/public/media/flags/jersey.svg new file mode 100644 index 0000000..04130bb --- /dev/null +++ b/public/media/flags/jersey.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/jordan.svg b/public/media/flags/jordan.svg new file mode 100644 index 0000000..d05aa3d --- /dev/null +++ b/public/media/flags/jordan.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/kazakhstan.svg b/public/media/flags/kazakhstan.svg new file mode 100644 index 0000000..40975f7 --- /dev/null +++ b/public/media/flags/kazakhstan.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/kenya.svg b/public/media/flags/kenya.svg new file mode 100644 index 0000000..12ef6bc --- /dev/null +++ b/public/media/flags/kenya.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/kiribati.svg b/public/media/flags/kiribati.svg new file mode 100644 index 0000000..700fa69 --- /dev/null +++ b/public/media/flags/kiribati.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/kosovo.svg b/public/media/flags/kosovo.svg new file mode 100644 index 0000000..7a9aea7 --- /dev/null +++ b/public/media/flags/kosovo.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/kuwait.svg b/public/media/flags/kuwait.svg new file mode 100644 index 0000000..5f9514f --- /dev/null +++ b/public/media/flags/kuwait.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/kyrgyzstan.svg b/public/media/flags/kyrgyzstan.svg new file mode 100644 index 0000000..646fd34 --- /dev/null +++ b/public/media/flags/kyrgyzstan.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/laos.svg b/public/media/flags/laos.svg new file mode 100644 index 0000000..d05646e --- /dev/null +++ b/public/media/flags/laos.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/latvia.svg b/public/media/flags/latvia.svg new file mode 100644 index 0000000..a2e0615 --- /dev/null +++ b/public/media/flags/latvia.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/lebanon.svg b/public/media/flags/lebanon.svg new file mode 100644 index 0000000..f41f74f --- /dev/null +++ b/public/media/flags/lebanon.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/lesotho.svg b/public/media/flags/lesotho.svg new file mode 100644 index 0000000..57f22a4 --- /dev/null +++ b/public/media/flags/lesotho.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/liberia.svg b/public/media/flags/liberia.svg new file mode 100644 index 0000000..b0f6ecb --- /dev/null +++ b/public/media/flags/liberia.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/libya.svg b/public/media/flags/libya.svg new file mode 100644 index 0000000..33e2c2f --- /dev/null +++ b/public/media/flags/libya.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/liechtenstein.svg b/public/media/flags/liechtenstein.svg new file mode 100644 index 0000000..b6075b9 --- /dev/null +++ b/public/media/flags/liechtenstein.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/lithuania.svg b/public/media/flags/lithuania.svg new file mode 100644 index 0000000..e2ae265 --- /dev/null +++ b/public/media/flags/lithuania.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/luxembourg.svg b/public/media/flags/luxembourg.svg new file mode 100644 index 0000000..c81d754 --- /dev/null +++ b/public/media/flags/luxembourg.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/macao.svg b/public/media/flags/macao.svg new file mode 100644 index 0000000..25cbedc --- /dev/null +++ b/public/media/flags/macao.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/madagascar.svg b/public/media/flags/madagascar.svg new file mode 100644 index 0000000..7b0360b --- /dev/null +++ b/public/media/flags/madagascar.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/madeira.svg b/public/media/flags/madeira.svg new file mode 100644 index 0000000..202611f --- /dev/null +++ b/public/media/flags/madeira.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/malawi.svg b/public/media/flags/malawi.svg new file mode 100644 index 0000000..dd13a37 --- /dev/null +++ b/public/media/flags/malawi.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/malaysia.svg b/public/media/flags/malaysia.svg new file mode 100644 index 0000000..d54136a --- /dev/null +++ b/public/media/flags/malaysia.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/maldives.svg b/public/media/flags/maldives.svg new file mode 100644 index 0000000..1459140 --- /dev/null +++ b/public/media/flags/maldives.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/mali.svg b/public/media/flags/mali.svg new file mode 100644 index 0000000..9059f81 --- /dev/null +++ b/public/media/flags/mali.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/malta.svg b/public/media/flags/malta.svg new file mode 100644 index 0000000..83bc352 --- /dev/null +++ b/public/media/flags/malta.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/marshall-island.svg b/public/media/flags/marshall-island.svg new file mode 100644 index 0000000..7e51ddc --- /dev/null +++ b/public/media/flags/marshall-island.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/martinique.svg b/public/media/flags/martinique.svg new file mode 100644 index 0000000..e80b49c --- /dev/null +++ b/public/media/flags/martinique.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/mauritania.svg b/public/media/flags/mauritania.svg new file mode 100644 index 0000000..f5dba04 --- /dev/null +++ b/public/media/flags/mauritania.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/mauritius.svg b/public/media/flags/mauritius.svg new file mode 100644 index 0000000..96a7abf --- /dev/null +++ b/public/media/flags/mauritius.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/melilla.svg b/public/media/flags/melilla.svg new file mode 100644 index 0000000..10b20a4 --- /dev/null +++ b/public/media/flags/melilla.svg @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/mexico.svg b/public/media/flags/mexico.svg new file mode 100644 index 0000000..8f5d9b4 --- /dev/null +++ b/public/media/flags/mexico.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/micronesia.svg b/public/media/flags/micronesia.svg new file mode 100644 index 0000000..07f6f94 --- /dev/null +++ b/public/media/flags/micronesia.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/moldova.svg b/public/media/flags/moldova.svg new file mode 100644 index 0000000..5e403f3 --- /dev/null +++ b/public/media/flags/moldova.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/monaco.svg b/public/media/flags/monaco.svg new file mode 100644 index 0000000..565cf5f --- /dev/null +++ b/public/media/flags/monaco.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/mongolia.svg b/public/media/flags/mongolia.svg new file mode 100644 index 0000000..0037448 --- /dev/null +++ b/public/media/flags/mongolia.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/montenegro.svg b/public/media/flags/montenegro.svg new file mode 100644 index 0000000..bf10070 --- /dev/null +++ b/public/media/flags/montenegro.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/montserrat.svg b/public/media/flags/montserrat.svg new file mode 100644 index 0000000..cf1b3ec --- /dev/null +++ b/public/media/flags/montserrat.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/morocco.svg b/public/media/flags/morocco.svg new file mode 100644 index 0000000..5acea60 --- /dev/null +++ b/public/media/flags/morocco.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/mozambique.svg b/public/media/flags/mozambique.svg new file mode 100644 index 0000000..63f579e --- /dev/null +++ b/public/media/flags/mozambique.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/myanmar.svg b/public/media/flags/myanmar.svg new file mode 100644 index 0000000..6bcce7d --- /dev/null +++ b/public/media/flags/myanmar.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/namibia.svg b/public/media/flags/namibia.svg new file mode 100644 index 0000000..dd6fb2c --- /dev/null +++ b/public/media/flags/namibia.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/nato.svg b/public/media/flags/nato.svg new file mode 100644 index 0000000..f8603fe --- /dev/null +++ b/public/media/flags/nato.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/nauru.svg b/public/media/flags/nauru.svg new file mode 100644 index 0000000..e922d0e --- /dev/null +++ b/public/media/flags/nauru.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/nepal.svg b/public/media/flags/nepal.svg new file mode 100644 index 0000000..8009e9e --- /dev/null +++ b/public/media/flags/nepal.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/netherlands.svg b/public/media/flags/netherlands.svg new file mode 100644 index 0000000..2f71030 --- /dev/null +++ b/public/media/flags/netherlands.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/new-zealand.svg b/public/media/flags/new-zealand.svg new file mode 100644 index 0000000..cc0ee7f --- /dev/null +++ b/public/media/flags/new-zealand.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/nicaragua.svg b/public/media/flags/nicaragua.svg new file mode 100644 index 0000000..27b6cca --- /dev/null +++ b/public/media/flags/nicaragua.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/niger.svg b/public/media/flags/niger.svg new file mode 100644 index 0000000..60a73a2 --- /dev/null +++ b/public/media/flags/niger.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/nigeria.svg b/public/media/flags/nigeria.svg new file mode 100644 index 0000000..41da495 --- /dev/null +++ b/public/media/flags/nigeria.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/niue.svg b/public/media/flags/niue.svg new file mode 100644 index 0000000..0c3b6d0 --- /dev/null +++ b/public/media/flags/niue.svg @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/norfolk-island.svg b/public/media/flags/norfolk-island.svg new file mode 100644 index 0000000..2082bdf --- /dev/null +++ b/public/media/flags/norfolk-island.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/north-korea.svg b/public/media/flags/north-korea.svg new file mode 100644 index 0000000..31d1463 --- /dev/null +++ b/public/media/flags/north-korea.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/northern-cyprus.svg b/public/media/flags/northern-cyprus.svg new file mode 100644 index 0000000..0587fe0 --- /dev/null +++ b/public/media/flags/northern-cyprus.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/northern-mariana-islands.svg b/public/media/flags/northern-mariana-islands.svg new file mode 100644 index 0000000..4029970 --- /dev/null +++ b/public/media/flags/northern-mariana-islands.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/norway.svg b/public/media/flags/norway.svg new file mode 100644 index 0000000..46ab6bf --- /dev/null +++ b/public/media/flags/norway.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/oman.svg b/public/media/flags/oman.svg new file mode 100644 index 0000000..5030fca --- /dev/null +++ b/public/media/flags/oman.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/ossetia.svg b/public/media/flags/ossetia.svg new file mode 100644 index 0000000..7d8cdd0 --- /dev/null +++ b/public/media/flags/ossetia.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/pakistan.svg b/public/media/flags/pakistan.svg new file mode 100644 index 0000000..f792bfe --- /dev/null +++ b/public/media/flags/pakistan.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/palau.svg b/public/media/flags/palau.svg new file mode 100644 index 0000000..19623a2 --- /dev/null +++ b/public/media/flags/palau.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/palestine.svg b/public/media/flags/palestine.svg new file mode 100644 index 0000000..0072a44 --- /dev/null +++ b/public/media/flags/palestine.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/panama.svg b/public/media/flags/panama.svg new file mode 100644 index 0000000..e89f18c --- /dev/null +++ b/public/media/flags/panama.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/papua-new-guinea.svg b/public/media/flags/papua-new-guinea.svg new file mode 100644 index 0000000..05a76f9 --- /dev/null +++ b/public/media/flags/papua-new-guinea.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/paraguay.svg b/public/media/flags/paraguay.svg new file mode 100644 index 0000000..8f2e962 --- /dev/null +++ b/public/media/flags/paraguay.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/peru.svg b/public/media/flags/peru.svg new file mode 100644 index 0000000..cd23022 --- /dev/null +++ b/public/media/flags/peru.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/philippines.svg b/public/media/flags/philippines.svg new file mode 100644 index 0000000..a6772d6 --- /dev/null +++ b/public/media/flags/philippines.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/pitcairn-islands.svg b/public/media/flags/pitcairn-islands.svg new file mode 100644 index 0000000..ccd508d --- /dev/null +++ b/public/media/flags/pitcairn-islands.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/poland.svg b/public/media/flags/poland.svg new file mode 100644 index 0000000..f4cd957 --- /dev/null +++ b/public/media/flags/poland.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/portugal.svg b/public/media/flags/portugal.svg new file mode 100644 index 0000000..91a14e6 --- /dev/null +++ b/public/media/flags/portugal.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/puerto-rico.svg b/public/media/flags/puerto-rico.svg new file mode 100644 index 0000000..6622b48 --- /dev/null +++ b/public/media/flags/puerto-rico.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/qatar.svg b/public/media/flags/qatar.svg new file mode 100644 index 0000000..718a769 --- /dev/null +++ b/public/media/flags/qatar.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/rapa-nui.svg b/public/media/flags/rapa-nui.svg new file mode 100644 index 0000000..0cb703e --- /dev/null +++ b/public/media/flags/rapa-nui.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/republic-of-macedonia.svg b/public/media/flags/republic-of-macedonia.svg new file mode 100644 index 0000000..5966f94 --- /dev/null +++ b/public/media/flags/republic-of-macedonia.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/republic-of-the-congo.svg b/public/media/flags/republic-of-the-congo.svg new file mode 100644 index 0000000..1d96ea7 --- /dev/null +++ b/public/media/flags/republic-of-the-congo.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/romania.svg b/public/media/flags/romania.svg new file mode 100644 index 0000000..f274915 --- /dev/null +++ b/public/media/flags/romania.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/russia.svg b/public/media/flags/russia.svg new file mode 100644 index 0000000..17299e2 --- /dev/null +++ b/public/media/flags/russia.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/rwanda.svg b/public/media/flags/rwanda.svg new file mode 100644 index 0000000..18810be --- /dev/null +++ b/public/media/flags/rwanda.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/saba-island.svg b/public/media/flags/saba-island.svg new file mode 100644 index 0000000..fbd7ffc --- /dev/null +++ b/public/media/flags/saba-island.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/sahrawi-arab-democratic-republic.svg b/public/media/flags/sahrawi-arab-democratic-republic.svg new file mode 100644 index 0000000..29e3d7f --- /dev/null +++ b/public/media/flags/sahrawi-arab-democratic-republic.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/saint-kitts-and-nevis.svg b/public/media/flags/saint-kitts-and-nevis.svg new file mode 100644 index 0000000..d503337 --- /dev/null +++ b/public/media/flags/saint-kitts-and-nevis.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/samoa.svg b/public/media/flags/samoa.svg new file mode 100644 index 0000000..1327d3f --- /dev/null +++ b/public/media/flags/samoa.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/san-marino.svg b/public/media/flags/san-marino.svg new file mode 100644 index 0000000..3334f79 --- /dev/null +++ b/public/media/flags/san-marino.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/sao-tome-and-prince.svg b/public/media/flags/sao-tome-and-prince.svg new file mode 100644 index 0000000..2be137a --- /dev/null +++ b/public/media/flags/sao-tome-and-prince.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/sardinia.svg b/public/media/flags/sardinia.svg new file mode 100644 index 0000000..9c122f5 --- /dev/null +++ b/public/media/flags/sardinia.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/saudi-arabia.svg b/public/media/flags/saudi-arabia.svg new file mode 100644 index 0000000..fffb816 --- /dev/null +++ b/public/media/flags/saudi-arabia.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/scotland.svg b/public/media/flags/scotland.svg new file mode 100644 index 0000000..995b18b --- /dev/null +++ b/public/media/flags/scotland.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/senegal.svg b/public/media/flags/senegal.svg new file mode 100644 index 0000000..43aeda2 --- /dev/null +++ b/public/media/flags/senegal.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/serbia.svg b/public/media/flags/serbia.svg new file mode 100644 index 0000000..f2d47b2 --- /dev/null +++ b/public/media/flags/serbia.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/seychelles.svg b/public/media/flags/seychelles.svg new file mode 100644 index 0000000..9c48b97 --- /dev/null +++ b/public/media/flags/seychelles.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/sicily.svg b/public/media/flags/sicily.svg new file mode 100644 index 0000000..6b382a4 --- /dev/null +++ b/public/media/flags/sicily.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/sierra-leone.svg b/public/media/flags/sierra-leone.svg new file mode 100644 index 0000000..3ef894d --- /dev/null +++ b/public/media/flags/sierra-leone.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/singapore.svg b/public/media/flags/singapore.svg new file mode 100644 index 0000000..c1bbe0d --- /dev/null +++ b/public/media/flags/singapore.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/sint-eustatius.svg b/public/media/flags/sint-eustatius.svg new file mode 100644 index 0000000..317526e --- /dev/null +++ b/public/media/flags/sint-eustatius.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/sint-maarten.svg b/public/media/flags/sint-maarten.svg new file mode 100644 index 0000000..bf2c035 --- /dev/null +++ b/public/media/flags/sint-maarten.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/slovakia.svg b/public/media/flags/slovakia.svg new file mode 100644 index 0000000..8ca0933 --- /dev/null +++ b/public/media/flags/slovakia.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/slovenia.svg b/public/media/flags/slovenia.svg new file mode 100644 index 0000000..8b63232 --- /dev/null +++ b/public/media/flags/slovenia.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/solomon-islands.svg b/public/media/flags/solomon-islands.svg new file mode 100644 index 0000000..7203b62 --- /dev/null +++ b/public/media/flags/solomon-islands.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/somalia.svg b/public/media/flags/somalia.svg new file mode 100644 index 0000000..3b72d5c --- /dev/null +++ b/public/media/flags/somalia.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/somaliland.svg b/public/media/flags/somaliland.svg new file mode 100644 index 0000000..deb11fe --- /dev/null +++ b/public/media/flags/somaliland.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/south-africa.svg b/public/media/flags/south-africa.svg new file mode 100644 index 0000000..2e657ba --- /dev/null +++ b/public/media/flags/south-africa.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/south-korea.svg b/public/media/flags/south-korea.svg new file mode 100644 index 0000000..acd5c90 --- /dev/null +++ b/public/media/flags/south-korea.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/south-sudan.svg b/public/media/flags/south-sudan.svg new file mode 100644 index 0000000..ac0a21e --- /dev/null +++ b/public/media/flags/south-sudan.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/spain.svg b/public/media/flags/spain.svg new file mode 100644 index 0000000..5f67162 --- /dev/null +++ b/public/media/flags/spain.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/sri-lanka.svg b/public/media/flags/sri-lanka.svg new file mode 100644 index 0000000..eaf58c3 --- /dev/null +++ b/public/media/flags/sri-lanka.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/st-barts.svg b/public/media/flags/st-barts.svg new file mode 100644 index 0000000..5205637 --- /dev/null +++ b/public/media/flags/st-barts.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/st-lucia.svg b/public/media/flags/st-lucia.svg new file mode 100644 index 0000000..3d32682 --- /dev/null +++ b/public/media/flags/st-lucia.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/st-vincent-and-the-grenadines.svg b/public/media/flags/st-vincent-and-the-grenadines.svg new file mode 100644 index 0000000..ffe6fee --- /dev/null +++ b/public/media/flags/st-vincent-and-the-grenadines.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/sudan.svg b/public/media/flags/sudan.svg new file mode 100644 index 0000000..6df8c2d --- /dev/null +++ b/public/media/flags/sudan.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/suriname.svg b/public/media/flags/suriname.svg new file mode 100644 index 0000000..16f6fa7 --- /dev/null +++ b/public/media/flags/suriname.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/swaziland.svg b/public/media/flags/swaziland.svg new file mode 100644 index 0000000..718aab5 --- /dev/null +++ b/public/media/flags/swaziland.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/sweden.svg b/public/media/flags/sweden.svg new file mode 100644 index 0000000..e27a5f7 --- /dev/null +++ b/public/media/flags/sweden.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/switzerland.svg b/public/media/flags/switzerland.svg new file mode 100644 index 0000000..61e4e81 --- /dev/null +++ b/public/media/flags/switzerland.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/syria.svg b/public/media/flags/syria.svg new file mode 100644 index 0000000..3e98f58 --- /dev/null +++ b/public/media/flags/syria.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/taiwan.svg b/public/media/flags/taiwan.svg new file mode 100644 index 0000000..d1f3671 --- /dev/null +++ b/public/media/flags/taiwan.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/tajikistan.svg b/public/media/flags/tajikistan.svg new file mode 100644 index 0000000..4c1f795 --- /dev/null +++ b/public/media/flags/tajikistan.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/tanzania.svg b/public/media/flags/tanzania.svg new file mode 100644 index 0000000..55f7129 --- /dev/null +++ b/public/media/flags/tanzania.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/thailand.svg b/public/media/flags/thailand.svg new file mode 100644 index 0000000..e5dae5c --- /dev/null +++ b/public/media/flags/thailand.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/tibet.svg b/public/media/flags/tibet.svg new file mode 100644 index 0000000..cc24bc2 --- /dev/null +++ b/public/media/flags/tibet.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/togo.svg b/public/media/flags/togo.svg new file mode 100644 index 0000000..66100af --- /dev/null +++ b/public/media/flags/togo.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/tokelau.svg b/public/media/flags/tokelau.svg new file mode 100644 index 0000000..c48108d --- /dev/null +++ b/public/media/flags/tokelau.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/tonga.svg b/public/media/flags/tonga.svg new file mode 100644 index 0000000..7116131 --- /dev/null +++ b/public/media/flags/tonga.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/transnistria.svg b/public/media/flags/transnistria.svg new file mode 100644 index 0000000..e0439ab --- /dev/null +++ b/public/media/flags/transnistria.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/trinidad-and-tobago.svg b/public/media/flags/trinidad-and-tobago.svg new file mode 100644 index 0000000..72e026f --- /dev/null +++ b/public/media/flags/trinidad-and-tobago.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/tunisia.svg b/public/media/flags/tunisia.svg new file mode 100644 index 0000000..08e4379 --- /dev/null +++ b/public/media/flags/tunisia.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/turkey.svg b/public/media/flags/turkey.svg new file mode 100644 index 0000000..0a5cb9c --- /dev/null +++ b/public/media/flags/turkey.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/turkmenistan.svg b/public/media/flags/turkmenistan.svg new file mode 100644 index 0000000..c130cd7 --- /dev/null +++ b/public/media/flags/turkmenistan.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/turks-and-caicos.svg b/public/media/flags/turks-and-caicos.svg new file mode 100644 index 0000000..17bfea2 --- /dev/null +++ b/public/media/flags/turks-and-caicos.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/tuvalu-1.svg b/public/media/flags/tuvalu-1.svg new file mode 100644 index 0000000..d49cabb --- /dev/null +++ b/public/media/flags/tuvalu-1.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/tuvalu.svg b/public/media/flags/tuvalu.svg new file mode 100644 index 0000000..871d1de --- /dev/null +++ b/public/media/flags/tuvalu.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/uganda.svg b/public/media/flags/uganda.svg new file mode 100644 index 0000000..926bc9d --- /dev/null +++ b/public/media/flags/uganda.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/uk.svg b/public/media/flags/uk.svg new file mode 100644 index 0000000..383c9e8 --- /dev/null +++ b/public/media/flags/uk.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/ukraine.svg b/public/media/flags/ukraine.svg new file mode 100644 index 0000000..04b8a32 --- /dev/null +++ b/public/media/flags/ukraine.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/united-arab-emirates.svg b/public/media/flags/united-arab-emirates.svg new file mode 100644 index 0000000..c507b8f --- /dev/null +++ b/public/media/flags/united-arab-emirates.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/united-kingdom.svg b/public/media/flags/united-kingdom.svg new file mode 100644 index 0000000..bab1dbd --- /dev/null +++ b/public/media/flags/united-kingdom.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/united-nations.svg b/public/media/flags/united-nations.svg new file mode 100644 index 0000000..c4db01a --- /dev/null +++ b/public/media/flags/united-nations.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/united-states.svg b/public/media/flags/united-states.svg new file mode 100644 index 0000000..37ff08d --- /dev/null +++ b/public/media/flags/united-states.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/uruguay.svg b/public/media/flags/uruguay.svg new file mode 100644 index 0000000..9d5ea42 --- /dev/null +++ b/public/media/flags/uruguay.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/uzbekistan.svg b/public/media/flags/uzbekistan.svg new file mode 100644 index 0000000..265704a --- /dev/null +++ b/public/media/flags/uzbekistan.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/vanuatu.svg b/public/media/flags/vanuatu.svg new file mode 100644 index 0000000..fcbd354 --- /dev/null +++ b/public/media/flags/vanuatu.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/vatican-city.svg b/public/media/flags/vatican-city.svg new file mode 100644 index 0000000..62464e7 --- /dev/null +++ b/public/media/flags/vatican-city.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/venezuela.svg b/public/media/flags/venezuela.svg new file mode 100644 index 0000000..e35b132 --- /dev/null +++ b/public/media/flags/venezuela.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/vietnam.svg b/public/media/flags/vietnam.svg new file mode 100644 index 0000000..08f02fb --- /dev/null +++ b/public/media/flags/vietnam.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/virgin-islands.svg b/public/media/flags/virgin-islands.svg new file mode 100644 index 0000000..bcb036f --- /dev/null +++ b/public/media/flags/virgin-islands.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/wales.svg b/public/media/flags/wales.svg new file mode 100644 index 0000000..3130bca --- /dev/null +++ b/public/media/flags/wales.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/yemen.svg b/public/media/flags/yemen.svg new file mode 100644 index 0000000..dbe7eb0 --- /dev/null +++ b/public/media/flags/yemen.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/zambia.svg b/public/media/flags/zambia.svg new file mode 100644 index 0000000..50a5fbc --- /dev/null +++ b/public/media/flags/zambia.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/flags/zimbabwe.svg b/public/media/flags/zimbabwe.svg new file mode 100644 index 0000000..cd3c0b3 --- /dev/null +++ b/public/media/flags/zimbabwe.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/framework-logos/angular.png b/public/media/framework-logos/angular.png new file mode 100644 index 0000000..c26ae4d Binary files /dev/null and b/public/media/framework-logos/angular.png differ diff --git a/public/media/framework-logos/asp.net-core.png b/public/media/framework-logos/asp.net-core.png new file mode 100644 index 0000000..8e872c9 Binary files /dev/null and b/public/media/framework-logos/asp.net-core.png differ diff --git a/public/media/framework-logos/blazor.png b/public/media/framework-logos/blazor.png new file mode 100644 index 0000000..1411c78 Binary files /dev/null and b/public/media/framework-logos/blazor.png differ diff --git a/public/media/framework-logos/bootstrap.png b/public/media/framework-logos/bootstrap.png new file mode 100644 index 0000000..4266d4a Binary files /dev/null and b/public/media/framework-logos/bootstrap.png differ diff --git a/public/media/framework-logos/codeigniter.png b/public/media/framework-logos/codeigniter.png new file mode 100644 index 0000000..621a4c7 Binary files /dev/null and b/public/media/framework-logos/codeigniter.png differ diff --git a/public/media/framework-logos/django.png b/public/media/framework-logos/django.png new file mode 100644 index 0000000..c124bbc Binary files /dev/null and b/public/media/framework-logos/django.png differ diff --git a/public/media/framework-logos/flask.png b/public/media/framework-logos/flask.png new file mode 100644 index 0000000..004eb7e Binary files /dev/null and b/public/media/framework-logos/flask.png differ diff --git a/public/media/framework-logos/go.png b/public/media/framework-logos/go.png new file mode 100644 index 0000000..5e102d4 Binary files /dev/null and b/public/media/framework-logos/go.png differ diff --git a/public/media/framework-logos/html.png b/public/media/framework-logos/html.png new file mode 100644 index 0000000..851cb6c Binary files /dev/null and b/public/media/framework-logos/html.png differ diff --git a/public/media/framework-logos/inactive/angular.png b/public/media/framework-logos/inactive/angular.png new file mode 100644 index 0000000..960db96 Binary files /dev/null and b/public/media/framework-logos/inactive/angular.png differ diff --git a/public/media/framework-logos/inactive/asp.net-core.png b/public/media/framework-logos/inactive/asp.net-core.png new file mode 100644 index 0000000..cdd50d6 Binary files /dev/null and b/public/media/framework-logos/inactive/asp.net-core.png differ diff --git a/public/media/framework-logos/inactive/blazor.png b/public/media/framework-logos/inactive/blazor.png new file mode 100644 index 0000000..a0a7926 Binary files /dev/null and b/public/media/framework-logos/inactive/blazor.png differ diff --git a/public/media/framework-logos/inactive/bootstrap.png b/public/media/framework-logos/inactive/bootstrap.png new file mode 100644 index 0000000..6887e65 Binary files /dev/null and b/public/media/framework-logos/inactive/bootstrap.png differ diff --git a/public/media/framework-logos/inactive/codeigniter.png b/public/media/framework-logos/inactive/codeigniter.png new file mode 100644 index 0000000..fc369a8 Binary files /dev/null and b/public/media/framework-logos/inactive/codeigniter.png differ diff --git a/public/media/framework-logos/inactive/django.png b/public/media/framework-logos/inactive/django.png new file mode 100644 index 0000000..cb12390 Binary files /dev/null and b/public/media/framework-logos/inactive/django.png differ diff --git a/public/media/framework-logos/inactive/flask.png b/public/media/framework-logos/inactive/flask.png new file mode 100644 index 0000000..28dbe90 Binary files /dev/null and b/public/media/framework-logos/inactive/flask.png differ diff --git a/public/media/framework-logos/inactive/go.png b/public/media/framework-logos/inactive/go.png new file mode 100644 index 0000000..9e5bfb2 Binary files /dev/null and b/public/media/framework-logos/inactive/go.png differ diff --git a/public/media/framework-logos/inactive/html.png b/public/media/framework-logos/inactive/html.png new file mode 100644 index 0000000..18ae89e Binary files /dev/null and b/public/media/framework-logos/inactive/html.png differ diff --git a/public/media/framework-logos/inactive/laravel.png b/public/media/framework-logos/inactive/laravel.png new file mode 100644 index 0000000..0dcc9ea Binary files /dev/null and b/public/media/framework-logos/inactive/laravel.png differ diff --git a/public/media/framework-logos/inactive/nodejs.png b/public/media/framework-logos/inactive/nodejs.png new file mode 100644 index 0000000..65945bd Binary files /dev/null and b/public/media/framework-logos/inactive/nodejs.png differ diff --git a/public/media/framework-logos/inactive/play.png b/public/media/framework-logos/inactive/play.png new file mode 100644 index 0000000..113f067 Binary files /dev/null and b/public/media/framework-logos/inactive/play.png differ diff --git a/public/media/framework-logos/inactive/rails.png b/public/media/framework-logos/inactive/rails.png new file mode 100644 index 0000000..c5699ab Binary files /dev/null and b/public/media/framework-logos/inactive/rails.png differ diff --git a/public/media/framework-logos/inactive/react.png b/public/media/framework-logos/inactive/react.png new file mode 100644 index 0000000..06e2635 Binary files /dev/null and b/public/media/framework-logos/inactive/react.png differ diff --git a/public/media/framework-logos/inactive/spring.png b/public/media/framework-logos/inactive/spring.png new file mode 100644 index 0000000..3dae1ef Binary files /dev/null and b/public/media/framework-logos/inactive/spring.png differ diff --git a/public/media/framework-logos/inactive/symfony.png b/public/media/framework-logos/inactive/symfony.png new file mode 100644 index 0000000..c7f0d3e Binary files /dev/null and b/public/media/framework-logos/inactive/symfony.png differ diff --git a/public/media/framework-logos/inactive/vue.png b/public/media/framework-logos/inactive/vue.png new file mode 100644 index 0000000..f5ce331 Binary files /dev/null and b/public/media/framework-logos/inactive/vue.png differ diff --git a/public/media/framework-logos/inactive/yii.png b/public/media/framework-logos/inactive/yii.png new file mode 100644 index 0000000..7198365 Binary files /dev/null and b/public/media/framework-logos/inactive/yii.png differ diff --git a/public/media/framework-logos/laravel.png b/public/media/framework-logos/laravel.png new file mode 100644 index 0000000..adf5f37 Binary files /dev/null and b/public/media/framework-logos/laravel.png differ diff --git a/public/media/framework-logos/nodejs.png b/public/media/framework-logos/nodejs.png new file mode 100644 index 0000000..6750937 Binary files /dev/null and b/public/media/framework-logos/nodejs.png differ diff --git a/public/media/framework-logos/play.png b/public/media/framework-logos/play.png new file mode 100644 index 0000000..3061311 Binary files /dev/null and b/public/media/framework-logos/play.png differ diff --git a/public/media/framework-logos/rails.png b/public/media/framework-logos/rails.png new file mode 100644 index 0000000..49aa5bb Binary files /dev/null and b/public/media/framework-logos/rails.png differ diff --git a/public/media/framework-logos/react.png b/public/media/framework-logos/react.png new file mode 100644 index 0000000..5544e61 Binary files /dev/null and b/public/media/framework-logos/react.png differ diff --git a/public/media/framework-logos/spring.png b/public/media/framework-logos/spring.png new file mode 100644 index 0000000..1725055 Binary files /dev/null and b/public/media/framework-logos/spring.png differ diff --git a/public/media/framework-logos/symfony.png b/public/media/framework-logos/symfony.png new file mode 100644 index 0000000..b9904b4 Binary files /dev/null and b/public/media/framework-logos/symfony.png differ diff --git a/public/media/framework-logos/vue.png b/public/media/framework-logos/vue.png new file mode 100644 index 0000000..67752df Binary files /dev/null and b/public/media/framework-logos/vue.png differ diff --git a/public/media/framework-logos/yii.png b/public/media/framework-logos/yii.png new file mode 100644 index 0000000..e0d8500 Binary files /dev/null and b/public/media/framework-logos/yii.png differ diff --git a/public/media/icons/duotune/abstract/abs001.svg b/public/media/icons/duotune/abstract/abs001.svg new file mode 100644 index 0000000..d07fb26 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs001.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/abstract/abs002.svg b/public/media/icons/duotune/abstract/abs002.svg new file mode 100644 index 0000000..faa68c5 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs002.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/abstract/abs003.svg b/public/media/icons/duotune/abstract/abs003.svg new file mode 100644 index 0000000..7e5853c --- /dev/null +++ b/public/media/icons/duotune/abstract/abs003.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/abstract/abs004.svg b/public/media/icons/duotune/abstract/abs004.svg new file mode 100644 index 0000000..062af93 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs004.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/abstract/abs005.svg b/public/media/icons/duotune/abstract/abs005.svg new file mode 100644 index 0000000..684404c --- /dev/null +++ b/public/media/icons/duotune/abstract/abs005.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/abstract/abs006.svg b/public/media/icons/duotune/abstract/abs006.svg new file mode 100644 index 0000000..6302c6c --- /dev/null +++ b/public/media/icons/duotune/abstract/abs006.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/abstract/abs007.svg b/public/media/icons/duotune/abstract/abs007.svg new file mode 100644 index 0000000..a306715 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs007.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/abstract/abs008.svg b/public/media/icons/duotune/abstract/abs008.svg new file mode 100644 index 0000000..698851e --- /dev/null +++ b/public/media/icons/duotune/abstract/abs008.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/abstract/abs009.svg b/public/media/icons/duotune/abstract/abs009.svg new file mode 100644 index 0000000..1444570 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs009.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/abstract/abs010.svg b/public/media/icons/duotune/abstract/abs010.svg new file mode 100644 index 0000000..a2b9db3 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs010.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/abstract/abs011.svg b/public/media/icons/duotune/abstract/abs011.svg new file mode 100644 index 0000000..fa84f36 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs011.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs012.svg b/public/media/icons/duotune/abstract/abs012.svg new file mode 100644 index 0000000..c9ad38c --- /dev/null +++ b/public/media/icons/duotune/abstract/abs012.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs013.svg b/public/media/icons/duotune/abstract/abs013.svg new file mode 100644 index 0000000..346f9fa --- /dev/null +++ b/public/media/icons/duotune/abstract/abs013.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs014.svg b/public/media/icons/duotune/abstract/abs014.svg new file mode 100644 index 0000000..0b1973d --- /dev/null +++ b/public/media/icons/duotune/abstract/abs014.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs015.svg b/public/media/icons/duotune/abstract/abs015.svg new file mode 100644 index 0000000..66224ef --- /dev/null +++ b/public/media/icons/duotune/abstract/abs015.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs016.svg b/public/media/icons/duotune/abstract/abs016.svg new file mode 100644 index 0000000..f438443 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs016.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs017.svg b/public/media/icons/duotune/abstract/abs017.svg new file mode 100644 index 0000000..3e999af --- /dev/null +++ b/public/media/icons/duotune/abstract/abs017.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs018.svg b/public/media/icons/duotune/abstract/abs018.svg new file mode 100644 index 0000000..496665a --- /dev/null +++ b/public/media/icons/duotune/abstract/abs018.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs019.svg b/public/media/icons/duotune/abstract/abs019.svg new file mode 100644 index 0000000..50aad67 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs019.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs020.svg b/public/media/icons/duotune/abstract/abs020.svg new file mode 100644 index 0000000..b51e1a8 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs020.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs021.svg b/public/media/icons/duotune/abstract/abs021.svg new file mode 100644 index 0000000..e2185b6 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs021.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs022.svg b/public/media/icons/duotune/abstract/abs022.svg new file mode 100644 index 0000000..2782b88 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs022.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs023.svg b/public/media/icons/duotune/abstract/abs023.svg new file mode 100644 index 0000000..884a59e --- /dev/null +++ b/public/media/icons/duotune/abstract/abs023.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs024.svg b/public/media/icons/duotune/abstract/abs024.svg new file mode 100644 index 0000000..8ccc893 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs024.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs025.svg b/public/media/icons/duotune/abstract/abs025.svg new file mode 100644 index 0000000..e47f85a --- /dev/null +++ b/public/media/icons/duotune/abstract/abs025.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs026.svg b/public/media/icons/duotune/abstract/abs026.svg new file mode 100644 index 0000000..157013d --- /dev/null +++ b/public/media/icons/duotune/abstract/abs026.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs027.svg b/public/media/icons/duotune/abstract/abs027.svg new file mode 100644 index 0000000..522389f --- /dev/null +++ b/public/media/icons/duotune/abstract/abs027.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs028.svg b/public/media/icons/duotune/abstract/abs028.svg new file mode 100644 index 0000000..dfc2108 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs028.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs029.svg b/public/media/icons/duotune/abstract/abs029.svg new file mode 100644 index 0000000..758d738 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs029.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs030.svg b/public/media/icons/duotune/abstract/abs030.svg new file mode 100644 index 0000000..82dce13 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs030.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs031.svg b/public/media/icons/duotune/abstract/abs031.svg new file mode 100644 index 0000000..3bd2d96 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs031.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs032.svg b/public/media/icons/duotune/abstract/abs032.svg new file mode 100644 index 0000000..0e0580c --- /dev/null +++ b/public/media/icons/duotune/abstract/abs032.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs033.svg b/public/media/icons/duotune/abstract/abs033.svg new file mode 100644 index 0000000..7bd98fd --- /dev/null +++ b/public/media/icons/duotune/abstract/abs033.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs034.svg b/public/media/icons/duotune/abstract/abs034.svg new file mode 100644 index 0000000..a1c5f4f --- /dev/null +++ b/public/media/icons/duotune/abstract/abs034.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs035.svg b/public/media/icons/duotune/abstract/abs035.svg new file mode 100644 index 0000000..2b6c4e9 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs035.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs036.svg b/public/media/icons/duotune/abstract/abs036.svg new file mode 100644 index 0000000..22469f7 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs036.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs037.svg b/public/media/icons/duotune/abstract/abs037.svg new file mode 100644 index 0000000..a8be87d --- /dev/null +++ b/public/media/icons/duotune/abstract/abs037.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs038.svg b/public/media/icons/duotune/abstract/abs038.svg new file mode 100644 index 0000000..52570a2 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs038.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs039.svg b/public/media/icons/duotune/abstract/abs039.svg new file mode 100644 index 0000000..c07b30c --- /dev/null +++ b/public/media/icons/duotune/abstract/abs039.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs040.svg b/public/media/icons/duotune/abstract/abs040.svg new file mode 100644 index 0000000..e950a1f --- /dev/null +++ b/public/media/icons/duotune/abstract/abs040.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs041.svg b/public/media/icons/duotune/abstract/abs041.svg new file mode 100644 index 0000000..3a44aa2 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs041.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs042.svg b/public/media/icons/duotune/abstract/abs042.svg new file mode 100644 index 0000000..def0269 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs042.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs043.svg b/public/media/icons/duotune/abstract/abs043.svg new file mode 100644 index 0000000..44a6fa5 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs043.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs044.svg b/public/media/icons/duotune/abstract/abs044.svg new file mode 100644 index 0000000..545f57c --- /dev/null +++ b/public/media/icons/duotune/abstract/abs044.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs045.svg b/public/media/icons/duotune/abstract/abs045.svg new file mode 100644 index 0000000..0ee39cc --- /dev/null +++ b/public/media/icons/duotune/abstract/abs045.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs046.svg b/public/media/icons/duotune/abstract/abs046.svg new file mode 100644 index 0000000..3dc345d --- /dev/null +++ b/public/media/icons/duotune/abstract/abs046.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs047.svg b/public/media/icons/duotune/abstract/abs047.svg new file mode 100644 index 0000000..d7c0da8 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs047.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs048.svg b/public/media/icons/duotune/abstract/abs048.svg new file mode 100644 index 0000000..c936977 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs048.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs049.svg b/public/media/icons/duotune/abstract/abs049.svg new file mode 100644 index 0000000..95b1f93 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs049.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/abstract/abs050.svg b/public/media/icons/duotune/abstract/abs050.svg new file mode 100644 index 0000000..316587b --- /dev/null +++ b/public/media/icons/duotune/abstract/abs050.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/public/media/icons/duotune/abstract/abs051.svg b/public/media/icons/duotune/abstract/abs051.svg new file mode 100644 index 0000000..9b97741 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs051.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/public/media/icons/duotune/abstract/abs052.svg b/public/media/icons/duotune/abstract/abs052.svg new file mode 100644 index 0000000..88a84f4 --- /dev/null +++ b/public/media/icons/duotune/abstract/abs052.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/public/media/icons/duotune/arrows/arr001.svg b/public/media/icons/duotune/arrows/arr001.svg new file mode 100644 index 0000000..501854a --- /dev/null +++ b/public/media/icons/duotune/arrows/arr001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr002.svg b/public/media/icons/duotune/arrows/arr002.svg new file mode 100644 index 0000000..22d45a9 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr003.svg b/public/media/icons/duotune/arrows/arr003.svg new file mode 100644 index 0000000..7dba9cb --- /dev/null +++ b/public/media/icons/duotune/arrows/arr003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr004.svg b/public/media/icons/duotune/arrows/arr004.svg new file mode 100644 index 0000000..6a2a028 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr005.svg b/public/media/icons/duotune/arrows/arr005.svg new file mode 100644 index 0000000..b42170e --- /dev/null +++ b/public/media/icons/duotune/arrows/arr005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr006.svg b/public/media/icons/duotune/arrows/arr006.svg new file mode 100644 index 0000000..1d4bb29 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr007.svg b/public/media/icons/duotune/arrows/arr007.svg new file mode 100644 index 0000000..aca43fc --- /dev/null +++ b/public/media/icons/duotune/arrows/arr007.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr008.svg b/public/media/icons/duotune/arrows/arr008.svg new file mode 100644 index 0000000..5ef20b1 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr008.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr009.svg b/public/media/icons/duotune/arrows/arr009.svg new file mode 100644 index 0000000..0392332 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr010.svg b/public/media/icons/duotune/arrows/arr010.svg new file mode 100644 index 0000000..6b9ab35 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr010.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr011.svg b/public/media/icons/duotune/arrows/arr011.svg new file mode 100644 index 0000000..140d6a0 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr011.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr012.svg b/public/media/icons/duotune/arrows/arr012.svg new file mode 100644 index 0000000..6d386f3 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr012.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr013.svg b/public/media/icons/duotune/arrows/arr013.svg new file mode 100644 index 0000000..d5a5e1b --- /dev/null +++ b/public/media/icons/duotune/arrows/arr013.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr014.svg b/public/media/icons/duotune/arrows/arr014.svg new file mode 100644 index 0000000..95ebb41 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr014.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr015.svg b/public/media/icons/duotune/arrows/arr015.svg new file mode 100644 index 0000000..07332c6 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr015.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr016.svg b/public/media/icons/duotune/arrows/arr016.svg new file mode 100644 index 0000000..5cec85c --- /dev/null +++ b/public/media/icons/duotune/arrows/arr016.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr017.svg b/public/media/icons/duotune/arrows/arr017.svg new file mode 100644 index 0000000..058a723 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr017.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr018.svg b/public/media/icons/duotune/arrows/arr018.svg new file mode 100644 index 0000000..47c2d72 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr018.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr019.svg b/public/media/icons/duotune/arrows/arr019.svg new file mode 100644 index 0000000..3cfa6ff --- /dev/null +++ b/public/media/icons/duotune/arrows/arr019.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr020.svg b/public/media/icons/duotune/arrows/arr020.svg new file mode 100644 index 0000000..ae466aa --- /dev/null +++ b/public/media/icons/duotune/arrows/arr020.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr021.svg b/public/media/icons/duotune/arrows/arr021.svg new file mode 100644 index 0000000..688a552 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr021.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr022.svg b/public/media/icons/duotune/arrows/arr022.svg new file mode 100644 index 0000000..258463b --- /dev/null +++ b/public/media/icons/duotune/arrows/arr022.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr023.svg b/public/media/icons/duotune/arrows/arr023.svg new file mode 100644 index 0000000..12a622d --- /dev/null +++ b/public/media/icons/duotune/arrows/arr023.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr024.svg b/public/media/icons/duotune/arrows/arr024.svg new file mode 100644 index 0000000..8daf378 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr024.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr025.svg b/public/media/icons/duotune/arrows/arr025.svg new file mode 100644 index 0000000..bedb8dd --- /dev/null +++ b/public/media/icons/duotune/arrows/arr025.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr026.svg b/public/media/icons/duotune/arrows/arr026.svg new file mode 100644 index 0000000..ae58f69 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr026.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr027.svg b/public/media/icons/duotune/arrows/arr027.svg new file mode 100644 index 0000000..a748ff7 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr027.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr028.svg b/public/media/icons/duotune/arrows/arr028.svg new file mode 100644 index 0000000..88eba35 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr028.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr029.svg b/public/media/icons/duotune/arrows/arr029.svg new file mode 100644 index 0000000..687c2fa --- /dev/null +++ b/public/media/icons/duotune/arrows/arr029.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr030.svg b/public/media/icons/duotune/arrows/arr030.svg new file mode 100644 index 0000000..eae1869 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr030.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr031.svg b/public/media/icons/duotune/arrows/arr031.svg new file mode 100644 index 0000000..12208cf --- /dev/null +++ b/public/media/icons/duotune/arrows/arr031.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr032.svg b/public/media/icons/duotune/arrows/arr032.svg new file mode 100644 index 0000000..1cf662d --- /dev/null +++ b/public/media/icons/duotune/arrows/arr032.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr033.svg b/public/media/icons/duotune/arrows/arr033.svg new file mode 100644 index 0000000..ab2d44e --- /dev/null +++ b/public/media/icons/duotune/arrows/arr033.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr034.svg b/public/media/icons/duotune/arrows/arr034.svg new file mode 100644 index 0000000..ab2d44e --- /dev/null +++ b/public/media/icons/duotune/arrows/arr034.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr035.svg b/public/media/icons/duotune/arrows/arr035.svg new file mode 100644 index 0000000..920cea3 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr035.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr036.svg b/public/media/icons/duotune/arrows/arr036.svg new file mode 100644 index 0000000..9d18d57 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr036.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr037.svg b/public/media/icons/duotune/arrows/arr037.svg new file mode 100644 index 0000000..2b72c6b --- /dev/null +++ b/public/media/icons/duotune/arrows/arr037.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr038.svg b/public/media/icons/duotune/arrows/arr038.svg new file mode 100644 index 0000000..fc74731 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr038.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr039.svg b/public/media/icons/duotune/arrows/arr039.svg new file mode 100644 index 0000000..e632a4b --- /dev/null +++ b/public/media/icons/duotune/arrows/arr039.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr040.svg b/public/media/icons/duotune/arrows/arr040.svg new file mode 100644 index 0000000..17d45b0 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr040.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr041.svg b/public/media/icons/duotune/arrows/arr041.svg new file mode 100644 index 0000000..8dd0125 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr041.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr042.svg b/public/media/icons/duotune/arrows/arr042.svg new file mode 100644 index 0000000..6e8abb5 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr042.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr043.svg b/public/media/icons/duotune/arrows/arr043.svg new file mode 100644 index 0000000..e70f5ec --- /dev/null +++ b/public/media/icons/duotune/arrows/arr043.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr044.svg b/public/media/icons/duotune/arrows/arr044.svg new file mode 100644 index 0000000..27cd814 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr044.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr045.svg b/public/media/icons/duotune/arrows/arr045.svg new file mode 100644 index 0000000..b4517dd --- /dev/null +++ b/public/media/icons/duotune/arrows/arr045.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr046.svg b/public/media/icons/duotune/arrows/arr046.svg new file mode 100644 index 0000000..5f69e30 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr046.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr047.svg b/public/media/icons/duotune/arrows/arr047.svg new file mode 100644 index 0000000..943a8cf --- /dev/null +++ b/public/media/icons/duotune/arrows/arr047.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr048.svg b/public/media/icons/duotune/arrows/arr048.svg new file mode 100644 index 0000000..a464e68 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr048.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr049.svg b/public/media/icons/duotune/arrows/arr049.svg new file mode 100644 index 0000000..09116d3 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr049.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr050.svg b/public/media/icons/duotune/arrows/arr050.svg new file mode 100644 index 0000000..703d523 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr050.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr051.svg b/public/media/icons/duotune/arrows/arr051.svg new file mode 100644 index 0000000..af348d1 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr051.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr052.svg b/public/media/icons/duotune/arrows/arr052.svg new file mode 100644 index 0000000..3038407 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr052.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr053.svg b/public/media/icons/duotune/arrows/arr053.svg new file mode 100644 index 0000000..6aa401e --- /dev/null +++ b/public/media/icons/duotune/arrows/arr053.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr054.svg b/public/media/icons/duotune/arrows/arr054.svg new file mode 100644 index 0000000..784d865 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr054.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr055.svg b/public/media/icons/duotune/arrows/arr055.svg new file mode 100644 index 0000000..2c25ea9 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr055.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr056.svg b/public/media/icons/duotune/arrows/arr056.svg new file mode 100644 index 0000000..b50bb68 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr056.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr057.svg b/public/media/icons/duotune/arrows/arr057.svg new file mode 100644 index 0000000..da4afe4 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr057.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr058.svg b/public/media/icons/duotune/arrows/arr058.svg new file mode 100644 index 0000000..1fe059b --- /dev/null +++ b/public/media/icons/duotune/arrows/arr058.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr059.svg b/public/media/icons/duotune/arrows/arr059.svg new file mode 100644 index 0000000..f55ebdb --- /dev/null +++ b/public/media/icons/duotune/arrows/arr059.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr060.svg b/public/media/icons/duotune/arrows/arr060.svg new file mode 100644 index 0000000..58ad717 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr060.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr061.svg b/public/media/icons/duotune/arrows/arr061.svg new file mode 100644 index 0000000..a000fbf --- /dev/null +++ b/public/media/icons/duotune/arrows/arr061.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr062.svg b/public/media/icons/duotune/arrows/arr062.svg new file mode 100644 index 0000000..49d133f --- /dev/null +++ b/public/media/icons/duotune/arrows/arr062.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr063.svg b/public/media/icons/duotune/arrows/arr063.svg new file mode 100644 index 0000000..dcedf4f --- /dev/null +++ b/public/media/icons/duotune/arrows/arr063.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr064.svg b/public/media/icons/duotune/arrows/arr064.svg new file mode 100644 index 0000000..123f766 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr064.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr065.svg b/public/media/icons/duotune/arrows/arr065.svg new file mode 100644 index 0000000..e27a5bb --- /dev/null +++ b/public/media/icons/duotune/arrows/arr065.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr066.svg b/public/media/icons/duotune/arrows/arr066.svg new file mode 100644 index 0000000..fc638fb --- /dev/null +++ b/public/media/icons/duotune/arrows/arr066.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr067.svg b/public/media/icons/duotune/arrows/arr067.svg new file mode 100644 index 0000000..9e000ca --- /dev/null +++ b/public/media/icons/duotune/arrows/arr067.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr068.svg b/public/media/icons/duotune/arrows/arr068.svg new file mode 100644 index 0000000..fcd367a --- /dev/null +++ b/public/media/icons/duotune/arrows/arr068.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr069.svg b/public/media/icons/duotune/arrows/arr069.svg new file mode 100644 index 0000000..759598c --- /dev/null +++ b/public/media/icons/duotune/arrows/arr069.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr070.svg b/public/media/icons/duotune/arrows/arr070.svg new file mode 100644 index 0000000..6a4d3c2 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr070.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/arrows/arr071.svg b/public/media/icons/duotune/arrows/arr071.svg new file mode 100644 index 0000000..6049c4c --- /dev/null +++ b/public/media/icons/duotune/arrows/arr071.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr072.svg b/public/media/icons/duotune/arrows/arr072.svg new file mode 100644 index 0000000..ea50d09 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr072.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr073.svg b/public/media/icons/duotune/arrows/arr073.svg new file mode 100644 index 0000000..7e3b3ac --- /dev/null +++ b/public/media/icons/duotune/arrows/arr073.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr074.svg b/public/media/icons/duotune/arrows/arr074.svg new file mode 100644 index 0000000..9a7e28a --- /dev/null +++ b/public/media/icons/duotune/arrows/arr074.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr075.svg b/public/media/icons/duotune/arrows/arr075.svg new file mode 100644 index 0000000..5192f4c --- /dev/null +++ b/public/media/icons/duotune/arrows/arr075.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/public/media/icons/duotune/arrows/arr076.svg b/public/media/icons/duotune/arrows/arr076.svg new file mode 100644 index 0000000..b651630 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr076.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr077.svg b/public/media/icons/duotune/arrows/arr077.svg new file mode 100644 index 0000000..1efca21 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr077.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr078.svg b/public/media/icons/duotune/arrows/arr078.svg new file mode 100644 index 0000000..7fb31fc --- /dev/null +++ b/public/media/icons/duotune/arrows/arr078.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr079.svg b/public/media/icons/duotune/arrows/arr079.svg new file mode 100644 index 0000000..5d8c30e --- /dev/null +++ b/public/media/icons/duotune/arrows/arr079.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr080.svg b/public/media/icons/duotune/arrows/arr080.svg new file mode 100644 index 0000000..ae40cf3 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr080.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr081.svg b/public/media/icons/duotune/arrows/arr081.svg new file mode 100644 index 0000000..1b9dad8 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr081.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr082.svg b/public/media/icons/duotune/arrows/arr082.svg new file mode 100644 index 0000000..71e69f5 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr082.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr084.svg b/public/media/icons/duotune/arrows/arr084.svg new file mode 100644 index 0000000..11cba99 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr084.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr085.svg b/public/media/icons/duotune/arrows/arr085.svg new file mode 100644 index 0000000..943e4d9 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr085.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr086.svg b/public/media/icons/duotune/arrows/arr086.svg new file mode 100644 index 0000000..d5b64ed --- /dev/null +++ b/public/media/icons/duotune/arrows/arr086.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr087.svg b/public/media/icons/duotune/arrows/arr087.svg new file mode 100644 index 0000000..49c6c32 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr087.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/public/media/icons/duotune/arrows/arr088.svg b/public/media/icons/duotune/arrows/arr088.svg new file mode 100644 index 0000000..62c0f95 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr088.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/public/media/icons/duotune/arrows/arr089.svg b/public/media/icons/duotune/arrows/arr089.svg new file mode 100644 index 0000000..8c2b557 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr089.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/arrows/arr090.svg b/public/media/icons/duotune/arrows/arr090.svg new file mode 100644 index 0000000..cc6ce4d --- /dev/null +++ b/public/media/icons/duotune/arrows/arr090.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/public/media/icons/duotune/arrows/arr091.svg b/public/media/icons/duotune/arrows/arr091.svg new file mode 100644 index 0000000..74a2c2f --- /dev/null +++ b/public/media/icons/duotune/arrows/arr091.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr092.svg b/public/media/icons/duotune/arrows/arr092.svg new file mode 100644 index 0000000..023c73d --- /dev/null +++ b/public/media/icons/duotune/arrows/arr092.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr093.svg b/public/media/icons/duotune/arrows/arr093.svg new file mode 100644 index 0000000..763af7a --- /dev/null +++ b/public/media/icons/duotune/arrows/arr093.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr094.svg b/public/media/icons/duotune/arrows/arr094.svg new file mode 100644 index 0000000..2ad369e --- /dev/null +++ b/public/media/icons/duotune/arrows/arr094.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/arrows/arr095.svg b/public/media/icons/duotune/arrows/arr095.svg new file mode 100644 index 0000000..cb56ec8 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr095.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr096.svg b/public/media/icons/duotune/arrows/arr096.svg new file mode 100644 index 0000000..2772556 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr096.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/arrows/arr097.svg b/public/media/icons/duotune/arrows/arr097.svg new file mode 100644 index 0000000..fdedb71 --- /dev/null +++ b/public/media/icons/duotune/arrows/arr097.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/art/art001.svg b/public/media/icons/duotune/art/art001.svg new file mode 100644 index 0000000..d2bd099 --- /dev/null +++ b/public/media/icons/duotune/art/art001.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/art/art002.svg b/public/media/icons/duotune/art/art002.svg new file mode 100644 index 0000000..11cf2fc --- /dev/null +++ b/public/media/icons/duotune/art/art002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/art/art003.svg b/public/media/icons/duotune/art/art003.svg new file mode 100644 index 0000000..7015753 --- /dev/null +++ b/public/media/icons/duotune/art/art003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/art/art004.svg b/public/media/icons/duotune/art/art004.svg new file mode 100644 index 0000000..b9578b5 --- /dev/null +++ b/public/media/icons/duotune/art/art004.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/art/art005.svg b/public/media/icons/duotune/art/art005.svg new file mode 100644 index 0000000..10a27a6 --- /dev/null +++ b/public/media/icons/duotune/art/art005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/art/art006.svg b/public/media/icons/duotune/art/art006.svg new file mode 100644 index 0000000..4483dfd --- /dev/null +++ b/public/media/icons/duotune/art/art006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/art/art007.svg b/public/media/icons/duotune/art/art007.svg new file mode 100644 index 0000000..4e1472c --- /dev/null +++ b/public/media/icons/duotune/art/art007.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/art/art008.svg b/public/media/icons/duotune/art/art008.svg new file mode 100644 index 0000000..0022b96 --- /dev/null +++ b/public/media/icons/duotune/art/art008.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/art/art009.svg b/public/media/icons/duotune/art/art009.svg new file mode 100644 index 0000000..25a1cbf --- /dev/null +++ b/public/media/icons/duotune/art/art009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/art/art010.svg b/public/media/icons/duotune/art/art010.svg new file mode 100644 index 0000000..d56eefb --- /dev/null +++ b/public/media/icons/duotune/art/art010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/coding/cod001.svg b/public/media/icons/duotune/coding/cod001.svg new file mode 100644 index 0000000..d526903 --- /dev/null +++ b/public/media/icons/duotune/coding/cod001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/coding/cod002.svg b/public/media/icons/duotune/coding/cod002.svg new file mode 100644 index 0000000..6092957 --- /dev/null +++ b/public/media/icons/duotune/coding/cod002.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/coding/cod003.svg b/public/media/icons/duotune/coding/cod003.svg new file mode 100644 index 0000000..cf65a00 --- /dev/null +++ b/public/media/icons/duotune/coding/cod003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/coding/cod004.svg b/public/media/icons/duotune/coding/cod004.svg new file mode 100644 index 0000000..9336e84 --- /dev/null +++ b/public/media/icons/duotune/coding/cod004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/coding/cod005.svg b/public/media/icons/duotune/coding/cod005.svg new file mode 100644 index 0000000..0a313de --- /dev/null +++ b/public/media/icons/duotune/coding/cod005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/coding/cod006.svg b/public/media/icons/duotune/coding/cod006.svg new file mode 100644 index 0000000..7b0b3be --- /dev/null +++ b/public/media/icons/duotune/coding/cod006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/coding/cod007.svg b/public/media/icons/duotune/coding/cod007.svg new file mode 100644 index 0000000..2612ab6 --- /dev/null +++ b/public/media/icons/duotune/coding/cod007.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/coding/cod008.svg b/public/media/icons/duotune/coding/cod008.svg new file mode 100644 index 0000000..a590968 --- /dev/null +++ b/public/media/icons/duotune/coding/cod008.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/coding/cod009.svg b/public/media/icons/duotune/coding/cod009.svg new file mode 100644 index 0000000..0236f51 --- /dev/null +++ b/public/media/icons/duotune/coding/cod009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/coding/cod010.svg b/public/media/icons/duotune/coding/cod010.svg new file mode 100644 index 0000000..232e2fb --- /dev/null +++ b/public/media/icons/duotune/coding/cod010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com001.svg b/public/media/icons/duotune/communication/com001.svg new file mode 100644 index 0000000..0cd9ef3 --- /dev/null +++ b/public/media/icons/duotune/communication/com001.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/communication/com002.svg b/public/media/icons/duotune/communication/com002.svg new file mode 100644 index 0000000..6c831a7 --- /dev/null +++ b/public/media/icons/duotune/communication/com002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com003.svg b/public/media/icons/duotune/communication/com003.svg new file mode 100644 index 0000000..585a829 --- /dev/null +++ b/public/media/icons/duotune/communication/com003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com004.svg b/public/media/icons/duotune/communication/com004.svg new file mode 100644 index 0000000..8a72f42 --- /dev/null +++ b/public/media/icons/duotune/communication/com004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com005.svg b/public/media/icons/duotune/communication/com005.svg new file mode 100644 index 0000000..0dedd7f --- /dev/null +++ b/public/media/icons/duotune/communication/com005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com006.svg b/public/media/icons/duotune/communication/com006.svg new file mode 100644 index 0000000..4e5996b --- /dev/null +++ b/public/media/icons/duotune/communication/com006.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/communication/com007.svg b/public/media/icons/duotune/communication/com007.svg new file mode 100644 index 0000000..b791672 --- /dev/null +++ b/public/media/icons/duotune/communication/com007.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com008.svg b/public/media/icons/duotune/communication/com008.svg new file mode 100644 index 0000000..a9edb0f --- /dev/null +++ b/public/media/icons/duotune/communication/com008.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com009.svg b/public/media/icons/duotune/communication/com009.svg new file mode 100644 index 0000000..7e9d375 --- /dev/null +++ b/public/media/icons/duotune/communication/com009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com010.svg b/public/media/icons/duotune/communication/com010.svg new file mode 100644 index 0000000..a3adcd1 --- /dev/null +++ b/public/media/icons/duotune/communication/com010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com011.svg b/public/media/icons/duotune/communication/com011.svg new file mode 100644 index 0000000..b875575 --- /dev/null +++ b/public/media/icons/duotune/communication/com011.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com012.svg b/public/media/icons/duotune/communication/com012.svg new file mode 100644 index 0000000..ef3f22a --- /dev/null +++ b/public/media/icons/duotune/communication/com012.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/communication/com013.svg b/public/media/icons/duotune/communication/com013.svg new file mode 100644 index 0000000..0c67416 --- /dev/null +++ b/public/media/icons/duotune/communication/com013.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/communication/com014.svg b/public/media/icons/duotune/communication/com014.svg new file mode 100644 index 0000000..89ae5ab --- /dev/null +++ b/public/media/icons/duotune/communication/com014.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm001.svg b/public/media/icons/duotune/ecommerce/ecm001.svg new file mode 100644 index 0000000..fbab6ce --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm001.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm002.svg b/public/media/icons/duotune/ecommerce/ecm002.svg new file mode 100644 index 0000000..2ea833c --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm002.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm003.svg b/public/media/icons/duotune/ecommerce/ecm003.svg new file mode 100644 index 0000000..ef48892 --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm004.svg b/public/media/icons/duotune/ecommerce/ecm004.svg new file mode 100644 index 0000000..724f192 --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm004.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm005.svg b/public/media/icons/duotune/ecommerce/ecm005.svg new file mode 100644 index 0000000..6fe446d --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm006.svg b/public/media/icons/duotune/ecommerce/ecm006.svg new file mode 100644 index 0000000..ff58f32 --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm007.svg b/public/media/icons/duotune/ecommerce/ecm007.svg new file mode 100644 index 0000000..d2003e7 --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm007.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm008.svg b/public/media/icons/duotune/ecommerce/ecm008.svg new file mode 100644 index 0000000..a10444e --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm008.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm009.svg b/public/media/icons/duotune/ecommerce/ecm009.svg new file mode 100644 index 0000000..e17fefd --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm009.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm010.svg b/public/media/icons/duotune/ecommerce/ecm010.svg new file mode 100644 index 0000000..d8dd510 --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/ecommerce/ecm011.svg b/public/media/icons/duotune/ecommerce/ecm011.svg new file mode 100644 index 0000000..87094c4 --- /dev/null +++ b/public/media/icons/duotune/ecommerce/ecm011.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/electronics/elc001.svg b/public/media/icons/duotune/electronics/elc001.svg new file mode 100644 index 0000000..3040cb1 --- /dev/null +++ b/public/media/icons/duotune/electronics/elc001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/electronics/elc002.svg b/public/media/icons/duotune/electronics/elc002.svg new file mode 100644 index 0000000..bdda3ee --- /dev/null +++ b/public/media/icons/duotune/electronics/elc002.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/electronics/elc003.svg b/public/media/icons/duotune/electronics/elc003.svg new file mode 100644 index 0000000..9633543 --- /dev/null +++ b/public/media/icons/duotune/electronics/elc003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/electronics/elc004.svg b/public/media/icons/duotune/electronics/elc004.svg new file mode 100644 index 0000000..83db17b --- /dev/null +++ b/public/media/icons/duotune/electronics/elc004.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/electronics/elc005.svg b/public/media/icons/duotune/electronics/elc005.svg new file mode 100644 index 0000000..1b51174 --- /dev/null +++ b/public/media/icons/duotune/electronics/elc005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/electronics/elc006.svg b/public/media/icons/duotune/electronics/elc006.svg new file mode 100644 index 0000000..94b4230 --- /dev/null +++ b/public/media/icons/duotune/electronics/elc006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/electronics/elc007.svg b/public/media/icons/duotune/electronics/elc007.svg new file mode 100644 index 0000000..2c214d7 --- /dev/null +++ b/public/media/icons/duotune/electronics/elc007.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/electronics/elc008.svg b/public/media/icons/duotune/electronics/elc008.svg new file mode 100644 index 0000000..91c7d54 --- /dev/null +++ b/public/media/icons/duotune/electronics/elc008.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/electronics/elc009.svg b/public/media/icons/duotune/electronics/elc009.svg new file mode 100644 index 0000000..c1505d6 --- /dev/null +++ b/public/media/icons/duotune/electronics/elc009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/electronics/elc010.svg b/public/media/icons/duotune/electronics/elc010.svg new file mode 100644 index 0000000..204d086 --- /dev/null +++ b/public/media/icons/duotune/electronics/elc010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/files/fil001.svg b/public/media/icons/duotune/files/fil001.svg new file mode 100644 index 0000000..ea62c30 --- /dev/null +++ b/public/media/icons/duotune/files/fil001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/files/fil002.svg b/public/media/icons/duotune/files/fil002.svg new file mode 100644 index 0000000..dfd07ff --- /dev/null +++ b/public/media/icons/duotune/files/fil002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/files/fil003.svg b/public/media/icons/duotune/files/fil003.svg new file mode 100644 index 0000000..1875aa3 --- /dev/null +++ b/public/media/icons/duotune/files/fil003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/files/fil004.svg b/public/media/icons/duotune/files/fil004.svg new file mode 100644 index 0000000..c05308c --- /dev/null +++ b/public/media/icons/duotune/files/fil004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/files/fil005.svg b/public/media/icons/duotune/files/fil005.svg new file mode 100644 index 0000000..ec78ae4 --- /dev/null +++ b/public/media/icons/duotune/files/fil005.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/files/fil006.svg b/public/media/icons/duotune/files/fil006.svg new file mode 100644 index 0000000..46415b0 --- /dev/null +++ b/public/media/icons/duotune/files/fil006.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/files/fil007.svg b/public/media/icons/duotune/files/fil007.svg new file mode 100644 index 0000000..da82208 --- /dev/null +++ b/public/media/icons/duotune/files/fil007.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/files/fil008.svg b/public/media/icons/duotune/files/fil008.svg new file mode 100644 index 0000000..68daff3 --- /dev/null +++ b/public/media/icons/duotune/files/fil008.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/files/fil009.svg b/public/media/icons/duotune/files/fil009.svg new file mode 100644 index 0000000..f63e0b6 --- /dev/null +++ b/public/media/icons/duotune/files/fil009.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/files/fil010.svg b/public/media/icons/duotune/files/fil010.svg new file mode 100644 index 0000000..f63e0b6 --- /dev/null +++ b/public/media/icons/duotune/files/fil010.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/files/fil011.svg b/public/media/icons/duotune/files/fil011.svg new file mode 100644 index 0000000..b51d362 --- /dev/null +++ b/public/media/icons/duotune/files/fil011.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/icons/duotune/files/fil012.svg b/public/media/icons/duotune/files/fil012.svg new file mode 100644 index 0000000..0a42a19 --- /dev/null +++ b/public/media/icons/duotune/files/fil012.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/files/fil013.svg b/public/media/icons/duotune/files/fil013.svg new file mode 100644 index 0000000..255184f --- /dev/null +++ b/public/media/icons/duotune/files/fil013.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/files/fil014.svg b/public/media/icons/duotune/files/fil014.svg new file mode 100644 index 0000000..b54f87f --- /dev/null +++ b/public/media/icons/duotune/files/fil014.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/files/fil015.svg b/public/media/icons/duotune/files/fil015.svg new file mode 100644 index 0000000..f90c463 --- /dev/null +++ b/public/media/icons/duotune/files/fil015.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/files/fil016.svg b/public/media/icons/duotune/files/fil016.svg new file mode 100644 index 0000000..4fa3e81 --- /dev/null +++ b/public/media/icons/duotune/files/fil016.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/files/fil017.svg b/public/media/icons/duotune/files/fil017.svg new file mode 100644 index 0000000..ef2d036 --- /dev/null +++ b/public/media/icons/duotune/files/fil017.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/files/fil018.svg b/public/media/icons/duotune/files/fil018.svg new file mode 100644 index 0000000..097113f --- /dev/null +++ b/public/media/icons/duotune/files/fil018.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/files/fil019.svg b/public/media/icons/duotune/files/fil019.svg new file mode 100644 index 0000000..748042c --- /dev/null +++ b/public/media/icons/duotune/files/fil019.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/files/fil020.svg b/public/media/icons/duotune/files/fil020.svg new file mode 100644 index 0000000..2e2b3da --- /dev/null +++ b/public/media/icons/duotune/files/fil020.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/files/fil021.svg b/public/media/icons/duotune/files/fil021.svg new file mode 100644 index 0000000..05cb1af --- /dev/null +++ b/public/media/icons/duotune/files/fil021.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/files/fil022.svg b/public/media/icons/duotune/files/fil022.svg new file mode 100644 index 0000000..830364e --- /dev/null +++ b/public/media/icons/duotune/files/fil022.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/files/fil023.svg b/public/media/icons/duotune/files/fil023.svg new file mode 100644 index 0000000..5441494 --- /dev/null +++ b/public/media/icons/duotune/files/fil023.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/files/fil024.svg b/public/media/icons/duotune/files/fil024.svg new file mode 100644 index 0000000..3d0f8d1 --- /dev/null +++ b/public/media/icons/duotune/files/fil024.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/files/fil025.svg b/public/media/icons/duotune/files/fil025.svg new file mode 100644 index 0000000..f8d33e9 --- /dev/null +++ b/public/media/icons/duotune/files/fil025.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/finance/fin001.svg b/public/media/icons/duotune/finance/fin001.svg new file mode 100644 index 0000000..8fb7d35 --- /dev/null +++ b/public/media/icons/duotune/finance/fin001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/finance/fin002.svg b/public/media/icons/duotune/finance/fin002.svg new file mode 100644 index 0000000..5752be1 --- /dev/null +++ b/public/media/icons/duotune/finance/fin002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/finance/fin003.svg b/public/media/icons/duotune/finance/fin003.svg new file mode 100644 index 0000000..81e94ab --- /dev/null +++ b/public/media/icons/duotune/finance/fin003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/finance/fin004.svg b/public/media/icons/duotune/finance/fin004.svg new file mode 100644 index 0000000..42c2ae1 --- /dev/null +++ b/public/media/icons/duotune/finance/fin004.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/finance/fin005.svg b/public/media/icons/duotune/finance/fin005.svg new file mode 100644 index 0000000..7048b7d --- /dev/null +++ b/public/media/icons/duotune/finance/fin005.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/finance/fin006.svg b/public/media/icons/duotune/finance/fin006.svg new file mode 100644 index 0000000..ae23cd1 --- /dev/null +++ b/public/media/icons/duotune/finance/fin006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/finance/fin007.svg b/public/media/icons/duotune/finance/fin007.svg new file mode 100644 index 0000000..211b130 --- /dev/null +++ b/public/media/icons/duotune/finance/fin007.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/finance/fin008.svg b/public/media/icons/duotune/finance/fin008.svg new file mode 100644 index 0000000..ded8e84 --- /dev/null +++ b/public/media/icons/duotune/finance/fin008.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/finance/fin009.svg b/public/media/icons/duotune/finance/fin009.svg new file mode 100644 index 0000000..5742ecb --- /dev/null +++ b/public/media/icons/duotune/finance/fin009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/finance/fin010.svg b/public/media/icons/duotune/finance/fin010.svg new file mode 100644 index 0000000..b0db9a6 --- /dev/null +++ b/public/media/icons/duotune/finance/fin010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen001.svg b/public/media/icons/duotune/general/gen001.svg new file mode 100644 index 0000000..2d574a4 --- /dev/null +++ b/public/media/icons/duotune/general/gen001.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/general/gen002.svg b/public/media/icons/duotune/general/gen002.svg new file mode 100644 index 0000000..416538e --- /dev/null +++ b/public/media/icons/duotune/general/gen002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen003.svg b/public/media/icons/duotune/general/gen003.svg new file mode 100644 index 0000000..ef44d14 --- /dev/null +++ b/public/media/icons/duotune/general/gen003.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/general/gen004.svg b/public/media/icons/duotune/general/gen004.svg new file mode 100644 index 0000000..38547ca --- /dev/null +++ b/public/media/icons/duotune/general/gen004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen005.svg b/public/media/icons/duotune/general/gen005.svg new file mode 100644 index 0000000..dc1d1b6 --- /dev/null +++ b/public/media/icons/duotune/general/gen005.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/media/icons/duotune/general/gen006.svg b/public/media/icons/duotune/general/gen006.svg new file mode 100644 index 0000000..4b3d7c5 --- /dev/null +++ b/public/media/icons/duotune/general/gen006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen007.svg b/public/media/icons/duotune/general/gen007.svg new file mode 100644 index 0000000..bafae05 --- /dev/null +++ b/public/media/icons/duotune/general/gen007.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen008.svg b/public/media/icons/duotune/general/gen008.svg new file mode 100644 index 0000000..18379fa --- /dev/null +++ b/public/media/icons/duotune/general/gen008.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/general/gen009.svg b/public/media/icons/duotune/general/gen009.svg new file mode 100644 index 0000000..456905b --- /dev/null +++ b/public/media/icons/duotune/general/gen009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen010.svg b/public/media/icons/duotune/general/gen010.svg new file mode 100644 index 0000000..9271ee2 --- /dev/null +++ b/public/media/icons/duotune/general/gen010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen011.svg b/public/media/icons/duotune/general/gen011.svg new file mode 100644 index 0000000..1901878 --- /dev/null +++ b/public/media/icons/duotune/general/gen011.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen012.svg b/public/media/icons/duotune/general/gen012.svg new file mode 100644 index 0000000..03eb271 --- /dev/null +++ b/public/media/icons/duotune/general/gen012.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen013.svg b/public/media/icons/duotune/general/gen013.svg new file mode 100644 index 0000000..76e2084 --- /dev/null +++ b/public/media/icons/duotune/general/gen013.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen014.svg b/public/media/icons/duotune/general/gen014.svg new file mode 100644 index 0000000..02f877c --- /dev/null +++ b/public/media/icons/duotune/general/gen014.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen015.svg b/public/media/icons/duotune/general/gen015.svg new file mode 100644 index 0000000..b134c8a --- /dev/null +++ b/public/media/icons/duotune/general/gen015.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen016.svg b/public/media/icons/duotune/general/gen016.svg new file mode 100644 index 0000000..5fbc848 --- /dev/null +++ b/public/media/icons/duotune/general/gen016.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen017.svg b/public/media/icons/duotune/general/gen017.svg new file mode 100644 index 0000000..fe4adb2 --- /dev/null +++ b/public/media/icons/duotune/general/gen017.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen018.svg b/public/media/icons/duotune/general/gen018.svg new file mode 100644 index 0000000..8814be4 --- /dev/null +++ b/public/media/icons/duotune/general/gen018.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen019.svg b/public/media/icons/duotune/general/gen019.svg new file mode 100644 index 0000000..ed0c762 --- /dev/null +++ b/public/media/icons/duotune/general/gen019.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen020.svg b/public/media/icons/duotune/general/gen020.svg new file mode 100644 index 0000000..679034b --- /dev/null +++ b/public/media/icons/duotune/general/gen020.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen021.svg b/public/media/icons/duotune/general/gen021.svg new file mode 100644 index 0000000..f31329f --- /dev/null +++ b/public/media/icons/duotune/general/gen021.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen022.svg b/public/media/icons/duotune/general/gen022.svg new file mode 100644 index 0000000..2021669 --- /dev/null +++ b/public/media/icons/duotune/general/gen022.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/general/gen023.svg b/public/media/icons/duotune/general/gen023.svg new file mode 100644 index 0000000..6e9ef81 --- /dev/null +++ b/public/media/icons/duotune/general/gen023.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/general/gen024.svg b/public/media/icons/duotune/general/gen024.svg new file mode 100644 index 0000000..d652e0f --- /dev/null +++ b/public/media/icons/duotune/general/gen024.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/public/media/icons/duotune/general/gen025.svg b/public/media/icons/duotune/general/gen025.svg new file mode 100644 index 0000000..8827f5e --- /dev/null +++ b/public/media/icons/duotune/general/gen025.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/general/gen026.svg b/public/media/icons/duotune/general/gen026.svg new file mode 100644 index 0000000..61cf899 --- /dev/null +++ b/public/media/icons/duotune/general/gen026.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/public/media/icons/duotune/general/gen027.svg b/public/media/icons/duotune/general/gen027.svg new file mode 100644 index 0000000..352e6f0 --- /dev/null +++ b/public/media/icons/duotune/general/gen027.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen028.svg b/public/media/icons/duotune/general/gen028.svg new file mode 100644 index 0000000..09e9bff --- /dev/null +++ b/public/media/icons/duotune/general/gen028.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen029.svg b/public/media/icons/duotune/general/gen029.svg new file mode 100644 index 0000000..966663a --- /dev/null +++ b/public/media/icons/duotune/general/gen029.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/general/gen030.svg b/public/media/icons/duotune/general/gen030.svg new file mode 100644 index 0000000..22a6f01 --- /dev/null +++ b/public/media/icons/duotune/general/gen030.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/general/gen031.svg b/public/media/icons/duotune/general/gen031.svg new file mode 100644 index 0000000..bf92d55 --- /dev/null +++ b/public/media/icons/duotune/general/gen031.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/general/gen032.svg b/public/media/icons/duotune/general/gen032.svg new file mode 100644 index 0000000..6a4d3c2 --- /dev/null +++ b/public/media/icons/duotune/general/gen032.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/general/gen033.svg b/public/media/icons/duotune/general/gen033.svg new file mode 100644 index 0000000..5e5aa39 --- /dev/null +++ b/public/media/icons/duotune/general/gen033.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/general/gen034.svg b/public/media/icons/duotune/general/gen034.svg new file mode 100644 index 0000000..ce81d7c --- /dev/null +++ b/public/media/icons/duotune/general/gen034.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen035.svg b/public/media/icons/duotune/general/gen035.svg new file mode 100644 index 0000000..75765ee --- /dev/null +++ b/public/media/icons/duotune/general/gen035.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen036.svg b/public/media/icons/duotune/general/gen036.svg new file mode 100644 index 0000000..91487e8 --- /dev/null +++ b/public/media/icons/duotune/general/gen036.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen037.svg b/public/media/icons/duotune/general/gen037.svg new file mode 100644 index 0000000..d5c7eb1 --- /dev/null +++ b/public/media/icons/duotune/general/gen037.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen038.svg b/public/media/icons/duotune/general/gen038.svg new file mode 100644 index 0000000..96899a8 --- /dev/null +++ b/public/media/icons/duotune/general/gen038.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/general/gen039.svg b/public/media/icons/duotune/general/gen039.svg new file mode 100644 index 0000000..7069e81 --- /dev/null +++ b/public/media/icons/duotune/general/gen039.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/general/gen040.svg b/public/media/icons/duotune/general/gen040.svg new file mode 100644 index 0000000..6c7861e --- /dev/null +++ b/public/media/icons/duotune/general/gen040.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen041.svg b/public/media/icons/duotune/general/gen041.svg new file mode 100644 index 0000000..78c7dc4 --- /dev/null +++ b/public/media/icons/duotune/general/gen041.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen042.svg b/public/media/icons/duotune/general/gen042.svg new file mode 100644 index 0000000..be66cfc --- /dev/null +++ b/public/media/icons/duotune/general/gen042.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen043.svg b/public/media/icons/duotune/general/gen043.svg new file mode 100644 index 0000000..f210aa5 --- /dev/null +++ b/public/media/icons/duotune/general/gen043.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen044.svg b/public/media/icons/duotune/general/gen044.svg new file mode 100644 index 0000000..ca3caa0 --- /dev/null +++ b/public/media/icons/duotune/general/gen044.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen045.svg b/public/media/icons/duotune/general/gen045.svg new file mode 100644 index 0000000..3e68ebd --- /dev/null +++ b/public/media/icons/duotune/general/gen045.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen046.svg b/public/media/icons/duotune/general/gen046.svg new file mode 100644 index 0000000..e1e8fe0 --- /dev/null +++ b/public/media/icons/duotune/general/gen046.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen047.svg b/public/media/icons/duotune/general/gen047.svg new file mode 100644 index 0000000..918f339 --- /dev/null +++ b/public/media/icons/duotune/general/gen047.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen048.svg b/public/media/icons/duotune/general/gen048.svg new file mode 100644 index 0000000..61661e0 --- /dev/null +++ b/public/media/icons/duotune/general/gen048.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen049.svg b/public/media/icons/duotune/general/gen049.svg new file mode 100644 index 0000000..7f913c2 --- /dev/null +++ b/public/media/icons/duotune/general/gen049.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen050.svg b/public/media/icons/duotune/general/gen050.svg new file mode 100644 index 0000000..a1cd906 --- /dev/null +++ b/public/media/icons/duotune/general/gen050.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen051.svg b/public/media/icons/duotune/general/gen051.svg new file mode 100644 index 0000000..67adf32 --- /dev/null +++ b/public/media/icons/duotune/general/gen051.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen052.svg b/public/media/icons/duotune/general/gen052.svg new file mode 100644 index 0000000..750833b --- /dev/null +++ b/public/media/icons/duotune/general/gen052.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen053.svg b/public/media/icons/duotune/general/gen053.svg new file mode 100644 index 0000000..6bf2cdc --- /dev/null +++ b/public/media/icons/duotune/general/gen053.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen054.svg b/public/media/icons/duotune/general/gen054.svg new file mode 100644 index 0000000..e313f0b --- /dev/null +++ b/public/media/icons/duotune/general/gen054.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen055.svg b/public/media/icons/duotune/general/gen055.svg new file mode 100644 index 0000000..cb4d28a --- /dev/null +++ b/public/media/icons/duotune/general/gen055.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen056.svg b/public/media/icons/duotune/general/gen056.svg new file mode 100644 index 0000000..f1ebaf7 --- /dev/null +++ b/public/media/icons/duotune/general/gen056.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/general/gen057.svg b/public/media/icons/duotune/general/gen057.svg new file mode 100644 index 0000000..7d7b432 --- /dev/null +++ b/public/media/icons/duotune/general/gen057.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen058.svg b/public/media/icons/duotune/general/gen058.svg new file mode 100644 index 0000000..359567f --- /dev/null +++ b/public/media/icons/duotune/general/gen058.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/general/gen059.svg b/public/media/icons/duotune/general/gen059.svg new file mode 100644 index 0000000..b9f5caa --- /dev/null +++ b/public/media/icons/duotune/general/gen059.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen060.svg b/public/media/icons/duotune/general/gen060.svg new file mode 100644 index 0000000..6ce466e --- /dev/null +++ b/public/media/icons/duotune/general/gen060.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/icons/duotune/general/gen061.svg b/public/media/icons/duotune/general/gen061.svg new file mode 100644 index 0000000..cbbd46e --- /dev/null +++ b/public/media/icons/duotune/general/gen061.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/general/gen062.svg b/public/media/icons/duotune/general/gen062.svg new file mode 100644 index 0000000..9e646ed --- /dev/null +++ b/public/media/icons/duotune/general/gen062.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/general/gen063.svg b/public/media/icons/duotune/general/gen063.svg new file mode 100644 index 0000000..16a54ca --- /dev/null +++ b/public/media/icons/duotune/general/gen063.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen064.svg b/public/media/icons/duotune/general/gen064.svg new file mode 100644 index 0000000..9a43ee8 --- /dev/null +++ b/public/media/icons/duotune/general/gen064.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/general/gen065.svg b/public/media/icons/duotune/general/gen065.svg new file mode 100644 index 0000000..13c96a2 --- /dev/null +++ b/public/media/icons/duotune/general/gen065.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/general/gen066.svg b/public/media/icons/duotune/general/gen066.svg new file mode 100644 index 0000000..fc586fb --- /dev/null +++ b/public/media/icons/duotune/general/gen066.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/general/gen067.svg b/public/media/icons/duotune/general/gen067.svg new file mode 100644 index 0000000..3593923 --- /dev/null +++ b/public/media/icons/duotune/general/gen067.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/general/gen068.svg b/public/media/icons/duotune/general/gen068.svg new file mode 100644 index 0000000..478ee90 --- /dev/null +++ b/public/media/icons/duotune/general/gen068.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/general/gen069.svg b/public/media/icons/duotune/general/gen069.svg new file mode 100644 index 0000000..964fb89 --- /dev/null +++ b/public/media/icons/duotune/general/gen069.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/graphs/gra001.svg b/public/media/icons/duotune/graphs/gra001.svg new file mode 100644 index 0000000..0d4613f --- /dev/null +++ b/public/media/icons/duotune/graphs/gra001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/graphs/gra002.svg b/public/media/icons/duotune/graphs/gra002.svg new file mode 100644 index 0000000..81d2fb4 --- /dev/null +++ b/public/media/icons/duotune/graphs/gra002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/graphs/gra003.svg b/public/media/icons/duotune/graphs/gra003.svg new file mode 100644 index 0000000..9e15600 --- /dev/null +++ b/public/media/icons/duotune/graphs/gra003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/graphs/gra004.svg b/public/media/icons/duotune/graphs/gra004.svg new file mode 100644 index 0000000..e1f60cf --- /dev/null +++ b/public/media/icons/duotune/graphs/gra004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/graphs/gra005.svg b/public/media/icons/duotune/graphs/gra005.svg new file mode 100644 index 0000000..d5b2b5a --- /dev/null +++ b/public/media/icons/duotune/graphs/gra005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/graphs/gra006.svg b/public/media/icons/duotune/graphs/gra006.svg new file mode 100644 index 0000000..a3ca521 --- /dev/null +++ b/public/media/icons/duotune/graphs/gra006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/graphs/gra007.svg b/public/media/icons/duotune/graphs/gra007.svg new file mode 100644 index 0000000..84e4a85 --- /dev/null +++ b/public/media/icons/duotune/graphs/gra007.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/graphs/gra008.svg b/public/media/icons/duotune/graphs/gra008.svg new file mode 100644 index 0000000..7a5f39b --- /dev/null +++ b/public/media/icons/duotune/graphs/gra008.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/graphs/gra009.svg b/public/media/icons/duotune/graphs/gra009.svg new file mode 100644 index 0000000..c189ca1 --- /dev/null +++ b/public/media/icons/duotune/graphs/gra009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/graphs/gra010.svg b/public/media/icons/duotune/graphs/gra010.svg new file mode 100644 index 0000000..4a19bb1 --- /dev/null +++ b/public/media/icons/duotune/graphs/gra010.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/graphs/gra011.svg b/public/media/icons/duotune/graphs/gra011.svg new file mode 100644 index 0000000..434ff51 --- /dev/null +++ b/public/media/icons/duotune/graphs/gra011.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/graphs/gra012.svg b/public/media/icons/duotune/graphs/gra012.svg new file mode 100644 index 0000000..3465674 --- /dev/null +++ b/public/media/icons/duotune/graphs/gra012.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/layouts/lay001.svg b/public/media/icons/duotune/layouts/lay001.svg new file mode 100644 index 0000000..e07fab9 --- /dev/null +++ b/public/media/icons/duotune/layouts/lay001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/layouts/lay002.svg b/public/media/icons/duotune/layouts/lay002.svg new file mode 100644 index 0000000..f7baa1a --- /dev/null +++ b/public/media/icons/duotune/layouts/lay002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/layouts/lay003.svg b/public/media/icons/duotune/layouts/lay003.svg new file mode 100644 index 0000000..ab7a1bd --- /dev/null +++ b/public/media/icons/duotune/layouts/lay003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/layouts/lay004.svg b/public/media/icons/duotune/layouts/lay004.svg new file mode 100644 index 0000000..63f9aa1 --- /dev/null +++ b/public/media/icons/duotune/layouts/lay004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/layouts/lay005.svg b/public/media/icons/duotune/layouts/lay005.svg new file mode 100644 index 0000000..e3036d6 --- /dev/null +++ b/public/media/icons/duotune/layouts/lay005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/layouts/lay006.svg b/public/media/icons/duotune/layouts/lay006.svg new file mode 100644 index 0000000..823de2e --- /dev/null +++ b/public/media/icons/duotune/layouts/lay006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/layouts/lay007.svg b/public/media/icons/duotune/layouts/lay007.svg new file mode 100644 index 0000000..df21e00 --- /dev/null +++ b/public/media/icons/duotune/layouts/lay007.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/layouts/lay008.svg b/public/media/icons/duotune/layouts/lay008.svg new file mode 100644 index 0000000..7e3862c --- /dev/null +++ b/public/media/icons/duotune/layouts/lay008.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/layouts/lay009.svg b/public/media/icons/duotune/layouts/lay009.svg new file mode 100644 index 0000000..0eb9c04 --- /dev/null +++ b/public/media/icons/duotune/layouts/lay009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/layouts/lay010.svg b/public/media/icons/duotune/layouts/lay010.svg new file mode 100644 index 0000000..3bc6688 --- /dev/null +++ b/public/media/icons/duotune/layouts/lay010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/maps/map001.svg b/public/media/icons/duotune/maps/map001.svg new file mode 100644 index 0000000..fc92fe8 --- /dev/null +++ b/public/media/icons/duotune/maps/map001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/maps/map002.svg b/public/media/icons/duotune/maps/map002.svg new file mode 100644 index 0000000..f78eec9 --- /dev/null +++ b/public/media/icons/duotune/maps/map002.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/media/icons/duotune/maps/map003.svg b/public/media/icons/duotune/maps/map003.svg new file mode 100644 index 0000000..42963c8 --- /dev/null +++ b/public/media/icons/duotune/maps/map003.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/media/icons/duotune/maps/map004.svg b/public/media/icons/duotune/maps/map004.svg new file mode 100644 index 0000000..30d04ab --- /dev/null +++ b/public/media/icons/duotune/maps/map004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/maps/map005.svg b/public/media/icons/duotune/maps/map005.svg new file mode 100644 index 0000000..affead3 --- /dev/null +++ b/public/media/icons/duotune/maps/map005.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/maps/map006.svg b/public/media/icons/duotune/maps/map006.svg new file mode 100644 index 0000000..dff0082 --- /dev/null +++ b/public/media/icons/duotune/maps/map006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/maps/map007.svg b/public/media/icons/duotune/maps/map007.svg new file mode 100644 index 0000000..7abf49e --- /dev/null +++ b/public/media/icons/duotune/maps/map007.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/maps/map008.svg b/public/media/icons/duotune/maps/map008.svg new file mode 100644 index 0000000..0ce688e --- /dev/null +++ b/public/media/icons/duotune/maps/map008.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/maps/map009.svg b/public/media/icons/duotune/maps/map009.svg new file mode 100644 index 0000000..e1d59a6 --- /dev/null +++ b/public/media/icons/duotune/maps/map009.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/maps/map010.svg b/public/media/icons/duotune/maps/map010.svg new file mode 100644 index 0000000..dffe763 --- /dev/null +++ b/public/media/icons/duotune/maps/map010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/medicine/med001.svg b/public/media/icons/duotune/medicine/med001.svg new file mode 100644 index 0000000..73652f7 --- /dev/null +++ b/public/media/icons/duotune/medicine/med001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/medicine/med002.svg b/public/media/icons/duotune/medicine/med002.svg new file mode 100644 index 0000000..e85ab3c --- /dev/null +++ b/public/media/icons/duotune/medicine/med002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/medicine/med003.svg b/public/media/icons/duotune/medicine/med003.svg new file mode 100644 index 0000000..b55b4b2 --- /dev/null +++ b/public/media/icons/duotune/medicine/med003.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/medicine/med004.svg b/public/media/icons/duotune/medicine/med004.svg new file mode 100644 index 0000000..9a2203f --- /dev/null +++ b/public/media/icons/duotune/medicine/med004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/medicine/med005.svg b/public/media/icons/duotune/medicine/med005.svg new file mode 100644 index 0000000..bfd98d6 --- /dev/null +++ b/public/media/icons/duotune/medicine/med005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/medicine/med006.svg b/public/media/icons/duotune/medicine/med006.svg new file mode 100644 index 0000000..81026e1 --- /dev/null +++ b/public/media/icons/duotune/medicine/med006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/medicine/med007.svg b/public/media/icons/duotune/medicine/med007.svg new file mode 100644 index 0000000..1ab861c --- /dev/null +++ b/public/media/icons/duotune/medicine/med007.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/medicine/med008.svg b/public/media/icons/duotune/medicine/med008.svg new file mode 100644 index 0000000..96e911d --- /dev/null +++ b/public/media/icons/duotune/medicine/med008.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/medicine/med009.svg b/public/media/icons/duotune/medicine/med009.svg new file mode 100644 index 0000000..09a70e1 --- /dev/null +++ b/public/media/icons/duotune/medicine/med009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/medicine/med010.svg b/public/media/icons/duotune/medicine/med010.svg new file mode 100644 index 0000000..519c8f4 --- /dev/null +++ b/public/media/icons/duotune/medicine/med010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/social/soc001.svg b/public/media/icons/duotune/social/soc001.svg new file mode 100644 index 0000000..b0fd541 --- /dev/null +++ b/public/media/icons/duotune/social/soc001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/social/soc002.svg b/public/media/icons/duotune/social/soc002.svg new file mode 100644 index 0000000..4089ad8 --- /dev/null +++ b/public/media/icons/duotune/social/soc002.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/media/icons/duotune/social/soc003.svg b/public/media/icons/duotune/social/soc003.svg new file mode 100644 index 0000000..de11fa3 --- /dev/null +++ b/public/media/icons/duotune/social/soc003.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/social/soc004.svg b/public/media/icons/duotune/social/soc004.svg new file mode 100644 index 0000000..3873a83 --- /dev/null +++ b/public/media/icons/duotune/social/soc004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/social/soc005.svg b/public/media/icons/duotune/social/soc005.svg new file mode 100644 index 0000000..3ee2944 --- /dev/null +++ b/public/media/icons/duotune/social/soc005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/social/soc006.svg b/public/media/icons/duotune/social/soc006.svg new file mode 100644 index 0000000..1fb0ebc --- /dev/null +++ b/public/media/icons/duotune/social/soc006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/social/soc007.svg b/public/media/icons/duotune/social/soc007.svg new file mode 100644 index 0000000..9d9233a --- /dev/null +++ b/public/media/icons/duotune/social/soc007.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/social/soc008.svg b/public/media/icons/duotune/social/soc008.svg new file mode 100644 index 0000000..3d06f81 --- /dev/null +++ b/public/media/icons/duotune/social/soc008.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/social/soc009.svg b/public/media/icons/duotune/social/soc009.svg new file mode 100644 index 0000000..ad5280a --- /dev/null +++ b/public/media/icons/duotune/social/soc009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/social/soc010.svg b/public/media/icons/duotune/social/soc010.svg new file mode 100644 index 0000000..71d175e --- /dev/null +++ b/public/media/icons/duotune/social/soc010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/technology/teh001.svg b/public/media/icons/duotune/technology/teh001.svg new file mode 100644 index 0000000..7d48300 --- /dev/null +++ b/public/media/icons/duotune/technology/teh001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/technology/teh002.svg b/public/media/icons/duotune/technology/teh002.svg new file mode 100644 index 0000000..f95cd12 --- /dev/null +++ b/public/media/icons/duotune/technology/teh002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/technology/teh003.svg b/public/media/icons/duotune/technology/teh003.svg new file mode 100644 index 0000000..59deaff --- /dev/null +++ b/public/media/icons/duotune/technology/teh003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/technology/teh004.svg b/public/media/icons/duotune/technology/teh004.svg new file mode 100644 index 0000000..de2f954 --- /dev/null +++ b/public/media/icons/duotune/technology/teh004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/technology/teh005.svg b/public/media/icons/duotune/technology/teh005.svg new file mode 100644 index 0000000..da5ef05 --- /dev/null +++ b/public/media/icons/duotune/technology/teh005.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/technology/teh006.svg b/public/media/icons/duotune/technology/teh006.svg new file mode 100644 index 0000000..0543bc6 --- /dev/null +++ b/public/media/icons/duotune/technology/teh006.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/technology/teh007.svg b/public/media/icons/duotune/technology/teh007.svg new file mode 100644 index 0000000..2bed14d --- /dev/null +++ b/public/media/icons/duotune/technology/teh007.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/technology/teh008.svg b/public/media/icons/duotune/technology/teh008.svg new file mode 100644 index 0000000..ce288f2 --- /dev/null +++ b/public/media/icons/duotune/technology/teh008.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/technology/teh009.svg b/public/media/icons/duotune/technology/teh009.svg new file mode 100644 index 0000000..ff6ac1d --- /dev/null +++ b/public/media/icons/duotune/technology/teh009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/technology/teh010.svg b/public/media/icons/duotune/technology/teh010.svg new file mode 100644 index 0000000..59a1c94 --- /dev/null +++ b/public/media/icons/duotune/technology/teh010.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/icons/duotune/text/txt001.svg b/public/media/icons/duotune/text/txt001.svg new file mode 100644 index 0000000..db4c393 --- /dev/null +++ b/public/media/icons/duotune/text/txt001.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/text/txt002.svg b/public/media/icons/duotune/text/txt002.svg new file mode 100644 index 0000000..3bce269 --- /dev/null +++ b/public/media/icons/duotune/text/txt002.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/text/txt003.svg b/public/media/icons/duotune/text/txt003.svg new file mode 100644 index 0000000..e5b9851 --- /dev/null +++ b/public/media/icons/duotune/text/txt003.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/text/txt004.svg b/public/media/icons/duotune/text/txt004.svg new file mode 100644 index 0000000..e5b9851 --- /dev/null +++ b/public/media/icons/duotune/text/txt004.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/text/txt005.svg b/public/media/icons/duotune/text/txt005.svg new file mode 100644 index 0000000..cd9b66a --- /dev/null +++ b/public/media/icons/duotune/text/txt005.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/text/txt006.svg b/public/media/icons/duotune/text/txt006.svg new file mode 100644 index 0000000..8d8ea00 --- /dev/null +++ b/public/media/icons/duotune/text/txt006.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/text/txt007.svg b/public/media/icons/duotune/text/txt007.svg new file mode 100644 index 0000000..6629bba --- /dev/null +++ b/public/media/icons/duotune/text/txt007.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/icons/duotune/text/txt008.svg b/public/media/icons/duotune/text/txt008.svg new file mode 100644 index 0000000..db1ff30 --- /dev/null +++ b/public/media/icons/duotune/text/txt008.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/text/txt009.svg b/public/media/icons/duotune/text/txt009.svg new file mode 100644 index 0000000..4eb9ccd --- /dev/null +++ b/public/media/icons/duotune/text/txt009.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/text/txt010.svg b/public/media/icons/duotune/text/txt010.svg new file mode 100644 index 0000000..cbee6a2 --- /dev/null +++ b/public/media/icons/duotune/text/txt010.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/icons/duotune/text/txt011.svg b/public/media/icons/duotune/text/txt011.svg new file mode 100644 index 0000000..9ef1f6e --- /dev/null +++ b/public/media/icons/duotune/text/txt011.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/icons/duotune/text/txt012.svg b/public/media/icons/duotune/text/txt012.svg new file mode 100644 index 0000000..9ded6a0 --- /dev/null +++ b/public/media/icons/duotune/text/txt012.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/illustrations/dozzy-1/1-dark.png b/public/media/illustrations/dozzy-1/1-dark.png new file mode 100644 index 0000000..aebd0e1 Binary files /dev/null and b/public/media/illustrations/dozzy-1/1-dark.png differ diff --git a/public/media/illustrations/dozzy-1/1.png b/public/media/illustrations/dozzy-1/1.png new file mode 100644 index 0000000..aebd0e1 Binary files /dev/null and b/public/media/illustrations/dozzy-1/1.png differ diff --git a/public/media/illustrations/dozzy-1/10-dark.png b/public/media/illustrations/dozzy-1/10-dark.png new file mode 100644 index 0000000..1ea82ee Binary files /dev/null and b/public/media/illustrations/dozzy-1/10-dark.png differ diff --git a/public/media/illustrations/dozzy-1/10.png b/public/media/illustrations/dozzy-1/10.png new file mode 100644 index 0000000..1ea82ee Binary files /dev/null and b/public/media/illustrations/dozzy-1/10.png differ diff --git a/public/media/illustrations/dozzy-1/11-dark.png b/public/media/illustrations/dozzy-1/11-dark.png new file mode 100644 index 0000000..ffc4ba2 Binary files /dev/null and b/public/media/illustrations/dozzy-1/11-dark.png differ diff --git a/public/media/illustrations/dozzy-1/11.png b/public/media/illustrations/dozzy-1/11.png new file mode 100644 index 0000000..ffc4ba2 Binary files /dev/null and b/public/media/illustrations/dozzy-1/11.png differ diff --git a/public/media/illustrations/dozzy-1/12-dark.png b/public/media/illustrations/dozzy-1/12-dark.png new file mode 100644 index 0000000..b1cd0af Binary files /dev/null and b/public/media/illustrations/dozzy-1/12-dark.png differ diff --git a/public/media/illustrations/dozzy-1/12.png b/public/media/illustrations/dozzy-1/12.png new file mode 100644 index 0000000..b1cd0af Binary files /dev/null and b/public/media/illustrations/dozzy-1/12.png differ diff --git a/public/media/illustrations/dozzy-1/13-dark.png b/public/media/illustrations/dozzy-1/13-dark.png new file mode 100644 index 0000000..1d90383 Binary files /dev/null and b/public/media/illustrations/dozzy-1/13-dark.png differ diff --git a/public/media/illustrations/dozzy-1/13.png b/public/media/illustrations/dozzy-1/13.png new file mode 100644 index 0000000..1d90383 Binary files /dev/null and b/public/media/illustrations/dozzy-1/13.png differ diff --git a/public/media/illustrations/dozzy-1/14-dark.png b/public/media/illustrations/dozzy-1/14-dark.png new file mode 100644 index 0000000..c3d541c Binary files /dev/null and b/public/media/illustrations/dozzy-1/14-dark.png differ diff --git a/public/media/illustrations/dozzy-1/14.png b/public/media/illustrations/dozzy-1/14.png new file mode 100644 index 0000000..2508dcf Binary files /dev/null and b/public/media/illustrations/dozzy-1/14.png differ diff --git a/public/media/illustrations/dozzy-1/15-dark.png b/public/media/illustrations/dozzy-1/15-dark.png new file mode 100644 index 0000000..89f6034 Binary files /dev/null and b/public/media/illustrations/dozzy-1/15-dark.png differ diff --git a/public/media/illustrations/dozzy-1/15.png b/public/media/illustrations/dozzy-1/15.png new file mode 100644 index 0000000..89f6034 Binary files /dev/null and b/public/media/illustrations/dozzy-1/15.png differ diff --git a/public/media/illustrations/dozzy-1/16-dark.png b/public/media/illustrations/dozzy-1/16-dark.png new file mode 100644 index 0000000..9bbb616 Binary files /dev/null and b/public/media/illustrations/dozzy-1/16-dark.png differ diff --git a/public/media/illustrations/dozzy-1/16.png b/public/media/illustrations/dozzy-1/16.png new file mode 100644 index 0000000..9bbb616 Binary files /dev/null and b/public/media/illustrations/dozzy-1/16.png differ diff --git a/public/media/illustrations/dozzy-1/17-dark.png b/public/media/illustrations/dozzy-1/17-dark.png new file mode 100644 index 0000000..cadf6c3 Binary files /dev/null and b/public/media/illustrations/dozzy-1/17-dark.png differ diff --git a/public/media/illustrations/dozzy-1/17.png b/public/media/illustrations/dozzy-1/17.png new file mode 100644 index 0000000..cadf6c3 Binary files /dev/null and b/public/media/illustrations/dozzy-1/17.png differ diff --git a/public/media/illustrations/dozzy-1/18-dark.png b/public/media/illustrations/dozzy-1/18-dark.png new file mode 100644 index 0000000..e48b515 Binary files /dev/null and b/public/media/illustrations/dozzy-1/18-dark.png differ diff --git a/public/media/illustrations/dozzy-1/18.png b/public/media/illustrations/dozzy-1/18.png new file mode 100644 index 0000000..c2f517a Binary files /dev/null and b/public/media/illustrations/dozzy-1/18.png differ diff --git a/public/media/illustrations/dozzy-1/19-dark.png b/public/media/illustrations/dozzy-1/19-dark.png new file mode 100644 index 0000000..9f17b96 Binary files /dev/null and b/public/media/illustrations/dozzy-1/19-dark.png differ diff --git a/public/media/illustrations/dozzy-1/19.png b/public/media/illustrations/dozzy-1/19.png new file mode 100644 index 0000000..0810967 Binary files /dev/null and b/public/media/illustrations/dozzy-1/19.png differ diff --git a/public/media/illustrations/dozzy-1/2-dark.png b/public/media/illustrations/dozzy-1/2-dark.png new file mode 100644 index 0000000..330d419 Binary files /dev/null and b/public/media/illustrations/dozzy-1/2-dark.png differ diff --git a/public/media/illustrations/dozzy-1/2.png b/public/media/illustrations/dozzy-1/2.png new file mode 100644 index 0000000..330d419 Binary files /dev/null and b/public/media/illustrations/dozzy-1/2.png differ diff --git a/public/media/illustrations/dozzy-1/20-dark.png b/public/media/illustrations/dozzy-1/20-dark.png new file mode 100644 index 0000000..734ef42 Binary files /dev/null and b/public/media/illustrations/dozzy-1/20-dark.png differ diff --git a/public/media/illustrations/dozzy-1/20.png b/public/media/illustrations/dozzy-1/20.png new file mode 100644 index 0000000..734ef42 Binary files /dev/null and b/public/media/illustrations/dozzy-1/20.png differ diff --git a/public/media/illustrations/dozzy-1/3-dark.png b/public/media/illustrations/dozzy-1/3-dark.png new file mode 100644 index 0000000..1ba143b Binary files /dev/null and b/public/media/illustrations/dozzy-1/3-dark.png differ diff --git a/public/media/illustrations/dozzy-1/3.png b/public/media/illustrations/dozzy-1/3.png new file mode 100644 index 0000000..1ba143b Binary files /dev/null and b/public/media/illustrations/dozzy-1/3.png differ diff --git a/public/media/illustrations/dozzy-1/4-dark.png b/public/media/illustrations/dozzy-1/4-dark.png new file mode 100644 index 0000000..6ba688e Binary files /dev/null and b/public/media/illustrations/dozzy-1/4-dark.png differ diff --git a/public/media/illustrations/dozzy-1/4.png b/public/media/illustrations/dozzy-1/4.png new file mode 100644 index 0000000..6ba688e Binary files /dev/null and b/public/media/illustrations/dozzy-1/4.png differ diff --git a/public/media/illustrations/dozzy-1/5-dark.png b/public/media/illustrations/dozzy-1/5-dark.png new file mode 100644 index 0000000..a56ae07 Binary files /dev/null and b/public/media/illustrations/dozzy-1/5-dark.png differ diff --git a/public/media/illustrations/dozzy-1/5.png b/public/media/illustrations/dozzy-1/5.png new file mode 100644 index 0000000..a56ae07 Binary files /dev/null and b/public/media/illustrations/dozzy-1/5.png differ diff --git a/public/media/illustrations/dozzy-1/6-dark.png b/public/media/illustrations/dozzy-1/6-dark.png new file mode 100644 index 0000000..555eba4 Binary files /dev/null and b/public/media/illustrations/dozzy-1/6-dark.png differ diff --git a/public/media/illustrations/dozzy-1/6.png b/public/media/illustrations/dozzy-1/6.png new file mode 100644 index 0000000..555eba4 Binary files /dev/null and b/public/media/illustrations/dozzy-1/6.png differ diff --git a/public/media/illustrations/dozzy-1/7-dark.png b/public/media/illustrations/dozzy-1/7-dark.png new file mode 100644 index 0000000..9f2cfef Binary files /dev/null and b/public/media/illustrations/dozzy-1/7-dark.png differ diff --git a/public/media/illustrations/dozzy-1/7.png b/public/media/illustrations/dozzy-1/7.png new file mode 100644 index 0000000..9f2cfef Binary files /dev/null and b/public/media/illustrations/dozzy-1/7.png differ diff --git a/public/media/illustrations/dozzy-1/8-dark.png b/public/media/illustrations/dozzy-1/8-dark.png new file mode 100644 index 0000000..59bafe7 Binary files /dev/null and b/public/media/illustrations/dozzy-1/8-dark.png differ diff --git a/public/media/illustrations/dozzy-1/8.png b/public/media/illustrations/dozzy-1/8.png new file mode 100644 index 0000000..59bafe7 Binary files /dev/null and b/public/media/illustrations/dozzy-1/8.png differ diff --git a/public/media/illustrations/dozzy-1/9-dark.png b/public/media/illustrations/dozzy-1/9-dark.png new file mode 100644 index 0000000..b2b9b8f Binary files /dev/null and b/public/media/illustrations/dozzy-1/9-dark.png differ diff --git a/public/media/illustrations/dozzy-1/9.png b/public/media/illustrations/dozzy-1/9.png new file mode 100644 index 0000000..b2b9b8f Binary files /dev/null and b/public/media/illustrations/dozzy-1/9.png differ diff --git a/public/media/illustrations/misc/credit-card.png b/public/media/illustrations/misc/credit-card.png new file mode 100644 index 0000000..024851c Binary files /dev/null and b/public/media/illustrations/misc/credit-card.png differ diff --git a/public/media/illustrations/misc/upgrade-dark.svg b/public/media/illustrations/misc/upgrade-dark.svg new file mode 100644 index 0000000..834c3a3 --- /dev/null +++ b/public/media/illustrations/misc/upgrade-dark.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/illustrations/misc/upgrade.svg b/public/media/illustrations/misc/upgrade.svg new file mode 100644 index 0000000..e72aff5 --- /dev/null +++ b/public/media/illustrations/misc/upgrade.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/illustrations/sigma-1/1-dark.png b/public/media/illustrations/sigma-1/1-dark.png new file mode 100644 index 0000000..e7331f0 Binary files /dev/null and b/public/media/illustrations/sigma-1/1-dark.png differ diff --git a/public/media/illustrations/sigma-1/1.png b/public/media/illustrations/sigma-1/1.png new file mode 100644 index 0000000..2c40339 Binary files /dev/null and b/public/media/illustrations/sigma-1/1.png differ diff --git a/public/media/illustrations/sigma-1/10-dark.png b/public/media/illustrations/sigma-1/10-dark.png new file mode 100644 index 0000000..6acbb20 Binary files /dev/null and b/public/media/illustrations/sigma-1/10-dark.png differ diff --git a/public/media/illustrations/sigma-1/10.png b/public/media/illustrations/sigma-1/10.png new file mode 100644 index 0000000..37e2b15 Binary files /dev/null and b/public/media/illustrations/sigma-1/10.png differ diff --git a/public/media/illustrations/sigma-1/11-dark.png b/public/media/illustrations/sigma-1/11-dark.png new file mode 100644 index 0000000..eabc31f Binary files /dev/null and b/public/media/illustrations/sigma-1/11-dark.png differ diff --git a/public/media/illustrations/sigma-1/11.png b/public/media/illustrations/sigma-1/11.png new file mode 100644 index 0000000..a393a3d Binary files /dev/null and b/public/media/illustrations/sigma-1/11.png differ diff --git a/public/media/illustrations/sigma-1/12-dark.png b/public/media/illustrations/sigma-1/12-dark.png new file mode 100644 index 0000000..cdac7bf Binary files /dev/null and b/public/media/illustrations/sigma-1/12-dark.png differ diff --git a/public/media/illustrations/sigma-1/12.png b/public/media/illustrations/sigma-1/12.png new file mode 100644 index 0000000..9edd6ad Binary files /dev/null and b/public/media/illustrations/sigma-1/12.png differ diff --git a/public/media/illustrations/sigma-1/13-dark.png b/public/media/illustrations/sigma-1/13-dark.png new file mode 100644 index 0000000..187499a Binary files /dev/null and b/public/media/illustrations/sigma-1/13-dark.png differ diff --git a/public/media/illustrations/sigma-1/13.png b/public/media/illustrations/sigma-1/13.png new file mode 100644 index 0000000..73484aa Binary files /dev/null and b/public/media/illustrations/sigma-1/13.png differ diff --git a/public/media/illustrations/sigma-1/14-dark.png b/public/media/illustrations/sigma-1/14-dark.png new file mode 100644 index 0000000..3bfe499 Binary files /dev/null and b/public/media/illustrations/sigma-1/14-dark.png differ diff --git a/public/media/illustrations/sigma-1/14.png b/public/media/illustrations/sigma-1/14.png new file mode 100644 index 0000000..fddda94 Binary files /dev/null and b/public/media/illustrations/sigma-1/14.png differ diff --git a/public/media/illustrations/sigma-1/15-dark.png b/public/media/illustrations/sigma-1/15-dark.png new file mode 100644 index 0000000..853fff7 Binary files /dev/null and b/public/media/illustrations/sigma-1/15-dark.png differ diff --git a/public/media/illustrations/sigma-1/15.png b/public/media/illustrations/sigma-1/15.png new file mode 100644 index 0000000..170124b Binary files /dev/null and b/public/media/illustrations/sigma-1/15.png differ diff --git a/public/media/illustrations/sigma-1/16-dark.png b/public/media/illustrations/sigma-1/16-dark.png new file mode 100644 index 0000000..9e4b70b Binary files /dev/null and b/public/media/illustrations/sigma-1/16-dark.png differ diff --git a/public/media/illustrations/sigma-1/16.png b/public/media/illustrations/sigma-1/16.png new file mode 100644 index 0000000..3a8257c Binary files /dev/null and b/public/media/illustrations/sigma-1/16.png differ diff --git a/public/media/illustrations/sigma-1/17-dark.png b/public/media/illustrations/sigma-1/17-dark.png new file mode 100644 index 0000000..ee770af Binary files /dev/null and b/public/media/illustrations/sigma-1/17-dark.png differ diff --git a/public/media/illustrations/sigma-1/17.png b/public/media/illustrations/sigma-1/17.png new file mode 100644 index 0000000..8fcacf0 Binary files /dev/null and b/public/media/illustrations/sigma-1/17.png differ diff --git a/public/media/illustrations/sigma-1/18-dark.png b/public/media/illustrations/sigma-1/18-dark.png new file mode 100644 index 0000000..f9adc48 Binary files /dev/null and b/public/media/illustrations/sigma-1/18-dark.png differ diff --git a/public/media/illustrations/sigma-1/18.png b/public/media/illustrations/sigma-1/18.png new file mode 100644 index 0000000..459ed7b Binary files /dev/null and b/public/media/illustrations/sigma-1/18.png differ diff --git a/public/media/illustrations/sigma-1/19-dark.png b/public/media/illustrations/sigma-1/19-dark.png new file mode 100644 index 0000000..54e7633 Binary files /dev/null and b/public/media/illustrations/sigma-1/19-dark.png differ diff --git a/public/media/illustrations/sigma-1/19.png b/public/media/illustrations/sigma-1/19.png new file mode 100644 index 0000000..9fd06f6 Binary files /dev/null and b/public/media/illustrations/sigma-1/19.png differ diff --git a/public/media/illustrations/sigma-1/2-dark.png b/public/media/illustrations/sigma-1/2-dark.png new file mode 100644 index 0000000..cec2fd4 Binary files /dev/null and b/public/media/illustrations/sigma-1/2-dark.png differ diff --git a/public/media/illustrations/sigma-1/2.png b/public/media/illustrations/sigma-1/2.png new file mode 100644 index 0000000..3e5310e Binary files /dev/null and b/public/media/illustrations/sigma-1/2.png differ diff --git a/public/media/illustrations/sigma-1/20-dark.png b/public/media/illustrations/sigma-1/20-dark.png new file mode 100644 index 0000000..a18f403 Binary files /dev/null and b/public/media/illustrations/sigma-1/20-dark.png differ diff --git a/public/media/illustrations/sigma-1/20.png b/public/media/illustrations/sigma-1/20.png new file mode 100644 index 0000000..c1879ef Binary files /dev/null and b/public/media/illustrations/sigma-1/20.png differ diff --git a/public/media/illustrations/sigma-1/21-dark.png b/public/media/illustrations/sigma-1/21-dark.png new file mode 100644 index 0000000..820be06 Binary files /dev/null and b/public/media/illustrations/sigma-1/21-dark.png differ diff --git a/public/media/illustrations/sigma-1/21.png b/public/media/illustrations/sigma-1/21.png new file mode 100644 index 0000000..b6e1623 Binary files /dev/null and b/public/media/illustrations/sigma-1/21.png differ diff --git a/public/media/illustrations/sigma-1/3-dark.png b/public/media/illustrations/sigma-1/3-dark.png new file mode 100644 index 0000000..1c10717 Binary files /dev/null and b/public/media/illustrations/sigma-1/3-dark.png differ diff --git a/public/media/illustrations/sigma-1/3.png b/public/media/illustrations/sigma-1/3.png new file mode 100644 index 0000000..9f79d8a Binary files /dev/null and b/public/media/illustrations/sigma-1/3.png differ diff --git a/public/media/illustrations/sigma-1/4-dark.png b/public/media/illustrations/sigma-1/4-dark.png new file mode 100644 index 0000000..70e6767 Binary files /dev/null and b/public/media/illustrations/sigma-1/4-dark.png differ diff --git a/public/media/illustrations/sigma-1/4.png b/public/media/illustrations/sigma-1/4.png new file mode 100644 index 0000000..c0ddb8f Binary files /dev/null and b/public/media/illustrations/sigma-1/4.png differ diff --git a/public/media/illustrations/sigma-1/5-dark.png b/public/media/illustrations/sigma-1/5-dark.png new file mode 100644 index 0000000..7a94c20 Binary files /dev/null and b/public/media/illustrations/sigma-1/5-dark.png differ diff --git a/public/media/illustrations/sigma-1/5.png b/public/media/illustrations/sigma-1/5.png new file mode 100644 index 0000000..b28d5db Binary files /dev/null and b/public/media/illustrations/sigma-1/5.png differ diff --git a/public/media/illustrations/sigma-1/6-dark.png b/public/media/illustrations/sigma-1/6-dark.png new file mode 100644 index 0000000..b44bc0a Binary files /dev/null and b/public/media/illustrations/sigma-1/6-dark.png differ diff --git a/public/media/illustrations/sigma-1/6.png b/public/media/illustrations/sigma-1/6.png new file mode 100644 index 0000000..77e9279 Binary files /dev/null and b/public/media/illustrations/sigma-1/6.png differ diff --git a/public/media/illustrations/sigma-1/7-dark.png b/public/media/illustrations/sigma-1/7-dark.png new file mode 100644 index 0000000..d1ef375 Binary files /dev/null and b/public/media/illustrations/sigma-1/7-dark.png differ diff --git a/public/media/illustrations/sigma-1/7.png b/public/media/illustrations/sigma-1/7.png new file mode 100644 index 0000000..e1e6da8 Binary files /dev/null and b/public/media/illustrations/sigma-1/7.png differ diff --git a/public/media/illustrations/sigma-1/8-dark.png b/public/media/illustrations/sigma-1/8-dark.png new file mode 100644 index 0000000..9a13ac7 Binary files /dev/null and b/public/media/illustrations/sigma-1/8-dark.png differ diff --git a/public/media/illustrations/sigma-1/8.png b/public/media/illustrations/sigma-1/8.png new file mode 100644 index 0000000..9a3a3f9 Binary files /dev/null and b/public/media/illustrations/sigma-1/8.png differ diff --git a/public/media/illustrations/sigma-1/9-dark.png b/public/media/illustrations/sigma-1/9-dark.png new file mode 100644 index 0000000..9986e19 Binary files /dev/null and b/public/media/illustrations/sigma-1/9-dark.png differ diff --git a/public/media/illustrations/sigma-1/9.png b/public/media/illustrations/sigma-1/9.png new file mode 100644 index 0000000..f7a9f72 Binary files /dev/null and b/public/media/illustrations/sigma-1/9.png differ diff --git a/public/media/illustrations/sketchy-1/1-dark.png b/public/media/illustrations/sketchy-1/1-dark.png new file mode 100644 index 0000000..5ea1b54 Binary files /dev/null and b/public/media/illustrations/sketchy-1/1-dark.png differ diff --git a/public/media/illustrations/sketchy-1/1.png b/public/media/illustrations/sketchy-1/1.png new file mode 100644 index 0000000..5ea1b54 Binary files /dev/null and b/public/media/illustrations/sketchy-1/1.png differ diff --git a/public/media/illustrations/sketchy-1/10-dark.png b/public/media/illustrations/sketchy-1/10-dark.png new file mode 100644 index 0000000..8520ece Binary files /dev/null and b/public/media/illustrations/sketchy-1/10-dark.png differ diff --git a/public/media/illustrations/sketchy-1/10.png b/public/media/illustrations/sketchy-1/10.png new file mode 100644 index 0000000..6473bc0 Binary files /dev/null and b/public/media/illustrations/sketchy-1/10.png differ diff --git a/public/media/illustrations/sketchy-1/11-dark.png b/public/media/illustrations/sketchy-1/11-dark.png new file mode 100644 index 0000000..25a6f91 Binary files /dev/null and b/public/media/illustrations/sketchy-1/11-dark.png differ diff --git a/public/media/illustrations/sketchy-1/11.png b/public/media/illustrations/sketchy-1/11.png new file mode 100644 index 0000000..25a6f91 Binary files /dev/null and b/public/media/illustrations/sketchy-1/11.png differ diff --git a/public/media/illustrations/sketchy-1/12-dark.png b/public/media/illustrations/sketchy-1/12-dark.png new file mode 100644 index 0000000..9b205d2 Binary files /dev/null and b/public/media/illustrations/sketchy-1/12-dark.png differ diff --git a/public/media/illustrations/sketchy-1/12.png b/public/media/illustrations/sketchy-1/12.png new file mode 100644 index 0000000..9b205d2 Binary files /dev/null and b/public/media/illustrations/sketchy-1/12.png differ diff --git a/public/media/illustrations/sketchy-1/13-dark.png b/public/media/illustrations/sketchy-1/13-dark.png new file mode 100644 index 0000000..58aceb0 Binary files /dev/null and b/public/media/illustrations/sketchy-1/13-dark.png differ diff --git a/public/media/illustrations/sketchy-1/13.png b/public/media/illustrations/sketchy-1/13.png new file mode 100644 index 0000000..4cbafeb Binary files /dev/null and b/public/media/illustrations/sketchy-1/13.png differ diff --git a/public/media/illustrations/sketchy-1/14-dark.png b/public/media/illustrations/sketchy-1/14-dark.png new file mode 100644 index 0000000..f4d7601 Binary files /dev/null and b/public/media/illustrations/sketchy-1/14-dark.png differ diff --git a/public/media/illustrations/sketchy-1/14.png b/public/media/illustrations/sketchy-1/14.png new file mode 100644 index 0000000..920bad9 Binary files /dev/null and b/public/media/illustrations/sketchy-1/14.png differ diff --git a/public/media/illustrations/sketchy-1/15-dark.png b/public/media/illustrations/sketchy-1/15-dark.png new file mode 100644 index 0000000..f36c423 Binary files /dev/null and b/public/media/illustrations/sketchy-1/15-dark.png differ diff --git a/public/media/illustrations/sketchy-1/15.png b/public/media/illustrations/sketchy-1/15.png new file mode 100644 index 0000000..cda7ee7 Binary files /dev/null and b/public/media/illustrations/sketchy-1/15.png differ diff --git a/public/media/illustrations/sketchy-1/16-dark.png b/public/media/illustrations/sketchy-1/16-dark.png new file mode 100644 index 0000000..effe4ef Binary files /dev/null and b/public/media/illustrations/sketchy-1/16-dark.png differ diff --git a/public/media/illustrations/sketchy-1/16.png b/public/media/illustrations/sketchy-1/16.png new file mode 100644 index 0000000..effe4ef Binary files /dev/null and b/public/media/illustrations/sketchy-1/16.png differ diff --git a/public/media/illustrations/sketchy-1/17-dark.png b/public/media/illustrations/sketchy-1/17-dark.png new file mode 100644 index 0000000..017f9cf Binary files /dev/null and b/public/media/illustrations/sketchy-1/17-dark.png differ diff --git a/public/media/illustrations/sketchy-1/17.png b/public/media/illustrations/sketchy-1/17.png new file mode 100644 index 0000000..017f9cf Binary files /dev/null and b/public/media/illustrations/sketchy-1/17.png differ diff --git a/public/media/illustrations/sketchy-1/18-dark.png b/public/media/illustrations/sketchy-1/18-dark.png new file mode 100644 index 0000000..3ea09b0 Binary files /dev/null and b/public/media/illustrations/sketchy-1/18-dark.png differ diff --git a/public/media/illustrations/sketchy-1/18.png b/public/media/illustrations/sketchy-1/18.png new file mode 100644 index 0000000..66d278b Binary files /dev/null and b/public/media/illustrations/sketchy-1/18.png differ diff --git a/public/media/illustrations/sketchy-1/19-dark.png b/public/media/illustrations/sketchy-1/19-dark.png new file mode 100644 index 0000000..01cb1bc Binary files /dev/null and b/public/media/illustrations/sketchy-1/19-dark.png differ diff --git a/public/media/illustrations/sketchy-1/19.png b/public/media/illustrations/sketchy-1/19.png new file mode 100644 index 0000000..059d621 Binary files /dev/null and b/public/media/illustrations/sketchy-1/19.png differ diff --git a/public/media/illustrations/sketchy-1/2-dark.png b/public/media/illustrations/sketchy-1/2-dark.png new file mode 100644 index 0000000..8cf0e9d Binary files /dev/null and b/public/media/illustrations/sketchy-1/2-dark.png differ diff --git a/public/media/illustrations/sketchy-1/2.png b/public/media/illustrations/sketchy-1/2.png new file mode 100644 index 0000000..8cf0e9d Binary files /dev/null and b/public/media/illustrations/sketchy-1/2.png differ diff --git a/public/media/illustrations/sketchy-1/20-dark.png b/public/media/illustrations/sketchy-1/20-dark.png new file mode 100644 index 0000000..bc36a05 Binary files /dev/null and b/public/media/illustrations/sketchy-1/20-dark.png differ diff --git a/public/media/illustrations/sketchy-1/20.png b/public/media/illustrations/sketchy-1/20.png new file mode 100644 index 0000000..bc36a05 Binary files /dev/null and b/public/media/illustrations/sketchy-1/20.png differ diff --git a/public/media/illustrations/sketchy-1/3-dark.png b/public/media/illustrations/sketchy-1/3-dark.png new file mode 100644 index 0000000..2bc292e Binary files /dev/null and b/public/media/illustrations/sketchy-1/3-dark.png differ diff --git a/public/media/illustrations/sketchy-1/3.png b/public/media/illustrations/sketchy-1/3.png new file mode 100644 index 0000000..2bc292e Binary files /dev/null and b/public/media/illustrations/sketchy-1/3.png differ diff --git a/public/media/illustrations/sketchy-1/4-dark.png b/public/media/illustrations/sketchy-1/4-dark.png new file mode 100644 index 0000000..23392de Binary files /dev/null and b/public/media/illustrations/sketchy-1/4-dark.png differ diff --git a/public/media/illustrations/sketchy-1/4.png b/public/media/illustrations/sketchy-1/4.png new file mode 100644 index 0000000..23392de Binary files /dev/null and b/public/media/illustrations/sketchy-1/4.png differ diff --git a/public/media/illustrations/sketchy-1/5-dark.png b/public/media/illustrations/sketchy-1/5-dark.png new file mode 100644 index 0000000..9fec5d9 Binary files /dev/null and b/public/media/illustrations/sketchy-1/5-dark.png differ diff --git a/public/media/illustrations/sketchy-1/5.png b/public/media/illustrations/sketchy-1/5.png new file mode 100644 index 0000000..9fec5d9 Binary files /dev/null and b/public/media/illustrations/sketchy-1/5.png differ diff --git a/public/media/illustrations/sketchy-1/6-dark.png b/public/media/illustrations/sketchy-1/6-dark.png new file mode 100644 index 0000000..5061c7e Binary files /dev/null and b/public/media/illustrations/sketchy-1/6-dark.png differ diff --git a/public/media/illustrations/sketchy-1/6.png b/public/media/illustrations/sketchy-1/6.png new file mode 100644 index 0000000..5061c7e Binary files /dev/null and b/public/media/illustrations/sketchy-1/6.png differ diff --git a/public/media/illustrations/sketchy-1/7-dark.png b/public/media/illustrations/sketchy-1/7-dark.png new file mode 100644 index 0000000..86aa33e Binary files /dev/null and b/public/media/illustrations/sketchy-1/7-dark.png differ diff --git a/public/media/illustrations/sketchy-1/7.png b/public/media/illustrations/sketchy-1/7.png new file mode 100644 index 0000000..86aa33e Binary files /dev/null and b/public/media/illustrations/sketchy-1/7.png differ diff --git a/public/media/illustrations/sketchy-1/8-dark.png b/public/media/illustrations/sketchy-1/8-dark.png new file mode 100644 index 0000000..4bd1c1e Binary files /dev/null and b/public/media/illustrations/sketchy-1/8-dark.png differ diff --git a/public/media/illustrations/sketchy-1/8.png b/public/media/illustrations/sketchy-1/8.png new file mode 100644 index 0000000..4bd1c1e Binary files /dev/null and b/public/media/illustrations/sketchy-1/8.png differ diff --git a/public/media/illustrations/sketchy-1/9-dark.png b/public/media/illustrations/sketchy-1/9-dark.png new file mode 100644 index 0000000..5628b75 Binary files /dev/null and b/public/media/illustrations/sketchy-1/9-dark.png differ diff --git a/public/media/illustrations/sketchy-1/9.png b/public/media/illustrations/sketchy-1/9.png new file mode 100644 index 0000000..5628b75 Binary files /dev/null and b/public/media/illustrations/sketchy-1/9.png differ diff --git a/public/media/illustrations/unitedpalms-1/1-dark.png b/public/media/illustrations/unitedpalms-1/1-dark.png new file mode 100644 index 0000000..f3d44ca Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/1-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/1.png b/public/media/illustrations/unitedpalms-1/1.png new file mode 100644 index 0000000..64b83e3 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/1.png differ diff --git a/public/media/illustrations/unitedpalms-1/10-dark.png b/public/media/illustrations/unitedpalms-1/10-dark.png new file mode 100644 index 0000000..e9268c0 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/10-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/10.png b/public/media/illustrations/unitedpalms-1/10.png new file mode 100644 index 0000000..5d5ea9c Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/10.png differ diff --git a/public/media/illustrations/unitedpalms-1/11-dark.png b/public/media/illustrations/unitedpalms-1/11-dark.png new file mode 100644 index 0000000..955de40 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/11-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/11.png b/public/media/illustrations/unitedpalms-1/11.png new file mode 100644 index 0000000..c159075 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/11.png differ diff --git a/public/media/illustrations/unitedpalms-1/12-dark.png b/public/media/illustrations/unitedpalms-1/12-dark.png new file mode 100644 index 0000000..0e14013 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/12-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/12.png b/public/media/illustrations/unitedpalms-1/12.png new file mode 100644 index 0000000..84258db Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/12.png differ diff --git a/public/media/illustrations/unitedpalms-1/13-dark.png b/public/media/illustrations/unitedpalms-1/13-dark.png new file mode 100644 index 0000000..ced4837 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/13-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/13.png b/public/media/illustrations/unitedpalms-1/13.png new file mode 100644 index 0000000..53e682c Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/13.png differ diff --git a/public/media/illustrations/unitedpalms-1/14-dark.png b/public/media/illustrations/unitedpalms-1/14-dark.png new file mode 100644 index 0000000..b07a3a3 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/14-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/14.png b/public/media/illustrations/unitedpalms-1/14.png new file mode 100644 index 0000000..4eb1b49 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/14.png differ diff --git a/public/media/illustrations/unitedpalms-1/15-dark.png b/public/media/illustrations/unitedpalms-1/15-dark.png new file mode 100644 index 0000000..e85f569 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/15-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/15.png b/public/media/illustrations/unitedpalms-1/15.png new file mode 100644 index 0000000..dab6ee5 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/15.png differ diff --git a/public/media/illustrations/unitedpalms-1/16-dark.png b/public/media/illustrations/unitedpalms-1/16-dark.png new file mode 100644 index 0000000..9e7eb1f Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/16-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/16.png b/public/media/illustrations/unitedpalms-1/16.png new file mode 100644 index 0000000..be145dd Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/16.png differ diff --git a/public/media/illustrations/unitedpalms-1/17-dark.png b/public/media/illustrations/unitedpalms-1/17-dark.png new file mode 100644 index 0000000..42a17cd Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/17-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/17.png b/public/media/illustrations/unitedpalms-1/17.png new file mode 100644 index 0000000..514bd67 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/17.png differ diff --git a/public/media/illustrations/unitedpalms-1/18-dark.png b/public/media/illustrations/unitedpalms-1/18-dark.png new file mode 100644 index 0000000..281c44e Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/18-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/18.png b/public/media/illustrations/unitedpalms-1/18.png new file mode 100644 index 0000000..4e1d110 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/18.png differ diff --git a/public/media/illustrations/unitedpalms-1/19-dark.png b/public/media/illustrations/unitedpalms-1/19-dark.png new file mode 100644 index 0000000..f4e5c48 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/19-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/19.png b/public/media/illustrations/unitedpalms-1/19.png new file mode 100644 index 0000000..dc72c82 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/19.png differ diff --git a/public/media/illustrations/unitedpalms-1/2-dark.png b/public/media/illustrations/unitedpalms-1/2-dark.png new file mode 100644 index 0000000..6dda49c Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/2-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/2.png b/public/media/illustrations/unitedpalms-1/2.png new file mode 100644 index 0000000..edbd038 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/2.png differ diff --git a/public/media/illustrations/unitedpalms-1/20-dark.png b/public/media/illustrations/unitedpalms-1/20-dark.png new file mode 100644 index 0000000..587fe22 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/20-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/20.png b/public/media/illustrations/unitedpalms-1/20.png new file mode 100644 index 0000000..b718f41 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/20.png differ diff --git a/public/media/illustrations/unitedpalms-1/3-dark.png b/public/media/illustrations/unitedpalms-1/3-dark.png new file mode 100644 index 0000000..934ca61 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/3-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/3.png b/public/media/illustrations/unitedpalms-1/3.png new file mode 100644 index 0000000..14d3c11 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/3.png differ diff --git a/public/media/illustrations/unitedpalms-1/4-dark.png b/public/media/illustrations/unitedpalms-1/4-dark.png new file mode 100644 index 0000000..3a62306 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/4-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/4.png b/public/media/illustrations/unitedpalms-1/4.png new file mode 100644 index 0000000..4b3ec46 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/4.png differ diff --git a/public/media/illustrations/unitedpalms-1/5-dark.png b/public/media/illustrations/unitedpalms-1/5-dark.png new file mode 100644 index 0000000..552bb71 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/5-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/5.png b/public/media/illustrations/unitedpalms-1/5.png new file mode 100644 index 0000000..cd400aa Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/5.png differ diff --git a/public/media/illustrations/unitedpalms-1/6-dark.png b/public/media/illustrations/unitedpalms-1/6-dark.png new file mode 100644 index 0000000..eb677a6 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/6-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/6.png b/public/media/illustrations/unitedpalms-1/6.png new file mode 100644 index 0000000..65b8ab8 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/6.png differ diff --git a/public/media/illustrations/unitedpalms-1/7-dark.png b/public/media/illustrations/unitedpalms-1/7-dark.png new file mode 100644 index 0000000..c5fb697 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/7-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/7.png b/public/media/illustrations/unitedpalms-1/7.png new file mode 100644 index 0000000..cb70c5c Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/7.png differ diff --git a/public/media/illustrations/unitedpalms-1/8-dark.png b/public/media/illustrations/unitedpalms-1/8-dark.png new file mode 100644 index 0000000..06b40d1 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/8-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/8.png b/public/media/illustrations/unitedpalms-1/8.png new file mode 100644 index 0000000..bbef5df Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/8.png differ diff --git a/public/media/illustrations/unitedpalms-1/9-dark.png b/public/media/illustrations/unitedpalms-1/9-dark.png new file mode 100644 index 0000000..71c96d8 Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/9-dark.png differ diff --git a/public/media/illustrations/unitedpalms-1/9.png b/public/media/illustrations/unitedpalms-1/9.png new file mode 100644 index 0000000..f05e5de Binary files /dev/null and b/public/media/illustrations/unitedpalms-1/9.png differ diff --git a/public/media/logos/android-chrome-192x192.png b/public/media/logos/android-chrome-192x192.png new file mode 100644 index 0000000..76c90a0 Binary files /dev/null and b/public/media/logos/android-chrome-192x192.png differ diff --git a/public/media/logos/android-chrome-512x512.png b/public/media/logos/android-chrome-512x512.png new file mode 100644 index 0000000..099b624 Binary files /dev/null and b/public/media/logos/android-chrome-512x512.png differ diff --git a/public/media/logos/apple-touch-icon.png b/public/media/logos/apple-touch-icon.png new file mode 100644 index 0000000..e4adec7 Binary files /dev/null and b/public/media/logos/apple-touch-icon.png differ diff --git a/public/media/logos/custom-1.png b/public/media/logos/custom-1.png new file mode 100644 index 0000000..0578f3d Binary files /dev/null and b/public/media/logos/custom-1.png differ diff --git a/public/media/logos/custom-2.svg b/public/media/logos/custom-2.svg new file mode 100644 index 0000000..e86088a --- /dev/null +++ b/public/media/logos/custom-2.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/logos/custom-3.svg b/public/media/logos/custom-3.svg new file mode 100644 index 0000000..b7978d7 --- /dev/null +++ b/public/media/logos/custom-3.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/media/logos/default-dark.svg b/public/media/logos/default-dark.svg new file mode 100644 index 0000000..b290e71 --- /dev/null +++ b/public/media/logos/default-dark.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/logos/default-large.svg b/public/media/logos/default-large.svg new file mode 100644 index 0000000..9eaf21e --- /dev/null +++ b/public/media/logos/default-large.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/logos/default-small-dark.svg b/public/media/logos/default-small-dark.svg new file mode 100644 index 0000000..7f2a6dc --- /dev/null +++ b/public/media/logos/default-small-dark.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/logos/default-small.svg b/public/media/logos/default-small.svg new file mode 100644 index 0000000..ddeeb71 --- /dev/null +++ b/public/media/logos/default-small.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/logos/default.svg b/public/media/logos/default.svg new file mode 100644 index 0000000..75f84cf --- /dev/null +++ b/public/media/logos/default.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/logos/favicon-16x16.png b/public/media/logos/favicon-16x16.png new file mode 100644 index 0000000..c6e2554 Binary files /dev/null and b/public/media/logos/favicon-16x16.png differ diff --git a/public/media/logos/favicon-32x32.png b/public/media/logos/favicon-32x32.png new file mode 100644 index 0000000..e437db7 Binary files /dev/null and b/public/media/logos/favicon-32x32.png differ diff --git a/public/media/logos/favicon.ico b/public/media/logos/favicon.ico new file mode 100644 index 0000000..9556081 Binary files /dev/null and b/public/media/logos/favicon.ico differ diff --git a/public/media/logos/keenthemes-dark.svg b/public/media/logos/keenthemes-dark.svg new file mode 100644 index 0000000..d0a96e9 --- /dev/null +++ b/public/media/logos/keenthemes-dark.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/logos/keenthemes.svg b/public/media/logos/keenthemes.svg new file mode 100644 index 0000000..9824d5c --- /dev/null +++ b/public/media/logos/keenthemes.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/logos/landing-dark.svg b/public/media/logos/landing-dark.svg new file mode 100644 index 0000000..66e2390 --- /dev/null +++ b/public/media/logos/landing-dark.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/logos/landing.svg b/public/media/logos/landing.svg new file mode 100644 index 0000000..9c7ff28 --- /dev/null +++ b/public/media/logos/landing.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/logos/mail.svg b/public/media/logos/mail.svg new file mode 100644 index 0000000..75f84cf --- /dev/null +++ b/public/media/logos/mail.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/logos/sidelogo.png b/public/media/logos/sidelogo.png new file mode 100644 index 0000000..36bfa99 Binary files /dev/null and b/public/media/logos/sidelogo.png differ diff --git a/public/media/logos/sidelogo_new.png b/public/media/logos/sidelogo_new.png new file mode 100644 index 0000000..36bfa99 Binary files /dev/null and b/public/media/logos/sidelogo_new.png differ diff --git a/public/media/logos/sidelogo_small.png b/public/media/logos/sidelogo_small.png new file mode 100644 index 0000000..76c90a0 Binary files /dev/null and b/public/media/logos/sidelogo_small.png differ diff --git a/public/media/logos/site.webmanifest b/public/media/logos/site.webmanifest new file mode 100644 index 0000000..45dc8a2 --- /dev/null +++ b/public/media/logos/site.webmanifest @@ -0,0 +1 @@ +{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} \ No newline at end of file diff --git a/public/media/misc/1.png b/public/media/misc/1.png new file mode 100644 index 0000000..b030535 Binary files /dev/null and b/public/media/misc/1.png differ diff --git a/public/media/misc/agents-auth-screens.png b/public/media/misc/agents-auth-screens.png new file mode 100644 index 0000000..96d3b26 Binary files /dev/null and b/public/media/misc/agents-auth-screens.png differ diff --git a/public/media/misc/auth-bg.png b/public/media/misc/auth-bg.png new file mode 100644 index 0000000..8dd1a52 Binary files /dev/null and b/public/media/misc/auth-bg.png differ diff --git a/public/media/misc/auth-screens.png b/public/media/misc/auth-screens.png new file mode 100644 index 0000000..149e646 Binary files /dev/null and b/public/media/misc/auth-screens.png differ diff --git a/public/media/misc/bg-2.jpg b/public/media/misc/bg-2.jpg new file mode 100644 index 0000000..1139140 Binary files /dev/null and b/public/media/misc/bg-2.jpg differ diff --git a/public/media/misc/city.png b/public/media/misc/city.png new file mode 100644 index 0000000..8eeff26 Binary files /dev/null and b/public/media/misc/city.png differ diff --git a/public/media/misc/image.png b/public/media/misc/image.png new file mode 100644 index 0000000..5e01b1e Binary files /dev/null and b/public/media/misc/image.png differ diff --git a/public/media/misc/layout/aside-calendar.png b/public/media/misc/layout/aside-calendar.png new file mode 100644 index 0000000..23c8345 Binary files /dev/null and b/public/media/misc/layout/aside-calendar.png differ diff --git a/public/media/misc/layout/aside-courier-activity.png b/public/media/misc/layout/aside-courier-activity.png new file mode 100644 index 0000000..d0a003c Binary files /dev/null and b/public/media/misc/layout/aside-courier-activity.png differ diff --git a/public/media/misc/layout/aside-filters.png b/public/media/misc/layout/aside-filters.png new file mode 100644 index 0000000..2581135 Binary files /dev/null and b/public/media/misc/layout/aside-filters.png differ diff --git a/public/media/misc/layout/aside-segments.png b/public/media/misc/layout/aside-segments.png new file mode 100644 index 0000000..5bde711 Binary files /dev/null and b/public/media/misc/layout/aside-segments.png differ diff --git a/public/media/misc/layout/aside-shipment-history.png b/public/media/misc/layout/aside-shipment-history.png new file mode 100644 index 0000000..99d1582 Binary files /dev/null and b/public/media/misc/layout/aside-shipment-history.png differ diff --git a/public/media/misc/layout/customizer-header-bg.jpg b/public/media/misc/layout/customizer-header-bg.jpg new file mode 100644 index 0000000..2e29270 Binary files /dev/null and b/public/media/misc/layout/customizer-header-bg.jpg differ diff --git a/public/media/misc/layout/dark-header.png b/public/media/misc/layout/dark-header.png new file mode 100644 index 0000000..5eab3c6 Binary files /dev/null and b/public/media/misc/layout/dark-header.png differ diff --git a/public/media/misc/layout/dark-sidebar.png b/public/media/misc/layout/dark-sidebar.png new file mode 100644 index 0000000..82ab02c Binary files /dev/null and b/public/media/misc/layout/dark-sidebar.png differ diff --git a/public/media/misc/layout/demo1-dark.png b/public/media/misc/layout/demo1-dark.png new file mode 100644 index 0000000..4e60f0a Binary files /dev/null and b/public/media/misc/layout/demo1-dark.png differ diff --git a/public/media/misc/layout/demo1-light.png b/public/media/misc/layout/demo1-light.png new file mode 100644 index 0000000..6c039df Binary files /dev/null and b/public/media/misc/layout/demo1-light.png differ diff --git a/public/media/misc/layout/demo23-dark.png b/public/media/misc/layout/demo23-dark.png new file mode 100644 index 0000000..4e60f0a Binary files /dev/null and b/public/media/misc/layout/demo23-dark.png differ diff --git a/public/media/misc/layout/demo23-light.png b/public/media/misc/layout/demo23-light.png new file mode 100644 index 0000000..6c039df Binary files /dev/null and b/public/media/misc/layout/demo23-light.png differ diff --git a/public/media/misc/layout/light-header.png b/public/media/misc/layout/light-header.png new file mode 100644 index 0000000..07ce873 Binary files /dev/null and b/public/media/misc/layout/light-header.png differ diff --git a/public/media/misc/layout/light-sidebar.png b/public/media/misc/layout/light-sidebar.png new file mode 100644 index 0000000..7abff3e Binary files /dev/null and b/public/media/misc/layout/light-sidebar.png differ diff --git a/public/media/misc/layout/toolbar-accounting.png b/public/media/misc/layout/toolbar-accounting.png new file mode 100644 index 0000000..12bafd7 Binary files /dev/null and b/public/media/misc/layout/toolbar-accounting.png differ diff --git a/public/media/misc/layout/toolbar-classic.png b/public/media/misc/layout/toolbar-classic.png new file mode 100644 index 0000000..1100532 Binary files /dev/null and b/public/media/misc/layout/toolbar-classic.png differ diff --git a/public/media/misc/layout/toolbar-extended.png b/public/media/misc/layout/toolbar-extended.png new file mode 100644 index 0000000..9746a5b Binary files /dev/null and b/public/media/misc/layout/toolbar-extended.png differ diff --git a/public/media/misc/layout/toolbar-reports.png b/public/media/misc/layout/toolbar-reports.png new file mode 100644 index 0000000..33bf561 Binary files /dev/null and b/public/media/misc/layout/toolbar-reports.png differ diff --git a/public/media/misc/layout/toolbar-saas.png b/public/media/misc/layout/toolbar-saas.png new file mode 100644 index 0000000..7426ea1 Binary files /dev/null and b/public/media/misc/layout/toolbar-saas.png differ diff --git a/public/media/misc/menu-header-bg.jpg b/public/media/misc/menu-header-bg.jpg new file mode 100644 index 0000000..447eea1 Binary files /dev/null and b/public/media/misc/menu-header-bg.jpg differ diff --git a/public/media/misc/menu-header-dark.png b/public/media/misc/menu-header-dark.png new file mode 100644 index 0000000..0b4ef3a Binary files /dev/null and b/public/media/misc/menu-header-dark.png differ diff --git a/public/media/misc/outdoor.png b/public/media/misc/outdoor.png new file mode 100644 index 0000000..eda4264 Binary files /dev/null and b/public/media/misc/outdoor.png differ diff --git a/public/media/misc/pattern-2.png b/public/media/misc/pattern-2.png new file mode 100644 index 0000000..a273dd4 Binary files /dev/null and b/public/media/misc/pattern-2.png differ diff --git a/public/media/misc/pattern-4.jpg b/public/media/misc/pattern-4.jpg new file mode 100644 index 0000000..d3f77f0 Binary files /dev/null and b/public/media/misc/pattern-4.jpg differ diff --git a/public/media/misc/portfolio.png b/public/media/misc/portfolio.png new file mode 100644 index 0000000..434de64 Binary files /dev/null and b/public/media/misc/portfolio.png differ diff --git a/public/media/misc/preview-1.jpg b/public/media/misc/preview-1.jpg new file mode 100644 index 0000000..dce31ef Binary files /dev/null and b/public/media/misc/preview-1.jpg differ diff --git a/public/media/misc/preview-2.jpg b/public/media/misc/preview-2.jpg new file mode 100644 index 0000000..5047279 Binary files /dev/null and b/public/media/misc/preview-2.jpg differ diff --git a/public/media/misc/preview-3.jpg b/public/media/misc/preview-3.jpg new file mode 100644 index 0000000..f457a00 Binary files /dev/null and b/public/media/misc/preview-3.jpg differ diff --git a/public/media/misc/profile-head-bg.jpg b/public/media/misc/profile-head-bg.jpg new file mode 100644 index 0000000..1fd5758 Binary files /dev/null and b/public/media/misc/profile-head-bg.jpg differ diff --git a/public/media/misc/qr-code.png b/public/media/misc/qr-code.png new file mode 100644 index 0000000..59d927a Binary files /dev/null and b/public/media/misc/qr-code.png differ diff --git a/public/media/misc/qr.png b/public/media/misc/qr.png new file mode 100644 index 0000000..d954e14 Binary files /dev/null and b/public/media/misc/qr.png differ diff --git a/public/media/misc/search-bg.png b/public/media/misc/search-bg.png new file mode 100644 index 0000000..a273dd4 Binary files /dev/null and b/public/media/misc/search-bg.png differ diff --git a/public/media/misc/spinner.gif b/public/media/misc/spinner.gif new file mode 100644 index 0000000..7196607 Binary files /dev/null and b/public/media/misc/spinner.gif differ diff --git a/public/media/misc/track-order.png b/public/media/misc/track-order.png new file mode 100644 index 0000000..19619e7 Binary files /dev/null and b/public/media/misc/track-order.png differ diff --git a/public/media/patterns/pattern-1.jpg b/public/media/patterns/pattern-1.jpg new file mode 100644 index 0000000..9a661aa Binary files /dev/null and b/public/media/patterns/pattern-1.jpg differ diff --git a/public/media/patterns/vector-1.png b/public/media/patterns/vector-1.png new file mode 100644 index 0000000..e4f29a2 Binary files /dev/null and b/public/media/patterns/vector-1.png differ diff --git a/public/media/plugins/jstree/32px.png b/public/media/plugins/jstree/32px.png new file mode 100644 index 0000000..4bc79e6 Binary files /dev/null and b/public/media/plugins/jstree/32px.png differ diff --git a/public/media/preview/demos/demo1/dark-ltr.png b/public/media/preview/demos/demo1/dark-ltr.png new file mode 100644 index 0000000..68e98f2 Binary files /dev/null and b/public/media/preview/demos/demo1/dark-ltr.png differ diff --git a/public/media/preview/demos/demo1/dark-rtl.png b/public/media/preview/demos/demo1/dark-rtl.png new file mode 100644 index 0000000..c8bf963 Binary files /dev/null and b/public/media/preview/demos/demo1/dark-rtl.png differ diff --git a/public/media/preview/demos/demo1/light-ltr.png b/public/media/preview/demos/demo1/light-ltr.png new file mode 100644 index 0000000..8441c6c Binary files /dev/null and b/public/media/preview/demos/demo1/light-ltr.png differ diff --git a/public/media/preview/demos/demo1/light-rtl.png b/public/media/preview/demos/demo1/light-rtl.png new file mode 100644 index 0000000..27a5ddb Binary files /dev/null and b/public/media/preview/demos/demo1/light-rtl.png differ diff --git a/public/media/preview/demos/demo10/dark-ltr.png b/public/media/preview/demos/demo10/dark-ltr.png new file mode 100644 index 0000000..59f439c Binary files /dev/null and b/public/media/preview/demos/demo10/dark-ltr.png differ diff --git a/public/media/preview/demos/demo10/dark-rtl.png b/public/media/preview/demos/demo10/dark-rtl.png new file mode 100644 index 0000000..0a02f46 Binary files /dev/null and b/public/media/preview/demos/demo10/dark-rtl.png differ diff --git a/public/media/preview/demos/demo10/light-ltr.png b/public/media/preview/demos/demo10/light-ltr.png new file mode 100644 index 0000000..59f439c Binary files /dev/null and b/public/media/preview/demos/demo10/light-ltr.png differ diff --git a/public/media/preview/demos/demo10/light-rtl.png b/public/media/preview/demos/demo10/light-rtl.png new file mode 100644 index 0000000..0a02f46 Binary files /dev/null and b/public/media/preview/demos/demo10/light-rtl.png differ diff --git a/public/media/preview/demos/demo11/dark-ltr.png b/public/media/preview/demos/demo11/dark-ltr.png new file mode 100644 index 0000000..fe0e5a9 Binary files /dev/null and b/public/media/preview/demos/demo11/dark-ltr.png differ diff --git a/public/media/preview/demos/demo11/dark-rtl.png b/public/media/preview/demos/demo11/dark-rtl.png new file mode 100644 index 0000000..c5ecbac Binary files /dev/null and b/public/media/preview/demos/demo11/dark-rtl.png differ diff --git a/public/media/preview/demos/demo11/light-ltr.png b/public/media/preview/demos/demo11/light-ltr.png new file mode 100644 index 0000000..58915a2 Binary files /dev/null and b/public/media/preview/demos/demo11/light-ltr.png differ diff --git a/public/media/preview/demos/demo11/light-rtl.png b/public/media/preview/demos/demo11/light-rtl.png new file mode 100644 index 0000000..363d5ab Binary files /dev/null and b/public/media/preview/demos/demo11/light-rtl.png differ diff --git a/public/media/preview/demos/demo12/dark-ltr.png b/public/media/preview/demos/demo12/dark-ltr.png new file mode 100644 index 0000000..202b863 Binary files /dev/null and b/public/media/preview/demos/demo12/dark-ltr.png differ diff --git a/public/media/preview/demos/demo12/dark-rtl.png b/public/media/preview/demos/demo12/dark-rtl.png new file mode 100644 index 0000000..1bda1c8 Binary files /dev/null and b/public/media/preview/demos/demo12/dark-rtl.png differ diff --git a/public/media/preview/demos/demo12/light-ltr.png b/public/media/preview/demos/demo12/light-ltr.png new file mode 100644 index 0000000..8f59412 Binary files /dev/null and b/public/media/preview/demos/demo12/light-ltr.png differ diff --git a/public/media/preview/demos/demo12/light-rtl.png b/public/media/preview/demos/demo12/light-rtl.png new file mode 100644 index 0000000..e3b1fa3 Binary files /dev/null and b/public/media/preview/demos/demo12/light-rtl.png differ diff --git a/public/media/preview/demos/demo13/dark-ltr.png b/public/media/preview/demos/demo13/dark-ltr.png new file mode 100644 index 0000000..bc80bf9 Binary files /dev/null and b/public/media/preview/demos/demo13/dark-ltr.png differ diff --git a/public/media/preview/demos/demo13/dark-rtl.png b/public/media/preview/demos/demo13/dark-rtl.png new file mode 100644 index 0000000..2cb5e10 Binary files /dev/null and b/public/media/preview/demos/demo13/dark-rtl.png differ diff --git a/public/media/preview/demos/demo13/light-ltr.png b/public/media/preview/demos/demo13/light-ltr.png new file mode 100644 index 0000000..88df81a Binary files /dev/null and b/public/media/preview/demos/demo13/light-ltr.png differ diff --git a/public/media/preview/demos/demo13/light-rtl.png b/public/media/preview/demos/demo13/light-rtl.png new file mode 100644 index 0000000..9c34b9a Binary files /dev/null and b/public/media/preview/demos/demo13/light-rtl.png differ diff --git a/public/media/preview/demos/demo14/dark-ltr.png b/public/media/preview/demos/demo14/dark-ltr.png new file mode 100644 index 0000000..166221e Binary files /dev/null and b/public/media/preview/demos/demo14/dark-ltr.png differ diff --git a/public/media/preview/demos/demo14/dark-rtl.png b/public/media/preview/demos/demo14/dark-rtl.png new file mode 100644 index 0000000..52bff2c Binary files /dev/null and b/public/media/preview/demos/demo14/dark-rtl.png differ diff --git a/public/media/preview/demos/demo14/light-ltr.png b/public/media/preview/demos/demo14/light-ltr.png new file mode 100644 index 0000000..12edc11 Binary files /dev/null and b/public/media/preview/demos/demo14/light-ltr.png differ diff --git a/public/media/preview/demos/demo14/light-rtl.png b/public/media/preview/demos/demo14/light-rtl.png new file mode 100644 index 0000000..00972d8 Binary files /dev/null and b/public/media/preview/demos/demo14/light-rtl.png differ diff --git a/public/media/preview/demos/demo15/dark-ltr.png b/public/media/preview/demos/demo15/dark-ltr.png new file mode 100644 index 0000000..4a4b70e Binary files /dev/null and b/public/media/preview/demos/demo15/dark-ltr.png differ diff --git a/public/media/preview/demos/demo15/dark-rtl.png b/public/media/preview/demos/demo15/dark-rtl.png new file mode 100644 index 0000000..04ee405 Binary files /dev/null and b/public/media/preview/demos/demo15/dark-rtl.png differ diff --git a/public/media/preview/demos/demo15/light-ltr.png b/public/media/preview/demos/demo15/light-ltr.png new file mode 100644 index 0000000..37e6512 Binary files /dev/null and b/public/media/preview/demos/demo15/light-ltr.png differ diff --git a/public/media/preview/demos/demo15/light-rtl.png b/public/media/preview/demos/demo15/light-rtl.png new file mode 100644 index 0000000..1a26e1f Binary files /dev/null and b/public/media/preview/demos/demo15/light-rtl.png differ diff --git a/public/media/preview/demos/demo16/dark-ltr.png b/public/media/preview/demos/demo16/dark-ltr.png new file mode 100644 index 0000000..8d65ed8 Binary files /dev/null and b/public/media/preview/demos/demo16/dark-ltr.png differ diff --git a/public/media/preview/demos/demo16/dark-rtl.png b/public/media/preview/demos/demo16/dark-rtl.png new file mode 100644 index 0000000..1717923 Binary files /dev/null and b/public/media/preview/demos/demo16/dark-rtl.png differ diff --git a/public/media/preview/demos/demo16/light-ltr.png b/public/media/preview/demos/demo16/light-ltr.png new file mode 100644 index 0000000..2bd1d50 Binary files /dev/null and b/public/media/preview/demos/demo16/light-ltr.png differ diff --git a/public/media/preview/demos/demo16/light-rtl.png b/public/media/preview/demos/demo16/light-rtl.png new file mode 100644 index 0000000..b1f9387 Binary files /dev/null and b/public/media/preview/demos/demo16/light-rtl.png differ diff --git a/public/media/preview/demos/demo17/dark-ltr.png b/public/media/preview/demos/demo17/dark-ltr.png new file mode 100644 index 0000000..16b48c3 Binary files /dev/null and b/public/media/preview/demos/demo17/dark-ltr.png differ diff --git a/public/media/preview/demos/demo17/dark-rtl.png b/public/media/preview/demos/demo17/dark-rtl.png new file mode 100644 index 0000000..74d536f Binary files /dev/null and b/public/media/preview/demos/demo17/dark-rtl.png differ diff --git a/public/media/preview/demos/demo17/light-ltr.png b/public/media/preview/demos/demo17/light-ltr.png new file mode 100644 index 0000000..8e16d90 Binary files /dev/null and b/public/media/preview/demos/demo17/light-ltr.png differ diff --git a/public/media/preview/demos/demo17/light-rtl.png b/public/media/preview/demos/demo17/light-rtl.png new file mode 100644 index 0000000..51fa194 Binary files /dev/null and b/public/media/preview/demos/demo17/light-rtl.png differ diff --git a/public/media/preview/demos/demo18/bk/dark-ltr.png b/public/media/preview/demos/demo18/bk/dark-ltr.png new file mode 100644 index 0000000..a7d3fb1 Binary files /dev/null and b/public/media/preview/demos/demo18/bk/dark-ltr.png differ diff --git a/public/media/preview/demos/demo18/bk/dark-rtl.png b/public/media/preview/demos/demo18/bk/dark-rtl.png new file mode 100644 index 0000000..dbff613 Binary files /dev/null and b/public/media/preview/demos/demo18/bk/dark-rtl.png differ diff --git a/public/media/preview/demos/demo18/bk/light-ltr.png b/public/media/preview/demos/demo18/bk/light-ltr.png new file mode 100644 index 0000000..4f4ea3e Binary files /dev/null and b/public/media/preview/demos/demo18/bk/light-ltr.png differ diff --git a/public/media/preview/demos/demo18/bk/light-rtl.png b/public/media/preview/demos/demo18/bk/light-rtl.png new file mode 100644 index 0000000..b4df0f5 Binary files /dev/null and b/public/media/preview/demos/demo18/bk/light-rtl.png differ diff --git a/public/media/preview/demos/demo18/dark-ltr.png b/public/media/preview/demos/demo18/dark-ltr.png new file mode 100644 index 0000000..5a2fbb9 Binary files /dev/null and b/public/media/preview/demos/demo18/dark-ltr.png differ diff --git a/public/media/preview/demos/demo18/dark-rtl.png b/public/media/preview/demos/demo18/dark-rtl.png new file mode 100644 index 0000000..270745d Binary files /dev/null and b/public/media/preview/demos/demo18/dark-rtl.png differ diff --git a/public/media/preview/demos/demo18/light-ltr.png b/public/media/preview/demos/demo18/light-ltr.png new file mode 100644 index 0000000..f1c6e1c Binary files /dev/null and b/public/media/preview/demos/demo18/light-ltr.png differ diff --git a/public/media/preview/demos/demo18/light-rtl.png b/public/media/preview/demos/demo18/light-rtl.png new file mode 100644 index 0000000..9610c61 Binary files /dev/null and b/public/media/preview/demos/demo18/light-rtl.png differ diff --git a/public/media/preview/demos/demo18/source/dark-ltr.png b/public/media/preview/demos/demo18/source/dark-ltr.png new file mode 100644 index 0000000..461ea86 Binary files /dev/null and b/public/media/preview/demos/demo18/source/dark-ltr.png differ diff --git a/public/media/preview/demos/demo18/source/dark-rtl.png b/public/media/preview/demos/demo18/source/dark-rtl.png new file mode 100644 index 0000000..df56887 Binary files /dev/null and b/public/media/preview/demos/demo18/source/dark-rtl.png differ diff --git a/public/media/preview/demos/demo18/source/light-ltr.png b/public/media/preview/demos/demo18/source/light-ltr.png new file mode 100644 index 0000000..db51607 Binary files /dev/null and b/public/media/preview/demos/demo18/source/light-ltr.png differ diff --git a/public/media/preview/demos/demo18/source/light-rtl.png b/public/media/preview/demos/demo18/source/light-rtl.png new file mode 100644 index 0000000..4052af0 Binary files /dev/null and b/public/media/preview/demos/demo18/source/light-rtl.png differ diff --git a/public/media/preview/demos/demo19/dark-ltr.png b/public/media/preview/demos/demo19/dark-ltr.png new file mode 100644 index 0000000..6a2ee9a Binary files /dev/null and b/public/media/preview/demos/demo19/dark-ltr.png differ diff --git a/public/media/preview/demos/demo19/dark-rtl.png b/public/media/preview/demos/demo19/dark-rtl.png new file mode 100644 index 0000000..bbd17d3 Binary files /dev/null and b/public/media/preview/demos/demo19/dark-rtl.png differ diff --git a/public/media/preview/demos/demo19/light-ltr.png b/public/media/preview/demos/demo19/light-ltr.png new file mode 100644 index 0000000..a2b3627 Binary files /dev/null and b/public/media/preview/demos/demo19/light-ltr.png differ diff --git a/public/media/preview/demos/demo19/light-rtl.png b/public/media/preview/demos/demo19/light-rtl.png new file mode 100644 index 0000000..d543561 Binary files /dev/null and b/public/media/preview/demos/demo19/light-rtl.png differ diff --git a/public/media/preview/demos/demo2/dark-ltr.png b/public/media/preview/demos/demo2/dark-ltr.png new file mode 100644 index 0000000..9e4e4b4 Binary files /dev/null and b/public/media/preview/demos/demo2/dark-ltr.png differ diff --git a/public/media/preview/demos/demo2/dark-rtl.png b/public/media/preview/demos/demo2/dark-rtl.png new file mode 100644 index 0000000..89cb444 Binary files /dev/null and b/public/media/preview/demos/demo2/dark-rtl.png differ diff --git a/public/media/preview/demos/demo2/light-ltr.png b/public/media/preview/demos/demo2/light-ltr.png new file mode 100644 index 0000000..da357a6 Binary files /dev/null and b/public/media/preview/demos/demo2/light-ltr.png differ diff --git a/public/media/preview/demos/demo2/light-rtl.png b/public/media/preview/demos/demo2/light-rtl.png new file mode 100644 index 0000000..6a7cd35 Binary files /dev/null and b/public/media/preview/demos/demo2/light-rtl.png differ diff --git a/public/media/preview/demos/demo20/bk/dark-ltr.png b/public/media/preview/demos/demo20/bk/dark-ltr.png new file mode 100644 index 0000000..dd4271c Binary files /dev/null and b/public/media/preview/demos/demo20/bk/dark-ltr.png differ diff --git a/public/media/preview/demos/demo20/bk/dark-rtl.png b/public/media/preview/demos/demo20/bk/dark-rtl.png new file mode 100644 index 0000000..0bf59c1 Binary files /dev/null and b/public/media/preview/demos/demo20/bk/dark-rtl.png differ diff --git a/public/media/preview/demos/demo20/bk/light-ltr.png b/public/media/preview/demos/demo20/bk/light-ltr.png new file mode 100644 index 0000000..4b310a3 Binary files /dev/null and b/public/media/preview/demos/demo20/bk/light-ltr.png differ diff --git a/public/media/preview/demos/demo20/bk/light-rtl.png b/public/media/preview/demos/demo20/bk/light-rtl.png new file mode 100644 index 0000000..fd93c54 Binary files /dev/null and b/public/media/preview/demos/demo20/bk/light-rtl.png differ diff --git a/public/media/preview/demos/demo20/dark-ltr.png b/public/media/preview/demos/demo20/dark-ltr.png new file mode 100644 index 0000000..6dba866 Binary files /dev/null and b/public/media/preview/demos/demo20/dark-ltr.png differ diff --git a/public/media/preview/demos/demo20/dark-rtl.png b/public/media/preview/demos/demo20/dark-rtl.png new file mode 100644 index 0000000..c3a4da8 Binary files /dev/null and b/public/media/preview/demos/demo20/dark-rtl.png differ diff --git a/public/media/preview/demos/demo20/light-ltr.png b/public/media/preview/demos/demo20/light-ltr.png new file mode 100644 index 0000000..885f04f Binary files /dev/null and b/public/media/preview/demos/demo20/light-ltr.png differ diff --git a/public/media/preview/demos/demo20/light-rtl.png b/public/media/preview/demos/demo20/light-rtl.png new file mode 100644 index 0000000..68125f5 Binary files /dev/null and b/public/media/preview/demos/demo20/light-rtl.png differ diff --git a/public/media/preview/demos/demo20/source/dark-ltr.png b/public/media/preview/demos/demo20/source/dark-ltr.png new file mode 100644 index 0000000..3a1f02b Binary files /dev/null and b/public/media/preview/demos/demo20/source/dark-ltr.png differ diff --git a/public/media/preview/demos/demo20/source/dark-rtl.png b/public/media/preview/demos/demo20/source/dark-rtl.png new file mode 100644 index 0000000..1803724 Binary files /dev/null and b/public/media/preview/demos/demo20/source/dark-rtl.png differ diff --git a/public/media/preview/demos/demo20/source/light-ltr.png b/public/media/preview/demos/demo20/source/light-ltr.png new file mode 100644 index 0000000..1908db6 Binary files /dev/null and b/public/media/preview/demos/demo20/source/light-ltr.png differ diff --git a/public/media/preview/demos/demo20/source/light-rtl.png b/public/media/preview/demos/demo20/source/light-rtl.png new file mode 100644 index 0000000..3146930 Binary files /dev/null and b/public/media/preview/demos/demo20/source/light-rtl.png differ diff --git a/public/media/preview/demos/demo21/bk/dark-ltr.png b/public/media/preview/demos/demo21/bk/dark-ltr.png new file mode 100644 index 0000000..6aa72f9 Binary files /dev/null and b/public/media/preview/demos/demo21/bk/dark-ltr.png differ diff --git a/public/media/preview/demos/demo21/bk/dark-rtl.png b/public/media/preview/demos/demo21/bk/dark-rtl.png new file mode 100644 index 0000000..6fedeac Binary files /dev/null and b/public/media/preview/demos/demo21/bk/dark-rtl.png differ diff --git a/public/media/preview/demos/demo21/bk/light-ltr.png b/public/media/preview/demos/demo21/bk/light-ltr.png new file mode 100644 index 0000000..c49d895 Binary files /dev/null and b/public/media/preview/demos/demo21/bk/light-ltr.png differ diff --git a/public/media/preview/demos/demo21/bk/light-rtl.png b/public/media/preview/demos/demo21/bk/light-rtl.png new file mode 100644 index 0000000..76cd16a Binary files /dev/null and b/public/media/preview/demos/demo21/bk/light-rtl.png differ diff --git a/public/media/preview/demos/demo21/dark-ltr.png b/public/media/preview/demos/demo21/dark-ltr.png new file mode 100644 index 0000000..dc87e74 Binary files /dev/null and b/public/media/preview/demos/demo21/dark-ltr.png differ diff --git a/public/media/preview/demos/demo21/dark-rtl.png b/public/media/preview/demos/demo21/dark-rtl.png new file mode 100644 index 0000000..ae51d7e Binary files /dev/null and b/public/media/preview/demos/demo21/dark-rtl.png differ diff --git a/public/media/preview/demos/demo21/light-ltr.png b/public/media/preview/demos/demo21/light-ltr.png new file mode 100644 index 0000000..81f8122 Binary files /dev/null and b/public/media/preview/demos/demo21/light-ltr.png differ diff --git a/public/media/preview/demos/demo21/light-rtl.png b/public/media/preview/demos/demo21/light-rtl.png new file mode 100644 index 0000000..007231c Binary files /dev/null and b/public/media/preview/demos/demo21/light-rtl.png differ diff --git a/public/media/preview/demos/demo21/source/dark-ltr.png b/public/media/preview/demos/demo21/source/dark-ltr.png new file mode 100644 index 0000000..383859c Binary files /dev/null and b/public/media/preview/demos/demo21/source/dark-ltr.png differ diff --git a/public/media/preview/demos/demo21/source/dark-rtl.png b/public/media/preview/demos/demo21/source/dark-rtl.png new file mode 100644 index 0000000..695091f Binary files /dev/null and b/public/media/preview/demos/demo21/source/dark-rtl.png differ diff --git a/public/media/preview/demos/demo21/source/light-ltr.png b/public/media/preview/demos/demo21/source/light-ltr.png new file mode 100644 index 0000000..e44f26e Binary files /dev/null and b/public/media/preview/demos/demo21/source/light-ltr.png differ diff --git a/public/media/preview/demos/demo21/source/light-rtl.png b/public/media/preview/demos/demo21/source/light-rtl.png new file mode 100644 index 0000000..f3157ee Binary files /dev/null and b/public/media/preview/demos/demo21/source/light-rtl.png differ diff --git a/public/media/preview/demos/demo22/bk/dark-ltr.png b/public/media/preview/demos/demo22/bk/dark-ltr.png new file mode 100644 index 0000000..bf40bfe Binary files /dev/null and b/public/media/preview/demos/demo22/bk/dark-ltr.png differ diff --git a/public/media/preview/demos/demo22/bk/dark-rtl.png b/public/media/preview/demos/demo22/bk/dark-rtl.png new file mode 100644 index 0000000..8e113c3 Binary files /dev/null and b/public/media/preview/demos/demo22/bk/dark-rtl.png differ diff --git a/public/media/preview/demos/demo22/bk/light-ltr.png b/public/media/preview/demos/demo22/bk/light-ltr.png new file mode 100644 index 0000000..5c3eb0e Binary files /dev/null and b/public/media/preview/demos/demo22/bk/light-ltr.png differ diff --git a/public/media/preview/demos/demo22/bk/light-rtl.png b/public/media/preview/demos/demo22/bk/light-rtl.png new file mode 100644 index 0000000..17ac489 Binary files /dev/null and b/public/media/preview/demos/demo22/bk/light-rtl.png differ diff --git a/public/media/preview/demos/demo22/dark-ltr.png b/public/media/preview/demos/demo22/dark-ltr.png new file mode 100644 index 0000000..c215e1b Binary files /dev/null and b/public/media/preview/demos/demo22/dark-ltr.png differ diff --git a/public/media/preview/demos/demo22/dark-rtl.png b/public/media/preview/demos/demo22/dark-rtl.png new file mode 100644 index 0000000..7a7fb1e Binary files /dev/null and b/public/media/preview/demos/demo22/dark-rtl.png differ diff --git a/public/media/preview/demos/demo22/light-ltr.png b/public/media/preview/demos/demo22/light-ltr.png new file mode 100644 index 0000000..8405de7 Binary files /dev/null and b/public/media/preview/demos/demo22/light-ltr.png differ diff --git a/public/media/preview/demos/demo22/light-rtl.png b/public/media/preview/demos/demo22/light-rtl.png new file mode 100644 index 0000000..cbb66fe Binary files /dev/null and b/public/media/preview/demos/demo22/light-rtl.png differ diff --git a/public/media/preview/demos/demo22/source/dark-ltr.png b/public/media/preview/demos/demo22/source/dark-ltr.png new file mode 100644 index 0000000..695d060 Binary files /dev/null and b/public/media/preview/demos/demo22/source/dark-ltr.png differ diff --git a/public/media/preview/demos/demo22/source/dark-rtl.png b/public/media/preview/demos/demo22/source/dark-rtl.png new file mode 100644 index 0000000..24fb929 Binary files /dev/null and b/public/media/preview/demos/demo22/source/dark-rtl.png differ diff --git a/public/media/preview/demos/demo22/source/light-ltr.png b/public/media/preview/demos/demo22/source/light-ltr.png new file mode 100644 index 0000000..26fc615 Binary files /dev/null and b/public/media/preview/demos/demo22/source/light-ltr.png differ diff --git a/public/media/preview/demos/demo22/source/light-rtl.png b/public/media/preview/demos/demo22/source/light-rtl.png new file mode 100644 index 0000000..ddb4efa Binary files /dev/null and b/public/media/preview/demos/demo22/source/light-rtl.png differ diff --git a/public/media/preview/demos/demo23/bk/dark-ltr.png b/public/media/preview/demos/demo23/bk/dark-ltr.png new file mode 100644 index 0000000..8539ef1 Binary files /dev/null and b/public/media/preview/demos/demo23/bk/dark-ltr.png differ diff --git a/public/media/preview/demos/demo23/bk/dark-rtl.png b/public/media/preview/demos/demo23/bk/dark-rtl.png new file mode 100644 index 0000000..a4d910f Binary files /dev/null and b/public/media/preview/demos/demo23/bk/dark-rtl.png differ diff --git a/public/media/preview/demos/demo23/bk/light-ltr.png b/public/media/preview/demos/demo23/bk/light-ltr.png new file mode 100644 index 0000000..74dbe3a Binary files /dev/null and b/public/media/preview/demos/demo23/bk/light-ltr.png differ diff --git a/public/media/preview/demos/demo23/bk/light-rtl.png b/public/media/preview/demos/demo23/bk/light-rtl.png new file mode 100644 index 0000000..97fa2ba Binary files /dev/null and b/public/media/preview/demos/demo23/bk/light-rtl.png differ diff --git a/public/media/preview/demos/demo23/dark-ltr.png b/public/media/preview/demos/demo23/dark-ltr.png new file mode 100644 index 0000000..ba7d7ae Binary files /dev/null and b/public/media/preview/demos/demo23/dark-ltr.png differ diff --git a/public/media/preview/demos/demo23/dark-rtl.png b/public/media/preview/demos/demo23/dark-rtl.png new file mode 100644 index 0000000..1915965 Binary files /dev/null and b/public/media/preview/demos/demo23/dark-rtl.png differ diff --git a/public/media/preview/demos/demo23/light-ltr.png b/public/media/preview/demos/demo23/light-ltr.png new file mode 100644 index 0000000..fd24725 Binary files /dev/null and b/public/media/preview/demos/demo23/light-ltr.png differ diff --git a/public/media/preview/demos/demo23/light-rtl.png b/public/media/preview/demos/demo23/light-rtl.png new file mode 100644 index 0000000..dd9b092 Binary files /dev/null and b/public/media/preview/demos/demo23/light-rtl.png differ diff --git a/public/media/preview/demos/demo23/source/dark-ltr.png b/public/media/preview/demos/demo23/source/dark-ltr.png new file mode 100644 index 0000000..caad40b Binary files /dev/null and b/public/media/preview/demos/demo23/source/dark-ltr.png differ diff --git a/public/media/preview/demos/demo23/source/dark-rtl.png b/public/media/preview/demos/demo23/source/dark-rtl.png new file mode 100644 index 0000000..4a16a4e Binary files /dev/null and b/public/media/preview/demos/demo23/source/dark-rtl.png differ diff --git a/public/media/preview/demos/demo23/source/light-ltr.png b/public/media/preview/demos/demo23/source/light-ltr.png new file mode 100644 index 0000000..b26e75c Binary files /dev/null and b/public/media/preview/demos/demo23/source/light-ltr.png differ diff --git a/public/media/preview/demos/demo23/source/light-rtl.png b/public/media/preview/demos/demo23/source/light-rtl.png new file mode 100644 index 0000000..db07fc6 Binary files /dev/null and b/public/media/preview/demos/demo23/source/light-rtl.png differ diff --git a/public/media/preview/demos/demo24/bk/dark-ltr.png b/public/media/preview/demos/demo24/bk/dark-ltr.png new file mode 100644 index 0000000..02892e3 Binary files /dev/null and b/public/media/preview/demos/demo24/bk/dark-ltr.png differ diff --git a/public/media/preview/demos/demo24/bk/dark-rtl.png b/public/media/preview/demos/demo24/bk/dark-rtl.png new file mode 100644 index 0000000..a101cb1 Binary files /dev/null and b/public/media/preview/demos/demo24/bk/dark-rtl.png differ diff --git a/public/media/preview/demos/demo24/bk/light-ltr.png b/public/media/preview/demos/demo24/bk/light-ltr.png new file mode 100644 index 0000000..02b665f Binary files /dev/null and b/public/media/preview/demos/demo24/bk/light-ltr.png differ diff --git a/public/media/preview/demos/demo24/bk/light-rtl.png b/public/media/preview/demos/demo24/bk/light-rtl.png new file mode 100644 index 0000000..17b5ef6 Binary files /dev/null and b/public/media/preview/demos/demo24/bk/light-rtl.png differ diff --git a/public/media/preview/demos/demo24/dark-ltr.png b/public/media/preview/demos/demo24/dark-ltr.png new file mode 100644 index 0000000..11066ad Binary files /dev/null and b/public/media/preview/demos/demo24/dark-ltr.png differ diff --git a/public/media/preview/demos/demo24/dark-rtl.png b/public/media/preview/demos/demo24/dark-rtl.png new file mode 100644 index 0000000..2be0983 Binary files /dev/null and b/public/media/preview/demos/demo24/dark-rtl.png differ diff --git a/public/media/preview/demos/demo24/light-ltr.png b/public/media/preview/demos/demo24/light-ltr.png new file mode 100644 index 0000000..1d4155c Binary files /dev/null and b/public/media/preview/demos/demo24/light-ltr.png differ diff --git a/public/media/preview/demos/demo24/light-rtl.png b/public/media/preview/demos/demo24/light-rtl.png new file mode 100644 index 0000000..54b4741 Binary files /dev/null and b/public/media/preview/demos/demo24/light-rtl.png differ diff --git a/public/media/preview/demos/demo24/source/dark-ltr.png b/public/media/preview/demos/demo24/source/dark-ltr.png new file mode 100644 index 0000000..db4b170 Binary files /dev/null and b/public/media/preview/demos/demo24/source/dark-ltr.png differ diff --git a/public/media/preview/demos/demo24/source/dark-rtl.png b/public/media/preview/demos/demo24/source/dark-rtl.png new file mode 100644 index 0000000..1751b69 Binary files /dev/null and b/public/media/preview/demos/demo24/source/dark-rtl.png differ diff --git a/public/media/preview/demos/demo24/source/light-lrt.png b/public/media/preview/demos/demo24/source/light-lrt.png new file mode 100644 index 0000000..570e73f Binary files /dev/null and b/public/media/preview/demos/demo24/source/light-lrt.png differ diff --git a/public/media/preview/demos/demo24/source/light-rtl.png b/public/media/preview/demos/demo24/source/light-rtl.png new file mode 100644 index 0000000..71a1404 Binary files /dev/null and b/public/media/preview/demos/demo24/source/light-rtl.png differ diff --git a/public/media/preview/demos/demo25/dark-ltr.png b/public/media/preview/demos/demo25/dark-ltr.png new file mode 100644 index 0000000..2766f64 Binary files /dev/null and b/public/media/preview/demos/demo25/dark-ltr.png differ diff --git a/public/media/preview/demos/demo25/dark-rtl.png b/public/media/preview/demos/demo25/dark-rtl.png new file mode 100644 index 0000000..aaff780 Binary files /dev/null and b/public/media/preview/demos/demo25/dark-rtl.png differ diff --git a/public/media/preview/demos/demo25/light-ltr.png b/public/media/preview/demos/demo25/light-ltr.png new file mode 100644 index 0000000..c03bf80 Binary files /dev/null and b/public/media/preview/demos/demo25/light-ltr.png differ diff --git a/public/media/preview/demos/demo25/light-rtl.png b/public/media/preview/demos/demo25/light-rtl.png new file mode 100644 index 0000000..d977224 Binary files /dev/null and b/public/media/preview/demos/demo25/light-rtl.png differ diff --git a/public/media/preview/demos/demo26/dark-ltr.png b/public/media/preview/demos/demo26/dark-ltr.png new file mode 100644 index 0000000..57386cc Binary files /dev/null and b/public/media/preview/demos/demo26/dark-ltr.png differ diff --git a/public/media/preview/demos/demo26/dark-rtl.png b/public/media/preview/demos/demo26/dark-rtl.png new file mode 100644 index 0000000..6eb7ce9 Binary files /dev/null and b/public/media/preview/demos/demo26/dark-rtl.png differ diff --git a/public/media/preview/demos/demo26/light-ltr.png b/public/media/preview/demos/demo26/light-ltr.png new file mode 100644 index 0000000..220620d Binary files /dev/null and b/public/media/preview/demos/demo26/light-ltr.png differ diff --git a/public/media/preview/demos/demo26/light-rtl.png b/public/media/preview/demos/demo26/light-rtl.png new file mode 100644 index 0000000..c57a76a Binary files /dev/null and b/public/media/preview/demos/demo26/light-rtl.png differ diff --git a/public/media/preview/demos/demo27/dark-ltr.png b/public/media/preview/demos/demo27/dark-ltr.png new file mode 100644 index 0000000..1f0f357 Binary files /dev/null and b/public/media/preview/demos/demo27/dark-ltr.png differ diff --git a/public/media/preview/demos/demo27/dark-rtl.png b/public/media/preview/demos/demo27/dark-rtl.png new file mode 100644 index 0000000..478fafc Binary files /dev/null and b/public/media/preview/demos/demo27/dark-rtl.png differ diff --git a/public/media/preview/demos/demo27/light-ltr.png b/public/media/preview/demos/demo27/light-ltr.png new file mode 100644 index 0000000..ab15843 Binary files /dev/null and b/public/media/preview/demos/demo27/light-ltr.png differ diff --git a/public/media/preview/demos/demo27/light-rtl.png b/public/media/preview/demos/demo27/light-rtl.png new file mode 100644 index 0000000..fc06314 Binary files /dev/null and b/public/media/preview/demos/demo27/light-rtl.png differ diff --git a/public/media/preview/demos/demo28/dark-ltr.png b/public/media/preview/demos/demo28/dark-ltr.png new file mode 100644 index 0000000..79cc2de Binary files /dev/null and b/public/media/preview/demos/demo28/dark-ltr.png differ diff --git a/public/media/preview/demos/demo28/dark-rtl.png b/public/media/preview/demos/demo28/dark-rtl.png new file mode 100644 index 0000000..bf20f7d Binary files /dev/null and b/public/media/preview/demos/demo28/dark-rtl.png differ diff --git a/public/media/preview/demos/demo28/light-ltr.png b/public/media/preview/demos/demo28/light-ltr.png new file mode 100644 index 0000000..6e3197c Binary files /dev/null and b/public/media/preview/demos/demo28/light-ltr.png differ diff --git a/public/media/preview/demos/demo28/light-rtl.png b/public/media/preview/demos/demo28/light-rtl.png new file mode 100644 index 0000000..6df8171 Binary files /dev/null and b/public/media/preview/demos/demo28/light-rtl.png differ diff --git a/public/media/preview/demos/demo29/dark-ltr.png b/public/media/preview/demos/demo29/dark-ltr.png new file mode 100644 index 0000000..81536a5 Binary files /dev/null and b/public/media/preview/demos/demo29/dark-ltr.png differ diff --git a/public/media/preview/demos/demo29/dark-rtl.png b/public/media/preview/demos/demo29/dark-rtl.png new file mode 100644 index 0000000..fbc33c7 Binary files /dev/null and b/public/media/preview/demos/demo29/dark-rtl.png differ diff --git a/public/media/preview/demos/demo29/light-ltr.png b/public/media/preview/demos/demo29/light-ltr.png new file mode 100644 index 0000000..23a93c7 Binary files /dev/null and b/public/media/preview/demos/demo29/light-ltr.png differ diff --git a/public/media/preview/demos/demo29/light-rtl.png b/public/media/preview/demos/demo29/light-rtl.png new file mode 100644 index 0000000..f06f709 Binary files /dev/null and b/public/media/preview/demos/demo29/light-rtl.png differ diff --git a/public/media/preview/demos/demo3/dark-ltr.png b/public/media/preview/demos/demo3/dark-ltr.png new file mode 100644 index 0000000..84ab7f2 Binary files /dev/null and b/public/media/preview/demos/demo3/dark-ltr.png differ diff --git a/public/media/preview/demos/demo3/dark-rtl.png b/public/media/preview/demos/demo3/dark-rtl.png new file mode 100644 index 0000000..d2e4d6d Binary files /dev/null and b/public/media/preview/demos/demo3/dark-rtl.png differ diff --git a/public/media/preview/demos/demo3/light-ltr.png b/public/media/preview/demos/demo3/light-ltr.png new file mode 100644 index 0000000..74188dc Binary files /dev/null and b/public/media/preview/demos/demo3/light-ltr.png differ diff --git a/public/media/preview/demos/demo3/light-rtl.png b/public/media/preview/demos/demo3/light-rtl.png new file mode 100644 index 0000000..d5def8d Binary files /dev/null and b/public/media/preview/demos/demo3/light-rtl.png differ diff --git a/public/media/preview/demos/demo30/dark-ltr.png b/public/media/preview/demos/demo30/dark-ltr.png new file mode 100644 index 0000000..61b2043 Binary files /dev/null and b/public/media/preview/demos/demo30/dark-ltr.png differ diff --git a/public/media/preview/demos/demo30/dark-rtl.png b/public/media/preview/demos/demo30/dark-rtl.png new file mode 100644 index 0000000..77f030a Binary files /dev/null and b/public/media/preview/demos/demo30/dark-rtl.png differ diff --git a/public/media/preview/demos/demo30/light-ltr.png b/public/media/preview/demos/demo30/light-ltr.png new file mode 100644 index 0000000..1e9de7a Binary files /dev/null and b/public/media/preview/demos/demo30/light-ltr.png differ diff --git a/public/media/preview/demos/demo30/light-rtl.png b/public/media/preview/demos/demo30/light-rtl.png new file mode 100644 index 0000000..d564710 Binary files /dev/null and b/public/media/preview/demos/demo30/light-rtl.png differ diff --git a/public/media/preview/demos/demo31/dark-ltr.png b/public/media/preview/demos/demo31/dark-ltr.png new file mode 100644 index 0000000..7c125ad Binary files /dev/null and b/public/media/preview/demos/demo31/dark-ltr.png differ diff --git a/public/media/preview/demos/demo31/dark-rtl.png b/public/media/preview/demos/demo31/dark-rtl.png new file mode 100644 index 0000000..43b28fd Binary files /dev/null and b/public/media/preview/demos/demo31/dark-rtl.png differ diff --git a/public/media/preview/demos/demo31/light-ltr.png b/public/media/preview/demos/demo31/light-ltr.png new file mode 100644 index 0000000..b155906 Binary files /dev/null and b/public/media/preview/demos/demo31/light-ltr.png differ diff --git a/public/media/preview/demos/demo31/light-rtl.png b/public/media/preview/demos/demo31/light-rtl.png new file mode 100644 index 0000000..dd81e7d Binary files /dev/null and b/public/media/preview/demos/demo31/light-rtl.png differ diff --git a/public/media/preview/demos/demo32/dark-ltr.png b/public/media/preview/demos/demo32/dark-ltr.png new file mode 100644 index 0000000..2f6d6be Binary files /dev/null and b/public/media/preview/demos/demo32/dark-ltr.png differ diff --git a/public/media/preview/demos/demo32/dark-rtl.png b/public/media/preview/demos/demo32/dark-rtl.png new file mode 100644 index 0000000..10e31db Binary files /dev/null and b/public/media/preview/demos/demo32/dark-rtl.png differ diff --git a/public/media/preview/demos/demo32/light-ltr.png b/public/media/preview/demos/demo32/light-ltr.png new file mode 100644 index 0000000..c0833e2 Binary files /dev/null and b/public/media/preview/demos/demo32/light-ltr.png differ diff --git a/public/media/preview/demos/demo32/light-rtl.png b/public/media/preview/demos/demo32/light-rtl.png new file mode 100644 index 0000000..a0b6b88 Binary files /dev/null and b/public/media/preview/demos/demo32/light-rtl.png differ diff --git a/public/media/preview/demos/demo33/dark-ltr.png b/public/media/preview/demos/demo33/dark-ltr.png new file mode 100644 index 0000000..002df1f Binary files /dev/null and b/public/media/preview/demos/demo33/dark-ltr.png differ diff --git a/public/media/preview/demos/demo33/dark-rtl.png b/public/media/preview/demos/demo33/dark-rtl.png new file mode 100644 index 0000000..1593e79 Binary files /dev/null and b/public/media/preview/demos/demo33/dark-rtl.png differ diff --git a/public/media/preview/demos/demo33/light-ltr.png b/public/media/preview/demos/demo33/light-ltr.png new file mode 100644 index 0000000..357950a Binary files /dev/null and b/public/media/preview/demos/demo33/light-ltr.png differ diff --git a/public/media/preview/demos/demo33/light-rtl.png b/public/media/preview/demos/demo33/light-rtl.png new file mode 100644 index 0000000..db7f03e Binary files /dev/null and b/public/media/preview/demos/demo33/light-rtl.png differ diff --git a/public/media/preview/demos/demo34/dark-ltr.png b/public/media/preview/demos/demo34/dark-ltr.png new file mode 100644 index 0000000..bbd5a44 Binary files /dev/null and b/public/media/preview/demos/demo34/dark-ltr.png differ diff --git a/public/media/preview/demos/demo34/dark-rtl.png b/public/media/preview/demos/demo34/dark-rtl.png new file mode 100644 index 0000000..f496348 Binary files /dev/null and b/public/media/preview/demos/demo34/dark-rtl.png differ diff --git a/public/media/preview/demos/demo34/light-ltr.png b/public/media/preview/demos/demo34/light-ltr.png new file mode 100644 index 0000000..e9c0926 Binary files /dev/null and b/public/media/preview/demos/demo34/light-ltr.png differ diff --git a/public/media/preview/demos/demo34/light-rtl.png b/public/media/preview/demos/demo34/light-rtl.png new file mode 100644 index 0000000..0a1489a Binary files /dev/null and b/public/media/preview/demos/demo34/light-rtl.png differ diff --git a/public/media/preview/demos/demo35/dark-ltr.png b/public/media/preview/demos/demo35/dark-ltr.png new file mode 100644 index 0000000..8c8d7c6 Binary files /dev/null and b/public/media/preview/demos/demo35/dark-ltr.png differ diff --git a/public/media/preview/demos/demo35/dark-rtl.png b/public/media/preview/demos/demo35/dark-rtl.png new file mode 100644 index 0000000..5786be8 Binary files /dev/null and b/public/media/preview/demos/demo35/dark-rtl.png differ diff --git a/public/media/preview/demos/demo35/light-ltr.png b/public/media/preview/demos/demo35/light-ltr.png new file mode 100644 index 0000000..6d91027 Binary files /dev/null and b/public/media/preview/demos/demo35/light-ltr.png differ diff --git a/public/media/preview/demos/demo35/light-rtl.png b/public/media/preview/demos/demo35/light-rtl.png new file mode 100644 index 0000000..6dadefc Binary files /dev/null and b/public/media/preview/demos/demo35/light-rtl.png differ diff --git a/public/media/preview/demos/demo36/dark-ltr.png b/public/media/preview/demos/demo36/dark-ltr.png new file mode 100644 index 0000000..b7b5316 Binary files /dev/null and b/public/media/preview/demos/demo36/dark-ltr.png differ diff --git a/public/media/preview/demos/demo36/dark-rtl.png b/public/media/preview/demos/demo36/dark-rtl.png new file mode 100644 index 0000000..859eae7 Binary files /dev/null and b/public/media/preview/demos/demo36/dark-rtl.png differ diff --git a/public/media/preview/demos/demo36/light-ltr.png b/public/media/preview/demos/demo36/light-ltr.png new file mode 100644 index 0000000..66414d8 Binary files /dev/null and b/public/media/preview/demos/demo36/light-ltr.png differ diff --git a/public/media/preview/demos/demo36/light-rtl.png b/public/media/preview/demos/demo36/light-rtl.png new file mode 100644 index 0000000..fc10d9c Binary files /dev/null and b/public/media/preview/demos/demo36/light-rtl.png differ diff --git a/public/media/preview/demos/demo37/dark-ltr.png b/public/media/preview/demos/demo37/dark-ltr.png new file mode 100644 index 0000000..3a7193f Binary files /dev/null and b/public/media/preview/demos/demo37/dark-ltr.png differ diff --git a/public/media/preview/demos/demo37/dark-rtl.png b/public/media/preview/demos/demo37/dark-rtl.png new file mode 100644 index 0000000..3d16b56 Binary files /dev/null and b/public/media/preview/demos/demo37/dark-rtl.png differ diff --git a/public/media/preview/demos/demo37/light-ltr.png b/public/media/preview/demos/demo37/light-ltr.png new file mode 100644 index 0000000..e71b39f Binary files /dev/null and b/public/media/preview/demos/demo37/light-ltr.png differ diff --git a/public/media/preview/demos/demo37/light-rtl.png b/public/media/preview/demos/demo37/light-rtl.png new file mode 100644 index 0000000..7413d56 Binary files /dev/null and b/public/media/preview/demos/demo37/light-rtl.png differ diff --git a/public/media/preview/demos/demo38/dark-ltr.png b/public/media/preview/demos/demo38/dark-ltr.png new file mode 100644 index 0000000..08deb8c Binary files /dev/null and b/public/media/preview/demos/demo38/dark-ltr.png differ diff --git a/public/media/preview/demos/demo38/dark-rtl.png b/public/media/preview/demos/demo38/dark-rtl.png new file mode 100644 index 0000000..9b8da5b Binary files /dev/null and b/public/media/preview/demos/demo38/dark-rtl.png differ diff --git a/public/media/preview/demos/demo38/light-ltr.png b/public/media/preview/demos/demo38/light-ltr.png new file mode 100644 index 0000000..e6b6e0c Binary files /dev/null and b/public/media/preview/demos/demo38/light-ltr.png differ diff --git a/public/media/preview/demos/demo38/light-rtl.png b/public/media/preview/demos/demo38/light-rtl.png new file mode 100644 index 0000000..102889d Binary files /dev/null and b/public/media/preview/demos/demo38/light-rtl.png differ diff --git a/public/media/preview/demos/demo39/dark-ltr.png b/public/media/preview/demos/demo39/dark-ltr.png new file mode 100644 index 0000000..e26e148 Binary files /dev/null and b/public/media/preview/demos/demo39/dark-ltr.png differ diff --git a/public/media/preview/demos/demo39/dark-rtl.png b/public/media/preview/demos/demo39/dark-rtl.png new file mode 100644 index 0000000..22056aa Binary files /dev/null and b/public/media/preview/demos/demo39/dark-rtl.png differ diff --git a/public/media/preview/demos/demo39/light-ltr.png b/public/media/preview/demos/demo39/light-ltr.png new file mode 100644 index 0000000..25f6b99 Binary files /dev/null and b/public/media/preview/demos/demo39/light-ltr.png differ diff --git a/public/media/preview/demos/demo39/light-rtl.png b/public/media/preview/demos/demo39/light-rtl.png new file mode 100644 index 0000000..83a694f Binary files /dev/null and b/public/media/preview/demos/demo39/light-rtl.png differ diff --git a/public/media/preview/demos/demo4/dark-ltr.png b/public/media/preview/demos/demo4/dark-ltr.png new file mode 100644 index 0000000..7038070 Binary files /dev/null and b/public/media/preview/demos/demo4/dark-ltr.png differ diff --git a/public/media/preview/demos/demo4/dark-rtl.png b/public/media/preview/demos/demo4/dark-rtl.png new file mode 100644 index 0000000..43e5ad4 Binary files /dev/null and b/public/media/preview/demos/demo4/dark-rtl.png differ diff --git a/public/media/preview/demos/demo4/light-ltr.png b/public/media/preview/demos/demo4/light-ltr.png new file mode 100644 index 0000000..012bcd9 Binary files /dev/null and b/public/media/preview/demos/demo4/light-ltr.png differ diff --git a/public/media/preview/demos/demo4/light-rtl.png b/public/media/preview/demos/demo4/light-rtl.png new file mode 100644 index 0000000..42375df Binary files /dev/null and b/public/media/preview/demos/demo4/light-rtl.png differ diff --git a/public/media/preview/demos/demo40/dark-ltr.png b/public/media/preview/demos/demo40/dark-ltr.png new file mode 100644 index 0000000..d846158 Binary files /dev/null and b/public/media/preview/demos/demo40/dark-ltr.png differ diff --git a/public/media/preview/demos/demo40/dark-rtl.png b/public/media/preview/demos/demo40/dark-rtl.png new file mode 100644 index 0000000..9e788ee Binary files /dev/null and b/public/media/preview/demos/demo40/dark-rtl.png differ diff --git a/public/media/preview/demos/demo40/light-ltr.png b/public/media/preview/demos/demo40/light-ltr.png new file mode 100644 index 0000000..c055d89 Binary files /dev/null and b/public/media/preview/demos/demo40/light-ltr.png differ diff --git a/public/media/preview/demos/demo40/light-rtl.png b/public/media/preview/demos/demo40/light-rtl.png new file mode 100644 index 0000000..b4a9557 Binary files /dev/null and b/public/media/preview/demos/demo40/light-rtl.png differ diff --git a/public/media/preview/demos/demo41/dark-ltr.png b/public/media/preview/demos/demo41/dark-ltr.png new file mode 100644 index 0000000..6bfb86f Binary files /dev/null and b/public/media/preview/demos/demo41/dark-ltr.png differ diff --git a/public/media/preview/demos/demo41/dark-rtl.png b/public/media/preview/demos/demo41/dark-rtl.png new file mode 100644 index 0000000..2432b11 Binary files /dev/null and b/public/media/preview/demos/demo41/dark-rtl.png differ diff --git a/public/media/preview/demos/demo41/light-ltr.png b/public/media/preview/demos/demo41/light-ltr.png new file mode 100644 index 0000000..da92777 Binary files /dev/null and b/public/media/preview/demos/demo41/light-ltr.png differ diff --git a/public/media/preview/demos/demo41/light-rtl.png b/public/media/preview/demos/demo41/light-rtl.png new file mode 100644 index 0000000..e085b8f Binary files /dev/null and b/public/media/preview/demos/demo41/light-rtl.png differ diff --git a/public/media/preview/demos/demo42/dark-ltr.png b/public/media/preview/demos/demo42/dark-ltr.png new file mode 100644 index 0000000..ac927f5 Binary files /dev/null and b/public/media/preview/demos/demo42/dark-ltr.png differ diff --git a/public/media/preview/demos/demo42/dark-rtl.png b/public/media/preview/demos/demo42/dark-rtl.png new file mode 100644 index 0000000..a097ce9 Binary files /dev/null and b/public/media/preview/demos/demo42/dark-rtl.png differ diff --git a/public/media/preview/demos/demo42/light-ltr.png b/public/media/preview/demos/demo42/light-ltr.png new file mode 100644 index 0000000..c1912d2 Binary files /dev/null and b/public/media/preview/demos/demo42/light-ltr.png differ diff --git a/public/media/preview/demos/demo42/light-rtl.png b/public/media/preview/demos/demo42/light-rtl.png new file mode 100644 index 0000000..fd94420 Binary files /dev/null and b/public/media/preview/demos/demo42/light-rtl.png differ diff --git a/public/media/preview/demos/demo43/dark-ltr.png b/public/media/preview/demos/demo43/dark-ltr.png new file mode 100644 index 0000000..df8abb9 Binary files /dev/null and b/public/media/preview/demos/demo43/dark-ltr.png differ diff --git a/public/media/preview/demos/demo43/dark-rtl.png b/public/media/preview/demos/demo43/dark-rtl.png new file mode 100644 index 0000000..a5e4a72 Binary files /dev/null and b/public/media/preview/demos/demo43/dark-rtl.png differ diff --git a/public/media/preview/demos/demo43/light-ltr.png b/public/media/preview/demos/demo43/light-ltr.png new file mode 100644 index 0000000..52bf765 Binary files /dev/null and b/public/media/preview/demos/demo43/light-ltr.png differ diff --git a/public/media/preview/demos/demo43/light-rtl.png b/public/media/preview/demos/demo43/light-rtl.png new file mode 100644 index 0000000..36a59fc Binary files /dev/null and b/public/media/preview/demos/demo43/light-rtl.png differ diff --git a/public/media/preview/demos/demo44/dark-ltr.png b/public/media/preview/demos/demo44/dark-ltr.png new file mode 100644 index 0000000..ad3720b Binary files /dev/null and b/public/media/preview/demos/demo44/dark-ltr.png differ diff --git a/public/media/preview/demos/demo44/dark-rtl.png b/public/media/preview/demos/demo44/dark-rtl.png new file mode 100644 index 0000000..f7e5702 Binary files /dev/null and b/public/media/preview/demos/demo44/dark-rtl.png differ diff --git a/public/media/preview/demos/demo44/light-ltr.png b/public/media/preview/demos/demo44/light-ltr.png new file mode 100644 index 0000000..4f1fae7 Binary files /dev/null and b/public/media/preview/demos/demo44/light-ltr.png differ diff --git a/public/media/preview/demos/demo44/light-rtl.png b/public/media/preview/demos/demo44/light-rtl.png new file mode 100644 index 0000000..0102e13 Binary files /dev/null and b/public/media/preview/demos/demo44/light-rtl.png differ diff --git a/public/media/preview/demos/demo45/dark-ltr.png b/public/media/preview/demos/demo45/dark-ltr.png new file mode 100644 index 0000000..7636848 Binary files /dev/null and b/public/media/preview/demos/demo45/dark-ltr.png differ diff --git a/public/media/preview/demos/demo45/dark-rtl.png b/public/media/preview/demos/demo45/dark-rtl.png new file mode 100644 index 0000000..96ad714 Binary files /dev/null and b/public/media/preview/demos/demo45/dark-rtl.png differ diff --git a/public/media/preview/demos/demo45/light-ltr.png b/public/media/preview/demos/demo45/light-ltr.png new file mode 100644 index 0000000..b11f3ec Binary files /dev/null and b/public/media/preview/demos/demo45/light-ltr.png differ diff --git a/public/media/preview/demos/demo45/light-rtl.png b/public/media/preview/demos/demo45/light-rtl.png new file mode 100644 index 0000000..60d9963 Binary files /dev/null and b/public/media/preview/demos/demo45/light-rtl.png differ diff --git a/public/media/preview/demos/demo46/dark-ltr.png b/public/media/preview/demos/demo46/dark-ltr.png new file mode 100644 index 0000000..16e18c5 Binary files /dev/null and b/public/media/preview/demos/demo46/dark-ltr.png differ diff --git a/public/media/preview/demos/demo46/dark-rtl.png b/public/media/preview/demos/demo46/dark-rtl.png new file mode 100644 index 0000000..249ec58 Binary files /dev/null and b/public/media/preview/demos/demo46/dark-rtl.png differ diff --git a/public/media/preview/demos/demo46/light-ltr.png b/public/media/preview/demos/demo46/light-ltr.png new file mode 100644 index 0000000..245f9e7 Binary files /dev/null and b/public/media/preview/demos/demo46/light-ltr.png differ diff --git a/public/media/preview/demos/demo46/light-rtl.png b/public/media/preview/demos/demo46/light-rtl.png new file mode 100644 index 0000000..d96d9c9 Binary files /dev/null and b/public/media/preview/demos/demo46/light-rtl.png differ diff --git a/public/media/preview/demos/demo47/dark-ltr.png b/public/media/preview/demos/demo47/dark-ltr.png new file mode 100644 index 0000000..37b1ea5 Binary files /dev/null and b/public/media/preview/demos/demo47/dark-ltr.png differ diff --git a/public/media/preview/demos/demo47/dark-rtl.png b/public/media/preview/demos/demo47/dark-rtl.png new file mode 100644 index 0000000..57b7fd1 Binary files /dev/null and b/public/media/preview/demos/demo47/dark-rtl.png differ diff --git a/public/media/preview/demos/demo47/light-ltr.png b/public/media/preview/demos/demo47/light-ltr.png new file mode 100644 index 0000000..6f9db9d Binary files /dev/null and b/public/media/preview/demos/demo47/light-ltr.png differ diff --git a/public/media/preview/demos/demo47/light-rtl.png b/public/media/preview/demos/demo47/light-rtl.png new file mode 100644 index 0000000..07faa82 Binary files /dev/null and b/public/media/preview/demos/demo47/light-rtl.png differ diff --git a/public/media/preview/demos/demo48/dark-ltr.png b/public/media/preview/demos/demo48/dark-ltr.png new file mode 100644 index 0000000..f010f1c Binary files /dev/null and b/public/media/preview/demos/demo48/dark-ltr.png differ diff --git a/public/media/preview/demos/demo48/dark-rtl.png b/public/media/preview/demos/demo48/dark-rtl.png new file mode 100644 index 0000000..c8d134d Binary files /dev/null and b/public/media/preview/demos/demo48/dark-rtl.png differ diff --git a/public/media/preview/demos/demo48/light-ltr.png b/public/media/preview/demos/demo48/light-ltr.png new file mode 100644 index 0000000..55d00bf Binary files /dev/null and b/public/media/preview/demos/demo48/light-ltr.png differ diff --git a/public/media/preview/demos/demo48/light-rtl.png b/public/media/preview/demos/demo48/light-rtl.png new file mode 100644 index 0000000..e6ea420 Binary files /dev/null and b/public/media/preview/demos/demo48/light-rtl.png differ diff --git a/public/media/preview/demos/demo49/dark-ltr.png b/public/media/preview/demos/demo49/dark-ltr.png new file mode 100644 index 0000000..a6c8d95 Binary files /dev/null and b/public/media/preview/demos/demo49/dark-ltr.png differ diff --git a/public/media/preview/demos/demo49/dark-rtl.png b/public/media/preview/demos/demo49/dark-rtl.png new file mode 100644 index 0000000..7cceefe Binary files /dev/null and b/public/media/preview/demos/demo49/dark-rtl.png differ diff --git a/public/media/preview/demos/demo49/light-ltr.png b/public/media/preview/demos/demo49/light-ltr.png new file mode 100644 index 0000000..a25b41f Binary files /dev/null and b/public/media/preview/demos/demo49/light-ltr.png differ diff --git a/public/media/preview/demos/demo49/light-rtl.png b/public/media/preview/demos/demo49/light-rtl.png new file mode 100644 index 0000000..8a5c4cb Binary files /dev/null and b/public/media/preview/demos/demo49/light-rtl.png differ diff --git a/public/media/preview/demos/demo5/dark-ltr.png b/public/media/preview/demos/demo5/dark-ltr.png new file mode 100644 index 0000000..19bd85a Binary files /dev/null and b/public/media/preview/demos/demo5/dark-ltr.png differ diff --git a/public/media/preview/demos/demo5/dark-rtl.png b/public/media/preview/demos/demo5/dark-rtl.png new file mode 100644 index 0000000..117096e Binary files /dev/null and b/public/media/preview/demos/demo5/dark-rtl.png differ diff --git a/public/media/preview/demos/demo5/light-ltr.png b/public/media/preview/demos/demo5/light-ltr.png new file mode 100644 index 0000000..92c0a78 Binary files /dev/null and b/public/media/preview/demos/demo5/light-ltr.png differ diff --git a/public/media/preview/demos/demo5/light-rtl.png b/public/media/preview/demos/demo5/light-rtl.png new file mode 100644 index 0000000..d56288b Binary files /dev/null and b/public/media/preview/demos/demo5/light-rtl.png differ diff --git a/public/media/preview/demos/demo50/dark-ltr.png b/public/media/preview/demos/demo50/dark-ltr.png new file mode 100644 index 0000000..60b9181 Binary files /dev/null and b/public/media/preview/demos/demo50/dark-ltr.png differ diff --git a/public/media/preview/demos/demo50/dark-rtl.png b/public/media/preview/demos/demo50/dark-rtl.png new file mode 100644 index 0000000..2648535 Binary files /dev/null and b/public/media/preview/demos/demo50/dark-rtl.png differ diff --git a/public/media/preview/demos/demo50/light-ltr.png b/public/media/preview/demos/demo50/light-ltr.png new file mode 100644 index 0000000..922b13c Binary files /dev/null and b/public/media/preview/demos/demo50/light-ltr.png differ diff --git a/public/media/preview/demos/demo50/light-rtl.png b/public/media/preview/demos/demo50/light-rtl.png new file mode 100644 index 0000000..ff58e36 Binary files /dev/null and b/public/media/preview/demos/demo50/light-rtl.png differ diff --git a/public/media/preview/demos/demo51/dark-ltr.png b/public/media/preview/demos/demo51/dark-ltr.png new file mode 100644 index 0000000..8eb3f67 Binary files /dev/null and b/public/media/preview/demos/demo51/dark-ltr.png differ diff --git a/public/media/preview/demos/demo51/dark-rtl.png b/public/media/preview/demos/demo51/dark-rtl.png new file mode 100644 index 0000000..7d57b35 Binary files /dev/null and b/public/media/preview/demos/demo51/dark-rtl.png differ diff --git a/public/media/preview/demos/demo51/light-ltr.png b/public/media/preview/demos/demo51/light-ltr.png new file mode 100644 index 0000000..3ed72e6 Binary files /dev/null and b/public/media/preview/demos/demo51/light-ltr.png differ diff --git a/public/media/preview/demos/demo51/light-rtl.png b/public/media/preview/demos/demo51/light-rtl.png new file mode 100644 index 0000000..733a666 Binary files /dev/null and b/public/media/preview/demos/demo51/light-rtl.png differ diff --git a/public/media/preview/demos/demo52/dark-ltr.png b/public/media/preview/demos/demo52/dark-ltr.png new file mode 100644 index 0000000..98a6e19 Binary files /dev/null and b/public/media/preview/demos/demo52/dark-ltr.png differ diff --git a/public/media/preview/demos/demo52/dark-rtl.png b/public/media/preview/demos/demo52/dark-rtl.png new file mode 100644 index 0000000..a8ca76f Binary files /dev/null and b/public/media/preview/demos/demo52/dark-rtl.png differ diff --git a/public/media/preview/demos/demo52/light-ltr.png b/public/media/preview/demos/demo52/light-ltr.png new file mode 100644 index 0000000..4eab0fe Binary files /dev/null and b/public/media/preview/demos/demo52/light-ltr.png differ diff --git a/public/media/preview/demos/demo52/light-rtl.png b/public/media/preview/demos/demo52/light-rtl.png new file mode 100644 index 0000000..7c3e63b Binary files /dev/null and b/public/media/preview/demos/demo52/light-rtl.png differ diff --git a/public/media/preview/demos/demo53/dark-ltr.png b/public/media/preview/demos/demo53/dark-ltr.png new file mode 100644 index 0000000..8148181 Binary files /dev/null and b/public/media/preview/demos/demo53/dark-ltr.png differ diff --git a/public/media/preview/demos/demo53/dark-rtl.png b/public/media/preview/demos/demo53/dark-rtl.png new file mode 100644 index 0000000..11b0a5b Binary files /dev/null and b/public/media/preview/demos/demo53/dark-rtl.png differ diff --git a/public/media/preview/demos/demo53/light-ltr.png b/public/media/preview/demos/demo53/light-ltr.png new file mode 100644 index 0000000..090e877 Binary files /dev/null and b/public/media/preview/demos/demo53/light-ltr.png differ diff --git a/public/media/preview/demos/demo53/light-rtl.png b/public/media/preview/demos/demo53/light-rtl.png new file mode 100644 index 0000000..274dfbb Binary files /dev/null and b/public/media/preview/demos/demo53/light-rtl.png differ diff --git a/public/media/preview/demos/demo54/dark-ltr.png b/public/media/preview/demos/demo54/dark-ltr.png new file mode 100644 index 0000000..9d09c38 Binary files /dev/null and b/public/media/preview/demos/demo54/dark-ltr.png differ diff --git a/public/media/preview/demos/demo54/dark-rtl.png b/public/media/preview/demos/demo54/dark-rtl.png new file mode 100644 index 0000000..156f9b9 Binary files /dev/null and b/public/media/preview/demos/demo54/dark-rtl.png differ diff --git a/public/media/preview/demos/demo54/light-ltr.png b/public/media/preview/demos/demo54/light-ltr.png new file mode 100644 index 0000000..00cdce9 Binary files /dev/null and b/public/media/preview/demos/demo54/light-ltr.png differ diff --git a/public/media/preview/demos/demo54/light-rtl.png b/public/media/preview/demos/demo54/light-rtl.png new file mode 100644 index 0000000..e8c5d46 Binary files /dev/null and b/public/media/preview/demos/demo54/light-rtl.png differ diff --git a/public/media/preview/demos/demo55/dark-ltr.png b/public/media/preview/demos/demo55/dark-ltr.png new file mode 100644 index 0000000..fdaf8c3 Binary files /dev/null and b/public/media/preview/demos/demo55/dark-ltr.png differ diff --git a/public/media/preview/demos/demo55/dark-rtl.png b/public/media/preview/demos/demo55/dark-rtl.png new file mode 100644 index 0000000..e0c862d Binary files /dev/null and b/public/media/preview/demos/demo55/dark-rtl.png differ diff --git a/public/media/preview/demos/demo55/light-ltr.png b/public/media/preview/demos/demo55/light-ltr.png new file mode 100644 index 0000000..18ffb68 Binary files /dev/null and b/public/media/preview/demos/demo55/light-ltr.png differ diff --git a/public/media/preview/demos/demo55/light-rtl.png b/public/media/preview/demos/demo55/light-rtl.png new file mode 100644 index 0000000..330eb11 Binary files /dev/null and b/public/media/preview/demos/demo55/light-rtl.png differ diff --git a/public/media/preview/demos/demo56/dark-ltr.png b/public/media/preview/demos/demo56/dark-ltr.png new file mode 100644 index 0000000..2e87991 Binary files /dev/null and b/public/media/preview/demos/demo56/dark-ltr.png differ diff --git a/public/media/preview/demos/demo56/dark-rtl.png b/public/media/preview/demos/demo56/dark-rtl.png new file mode 100644 index 0000000..69dd28f Binary files /dev/null and b/public/media/preview/demos/demo56/dark-rtl.png differ diff --git a/public/media/preview/demos/demo56/light-ltr.png b/public/media/preview/demos/demo56/light-ltr.png new file mode 100644 index 0000000..4861797 Binary files /dev/null and b/public/media/preview/demos/demo56/light-ltr.png differ diff --git a/public/media/preview/demos/demo56/light-rtl.png b/public/media/preview/demos/demo56/light-rtl.png new file mode 100644 index 0000000..ea476b1 Binary files /dev/null and b/public/media/preview/demos/demo56/light-rtl.png differ diff --git a/public/media/preview/demos/demo57/dark-ltr.png b/public/media/preview/demos/demo57/dark-ltr.png new file mode 100644 index 0000000..058d991 Binary files /dev/null and b/public/media/preview/demos/demo57/dark-ltr.png differ diff --git a/public/media/preview/demos/demo57/dark-rtl.png b/public/media/preview/demos/demo57/dark-rtl.png new file mode 100644 index 0000000..41e594f Binary files /dev/null and b/public/media/preview/demos/demo57/dark-rtl.png differ diff --git a/public/media/preview/demos/demo57/light-ltr.png b/public/media/preview/demos/demo57/light-ltr.png new file mode 100644 index 0000000..8313460 Binary files /dev/null and b/public/media/preview/demos/demo57/light-ltr.png differ diff --git a/public/media/preview/demos/demo57/light-rtl.png b/public/media/preview/demos/demo57/light-rtl.png new file mode 100644 index 0000000..0c6465f Binary files /dev/null and b/public/media/preview/demos/demo57/light-rtl.png differ diff --git a/public/media/preview/demos/demo58/dark-ltr.png b/public/media/preview/demos/demo58/dark-ltr.png new file mode 100644 index 0000000..64bd986 Binary files /dev/null and b/public/media/preview/demos/demo58/dark-ltr.png differ diff --git a/public/media/preview/demos/demo58/dark-rtl.png b/public/media/preview/demos/demo58/dark-rtl.png new file mode 100644 index 0000000..721ddb4 Binary files /dev/null and b/public/media/preview/demos/demo58/dark-rtl.png differ diff --git a/public/media/preview/demos/demo58/light-ltr.png b/public/media/preview/demos/demo58/light-ltr.png new file mode 100644 index 0000000..dae54b1 Binary files /dev/null and b/public/media/preview/demos/demo58/light-ltr.png differ diff --git a/public/media/preview/demos/demo58/light-rtl.png b/public/media/preview/demos/demo58/light-rtl.png new file mode 100644 index 0000000..3a335c0 Binary files /dev/null and b/public/media/preview/demos/demo58/light-rtl.png differ diff --git a/public/media/preview/demos/demo59/dark-ltr.png b/public/media/preview/demos/demo59/dark-ltr.png new file mode 100644 index 0000000..a97cd59 Binary files /dev/null and b/public/media/preview/demos/demo59/dark-ltr.png differ diff --git a/public/media/preview/demos/demo59/dark-rtl.png b/public/media/preview/demos/demo59/dark-rtl.png new file mode 100644 index 0000000..04ef660 Binary files /dev/null and b/public/media/preview/demos/demo59/dark-rtl.png differ diff --git a/public/media/preview/demos/demo59/light-ltr.png b/public/media/preview/demos/demo59/light-ltr.png new file mode 100644 index 0000000..efcdc6b Binary files /dev/null and b/public/media/preview/demos/demo59/light-ltr.png differ diff --git a/public/media/preview/demos/demo59/light-rtl.png b/public/media/preview/demos/demo59/light-rtl.png new file mode 100644 index 0000000..bb8776a Binary files /dev/null and b/public/media/preview/demos/demo59/light-rtl.png differ diff --git a/public/media/preview/demos/demo6/dark-ltr.png b/public/media/preview/demos/demo6/dark-ltr.png new file mode 100644 index 0000000..53a306d Binary files /dev/null and b/public/media/preview/demos/demo6/dark-ltr.png differ diff --git a/public/media/preview/demos/demo6/dark-rtl.png b/public/media/preview/demos/demo6/dark-rtl.png new file mode 100644 index 0000000..2157fda Binary files /dev/null and b/public/media/preview/demos/demo6/dark-rtl.png differ diff --git a/public/media/preview/demos/demo6/light-ltr.png b/public/media/preview/demos/demo6/light-ltr.png new file mode 100644 index 0000000..3356740 Binary files /dev/null and b/public/media/preview/demos/demo6/light-ltr.png differ diff --git a/public/media/preview/demos/demo6/light-rtl.png b/public/media/preview/demos/demo6/light-rtl.png new file mode 100644 index 0000000..227bc58 Binary files /dev/null and b/public/media/preview/demos/demo6/light-rtl.png differ diff --git a/public/media/preview/demos/demo60/dark-ltr.png b/public/media/preview/demos/demo60/dark-ltr.png new file mode 100644 index 0000000..711e360 Binary files /dev/null and b/public/media/preview/demos/demo60/dark-ltr.png differ diff --git a/public/media/preview/demos/demo60/dark-rtl.png b/public/media/preview/demos/demo60/dark-rtl.png new file mode 100644 index 0000000..e7742a1 Binary files /dev/null and b/public/media/preview/demos/demo60/dark-rtl.png differ diff --git a/public/media/preview/demos/demo60/light-ltr.png b/public/media/preview/demos/demo60/light-ltr.png new file mode 100644 index 0000000..be3d4d0 Binary files /dev/null and b/public/media/preview/demos/demo60/light-ltr.png differ diff --git a/public/media/preview/demos/demo60/light-rtl.png b/public/media/preview/demos/demo60/light-rtl.png new file mode 100644 index 0000000..08d70b8 Binary files /dev/null and b/public/media/preview/demos/demo60/light-rtl.png differ diff --git a/public/media/preview/demos/demo61/dark-ltr.png b/public/media/preview/demos/demo61/dark-ltr.png new file mode 100644 index 0000000..ad9fb0b Binary files /dev/null and b/public/media/preview/demos/demo61/dark-ltr.png differ diff --git a/public/media/preview/demos/demo61/dark-rtl.png b/public/media/preview/demos/demo61/dark-rtl.png new file mode 100644 index 0000000..1ef01c0 Binary files /dev/null and b/public/media/preview/demos/demo61/dark-rtl.png differ diff --git a/public/media/preview/demos/demo61/light-ltr.png b/public/media/preview/demos/demo61/light-ltr.png new file mode 100644 index 0000000..cdc1334 Binary files /dev/null and b/public/media/preview/demos/demo61/light-ltr.png differ diff --git a/public/media/preview/demos/demo61/light-rtl.png b/public/media/preview/demos/demo61/light-rtl.png new file mode 100644 index 0000000..bd9c1cb Binary files /dev/null and b/public/media/preview/demos/demo61/light-rtl.png differ diff --git a/public/media/preview/demos/demo62/dark-ltr.png b/public/media/preview/demos/demo62/dark-ltr.png new file mode 100644 index 0000000..131195c Binary files /dev/null and b/public/media/preview/demos/demo62/dark-ltr.png differ diff --git a/public/media/preview/demos/demo62/dark-rtl.png b/public/media/preview/demos/demo62/dark-rtl.png new file mode 100644 index 0000000..85942a0 Binary files /dev/null and b/public/media/preview/demos/demo62/dark-rtl.png differ diff --git a/public/media/preview/demos/demo62/light-ltr.png b/public/media/preview/demos/demo62/light-ltr.png new file mode 100644 index 0000000..76cab6a Binary files /dev/null and b/public/media/preview/demos/demo62/light-ltr.png differ diff --git a/public/media/preview/demos/demo62/light-rtl.png b/public/media/preview/demos/demo62/light-rtl.png new file mode 100644 index 0000000..276b893 Binary files /dev/null and b/public/media/preview/demos/demo62/light-rtl.png differ diff --git a/public/media/preview/demos/demo63/dark-ltr.png b/public/media/preview/demos/demo63/dark-ltr.png new file mode 100644 index 0000000..fad0f6e Binary files /dev/null and b/public/media/preview/demos/demo63/dark-ltr.png differ diff --git a/public/media/preview/demos/demo63/dark-rtl.png b/public/media/preview/demos/demo63/dark-rtl.png new file mode 100644 index 0000000..580c8f3 Binary files /dev/null and b/public/media/preview/demos/demo63/dark-rtl.png differ diff --git a/public/media/preview/demos/demo63/light-ltr.png b/public/media/preview/demos/demo63/light-ltr.png new file mode 100644 index 0000000..94ee13e Binary files /dev/null and b/public/media/preview/demos/demo63/light-ltr.png differ diff --git a/public/media/preview/demos/demo63/light-rtl.png b/public/media/preview/demos/demo63/light-rtl.png new file mode 100644 index 0000000..42c9c8f Binary files /dev/null and b/public/media/preview/demos/demo63/light-rtl.png differ diff --git a/public/media/preview/demos/demo64/dark-ltr.png b/public/media/preview/demos/demo64/dark-ltr.png new file mode 100644 index 0000000..e94b8d2 Binary files /dev/null and b/public/media/preview/demos/demo64/dark-ltr.png differ diff --git a/public/media/preview/demos/demo64/dark-rtl.png b/public/media/preview/demos/demo64/dark-rtl.png new file mode 100644 index 0000000..02a1c13 Binary files /dev/null and b/public/media/preview/demos/demo64/dark-rtl.png differ diff --git a/public/media/preview/demos/demo64/light-ltr.png b/public/media/preview/demos/demo64/light-ltr.png new file mode 100644 index 0000000..d8c2e3f Binary files /dev/null and b/public/media/preview/demos/demo64/light-ltr.png differ diff --git a/public/media/preview/demos/demo64/light-rtl.png b/public/media/preview/demos/demo64/light-rtl.png new file mode 100644 index 0000000..0373669 Binary files /dev/null and b/public/media/preview/demos/demo64/light-rtl.png differ diff --git a/public/media/preview/demos/demo7/dark-ltr.png b/public/media/preview/demos/demo7/dark-ltr.png new file mode 100644 index 0000000..4f38eee Binary files /dev/null and b/public/media/preview/demos/demo7/dark-ltr.png differ diff --git a/public/media/preview/demos/demo7/dark-rtl.png b/public/media/preview/demos/demo7/dark-rtl.png new file mode 100644 index 0000000..d7c4f60 Binary files /dev/null and b/public/media/preview/demos/demo7/dark-rtl.png differ diff --git a/public/media/preview/demos/demo7/light-ltr.png b/public/media/preview/demos/demo7/light-ltr.png new file mode 100644 index 0000000..a5ac470 Binary files /dev/null and b/public/media/preview/demos/demo7/light-ltr.png differ diff --git a/public/media/preview/demos/demo7/light-rtl.png b/public/media/preview/demos/demo7/light-rtl.png new file mode 100644 index 0000000..0ea24be Binary files /dev/null and b/public/media/preview/demos/demo7/light-rtl.png differ diff --git a/public/media/preview/demos/demo8/dark-ltr.png b/public/media/preview/demos/demo8/dark-ltr.png new file mode 100644 index 0000000..c4185ee Binary files /dev/null and b/public/media/preview/demos/demo8/dark-ltr.png differ diff --git a/public/media/preview/demos/demo8/dark-rtl.png b/public/media/preview/demos/demo8/dark-rtl.png new file mode 100644 index 0000000..154a3bc Binary files /dev/null and b/public/media/preview/demos/demo8/dark-rtl.png differ diff --git a/public/media/preview/demos/demo8/light-ltr.png b/public/media/preview/demos/demo8/light-ltr.png new file mode 100644 index 0000000..dcf4ff5 Binary files /dev/null and b/public/media/preview/demos/demo8/light-ltr.png differ diff --git a/public/media/preview/demos/demo8/light-rtl.png b/public/media/preview/demos/demo8/light-rtl.png new file mode 100644 index 0000000..759cbd9 Binary files /dev/null and b/public/media/preview/demos/demo8/light-rtl.png differ diff --git a/public/media/preview/demos/demo9/dark-ltr.png b/public/media/preview/demos/demo9/dark-ltr.png new file mode 100644 index 0000000..9e38cc7 Binary files /dev/null and b/public/media/preview/demos/demo9/dark-ltr.png differ diff --git a/public/media/preview/demos/demo9/dark-rtl.png b/public/media/preview/demos/demo9/dark-rtl.png new file mode 100644 index 0000000..4266e6b Binary files /dev/null and b/public/media/preview/demos/demo9/dark-rtl.png differ diff --git a/public/media/preview/demos/demo9/light-ltr.png b/public/media/preview/demos/demo9/light-ltr.png new file mode 100644 index 0000000..ad3ff79 Binary files /dev/null and b/public/media/preview/demos/demo9/light-ltr.png differ diff --git a/public/media/preview/demos/demo9/light-rtl.png b/public/media/preview/demos/demo9/light-rtl.png new file mode 100644 index 0000000..4782a6e Binary files /dev/null and b/public/media/preview/demos/demo9/light-rtl.png differ diff --git a/public/media/preview/demos/placeholder.jpg b/public/media/preview/demos/placeholder.jpg new file mode 100644 index 0000000..f85b3ff Binary files /dev/null and b/public/media/preview/demos/placeholder.jpg differ diff --git a/public/media/preview/prebuilts/apps/calendar.png b/public/media/preview/prebuilts/apps/calendar.png new file mode 100644 index 0000000..6a37ab8 Binary files /dev/null and b/public/media/preview/prebuilts/apps/calendar.png differ diff --git a/public/media/preview/prebuilts/apps/chat.png b/public/media/preview/prebuilts/apps/chat.png new file mode 100644 index 0000000..cc4264e Binary files /dev/null and b/public/media/preview/prebuilts/apps/chat.png differ diff --git a/public/media/preview/prebuilts/apps/contacts.png b/public/media/preview/prebuilts/apps/contacts.png new file mode 100644 index 0000000..ba73ad6 Binary files /dev/null and b/public/media/preview/prebuilts/apps/contacts.png differ diff --git a/public/media/preview/prebuilts/apps/customers.png b/public/media/preview/prebuilts/apps/customers.png new file mode 100644 index 0000000..42d5644 Binary files /dev/null and b/public/media/preview/prebuilts/apps/customers.png differ diff --git a/public/media/preview/prebuilts/apps/ecommerce.png b/public/media/preview/prebuilts/apps/ecommerce.png new file mode 100644 index 0000000..4540753 Binary files /dev/null and b/public/media/preview/prebuilts/apps/ecommerce.png differ diff --git a/public/media/preview/prebuilts/apps/file-manager.png b/public/media/preview/prebuilts/apps/file-manager.png new file mode 100644 index 0000000..463b10b Binary files /dev/null and b/public/media/preview/prebuilts/apps/file-manager.png differ diff --git a/public/media/preview/prebuilts/apps/inbox.png b/public/media/preview/prebuilts/apps/inbox.png new file mode 100644 index 0000000..63ad8ad Binary files /dev/null and b/public/media/preview/prebuilts/apps/inbox.png differ diff --git a/public/media/preview/prebuilts/apps/invoices.png b/public/media/preview/prebuilts/apps/invoices.png new file mode 100644 index 0000000..462de97 Binary files /dev/null and b/public/media/preview/prebuilts/apps/invoices.png differ diff --git a/public/media/preview/prebuilts/apps/projects.png b/public/media/preview/prebuilts/apps/projects.png new file mode 100644 index 0000000..85f7eab Binary files /dev/null and b/public/media/preview/prebuilts/apps/projects.png differ diff --git a/public/media/preview/prebuilts/apps/subscriptions.png b/public/media/preview/prebuilts/apps/subscriptions.png new file mode 100644 index 0000000..335cdbc Binary files /dev/null and b/public/media/preview/prebuilts/apps/subscriptions.png differ diff --git a/public/media/preview/prebuilts/apps/support-center.png b/public/media/preview/prebuilts/apps/support-center.png new file mode 100644 index 0000000..bb5de96 Binary files /dev/null and b/public/media/preview/prebuilts/apps/support-center.png differ diff --git a/public/media/preview/prebuilts/apps/user-management.png b/public/media/preview/prebuilts/apps/user-management.png new file mode 100644 index 0000000..24d3b13 Binary files /dev/null and b/public/media/preview/prebuilts/apps/user-management.png differ diff --git a/public/media/preview/prebuilts/dashboards/bidding.png b/public/media/preview/prebuilts/dashboards/bidding.png new file mode 100644 index 0000000..ba86242 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/bidding.png differ diff --git a/public/media/preview/prebuilts/dashboards/call-center.png b/public/media/preview/prebuilts/dashboards/call-center.png new file mode 100644 index 0000000..04b316b Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/call-center.png differ diff --git a/public/media/preview/prebuilts/dashboards/crypto.png b/public/media/preview/prebuilts/dashboards/crypto.png new file mode 100644 index 0000000..3c8cd94 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/crypto.png differ diff --git a/public/media/preview/prebuilts/dashboards/delivery.png b/public/media/preview/prebuilts/dashboards/delivery.png new file mode 100644 index 0000000..7407a5b Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/delivery.png differ diff --git a/public/media/preview/prebuilts/dashboards/ecommerce.png b/public/media/preview/prebuilts/dashboards/ecommerce.png new file mode 100644 index 0000000..0a2541e Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/ecommerce.png differ diff --git a/public/media/preview/prebuilts/dashboards/finance-performance.png b/public/media/preview/prebuilts/dashboards/finance-performance.png new file mode 100644 index 0000000..e09716f Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/finance-performance.png differ diff --git a/public/media/preview/prebuilts/dashboards/logistics.png b/public/media/preview/prebuilts/dashboards/logistics.png new file mode 100644 index 0000000..dc13f82 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/logistics.png differ diff --git a/public/media/preview/prebuilts/dashboards/marketing.png b/public/media/preview/prebuilts/dashboards/marketing.png new file mode 100644 index 0000000..6284f3a Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/marketing.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo1.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo1.png new file mode 100644 index 0000000..0bd4045 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo1.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo10.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo10.png new file mode 100644 index 0000000..598e6fe Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo10.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo11.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo11.png new file mode 100644 index 0000000..fcff730 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo11.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo12.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo12.png new file mode 100644 index 0000000..15d6a6b Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo12.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo13.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo13.png new file mode 100644 index 0000000..2057f13 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo13.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo14.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo14.png new file mode 100644 index 0000000..bb71bec Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo14.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo15.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo15.png new file mode 100644 index 0000000..e8dc714 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo15.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo16.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo16.png new file mode 100644 index 0000000..c811f2a Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo16.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo17.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo17.png new file mode 100644 index 0000000..c77f4c7 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo17.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo18.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo18.png new file mode 100644 index 0000000..6ade1a4 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo18.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo19.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo19.png new file mode 100644 index 0000000..a931d84 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo19.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo2.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo2.png new file mode 100644 index 0000000..b0af137 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo2.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo20.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo20.png new file mode 100644 index 0000000..3253f2e Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo20.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo21.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo21.png new file mode 100644 index 0000000..25a6687 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo21.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo22.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo22.png new file mode 100644 index 0000000..7af2639 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo22.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo23.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo23.png new file mode 100644 index 0000000..4d1dc73 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo23.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo3.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo3.png new file mode 100644 index 0000000..28e9e7c Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo3.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo4.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo4.png new file mode 100644 index 0000000..5a37616 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo4.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo5.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo5.png new file mode 100644 index 0000000..f6b451c Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo5.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo7.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo7.png new file mode 100644 index 0000000..ff08ca0 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo7.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo8.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo8.png new file mode 100644 index 0000000..68e352f Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo8.png differ diff --git a/public/media/preview/prebuilts/dashboards/multipurpose-demo9.png b/public/media/preview/prebuilts/dashboards/multipurpose-demo9.png new file mode 100644 index 0000000..51d7cc6 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/multipurpose-demo9.png differ diff --git a/public/media/preview/prebuilts/dashboards/online-courses.png b/public/media/preview/prebuilts/dashboards/online-courses.png new file mode 100644 index 0000000..a7c562e Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/online-courses.png differ diff --git a/public/media/preview/prebuilts/dashboards/podcast.png b/public/media/preview/prebuilts/dashboards/podcast.png new file mode 100644 index 0000000..da2a204 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/podcast.png differ diff --git a/public/media/preview/prebuilts/dashboards/pos.png b/public/media/preview/prebuilts/dashboards/pos.png new file mode 100644 index 0000000..c7ee3e2 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/pos.png differ diff --git a/public/media/preview/prebuilts/dashboards/projects.png b/public/media/preview/prebuilts/dashboards/projects.png new file mode 100644 index 0000000..0a32317 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/projects.png differ diff --git a/public/media/preview/prebuilts/dashboards/school.png b/public/media/preview/prebuilts/dashboards/school.png new file mode 100644 index 0000000..1dd7d18 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/school.png differ diff --git a/public/media/preview/prebuilts/dashboards/social.png b/public/media/preview/prebuilts/dashboards/social.png new file mode 100644 index 0000000..a153b9a Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/social.png differ diff --git a/public/media/preview/prebuilts/dashboards/store-analytics.png b/public/media/preview/prebuilts/dashboards/store-analytics.png new file mode 100644 index 0000000..c2384e8 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/store-analytics.png differ diff --git a/public/media/preview/prebuilts/dashboards/website-analytics.png b/public/media/preview/prebuilts/dashboards/website-analytics.png new file mode 100644 index 0000000..63705d5 Binary files /dev/null and b/public/media/preview/prebuilts/dashboards/website-analytics.png differ diff --git a/public/media/preview/prebuilts/demos/demo1.png b/public/media/preview/prebuilts/demos/demo1.png new file mode 100644 index 0000000..19115a6 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo1.png differ diff --git a/public/media/preview/prebuilts/demos/demo10.png b/public/media/preview/prebuilts/demos/demo10.png new file mode 100644 index 0000000..eb57559 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo10.png differ diff --git a/public/media/preview/prebuilts/demos/demo11.png b/public/media/preview/prebuilts/demos/demo11.png new file mode 100644 index 0000000..3feb4cb Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo11.png differ diff --git a/public/media/preview/prebuilts/demos/demo12.png b/public/media/preview/prebuilts/demos/demo12.png new file mode 100644 index 0000000..ec517d4 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo12.png differ diff --git a/public/media/preview/prebuilts/demos/demo13.png b/public/media/preview/prebuilts/demos/demo13.png new file mode 100644 index 0000000..e1e1066 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo13.png differ diff --git a/public/media/preview/prebuilts/demos/demo14.png b/public/media/preview/prebuilts/demos/demo14.png new file mode 100644 index 0000000..81d1f80 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo14.png differ diff --git a/public/media/preview/prebuilts/demos/demo15.png b/public/media/preview/prebuilts/demos/demo15.png new file mode 100644 index 0000000..a9912a9 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo15.png differ diff --git a/public/media/preview/prebuilts/demos/demo16.png b/public/media/preview/prebuilts/demos/demo16.png new file mode 100644 index 0000000..9bc755b Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo16.png differ diff --git a/public/media/preview/prebuilts/demos/demo17.png b/public/media/preview/prebuilts/demos/demo17.png new file mode 100644 index 0000000..46f4514 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo17.png differ diff --git a/public/media/preview/prebuilts/demos/demo18.png b/public/media/preview/prebuilts/demos/demo18.png new file mode 100644 index 0000000..997eaf5 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo18.png differ diff --git a/public/media/preview/prebuilts/demos/demo19.png b/public/media/preview/prebuilts/demos/demo19.png new file mode 100644 index 0000000..d8ece9f Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo19.png differ diff --git a/public/media/preview/prebuilts/demos/demo2.png b/public/media/preview/prebuilts/demos/demo2.png new file mode 100644 index 0000000..a8d2587 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo2.png differ diff --git a/public/media/preview/prebuilts/demos/demo20.png b/public/media/preview/prebuilts/demos/demo20.png new file mode 100644 index 0000000..555d679 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo20.png differ diff --git a/public/media/preview/prebuilts/demos/demo21.png b/public/media/preview/prebuilts/demos/demo21.png new file mode 100644 index 0000000..6976041 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo21.png differ diff --git a/public/media/preview/prebuilts/demos/demo22.png b/public/media/preview/prebuilts/demos/demo22.png new file mode 100644 index 0000000..9fb8f97 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo22.png differ diff --git a/public/media/preview/prebuilts/demos/demo23.png b/public/media/preview/prebuilts/demos/demo23.png new file mode 100644 index 0000000..c3569a7 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo23.png differ diff --git a/public/media/preview/prebuilts/demos/demo24.png b/public/media/preview/prebuilts/demos/demo24.png new file mode 100644 index 0000000..9020619 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo24.png differ diff --git a/public/media/preview/prebuilts/demos/demo25.png b/public/media/preview/prebuilts/demos/demo25.png new file mode 100644 index 0000000..679301d Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo25.png differ diff --git a/public/media/preview/prebuilts/demos/demo26.png b/public/media/preview/prebuilts/demos/demo26.png new file mode 100644 index 0000000..95a901c Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo26.png differ diff --git a/public/media/preview/prebuilts/demos/demo27.png b/public/media/preview/prebuilts/demos/demo27.png new file mode 100644 index 0000000..0d645a4 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo27.png differ diff --git a/public/media/preview/prebuilts/demos/demo28.png b/public/media/preview/prebuilts/demos/demo28.png new file mode 100644 index 0000000..31639eb Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo28.png differ diff --git a/public/media/preview/prebuilts/demos/demo29.png b/public/media/preview/prebuilts/demos/demo29.png new file mode 100644 index 0000000..a94a450 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo29.png differ diff --git a/public/media/preview/prebuilts/demos/demo3.png b/public/media/preview/prebuilts/demos/demo3.png new file mode 100644 index 0000000..bcea32e Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo3.png differ diff --git a/public/media/preview/prebuilts/demos/demo30.png b/public/media/preview/prebuilts/demos/demo30.png new file mode 100644 index 0000000..a929a72 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo30.png differ diff --git a/public/media/preview/prebuilts/demos/demo31.png b/public/media/preview/prebuilts/demos/demo31.png new file mode 100644 index 0000000..06eb0f9 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo31.png differ diff --git a/public/media/preview/prebuilts/demos/demo32.png b/public/media/preview/prebuilts/demos/demo32.png new file mode 100644 index 0000000..8592d20 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo32.png differ diff --git a/public/media/preview/prebuilts/demos/demo33.png b/public/media/preview/prebuilts/demos/demo33.png new file mode 100644 index 0000000..2bd3a7b Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo33.png differ diff --git a/public/media/preview/prebuilts/demos/demo34.png b/public/media/preview/prebuilts/demos/demo34.png new file mode 100644 index 0000000..ad1d261 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo34.png differ diff --git a/public/media/preview/prebuilts/demos/demo35.png b/public/media/preview/prebuilts/demos/demo35.png new file mode 100644 index 0000000..d7a9e75 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo35.png differ diff --git a/public/media/preview/prebuilts/demos/demo36.png b/public/media/preview/prebuilts/demos/demo36.png new file mode 100644 index 0000000..d8042ee Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo36.png differ diff --git a/public/media/preview/prebuilts/demos/demo37.png b/public/media/preview/prebuilts/demos/demo37.png new file mode 100644 index 0000000..a32d288 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo37.png differ diff --git a/public/media/preview/prebuilts/demos/demo38.png b/public/media/preview/prebuilts/demos/demo38.png new file mode 100644 index 0000000..de10c40 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo38.png differ diff --git a/public/media/preview/prebuilts/demos/demo39.png b/public/media/preview/prebuilts/demos/demo39.png new file mode 100644 index 0000000..bec4c35 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo39.png differ diff --git a/public/media/preview/prebuilts/demos/demo4.png b/public/media/preview/prebuilts/demos/demo4.png new file mode 100644 index 0000000..e82d7a4 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo4.png differ diff --git a/public/media/preview/prebuilts/demos/demo40.png b/public/media/preview/prebuilts/demos/demo40.png new file mode 100644 index 0000000..a9225a6 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo40.png differ diff --git a/public/media/preview/prebuilts/demos/demo41.png b/public/media/preview/prebuilts/demos/demo41.png new file mode 100644 index 0000000..da92777 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo41.png differ diff --git a/public/media/preview/prebuilts/demos/demo42.png b/public/media/preview/prebuilts/demos/demo42.png new file mode 100644 index 0000000..eeb4914 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo42.png differ diff --git a/public/media/preview/prebuilts/demos/demo43.png b/public/media/preview/prebuilts/demos/demo43.png new file mode 100644 index 0000000..68aa68c Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo43.png differ diff --git a/public/media/preview/prebuilts/demos/demo44.png b/public/media/preview/prebuilts/demos/demo44.png new file mode 100644 index 0000000..0c1442e Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo44.png differ diff --git a/public/media/preview/prebuilts/demos/demo45.png b/public/media/preview/prebuilts/demos/demo45.png new file mode 100644 index 0000000..b11f3ec Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo45.png differ diff --git a/public/media/preview/prebuilts/demos/demo46.png b/public/media/preview/prebuilts/demos/demo46.png new file mode 100644 index 0000000..245f9e7 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo46.png differ diff --git a/public/media/preview/prebuilts/demos/demo47.png b/public/media/preview/prebuilts/demos/demo47.png new file mode 100644 index 0000000..6f9db9d Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo47.png differ diff --git a/public/media/preview/prebuilts/demos/demo48.png b/public/media/preview/prebuilts/demos/demo48.png new file mode 100644 index 0000000..56bbf3d Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo48.png differ diff --git a/public/media/preview/prebuilts/demos/demo49.png b/public/media/preview/prebuilts/demos/demo49.png new file mode 100644 index 0000000..e70bf19 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo49.png differ diff --git a/public/media/preview/prebuilts/demos/demo5.png b/public/media/preview/prebuilts/demos/demo5.png new file mode 100644 index 0000000..9641208 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo5.png differ diff --git a/public/media/preview/prebuilts/demos/demo51.png b/public/media/preview/prebuilts/demos/demo51.png new file mode 100644 index 0000000..3ed72e6 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo51.png differ diff --git a/public/media/preview/prebuilts/demos/demo52.png b/public/media/preview/prebuilts/demos/demo52.png new file mode 100644 index 0000000..4eab0fe Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo52.png differ diff --git a/public/media/preview/prebuilts/demos/demo53.png b/public/media/preview/prebuilts/demos/demo53.png new file mode 100644 index 0000000..090e877 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo53.png differ diff --git a/public/media/preview/prebuilts/demos/demo54.png b/public/media/preview/prebuilts/demos/demo54.png new file mode 100644 index 0000000..00cdce9 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo54.png differ diff --git a/public/media/preview/prebuilts/demos/demo55.png b/public/media/preview/prebuilts/demos/demo55.png new file mode 100644 index 0000000..18ffb68 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo55.png differ diff --git a/public/media/preview/prebuilts/demos/demo56.png b/public/media/preview/prebuilts/demos/demo56.png new file mode 100644 index 0000000..4861797 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo56.png differ diff --git a/public/media/preview/prebuilts/demos/demo57.png b/public/media/preview/prebuilts/demos/demo57.png new file mode 100644 index 0000000..8313460 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo57.png differ diff --git a/public/media/preview/prebuilts/demos/demo58.png b/public/media/preview/prebuilts/demos/demo58.png new file mode 100644 index 0000000..dae54b1 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo58.png differ diff --git a/public/media/preview/prebuilts/demos/demo59.png b/public/media/preview/prebuilts/demos/demo59.png new file mode 100644 index 0000000..efcdc6b Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo59.png differ diff --git a/public/media/preview/prebuilts/demos/demo6.png b/public/media/preview/prebuilts/demos/demo6.png new file mode 100644 index 0000000..71a3efb Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo6.png differ diff --git a/public/media/preview/prebuilts/demos/demo60.png b/public/media/preview/prebuilts/demos/demo60.png new file mode 100644 index 0000000..be3d4d0 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo60.png differ diff --git a/public/media/preview/prebuilts/demos/demo61.png b/public/media/preview/prebuilts/demos/demo61.png new file mode 100644 index 0000000..cdc1334 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo61.png differ diff --git a/public/media/preview/prebuilts/demos/demo62.png b/public/media/preview/prebuilts/demos/demo62.png new file mode 100644 index 0000000..76cab6a Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo62.png differ diff --git a/public/media/preview/prebuilts/demos/demo63.png b/public/media/preview/prebuilts/demos/demo63.png new file mode 100644 index 0000000..94ee13e Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo63.png differ diff --git a/public/media/preview/prebuilts/demos/demo64.png b/public/media/preview/prebuilts/demos/demo64.png new file mode 100644 index 0000000..d8c2e3f Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo64.png differ diff --git a/public/media/preview/prebuilts/demos/demo7.png b/public/media/preview/prebuilts/demos/demo7.png new file mode 100644 index 0000000..083a030 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo7.png differ diff --git a/public/media/preview/prebuilts/demos/demo8.png b/public/media/preview/prebuilts/demos/demo8.png new file mode 100644 index 0000000..d517555 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo8.png differ diff --git a/public/media/preview/prebuilts/demos/demo9.png b/public/media/preview/prebuilts/demos/demo9.png new file mode 100644 index 0000000..991c573 Binary files /dev/null and b/public/media/preview/prebuilts/demos/demo9.png differ diff --git a/public/media/preview/prebuilts/pages/account-apikeys.png b/public/media/preview/prebuilts/pages/account-apikeys.png new file mode 100644 index 0000000..7f69e38 Binary files /dev/null and b/public/media/preview/prebuilts/pages/account-apikeys.png differ diff --git a/public/media/preview/prebuilts/pages/account-billing.png b/public/media/preview/prebuilts/pages/account-billing.png new file mode 100644 index 0000000..bfa08b0 Binary files /dev/null and b/public/media/preview/prebuilts/pages/account-billing.png differ diff --git a/public/media/preview/prebuilts/pages/account-logs.png b/public/media/preview/prebuilts/pages/account-logs.png new file mode 100644 index 0000000..20dcc11 Binary files /dev/null and b/public/media/preview/prebuilts/pages/account-logs.png differ diff --git a/public/media/preview/prebuilts/pages/account-overview.png b/public/media/preview/prebuilts/pages/account-overview.png new file mode 100644 index 0000000..56cf47e Binary files /dev/null and b/public/media/preview/prebuilts/pages/account-overview.png differ diff --git a/public/media/preview/prebuilts/pages/account-referrals.png b/public/media/preview/prebuilts/pages/account-referrals.png new file mode 100644 index 0000000..0893a7e Binary files /dev/null and b/public/media/preview/prebuilts/pages/account-referrals.png differ diff --git a/public/media/preview/prebuilts/pages/account-security.png b/public/media/preview/prebuilts/pages/account-security.png new file mode 100644 index 0000000..dabd4ff Binary files /dev/null and b/public/media/preview/prebuilts/pages/account-security.png differ diff --git a/public/media/preview/prebuilts/pages/account-settings.png b/public/media/preview/prebuilts/pages/account-settings.png new file mode 100644 index 0000000..5ffeb8b Binary files /dev/null and b/public/media/preview/prebuilts/pages/account-settings.png differ diff --git a/public/media/preview/prebuilts/pages/account-statements.png b/public/media/preview/prebuilts/pages/account-statements.png new file mode 100644 index 0000000..7c59d16 Binary files /dev/null and b/public/media/preview/prebuilts/pages/account-statements.png differ diff --git a/public/media/preview/prebuilts/pages/auth-2factor.png b/public/media/preview/prebuilts/pages/auth-2factor.png new file mode 100644 index 0000000..e16cba2 Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-2factor.png differ diff --git a/public/media/preview/prebuilts/pages/auth-404.png b/public/media/preview/prebuilts/pages/auth-404.png new file mode 100644 index 0000000..19bf98f Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-404.png differ diff --git a/public/media/preview/prebuilts/pages/auth-500.png b/public/media/preview/prebuilts/pages/auth-500.png new file mode 100644 index 0000000..f6ddd75 Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-500.png differ diff --git a/public/media/preview/prebuilts/pages/auth-accountdeactivated.png b/public/media/preview/prebuilts/pages/auth-accountdeactivated.png new file mode 100644 index 0000000..dab4338 Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-accountdeactivated.png differ diff --git a/public/media/preview/prebuilts/pages/auth-comingsoon.png b/public/media/preview/prebuilts/pages/auth-comingsoon.png new file mode 100644 index 0000000..9e18209 Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-comingsoon.png differ diff --git a/public/media/preview/prebuilts/pages/auth-corporate.png b/public/media/preview/prebuilts/pages/auth-corporate.png new file mode 100644 index 0000000..e303a8d Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-corporate.png differ diff --git a/public/media/preview/prebuilts/pages/auth-creative.png b/public/media/preview/prebuilts/pages/auth-creative.png new file mode 100644 index 0000000..03b88b5 Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-creative.png differ diff --git a/public/media/preview/prebuilts/pages/auth-fancy.png b/public/media/preview/prebuilts/pages/auth-fancy.png new file mode 100644 index 0000000..3949720 Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-fancy.png differ diff --git a/public/media/preview/prebuilts/pages/auth-multistep.png b/public/media/preview/prebuilts/pages/auth-multistep.png new file mode 100644 index 0000000..a4a5ac0 Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-multistep.png differ diff --git a/public/media/preview/prebuilts/pages/auth-overlay.png b/public/media/preview/prebuilts/pages/auth-overlay.png new file mode 100644 index 0000000..3a92dbe Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-overlay.png differ diff --git a/public/media/preview/prebuilts/pages/auth-passwordchanged.png b/public/media/preview/prebuilts/pages/auth-passwordchanged.png new file mode 100644 index 0000000..dd6a3aa Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-passwordchanged.png differ diff --git a/public/media/preview/prebuilts/pages/auth-verifyemail.png b/public/media/preview/prebuilts/pages/auth-verifyemail.png new file mode 100644 index 0000000..d906e0f Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-verifyemail.png differ diff --git a/public/media/preview/prebuilts/pages/auth-welcome.png b/public/media/preview/prebuilts/pages/auth-welcome.png new file mode 100644 index 0000000..41910f7 Binary files /dev/null and b/public/media/preview/prebuilts/pages/auth-welcome.png differ diff --git a/public/media/preview/prebuilts/pages/blog-home.png b/public/media/preview/prebuilts/pages/blog-home.png new file mode 100644 index 0000000..d9bc3eb Binary files /dev/null and b/public/media/preview/prebuilts/pages/blog-home.png differ diff --git a/public/media/preview/prebuilts/pages/blog-post.png b/public/media/preview/prebuilts/pages/blog-post.png new file mode 100644 index 0000000..af4ce0a Binary files /dev/null and b/public/media/preview/prebuilts/pages/blog-post.png differ diff --git a/public/media/preview/prebuilts/pages/careers-applyform.png b/public/media/preview/prebuilts/pages/careers-applyform.png new file mode 100644 index 0000000..85cf2c2 Binary files /dev/null and b/public/media/preview/prebuilts/pages/careers-applyform.png differ diff --git a/public/media/preview/prebuilts/pages/careers-listing.png b/public/media/preview/prebuilts/pages/careers-listing.png new file mode 100644 index 0000000..91c73c5 Binary files /dev/null and b/public/media/preview/prebuilts/pages/careers-listing.png differ diff --git a/public/media/preview/prebuilts/pages/corporate-aboutus.png b/public/media/preview/prebuilts/pages/corporate-aboutus.png new file mode 100644 index 0000000..2a0e183 Binary files /dev/null and b/public/media/preview/prebuilts/pages/corporate-aboutus.png differ diff --git a/public/media/preview/prebuilts/pages/corporate-contactus.png b/public/media/preview/prebuilts/pages/corporate-contactus.png new file mode 100644 index 0000000..3a5bfae Binary files /dev/null and b/public/media/preview/prebuilts/pages/corporate-contactus.png differ diff --git a/public/media/preview/prebuilts/pages/corporate-license.png b/public/media/preview/prebuilts/pages/corporate-license.png new file mode 100644 index 0000000..ecaa767 Binary files /dev/null and b/public/media/preview/prebuilts/pages/corporate-license.png differ diff --git a/public/media/preview/prebuilts/pages/corporate-ourteam.png b/public/media/preview/prebuilts/pages/corporate-ourteam.png new file mode 100644 index 0000000..88c4f93 Binary files /dev/null and b/public/media/preview/prebuilts/pages/corporate-ourteam.png differ diff --git a/public/media/preview/prebuilts/pages/corporate-sitemap.png b/public/media/preview/prebuilts/pages/corporate-sitemap.png new file mode 100644 index 0000000..59e71ba Binary files /dev/null and b/public/media/preview/prebuilts/pages/corporate-sitemap.png differ diff --git a/public/media/preview/prebuilts/pages/email-creditcarddeclined.png b/public/media/preview/prebuilts/pages/email-creditcarddeclined.png new file mode 100644 index 0000000..de22d7f Binary files /dev/null and b/public/media/preview/prebuilts/pages/email-creditcarddeclined.png differ diff --git a/public/media/preview/prebuilts/pages/email-promo1.png b/public/media/preview/prebuilts/pages/email-promo1.png new file mode 100644 index 0000000..a2ac22f Binary files /dev/null and b/public/media/preview/prebuilts/pages/email-promo1.png differ diff --git a/public/media/preview/prebuilts/pages/email-promo2.png b/public/media/preview/prebuilts/pages/email-promo2.png new file mode 100644 index 0000000..8496ddd Binary files /dev/null and b/public/media/preview/prebuilts/pages/email-promo2.png differ diff --git a/public/media/preview/prebuilts/pages/email-promo3.png b/public/media/preview/prebuilts/pages/email-promo3.png new file mode 100644 index 0000000..b11a0a5 Binary files /dev/null and b/public/media/preview/prebuilts/pages/email-promo3.png differ diff --git a/public/media/preview/prebuilts/pages/email-resetpassword.png b/public/media/preview/prebuilts/pages/email-resetpassword.png new file mode 100644 index 0000000..c7a63ed Binary files /dev/null and b/public/media/preview/prebuilts/pages/email-resetpassword.png differ diff --git a/public/media/preview/prebuilts/pages/email-subscriptionconfirmed.png b/public/media/preview/prebuilts/pages/email-subscriptionconfirmed.png new file mode 100644 index 0000000..e98fae1 Binary files /dev/null and b/public/media/preview/prebuilts/pages/email-subscriptionconfirmed.png differ diff --git a/public/media/preview/prebuilts/pages/email-welcome.png b/public/media/preview/prebuilts/pages/email-welcome.png new file mode 100644 index 0000000..09b611c Binary files /dev/null and b/public/media/preview/prebuilts/pages/email-welcome.png differ diff --git a/public/media/preview/prebuilts/pages/faq-classic.png b/public/media/preview/prebuilts/pages/faq-classic.png new file mode 100644 index 0000000..488e541 Binary files /dev/null and b/public/media/preview/prebuilts/pages/faq-classic.png differ diff --git a/public/media/preview/prebuilts/pages/faq-extended.png b/public/media/preview/prebuilts/pages/faq-extended.png new file mode 100644 index 0000000..23dd8b3 Binary files /dev/null and b/public/media/preview/prebuilts/pages/faq-extended.png differ diff --git a/public/media/preview/prebuilts/pages/modal-2factorauth.png b/public/media/preview/prebuilts/pages/modal-2factorauth.png new file mode 100644 index 0000000..b68237c Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-2factorauth.png differ diff --git a/public/media/preview/prebuilts/pages/modal-createapikey.png b/public/media/preview/prebuilts/pages/modal-createapikey.png new file mode 100644 index 0000000..ea9953d Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-createapikey.png differ diff --git a/public/media/preview/prebuilts/pages/modal-createapp.png b/public/media/preview/prebuilts/pages/modal-createapp.png new file mode 100644 index 0000000..5252eb8 Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-createapp.png differ diff --git a/public/media/preview/prebuilts/pages/modal-createbusinessacc.png b/public/media/preview/prebuilts/pages/modal-createbusinessacc.png new file mode 100644 index 0000000..c836cab Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-createbusinessacc.png differ diff --git a/public/media/preview/prebuilts/pages/modal-createcampaign.png b/public/media/preview/prebuilts/pages/modal-createcampaign.png new file mode 100644 index 0000000..5421efe Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-createcampaign.png differ diff --git a/public/media/preview/prebuilts/pages/modal-createproject.png b/public/media/preview/prebuilts/pages/modal-createproject.png new file mode 100644 index 0000000..dbd33ff Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-createproject.png differ diff --git a/public/media/preview/prebuilts/pages/modal-invitefriend.png b/public/media/preview/prebuilts/pages/modal-invitefriend.png new file mode 100644 index 0000000..96f30e5 Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-invitefriend.png differ diff --git a/public/media/preview/prebuilts/pages/modal-newaddress.png b/public/media/preview/prebuilts/pages/modal-newaddress.png new file mode 100644 index 0000000..a4bb68e Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-newaddress.png differ diff --git a/public/media/preview/prebuilts/pages/modal-newcard.png b/public/media/preview/prebuilts/pages/modal-newcard.png new file mode 100644 index 0000000..29547a0 Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-newcard.png differ diff --git a/public/media/preview/prebuilts/pages/modal-newtarget.png b/public/media/preview/prebuilts/pages/modal-newtarget.png new file mode 100644 index 0000000..4ac2117 Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-newtarget.png differ diff --git a/public/media/preview/prebuilts/pages/modal-offeradeal.png b/public/media/preview/prebuilts/pages/modal-offeradeal.png new file mode 100644 index 0000000..0506db8 Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-offeradeal.png differ diff --git a/public/media/preview/prebuilts/pages/modal-placeyourbid.png b/public/media/preview/prebuilts/pages/modal-placeyourbid.png new file mode 100644 index 0000000..e4e7de7 Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-placeyourbid.png differ diff --git a/public/media/preview/prebuilts/pages/modal-selectuser.png b/public/media/preview/prebuilts/pages/modal-selectuser.png new file mode 100644 index 0000000..7e1bafb Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-selectuser.png differ diff --git a/public/media/preview/prebuilts/pages/modal-shareandearn.png b/public/media/preview/prebuilts/pages/modal-shareandearn.png new file mode 100644 index 0000000..d49b247 Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-shareandearn.png differ diff --git a/public/media/preview/prebuilts/pages/modal-topupwallet.png b/public/media/preview/prebuilts/pages/modal-topupwallet.png new file mode 100644 index 0000000..e7be5fe Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-topupwallet.png differ diff --git a/public/media/preview/prebuilts/pages/modal-upgradeplan.png b/public/media/preview/prebuilts/pages/modal-upgradeplan.png new file mode 100644 index 0000000..5b40480 Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-upgradeplan.png differ diff --git a/public/media/preview/prebuilts/pages/modal-viewfriends.png b/public/media/preview/prebuilts/pages/modal-viewfriends.png new file mode 100644 index 0000000..37dab60 Binary files /dev/null and b/public/media/preview/prebuilts/pages/modal-viewfriends.png differ diff --git a/public/media/preview/prebuilts/pages/pricing-column.png b/public/media/preview/prebuilts/pages/pricing-column.png new file mode 100644 index 0000000..8d40b89 Binary files /dev/null and b/public/media/preview/prebuilts/pages/pricing-column.png differ diff --git a/public/media/preview/prebuilts/pages/pricing-table.png b/public/media/preview/prebuilts/pages/pricing-table.png new file mode 100644 index 0000000..5c9d41c Binary files /dev/null and b/public/media/preview/prebuilts/pages/pricing-table.png differ diff --git a/public/media/preview/prebuilts/pages/profile-activity.png b/public/media/preview/prebuilts/pages/profile-activity.png new file mode 100644 index 0000000..01cbeaa Binary files /dev/null and b/public/media/preview/prebuilts/pages/profile-activity.png differ diff --git a/public/media/preview/prebuilts/pages/profile-campaigns.png b/public/media/preview/prebuilts/pages/profile-campaigns.png new file mode 100644 index 0000000..9175546 Binary files /dev/null and b/public/media/preview/prebuilts/pages/profile-campaigns.png differ diff --git a/public/media/preview/prebuilts/pages/profile-documents.png b/public/media/preview/prebuilts/pages/profile-documents.png new file mode 100644 index 0000000..5f0a4b3 Binary files /dev/null and b/public/media/preview/prebuilts/pages/profile-documents.png differ diff --git a/public/media/preview/prebuilts/pages/profile-followers.png b/public/media/preview/prebuilts/pages/profile-followers.png new file mode 100644 index 0000000..59ac9ba Binary files /dev/null and b/public/media/preview/prebuilts/pages/profile-followers.png differ diff --git a/public/media/preview/prebuilts/pages/profile-overview.png b/public/media/preview/prebuilts/pages/profile-overview.png new file mode 100644 index 0000000..4124ea8 Binary files /dev/null and b/public/media/preview/prebuilts/pages/profile-overview.png differ diff --git a/public/media/preview/prebuilts/pages/profile-projects.png b/public/media/preview/prebuilts/pages/profile-projects.png new file mode 100644 index 0000000..5a34bf1 Binary files /dev/null and b/public/media/preview/prebuilts/pages/profile-projects.png differ diff --git a/public/media/preview/prebuilts/pages/search-horizontal.png b/public/media/preview/prebuilts/pages/search-horizontal.png new file mode 100644 index 0000000..b1e1309 Binary files /dev/null and b/public/media/preview/prebuilts/pages/search-horizontal.png differ diff --git a/public/media/preview/prebuilts/pages/search-location.png b/public/media/preview/prebuilts/pages/search-location.png new file mode 100644 index 0000000..59d66ef Binary files /dev/null and b/public/media/preview/prebuilts/pages/search-location.png differ diff --git a/public/media/preview/prebuilts/pages/search-users.png b/public/media/preview/prebuilts/pages/search-users.png new file mode 100644 index 0000000..2d7e247 Binary files /dev/null and b/public/media/preview/prebuilts/pages/search-users.png differ diff --git a/public/media/preview/prebuilts/pages/search-vertical.png b/public/media/preview/prebuilts/pages/search-vertical.png new file mode 100644 index 0000000..d28436d Binary files /dev/null and b/public/media/preview/prebuilts/pages/search-vertical.png differ diff --git a/public/media/preview/prebuilts/pages/social-activity.png b/public/media/preview/prebuilts/pages/social-activity.png new file mode 100644 index 0000000..05b4145 Binary files /dev/null and b/public/media/preview/prebuilts/pages/social-activity.png differ diff --git a/public/media/preview/prebuilts/pages/social-feeds.png b/public/media/preview/prebuilts/pages/social-feeds.png new file mode 100644 index 0000000..6817771 Binary files /dev/null and b/public/media/preview/prebuilts/pages/social-feeds.png differ diff --git a/public/media/preview/prebuilts/pages/social-followers.png b/public/media/preview/prebuilts/pages/social-followers.png new file mode 100644 index 0000000..5d37ee7 Binary files /dev/null and b/public/media/preview/prebuilts/pages/social-followers.png differ diff --git a/public/media/preview/prebuilts/pages/social-settings.png b/public/media/preview/prebuilts/pages/social-settings.png new file mode 100644 index 0000000..7f4eb0c Binary files /dev/null and b/public/media/preview/prebuilts/pages/social-settings.png differ diff --git a/public/media/preview/prebuilts/pages/widgets-charts.png b/public/media/preview/prebuilts/pages/widgets-charts.png new file mode 100644 index 0000000..6711b77 Binary files /dev/null and b/public/media/preview/prebuilts/pages/widgets-charts.png differ diff --git a/public/media/preview/prebuilts/pages/widgets-feeds.png b/public/media/preview/prebuilts/pages/widgets-feeds.png new file mode 100644 index 0000000..2f22e56 Binary files /dev/null and b/public/media/preview/prebuilts/pages/widgets-feeds.png differ diff --git a/public/media/preview/prebuilts/pages/widgets-lists.png b/public/media/preview/prebuilts/pages/widgets-lists.png new file mode 100644 index 0000000..de360dd Binary files /dev/null and b/public/media/preview/prebuilts/pages/widgets-lists.png differ diff --git a/public/media/preview/prebuilts/pages/widgets-mixed.png b/public/media/preview/prebuilts/pages/widgets-mixed.png new file mode 100644 index 0000000..fa8028c Binary files /dev/null and b/public/media/preview/prebuilts/pages/widgets-mixed.png differ diff --git a/public/media/preview/prebuilts/pages/widgets-stats.png b/public/media/preview/prebuilts/pages/widgets-stats.png new file mode 100644 index 0000000..72107b3 Binary files /dev/null and b/public/media/preview/prebuilts/pages/widgets-stats.png differ diff --git a/public/media/preview/prebuilts/pages/widgets-tables.png b/public/media/preview/prebuilts/pages/widgets-tables.png new file mode 100644 index 0000000..1d874ac Binary files /dev/null and b/public/media/preview/prebuilts/pages/widgets-tables.png differ diff --git a/public/media/preview/prebuilts/pages/wizard-2factorauth.png b/public/media/preview/prebuilts/pages/wizard-2factorauth.png new file mode 100644 index 0000000..eebd191 Binary files /dev/null and b/public/media/preview/prebuilts/pages/wizard-2factorauth.png differ diff --git a/public/media/preview/prebuilts/pages/wizard-horizontal.png b/public/media/preview/prebuilts/pages/wizard-horizontal.png new file mode 100644 index 0000000..610f61b Binary files /dev/null and b/public/media/preview/prebuilts/pages/wizard-horizontal.png differ diff --git a/public/media/preview/prebuilts/pages/wizard-vertical.png b/public/media/preview/prebuilts/pages/wizard-vertical.png new file mode 100644 index 0000000..ef14757 Binary files /dev/null and b/public/media/preview/prebuilts/pages/wizard-vertical.png differ diff --git a/public/media/product/1.svg b/public/media/product/1.svg new file mode 100644 index 0000000..dba5d4b --- /dev/null +++ b/public/media/product/1.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/product/2.svg b/public/media/product/2.svg new file mode 100644 index 0000000..68f2823 --- /dev/null +++ b/public/media/product/2.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/product/3.svg b/public/media/product/3.svg new file mode 100644 index 0000000..09527ab --- /dev/null +++ b/public/media/product/3.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/product/5.svg b/public/media/product/5.svg new file mode 100644 index 0000000..7b89061 --- /dev/null +++ b/public/media/product/5.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/products/1.png b/public/media/products/1.png new file mode 100644 index 0000000..479427b Binary files /dev/null and b/public/media/products/1.png differ diff --git a/public/media/products/10.png b/public/media/products/10.png new file mode 100644 index 0000000..95ce885 Binary files /dev/null and b/public/media/products/10.png differ diff --git a/public/media/products/11.png b/public/media/products/11.png new file mode 100644 index 0000000..6f658fa Binary files /dev/null and b/public/media/products/11.png differ diff --git a/public/media/products/12.png b/public/media/products/12.png new file mode 100644 index 0000000..317fa03 Binary files /dev/null and b/public/media/products/12.png differ diff --git a/public/media/products/13.png b/public/media/products/13.png new file mode 100644 index 0000000..f76e9aa Binary files /dev/null and b/public/media/products/13.png differ diff --git a/public/media/products/14.png b/public/media/products/14.png new file mode 100644 index 0000000..84153f0 Binary files /dev/null and b/public/media/products/14.png differ diff --git a/public/media/products/15.png b/public/media/products/15.png new file mode 100644 index 0000000..0194735 Binary files /dev/null and b/public/media/products/15.png differ diff --git a/public/media/products/16.png b/public/media/products/16.png new file mode 100644 index 0000000..85998f1 Binary files /dev/null and b/public/media/products/16.png differ diff --git a/public/media/products/17.png b/public/media/products/17.png new file mode 100644 index 0000000..a4c140f Binary files /dev/null and b/public/media/products/17.png differ diff --git a/public/media/products/18.png b/public/media/products/18.png new file mode 100644 index 0000000..9d6b9c8 Binary files /dev/null and b/public/media/products/18.png differ diff --git a/public/media/products/19.png b/public/media/products/19.png new file mode 100644 index 0000000..e33a946 Binary files /dev/null and b/public/media/products/19.png differ diff --git a/public/media/products/2.png b/public/media/products/2.png new file mode 100644 index 0000000..0f21fa7 Binary files /dev/null and b/public/media/products/2.png differ diff --git a/public/media/products/20.png b/public/media/products/20.png new file mode 100644 index 0000000..7830b3d Binary files /dev/null and b/public/media/products/20.png differ diff --git a/public/media/products/21.png b/public/media/products/21.png new file mode 100644 index 0000000..829ffdc Binary files /dev/null and b/public/media/products/21.png differ diff --git a/public/media/products/22.png b/public/media/products/22.png new file mode 100644 index 0000000..5611a60 Binary files /dev/null and b/public/media/products/22.png differ diff --git a/public/media/products/3.png b/public/media/products/3.png new file mode 100644 index 0000000..5dc49d4 Binary files /dev/null and b/public/media/products/3.png differ diff --git a/public/media/products/4.png b/public/media/products/4.png new file mode 100644 index 0000000..05f1d7d Binary files /dev/null and b/public/media/products/4.png differ diff --git a/public/media/products/5.png b/public/media/products/5.png new file mode 100644 index 0000000..4951cfa Binary files /dev/null and b/public/media/products/5.png differ diff --git a/public/media/products/6.png b/public/media/products/6.png new file mode 100644 index 0000000..a36e614 Binary files /dev/null and b/public/media/products/6.png differ diff --git a/public/media/products/7.png b/public/media/products/7.png new file mode 100644 index 0000000..689fdc9 Binary files /dev/null and b/public/media/products/7.png differ diff --git a/public/media/products/8.png b/public/media/products/8.png new file mode 100644 index 0000000..849e84a Binary files /dev/null and b/public/media/products/8.png differ diff --git a/public/media/products/9.png b/public/media/products/9.png new file mode 100644 index 0000000..ee817de Binary files /dev/null and b/public/media/products/9.png differ diff --git a/public/media/smiles/happy.png b/public/media/smiles/happy.png new file mode 100644 index 0000000..69e9a55 Binary files /dev/null and b/public/media/smiles/happy.png differ diff --git a/public/media/smiles/sad.png b/public/media/smiles/sad.png new file mode 100644 index 0000000..b6d70fd Binary files /dev/null and b/public/media/smiles/sad.png differ diff --git a/public/media/smiles/shocked.png b/public/media/smiles/shocked.png new file mode 100644 index 0000000..5b63c9c Binary files /dev/null and b/public/media/smiles/shocked.png differ diff --git a/public/media/stock/1600x800/img-1.jpg b/public/media/stock/1600x800/img-1.jpg new file mode 100644 index 0000000..049b855 Binary files /dev/null and b/public/media/stock/1600x800/img-1.jpg differ diff --git a/public/media/stock/1600x800/img-2.jpg b/public/media/stock/1600x800/img-2.jpg new file mode 100644 index 0000000..c555ed7 Binary files /dev/null and b/public/media/stock/1600x800/img-2.jpg differ diff --git a/public/media/stock/1600x800/img-3.jpg b/public/media/stock/1600x800/img-3.jpg new file mode 100644 index 0000000..c129ab0 Binary files /dev/null and b/public/media/stock/1600x800/img-3.jpg differ diff --git a/public/media/stock/1600x800/img-4.jpg b/public/media/stock/1600x800/img-4.jpg new file mode 100644 index 0000000..a6c512e Binary files /dev/null and b/public/media/stock/1600x800/img-4.jpg differ diff --git a/public/media/stock/500x600/img-1.jpg b/public/media/stock/500x600/img-1.jpg new file mode 100644 index 0000000..7633734 Binary files /dev/null and b/public/media/stock/500x600/img-1.jpg differ diff --git a/public/media/stock/600x400/img-1.jpg b/public/media/stock/600x400/img-1.jpg new file mode 100644 index 0000000..c3ab89a Binary files /dev/null and b/public/media/stock/600x400/img-1.jpg differ diff --git a/public/media/stock/600x400/img-10.jpg b/public/media/stock/600x400/img-10.jpg new file mode 100644 index 0000000..9d7a36d Binary files /dev/null and b/public/media/stock/600x400/img-10.jpg differ diff --git a/public/media/stock/600x400/img-11.jpg b/public/media/stock/600x400/img-11.jpg new file mode 100644 index 0000000..d36e8dd Binary files /dev/null and b/public/media/stock/600x400/img-11.jpg differ diff --git a/public/media/stock/600x400/img-12.jpg b/public/media/stock/600x400/img-12.jpg new file mode 100644 index 0000000..2d842fa Binary files /dev/null and b/public/media/stock/600x400/img-12.jpg differ diff --git a/public/media/stock/600x400/img-13.jpg b/public/media/stock/600x400/img-13.jpg new file mode 100644 index 0000000..acffa7a Binary files /dev/null and b/public/media/stock/600x400/img-13.jpg differ diff --git a/public/media/stock/600x400/img-14.jpg b/public/media/stock/600x400/img-14.jpg new file mode 100644 index 0000000..5755509 Binary files /dev/null and b/public/media/stock/600x400/img-14.jpg differ diff --git a/public/media/stock/600x400/img-15.jpg b/public/media/stock/600x400/img-15.jpg new file mode 100644 index 0000000..5e24fe6 Binary files /dev/null and b/public/media/stock/600x400/img-15.jpg differ diff --git a/public/media/stock/600x400/img-16.jpg b/public/media/stock/600x400/img-16.jpg new file mode 100644 index 0000000..164cca7 Binary files /dev/null and b/public/media/stock/600x400/img-16.jpg differ diff --git a/public/media/stock/600x400/img-17.jpg b/public/media/stock/600x400/img-17.jpg new file mode 100644 index 0000000..4abf8fa Binary files /dev/null and b/public/media/stock/600x400/img-17.jpg differ diff --git a/public/media/stock/600x400/img-18.jpg b/public/media/stock/600x400/img-18.jpg new file mode 100644 index 0000000..d336fbe Binary files /dev/null and b/public/media/stock/600x400/img-18.jpg differ diff --git a/public/media/stock/600x400/img-19.jpg b/public/media/stock/600x400/img-19.jpg new file mode 100644 index 0000000..7ba200f Binary files /dev/null and b/public/media/stock/600x400/img-19.jpg differ diff --git a/public/media/stock/600x400/img-2.jpg b/public/media/stock/600x400/img-2.jpg new file mode 100644 index 0000000..75ad076 Binary files /dev/null and b/public/media/stock/600x400/img-2.jpg differ diff --git a/public/media/stock/600x400/img-20.jpg b/public/media/stock/600x400/img-20.jpg new file mode 100644 index 0000000..8d9265a Binary files /dev/null and b/public/media/stock/600x400/img-20.jpg differ diff --git a/public/media/stock/600x400/img-21.jpg b/public/media/stock/600x400/img-21.jpg new file mode 100644 index 0000000..0f50d60 Binary files /dev/null and b/public/media/stock/600x400/img-21.jpg differ diff --git a/public/media/stock/600x400/img-22.jpg b/public/media/stock/600x400/img-22.jpg new file mode 100644 index 0000000..d1967ec Binary files /dev/null and b/public/media/stock/600x400/img-22.jpg differ diff --git a/public/media/stock/600x400/img-23.jpg b/public/media/stock/600x400/img-23.jpg new file mode 100644 index 0000000..43df0cc Binary files /dev/null and b/public/media/stock/600x400/img-23.jpg differ diff --git a/public/media/stock/600x400/img-24.jpg b/public/media/stock/600x400/img-24.jpg new file mode 100644 index 0000000..9f65e33 Binary files /dev/null and b/public/media/stock/600x400/img-24.jpg differ diff --git a/public/media/stock/600x400/img-25.jpg b/public/media/stock/600x400/img-25.jpg new file mode 100644 index 0000000..c6ebd1f Binary files /dev/null and b/public/media/stock/600x400/img-25.jpg differ diff --git a/public/media/stock/600x400/img-26.jpg b/public/media/stock/600x400/img-26.jpg new file mode 100644 index 0000000..9b1a25d Binary files /dev/null and b/public/media/stock/600x400/img-26.jpg differ diff --git a/public/media/stock/600x400/img-27.jpg b/public/media/stock/600x400/img-27.jpg new file mode 100644 index 0000000..b14d898 Binary files /dev/null and b/public/media/stock/600x400/img-27.jpg differ diff --git a/public/media/stock/600x400/img-28.jpg b/public/media/stock/600x400/img-28.jpg new file mode 100644 index 0000000..e937565 Binary files /dev/null and b/public/media/stock/600x400/img-28.jpg differ diff --git a/public/media/stock/600x400/img-29.jpg b/public/media/stock/600x400/img-29.jpg new file mode 100644 index 0000000..bf8e155 Binary files /dev/null and b/public/media/stock/600x400/img-29.jpg differ diff --git a/public/media/stock/600x400/img-3.jpg b/public/media/stock/600x400/img-3.jpg new file mode 100644 index 0000000..60277ac Binary files /dev/null and b/public/media/stock/600x400/img-3.jpg differ diff --git a/public/media/stock/600x400/img-30.jpg b/public/media/stock/600x400/img-30.jpg new file mode 100644 index 0000000..16ce424 Binary files /dev/null and b/public/media/stock/600x400/img-30.jpg differ diff --git a/public/media/stock/600x400/img-31.jpg b/public/media/stock/600x400/img-31.jpg new file mode 100644 index 0000000..afa11aa Binary files /dev/null and b/public/media/stock/600x400/img-31.jpg differ diff --git a/public/media/stock/600x400/img-32.jpg b/public/media/stock/600x400/img-32.jpg new file mode 100644 index 0000000..e0dab80 Binary files /dev/null and b/public/media/stock/600x400/img-32.jpg differ diff --git a/public/media/stock/600x400/img-33.jpg b/public/media/stock/600x400/img-33.jpg new file mode 100644 index 0000000..8dbeb0c Binary files /dev/null and b/public/media/stock/600x400/img-33.jpg differ diff --git a/public/media/stock/600x400/img-34.jpg b/public/media/stock/600x400/img-34.jpg new file mode 100644 index 0000000..c1a73ed Binary files /dev/null and b/public/media/stock/600x400/img-34.jpg differ diff --git a/public/media/stock/600x400/img-35.jpg b/public/media/stock/600x400/img-35.jpg new file mode 100644 index 0000000..7e94fc9 Binary files /dev/null and b/public/media/stock/600x400/img-35.jpg differ diff --git a/public/media/stock/600x400/img-36.jpg b/public/media/stock/600x400/img-36.jpg new file mode 100644 index 0000000..c7b53c1 Binary files /dev/null and b/public/media/stock/600x400/img-36.jpg differ diff --git a/public/media/stock/600x400/img-37.jpg b/public/media/stock/600x400/img-37.jpg new file mode 100644 index 0000000..d1967ec Binary files /dev/null and b/public/media/stock/600x400/img-37.jpg differ diff --git a/public/media/stock/600x400/img-38.jpg b/public/media/stock/600x400/img-38.jpg new file mode 100644 index 0000000..4b371ba Binary files /dev/null and b/public/media/stock/600x400/img-38.jpg differ diff --git a/public/media/stock/600x400/img-39.jpg b/public/media/stock/600x400/img-39.jpg new file mode 100644 index 0000000..02645d6 Binary files /dev/null and b/public/media/stock/600x400/img-39.jpg differ diff --git a/public/media/stock/600x400/img-4.jpg b/public/media/stock/600x400/img-4.jpg new file mode 100644 index 0000000..c72326d Binary files /dev/null and b/public/media/stock/600x400/img-4.jpg differ diff --git a/public/media/stock/600x400/img-40.jpg b/public/media/stock/600x400/img-40.jpg new file mode 100644 index 0000000..a1738b3 Binary files /dev/null and b/public/media/stock/600x400/img-40.jpg differ diff --git a/public/media/stock/600x400/img-41.jpg b/public/media/stock/600x400/img-41.jpg new file mode 100644 index 0000000..7931ea0 Binary files /dev/null and b/public/media/stock/600x400/img-41.jpg differ diff --git a/public/media/stock/600x400/img-42.jpg b/public/media/stock/600x400/img-42.jpg new file mode 100644 index 0000000..1f9ac6e Binary files /dev/null and b/public/media/stock/600x400/img-42.jpg differ diff --git a/public/media/stock/600x400/img-43.jpg b/public/media/stock/600x400/img-43.jpg new file mode 100644 index 0000000..80a3304 Binary files /dev/null and b/public/media/stock/600x400/img-43.jpg differ diff --git a/public/media/stock/600x400/img-44.jpg b/public/media/stock/600x400/img-44.jpg new file mode 100644 index 0000000..4fb604b Binary files /dev/null and b/public/media/stock/600x400/img-44.jpg differ diff --git a/public/media/stock/600x400/img-45.jpg b/public/media/stock/600x400/img-45.jpg new file mode 100644 index 0000000..a9737dd Binary files /dev/null and b/public/media/stock/600x400/img-45.jpg differ diff --git a/public/media/stock/600x400/img-46.jpg b/public/media/stock/600x400/img-46.jpg new file mode 100644 index 0000000..a8f04af Binary files /dev/null and b/public/media/stock/600x400/img-46.jpg differ diff --git a/public/media/stock/600x400/img-47.jpg b/public/media/stock/600x400/img-47.jpg new file mode 100644 index 0000000..1ffbd92 Binary files /dev/null and b/public/media/stock/600x400/img-47.jpg differ diff --git a/public/media/stock/600x400/img-48.jpg b/public/media/stock/600x400/img-48.jpg new file mode 100644 index 0000000..9fdf01d Binary files /dev/null and b/public/media/stock/600x400/img-48.jpg differ diff --git a/public/media/stock/600x400/img-49.jpg b/public/media/stock/600x400/img-49.jpg new file mode 100644 index 0000000..5cfad28 Binary files /dev/null and b/public/media/stock/600x400/img-49.jpg differ diff --git a/public/media/stock/600x400/img-5.jpg b/public/media/stock/600x400/img-5.jpg new file mode 100644 index 0000000..8336470 Binary files /dev/null and b/public/media/stock/600x400/img-5.jpg differ diff --git a/public/media/stock/600x400/img-50.jpg b/public/media/stock/600x400/img-50.jpg new file mode 100644 index 0000000..ecb3471 Binary files /dev/null and b/public/media/stock/600x400/img-50.jpg differ diff --git a/public/media/stock/600x400/img-51.jpg b/public/media/stock/600x400/img-51.jpg new file mode 100644 index 0000000..4638919 Binary files /dev/null and b/public/media/stock/600x400/img-51.jpg differ diff --git a/public/media/stock/600x400/img-52.jpg b/public/media/stock/600x400/img-52.jpg new file mode 100644 index 0000000..ca02ad2 Binary files /dev/null and b/public/media/stock/600x400/img-52.jpg differ diff --git a/public/media/stock/600x400/img-53.jpg b/public/media/stock/600x400/img-53.jpg new file mode 100644 index 0000000..3857af3 Binary files /dev/null and b/public/media/stock/600x400/img-53.jpg differ diff --git a/public/media/stock/600x400/img-54.jpg b/public/media/stock/600x400/img-54.jpg new file mode 100644 index 0000000..046bdc5 Binary files /dev/null and b/public/media/stock/600x400/img-54.jpg differ diff --git a/public/media/stock/600x400/img-55.jpg b/public/media/stock/600x400/img-55.jpg new file mode 100644 index 0000000..e245b9f Binary files /dev/null and b/public/media/stock/600x400/img-55.jpg differ diff --git a/public/media/stock/600x400/img-56.jpg b/public/media/stock/600x400/img-56.jpg new file mode 100644 index 0000000..0479f13 Binary files /dev/null and b/public/media/stock/600x400/img-56.jpg differ diff --git a/public/media/stock/600x400/img-57.jpg b/public/media/stock/600x400/img-57.jpg new file mode 100644 index 0000000..d88702b Binary files /dev/null and b/public/media/stock/600x400/img-57.jpg differ diff --git a/public/media/stock/600x400/img-58.jpg b/public/media/stock/600x400/img-58.jpg new file mode 100644 index 0000000..6170cfe Binary files /dev/null and b/public/media/stock/600x400/img-58.jpg differ diff --git a/public/media/stock/600x400/img-59.jpg b/public/media/stock/600x400/img-59.jpg new file mode 100644 index 0000000..357a4d2 Binary files /dev/null and b/public/media/stock/600x400/img-59.jpg differ diff --git a/public/media/stock/600x400/img-6.jpg b/public/media/stock/600x400/img-6.jpg new file mode 100644 index 0000000..f4dbf89 Binary files /dev/null and b/public/media/stock/600x400/img-6.jpg differ diff --git a/public/media/stock/600x400/img-60.jpg b/public/media/stock/600x400/img-60.jpg new file mode 100644 index 0000000..d723e68 Binary files /dev/null and b/public/media/stock/600x400/img-60.jpg differ diff --git a/public/media/stock/600x400/img-61.jpg b/public/media/stock/600x400/img-61.jpg new file mode 100644 index 0000000..69eb3f3 Binary files /dev/null and b/public/media/stock/600x400/img-61.jpg differ diff --git a/public/media/stock/600x400/img-62.jpg b/public/media/stock/600x400/img-62.jpg new file mode 100644 index 0000000..0c483fa Binary files /dev/null and b/public/media/stock/600x400/img-62.jpg differ diff --git a/public/media/stock/600x400/img-63.jpg b/public/media/stock/600x400/img-63.jpg new file mode 100644 index 0000000..d902164 Binary files /dev/null and b/public/media/stock/600x400/img-63.jpg differ diff --git a/public/media/stock/600x400/img-64.jpg b/public/media/stock/600x400/img-64.jpg new file mode 100644 index 0000000..c5034dc Binary files /dev/null and b/public/media/stock/600x400/img-64.jpg differ diff --git a/public/media/stock/600x400/img-65.jpg b/public/media/stock/600x400/img-65.jpg new file mode 100644 index 0000000..89c2623 Binary files /dev/null and b/public/media/stock/600x400/img-65.jpg differ diff --git a/public/media/stock/600x400/img-66.jpg b/public/media/stock/600x400/img-66.jpg new file mode 100644 index 0000000..f1a6c47 Binary files /dev/null and b/public/media/stock/600x400/img-66.jpg differ diff --git a/public/media/stock/600x400/img-67.jpg b/public/media/stock/600x400/img-67.jpg new file mode 100644 index 0000000..04f2b6f Binary files /dev/null and b/public/media/stock/600x400/img-67.jpg differ diff --git a/public/media/stock/600x400/img-68.jpg b/public/media/stock/600x400/img-68.jpg new file mode 100644 index 0000000..645cd7d Binary files /dev/null and b/public/media/stock/600x400/img-68.jpg differ diff --git a/public/media/stock/600x400/img-69.jpg b/public/media/stock/600x400/img-69.jpg new file mode 100644 index 0000000..0b48e1c Binary files /dev/null and b/public/media/stock/600x400/img-69.jpg differ diff --git a/public/media/stock/600x400/img-7.jpg b/public/media/stock/600x400/img-7.jpg new file mode 100644 index 0000000..b2a98be Binary files /dev/null and b/public/media/stock/600x400/img-7.jpg differ diff --git a/public/media/stock/600x400/img-70.jpg b/public/media/stock/600x400/img-70.jpg new file mode 100644 index 0000000..743b01d Binary files /dev/null and b/public/media/stock/600x400/img-70.jpg differ diff --git a/public/media/stock/600x400/img-71.jpg b/public/media/stock/600x400/img-71.jpg new file mode 100644 index 0000000..66dd348 Binary files /dev/null and b/public/media/stock/600x400/img-71.jpg differ diff --git a/public/media/stock/600x400/img-72.jpg b/public/media/stock/600x400/img-72.jpg new file mode 100644 index 0000000..08b65a6 Binary files /dev/null and b/public/media/stock/600x400/img-72.jpg differ diff --git a/public/media/stock/600x400/img-73.jpg b/public/media/stock/600x400/img-73.jpg new file mode 100644 index 0000000..cd66a40 Binary files /dev/null and b/public/media/stock/600x400/img-73.jpg differ diff --git a/public/media/stock/600x400/img-74.jpg b/public/media/stock/600x400/img-74.jpg new file mode 100644 index 0000000..60b8bfd Binary files /dev/null and b/public/media/stock/600x400/img-74.jpg differ diff --git a/public/media/stock/600x400/img-75-dark.jpg b/public/media/stock/600x400/img-75-dark.jpg new file mode 100644 index 0000000..c0825c3 Binary files /dev/null and b/public/media/stock/600x400/img-75-dark.jpg differ diff --git a/public/media/stock/600x400/img-75.jpg b/public/media/stock/600x400/img-75.jpg new file mode 100644 index 0000000..6068acf Binary files /dev/null and b/public/media/stock/600x400/img-75.jpg differ diff --git a/public/media/stock/600x400/img-76.jpg b/public/media/stock/600x400/img-76.jpg new file mode 100644 index 0000000..f11e767 Binary files /dev/null and b/public/media/stock/600x400/img-76.jpg differ diff --git a/public/media/stock/600x400/img-77.jpg b/public/media/stock/600x400/img-77.jpg new file mode 100644 index 0000000..e58a4a1 Binary files /dev/null and b/public/media/stock/600x400/img-77.jpg differ diff --git a/public/media/stock/600x400/img-78.jpg b/public/media/stock/600x400/img-78.jpg new file mode 100644 index 0000000..ad9a9cf Binary files /dev/null and b/public/media/stock/600x400/img-78.jpg differ diff --git a/public/media/stock/600x400/img-79.jpg b/public/media/stock/600x400/img-79.jpg new file mode 100644 index 0000000..8aa39d3 Binary files /dev/null and b/public/media/stock/600x400/img-79.jpg differ diff --git a/public/media/stock/600x400/img-8.jpg b/public/media/stock/600x400/img-8.jpg new file mode 100644 index 0000000..b149b70 Binary files /dev/null and b/public/media/stock/600x400/img-8.jpg differ diff --git a/public/media/stock/600x400/img-80.jpg b/public/media/stock/600x400/img-80.jpg new file mode 100644 index 0000000..185982f Binary files /dev/null and b/public/media/stock/600x400/img-80.jpg differ diff --git a/public/media/stock/600x400/img-9.jpg b/public/media/stock/600x400/img-9.jpg new file mode 100644 index 0000000..579b960 Binary files /dev/null and b/public/media/stock/600x400/img-9.jpg differ diff --git a/public/media/stock/600x600/img-1.jpg b/public/media/stock/600x600/img-1.jpg new file mode 100644 index 0000000..8b0116c Binary files /dev/null and b/public/media/stock/600x600/img-1.jpg differ diff --git a/public/media/stock/600x600/img-10.jpg b/public/media/stock/600x600/img-10.jpg new file mode 100644 index 0000000..4c22d2f Binary files /dev/null and b/public/media/stock/600x600/img-10.jpg differ diff --git a/public/media/stock/600x600/img-11.jpg b/public/media/stock/600x600/img-11.jpg new file mode 100644 index 0000000..d68c010 Binary files /dev/null and b/public/media/stock/600x600/img-11.jpg differ diff --git a/public/media/stock/600x600/img-12.jpg b/public/media/stock/600x600/img-12.jpg new file mode 100644 index 0000000..3324a43 Binary files /dev/null and b/public/media/stock/600x600/img-12.jpg differ diff --git a/public/media/stock/600x600/img-13.jpg b/public/media/stock/600x600/img-13.jpg new file mode 100644 index 0000000..731adf8 Binary files /dev/null and b/public/media/stock/600x600/img-13.jpg differ diff --git a/public/media/stock/600x600/img-14.jpg b/public/media/stock/600x600/img-14.jpg new file mode 100644 index 0000000..893b00a Binary files /dev/null and b/public/media/stock/600x600/img-14.jpg differ diff --git a/public/media/stock/600x600/img-15.jpg b/public/media/stock/600x600/img-15.jpg new file mode 100644 index 0000000..93ab387 Binary files /dev/null and b/public/media/stock/600x600/img-15.jpg differ diff --git a/public/media/stock/600x600/img-16.jpg b/public/media/stock/600x600/img-16.jpg new file mode 100644 index 0000000..1139140 Binary files /dev/null and b/public/media/stock/600x600/img-16.jpg differ diff --git a/public/media/stock/600x600/img-17.jpg b/public/media/stock/600x600/img-17.jpg new file mode 100644 index 0000000..9ec1e83 Binary files /dev/null and b/public/media/stock/600x600/img-17.jpg differ diff --git a/public/media/stock/600x600/img-18.jpg b/public/media/stock/600x600/img-18.jpg new file mode 100644 index 0000000..dc4f593 Binary files /dev/null and b/public/media/stock/600x600/img-18.jpg differ diff --git a/public/media/stock/600x600/img-2.jpg b/public/media/stock/600x600/img-2.jpg new file mode 100644 index 0000000..eba3c2b Binary files /dev/null and b/public/media/stock/600x600/img-2.jpg differ diff --git a/public/media/stock/600x600/img-20.jpg b/public/media/stock/600x600/img-20.jpg new file mode 100644 index 0000000..ec01e16 Binary files /dev/null and b/public/media/stock/600x600/img-20.jpg differ diff --git a/public/media/stock/600x600/img-21.jpg b/public/media/stock/600x600/img-21.jpg new file mode 100644 index 0000000..47acc23 Binary files /dev/null and b/public/media/stock/600x600/img-21.jpg differ diff --git a/public/media/stock/600x600/img-22.jpg b/public/media/stock/600x600/img-22.jpg new file mode 100644 index 0000000..e04dfdf Binary files /dev/null and b/public/media/stock/600x600/img-22.jpg differ diff --git a/public/media/stock/600x600/img-23.jpg b/public/media/stock/600x600/img-23.jpg new file mode 100644 index 0000000..6a26e5c Binary files /dev/null and b/public/media/stock/600x600/img-23.jpg differ diff --git a/public/media/stock/600x600/img-24.jpg b/public/media/stock/600x600/img-24.jpg new file mode 100644 index 0000000..d89c72a Binary files /dev/null and b/public/media/stock/600x600/img-24.jpg differ diff --git a/public/media/stock/600x600/img-25.jpg b/public/media/stock/600x600/img-25.jpg new file mode 100644 index 0000000..af9e868 Binary files /dev/null and b/public/media/stock/600x600/img-25.jpg differ diff --git a/public/media/stock/600x600/img-26.jpg b/public/media/stock/600x600/img-26.jpg new file mode 100644 index 0000000..1b2a791 Binary files /dev/null and b/public/media/stock/600x600/img-26.jpg differ diff --git a/public/media/stock/600x600/img-27.jpg b/public/media/stock/600x600/img-27.jpg new file mode 100644 index 0000000..19fe063 Binary files /dev/null and b/public/media/stock/600x600/img-27.jpg differ diff --git a/public/media/stock/600x600/img-28.jpg b/public/media/stock/600x600/img-28.jpg new file mode 100644 index 0000000..03913a4 Binary files /dev/null and b/public/media/stock/600x600/img-28.jpg differ diff --git a/public/media/stock/600x600/img-29.jpg b/public/media/stock/600x600/img-29.jpg new file mode 100644 index 0000000..6d89517 Binary files /dev/null and b/public/media/stock/600x600/img-29.jpg differ diff --git a/public/media/stock/600x600/img-3.jpg b/public/media/stock/600x600/img-3.jpg new file mode 100644 index 0000000..dfcc26d Binary files /dev/null and b/public/media/stock/600x600/img-3.jpg differ diff --git a/public/media/stock/600x600/img-30.jpg b/public/media/stock/600x600/img-30.jpg new file mode 100644 index 0000000..b77207f Binary files /dev/null and b/public/media/stock/600x600/img-30.jpg differ diff --git a/public/media/stock/600x600/img-31.jpg b/public/media/stock/600x600/img-31.jpg new file mode 100644 index 0000000..ac581d0 Binary files /dev/null and b/public/media/stock/600x600/img-31.jpg differ diff --git a/public/media/stock/600x600/img-32.jpg b/public/media/stock/600x600/img-32.jpg new file mode 100644 index 0000000..86334bb Binary files /dev/null and b/public/media/stock/600x600/img-32.jpg differ diff --git a/public/media/stock/600x600/img-33.jpg b/public/media/stock/600x600/img-33.jpg new file mode 100644 index 0000000..27158cc Binary files /dev/null and b/public/media/stock/600x600/img-33.jpg differ diff --git a/public/media/stock/600x600/img-34.jpg b/public/media/stock/600x600/img-34.jpg new file mode 100644 index 0000000..3e58213 Binary files /dev/null and b/public/media/stock/600x600/img-34.jpg differ diff --git a/public/media/stock/600x600/img-35.jpg b/public/media/stock/600x600/img-35.jpg new file mode 100644 index 0000000..3fb840f Binary files /dev/null and b/public/media/stock/600x600/img-35.jpg differ diff --git a/public/media/stock/600x600/img-36.jpg b/public/media/stock/600x600/img-36.jpg new file mode 100644 index 0000000..7b15746 Binary files /dev/null and b/public/media/stock/600x600/img-36.jpg differ diff --git a/public/media/stock/600x600/img-37.jpg b/public/media/stock/600x600/img-37.jpg new file mode 100644 index 0000000..0338e12 Binary files /dev/null and b/public/media/stock/600x600/img-37.jpg differ diff --git a/public/media/stock/600x600/img-38.jpg b/public/media/stock/600x600/img-38.jpg new file mode 100644 index 0000000..2dca34c Binary files /dev/null and b/public/media/stock/600x600/img-38.jpg differ diff --git a/public/media/stock/600x600/img-39.jpg b/public/media/stock/600x600/img-39.jpg new file mode 100644 index 0000000..e64ef53 Binary files /dev/null and b/public/media/stock/600x600/img-39.jpg differ diff --git a/public/media/stock/600x600/img-4.jpg b/public/media/stock/600x600/img-4.jpg new file mode 100644 index 0000000..85efce5 Binary files /dev/null and b/public/media/stock/600x600/img-4.jpg differ diff --git a/public/media/stock/600x600/img-40.jpg b/public/media/stock/600x600/img-40.jpg new file mode 100644 index 0000000..51fa901 Binary files /dev/null and b/public/media/stock/600x600/img-40.jpg differ diff --git a/public/media/stock/600x600/img-41.jpg b/public/media/stock/600x600/img-41.jpg new file mode 100644 index 0000000..72cb4b8 Binary files /dev/null and b/public/media/stock/600x600/img-41.jpg differ diff --git a/public/media/stock/600x600/img-42.jpg b/public/media/stock/600x600/img-42.jpg new file mode 100644 index 0000000..14974b7 Binary files /dev/null and b/public/media/stock/600x600/img-42.jpg differ diff --git a/public/media/stock/600x600/img-43.jpg b/public/media/stock/600x600/img-43.jpg new file mode 100644 index 0000000..9238c6d Binary files /dev/null and b/public/media/stock/600x600/img-43.jpg differ diff --git a/public/media/stock/600x600/img-44.jpg b/public/media/stock/600x600/img-44.jpg new file mode 100644 index 0000000..d7808f2 Binary files /dev/null and b/public/media/stock/600x600/img-44.jpg differ diff --git a/public/media/stock/600x600/img-45.jpg b/public/media/stock/600x600/img-45.jpg new file mode 100644 index 0000000..cb8d8b7 Binary files /dev/null and b/public/media/stock/600x600/img-45.jpg differ diff --git a/public/media/stock/600x600/img-46.jpg b/public/media/stock/600x600/img-46.jpg new file mode 100644 index 0000000..c60bba9 Binary files /dev/null and b/public/media/stock/600x600/img-46.jpg differ diff --git a/public/media/stock/600x600/img-47.jpg b/public/media/stock/600x600/img-47.jpg new file mode 100644 index 0000000..03090d1 Binary files /dev/null and b/public/media/stock/600x600/img-47.jpg differ diff --git a/public/media/stock/600x600/img-48.jpg b/public/media/stock/600x600/img-48.jpg new file mode 100644 index 0000000..1165f42 Binary files /dev/null and b/public/media/stock/600x600/img-48.jpg differ diff --git a/public/media/stock/600x600/img-49.jpg b/public/media/stock/600x600/img-49.jpg new file mode 100644 index 0000000..92c84c7 Binary files /dev/null and b/public/media/stock/600x600/img-49.jpg differ diff --git a/public/media/stock/600x600/img-5.jpg b/public/media/stock/600x600/img-5.jpg new file mode 100644 index 0000000..4ffa584 Binary files /dev/null and b/public/media/stock/600x600/img-5.jpg differ diff --git a/public/media/stock/600x600/img-50.jpg b/public/media/stock/600x600/img-50.jpg new file mode 100644 index 0000000..2e137ec Binary files /dev/null and b/public/media/stock/600x600/img-50.jpg differ diff --git a/public/media/stock/600x600/img-51.jpg b/public/media/stock/600x600/img-51.jpg new file mode 100644 index 0000000..e752f34 Binary files /dev/null and b/public/media/stock/600x600/img-51.jpg differ diff --git a/public/media/stock/600x600/img-52.jpg b/public/media/stock/600x600/img-52.jpg new file mode 100644 index 0000000..7eb982a Binary files /dev/null and b/public/media/stock/600x600/img-52.jpg differ diff --git a/public/media/stock/600x600/img-53.jpg b/public/media/stock/600x600/img-53.jpg new file mode 100644 index 0000000..1219c3e Binary files /dev/null and b/public/media/stock/600x600/img-53.jpg differ diff --git a/public/media/stock/600x600/img-54.jpg b/public/media/stock/600x600/img-54.jpg new file mode 100644 index 0000000..c1efddc Binary files /dev/null and b/public/media/stock/600x600/img-54.jpg differ diff --git a/public/media/stock/600x600/img-55.jpg b/public/media/stock/600x600/img-55.jpg new file mode 100644 index 0000000..581acbf Binary files /dev/null and b/public/media/stock/600x600/img-55.jpg differ diff --git a/public/media/stock/600x600/img-56.jpg b/public/media/stock/600x600/img-56.jpg new file mode 100644 index 0000000..0ecb6fd Binary files /dev/null and b/public/media/stock/600x600/img-56.jpg differ diff --git a/public/media/stock/600x600/img-57.jpg b/public/media/stock/600x600/img-57.jpg new file mode 100644 index 0000000..9e3f42e Binary files /dev/null and b/public/media/stock/600x600/img-57.jpg differ diff --git a/public/media/stock/600x600/img-58.jpg b/public/media/stock/600x600/img-58.jpg new file mode 100644 index 0000000..27bb75d Binary files /dev/null and b/public/media/stock/600x600/img-58.jpg differ diff --git a/public/media/stock/600x600/img-59.jpg b/public/media/stock/600x600/img-59.jpg new file mode 100644 index 0000000..da11905 Binary files /dev/null and b/public/media/stock/600x600/img-59.jpg differ diff --git a/public/media/stock/600x600/img-6.jpg b/public/media/stock/600x600/img-6.jpg new file mode 100644 index 0000000..1d3f799 Binary files /dev/null and b/public/media/stock/600x600/img-6.jpg differ diff --git a/public/media/stock/600x600/img-60.jpg b/public/media/stock/600x600/img-60.jpg new file mode 100644 index 0000000..2c24d42 Binary files /dev/null and b/public/media/stock/600x600/img-60.jpg differ diff --git a/public/media/stock/600x600/img-61.jpg b/public/media/stock/600x600/img-61.jpg new file mode 100644 index 0000000..b275b26 Binary files /dev/null and b/public/media/stock/600x600/img-61.jpg differ diff --git a/public/media/stock/600x600/img-62.jpg b/public/media/stock/600x600/img-62.jpg new file mode 100644 index 0000000..f450392 Binary files /dev/null and b/public/media/stock/600x600/img-62.jpg differ diff --git a/public/media/stock/600x600/img-63.jpg b/public/media/stock/600x600/img-63.jpg new file mode 100644 index 0000000..1a2ad6a Binary files /dev/null and b/public/media/stock/600x600/img-63.jpg differ diff --git a/public/media/stock/600x600/img-64.jpg b/public/media/stock/600x600/img-64.jpg new file mode 100644 index 0000000..d244bad Binary files /dev/null and b/public/media/stock/600x600/img-64.jpg differ diff --git a/public/media/stock/600x600/img-65.jpg b/public/media/stock/600x600/img-65.jpg new file mode 100644 index 0000000..f7cf269 Binary files /dev/null and b/public/media/stock/600x600/img-65.jpg differ diff --git a/public/media/stock/600x600/img-66.jpg b/public/media/stock/600x600/img-66.jpg new file mode 100644 index 0000000..70ef4ab Binary files /dev/null and b/public/media/stock/600x600/img-66.jpg differ diff --git a/public/media/stock/600x600/img-67.jpg b/public/media/stock/600x600/img-67.jpg new file mode 100644 index 0000000..9225b5e Binary files /dev/null and b/public/media/stock/600x600/img-67.jpg differ diff --git a/public/media/stock/600x600/img-68.jpg b/public/media/stock/600x600/img-68.jpg new file mode 100644 index 0000000..cabc047 Binary files /dev/null and b/public/media/stock/600x600/img-68.jpg differ diff --git a/public/media/stock/600x600/img-69.jpg b/public/media/stock/600x600/img-69.jpg new file mode 100644 index 0000000..253209d Binary files /dev/null and b/public/media/stock/600x600/img-69.jpg differ diff --git a/public/media/stock/600x600/img-7.jpg b/public/media/stock/600x600/img-7.jpg new file mode 100644 index 0000000..84504a1 Binary files /dev/null and b/public/media/stock/600x600/img-7.jpg differ diff --git a/public/media/stock/600x600/img-70.jpg b/public/media/stock/600x600/img-70.jpg new file mode 100644 index 0000000..332ddbd Binary files /dev/null and b/public/media/stock/600x600/img-70.jpg differ diff --git a/public/media/stock/600x600/img-71.jpg b/public/media/stock/600x600/img-71.jpg new file mode 100644 index 0000000..b147480 Binary files /dev/null and b/public/media/stock/600x600/img-71.jpg differ diff --git a/public/media/stock/600x600/img-72.jpg b/public/media/stock/600x600/img-72.jpg new file mode 100644 index 0000000..424ea6c Binary files /dev/null and b/public/media/stock/600x600/img-72.jpg differ diff --git a/public/media/stock/600x600/img-73.jpg b/public/media/stock/600x600/img-73.jpg new file mode 100644 index 0000000..24f33e1 Binary files /dev/null and b/public/media/stock/600x600/img-73.jpg differ diff --git a/public/media/stock/600x600/img-74.jpg b/public/media/stock/600x600/img-74.jpg new file mode 100644 index 0000000..ae917a8 Binary files /dev/null and b/public/media/stock/600x600/img-74.jpg differ diff --git a/public/media/stock/600x600/img-75.jpg b/public/media/stock/600x600/img-75.jpg new file mode 100644 index 0000000..8f2a212 Binary files /dev/null and b/public/media/stock/600x600/img-75.jpg differ diff --git a/public/media/stock/600x600/img-76.jpg b/public/media/stock/600x600/img-76.jpg new file mode 100644 index 0000000..79e9261 Binary files /dev/null and b/public/media/stock/600x600/img-76.jpg differ diff --git a/public/media/stock/600x600/img-77.jpg b/public/media/stock/600x600/img-77.jpg new file mode 100644 index 0000000..0473c4e Binary files /dev/null and b/public/media/stock/600x600/img-77.jpg differ diff --git a/public/media/stock/600x600/img-78.jpg b/public/media/stock/600x600/img-78.jpg new file mode 100644 index 0000000..25a17d2 Binary files /dev/null and b/public/media/stock/600x600/img-78.jpg differ diff --git a/public/media/stock/600x600/img-79.jpg b/public/media/stock/600x600/img-79.jpg new file mode 100644 index 0000000..b7618ce Binary files /dev/null and b/public/media/stock/600x600/img-79.jpg differ diff --git a/public/media/stock/600x600/img-8.jpg b/public/media/stock/600x600/img-8.jpg new file mode 100644 index 0000000..a07982f Binary files /dev/null and b/public/media/stock/600x600/img-8.jpg differ diff --git a/public/media/stock/600x600/img-80.jpg b/public/media/stock/600x600/img-80.jpg new file mode 100644 index 0000000..d0e0a42 Binary files /dev/null and b/public/media/stock/600x600/img-80.jpg differ diff --git a/public/media/stock/600x600/img-81.jpg b/public/media/stock/600x600/img-81.jpg new file mode 100644 index 0000000..c05dcb4 Binary files /dev/null and b/public/media/stock/600x600/img-81.jpg differ diff --git a/public/media/stock/600x600/img-82.jpg b/public/media/stock/600x600/img-82.jpg new file mode 100644 index 0000000..998794a Binary files /dev/null and b/public/media/stock/600x600/img-82.jpg differ diff --git a/public/media/stock/600x600/img-83.jpg b/public/media/stock/600x600/img-83.jpg new file mode 100644 index 0000000..36981d2 Binary files /dev/null and b/public/media/stock/600x600/img-83.jpg differ diff --git a/public/media/stock/600x600/img-84.jpg b/public/media/stock/600x600/img-84.jpg new file mode 100644 index 0000000..2489ad9 Binary files /dev/null and b/public/media/stock/600x600/img-84.jpg differ diff --git a/public/media/stock/600x600/img-85.jpg b/public/media/stock/600x600/img-85.jpg new file mode 100644 index 0000000..7c22051 Binary files /dev/null and b/public/media/stock/600x600/img-85.jpg differ diff --git a/public/media/stock/600x600/img-86.jpg b/public/media/stock/600x600/img-86.jpg new file mode 100644 index 0000000..a486065 Binary files /dev/null and b/public/media/stock/600x600/img-86.jpg differ diff --git a/public/media/stock/600x600/img-87.jpg b/public/media/stock/600x600/img-87.jpg new file mode 100644 index 0000000..082e4be Binary files /dev/null and b/public/media/stock/600x600/img-87.jpg differ diff --git a/public/media/stock/600x600/img-9.jpg b/public/media/stock/600x600/img-9.jpg new file mode 100644 index 0000000..40419d4 Binary files /dev/null and b/public/media/stock/600x600/img-9.jpg differ diff --git a/public/media/stock/900x600/1.jpg b/public/media/stock/900x600/1.jpg new file mode 100644 index 0000000..f1bfb33 Binary files /dev/null and b/public/media/stock/900x600/1.jpg differ diff --git a/public/media/stock/900x600/10.jpg b/public/media/stock/900x600/10.jpg new file mode 100644 index 0000000..bb0364a Binary files /dev/null and b/public/media/stock/900x600/10.jpg differ diff --git a/public/media/stock/900x600/11.jpg b/public/media/stock/900x600/11.jpg new file mode 100644 index 0000000..410152d Binary files /dev/null and b/public/media/stock/900x600/11.jpg differ diff --git a/public/media/stock/900x600/12.jpg b/public/media/stock/900x600/12.jpg new file mode 100644 index 0000000..e52e3e4 Binary files /dev/null and b/public/media/stock/900x600/12.jpg differ diff --git a/public/media/stock/900x600/13.jpg b/public/media/stock/900x600/13.jpg new file mode 100644 index 0000000..ac895cf Binary files /dev/null and b/public/media/stock/900x600/13.jpg differ diff --git a/public/media/stock/900x600/14.jpg b/public/media/stock/900x600/14.jpg new file mode 100644 index 0000000..0415829 Binary files /dev/null and b/public/media/stock/900x600/14.jpg differ diff --git a/public/media/stock/900x600/15.jpg b/public/media/stock/900x600/15.jpg new file mode 100644 index 0000000..fdb2c37 Binary files /dev/null and b/public/media/stock/900x600/15.jpg differ diff --git a/public/media/stock/900x600/16.jpg b/public/media/stock/900x600/16.jpg new file mode 100644 index 0000000..8eb653d Binary files /dev/null and b/public/media/stock/900x600/16.jpg differ diff --git a/public/media/stock/900x600/17.jpg b/public/media/stock/900x600/17.jpg new file mode 100644 index 0000000..aa3c94a Binary files /dev/null and b/public/media/stock/900x600/17.jpg differ diff --git a/public/media/stock/900x600/18.jpg b/public/media/stock/900x600/18.jpg new file mode 100644 index 0000000..63e7eb1 Binary files /dev/null and b/public/media/stock/900x600/18.jpg differ diff --git a/public/media/stock/900x600/19.jpg b/public/media/stock/900x600/19.jpg new file mode 100644 index 0000000..ae2475c Binary files /dev/null and b/public/media/stock/900x600/19.jpg differ diff --git a/public/media/stock/900x600/2.jpg b/public/media/stock/900x600/2.jpg new file mode 100644 index 0000000..5d8af2a Binary files /dev/null and b/public/media/stock/900x600/2.jpg differ diff --git a/public/media/stock/900x600/20.jpg b/public/media/stock/900x600/20.jpg new file mode 100644 index 0000000..5a29b2f Binary files /dev/null and b/public/media/stock/900x600/20.jpg differ diff --git a/public/media/stock/900x600/21.jpg b/public/media/stock/900x600/21.jpg new file mode 100644 index 0000000..aad7301 Binary files /dev/null and b/public/media/stock/900x600/21.jpg differ diff --git a/public/media/stock/900x600/22.jpg b/public/media/stock/900x600/22.jpg new file mode 100644 index 0000000..77a9ae4 Binary files /dev/null and b/public/media/stock/900x600/22.jpg differ diff --git a/public/media/stock/900x600/23.jpg b/public/media/stock/900x600/23.jpg new file mode 100644 index 0000000..501ee3a Binary files /dev/null and b/public/media/stock/900x600/23.jpg differ diff --git a/public/media/stock/900x600/24.jpg b/public/media/stock/900x600/24.jpg new file mode 100644 index 0000000..29ee330 Binary files /dev/null and b/public/media/stock/900x600/24.jpg differ diff --git a/public/media/stock/900x600/25.jpg b/public/media/stock/900x600/25.jpg new file mode 100644 index 0000000..59a8980 Binary files /dev/null and b/public/media/stock/900x600/25.jpg differ diff --git a/public/media/stock/900x600/26.jpg b/public/media/stock/900x600/26.jpg new file mode 100644 index 0000000..154dd54 Binary files /dev/null and b/public/media/stock/900x600/26.jpg differ diff --git a/public/media/stock/900x600/27.jpg b/public/media/stock/900x600/27.jpg new file mode 100644 index 0000000..7498fd6 Binary files /dev/null and b/public/media/stock/900x600/27.jpg differ diff --git a/public/media/stock/900x600/28.jpg b/public/media/stock/900x600/28.jpg new file mode 100644 index 0000000..efedbe1 Binary files /dev/null and b/public/media/stock/900x600/28.jpg differ diff --git a/public/media/stock/900x600/29.jpg b/public/media/stock/900x600/29.jpg new file mode 100644 index 0000000..f73526a Binary files /dev/null and b/public/media/stock/900x600/29.jpg differ diff --git a/public/media/stock/900x600/3.jpg b/public/media/stock/900x600/3.jpg new file mode 100644 index 0000000..8cd206e Binary files /dev/null and b/public/media/stock/900x600/3.jpg differ diff --git a/public/media/stock/900x600/30.jpg b/public/media/stock/900x600/30.jpg new file mode 100644 index 0000000..72f89ae Binary files /dev/null and b/public/media/stock/900x600/30.jpg differ diff --git a/public/media/stock/900x600/31.jpg b/public/media/stock/900x600/31.jpg new file mode 100644 index 0000000..0fe7db3 Binary files /dev/null and b/public/media/stock/900x600/31.jpg differ diff --git a/public/media/stock/900x600/32.jpg b/public/media/stock/900x600/32.jpg new file mode 100644 index 0000000..9d6c8e3 Binary files /dev/null and b/public/media/stock/900x600/32.jpg differ diff --git a/public/media/stock/900x600/33.jpg b/public/media/stock/900x600/33.jpg new file mode 100644 index 0000000..fd906ed Binary files /dev/null and b/public/media/stock/900x600/33.jpg differ diff --git a/public/media/stock/900x600/34.jpg b/public/media/stock/900x600/34.jpg new file mode 100644 index 0000000..67b2fc9 Binary files /dev/null and b/public/media/stock/900x600/34.jpg differ diff --git a/public/media/stock/900x600/35.jpg b/public/media/stock/900x600/35.jpg new file mode 100644 index 0000000..90f93a1 Binary files /dev/null and b/public/media/stock/900x600/35.jpg differ diff --git a/public/media/stock/900x600/36.jpg b/public/media/stock/900x600/36.jpg new file mode 100644 index 0000000..296e537 Binary files /dev/null and b/public/media/stock/900x600/36.jpg differ diff --git a/public/media/stock/900x600/37.jpg b/public/media/stock/900x600/37.jpg new file mode 100644 index 0000000..17fe147 Binary files /dev/null and b/public/media/stock/900x600/37.jpg differ diff --git a/public/media/stock/900x600/38.jpg b/public/media/stock/900x600/38.jpg new file mode 100644 index 0000000..3e07897 Binary files /dev/null and b/public/media/stock/900x600/38.jpg differ diff --git a/public/media/stock/900x600/39.jpg b/public/media/stock/900x600/39.jpg new file mode 100644 index 0000000..dc31caa Binary files /dev/null and b/public/media/stock/900x600/39.jpg differ diff --git a/public/media/stock/900x600/4.jpg b/public/media/stock/900x600/4.jpg new file mode 100644 index 0000000..377034f Binary files /dev/null and b/public/media/stock/900x600/4.jpg differ diff --git a/public/media/stock/900x600/40.jpg b/public/media/stock/900x600/40.jpg new file mode 100644 index 0000000..055370b Binary files /dev/null and b/public/media/stock/900x600/40.jpg differ diff --git a/public/media/stock/900x600/41.jpg b/public/media/stock/900x600/41.jpg new file mode 100644 index 0000000..cd38e9a Binary files /dev/null and b/public/media/stock/900x600/41.jpg differ diff --git a/public/media/stock/900x600/42.jpg b/public/media/stock/900x600/42.jpg new file mode 100644 index 0000000..3ac4670 Binary files /dev/null and b/public/media/stock/900x600/42.jpg differ diff --git a/public/media/stock/900x600/42.png b/public/media/stock/900x600/42.png new file mode 100644 index 0000000..24b3696 Binary files /dev/null and b/public/media/stock/900x600/42.png differ diff --git a/public/media/stock/900x600/43.jpg b/public/media/stock/900x600/43.jpg new file mode 100644 index 0000000..777db11 Binary files /dev/null and b/public/media/stock/900x600/43.jpg differ diff --git a/public/media/stock/900x600/44.jpg b/public/media/stock/900x600/44.jpg new file mode 100644 index 0000000..63afc3a Binary files /dev/null and b/public/media/stock/900x600/44.jpg differ diff --git a/public/media/stock/900x600/45.jpg b/public/media/stock/900x600/45.jpg new file mode 100644 index 0000000..b478d7b Binary files /dev/null and b/public/media/stock/900x600/45.jpg differ diff --git a/public/media/stock/900x600/46.jpg b/public/media/stock/900x600/46.jpg new file mode 100644 index 0000000..81047c1 Binary files /dev/null and b/public/media/stock/900x600/46.jpg differ diff --git a/public/media/stock/900x600/47.jpg b/public/media/stock/900x600/47.jpg new file mode 100644 index 0000000..afa0af7 Binary files /dev/null and b/public/media/stock/900x600/47.jpg differ diff --git a/public/media/stock/900x600/48.jpg b/public/media/stock/900x600/48.jpg new file mode 100644 index 0000000..e7ac6d8 Binary files /dev/null and b/public/media/stock/900x600/48.jpg differ diff --git a/public/media/stock/900x600/49.jpg b/public/media/stock/900x600/49.jpg new file mode 100644 index 0000000..584aaad Binary files /dev/null and b/public/media/stock/900x600/49.jpg differ diff --git a/public/media/stock/900x600/5.jpg b/public/media/stock/900x600/5.jpg new file mode 100644 index 0000000..e637680 Binary files /dev/null and b/public/media/stock/900x600/5.jpg differ diff --git a/public/media/stock/900x600/50.jpg b/public/media/stock/900x600/50.jpg new file mode 100644 index 0000000..3e4681c Binary files /dev/null and b/public/media/stock/900x600/50.jpg differ diff --git a/public/media/stock/900x600/51.jpg b/public/media/stock/900x600/51.jpg new file mode 100644 index 0000000..df8823d Binary files /dev/null and b/public/media/stock/900x600/51.jpg differ diff --git a/public/media/stock/900x600/52.jpg b/public/media/stock/900x600/52.jpg new file mode 100644 index 0000000..c5e8ec7 Binary files /dev/null and b/public/media/stock/900x600/52.jpg differ diff --git a/public/media/stock/900x600/53.jpg b/public/media/stock/900x600/53.jpg new file mode 100644 index 0000000..8b9b354 Binary files /dev/null and b/public/media/stock/900x600/53.jpg differ diff --git a/public/media/stock/900x600/54.jpg b/public/media/stock/900x600/54.jpg new file mode 100644 index 0000000..ead38df Binary files /dev/null and b/public/media/stock/900x600/54.jpg differ diff --git a/public/media/stock/900x600/55.jpg b/public/media/stock/900x600/55.jpg new file mode 100644 index 0000000..cbe8fa3 Binary files /dev/null and b/public/media/stock/900x600/55.jpg differ diff --git a/public/media/stock/900x600/56.jpg b/public/media/stock/900x600/56.jpg new file mode 100644 index 0000000..1db8814 Binary files /dev/null and b/public/media/stock/900x600/56.jpg differ diff --git a/public/media/stock/900x600/57.jpg b/public/media/stock/900x600/57.jpg new file mode 100644 index 0000000..bc3c28d Binary files /dev/null and b/public/media/stock/900x600/57.jpg differ diff --git a/public/media/stock/900x600/58.jpg b/public/media/stock/900x600/58.jpg new file mode 100644 index 0000000..fe0b601 Binary files /dev/null and b/public/media/stock/900x600/58.jpg differ diff --git a/public/media/stock/900x600/59.jpg b/public/media/stock/900x600/59.jpg new file mode 100644 index 0000000..ed4cc2f Binary files /dev/null and b/public/media/stock/900x600/59.jpg differ diff --git a/public/media/stock/900x600/6.jpg b/public/media/stock/900x600/6.jpg new file mode 100644 index 0000000..04b384e Binary files /dev/null and b/public/media/stock/900x600/6.jpg differ diff --git a/public/media/stock/900x600/60.jpg b/public/media/stock/900x600/60.jpg new file mode 100644 index 0000000..6e12fd3 Binary files /dev/null and b/public/media/stock/900x600/60.jpg differ diff --git a/public/media/stock/900x600/61.jpg b/public/media/stock/900x600/61.jpg new file mode 100644 index 0000000..755b365 Binary files /dev/null and b/public/media/stock/900x600/61.jpg differ diff --git a/public/media/stock/900x600/62.jpg b/public/media/stock/900x600/62.jpg new file mode 100644 index 0000000..f3a39e5 Binary files /dev/null and b/public/media/stock/900x600/62.jpg differ diff --git a/public/media/stock/900x600/63.jpg b/public/media/stock/900x600/63.jpg new file mode 100644 index 0000000..e913d92 Binary files /dev/null and b/public/media/stock/900x600/63.jpg differ diff --git a/public/media/stock/900x600/64.jpg b/public/media/stock/900x600/64.jpg new file mode 100644 index 0000000..2647263 Binary files /dev/null and b/public/media/stock/900x600/64.jpg differ diff --git a/public/media/stock/900x600/65.jpg b/public/media/stock/900x600/65.jpg new file mode 100644 index 0000000..36c4ac4 Binary files /dev/null and b/public/media/stock/900x600/65.jpg differ diff --git a/public/media/stock/900x600/66.jpg b/public/media/stock/900x600/66.jpg new file mode 100644 index 0000000..40b884a Binary files /dev/null and b/public/media/stock/900x600/66.jpg differ diff --git a/public/media/stock/900x600/67.jpg b/public/media/stock/900x600/67.jpg new file mode 100644 index 0000000..0c41b01 Binary files /dev/null and b/public/media/stock/900x600/67.jpg differ diff --git a/public/media/stock/900x600/68.jpg b/public/media/stock/900x600/68.jpg new file mode 100644 index 0000000..a8fae41 Binary files /dev/null and b/public/media/stock/900x600/68.jpg differ diff --git a/public/media/stock/900x600/69.jpg b/public/media/stock/900x600/69.jpg new file mode 100644 index 0000000..c59ea8f Binary files /dev/null and b/public/media/stock/900x600/69.jpg differ diff --git a/public/media/stock/900x600/7.jpg b/public/media/stock/900x600/7.jpg new file mode 100644 index 0000000..0d14444 Binary files /dev/null and b/public/media/stock/900x600/7.jpg differ diff --git a/public/media/stock/900x600/70.jpg b/public/media/stock/900x600/70.jpg new file mode 100644 index 0000000..3e6ff8b Binary files /dev/null and b/public/media/stock/900x600/70.jpg differ diff --git a/public/media/stock/900x600/71.jpg b/public/media/stock/900x600/71.jpg new file mode 100644 index 0000000..4913b64 Binary files /dev/null and b/public/media/stock/900x600/71.jpg differ diff --git a/public/media/stock/900x600/72.jpg b/public/media/stock/900x600/72.jpg new file mode 100644 index 0000000..0daab68 Binary files /dev/null and b/public/media/stock/900x600/72.jpg differ diff --git a/public/media/stock/900x600/73.jpg b/public/media/stock/900x600/73.jpg new file mode 100644 index 0000000..6ffa0c4 Binary files /dev/null and b/public/media/stock/900x600/73.jpg differ diff --git a/public/media/stock/900x600/74.jpg b/public/media/stock/900x600/74.jpg new file mode 100644 index 0000000..56271d7 Binary files /dev/null and b/public/media/stock/900x600/74.jpg differ diff --git a/public/media/stock/900x600/75.jpg b/public/media/stock/900x600/75.jpg new file mode 100644 index 0000000..ae1a7a9 Binary files /dev/null and b/public/media/stock/900x600/75.jpg differ diff --git a/public/media/stock/900x600/76.jpg b/public/media/stock/900x600/76.jpg new file mode 100644 index 0000000..927a69a Binary files /dev/null and b/public/media/stock/900x600/76.jpg differ diff --git a/public/media/stock/900x600/77.jpg b/public/media/stock/900x600/77.jpg new file mode 100644 index 0000000..b5231d2 Binary files /dev/null and b/public/media/stock/900x600/77.jpg differ diff --git a/public/media/stock/900x600/78.jpg b/public/media/stock/900x600/78.jpg new file mode 100644 index 0000000..1ba5ea8 Binary files /dev/null and b/public/media/stock/900x600/78.jpg differ diff --git a/public/media/stock/900x600/79.jpg b/public/media/stock/900x600/79.jpg new file mode 100644 index 0000000..5299808 Binary files /dev/null and b/public/media/stock/900x600/79.jpg differ diff --git a/public/media/stock/900x600/8.jpg b/public/media/stock/900x600/8.jpg new file mode 100644 index 0000000..b395610 Binary files /dev/null and b/public/media/stock/900x600/8.jpg differ diff --git a/public/media/stock/900x600/80.jpg b/public/media/stock/900x600/80.jpg new file mode 100644 index 0000000..04e4c99 Binary files /dev/null and b/public/media/stock/900x600/80.jpg differ diff --git a/public/media/stock/900x600/81.jpg b/public/media/stock/900x600/81.jpg new file mode 100644 index 0000000..c554f4d Binary files /dev/null and b/public/media/stock/900x600/81.jpg differ diff --git a/public/media/stock/900x600/82.jpg b/public/media/stock/900x600/82.jpg new file mode 100644 index 0000000..747b2d4 Binary files /dev/null and b/public/media/stock/900x600/82.jpg differ diff --git a/public/media/stock/900x600/83.jpg b/public/media/stock/900x600/83.jpg new file mode 100644 index 0000000..6895a67 Binary files /dev/null and b/public/media/stock/900x600/83.jpg differ diff --git a/public/media/stock/900x600/84.jpg b/public/media/stock/900x600/84.jpg new file mode 100644 index 0000000..6c17868 Binary files /dev/null and b/public/media/stock/900x600/84.jpg differ diff --git a/public/media/stock/900x600/85.jpg b/public/media/stock/900x600/85.jpg new file mode 100644 index 0000000..76cbd79 Binary files /dev/null and b/public/media/stock/900x600/85.jpg differ diff --git a/public/media/stock/900x600/9.jpg b/public/media/stock/900x600/9.jpg new file mode 100644 index 0000000..2340a1b Binary files /dev/null and b/public/media/stock/900x600/9.jpg differ diff --git a/public/media/stock/ecommerce/1.png b/public/media/stock/ecommerce/1.png new file mode 100644 index 0000000..8fbf1b4 Binary files /dev/null and b/public/media/stock/ecommerce/1.png differ diff --git a/public/media/stock/ecommerce/10.png b/public/media/stock/ecommerce/10.png new file mode 100644 index 0000000..838487b Binary files /dev/null and b/public/media/stock/ecommerce/10.png differ diff --git a/public/media/stock/ecommerce/100.png b/public/media/stock/ecommerce/100.png new file mode 100644 index 0000000..8beeb87 Binary files /dev/null and b/public/media/stock/ecommerce/100.png differ diff --git a/public/media/stock/ecommerce/101.png b/public/media/stock/ecommerce/101.png new file mode 100644 index 0000000..6baf933 Binary files /dev/null and b/public/media/stock/ecommerce/101.png differ diff --git a/public/media/stock/ecommerce/102.png b/public/media/stock/ecommerce/102.png new file mode 100644 index 0000000..757d2cc Binary files /dev/null and b/public/media/stock/ecommerce/102.png differ diff --git a/public/media/stock/ecommerce/103.png b/public/media/stock/ecommerce/103.png new file mode 100644 index 0000000..595fc4e Binary files /dev/null and b/public/media/stock/ecommerce/103.png differ diff --git a/public/media/stock/ecommerce/104.png b/public/media/stock/ecommerce/104.png new file mode 100644 index 0000000..191e2d6 Binary files /dev/null and b/public/media/stock/ecommerce/104.png differ diff --git a/public/media/stock/ecommerce/105.png b/public/media/stock/ecommerce/105.png new file mode 100644 index 0000000..214c3d2 Binary files /dev/null and b/public/media/stock/ecommerce/105.png differ diff --git a/public/media/stock/ecommerce/106.png b/public/media/stock/ecommerce/106.png new file mode 100644 index 0000000..b29f401 Binary files /dev/null and b/public/media/stock/ecommerce/106.png differ diff --git a/public/media/stock/ecommerce/107.png b/public/media/stock/ecommerce/107.png new file mode 100644 index 0000000..a93cf93 Binary files /dev/null and b/public/media/stock/ecommerce/107.png differ diff --git a/public/media/stock/ecommerce/108.png b/public/media/stock/ecommerce/108.png new file mode 100644 index 0000000..df2a094 Binary files /dev/null and b/public/media/stock/ecommerce/108.png differ diff --git a/public/media/stock/ecommerce/109.png b/public/media/stock/ecommerce/109.png new file mode 100644 index 0000000..b4e2f58 Binary files /dev/null and b/public/media/stock/ecommerce/109.png differ diff --git a/public/media/stock/ecommerce/11.png b/public/media/stock/ecommerce/11.png new file mode 100644 index 0000000..4c2f733 Binary files /dev/null and b/public/media/stock/ecommerce/11.png differ diff --git a/public/media/stock/ecommerce/110.png b/public/media/stock/ecommerce/110.png new file mode 100644 index 0000000..dc3fc8d Binary files /dev/null and b/public/media/stock/ecommerce/110.png differ diff --git a/public/media/stock/ecommerce/111.png b/public/media/stock/ecommerce/111.png new file mode 100644 index 0000000..a85ac81 Binary files /dev/null and b/public/media/stock/ecommerce/111.png differ diff --git a/public/media/stock/ecommerce/112.png b/public/media/stock/ecommerce/112.png new file mode 100644 index 0000000..3add742 Binary files /dev/null and b/public/media/stock/ecommerce/112.png differ diff --git a/public/media/stock/ecommerce/113.png b/public/media/stock/ecommerce/113.png new file mode 100644 index 0000000..a6ac979 Binary files /dev/null and b/public/media/stock/ecommerce/113.png differ diff --git a/public/media/stock/ecommerce/114.png b/public/media/stock/ecommerce/114.png new file mode 100644 index 0000000..3023053 Binary files /dev/null and b/public/media/stock/ecommerce/114.png differ diff --git a/public/media/stock/ecommerce/115.png b/public/media/stock/ecommerce/115.png new file mode 100644 index 0000000..38ce264 Binary files /dev/null and b/public/media/stock/ecommerce/115.png differ diff --git a/public/media/stock/ecommerce/116.png b/public/media/stock/ecommerce/116.png new file mode 100644 index 0000000..e5fc723 Binary files /dev/null and b/public/media/stock/ecommerce/116.png differ diff --git a/public/media/stock/ecommerce/117.png b/public/media/stock/ecommerce/117.png new file mode 100644 index 0000000..787fc1b Binary files /dev/null and b/public/media/stock/ecommerce/117.png differ diff --git a/public/media/stock/ecommerce/118.png b/public/media/stock/ecommerce/118.png new file mode 100644 index 0000000..bfcc2ea Binary files /dev/null and b/public/media/stock/ecommerce/118.png differ diff --git a/public/media/stock/ecommerce/119.png b/public/media/stock/ecommerce/119.png new file mode 100644 index 0000000..29b1a4a Binary files /dev/null and b/public/media/stock/ecommerce/119.png differ diff --git a/public/media/stock/ecommerce/12.png b/public/media/stock/ecommerce/12.png new file mode 100644 index 0000000..de7fdff Binary files /dev/null and b/public/media/stock/ecommerce/12.png differ diff --git a/public/media/stock/ecommerce/120.png b/public/media/stock/ecommerce/120.png new file mode 100644 index 0000000..26fbe16 Binary files /dev/null and b/public/media/stock/ecommerce/120.png differ diff --git a/public/media/stock/ecommerce/121.png b/public/media/stock/ecommerce/121.png new file mode 100644 index 0000000..0662490 Binary files /dev/null and b/public/media/stock/ecommerce/121.png differ diff --git a/public/media/stock/ecommerce/122.png b/public/media/stock/ecommerce/122.png new file mode 100644 index 0000000..d15ea04 Binary files /dev/null and b/public/media/stock/ecommerce/122.png differ diff --git a/public/media/stock/ecommerce/123.png b/public/media/stock/ecommerce/123.png new file mode 100644 index 0000000..3a98ea7 Binary files /dev/null and b/public/media/stock/ecommerce/123.png differ diff --git a/public/media/stock/ecommerce/124.png b/public/media/stock/ecommerce/124.png new file mode 100644 index 0000000..10ffeaa Binary files /dev/null and b/public/media/stock/ecommerce/124.png differ diff --git a/public/media/stock/ecommerce/125.png b/public/media/stock/ecommerce/125.png new file mode 100644 index 0000000..d0dfd83 Binary files /dev/null and b/public/media/stock/ecommerce/125.png differ diff --git a/public/media/stock/ecommerce/126.png b/public/media/stock/ecommerce/126.png new file mode 100644 index 0000000..55f29f0 Binary files /dev/null and b/public/media/stock/ecommerce/126.png differ diff --git a/public/media/stock/ecommerce/127.png b/public/media/stock/ecommerce/127.png new file mode 100644 index 0000000..c587a26 Binary files /dev/null and b/public/media/stock/ecommerce/127.png differ diff --git a/public/media/stock/ecommerce/128.png b/public/media/stock/ecommerce/128.png new file mode 100644 index 0000000..0a3aa10 Binary files /dev/null and b/public/media/stock/ecommerce/128.png differ diff --git a/public/media/stock/ecommerce/129.png b/public/media/stock/ecommerce/129.png new file mode 100644 index 0000000..2ad727f Binary files /dev/null and b/public/media/stock/ecommerce/129.png differ diff --git a/public/media/stock/ecommerce/13.png b/public/media/stock/ecommerce/13.png new file mode 100644 index 0000000..2d2dc9a Binary files /dev/null and b/public/media/stock/ecommerce/13.png differ diff --git a/public/media/stock/ecommerce/130.png b/public/media/stock/ecommerce/130.png new file mode 100644 index 0000000..e5d6840 Binary files /dev/null and b/public/media/stock/ecommerce/130.png differ diff --git a/public/media/stock/ecommerce/131.png b/public/media/stock/ecommerce/131.png new file mode 100644 index 0000000..20c5f16 Binary files /dev/null and b/public/media/stock/ecommerce/131.png differ diff --git a/public/media/stock/ecommerce/132.png b/public/media/stock/ecommerce/132.png new file mode 100644 index 0000000..29dad8f Binary files /dev/null and b/public/media/stock/ecommerce/132.png differ diff --git a/public/media/stock/ecommerce/133.png b/public/media/stock/ecommerce/133.png new file mode 100644 index 0000000..bfc6ad4 Binary files /dev/null and b/public/media/stock/ecommerce/133.png differ diff --git a/public/media/stock/ecommerce/134.png b/public/media/stock/ecommerce/134.png new file mode 100644 index 0000000..cb576b6 Binary files /dev/null and b/public/media/stock/ecommerce/134.png differ diff --git a/public/media/stock/ecommerce/135.png b/public/media/stock/ecommerce/135.png new file mode 100644 index 0000000..faa0610 Binary files /dev/null and b/public/media/stock/ecommerce/135.png differ diff --git a/public/media/stock/ecommerce/136.png b/public/media/stock/ecommerce/136.png new file mode 100644 index 0000000..ad72fa8 Binary files /dev/null and b/public/media/stock/ecommerce/136.png differ diff --git a/public/media/stock/ecommerce/137.png b/public/media/stock/ecommerce/137.png new file mode 100644 index 0000000..8e42c66 Binary files /dev/null and b/public/media/stock/ecommerce/137.png differ diff --git a/public/media/stock/ecommerce/138.png b/public/media/stock/ecommerce/138.png new file mode 100644 index 0000000..c505499 Binary files /dev/null and b/public/media/stock/ecommerce/138.png differ diff --git a/public/media/stock/ecommerce/139.png b/public/media/stock/ecommerce/139.png new file mode 100644 index 0000000..0948b6d Binary files /dev/null and b/public/media/stock/ecommerce/139.png differ diff --git a/public/media/stock/ecommerce/14.png b/public/media/stock/ecommerce/14.png new file mode 100644 index 0000000..662f4e8 Binary files /dev/null and b/public/media/stock/ecommerce/14.png differ diff --git a/public/media/stock/ecommerce/140.png b/public/media/stock/ecommerce/140.png new file mode 100644 index 0000000..0d54025 Binary files /dev/null and b/public/media/stock/ecommerce/140.png differ diff --git a/public/media/stock/ecommerce/141.png b/public/media/stock/ecommerce/141.png new file mode 100644 index 0000000..e26fcd5 Binary files /dev/null and b/public/media/stock/ecommerce/141.png differ diff --git a/public/media/stock/ecommerce/142.png b/public/media/stock/ecommerce/142.png new file mode 100644 index 0000000..97ab0e3 Binary files /dev/null and b/public/media/stock/ecommerce/142.png differ diff --git a/public/media/stock/ecommerce/143.png b/public/media/stock/ecommerce/143.png new file mode 100644 index 0000000..5a099a1 Binary files /dev/null and b/public/media/stock/ecommerce/143.png differ diff --git a/public/media/stock/ecommerce/145.png b/public/media/stock/ecommerce/145.png new file mode 100644 index 0000000..36b6d20 Binary files /dev/null and b/public/media/stock/ecommerce/145.png differ diff --git a/public/media/stock/ecommerce/146.png b/public/media/stock/ecommerce/146.png new file mode 100644 index 0000000..dbbe452 Binary files /dev/null and b/public/media/stock/ecommerce/146.png differ diff --git a/public/media/stock/ecommerce/147.png b/public/media/stock/ecommerce/147.png new file mode 100644 index 0000000..d588765 Binary files /dev/null and b/public/media/stock/ecommerce/147.png differ diff --git a/public/media/stock/ecommerce/148.png b/public/media/stock/ecommerce/148.png new file mode 100644 index 0000000..0b2430b Binary files /dev/null and b/public/media/stock/ecommerce/148.png differ diff --git a/public/media/stock/ecommerce/149.png b/public/media/stock/ecommerce/149.png new file mode 100644 index 0000000..6d9c6a4 Binary files /dev/null and b/public/media/stock/ecommerce/149.png differ diff --git a/public/media/stock/ecommerce/15.png b/public/media/stock/ecommerce/15.png new file mode 100644 index 0000000..7ca89e2 Binary files /dev/null and b/public/media/stock/ecommerce/15.png differ diff --git a/public/media/stock/ecommerce/150.png b/public/media/stock/ecommerce/150.png new file mode 100644 index 0000000..99cbc30 Binary files /dev/null and b/public/media/stock/ecommerce/150.png differ diff --git a/public/media/stock/ecommerce/151.png b/public/media/stock/ecommerce/151.png new file mode 100644 index 0000000..18ccb27 Binary files /dev/null and b/public/media/stock/ecommerce/151.png differ diff --git a/public/media/stock/ecommerce/152.png b/public/media/stock/ecommerce/152.png new file mode 100644 index 0000000..e94c518 Binary files /dev/null and b/public/media/stock/ecommerce/152.png differ diff --git a/public/media/stock/ecommerce/153.png b/public/media/stock/ecommerce/153.png new file mode 100644 index 0000000..f928e3c Binary files /dev/null and b/public/media/stock/ecommerce/153.png differ diff --git a/public/media/stock/ecommerce/154.png b/public/media/stock/ecommerce/154.png new file mode 100644 index 0000000..4ab0fcb Binary files /dev/null and b/public/media/stock/ecommerce/154.png differ diff --git a/public/media/stock/ecommerce/155.png b/public/media/stock/ecommerce/155.png new file mode 100644 index 0000000..6f024d7 Binary files /dev/null and b/public/media/stock/ecommerce/155.png differ diff --git a/public/media/stock/ecommerce/156.png b/public/media/stock/ecommerce/156.png new file mode 100644 index 0000000..a8955e8 Binary files /dev/null and b/public/media/stock/ecommerce/156.png differ diff --git a/public/media/stock/ecommerce/157.png b/public/media/stock/ecommerce/157.png new file mode 100644 index 0000000..a845e15 Binary files /dev/null and b/public/media/stock/ecommerce/157.png differ diff --git a/public/media/stock/ecommerce/158.png b/public/media/stock/ecommerce/158.png new file mode 100644 index 0000000..6bdbc44 Binary files /dev/null and b/public/media/stock/ecommerce/158.png differ diff --git a/public/media/stock/ecommerce/159.png b/public/media/stock/ecommerce/159.png new file mode 100644 index 0000000..09c6e1d Binary files /dev/null and b/public/media/stock/ecommerce/159.png differ diff --git a/public/media/stock/ecommerce/16.png b/public/media/stock/ecommerce/16.png new file mode 100644 index 0000000..0af2e31 Binary files /dev/null and b/public/media/stock/ecommerce/16.png differ diff --git a/public/media/stock/ecommerce/160.png b/public/media/stock/ecommerce/160.png new file mode 100644 index 0000000..3d77687 Binary files /dev/null and b/public/media/stock/ecommerce/160.png differ diff --git a/public/media/stock/ecommerce/161.png b/public/media/stock/ecommerce/161.png new file mode 100644 index 0000000..0f00653 Binary files /dev/null and b/public/media/stock/ecommerce/161.png differ diff --git a/public/media/stock/ecommerce/162.png b/public/media/stock/ecommerce/162.png new file mode 100644 index 0000000..0fb2258 Binary files /dev/null and b/public/media/stock/ecommerce/162.png differ diff --git a/public/media/stock/ecommerce/163.png b/public/media/stock/ecommerce/163.png new file mode 100644 index 0000000..0c511a2 Binary files /dev/null and b/public/media/stock/ecommerce/163.png differ diff --git a/public/media/stock/ecommerce/164.png b/public/media/stock/ecommerce/164.png new file mode 100644 index 0000000..c0e01f4 Binary files /dev/null and b/public/media/stock/ecommerce/164.png differ diff --git a/public/media/stock/ecommerce/168.png b/public/media/stock/ecommerce/168.png new file mode 100644 index 0000000..971ac50 Binary files /dev/null and b/public/media/stock/ecommerce/168.png differ diff --git a/public/media/stock/ecommerce/169.png b/public/media/stock/ecommerce/169.png new file mode 100644 index 0000000..4e7bc84 Binary files /dev/null and b/public/media/stock/ecommerce/169.png differ diff --git a/public/media/stock/ecommerce/17.png b/public/media/stock/ecommerce/17.png new file mode 100644 index 0000000..5da9324 Binary files /dev/null and b/public/media/stock/ecommerce/17.png differ diff --git a/public/media/stock/ecommerce/170.png b/public/media/stock/ecommerce/170.png new file mode 100644 index 0000000..6e686f5 Binary files /dev/null and b/public/media/stock/ecommerce/170.png differ diff --git a/public/media/stock/ecommerce/171.png b/public/media/stock/ecommerce/171.png new file mode 100644 index 0000000..d02da91 Binary files /dev/null and b/public/media/stock/ecommerce/171.png differ diff --git a/public/media/stock/ecommerce/172.png b/public/media/stock/ecommerce/172.png new file mode 100644 index 0000000..a86e4c8 Binary files /dev/null and b/public/media/stock/ecommerce/172.png differ diff --git a/public/media/stock/ecommerce/173.png b/public/media/stock/ecommerce/173.png new file mode 100644 index 0000000..8f0753d Binary files /dev/null and b/public/media/stock/ecommerce/173.png differ diff --git a/public/media/stock/ecommerce/175.png b/public/media/stock/ecommerce/175.png new file mode 100644 index 0000000..62c43d9 Binary files /dev/null and b/public/media/stock/ecommerce/175.png differ diff --git a/public/media/stock/ecommerce/176.png b/public/media/stock/ecommerce/176.png new file mode 100644 index 0000000..f361c5a Binary files /dev/null and b/public/media/stock/ecommerce/176.png differ diff --git a/public/media/stock/ecommerce/177.png b/public/media/stock/ecommerce/177.png new file mode 100644 index 0000000..194ab85 Binary files /dev/null and b/public/media/stock/ecommerce/177.png differ diff --git a/public/media/stock/ecommerce/178.png b/public/media/stock/ecommerce/178.png new file mode 100644 index 0000000..6a6e743 Binary files /dev/null and b/public/media/stock/ecommerce/178.png differ diff --git a/public/media/stock/ecommerce/179.png b/public/media/stock/ecommerce/179.png new file mode 100644 index 0000000..369af7f Binary files /dev/null and b/public/media/stock/ecommerce/179.png differ diff --git a/public/media/stock/ecommerce/18.png b/public/media/stock/ecommerce/18.png new file mode 100644 index 0000000..73ff09c Binary files /dev/null and b/public/media/stock/ecommerce/18.png differ diff --git a/public/media/stock/ecommerce/180.png b/public/media/stock/ecommerce/180.png new file mode 100644 index 0000000..3b371d1 Binary files /dev/null and b/public/media/stock/ecommerce/180.png differ diff --git a/public/media/stock/ecommerce/181.png b/public/media/stock/ecommerce/181.png new file mode 100644 index 0000000..dc01f81 Binary files /dev/null and b/public/media/stock/ecommerce/181.png differ diff --git a/public/media/stock/ecommerce/182.png b/public/media/stock/ecommerce/182.png new file mode 100644 index 0000000..0765c54 Binary files /dev/null and b/public/media/stock/ecommerce/182.png differ diff --git a/public/media/stock/ecommerce/183.png b/public/media/stock/ecommerce/183.png new file mode 100644 index 0000000..1c530fc Binary files /dev/null and b/public/media/stock/ecommerce/183.png differ diff --git a/public/media/stock/ecommerce/184.png b/public/media/stock/ecommerce/184.png new file mode 100644 index 0000000..cc981f2 Binary files /dev/null and b/public/media/stock/ecommerce/184.png differ diff --git a/public/media/stock/ecommerce/185.png b/public/media/stock/ecommerce/185.png new file mode 100644 index 0000000..f30a95d Binary files /dev/null and b/public/media/stock/ecommerce/185.png differ diff --git a/public/media/stock/ecommerce/186.png b/public/media/stock/ecommerce/186.png new file mode 100644 index 0000000..3c1be5a Binary files /dev/null and b/public/media/stock/ecommerce/186.png differ diff --git a/public/media/stock/ecommerce/189.png b/public/media/stock/ecommerce/189.png new file mode 100644 index 0000000..cf68808 Binary files /dev/null and b/public/media/stock/ecommerce/189.png differ diff --git a/public/media/stock/ecommerce/19.png b/public/media/stock/ecommerce/19.png new file mode 100644 index 0000000..2941472 Binary files /dev/null and b/public/media/stock/ecommerce/19.png differ diff --git a/public/media/stock/ecommerce/190.png b/public/media/stock/ecommerce/190.png new file mode 100644 index 0000000..3ce2e54 Binary files /dev/null and b/public/media/stock/ecommerce/190.png differ diff --git a/public/media/stock/ecommerce/191.png b/public/media/stock/ecommerce/191.png new file mode 100644 index 0000000..adaea50 Binary files /dev/null and b/public/media/stock/ecommerce/191.png differ diff --git a/public/media/stock/ecommerce/192.png b/public/media/stock/ecommerce/192.png new file mode 100644 index 0000000..f4c3c75 Binary files /dev/null and b/public/media/stock/ecommerce/192.png differ diff --git a/public/media/stock/ecommerce/193.png b/public/media/stock/ecommerce/193.png new file mode 100644 index 0000000..3a5c50f Binary files /dev/null and b/public/media/stock/ecommerce/193.png differ diff --git a/public/media/stock/ecommerce/194.png b/public/media/stock/ecommerce/194.png new file mode 100644 index 0000000..18703ad Binary files /dev/null and b/public/media/stock/ecommerce/194.png differ diff --git a/public/media/stock/ecommerce/195.png b/public/media/stock/ecommerce/195.png new file mode 100644 index 0000000..7acbe01 Binary files /dev/null and b/public/media/stock/ecommerce/195.png differ diff --git a/public/media/stock/ecommerce/196.png b/public/media/stock/ecommerce/196.png new file mode 100644 index 0000000..340698c Binary files /dev/null and b/public/media/stock/ecommerce/196.png differ diff --git a/public/media/stock/ecommerce/197.png b/public/media/stock/ecommerce/197.png new file mode 100644 index 0000000..7e92542 Binary files /dev/null and b/public/media/stock/ecommerce/197.png differ diff --git a/public/media/stock/ecommerce/198.png b/public/media/stock/ecommerce/198.png new file mode 100644 index 0000000..09a6824 Binary files /dev/null and b/public/media/stock/ecommerce/198.png differ diff --git a/public/media/stock/ecommerce/199.png b/public/media/stock/ecommerce/199.png new file mode 100644 index 0000000..01b1d30 Binary files /dev/null and b/public/media/stock/ecommerce/199.png differ diff --git a/public/media/stock/ecommerce/2.png b/public/media/stock/ecommerce/2.png new file mode 100644 index 0000000..44443dd Binary files /dev/null and b/public/media/stock/ecommerce/2.png differ diff --git a/public/media/stock/ecommerce/20.png b/public/media/stock/ecommerce/20.png new file mode 100644 index 0000000..4ac844f Binary files /dev/null and b/public/media/stock/ecommerce/20.png differ diff --git a/public/media/stock/ecommerce/200.png b/public/media/stock/ecommerce/200.png new file mode 100644 index 0000000..29768c8 Binary files /dev/null and b/public/media/stock/ecommerce/200.png differ diff --git a/public/media/stock/ecommerce/201.png b/public/media/stock/ecommerce/201.png new file mode 100644 index 0000000..a630fb2 Binary files /dev/null and b/public/media/stock/ecommerce/201.png differ diff --git a/public/media/stock/ecommerce/202.png b/public/media/stock/ecommerce/202.png new file mode 100644 index 0000000..b62fed3 Binary files /dev/null and b/public/media/stock/ecommerce/202.png differ diff --git a/public/media/stock/ecommerce/203.png b/public/media/stock/ecommerce/203.png new file mode 100644 index 0000000..dffc534 Binary files /dev/null and b/public/media/stock/ecommerce/203.png differ diff --git a/public/media/stock/ecommerce/204.png b/public/media/stock/ecommerce/204.png new file mode 100644 index 0000000..c75075b Binary files /dev/null and b/public/media/stock/ecommerce/204.png differ diff --git a/public/media/stock/ecommerce/205.png b/public/media/stock/ecommerce/205.png new file mode 100644 index 0000000..8961f59 Binary files /dev/null and b/public/media/stock/ecommerce/205.png differ diff --git a/public/media/stock/ecommerce/206.png b/public/media/stock/ecommerce/206.png new file mode 100644 index 0000000..30aeece Binary files /dev/null and b/public/media/stock/ecommerce/206.png differ diff --git a/public/media/stock/ecommerce/207.png b/public/media/stock/ecommerce/207.png new file mode 100644 index 0000000..dc3e9f1 Binary files /dev/null and b/public/media/stock/ecommerce/207.png differ diff --git a/public/media/stock/ecommerce/208.png b/public/media/stock/ecommerce/208.png new file mode 100644 index 0000000..315e72c Binary files /dev/null and b/public/media/stock/ecommerce/208.png differ diff --git a/public/media/stock/ecommerce/209.png b/public/media/stock/ecommerce/209.png new file mode 100644 index 0000000..46b0ba1 Binary files /dev/null and b/public/media/stock/ecommerce/209.png differ diff --git a/public/media/stock/ecommerce/21.png b/public/media/stock/ecommerce/21.png new file mode 100644 index 0000000..8722a83 Binary files /dev/null and b/public/media/stock/ecommerce/21.png differ diff --git a/public/media/stock/ecommerce/210.png b/public/media/stock/ecommerce/210.png new file mode 100644 index 0000000..75da3f3 Binary files /dev/null and b/public/media/stock/ecommerce/210.png differ diff --git a/public/media/stock/ecommerce/211.png b/public/media/stock/ecommerce/211.png new file mode 100644 index 0000000..09bc096 Binary files /dev/null and b/public/media/stock/ecommerce/211.png differ diff --git a/public/media/stock/ecommerce/212.png b/public/media/stock/ecommerce/212.png new file mode 100644 index 0000000..51de0cc Binary files /dev/null and b/public/media/stock/ecommerce/212.png differ diff --git a/public/media/stock/ecommerce/213.png b/public/media/stock/ecommerce/213.png new file mode 100644 index 0000000..ef46fc8 Binary files /dev/null and b/public/media/stock/ecommerce/213.png differ diff --git a/public/media/stock/ecommerce/214.png b/public/media/stock/ecommerce/214.png new file mode 100644 index 0000000..6a14934 Binary files /dev/null and b/public/media/stock/ecommerce/214.png differ diff --git a/public/media/stock/ecommerce/215.png b/public/media/stock/ecommerce/215.png new file mode 100644 index 0000000..0bd31d5 Binary files /dev/null and b/public/media/stock/ecommerce/215.png differ diff --git a/public/media/stock/ecommerce/216.png b/public/media/stock/ecommerce/216.png new file mode 100644 index 0000000..0c56794 Binary files /dev/null and b/public/media/stock/ecommerce/216.png differ diff --git a/public/media/stock/ecommerce/217.png b/public/media/stock/ecommerce/217.png new file mode 100644 index 0000000..d52e1e4 Binary files /dev/null and b/public/media/stock/ecommerce/217.png differ diff --git a/public/media/stock/ecommerce/218.png b/public/media/stock/ecommerce/218.png new file mode 100644 index 0000000..46f124a Binary files /dev/null and b/public/media/stock/ecommerce/218.png differ diff --git a/public/media/stock/ecommerce/219.png b/public/media/stock/ecommerce/219.png new file mode 100644 index 0000000..d60f930 Binary files /dev/null and b/public/media/stock/ecommerce/219.png differ diff --git a/public/media/stock/ecommerce/22.png b/public/media/stock/ecommerce/22.png new file mode 100644 index 0000000..4673627 Binary files /dev/null and b/public/media/stock/ecommerce/22.png differ diff --git a/public/media/stock/ecommerce/23.png b/public/media/stock/ecommerce/23.png new file mode 100644 index 0000000..e04abee Binary files /dev/null and b/public/media/stock/ecommerce/23.png differ diff --git a/public/media/stock/ecommerce/24.png b/public/media/stock/ecommerce/24.png new file mode 100644 index 0000000..5a9c78c Binary files /dev/null and b/public/media/stock/ecommerce/24.png differ diff --git a/public/media/stock/ecommerce/25.png b/public/media/stock/ecommerce/25.png new file mode 100644 index 0000000..9d3668c Binary files /dev/null and b/public/media/stock/ecommerce/25.png differ diff --git a/public/media/stock/ecommerce/26.png b/public/media/stock/ecommerce/26.png new file mode 100644 index 0000000..5f78c63 Binary files /dev/null and b/public/media/stock/ecommerce/26.png differ diff --git a/public/media/stock/ecommerce/27.png b/public/media/stock/ecommerce/27.png new file mode 100644 index 0000000..47a78c7 Binary files /dev/null and b/public/media/stock/ecommerce/27.png differ diff --git a/public/media/stock/ecommerce/28.png b/public/media/stock/ecommerce/28.png new file mode 100644 index 0000000..1aa4f61 Binary files /dev/null and b/public/media/stock/ecommerce/28.png differ diff --git a/public/media/stock/ecommerce/29.png b/public/media/stock/ecommerce/29.png new file mode 100644 index 0000000..099b0af Binary files /dev/null and b/public/media/stock/ecommerce/29.png differ diff --git a/public/media/stock/ecommerce/3.png b/public/media/stock/ecommerce/3.png new file mode 100644 index 0000000..92534cf Binary files /dev/null and b/public/media/stock/ecommerce/3.png differ diff --git a/public/media/stock/ecommerce/30.png b/public/media/stock/ecommerce/30.png new file mode 100644 index 0000000..d817c67 Binary files /dev/null and b/public/media/stock/ecommerce/30.png differ diff --git a/public/media/stock/ecommerce/31.png b/public/media/stock/ecommerce/31.png new file mode 100644 index 0000000..84833de Binary files /dev/null and b/public/media/stock/ecommerce/31.png differ diff --git a/public/media/stock/ecommerce/32.png b/public/media/stock/ecommerce/32.png new file mode 100644 index 0000000..6f3c83f Binary files /dev/null and b/public/media/stock/ecommerce/32.png differ diff --git a/public/media/stock/ecommerce/33.png b/public/media/stock/ecommerce/33.png new file mode 100644 index 0000000..de4be96 Binary files /dev/null and b/public/media/stock/ecommerce/33.png differ diff --git a/public/media/stock/ecommerce/34.png b/public/media/stock/ecommerce/34.png new file mode 100644 index 0000000..fa36f3c Binary files /dev/null and b/public/media/stock/ecommerce/34.png differ diff --git a/public/media/stock/ecommerce/35.png b/public/media/stock/ecommerce/35.png new file mode 100644 index 0000000..9177ba3 Binary files /dev/null and b/public/media/stock/ecommerce/35.png differ diff --git a/public/media/stock/ecommerce/36.png b/public/media/stock/ecommerce/36.png new file mode 100644 index 0000000..053eae8 Binary files /dev/null and b/public/media/stock/ecommerce/36.png differ diff --git a/public/media/stock/ecommerce/37.png b/public/media/stock/ecommerce/37.png new file mode 100644 index 0000000..c1a9091 Binary files /dev/null and b/public/media/stock/ecommerce/37.png differ diff --git a/public/media/stock/ecommerce/38.png b/public/media/stock/ecommerce/38.png new file mode 100644 index 0000000..09fe7c4 Binary files /dev/null and b/public/media/stock/ecommerce/38.png differ diff --git a/public/media/stock/ecommerce/39.png b/public/media/stock/ecommerce/39.png new file mode 100644 index 0000000..cb8df07 Binary files /dev/null and b/public/media/stock/ecommerce/39.png differ diff --git a/public/media/stock/ecommerce/4.png b/public/media/stock/ecommerce/4.png new file mode 100644 index 0000000..ec7abc3 Binary files /dev/null and b/public/media/stock/ecommerce/4.png differ diff --git a/public/media/stock/ecommerce/40.png b/public/media/stock/ecommerce/40.png new file mode 100644 index 0000000..aed42e6 Binary files /dev/null and b/public/media/stock/ecommerce/40.png differ diff --git a/public/media/stock/ecommerce/41.png b/public/media/stock/ecommerce/41.png new file mode 100644 index 0000000..304e7e4 Binary files /dev/null and b/public/media/stock/ecommerce/41.png differ diff --git a/public/media/stock/ecommerce/42.png b/public/media/stock/ecommerce/42.png new file mode 100644 index 0000000..3a7c6f4 Binary files /dev/null and b/public/media/stock/ecommerce/42.png differ diff --git a/public/media/stock/ecommerce/43.png b/public/media/stock/ecommerce/43.png new file mode 100644 index 0000000..0ec558e Binary files /dev/null and b/public/media/stock/ecommerce/43.png differ diff --git a/public/media/stock/ecommerce/44.png b/public/media/stock/ecommerce/44.png new file mode 100644 index 0000000..2e67cef Binary files /dev/null and b/public/media/stock/ecommerce/44.png differ diff --git a/public/media/stock/ecommerce/45.png b/public/media/stock/ecommerce/45.png new file mode 100644 index 0000000..70f85dd Binary files /dev/null and b/public/media/stock/ecommerce/45.png differ diff --git a/public/media/stock/ecommerce/46.png b/public/media/stock/ecommerce/46.png new file mode 100644 index 0000000..e321bf5 Binary files /dev/null and b/public/media/stock/ecommerce/46.png differ diff --git a/public/media/stock/ecommerce/47.png b/public/media/stock/ecommerce/47.png new file mode 100644 index 0000000..61322e4 Binary files /dev/null and b/public/media/stock/ecommerce/47.png differ diff --git a/public/media/stock/ecommerce/48.png b/public/media/stock/ecommerce/48.png new file mode 100644 index 0000000..926d322 Binary files /dev/null and b/public/media/stock/ecommerce/48.png differ diff --git a/public/media/stock/ecommerce/49.png b/public/media/stock/ecommerce/49.png new file mode 100644 index 0000000..b193dd2 Binary files /dev/null and b/public/media/stock/ecommerce/49.png differ diff --git a/public/media/stock/ecommerce/5.png b/public/media/stock/ecommerce/5.png new file mode 100644 index 0000000..a3fa806 Binary files /dev/null and b/public/media/stock/ecommerce/5.png differ diff --git a/public/media/stock/ecommerce/50.png b/public/media/stock/ecommerce/50.png new file mode 100644 index 0000000..311d092 Binary files /dev/null and b/public/media/stock/ecommerce/50.png differ diff --git a/public/media/stock/ecommerce/51.png b/public/media/stock/ecommerce/51.png new file mode 100644 index 0000000..9190e0c Binary files /dev/null and b/public/media/stock/ecommerce/51.png differ diff --git a/public/media/stock/ecommerce/52.png b/public/media/stock/ecommerce/52.png new file mode 100644 index 0000000..54165e7 Binary files /dev/null and b/public/media/stock/ecommerce/52.png differ diff --git a/public/media/stock/ecommerce/53.png b/public/media/stock/ecommerce/53.png new file mode 100644 index 0000000..147bf78 Binary files /dev/null and b/public/media/stock/ecommerce/53.png differ diff --git a/public/media/stock/ecommerce/54.png b/public/media/stock/ecommerce/54.png new file mode 100644 index 0000000..37dfa6c Binary files /dev/null and b/public/media/stock/ecommerce/54.png differ diff --git a/public/media/stock/ecommerce/55.png b/public/media/stock/ecommerce/55.png new file mode 100644 index 0000000..73a7de1 Binary files /dev/null and b/public/media/stock/ecommerce/55.png differ diff --git a/public/media/stock/ecommerce/56.png b/public/media/stock/ecommerce/56.png new file mode 100644 index 0000000..6f5ba35 Binary files /dev/null and b/public/media/stock/ecommerce/56.png differ diff --git a/public/media/stock/ecommerce/57.png b/public/media/stock/ecommerce/57.png new file mode 100644 index 0000000..40ed05e Binary files /dev/null and b/public/media/stock/ecommerce/57.png differ diff --git a/public/media/stock/ecommerce/58.png b/public/media/stock/ecommerce/58.png new file mode 100644 index 0000000..899d165 Binary files /dev/null and b/public/media/stock/ecommerce/58.png differ diff --git a/public/media/stock/ecommerce/59.png b/public/media/stock/ecommerce/59.png new file mode 100644 index 0000000..9b846be Binary files /dev/null and b/public/media/stock/ecommerce/59.png differ diff --git a/public/media/stock/ecommerce/6.png b/public/media/stock/ecommerce/6.png new file mode 100644 index 0000000..3bdf25b Binary files /dev/null and b/public/media/stock/ecommerce/6.png differ diff --git a/public/media/stock/ecommerce/60.png b/public/media/stock/ecommerce/60.png new file mode 100644 index 0000000..dab9e7c Binary files /dev/null and b/public/media/stock/ecommerce/60.png differ diff --git a/public/media/stock/ecommerce/61.png b/public/media/stock/ecommerce/61.png new file mode 100644 index 0000000..01581fa Binary files /dev/null and b/public/media/stock/ecommerce/61.png differ diff --git a/public/media/stock/ecommerce/62.png b/public/media/stock/ecommerce/62.png new file mode 100644 index 0000000..d4bbc11 Binary files /dev/null and b/public/media/stock/ecommerce/62.png differ diff --git a/public/media/stock/ecommerce/63.png b/public/media/stock/ecommerce/63.png new file mode 100644 index 0000000..c713474 Binary files /dev/null and b/public/media/stock/ecommerce/63.png differ diff --git a/public/media/stock/ecommerce/64.png b/public/media/stock/ecommerce/64.png new file mode 100644 index 0000000..6a85503 Binary files /dev/null and b/public/media/stock/ecommerce/64.png differ diff --git a/public/media/stock/ecommerce/65.png b/public/media/stock/ecommerce/65.png new file mode 100644 index 0000000..86bcf81 Binary files /dev/null and b/public/media/stock/ecommerce/65.png differ diff --git a/public/media/stock/ecommerce/66.png b/public/media/stock/ecommerce/66.png new file mode 100644 index 0000000..edbc76c Binary files /dev/null and b/public/media/stock/ecommerce/66.png differ diff --git a/public/media/stock/ecommerce/67.png b/public/media/stock/ecommerce/67.png new file mode 100644 index 0000000..30a8f0e Binary files /dev/null and b/public/media/stock/ecommerce/67.png differ diff --git a/public/media/stock/ecommerce/68.png b/public/media/stock/ecommerce/68.png new file mode 100644 index 0000000..87afbb4 Binary files /dev/null and b/public/media/stock/ecommerce/68.png differ diff --git a/public/media/stock/ecommerce/69.png b/public/media/stock/ecommerce/69.png new file mode 100644 index 0000000..01c8e80 Binary files /dev/null and b/public/media/stock/ecommerce/69.png differ diff --git a/public/media/stock/ecommerce/7.png b/public/media/stock/ecommerce/7.png new file mode 100644 index 0000000..55b247d Binary files /dev/null and b/public/media/stock/ecommerce/7.png differ diff --git a/public/media/stock/ecommerce/70.png b/public/media/stock/ecommerce/70.png new file mode 100644 index 0000000..51c654f Binary files /dev/null and b/public/media/stock/ecommerce/70.png differ diff --git a/public/media/stock/ecommerce/71.png b/public/media/stock/ecommerce/71.png new file mode 100644 index 0000000..e7bb8d4 Binary files /dev/null and b/public/media/stock/ecommerce/71.png differ diff --git a/public/media/stock/ecommerce/72.png b/public/media/stock/ecommerce/72.png new file mode 100644 index 0000000..8c09e28 Binary files /dev/null and b/public/media/stock/ecommerce/72.png differ diff --git a/public/media/stock/ecommerce/74.png b/public/media/stock/ecommerce/74.png new file mode 100644 index 0000000..5633f23 Binary files /dev/null and b/public/media/stock/ecommerce/74.png differ diff --git a/public/media/stock/ecommerce/75.png b/public/media/stock/ecommerce/75.png new file mode 100644 index 0000000..b2d39f9 Binary files /dev/null and b/public/media/stock/ecommerce/75.png differ diff --git a/public/media/stock/ecommerce/76.png b/public/media/stock/ecommerce/76.png new file mode 100644 index 0000000..a1e1914 Binary files /dev/null and b/public/media/stock/ecommerce/76.png differ diff --git a/public/media/stock/ecommerce/77.png b/public/media/stock/ecommerce/77.png new file mode 100644 index 0000000..a1f25ca Binary files /dev/null and b/public/media/stock/ecommerce/77.png differ diff --git a/public/media/stock/ecommerce/78.png b/public/media/stock/ecommerce/78.png new file mode 100644 index 0000000..f4d1776 Binary files /dev/null and b/public/media/stock/ecommerce/78.png differ diff --git a/public/media/stock/ecommerce/79.png b/public/media/stock/ecommerce/79.png new file mode 100644 index 0000000..046ef20 Binary files /dev/null and b/public/media/stock/ecommerce/79.png differ diff --git a/public/media/stock/ecommerce/8.png b/public/media/stock/ecommerce/8.png new file mode 100644 index 0000000..7bf5396 Binary files /dev/null and b/public/media/stock/ecommerce/8.png differ diff --git a/public/media/stock/ecommerce/80.png b/public/media/stock/ecommerce/80.png new file mode 100644 index 0000000..9e27a21 Binary files /dev/null and b/public/media/stock/ecommerce/80.png differ diff --git a/public/media/stock/ecommerce/81.png b/public/media/stock/ecommerce/81.png new file mode 100644 index 0000000..da6a650 Binary files /dev/null and b/public/media/stock/ecommerce/81.png differ diff --git a/public/media/stock/ecommerce/82.png b/public/media/stock/ecommerce/82.png new file mode 100644 index 0000000..cf1c25b Binary files /dev/null and b/public/media/stock/ecommerce/82.png differ diff --git a/public/media/stock/ecommerce/83.png b/public/media/stock/ecommerce/83.png new file mode 100644 index 0000000..23c2ad1 Binary files /dev/null and b/public/media/stock/ecommerce/83.png differ diff --git a/public/media/stock/ecommerce/84.png b/public/media/stock/ecommerce/84.png new file mode 100644 index 0000000..c4284de Binary files /dev/null and b/public/media/stock/ecommerce/84.png differ diff --git a/public/media/stock/ecommerce/85.png b/public/media/stock/ecommerce/85.png new file mode 100644 index 0000000..8d46522 Binary files /dev/null and b/public/media/stock/ecommerce/85.png differ diff --git a/public/media/stock/ecommerce/86.png b/public/media/stock/ecommerce/86.png new file mode 100644 index 0000000..aeea4d3 Binary files /dev/null and b/public/media/stock/ecommerce/86.png differ diff --git a/public/media/stock/ecommerce/87.png b/public/media/stock/ecommerce/87.png new file mode 100644 index 0000000..75310eb Binary files /dev/null and b/public/media/stock/ecommerce/87.png differ diff --git a/public/media/stock/ecommerce/88.png b/public/media/stock/ecommerce/88.png new file mode 100644 index 0000000..460702d Binary files /dev/null and b/public/media/stock/ecommerce/88.png differ diff --git a/public/media/stock/ecommerce/89.png b/public/media/stock/ecommerce/89.png new file mode 100644 index 0000000..ce08bc5 Binary files /dev/null and b/public/media/stock/ecommerce/89.png differ diff --git a/public/media/stock/ecommerce/9.png b/public/media/stock/ecommerce/9.png new file mode 100644 index 0000000..cee61a5 Binary files /dev/null and b/public/media/stock/ecommerce/9.png differ diff --git a/public/media/stock/ecommerce/90.png b/public/media/stock/ecommerce/90.png new file mode 100644 index 0000000..3ff174b Binary files /dev/null and b/public/media/stock/ecommerce/90.png differ diff --git a/public/media/stock/ecommerce/91.png b/public/media/stock/ecommerce/91.png new file mode 100644 index 0000000..9f67dbb Binary files /dev/null and b/public/media/stock/ecommerce/91.png differ diff --git a/public/media/stock/ecommerce/92.png b/public/media/stock/ecommerce/92.png new file mode 100644 index 0000000..0747662 Binary files /dev/null and b/public/media/stock/ecommerce/92.png differ diff --git a/public/media/stock/ecommerce/93.png b/public/media/stock/ecommerce/93.png new file mode 100644 index 0000000..cce7fdf Binary files /dev/null and b/public/media/stock/ecommerce/93.png differ diff --git a/public/media/stock/ecommerce/94.png b/public/media/stock/ecommerce/94.png new file mode 100644 index 0000000..8f6e3a9 Binary files /dev/null and b/public/media/stock/ecommerce/94.png differ diff --git a/public/media/stock/ecommerce/95.png b/public/media/stock/ecommerce/95.png new file mode 100644 index 0000000..74f5d61 Binary files /dev/null and b/public/media/stock/ecommerce/95.png differ diff --git a/public/media/stock/ecommerce/96.png b/public/media/stock/ecommerce/96.png new file mode 100644 index 0000000..126f196 Binary files /dev/null and b/public/media/stock/ecommerce/96.png differ diff --git a/public/media/stock/ecommerce/97.png b/public/media/stock/ecommerce/97.png new file mode 100644 index 0000000..c67d448 Binary files /dev/null and b/public/media/stock/ecommerce/97.png differ diff --git a/public/media/stock/ecommerce/98.png b/public/media/stock/ecommerce/98.png new file mode 100644 index 0000000..dcf9146 Binary files /dev/null and b/public/media/stock/ecommerce/98.png differ diff --git a/public/media/stock/ecommerce/99.png b/public/media/stock/ecommerce/99.png new file mode 100644 index 0000000..c41031c Binary files /dev/null and b/public/media/stock/ecommerce/99.png differ diff --git a/public/media/stock/food/img-1.jpg b/public/media/stock/food/img-1.jpg new file mode 100644 index 0000000..4c4ecbb Binary files /dev/null and b/public/media/stock/food/img-1.jpg differ diff --git a/public/media/stock/food/img-10.jpg b/public/media/stock/food/img-10.jpg new file mode 100644 index 0000000..c42cf46 Binary files /dev/null and b/public/media/stock/food/img-10.jpg differ diff --git a/public/media/stock/food/img-11.jpg b/public/media/stock/food/img-11.jpg new file mode 100644 index 0000000..4b2a857 Binary files /dev/null and b/public/media/stock/food/img-11.jpg differ diff --git a/public/media/stock/food/img-2.jpg b/public/media/stock/food/img-2.jpg new file mode 100644 index 0000000..3cf6a36 Binary files /dev/null and b/public/media/stock/food/img-2.jpg differ diff --git a/public/media/stock/food/img-3.jpg b/public/media/stock/food/img-3.jpg new file mode 100644 index 0000000..8b45f45 Binary files /dev/null and b/public/media/stock/food/img-3.jpg differ diff --git a/public/media/stock/food/img-4.jpg b/public/media/stock/food/img-4.jpg new file mode 100644 index 0000000..8f5e945 Binary files /dev/null and b/public/media/stock/food/img-4.jpg differ diff --git a/public/media/stock/food/img-5.jpg b/public/media/stock/food/img-5.jpg new file mode 100644 index 0000000..6d58a1c Binary files /dev/null and b/public/media/stock/food/img-5.jpg differ diff --git a/public/media/stock/food/img-6.jpg b/public/media/stock/food/img-6.jpg new file mode 100644 index 0000000..a2c6d63 Binary files /dev/null and b/public/media/stock/food/img-6.jpg differ diff --git a/public/media/stock/food/img-7.jpg b/public/media/stock/food/img-7.jpg new file mode 100644 index 0000000..95c1d4b Binary files /dev/null and b/public/media/stock/food/img-7.jpg differ diff --git a/public/media/stock/food/img-8.jpg b/public/media/stock/food/img-8.jpg new file mode 100644 index 0000000..f4c1101 Binary files /dev/null and b/public/media/stock/food/img-8.jpg differ diff --git a/public/media/stock/food/img-9.jpg b/public/media/stock/food/img-9.jpg new file mode 100644 index 0000000..59e24ad Binary files /dev/null and b/public/media/stock/food/img-9.jpg differ diff --git a/public/media/svg/avatars/001-boy.svg b/public/media/svg/avatars/001-boy.svg new file mode 100644 index 0000000..a307016 --- /dev/null +++ b/public/media/svg/avatars/001-boy.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/002-girl.svg b/public/media/svg/avatars/002-girl.svg new file mode 100644 index 0000000..7a84185 --- /dev/null +++ b/public/media/svg/avatars/002-girl.svg @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/003-girl-1.svg b/public/media/svg/avatars/003-girl-1.svg new file mode 100644 index 0000000..2c490a0 --- /dev/null +++ b/public/media/svg/avatars/003-girl-1.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/004-boy-1.svg b/public/media/svg/avatars/004-boy-1.svg new file mode 100644 index 0000000..7cfe5b1 --- /dev/null +++ b/public/media/svg/avatars/004-boy-1.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/005-girl-2.svg b/public/media/svg/avatars/005-girl-2.svg new file mode 100644 index 0000000..676da6f --- /dev/null +++ b/public/media/svg/avatars/005-girl-2.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/006-girl-3.svg b/public/media/svg/avatars/006-girl-3.svg new file mode 100644 index 0000000..f831b43 --- /dev/null +++ b/public/media/svg/avatars/006-girl-3.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/007-boy-2.svg b/public/media/svg/avatars/007-boy-2.svg new file mode 100644 index 0000000..9a9f843 --- /dev/null +++ b/public/media/svg/avatars/007-boy-2.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/008-boy-3.svg b/public/media/svg/avatars/008-boy-3.svg new file mode 100644 index 0000000..c6d01ea --- /dev/null +++ b/public/media/svg/avatars/008-boy-3.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/009-boy-4.svg b/public/media/svg/avatars/009-boy-4.svg new file mode 100644 index 0000000..eded7b6 --- /dev/null +++ b/public/media/svg/avatars/009-boy-4.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/010-girl-4.svg b/public/media/svg/avatars/010-girl-4.svg new file mode 100644 index 0000000..4637350 --- /dev/null +++ b/public/media/svg/avatars/010-girl-4.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/011-boy-5.svg b/public/media/svg/avatars/011-boy-5.svg new file mode 100644 index 0000000..d454bb7 --- /dev/null +++ b/public/media/svg/avatars/011-boy-5.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/012-girl-5.svg b/public/media/svg/avatars/012-girl-5.svg new file mode 100644 index 0000000..8e73230 --- /dev/null +++ b/public/media/svg/avatars/012-girl-5.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/013-girl-6.svg b/public/media/svg/avatars/013-girl-6.svg new file mode 100644 index 0000000..f88e25f --- /dev/null +++ b/public/media/svg/avatars/013-girl-6.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/014-girl-7.svg b/public/media/svg/avatars/014-girl-7.svg new file mode 100644 index 0000000..6b6e375 --- /dev/null +++ b/public/media/svg/avatars/014-girl-7.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/015-boy-6.svg b/public/media/svg/avatars/015-boy-6.svg new file mode 100644 index 0000000..65db5d4 --- /dev/null +++ b/public/media/svg/avatars/015-boy-6.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/016-boy-7.svg b/public/media/svg/avatars/016-boy-7.svg new file mode 100644 index 0000000..0d31350 --- /dev/null +++ b/public/media/svg/avatars/016-boy-7.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/017-girl-8.svg b/public/media/svg/avatars/017-girl-8.svg new file mode 100644 index 0000000..d34c322 --- /dev/null +++ b/public/media/svg/avatars/017-girl-8.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/018-girl-9.svg b/public/media/svg/avatars/018-girl-9.svg new file mode 100644 index 0000000..0225df3 --- /dev/null +++ b/public/media/svg/avatars/018-girl-9.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/019-girl-10.svg b/public/media/svg/avatars/019-girl-10.svg new file mode 100644 index 0000000..a5bd193 --- /dev/null +++ b/public/media/svg/avatars/019-girl-10.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/020-girl-11.svg b/public/media/svg/avatars/020-girl-11.svg new file mode 100644 index 0000000..f8fa9d7 --- /dev/null +++ b/public/media/svg/avatars/020-girl-11.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/021-boy-8.svg b/public/media/svg/avatars/021-boy-8.svg new file mode 100644 index 0000000..dbe8eb1 --- /dev/null +++ b/public/media/svg/avatars/021-boy-8.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/022-girl-12.svg b/public/media/svg/avatars/022-girl-12.svg new file mode 100644 index 0000000..4edb24f --- /dev/null +++ b/public/media/svg/avatars/022-girl-12.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/023-girl-13.svg b/public/media/svg/avatars/023-girl-13.svg new file mode 100644 index 0000000..fa1f178 --- /dev/null +++ b/public/media/svg/avatars/023-girl-13.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/024-boy-9.svg b/public/media/svg/avatars/024-boy-9.svg new file mode 100644 index 0000000..cf4752f --- /dev/null +++ b/public/media/svg/avatars/024-boy-9.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/025-girl-14.svg b/public/media/svg/avatars/025-girl-14.svg new file mode 100644 index 0000000..8741b91 --- /dev/null +++ b/public/media/svg/avatars/025-girl-14.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/026-boy-10.svg b/public/media/svg/avatars/026-boy-10.svg new file mode 100644 index 0000000..73468e2 --- /dev/null +++ b/public/media/svg/avatars/026-boy-10.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/027-girl-15.svg b/public/media/svg/avatars/027-girl-15.svg new file mode 100644 index 0000000..73969a1 --- /dev/null +++ b/public/media/svg/avatars/027-girl-15.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/028-girl-16.svg b/public/media/svg/avatars/028-girl-16.svg new file mode 100644 index 0000000..ec8bc44 --- /dev/null +++ b/public/media/svg/avatars/028-girl-16.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/029-boy-11.svg b/public/media/svg/avatars/029-boy-11.svg new file mode 100644 index 0000000..a8a2ee1 --- /dev/null +++ b/public/media/svg/avatars/029-boy-11.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/030-girl-17.svg b/public/media/svg/avatars/030-girl-17.svg new file mode 100644 index 0000000..bdafd0c --- /dev/null +++ b/public/media/svg/avatars/030-girl-17.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/031-boy-12.svg b/public/media/svg/avatars/031-boy-12.svg new file mode 100644 index 0000000..1db00f5 --- /dev/null +++ b/public/media/svg/avatars/031-boy-12.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/032-boy-13.svg b/public/media/svg/avatars/032-boy-13.svg new file mode 100644 index 0000000..354a874 --- /dev/null +++ b/public/media/svg/avatars/032-boy-13.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/033-girl-18.svg b/public/media/svg/avatars/033-girl-18.svg new file mode 100644 index 0000000..a3eeb03 --- /dev/null +++ b/public/media/svg/avatars/033-girl-18.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/034-boy-14.svg b/public/media/svg/avatars/034-boy-14.svg new file mode 100644 index 0000000..07e954a --- /dev/null +++ b/public/media/svg/avatars/034-boy-14.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/035-boy-15.svg b/public/media/svg/avatars/035-boy-15.svg new file mode 100644 index 0000000..62a014c --- /dev/null +++ b/public/media/svg/avatars/035-boy-15.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/036-girl-19.svg b/public/media/svg/avatars/036-girl-19.svg new file mode 100644 index 0000000..6f30737 --- /dev/null +++ b/public/media/svg/avatars/036-girl-19.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/037-girl-20.svg b/public/media/svg/avatars/037-girl-20.svg new file mode 100644 index 0000000..044a9bd --- /dev/null +++ b/public/media/svg/avatars/037-girl-20.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/038-boy-16.svg b/public/media/svg/avatars/038-boy-16.svg new file mode 100644 index 0000000..80caa23 --- /dev/null +++ b/public/media/svg/avatars/038-boy-16.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/039-girl-21.svg b/public/media/svg/avatars/039-girl-21.svg new file mode 100644 index 0000000..3f13a95 --- /dev/null +++ b/public/media/svg/avatars/039-girl-21.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/040-boy-17.svg b/public/media/svg/avatars/040-boy-17.svg new file mode 100644 index 0000000..b0ff0a1 --- /dev/null +++ b/public/media/svg/avatars/040-boy-17.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/041-girl-22.svg b/public/media/svg/avatars/041-girl-22.svg new file mode 100644 index 0000000..beb5eea --- /dev/null +++ b/public/media/svg/avatars/041-girl-22.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/042-girl-23.svg b/public/media/svg/avatars/042-girl-23.svg new file mode 100644 index 0000000..76e6c54 --- /dev/null +++ b/public/media/svg/avatars/042-girl-23.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/043-boy-18.svg b/public/media/svg/avatars/043-boy-18.svg new file mode 100644 index 0000000..6fd271a --- /dev/null +++ b/public/media/svg/avatars/043-boy-18.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/044-boy-19.svg b/public/media/svg/avatars/044-boy-19.svg new file mode 100644 index 0000000..e1e52b7 --- /dev/null +++ b/public/media/svg/avatars/044-boy-19.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/045-boy-20.svg b/public/media/svg/avatars/045-boy-20.svg new file mode 100644 index 0000000..3cbb351 --- /dev/null +++ b/public/media/svg/avatars/045-boy-20.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/046-girl-24.svg b/public/media/svg/avatars/046-girl-24.svg new file mode 100644 index 0000000..c78a3dd --- /dev/null +++ b/public/media/svg/avatars/046-girl-24.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/047-girl-25.svg b/public/media/svg/avatars/047-girl-25.svg new file mode 100644 index 0000000..1b8aa7b --- /dev/null +++ b/public/media/svg/avatars/047-girl-25.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/048-boy-21.svg b/public/media/svg/avatars/048-boy-21.svg new file mode 100644 index 0000000..a00b782 --- /dev/null +++ b/public/media/svg/avatars/048-boy-21.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/049-boy-22.svg b/public/media/svg/avatars/049-boy-22.svg new file mode 100644 index 0000000..bf81ff3 --- /dev/null +++ b/public/media/svg/avatars/049-boy-22.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/050-girl-26.svg b/public/media/svg/avatars/050-girl-26.svg new file mode 100644 index 0000000..0e93e4c --- /dev/null +++ b/public/media/svg/avatars/050-girl-26.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/avatars/blank-dark.svg b/public/media/svg/avatars/blank-dark.svg new file mode 100644 index 0000000..fac00d6 --- /dev/null +++ b/public/media/svg/avatars/blank-dark.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/avatars/blank.svg b/public/media/svg/avatars/blank.svg new file mode 100644 index 0000000..4fc43cd --- /dev/null +++ b/public/media/svg/avatars/blank.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/brand-logos/adidas-9.svg b/public/media/svg/brand-logos/adidas-9.svg new file mode 100644 index 0000000..1e78702 --- /dev/null +++ b/public/media/svg/brand-logos/adidas-9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/adidas.svg b/public/media/svg/brand-logos/adidas.svg new file mode 100644 index 0000000..ec7436f --- /dev/null +++ b/public/media/svg/brand-logos/adidas.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/airbnb-2.svg b/public/media/svg/brand-logos/airbnb-2.svg new file mode 100644 index 0000000..405b8b6 --- /dev/null +++ b/public/media/svg/brand-logos/airbnb-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/alcatel-mobile-3.svg b/public/media/svg/brand-logos/alcatel-mobile-3.svg new file mode 100644 index 0000000..2c89993 --- /dev/null +++ b/public/media/svg/brand-logos/alcatel-mobile-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/amara.svg b/public/media/svg/brand-logos/amara.svg new file mode 100644 index 0000000..79d61a7 --- /dev/null +++ b/public/media/svg/brand-logos/amara.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/amazon-dark.svg b/public/media/svg/brand-logos/amazon-dark.svg new file mode 100644 index 0000000..372c580 --- /dev/null +++ b/public/media/svg/brand-logos/amazon-dark.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/amazon.svg b/public/media/svg/brand-logos/amazon.svg new file mode 100644 index 0000000..77a47d3 --- /dev/null +++ b/public/media/svg/brand-logos/amazon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/android-wordmark.svg b/public/media/svg/brand-logos/android-wordmark.svg new file mode 100644 index 0000000..15bd182 --- /dev/null +++ b/public/media/svg/brand-logos/android-wordmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/angular-3.svg b/public/media/svg/brand-logos/angular-3.svg new file mode 100644 index 0000000..4118356 --- /dev/null +++ b/public/media/svg/brand-logos/angular-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/angular-icon-1.svg b/public/media/svg/brand-logos/angular-icon-1.svg new file mode 100644 index 0000000..468c4ba --- /dev/null +++ b/public/media/svg/brand-logos/angular-icon-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/angular-icon.svg b/public/media/svg/brand-logos/angular-icon.svg new file mode 100644 index 0000000..09c59e9 --- /dev/null +++ b/public/media/svg/brand-logos/angular-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/angular.svg b/public/media/svg/brand-logos/angular.svg new file mode 100644 index 0000000..c405743 --- /dev/null +++ b/public/media/svg/brand-logos/angular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/aon.svg b/public/media/svg/brand-logos/aon.svg new file mode 100644 index 0000000..54ccd73 --- /dev/null +++ b/public/media/svg/brand-logos/aon.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/apigee.svg b/public/media/svg/brand-logos/apigee.svg new file mode 100644 index 0000000..2bfa706 --- /dev/null +++ b/public/media/svg/brand-logos/apigee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/apple-black-dark.svg b/public/media/svg/brand-logos/apple-black-dark.svg new file mode 100644 index 0000000..cae2a7a --- /dev/null +++ b/public/media/svg/brand-logos/apple-black-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/brand-logos/apple-black.svg b/public/media/svg/brand-logos/apple-black.svg new file mode 100644 index 0000000..0359029 --- /dev/null +++ b/public/media/svg/brand-logos/apple-black.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/apple-itunes.svg b/public/media/svg/brand-logos/apple-itunes.svg new file mode 100644 index 0000000..63869b6 --- /dev/null +++ b/public/media/svg/brand-logos/apple-itunes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/aries-2.svg b/public/media/svg/brand-logos/aries-2.svg new file mode 100644 index 0000000..db05a06 --- /dev/null +++ b/public/media/svg/brand-logos/aries-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/asgardia.svg b/public/media/svg/brand-logos/asgardia.svg new file mode 100644 index 0000000..3ae10c1 --- /dev/null +++ b/public/media/svg/brand-logos/asgardia.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/asml-1.svg b/public/media/svg/brand-logos/asml-1.svg new file mode 100644 index 0000000..ec64f55 --- /dev/null +++ b/public/media/svg/brand-logos/asml-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/aspnetzero.svg b/public/media/svg/brand-logos/aspnetzero.svg new file mode 100644 index 0000000..2d7f72d --- /dev/null +++ b/public/media/svg/brand-logos/aspnetzero.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/atica.svg b/public/media/svg/brand-logos/atica.svg new file mode 100644 index 0000000..eb76cc1 --- /dev/null +++ b/public/media/svg/brand-logos/atica.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/audi-11.svg b/public/media/svg/brand-logos/audi-11.svg new file mode 100644 index 0000000..8333167 --- /dev/null +++ b/public/media/svg/brand-logos/audi-11.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/aven-1.svg b/public/media/svg/brand-logos/aven-1.svg new file mode 100644 index 0000000..2478bf6 --- /dev/null +++ b/public/media/svg/brand-logos/aven-1.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/aven.svg b/public/media/svg/brand-logos/aven.svg new file mode 100644 index 0000000..9eefb44 --- /dev/null +++ b/public/media/svg/brand-logos/aven.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/avis-1.svg b/public/media/svg/brand-logos/avis-1.svg new file mode 100644 index 0000000..6c07df6 --- /dev/null +++ b/public/media/svg/brand-logos/avis-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/avocode-inc.svg b/public/media/svg/brand-logos/avocode-inc.svg new file mode 100644 index 0000000..9dc636d --- /dev/null +++ b/public/media/svg/brand-logos/avocode-inc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/balloon.svg b/public/media/svg/brand-logos/balloon.svg new file mode 100644 index 0000000..27c7797 --- /dev/null +++ b/public/media/svg/brand-logos/balloon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/banco-santander-logo.svg b/public/media/svg/brand-logos/banco-santander-logo.svg new file mode 100644 index 0000000..07ca3cd --- /dev/null +++ b/public/media/svg/brand-logos/banco-santander-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/beats-electronics.svg b/public/media/svg/brand-logos/beats-electronics.svg new file mode 100644 index 0000000..130ab44 --- /dev/null +++ b/public/media/svg/brand-logos/beats-electronics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/bebo.svg b/public/media/svg/brand-logos/bebo.svg new file mode 100644 index 0000000..5ad52a5 --- /dev/null +++ b/public/media/svg/brand-logos/bebo.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/behance.svg b/public/media/svg/brand-logos/behance.svg new file mode 100644 index 0000000..1897b36 --- /dev/null +++ b/public/media/svg/brand-logos/behance.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/brand-logos/biman-airlines-classic-logo.svg b/public/media/svg/brand-logos/biman-airlines-classic-logo.svg new file mode 100644 index 0000000..36de462 --- /dev/null +++ b/public/media/svg/brand-logos/biman-airlines-classic-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/bookingcom-1.svg b/public/media/svg/brand-logos/bookingcom-1.svg new file mode 100644 index 0000000..745f1e9 --- /dev/null +++ b/public/media/svg/brand-logos/bookingcom-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/bootstrap-4.svg b/public/media/svg/brand-logos/bootstrap-4.svg new file mode 100644 index 0000000..025da4e --- /dev/null +++ b/public/media/svg/brand-logos/bootstrap-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/bootstrap-5.svg b/public/media/svg/brand-logos/bootstrap-5.svg new file mode 100644 index 0000000..17da1cb --- /dev/null +++ b/public/media/svg/brand-logos/bootstrap-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/bootstrap5.svg b/public/media/svg/brand-logos/bootstrap5.svg new file mode 100644 index 0000000..a859243 --- /dev/null +++ b/public/media/svg/brand-logos/bootstrap5.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/brand-logos/bose.svg b/public/media/svg/brand-logos/bose.svg new file mode 100644 index 0000000..58565d1 --- /dev/null +++ b/public/media/svg/brand-logos/bose.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/bp-2.svg b/public/media/svg/brand-logos/bp-2.svg new file mode 100644 index 0000000..ce02550 --- /dev/null +++ b/public/media/svg/brand-logos/bp-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/svg/brand-logos/bp-3.svg b/public/media/svg/brand-logos/bp-3.svg new file mode 100644 index 0000000..8dd6179 --- /dev/null +++ b/public/media/svg/brand-logos/bp-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/brantano.svg b/public/media/svg/brand-logos/brantano.svg new file mode 100644 index 0000000..e3b881a --- /dev/null +++ b/public/media/svg/brand-logos/brantano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/bride.svg b/public/media/svg/brand-logos/bride.svg new file mode 100644 index 0000000..dfcf7b7 --- /dev/null +++ b/public/media/svg/brand-logos/bride.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/british-council-1.svg b/public/media/svg/brand-logos/british-council-1.svg new file mode 100644 index 0000000..d16c847 --- /dev/null +++ b/public/media/svg/brand-logos/british-council-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/brondi.svg b/public/media/svg/brand-logos/brondi.svg new file mode 100644 index 0000000..9017268 --- /dev/null +++ b/public/media/svg/brand-logos/brondi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/campingaz-1.svg b/public/media/svg/brand-logos/campingaz-1.svg new file mode 100644 index 0000000..76de041 --- /dev/null +++ b/public/media/svg/brand-logos/campingaz-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/canon-logo.svg b/public/media/svg/brand-logos/canon-logo.svg new file mode 100644 index 0000000..18216f0 --- /dev/null +++ b/public/media/svg/brand-logos/canon-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/carrols.svg b/public/media/svg/brand-logos/carrols.svg new file mode 100644 index 0000000..9f96f03 --- /dev/null +++ b/public/media/svg/brand-logos/carrols.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/casio.svg b/public/media/svg/brand-logos/casio.svg new file mode 100644 index 0000000..d0b1ccb --- /dev/null +++ b/public/media/svg/brand-logos/casio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/caterpillar-2.svg b/public/media/svg/brand-logos/caterpillar-2.svg new file mode 100644 index 0000000..21ec743 --- /dev/null +++ b/public/media/svg/brand-logos/caterpillar-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/citrix-6002.svg b/public/media/svg/brand-logos/citrix-6002.svg new file mode 100644 index 0000000..b4ea371 --- /dev/null +++ b/public/media/svg/brand-logos/citrix-6002.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/code-lab.svg b/public/media/svg/brand-logos/code-lab.svg new file mode 100644 index 0000000..b8084a1 --- /dev/null +++ b/public/media/svg/brand-logos/code-lab.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/codeigniter.svg b/public/media/svg/brand-logos/codeigniter.svg new file mode 100644 index 0000000..efd8c65 --- /dev/null +++ b/public/media/svg/brand-logos/codeigniter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/comcast.svg b/public/media/svg/brand-logos/comcast.svg new file mode 100644 index 0000000..7433691 --- /dev/null +++ b/public/media/svg/brand-logos/comcast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/conair.svg b/public/media/svg/brand-logos/conair.svg new file mode 100644 index 0000000..acffca5 --- /dev/null +++ b/public/media/svg/brand-logos/conair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/costa-2.svg b/public/media/svg/brand-logos/costa-2.svg new file mode 100644 index 0000000..3315b12 --- /dev/null +++ b/public/media/svg/brand-logos/costa-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/costco-wholesale-logo.svg b/public/media/svg/brand-logos/costco-wholesale-logo.svg new file mode 100644 index 0000000..48b7aba --- /dev/null +++ b/public/media/svg/brand-logos/costco-wholesale-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/css-5.svg b/public/media/svg/brand-logos/css-5.svg new file mode 100644 index 0000000..57260fa --- /dev/null +++ b/public/media/svg/brand-logos/css-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/decathlon-logo.svg b/public/media/svg/brand-logos/decathlon-logo.svg new file mode 100644 index 0000000..f6ee854 --- /dev/null +++ b/public/media/svg/brand-logos/decathlon-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/deloitte-1.svg b/public/media/svg/brand-logos/deloitte-1.svg new file mode 100644 index 0000000..0dfa5ef --- /dev/null +++ b/public/media/svg/brand-logos/deloitte-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/depend.svg b/public/media/svg/brand-logos/depend.svg new file mode 100644 index 0000000..ea86355 --- /dev/null +++ b/public/media/svg/brand-logos/depend.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/diesel-5.svg b/public/media/svg/brand-logos/diesel-5.svg new file mode 100644 index 0000000..c9e9a0c --- /dev/null +++ b/public/media/svg/brand-logos/diesel-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/disqus.svg b/public/media/svg/brand-logos/disqus.svg new file mode 100644 index 0000000..3491f3d --- /dev/null +++ b/public/media/svg/brand-logos/disqus.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/django-community.svg b/public/media/svg/brand-logos/django-community.svg new file mode 100644 index 0000000..fae998c --- /dev/null +++ b/public/media/svg/brand-logos/django-community.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/dribbble-2.svg b/public/media/svg/brand-logos/dribbble-2.svg new file mode 100644 index 0000000..db3893e --- /dev/null +++ b/public/media/svg/brand-logos/dribbble-2.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/brand-logos/dribbble-icon-1.svg b/public/media/svg/brand-logos/dribbble-icon-1.svg new file mode 100644 index 0000000..696084e --- /dev/null +++ b/public/media/svg/brand-logos/dribbble-icon-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/dribbble-pink.svg b/public/media/svg/brand-logos/dribbble-pink.svg new file mode 100644 index 0000000..556718d --- /dev/null +++ b/public/media/svg/brand-logos/dribbble-pink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/duolingo.svg b/public/media/svg/brand-logos/duolingo.svg new file mode 100644 index 0000000..6e6e32c --- /dev/null +++ b/public/media/svg/brand-logos/duolingo.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/brand-logos/dynamac.svg b/public/media/svg/brand-logos/dynamac.svg new file mode 100644 index 0000000..2ce7664 --- /dev/null +++ b/public/media/svg/brand-logos/dynamac.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/earth-2.0.svg b/public/media/svg/brand-logos/earth-2.0.svg new file mode 100644 index 0000000..ded218e --- /dev/null +++ b/public/media/svg/brand-logos/earth-2.0.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/ebay.svg b/public/media/svg/brand-logos/ebay.svg new file mode 100644 index 0000000..11c4c6f --- /dev/null +++ b/public/media/svg/brand-logos/ebay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/ember.svg b/public/media/svg/brand-logos/ember.svg new file mode 100644 index 0000000..db49597 --- /dev/null +++ b/public/media/svg/brand-logos/ember.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/envato-2.svg b/public/media/svg/brand-logos/envato-2.svg new file mode 100644 index 0000000..95c602b --- /dev/null +++ b/public/media/svg/brand-logos/envato-2.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/brand-logos/envato.svg b/public/media/svg/brand-logos/envato.svg new file mode 100644 index 0000000..2804478 --- /dev/null +++ b/public/media/svg/brand-logos/envato.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/eolic-energy.svg b/public/media/svg/brand-logos/eolic-energy.svg new file mode 100644 index 0000000..7edd08f --- /dev/null +++ b/public/media/svg/brand-logos/eolic-energy.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/espacio-urbano.svg b/public/media/svg/brand-logos/espacio-urbano.svg new file mode 100644 index 0000000..4429cab --- /dev/null +++ b/public/media/svg/brand-logos/espacio-urbano.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/etoys-com.svg b/public/media/svg/brand-logos/etoys-com.svg new file mode 100644 index 0000000..6d00316 --- /dev/null +++ b/public/media/svg/brand-logos/etoys-com.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/facebook-1.svg b/public/media/svg/brand-logos/facebook-1.svg new file mode 100644 index 0000000..2c4e205 --- /dev/null +++ b/public/media/svg/brand-logos/facebook-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/facebook-2.svg b/public/media/svg/brand-logos/facebook-2.svg new file mode 100644 index 0000000..077bde6 --- /dev/null +++ b/public/media/svg/brand-logos/facebook-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/facebook-3.svg b/public/media/svg/brand-logos/facebook-3.svg new file mode 100644 index 0000000..f5ea0a8 --- /dev/null +++ b/public/media/svg/brand-logos/facebook-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/facebook-4.svg b/public/media/svg/brand-logos/facebook-4.svg new file mode 100644 index 0000000..ccff813 --- /dev/null +++ b/public/media/svg/brand-logos/facebook-4.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/svg/brand-logos/facebook-5.svg b/public/media/svg/brand-logos/facebook-5.svg new file mode 100644 index 0000000..795be95 --- /dev/null +++ b/public/media/svg/brand-logos/facebook-5.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/farmers-insurance-3.svg b/public/media/svg/brand-logos/farmers-insurance-3.svg new file mode 100644 index 0000000..44f64e4 --- /dev/null +++ b/public/media/svg/brand-logos/farmers-insurance-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/figma-1.svg b/public/media/svg/brand-logos/figma-1.svg new file mode 100644 index 0000000..d6042ef --- /dev/null +++ b/public/media/svg/brand-logos/figma-1.svg @@ -0,0 +1 @@ +Figma.logoCreated using Figma \ No newline at end of file diff --git a/public/media/svg/brand-logos/foursquare.svg b/public/media/svg/brand-logos/foursquare.svg new file mode 100644 index 0000000..ed4939f --- /dev/null +++ b/public/media/svg/brand-logos/foursquare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/fox-hub.svg b/public/media/svg/brand-logos/fox-hub.svg new file mode 100644 index 0000000..4868a8f --- /dev/null +++ b/public/media/svg/brand-logos/fox-hub.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/svg/brand-logos/friday-s.svg b/public/media/svg/brand-logos/friday-s.svg new file mode 100644 index 0000000..d203c67 --- /dev/null +++ b/public/media/svg/brand-logos/friday-s.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/fujifilm.svg b/public/media/svg/brand-logos/fujifilm.svg new file mode 100644 index 0000000..ccb2453 --- /dev/null +++ b/public/media/svg/brand-logos/fujifilm.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/funding-circle.svg b/public/media/svg/brand-logos/funding-circle.svg new file mode 100644 index 0000000..0f6bacc --- /dev/null +++ b/public/media/svg/brand-logos/funding-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/gab.svg b/public/media/svg/brand-logos/gab.svg new file mode 100644 index 0000000..8dea9c3 --- /dev/null +++ b/public/media/svg/brand-logos/gab.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/brand-logos/garmin-1.svg b/public/media/svg/brand-logos/garmin-1.svg new file mode 100644 index 0000000..e34cd97 --- /dev/null +++ b/public/media/svg/brand-logos/garmin-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/general-electric.svg b/public/media/svg/brand-logos/general-electric.svg new file mode 100644 index 0000000..41d966b --- /dev/null +++ b/public/media/svg/brand-logos/general-electric.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/github-1.svg b/public/media/svg/brand-logos/github-1.svg new file mode 100644 index 0000000..d820113 --- /dev/null +++ b/public/media/svg/brand-logos/github-1.svg @@ -0,0 +1,12 @@ + + + + + diff --git a/public/media/svg/brand-logos/github-2.svg b/public/media/svg/brand-logos/github-2.svg new file mode 100644 index 0000000..d396db9 --- /dev/null +++ b/public/media/svg/brand-logos/github-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/github-icon.svg b/public/media/svg/brand-logos/github-icon.svg new file mode 100644 index 0000000..0f6b938 --- /dev/null +++ b/public/media/svg/brand-logos/github-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/github.svg b/public/media/svg/brand-logos/github.svg new file mode 100644 index 0000000..1d8b300 --- /dev/null +++ b/public/media/svg/brand-logos/github.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/brand-logos/gitlab.svg b/public/media/svg/brand-logos/gitlab.svg new file mode 100644 index 0000000..ab63afd --- /dev/null +++ b/public/media/svg/brand-logos/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/goldline.svg b/public/media/svg/brand-logos/goldline.svg new file mode 100644 index 0000000..4917c09 --- /dev/null +++ b/public/media/svg/brand-logos/goldline.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/google-icon.svg b/public/media/svg/brand-logos/google-icon.svg new file mode 100644 index 0000000..1307b69 --- /dev/null +++ b/public/media/svg/brand-logos/google-icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/svg/brand-logos/google-photos.svg b/public/media/svg/brand-logos/google-photos.svg new file mode 100644 index 0000000..d63175d --- /dev/null +++ b/public/media/svg/brand-logos/google-photos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/google-play-store.svg b/public/media/svg/brand-logos/google-play-store.svg new file mode 100644 index 0000000..1cbc450 --- /dev/null +++ b/public/media/svg/brand-logos/google-play-store.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/google-podcasts.svg b/public/media/svg/brand-logos/google-podcasts.svg new file mode 100644 index 0000000..8d672b0 --- /dev/null +++ b/public/media/svg/brand-logos/google-podcasts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/google-tag-manager.svg b/public/media/svg/brand-logos/google-tag-manager.svg new file mode 100644 index 0000000..ec7228e --- /dev/null +++ b/public/media/svg/brand-logos/google-tag-manager.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/gradiente-2.svg b/public/media/svg/brand-logos/gradiente-2.svg new file mode 100644 index 0000000..729a048 --- /dev/null +++ b/public/media/svg/brand-logos/gradiente-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/gulp-1.svg b/public/media/svg/brand-logos/gulp-1.svg new file mode 100644 index 0000000..eedd9c4 --- /dev/null +++ b/public/media/svg/brand-logos/gulp-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/gulp.svg b/public/media/svg/brand-logos/gulp.svg new file mode 100644 index 0000000..41b16c4 --- /dev/null +++ b/public/media/svg/brand-logos/gulp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/hbo.svg b/public/media/svg/brand-logos/hbo.svg new file mode 100644 index 0000000..b124cc2 --- /dev/null +++ b/public/media/svg/brand-logos/hbo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/heavylift.svg b/public/media/svg/brand-logos/heavylift.svg new file mode 100644 index 0000000..8538c5c --- /dev/null +++ b/public/media/svg/brand-logos/heavylift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/hex-lab.svg b/public/media/svg/brand-logos/hex-lab.svg new file mode 100644 index 0000000..45a5750 --- /dev/null +++ b/public/media/svg/brand-logos/hex-lab.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/hilton-buenos-aires.svg b/public/media/svg/brand-logos/hilton-buenos-aires.svg new file mode 100644 index 0000000..011dd01 --- /dev/null +++ b/public/media/svg/brand-logos/hilton-buenos-aires.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/himel.svg b/public/media/svg/brand-logos/himel.svg new file mode 100644 index 0000000..a87a519 --- /dev/null +++ b/public/media/svg/brand-logos/himel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/honda-7.svg b/public/media/svg/brand-logos/honda-7.svg new file mode 100644 index 0000000..5e90e51 --- /dev/null +++ b/public/media/svg/brand-logos/honda-7.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/hp-2.svg b/public/media/svg/brand-logos/hp-2.svg new file mode 100644 index 0000000..76edb0b --- /dev/null +++ b/public/media/svg/brand-logos/hp-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/hp-3.svg b/public/media/svg/brand-logos/hp-3.svg new file mode 100644 index 0000000..14e9868 --- /dev/null +++ b/public/media/svg/brand-logos/hp-3.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/svg/brand-logos/hp-hewlett-packard.svg b/public/media/svg/brand-logos/hp-hewlett-packard.svg new file mode 100644 index 0000000..c5e4a38 --- /dev/null +++ b/public/media/svg/brand-logos/hp-hewlett-packard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/html5.svg b/public/media/svg/brand-logos/html5.svg new file mode 100644 index 0000000..50b8732 --- /dev/null +++ b/public/media/svg/brand-logos/html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/huggies-2.svg b/public/media/svg/brand-logos/huggies-2.svg new file mode 100644 index 0000000..9d77114 --- /dev/null +++ b/public/media/svg/brand-logos/huggies-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/ideaa.svg b/public/media/svg/brand-logos/ideaa.svg new file mode 100644 index 0000000..d91b18d --- /dev/null +++ b/public/media/svg/brand-logos/ideaa.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/ikon-1.svg b/public/media/svg/brand-logos/ikon-1.svg new file mode 100644 index 0000000..30c7091 --- /dev/null +++ b/public/media/svg/brand-logos/ikon-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/infography.svg b/public/media/svg/brand-logos/infography.svg new file mode 100644 index 0000000..8a5023a --- /dev/null +++ b/public/media/svg/brand-logos/infography.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/instagram-2-1.svg b/public/media/svg/brand-logos/instagram-2-1.svg new file mode 100644 index 0000000..04aeff8 --- /dev/null +++ b/public/media/svg/brand-logos/instagram-2-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/instagram-2016.svg b/public/media/svg/brand-logos/instagram-2016.svg new file mode 100644 index 0000000..8a1fbcc --- /dev/null +++ b/public/media/svg/brand-logos/instagram-2016.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/intermarche-2.svg b/public/media/svg/brand-logos/intermarche-2.svg new file mode 100644 index 0000000..fdce438 --- /dev/null +++ b/public/media/svg/brand-logos/intermarche-2.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/invision.svg b/public/media/svg/brand-logos/invision.svg new file mode 100644 index 0000000..bba53d2 --- /dev/null +++ b/public/media/svg/brand-logos/invision.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/javascript-2.svg b/public/media/svg/brand-logos/javascript-2.svg new file mode 100644 index 0000000..d37637d --- /dev/null +++ b/public/media/svg/brand-logos/javascript-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/javascript-4.svg b/public/media/svg/brand-logos/javascript-4.svg new file mode 100644 index 0000000..dccb0ea --- /dev/null +++ b/public/media/svg/brand-logos/javascript-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/javascript.svg b/public/media/svg/brand-logos/javascript.svg new file mode 100644 index 0000000..6ef8fcb --- /dev/null +++ b/public/media/svg/brand-logos/javascript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/jelcz.svg b/public/media/svg/brand-logos/jelcz.svg new file mode 100644 index 0000000..ab78941 --- /dev/null +++ b/public/media/svg/brand-logos/jelcz.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/jfits.svg b/public/media/svg/brand-logos/jfits.svg new file mode 100644 index 0000000..878de7e --- /dev/null +++ b/public/media/svg/brand-logos/jfits.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/jquery-2.svg b/public/media/svg/brand-logos/jquery-2.svg new file mode 100644 index 0000000..b637591 --- /dev/null +++ b/public/media/svg/brand-logos/jquery-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/jquery.svg b/public/media/svg/brand-logos/jquery.svg new file mode 100644 index 0000000..8a175c7 --- /dev/null +++ b/public/media/svg/brand-logos/jquery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/kanba.svg b/public/media/svg/brand-logos/kanba.svg new file mode 100644 index 0000000..a1b1b96 --- /dev/null +++ b/public/media/svg/brand-logos/kanba.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/keysight-logo.svg b/public/media/svg/brand-logos/keysight-logo.svg new file mode 100644 index 0000000..75ec218 --- /dev/null +++ b/public/media/svg/brand-logos/keysight-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/kickstarter.svg b/public/media/svg/brand-logos/kickstarter.svg new file mode 100644 index 0000000..6531bdb --- /dev/null +++ b/public/media/svg/brand-logos/kickstarter.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/komatsu-3.svg b/public/media/svg/brand-logos/komatsu-3.svg new file mode 100644 index 0000000..e85ae96 --- /dev/null +++ b/public/media/svg/brand-logos/komatsu-3.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/koni-special.svg b/public/media/svg/brand-logos/koni-special.svg new file mode 100644 index 0000000..bab1461 --- /dev/null +++ b/public/media/svg/brand-logos/koni-special.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/kpmg.svg b/public/media/svg/brand-logos/kpmg.svg new file mode 100644 index 0000000..0c5c7ef --- /dev/null +++ b/public/media/svg/brand-logos/kpmg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/laravel-2.svg b/public/media/svg/brand-logos/laravel-2.svg new file mode 100644 index 0000000..8489937 --- /dev/null +++ b/public/media/svg/brand-logos/laravel-2.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/brand-logos/last-fm-1.svg b/public/media/svg/brand-logos/last-fm-1.svg new file mode 100644 index 0000000..1175fd4 --- /dev/null +++ b/public/media/svg/brand-logos/last-fm-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/layer.svg b/public/media/svg/brand-logos/layer.svg new file mode 100644 index 0000000..9802575 --- /dev/null +++ b/public/media/svg/brand-logos/layer.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/leaf.svg b/public/media/svg/brand-logos/leaf.svg new file mode 100644 index 0000000..b0c2b95 --- /dev/null +++ b/public/media/svg/brand-logos/leaf.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/leclerc-1.svg b/public/media/svg/brand-logos/leclerc-1.svg new file mode 100644 index 0000000..4804068 --- /dev/null +++ b/public/media/svg/brand-logos/leclerc-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/legrand.svg b/public/media/svg/brand-logos/legrand.svg new file mode 100644 index 0000000..be8e984 --- /dev/null +++ b/public/media/svg/brand-logos/legrand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/leica-2.svg b/public/media/svg/brand-logos/leica-2.svg new file mode 100644 index 0000000..284719d --- /dev/null +++ b/public/media/svg/brand-logos/leica-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/levis.svg b/public/media/svg/brand-logos/levis.svg new file mode 100644 index 0000000..2106c9b --- /dev/null +++ b/public/media/svg/brand-logos/levis.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/lg-electronics.svg b/public/media/svg/brand-logos/lg-electronics.svg new file mode 100644 index 0000000..4011702 --- /dev/null +++ b/public/media/svg/brand-logos/lg-electronics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/lidl-supermarkets.svg b/public/media/svg/brand-logos/lidl-supermarkets.svg new file mode 100644 index 0000000..a9ba6f6 --- /dev/null +++ b/public/media/svg/brand-logos/lidl-supermarkets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/lighting.svg b/public/media/svg/brand-logos/lighting.svg new file mode 100644 index 0000000..08ad7da --- /dev/null +++ b/public/media/svg/brand-logos/lighting.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/linkedin-1.svg b/public/media/svg/brand-logos/linkedin-1.svg new file mode 100644 index 0000000..e94ecff --- /dev/null +++ b/public/media/svg/brand-logos/linkedin-1.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/linkedin-2.svg b/public/media/svg/brand-logos/linkedin-2.svg new file mode 100644 index 0000000..d8c2d30 --- /dev/null +++ b/public/media/svg/brand-logos/linkedin-2.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/linkedin-3.svg b/public/media/svg/brand-logos/linkedin-3.svg new file mode 100644 index 0000000..f3c2f11 --- /dev/null +++ b/public/media/svg/brand-logos/linkedin-3.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/brand-logos/linkedin.svg b/public/media/svg/brand-logos/linkedin.svg new file mode 100644 index 0000000..c5cb248 --- /dev/null +++ b/public/media/svg/brand-logos/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/liva.svg b/public/media/svg/brand-logos/liva.svg new file mode 100644 index 0000000..2a81f61 --- /dev/null +++ b/public/media/svg/brand-logos/liva.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/lloyds-of-london-logo.svg b/public/media/svg/brand-logos/lloyds-of-london-logo.svg new file mode 100644 index 0000000..0694c08 --- /dev/null +++ b/public/media/svg/brand-logos/lloyds-of-london-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/mastercard-icon.svg b/public/media/svg/brand-logos/mastercard-icon.svg new file mode 100644 index 0000000..924a6d7 --- /dev/null +++ b/public/media/svg/brand-logos/mastercard-icon.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/maxis-communications-logo.svg b/public/media/svg/brand-logos/maxis-communications-logo.svg new file mode 100644 index 0000000..2dd5bd9 --- /dev/null +++ b/public/media/svg/brand-logos/maxis-communications-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/metro-1.svg b/public/media/svg/brand-logos/metro-1.svg new file mode 100644 index 0000000..70b7520 --- /dev/null +++ b/public/media/svg/brand-logos/metro-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/metro-4.svg b/public/media/svg/brand-logos/metro-4.svg new file mode 100644 index 0000000..fa9cf60 --- /dev/null +++ b/public/media/svg/brand-logos/metro-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/metro-by-t-mobile.svg b/public/media/svg/brand-logos/metro-by-t-mobile.svg new file mode 100644 index 0000000..7a616a5 --- /dev/null +++ b/public/media/svg/brand-logos/metro-by-t-mobile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/microsoft-5.svg b/public/media/svg/brand-logos/microsoft-5.svg new file mode 100644 index 0000000..89f6237 --- /dev/null +++ b/public/media/svg/brand-logos/microsoft-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/miller-6.svg b/public/media/svg/brand-logos/miller-6.svg new file mode 100644 index 0000000..3264c09 --- /dev/null +++ b/public/media/svg/brand-logos/miller-6.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/minol.svg b/public/media/svg/brand-logos/minol.svg new file mode 100644 index 0000000..6e7c3c5 --- /dev/null +++ b/public/media/svg/brand-logos/minol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/mnd.svg b/public/media/svg/brand-logos/mnd.svg new file mode 100644 index 0000000..ddce94f --- /dev/null +++ b/public/media/svg/brand-logos/mnd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/msn.svg b/public/media/svg/brand-logos/msn.svg new file mode 100644 index 0000000..8e831c1 --- /dev/null +++ b/public/media/svg/brand-logos/msn.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/mysql-2.svg b/public/media/svg/brand-logos/mysql-2.svg new file mode 100644 index 0000000..9f4c2b6 --- /dev/null +++ b/public/media/svg/brand-logos/mysql-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/nasa.svg b/public/media/svg/brand-logos/nasa.svg new file mode 100644 index 0000000..3cde3d5 --- /dev/null +++ b/public/media/svg/brand-logos/nasa.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/nestle-4.svg b/public/media/svg/brand-logos/nestle-4.svg new file mode 100644 index 0000000..8ad83f1 --- /dev/null +++ b/public/media/svg/brand-logos/nestle-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/new-beko-logo.svg b/public/media/svg/brand-logos/new-beko-logo.svg new file mode 100644 index 0000000..96b7ae6 --- /dev/null +++ b/public/media/svg/brand-logos/new-beko-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/nike-4.svg b/public/media/svg/brand-logos/nike-4.svg new file mode 100644 index 0000000..e48b055 --- /dev/null +++ b/public/media/svg/brand-logos/nike-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/nirastate.svg b/public/media/svg/brand-logos/nirastate.svg new file mode 100644 index 0000000..3d883b8 --- /dev/null +++ b/public/media/svg/brand-logos/nirastate.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/node-sass.svg b/public/media/svg/brand-logos/node-sass.svg new file mode 100644 index 0000000..53e709b --- /dev/null +++ b/public/media/svg/brand-logos/node-sass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/noht.svg b/public/media/svg/brand-logos/noht.svg new file mode 100644 index 0000000..48f2dae --- /dev/null +++ b/public/media/svg/brand-logos/noht.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/npm.svg b/public/media/svg/brand-logos/npm.svg new file mode 100644 index 0000000..867a7b9 --- /dev/null +++ b/public/media/svg/brand-logos/npm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/ocaml.svg b/public/media/svg/brand-logos/ocaml.svg new file mode 100644 index 0000000..5f96801 --- /dev/null +++ b/public/media/svg/brand-logos/ocaml.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/oger-tours.svg b/public/media/svg/brand-logos/oger-tours.svg new file mode 100644 index 0000000..034265c --- /dev/null +++ b/public/media/svg/brand-logos/oger-tours.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/origin-4.svg b/public/media/svg/brand-logos/origin-4.svg new file mode 100644 index 0000000..1743457 --- /dev/null +++ b/public/media/svg/brand-logos/origin-4.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/paypie.svg b/public/media/svg/brand-logos/paypie.svg new file mode 100644 index 0000000..cae640f --- /dev/null +++ b/public/media/svg/brand-logos/paypie.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/pinterest-p.svg b/public/media/svg/brand-logos/pinterest-p.svg new file mode 100644 index 0000000..7b28e2e --- /dev/null +++ b/public/media/svg/brand-logos/pinterest-p.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/brand-logos/pinterest.svg b/public/media/svg/brand-logos/pinterest.svg new file mode 100644 index 0000000..9fbd772 --- /dev/null +++ b/public/media/svg/brand-logos/pinterest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/plurk.svg b/public/media/svg/brand-logos/plurk.svg new file mode 100644 index 0000000..55dcf33 --- /dev/null +++ b/public/media/svg/brand-logos/plurk.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/puma-logo.svg b/public/media/svg/brand-logos/puma-logo.svg new file mode 100644 index 0000000..5d37fd8 --- /dev/null +++ b/public/media/svg/brand-logos/puma-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/python-5.svg b/public/media/svg/brand-logos/python-5.svg new file mode 100644 index 0000000..a16973b --- /dev/null +++ b/public/media/svg/brand-logos/python-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/quilosa.svg b/public/media/svg/brand-logos/quilosa.svg new file mode 100644 index 0000000..dec2f91 --- /dev/null +++ b/public/media/svg/brand-logos/quilosa.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/brand-logos/react-native-firebase-1.svg b/public/media/svg/brand-logos/react-native-firebase-1.svg new file mode 100644 index 0000000..88d87f3 --- /dev/null +++ b/public/media/svg/brand-logos/react-native-firebase-1.svg @@ -0,0 +1 @@ +Slice 1 \ No newline at end of file diff --git a/public/media/svg/brand-logos/react-router.svg b/public/media/svg/brand-logos/react-router.svg new file mode 100644 index 0000000..13d18ef --- /dev/null +++ b/public/media/svg/brand-logos/react-router.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/react.svg b/public/media/svg/brand-logos/react.svg new file mode 100644 index 0000000..f95e632 --- /dev/null +++ b/public/media/svg/brand-logos/react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/recycling.svg b/public/media/svg/brand-logos/recycling.svg new file mode 100644 index 0000000..d0531f2 --- /dev/null +++ b/public/media/svg/brand-logos/recycling.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/redbull.svg b/public/media/svg/brand-logos/redbull.svg new file mode 100644 index 0000000..e5ee16d --- /dev/null +++ b/public/media/svg/brand-logos/redbull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/reddit.svg b/public/media/svg/brand-logos/reddit.svg new file mode 100644 index 0000000..1079a68 --- /dev/null +++ b/public/media/svg/brand-logos/reddit.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/brand-logos/rgb.svg b/public/media/svg/brand-logos/rgb.svg new file mode 100644 index 0000000..7f11fbc --- /dev/null +++ b/public/media/svg/brand-logos/rgb.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/sass-1.svg b/public/media/svg/brand-logos/sass-1.svg new file mode 100644 index 0000000..87f96db --- /dev/null +++ b/public/media/svg/brand-logos/sass-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/seat-pg.svg b/public/media/svg/brand-logos/seat-pg.svg new file mode 100644 index 0000000..db76b6e --- /dev/null +++ b/public/media/svg/brand-logos/seat-pg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/sentry-3.svg b/public/media/svg/brand-logos/sentry-3.svg new file mode 100644 index 0000000..24348ad --- /dev/null +++ b/public/media/svg/brand-logos/sentry-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/shell.svg b/public/media/svg/brand-logos/shell.svg new file mode 100644 index 0000000..0d3a1e0 --- /dev/null +++ b/public/media/svg/brand-logos/shell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/siplast.svg b/public/media/svg/brand-logos/siplast.svg new file mode 100644 index 0000000..bef2b1f --- /dev/null +++ b/public/media/svg/brand-logos/siplast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/slack-icon.svg b/public/media/svg/brand-logos/slack-icon.svg new file mode 100644 index 0000000..7b55f9f --- /dev/null +++ b/public/media/svg/brand-logos/slack-icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/svg/brand-logos/slack-new-logo.svg b/public/media/svg/brand-logos/slack-new-logo.svg new file mode 100644 index 0000000..69a4eb6 --- /dev/null +++ b/public/media/svg/brand-logos/slack-new-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/slack.svg b/public/media/svg/brand-logos/slack.svg new file mode 100644 index 0000000..fb5e19e --- /dev/null +++ b/public/media/svg/brand-logos/slack.svg @@ -0,0 +1 @@ +backgroundLayer 1 \ No newline at end of file diff --git a/public/media/svg/brand-logos/smartphone.svg b/public/media/svg/brand-logos/smartphone.svg new file mode 100644 index 0000000..0bc0c61 --- /dev/null +++ b/public/media/svg/brand-logos/smartphone.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/brand-logos/snowbird.svg b/public/media/svg/brand-logos/snowbird.svg new file mode 100644 index 0000000..e373aa0 --- /dev/null +++ b/public/media/svg/brand-logos/snowbird.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/solaytic.svg b/public/media/svg/brand-logos/solaytic.svg new file mode 100644 index 0000000..3c01170 --- /dev/null +++ b/public/media/svg/brand-logos/solaytic.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/soriana-logo-1.svg b/public/media/svg/brand-logos/soriana-logo-1.svg new file mode 100644 index 0000000..2a59e52 --- /dev/null +++ b/public/media/svg/brand-logos/soriana-logo-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/sparkpost.svg b/public/media/svg/brand-logos/sparkpost.svg new file mode 100644 index 0000000..5d02749 --- /dev/null +++ b/public/media/svg/brand-logos/sparkpost.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/spotify-2.svg b/public/media/svg/brand-logos/spotify-2.svg new file mode 100644 index 0000000..cfc993b --- /dev/null +++ b/public/media/svg/brand-logos/spotify-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/spotify-logo.svg b/public/media/svg/brand-logos/spotify-logo.svg new file mode 100644 index 0000000..0294d06 --- /dev/null +++ b/public/media/svg/brand-logos/spotify-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/spotify.svg b/public/media/svg/brand-logos/spotify.svg new file mode 100644 index 0000000..c607a8b --- /dev/null +++ b/public/media/svg/brand-logos/spotify.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/spring-3.svg b/public/media/svg/brand-logos/spring-3.svg new file mode 100644 index 0000000..2564009 --- /dev/null +++ b/public/media/svg/brand-logos/spring-3.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/brand-logos/sprint-nextel.svg b/public/media/svg/brand-logos/sprint-nextel.svg new file mode 100644 index 0000000..b82459e --- /dev/null +++ b/public/media/svg/brand-logos/sprint-nextel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/stabilo.svg b/public/media/svg/brand-logos/stabilo.svg new file mode 100644 index 0000000..36a5fb4 --- /dev/null +++ b/public/media/svg/brand-logos/stabilo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/strava-wordmark-1.svg b/public/media/svg/brand-logos/strava-wordmark-1.svg new file mode 100644 index 0000000..a281c3e --- /dev/null +++ b/public/media/svg/brand-logos/strava-wordmark-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/stream-1.svg b/public/media/svg/brand-logos/stream-1.svg new file mode 100644 index 0000000..314d738 --- /dev/null +++ b/public/media/svg/brand-logos/stream-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/super-cuts.svg b/public/media/svg/brand-logos/super-cuts.svg new file mode 100644 index 0000000..13bbb3b --- /dev/null +++ b/public/media/svg/brand-logos/super-cuts.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/suzuki-motor-corporation-logo.svg b/public/media/svg/brand-logos/suzuki-motor-corporation-logo.svg new file mode 100644 index 0000000..5b9d089 --- /dev/null +++ b/public/media/svg/brand-logos/suzuki-motor-corporation-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/suzuki.svg b/public/media/svg/brand-logos/suzuki.svg new file mode 100644 index 0000000..3e1c620 --- /dev/null +++ b/public/media/svg/brand-logos/suzuki.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/swarm.svg b/public/media/svg/brand-logos/swarm.svg new file mode 100644 index 0000000..2240b86 --- /dev/null +++ b/public/media/svg/brand-logos/swarm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/syngenta.svg b/public/media/svg/brand-logos/syngenta.svg new file mode 100644 index 0000000..9a396b5 --- /dev/null +++ b/public/media/svg/brand-logos/syngenta.svg @@ -0,0 +1 @@ + diff --git a/public/media/svg/brand-logos/telegram-2.svg b/public/media/svg/brand-logos/telegram-2.svg new file mode 100644 index 0000000..e9b1f6c --- /dev/null +++ b/public/media/svg/brand-logos/telegram-2.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/telegram.svg b/public/media/svg/brand-logos/telegram.svg new file mode 100644 index 0000000..4ea28d8 --- /dev/null +++ b/public/media/svg/brand-logos/telegram.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/svg/brand-logos/tempstar.svg b/public/media/svg/brand-logos/tempstar.svg new file mode 100644 index 0000000..2dd75ac --- /dev/null +++ b/public/media/svg/brand-logos/tempstar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/the-blockchain-group-tbg.svg b/public/media/svg/brand-logos/the-blockchain-group-tbg.svg new file mode 100644 index 0000000..d6a3c86 --- /dev/null +++ b/public/media/svg/brand-logos/the-blockchain-group-tbg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/thomas-1.svg b/public/media/svg/brand-logos/thomas-1.svg new file mode 100644 index 0000000..23c3d7a --- /dev/null +++ b/public/media/svg/brand-logos/thomas-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/thuisbezorgd.svg b/public/media/svg/brand-logos/thuisbezorgd.svg new file mode 100644 index 0000000..0a7ad46 --- /dev/null +++ b/public/media/svg/brand-logos/thuisbezorgd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/thule-2.svg b/public/media/svg/brand-logos/thule-2.svg new file mode 100644 index 0000000..88dbde6 --- /dev/null +++ b/public/media/svg/brand-logos/thule-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/ticketmaster-5.svg b/public/media/svg/brand-logos/ticketmaster-5.svg new file mode 100644 index 0000000..34e32ec --- /dev/null +++ b/public/media/svg/brand-logos/ticketmaster-5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/tofas-logo.svg b/public/media/svg/brand-logos/tofas-logo.svg new file mode 100644 index 0000000..d2e430d --- /dev/null +++ b/public/media/svg/brand-logos/tofas-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/tower.svg b/public/media/svg/brand-logos/tower.svg new file mode 100644 index 0000000..8e1584b --- /dev/null +++ b/public/media/svg/brand-logos/tower.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/svg/brand-logos/treva-1.svg b/public/media/svg/brand-logos/treva-1.svg new file mode 100644 index 0000000..cca4145 --- /dev/null +++ b/public/media/svg/brand-logos/treva-1.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/treva.svg b/public/media/svg/brand-logos/treva.svg new file mode 100644 index 0000000..696e2d3 --- /dev/null +++ b/public/media/svg/brand-logos/treva.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/trimble-2.svg b/public/media/svg/brand-logos/trimble-2.svg new file mode 100644 index 0000000..d34ce2a --- /dev/null +++ b/public/media/svg/brand-logos/trimble-2.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/trivago.svg b/public/media/svg/brand-logos/trivago.svg new file mode 100644 index 0000000..f2277f1 --- /dev/null +++ b/public/media/svg/brand-logos/trivago.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/truman.svg b/public/media/svg/brand-logos/truman.svg new file mode 100644 index 0000000..0fbefa3 --- /dev/null +++ b/public/media/svg/brand-logos/truman.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/tumblr.svg b/public/media/svg/brand-logos/tumblr.svg new file mode 100644 index 0000000..43309e2 --- /dev/null +++ b/public/media/svg/brand-logos/tumblr.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/brand-logos/tvit.svg b/public/media/svg/brand-logos/tvit.svg new file mode 100644 index 0000000..2c1b4b2 --- /dev/null +++ b/public/media/svg/brand-logos/tvit.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/twitch-2.svg b/public/media/svg/brand-logos/twitch-2.svg new file mode 100644 index 0000000..107d645 --- /dev/null +++ b/public/media/svg/brand-logos/twitch-2.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/brand-logos/twitch.svg b/public/media/svg/brand-logos/twitch.svg new file mode 100644 index 0000000..0e1882b --- /dev/null +++ b/public/media/svg/brand-logos/twitch.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/brand-logos/twitter-2.svg b/public/media/svg/brand-logos/twitter-2.svg new file mode 100644 index 0000000..45d188c --- /dev/null +++ b/public/media/svg/brand-logos/twitter-2.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/svg/brand-logos/twitter.svg b/public/media/svg/brand-logos/twitter.svg new file mode 100644 index 0000000..3da834b --- /dev/null +++ b/public/media/svg/brand-logos/twitter.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/brand-logos/typescript-1.svg b/public/media/svg/brand-logos/typescript-1.svg new file mode 100644 index 0000000..030efa2 --- /dev/null +++ b/public/media/svg/brand-logos/typescript-1.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/svg/brand-logos/unilever-2.svg b/public/media/svg/brand-logos/unilever-2.svg new file mode 100644 index 0000000..bcbc7f9 --- /dev/null +++ b/public/media/svg/brand-logos/unilever-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/university-of-cambridge.svg b/public/media/svg/brand-logos/university-of-cambridge.svg new file mode 100644 index 0000000..dc853bd --- /dev/null +++ b/public/media/svg/brand-logos/university-of-cambridge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/urw-software.svg b/public/media/svg/brand-logos/urw-software.svg new file mode 100644 index 0000000..8008430 --- /dev/null +++ b/public/media/svg/brand-logos/urw-software.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/velocity-9.svg b/public/media/svg/brand-logos/velocity-9.svg new file mode 100644 index 0000000..fa1360b --- /dev/null +++ b/public/media/svg/brand-logos/velocity-9.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/brand-logos/verizon-2015.svg b/public/media/svg/brand-logos/verizon-2015.svg new file mode 100644 index 0000000..3ae76f7 --- /dev/null +++ b/public/media/svg/brand-logos/verizon-2015.svg @@ -0,0 +1 @@ +Layer 1 copy \ No newline at end of file diff --git a/public/media/svg/brand-logos/vimeo-icon.svg b/public/media/svg/brand-logos/vimeo-icon.svg new file mode 100644 index 0000000..93dc538 --- /dev/null +++ b/public/media/svg/brand-logos/vimeo-icon.svg @@ -0,0 +1 @@ +Layer 1 \ No newline at end of file diff --git a/public/media/svg/brand-logos/vimeo.svg b/public/media/svg/brand-logos/vimeo.svg new file mode 100644 index 0000000..cbd268c --- /dev/null +++ b/public/media/svg/brand-logos/vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/visa-icon.svg b/public/media/svg/brand-logos/visa-icon.svg new file mode 100644 index 0000000..495cd2a --- /dev/null +++ b/public/media/svg/brand-logos/visa-icon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/brand-logos/visa.svg b/public/media/svg/brand-logos/visa.svg new file mode 100644 index 0000000..75c2c81 --- /dev/null +++ b/public/media/svg/brand-logos/visa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/vodafone.svg b/public/media/svg/brand-logos/vodafone.svg new file mode 100644 index 0000000..42e0d61 --- /dev/null +++ b/public/media/svg/brand-logos/vodafone.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/brand-logos/volicity-9.svg b/public/media/svg/brand-logos/volicity-9.svg new file mode 100644 index 0000000..d57091f --- /dev/null +++ b/public/media/svg/brand-logos/volicity-9.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/brand-logos/vue-9.svg b/public/media/svg/brand-logos/vue-9.svg new file mode 100644 index 0000000..8d00e8c --- /dev/null +++ b/public/media/svg/brand-logos/vue-9.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/vype.svg b/public/media/svg/brand-logos/vype.svg new file mode 100644 index 0000000..46c2978 --- /dev/null +++ b/public/media/svg/brand-logos/vype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/webasto-logo.svg b/public/media/svg/brand-logos/webasto-logo.svg new file mode 100644 index 0000000..1f41e5d --- /dev/null +++ b/public/media/svg/brand-logos/webasto-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/webpack-icon.svg b/public/media/svg/brand-logos/webpack-icon.svg new file mode 100644 index 0000000..c03e0c7 --- /dev/null +++ b/public/media/svg/brand-logos/webpack-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/webpack.svg b/public/media/svg/brand-logos/webpack.svg new file mode 100644 index 0000000..4f34cfc --- /dev/null +++ b/public/media/svg/brand-logos/webpack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/west-marine.svg b/public/media/svg/brand-logos/west-marine.svg new file mode 100644 index 0000000..22d3b33 --- /dev/null +++ b/public/media/svg/brand-logos/west-marine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/worth.svg b/public/media/svg/brand-logos/worth.svg new file mode 100644 index 0000000..e29a6ce --- /dev/null +++ b/public/media/svg/brand-logos/worth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/xing-icon.svg b/public/media/svg/brand-logos/xing-icon.svg new file mode 100644 index 0000000..32bd4b6 --- /dev/null +++ b/public/media/svg/brand-logos/xing-icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/youtube-2.svg b/public/media/svg/brand-logos/youtube-2.svg new file mode 100644 index 0000000..f165c30 --- /dev/null +++ b/public/media/svg/brand-logos/youtube-2.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/brand-logos/youtube-3.svg b/public/media/svg/brand-logos/youtube-3.svg new file mode 100644 index 0000000..53c736f --- /dev/null +++ b/public/media/svg/brand-logos/youtube-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/youtube-play-2.svg b/public/media/svg/brand-logos/youtube-play-2.svg new file mode 100644 index 0000000..1ecf3f2 --- /dev/null +++ b/public/media/svg/brand-logos/youtube-play-2.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/brand-logos/youtube-play.svg b/public/media/svg/brand-logos/youtube-play.svg new file mode 100644 index 0000000..094729f --- /dev/null +++ b/public/media/svg/brand-logos/youtube-play.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/svg/brand-logos/youtube.svg b/public/media/svg/brand-logos/youtube.svg new file mode 100644 index 0000000..9252be0 --- /dev/null +++ b/public/media/svg/brand-logos/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/ziprecruiter-blacktext.svg b/public/media/svg/brand-logos/ziprecruiter-blacktext.svg new file mode 100644 index 0000000..6bcea1c --- /dev/null +++ b/public/media/svg/brand-logos/ziprecruiter-blacktext.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/brand-logos/zurich-logo.svg b/public/media/svg/brand-logos/zurich-logo.svg new file mode 100644 index 0000000..7de841c --- /dev/null +++ b/public/media/svg/brand-logos/zurich-logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/card-logos/american-express-dark.svg b/public/media/svg/card-logos/american-express-dark.svg new file mode 100644 index 0000000..3595187 --- /dev/null +++ b/public/media/svg/card-logos/american-express-dark.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/card-logos/american-express.svg b/public/media/svg/card-logos/american-express.svg new file mode 100644 index 0000000..63c22c0 --- /dev/null +++ b/public/media/svg/card-logos/american-express.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/card-logos/bitcoin 1.svg b/public/media/svg/card-logos/bitcoin 1.svg new file mode 100644 index 0000000..37d7b7b --- /dev/null +++ b/public/media/svg/card-logos/bitcoin 1.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/media/svg/card-logos/dark/american-express.svg b/public/media/svg/card-logos/dark/american-express.svg new file mode 100644 index 0000000..3595187 --- /dev/null +++ b/public/media/svg/card-logos/dark/american-express.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/card-logos/dark/mastercard.svg b/public/media/svg/card-logos/dark/mastercard.svg new file mode 100644 index 0000000..5cd3d22 --- /dev/null +++ b/public/media/svg/card-logos/dark/mastercard.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/svg/card-logos/dark/visa.svg b/public/media/svg/card-logos/dark/visa.svg new file mode 100644 index 0000000..267a3f0 --- /dev/null +++ b/public/media/svg/card-logos/dark/visa.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/card-logos/mastercard-dark.svg b/public/media/svg/card-logos/mastercard-dark.svg new file mode 100644 index 0000000..5cd3d22 --- /dev/null +++ b/public/media/svg/card-logos/mastercard-dark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/svg/card-logos/mastercard.svg b/public/media/svg/card-logos/mastercard.svg new file mode 100644 index 0000000..924a6d7 --- /dev/null +++ b/public/media/svg/card-logos/mastercard.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/svg/card-logos/visa-dark.svg b/public/media/svg/card-logos/visa-dark.svg new file mode 100644 index 0000000..267a3f0 --- /dev/null +++ b/public/media/svg/card-logos/visa-dark.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/card-logos/visa.svg b/public/media/svg/card-logos/visa.svg new file mode 100644 index 0000000..495cd2a --- /dev/null +++ b/public/media/svg/card-logos/visa.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/coins/binance.svg b/public/media/svg/coins/binance.svg new file mode 100644 index 0000000..39ef9e3 --- /dev/null +++ b/public/media/svg/coins/binance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/coins/bitcoin.svg b/public/media/svg/coins/bitcoin.svg new file mode 100644 index 0000000..a48a337 --- /dev/null +++ b/public/media/svg/coins/bitcoin.svg @@ -0,0 +1,2 @@ + + diff --git a/public/media/svg/coins/chainlink.svg b/public/media/svg/coins/chainlink.svg new file mode 100644 index 0000000..c2ed614 --- /dev/null +++ b/public/media/svg/coins/chainlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/coins/coin.svg b/public/media/svg/coins/coin.svg new file mode 100644 index 0000000..0354b17 --- /dev/null +++ b/public/media/svg/coins/coin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/coins/ethereum.svg b/public/media/svg/coins/ethereum.svg new file mode 100644 index 0000000..adc9ac2 --- /dev/null +++ b/public/media/svg/coins/ethereum.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/coins/filecoin.svg b/public/media/svg/coins/filecoin.svg new file mode 100644 index 0000000..7e93910 --- /dev/null +++ b/public/media/svg/coins/filecoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/files/ai-dark.svg b/public/media/svg/files/ai-dark.svg new file mode 100644 index 0000000..c0c8f20 --- /dev/null +++ b/public/media/svg/files/ai-dark.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/files/ai.svg b/public/media/svg/files/ai.svg new file mode 100644 index 0000000..a8d2dbf --- /dev/null +++ b/public/media/svg/files/ai.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/files/blank-image-dark.svg b/public/media/svg/files/blank-image-dark.svg new file mode 100644 index 0000000..7b8f7c0 --- /dev/null +++ b/public/media/svg/files/blank-image-dark.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/svg/files/blank-image.svg b/public/media/svg/files/blank-image.svg new file mode 100644 index 0000000..1c19b8e --- /dev/null +++ b/public/media/svg/files/blank-image.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/svg/files/css-dark.svg b/public/media/svg/files/css-dark.svg new file mode 100644 index 0000000..552105d --- /dev/null +++ b/public/media/svg/files/css-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/css.svg b/public/media/svg/files/css.svg new file mode 100644 index 0000000..b9af7b9 --- /dev/null +++ b/public/media/svg/files/css.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/dark/ai.svg b/public/media/svg/files/dark/ai.svg new file mode 100644 index 0000000..c0c8f20 --- /dev/null +++ b/public/media/svg/files/dark/ai.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/files/dark/css.svg b/public/media/svg/files/dark/css.svg new file mode 100644 index 0000000..552105d --- /dev/null +++ b/public/media/svg/files/dark/css.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/dark/doc.svg b/public/media/svg/files/dark/doc.svg new file mode 100644 index 0000000..c2df086 --- /dev/null +++ b/public/media/svg/files/dark/doc.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/dark/folder-document.svg b/public/media/svg/files/dark/folder-document.svg new file mode 100644 index 0000000..3b404e5 --- /dev/null +++ b/public/media/svg/files/dark/folder-document.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/dark/pdf.svg b/public/media/svg/files/dark/pdf.svg new file mode 100644 index 0000000..f49c95f --- /dev/null +++ b/public/media/svg/files/dark/pdf.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/dark/sql.svg b/public/media/svg/files/dark/sql.svg new file mode 100644 index 0000000..012d547 --- /dev/null +++ b/public/media/svg/files/dark/sql.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/dark/tif.svg b/public/media/svg/files/dark/tif.svg new file mode 100644 index 0000000..22985c5 --- /dev/null +++ b/public/media/svg/files/dark/tif.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/dark/upload.svg b/public/media/svg/files/dark/upload.svg new file mode 100644 index 0000000..6d2a7d8 --- /dev/null +++ b/public/media/svg/files/dark/upload.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/files/dark/xml.svg b/public/media/svg/files/dark/xml.svg new file mode 100644 index 0000000..5edca13 --- /dev/null +++ b/public/media/svg/files/dark/xml.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/doc-dark.svg b/public/media/svg/files/doc-dark.svg new file mode 100644 index 0000000..c2df086 --- /dev/null +++ b/public/media/svg/files/doc-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/doc.svg b/public/media/svg/files/doc.svg new file mode 100644 index 0000000..82100f2 --- /dev/null +++ b/public/media/svg/files/doc.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/folder-document-dark.svg b/public/media/svg/files/folder-document-dark.svg new file mode 100644 index 0000000..3b404e5 --- /dev/null +++ b/public/media/svg/files/folder-document-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/folder-document.svg b/public/media/svg/files/folder-document.svg new file mode 100644 index 0000000..c8d488b --- /dev/null +++ b/public/media/svg/files/folder-document.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/files/pdf-dark.svg b/public/media/svg/files/pdf-dark.svg new file mode 100644 index 0000000..f49c95f --- /dev/null +++ b/public/media/svg/files/pdf-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/pdf.svg b/public/media/svg/files/pdf.svg new file mode 100644 index 0000000..4003c09 --- /dev/null +++ b/public/media/svg/files/pdf.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/sql-dark.svg b/public/media/svg/files/sql-dark.svg new file mode 100644 index 0000000..012d547 --- /dev/null +++ b/public/media/svg/files/sql-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/sql.svg b/public/media/svg/files/sql.svg new file mode 100644 index 0000000..4b78b60 --- /dev/null +++ b/public/media/svg/files/sql.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/tif-dark.svg b/public/media/svg/files/tif-dark.svg new file mode 100644 index 0000000..22985c5 --- /dev/null +++ b/public/media/svg/files/tif-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/tif.svg b/public/media/svg/files/tif.svg new file mode 100644 index 0000000..cdb1eb5 --- /dev/null +++ b/public/media/svg/files/tif.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/upload-dark.svg b/public/media/svg/files/upload-dark.svg new file mode 100644 index 0000000..6d2a7d8 --- /dev/null +++ b/public/media/svg/files/upload-dark.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/files/upload.svg b/public/media/svg/files/upload.svg new file mode 100644 index 0000000..330331d --- /dev/null +++ b/public/media/svg/files/upload.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/files/xml-dark.svg b/public/media/svg/files/xml-dark.svg new file mode 100644 index 0000000..5edca13 --- /dev/null +++ b/public/media/svg/files/xml-dark.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/files/xml.svg b/public/media/svg/files/xml.svg new file mode 100644 index 0000000..dba88da --- /dev/null +++ b/public/media/svg/files/xml.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/food-icons/cheeseburger.svg b/public/media/svg/food-icons/cheeseburger.svg new file mode 100644 index 0000000..7c9b1c6 --- /dev/null +++ b/public/media/svg/food-icons/cheeseburger.svg @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/food-icons/cheesecake.svg b/public/media/svg/food-icons/cheesecake.svg new file mode 100644 index 0000000..57dff48 --- /dev/null +++ b/public/media/svg/food-icons/cheesecake.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/food-icons/coffee.svg b/public/media/svg/food-icons/coffee.svg new file mode 100644 index 0000000..9faea05 --- /dev/null +++ b/public/media/svg/food-icons/coffee.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/food-icons/salad.svg b/public/media/svg/food-icons/salad.svg new file mode 100644 index 0000000..2714862 --- /dev/null +++ b/public/media/svg/food-icons/salad.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/food-icons/spaghetti.svg b/public/media/svg/food-icons/spaghetti.svg new file mode 100644 index 0000000..13d2c5e --- /dev/null +++ b/public/media/svg/food-icons/spaghetti.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/general/rhone.svg b/public/media/svg/general/rhone.svg new file mode 100644 index 0000000..b72f90e --- /dev/null +++ b/public/media/svg/general/rhone.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/humans/custom-1.svg b/public/media/svg/humans/custom-1.svg new file mode 100644 index 0000000..ff63cc1 --- /dev/null +++ b/public/media/svg/humans/custom-1.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/illustrations/easy/1-dark.svg b/public/media/svg/illustrations/easy/1-dark.svg new file mode 100644 index 0000000..cb08bea --- /dev/null +++ b/public/media/svg/illustrations/easy/1-dark.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/illustrations/easy/1.svg b/public/media/svg/illustrations/easy/1.svg new file mode 100644 index 0000000..e9c2c19 --- /dev/null +++ b/public/media/svg/illustrations/easy/1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/illustrations/easy/2-dark.svg b/public/media/svg/illustrations/easy/2-dark.svg new file mode 100644 index 0000000..8d4fceb --- /dev/null +++ b/public/media/svg/illustrations/easy/2-dark.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/illustrations/easy/2.svg b/public/media/svg/illustrations/easy/2.svg new file mode 100644 index 0000000..e44398c --- /dev/null +++ b/public/media/svg/illustrations/easy/2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/illustrations/easy/3-dark.svg b/public/media/svg/illustrations/easy/3-dark.svg new file mode 100644 index 0000000..535f33a --- /dev/null +++ b/public/media/svg/illustrations/easy/3-dark.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/svg/illustrations/easy/3.svg b/public/media/svg/illustrations/easy/3.svg new file mode 100644 index 0000000..413b79d --- /dev/null +++ b/public/media/svg/illustrations/easy/3.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/svg/illustrations/easy/4.svg b/public/media/svg/illustrations/easy/4.svg new file mode 100644 index 0000000..bf60722 --- /dev/null +++ b/public/media/svg/illustrations/easy/4.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/media/svg/illustrations/easy/5.svg b/public/media/svg/illustrations/easy/5.svg new file mode 100644 index 0000000..8ed35f3 --- /dev/null +++ b/public/media/svg/illustrations/easy/5.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/media/svg/illustrations/easy/6.svg b/public/media/svg/illustrations/easy/6.svg new file mode 100644 index 0000000..2f87b2f --- /dev/null +++ b/public/media/svg/illustrations/easy/6.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/illustrations/easy/7.svg b/public/media/svg/illustrations/easy/7.svg new file mode 100644 index 0000000..3603f77 --- /dev/null +++ b/public/media/svg/illustrations/easy/7.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/media/svg/illustrations/easy/8.svg b/public/media/svg/illustrations/easy/8.svg new file mode 100644 index 0000000..21e02dc --- /dev/null +++ b/public/media/svg/illustrations/easy/8.svg @@ -0,0 +1,161 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/illustrations/easy/9.svg b/public/media/svg/illustrations/easy/9.svg new file mode 100644 index 0000000..1448f9f --- /dev/null +++ b/public/media/svg/illustrations/easy/9.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/illustrations/landing.svg b/public/media/svg/illustrations/landing.svg new file mode 100644 index 0000000..1baba8d --- /dev/null +++ b/public/media/svg/illustrations/landing.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/illustrations/sigma/illustration-realestate.svg b/public/media/svg/illustrations/sigma/illustration-realestate.svg new file mode 100644 index 0000000..1451727 --- /dev/null +++ b/public/media/svg/illustrations/sigma/illustration-realestate.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/illustrations/sigma/question.svg b/public/media/svg/illustrations/sigma/question.svg new file mode 100644 index 0000000..ee653aa --- /dev/null +++ b/public/media/svg/illustrations/sigma/question.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/illustrations/sigma/volume-1-dark.svg b/public/media/svg/illustrations/sigma/volume-1-dark.svg new file mode 100644 index 0000000..834c3a3 --- /dev/null +++ b/public/media/svg/illustrations/sigma/volume-1-dark.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/illustrations/sigma/volume-1.svg b/public/media/svg/illustrations/sigma/volume-1.svg new file mode 100644 index 0000000..e72aff5 --- /dev/null +++ b/public/media/svg/illustrations/sigma/volume-1.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/misc/eolic-energy.svg b/public/media/svg/misc/eolic-energy.svg new file mode 100644 index 0000000..ab2d5d8 --- /dev/null +++ b/public/media/svg/misc/eolic-energy.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/misc/hot-air-balloon.svg b/public/media/svg/misc/hot-air-balloon.svg new file mode 100644 index 0000000..27c7797 --- /dev/null +++ b/public/media/svg/misc/hot-air-balloon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/misc/infography.svg b/public/media/svg/misc/infography.svg new file mode 100644 index 0000000..8a5023a --- /dev/null +++ b/public/media/svg/misc/infography.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/misc/octagon.svg b/public/media/svg/misc/octagon.svg new file mode 100644 index 0000000..4160f70 --- /dev/null +++ b/public/media/svg/misc/octagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/misc/puzzle.svg b/public/media/svg/misc/puzzle.svg new file mode 100644 index 0000000..3bcce2e --- /dev/null +++ b/public/media/svg/misc/puzzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/media/svg/misc/recycling.svg b/public/media/svg/misc/recycling.svg new file mode 100644 index 0000000..26cb29f --- /dev/null +++ b/public/media/svg/misc/recycling.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/misc/retweet.svg b/public/media/svg/misc/retweet.svg new file mode 100644 index 0000000..27d9005 --- /dev/null +++ b/public/media/svg/misc/retweet.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/misc/smartphone-2-dark.svg b/public/media/svg/misc/smartphone-2-dark.svg new file mode 100644 index 0000000..5b9db59 --- /dev/null +++ b/public/media/svg/misc/smartphone-2-dark.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/misc/smartphone-2.svg b/public/media/svg/misc/smartphone-2.svg new file mode 100644 index 0000000..30d2344 --- /dev/null +++ b/public/media/svg/misc/smartphone-2.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/misc/smartphone-dark.svg b/public/media/svg/misc/smartphone-dark.svg new file mode 100644 index 0000000..69cf257 --- /dev/null +++ b/public/media/svg/misc/smartphone-dark.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/misc/smartphone.svg b/public/media/svg/misc/smartphone.svg new file mode 100644 index 0000000..0bc0c61 --- /dev/null +++ b/public/media/svg/misc/smartphone.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/misc/taieri.svg b/public/media/svg/misc/taieri.svg new file mode 100644 index 0000000..cfbcc58 --- /dev/null +++ b/public/media/svg/misc/taieri.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/svg/misc/video-play.svg b/public/media/svg/misc/video-play.svg new file mode 100644 index 0000000..575f742 --- /dev/null +++ b/public/media/svg/misc/video-play.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/payment-methods/americanexpress.svg b/public/media/svg/payment-methods/americanexpress.svg new file mode 100644 index 0000000..00bff07 --- /dev/null +++ b/public/media/svg/payment-methods/americanexpress.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/svg/payment-methods/mastercard.svg b/public/media/svg/payment-methods/mastercard.svg new file mode 100644 index 0000000..808a472 --- /dev/null +++ b/public/media/svg/payment-methods/mastercard.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/payment-methods/paypal.svg b/public/media/svg/payment-methods/paypal.svg new file mode 100644 index 0000000..647cc19 --- /dev/null +++ b/public/media/svg/payment-methods/paypal.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/public/media/svg/payment-methods/visa.svg b/public/media/svg/payment-methods/visa.svg new file mode 100644 index 0000000..23819b5 --- /dev/null +++ b/public/media/svg/payment-methods/visa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/svg/products-categories/gaming.svg b/public/media/svg/products-categories/gaming.svg new file mode 100644 index 0000000..cf84d17 --- /dev/null +++ b/public/media/svg/products-categories/gaming.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/products-categories/gloves.svg b/public/media/svg/products-categories/gloves.svg new file mode 100644 index 0000000..d24976b --- /dev/null +++ b/public/media/svg/products-categories/gloves.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/products-categories/shoes.svg b/public/media/svg/products-categories/shoes.svg new file mode 100644 index 0000000..337a776 --- /dev/null +++ b/public/media/svg/products-categories/shoes.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/svg/products-categories/t-shirt.svg b/public/media/svg/products-categories/t-shirt.svg new file mode 100644 index 0000000..bbb4ac7 --- /dev/null +++ b/public/media/svg/products-categories/t-shirt.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/public/media/svg/products-categories/watch.svg b/public/media/svg/products-categories/watch.svg new file mode 100644 index 0000000..dca4585 --- /dev/null +++ b/public/media/svg/products-categories/watch.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-1-dark.svg b/public/media/svg/shapes/abstract-1-dark.svg new file mode 100644 index 0000000..375c6cc --- /dev/null +++ b/public/media/svg/shapes/abstract-1-dark.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-1.svg b/public/media/svg/shapes/abstract-1.svg new file mode 100644 index 0000000..f1708dd --- /dev/null +++ b/public/media/svg/shapes/abstract-1.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-10.svg b/public/media/svg/shapes/abstract-10.svg new file mode 100644 index 0000000..509eb31 --- /dev/null +++ b/public/media/svg/shapes/abstract-10.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-2-dark.svg b/public/media/svg/shapes/abstract-2-dark.svg new file mode 100644 index 0000000..b3ca328 --- /dev/null +++ b/public/media/svg/shapes/abstract-2-dark.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-2.svg b/public/media/svg/shapes/abstract-2.svg new file mode 100644 index 0000000..b964e84 --- /dev/null +++ b/public/media/svg/shapes/abstract-2.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/media/svg/shapes/abstract-3-dark.svg b/public/media/svg/shapes/abstract-3-dark.svg new file mode 100644 index 0000000..1e900d4 --- /dev/null +++ b/public/media/svg/shapes/abstract-3-dark.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-3.svg b/public/media/svg/shapes/abstract-3.svg new file mode 100644 index 0000000..c4fc1bb --- /dev/null +++ b/public/media/svg/shapes/abstract-3.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-4-dark.svg b/public/media/svg/shapes/abstract-4-dark.svg new file mode 100644 index 0000000..febc987 --- /dev/null +++ b/public/media/svg/shapes/abstract-4-dark.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-4.svg b/public/media/svg/shapes/abstract-4.svg new file mode 100644 index 0000000..86cc05e --- /dev/null +++ b/public/media/svg/shapes/abstract-4.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-5-dark.svg b/public/media/svg/shapes/abstract-5-dark.svg new file mode 100644 index 0000000..25be000 --- /dev/null +++ b/public/media/svg/shapes/abstract-5-dark.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-5.svg b/public/media/svg/shapes/abstract-5.svg new file mode 100644 index 0000000..0e18151 --- /dev/null +++ b/public/media/svg/shapes/abstract-5.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-6.svg b/public/media/svg/shapes/abstract-6.svg new file mode 100644 index 0000000..82b3fde --- /dev/null +++ b/public/media/svg/shapes/abstract-6.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/shapes/abstract-7.svg b/public/media/svg/shapes/abstract-7.svg new file mode 100644 index 0000000..1985134 --- /dev/null +++ b/public/media/svg/shapes/abstract-7.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-8.svg b/public/media/svg/shapes/abstract-8.svg new file mode 100644 index 0000000..3faea00 --- /dev/null +++ b/public/media/svg/shapes/abstract-8.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/abstract-9.svg b/public/media/svg/shapes/abstract-9.svg new file mode 100644 index 0000000..ae0cd46 --- /dev/null +++ b/public/media/svg/shapes/abstract-9.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/shapes/bitcoin.svg b/public/media/svg/shapes/bitcoin.svg new file mode 100644 index 0000000..12a58fc --- /dev/null +++ b/public/media/svg/shapes/bitcoin.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/public/media/svg/shapes/dogecoin.svg b/public/media/svg/shapes/dogecoin.svg new file mode 100644 index 0000000..addfc2f --- /dev/null +++ b/public/media/svg/shapes/dogecoin.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/shapes/ethereum.svg b/public/media/svg/shapes/ethereum.svg new file mode 100644 index 0000000..866ffbc --- /dev/null +++ b/public/media/svg/shapes/ethereum.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/public/media/svg/shapes/man-head.svg b/public/media/svg/shapes/man-head.svg new file mode 100644 index 0000000..e69de29 diff --git a/public/media/svg/shapes/top-green.png b/public/media/svg/shapes/top-green.png new file mode 100644 index 0000000..7875a62 Binary files /dev/null and b/public/media/svg/shapes/top-green.png differ diff --git a/public/media/svg/shapes/wave-bg-dark.svg b/public/media/svg/shapes/wave-bg-dark.svg new file mode 100644 index 0000000..04b47da --- /dev/null +++ b/public/media/svg/shapes/wave-bg-dark.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/wave-bg-purple.svg b/public/media/svg/shapes/wave-bg-purple.svg new file mode 100644 index 0000000..dbced46 --- /dev/null +++ b/public/media/svg/shapes/wave-bg-purple.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/wave-bg-red.svg b/public/media/svg/shapes/wave-bg-red.svg new file mode 100644 index 0000000..a291cbe --- /dev/null +++ b/public/media/svg/shapes/wave-bg-red.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/public/media/svg/shapes/widget-bg-1.png b/public/media/svg/shapes/widget-bg-1.png new file mode 100644 index 0000000..47feb47 Binary files /dev/null and b/public/media/svg/shapes/widget-bg-1.png differ diff --git a/public/media/svg/shapes/widget-bg-2.png b/public/media/svg/shapes/widget-bg-2.png new file mode 100644 index 0000000..99ab569 Binary files /dev/null and b/public/media/svg/shapes/widget-bg-2.png differ diff --git a/public/media/svg/social-logos/dribbble.svg b/public/media/svg/social-logos/dribbble.svg new file mode 100644 index 0000000..a4c9705 --- /dev/null +++ b/public/media/svg/social-logos/dribbble.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/svg/social-logos/facebook.svg b/public/media/svg/social-logos/facebook.svg new file mode 100644 index 0000000..ccff813 --- /dev/null +++ b/public/media/svg/social-logos/facebook.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/media/svg/social-logos/github.svg b/public/media/svg/social-logos/github.svg new file mode 100644 index 0000000..1d8b300 --- /dev/null +++ b/public/media/svg/social-logos/github.svg @@ -0,0 +1,3 @@ + + + diff --git a/public/media/svg/social-logos/google.svg b/public/media/svg/social-logos/google.svg new file mode 100644 index 0000000..1307b69 --- /dev/null +++ b/public/media/svg/social-logos/google.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/public/media/svg/social-logos/instagram.svg b/public/media/svg/social-logos/instagram.svg new file mode 100644 index 0000000..3c89de9 --- /dev/null +++ b/public/media/svg/social-logos/instagram.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/media/svg/social-logos/linkedin.svg b/public/media/svg/social-logos/linkedin.svg new file mode 100644 index 0000000..1634b70 --- /dev/null +++ b/public/media/svg/social-logos/linkedin.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/public/media/svg/social-logos/twitter.svg b/public/media/svg/social-logos/twitter.svg new file mode 100644 index 0000000..3da834b --- /dev/null +++ b/public/media/svg/social-logos/twitter.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/media/svg/social-logos/youtube.svg b/public/media/svg/social-logos/youtube.svg new file mode 100644 index 0000000..fcf58de --- /dev/null +++ b/public/media/svg/social-logos/youtube.svg @@ -0,0 +1,4 @@ + + + + diff --git a/public/splash-screen.css b/public/splash-screen.css new file mode 100644 index 0000000..ec23aab --- /dev/null +++ b/public/splash-screen.css @@ -0,0 +1,59 @@ +body.page-loading { + margin: 0; + height: 100%; + overflow: hidden; +} + +.splash-screen { + display: none; +} + +.page-loading .splash-screen { + position: absolute; + z-index: 1000; + width: 100%; + height: 100%; + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + font-family: Inter, Helvetica, 'sans-serif'; + background-color: #f9f9f9; + color: #5e6278; + line-height: 1; + font-size: 14px; + font-weight: 400; +} + +.page-loading .splash-screen span { + color: #5e6278; + transition: none !important; + -webkit-font-smoothing: antialiased; +} + +.page-loading .splash-screen img { + margin-left: calc(100vw - 100%); + margin-bottom: 30px; + height: 30px !important; +} + +html[data-bs-theme='dark'] .page-loading .splash-screen { + background-color: #151521; + color: #ffffff; +} + +.splash-screen .dark-logo { + display: none; +} + +.splash-screen .light-logo { + display: block; +} + +html[data-bs-theme='dark'] .splash-screen .light-logo { + display: none; +} + +html[data-bs-theme='dark'] .splash-screen .dark-logo { + display: block; +} diff --git a/src/_metronic/assets/fonticon/fonticon.css b/src/_metronic/assets/fonticon/fonticon.css new file mode 100644 index 0000000..e08eece --- /dev/null +++ b/src/_metronic/assets/fonticon/fonticon.css @@ -0,0 +1,282 @@ +@font-face { + font-family: 'fonticon'; + src: url('./fonticon.ttf?8e8dbe1ea9ce4a70bc69a61ddae8f305') format('truetype'), + url('./fonticon.woff?8e8dbe1ea9ce4a70bc69a61ddae8f305') format('woff'), + url('./fonticon.woff2?8e8dbe1ea9ce4a70bc69a61ddae8f305') format('woff2'), + url('./fonticon.eot?8e8dbe1ea9ce4a70bc69a61ddae8f305#iefix') format('embedded-opentype'), + url('./fonticon.svg?8e8dbe1ea9ce4a70bc69a61ddae8f305#fonticon') format('svg'); +} + +i[class^='fonticon-']:before, +i[class*=' fonticon-']:before { + font-family: fonticon !important; + font-style: normal; + font-weight: normal !important; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.fonticon-delivery:before { + content: '\f101'; +} +.fonticon-bicycle:before { + content: '\f102'; +} +.fonticon-bookmark:before { + content: '\f103'; +} +.fonticon-like:before { + content: '\f104'; +} +.fonticon-microphone:before { + content: '\f105'; +} +.fonticon-location:before { + content: '\f106'; +} +.fonticon-gallery:before { + content: '\f107'; +} +.fonticon-share:before { + content: '\f108'; +} +.fonticon-star:before { + content: '\f109'; +} +.fonticon-trash-bin:before { + content: '\f10a'; +} +.fonticon-user-2:before { + content: '\f10b'; +} +.fonticon-view:before { + content: '\f10c'; +} +.fonticon-user:before { + content: '\f10d'; +} +.fonticon-pin:before { + content: '\f10e'; +} +.fonticon-chat:before { + content: '\f10f'; +} +.fonticon-home:before { + content: '\f110'; +} +.fonticon-mail:before { + content: '\f111'; +} +.fonticon-settings:before { + content: '\f112'; +} +.fonticon-alignment-right:before { + content: '\f113'; +} +.fonticon-link:before { + content: '\f114'; +} +.fonticon-attach:before { + content: '\f115'; +} +.fonticon-smile:before { + content: '\f116'; +} +.fonticon-moon:before { + content: '\f117'; +} +.fonticon-sun:before { + content: '\f118'; +} +.fonticon-train:before { + content: '\f119'; +} +.fonticon-eclipse:before { + content: '\f11a'; +} +.fonticon-drone:before { + content: '\f11b'; +} +.fonticon-truck:before { + content: '\f11c'; +} +.fonticon-ship:before { + content: '\f11d'; +} +.fonticon-offline:before { + content: '\f11e'; +} +.fonticon-printer:before { + content: '\f11f'; +} +.fonticon-paperclip:before { + content: '\f120'; +} +.fonticon-attachments:before { + content: '\f121'; +} +.fonticon-attachment:before { + content: '\f122'; +} +.fonticon-dogecoin:before { + content: '\f123'; +} +.fonticon-bitcoin:before { + content: '\f124'; +} +.fonticon-setting:before { + content: '\f125'; +} +.fonticon-headset:before { + content: '\f126'; +} +.fonticon-play:before { + content: '\f127'; +} +.fonticon-pause:before { + content: '\f128'; +} +.fonticon-next:before { + content: '\f129'; +} +.fonticon-back:before { + content: '\f12a'; +} +.fonticon-shuffle:before { + content: '\f12b'; +} +.fonticon-repeat:before { + content: '\f12c'; +} +.fonticon-outgoing-call:before { + content: '\f12d'; +} +.fonticon-incoming-call:before { + content: '\f12e'; +} +.fonticon-cash-payment:before { + content: '\f12f'; +} +.fonticon-mobile-payment:before { + content: '\f130'; +} +.fonticon-card:before { + content: '\f131'; +} +.fonticon-like-1:before { + content: '\f132'; +} +.fonticon-bank:before { + content: '\f133'; +} +.fonticon-telegram:before { + content: '\f134'; +} +.fonticon-drive:before { + content: '\f135'; +} +.fonticon-remote-control:before { + content: '\f136'; +} +.fonticon-house:before { + content: '\f137'; +} +.fonticon-image:before { + content: '\f138'; +} +.fonticon-app-store:before { + content: '\f139'; +} +.fonticon-email:before { + content: '\f13a'; +} +.fonticon-stats:before { + content: '\f13b'; +} +.fonticon-notification:before { + content: '\f13c'; +} +.fonticon-send:before { + content: '\f13d'; +} +.fonticon-insurance:before { + content: '\f13e'; +} +.fonticon-hourglass:before { + content: '\f13f'; +} +.fonticon-calendar:before { + content: '\f140'; +} +.fonticon-alarm:before { + content: '\f141'; +} +.fonticon-layers:before { + content: '\f142'; +} +.fonticon-facebook:before { + content: '\f143'; +} +.fonticon-instagram:before { + content: '\f144'; +} +.fonticon-linkedin:before { + content: '\f145'; +} +.fonticon-globe:before { + content: '\f146'; +} +.fonticon-equalizer:before { + content: '\f147'; +} +.fonticon-settings-1:before { + content: '\f148'; +} +.fonticon-creativity:before { + content: '\f149'; +} +.fonticon-content-marketing:before { + content: '\f14a'; +} +.fonticon-line-chart:before { + content: '\f14b'; +} +.fonticon-cms:before { + content: '\f14c'; +} +.fonticon-hello:before { + content: '\f14d'; +} +.fonticon-password:before { + content: '\f14e'; +} +.fonticon-credit-card:before { + content: '\f14f'; +} +.fonticon-enlarge:before { + content: '\f150'; +} +.fonticon-24-hours:before { + content: '\f151'; +} +.fonticon-heart:before { + content: '\f152'; +} +.fonticon-user-experience:before { + content: '\f153'; +} +.fonticon-web-design:before { + content: '\f154'; +} +.fonticon-sun-1:before { + content: '\f155'; +} +.fonticon-sun-2:before { + content: '\f156'; +} +.fonticon-messenger:before { + content: '\f157'; +} diff --git a/src/_metronic/assets/fonticon/fonticon.eot b/src/_metronic/assets/fonticon/fonticon.eot new file mode 100644 index 0000000..77aa981 Binary files /dev/null and b/src/_metronic/assets/fonticon/fonticon.eot differ diff --git a/src/_metronic/assets/fonticon/fonticon.scss b/src/_metronic/assets/fonticon/fonticon.scss new file mode 100644 index 0000000..7037fb4 --- /dev/null +++ b/src/_metronic/assets/fonticon/fonticon.scss @@ -0,0 +1,362 @@ +$flaticon-font: 'flaticon'; + +@font-face { + font-family: $flaticon-font; + src: url('./flaticon.ttf?d63d4800091cd3eedf4d33622a251715') format('truetype'), + url('./flaticon.woff?d63d4800091cd3eedf4d33622a251715') format('woff'), + url('./flaticon.woff2?d63d4800091cd3eedf4d33622a251715') format('woff2'), + url('./flaticon.eot?d63d4800091cd3eedf4d33622a251715#iefix') format('embedded-opentype'), + url('./flaticon.svg?d63d4800091cd3eedf4d33622a251715#flaticon') format('svg'); +} + +i[class^='flaticon-']:before, +i[class*=' flaticon-']:before { + font-family: flaticon !important; + font-style: normal; + font-weight: normal !important; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +$flaticon-map: ( + 'delivery': '\f101', + 'bicycle': '\f102', + 'bookmark': '\f103', + 'like': '\f104', + 'microphone': '\f105', + 'location': '\f106', + 'gallery': '\f107', + 'share': '\f108', + 'star': '\f109', + 'trash-bin': '\f10a', + 'user-2': '\f10b', + 'view': '\f10c', + 'user': '\f10d', + 'pin': '\f10e', + 'chat': '\f10f', + 'home': '\f110', + 'mail': '\f111', + 'settings': '\f112', + 'alignment-right': '\f113', + 'link': '\f114', + 'attach': '\f115', + 'smile': '\f116', + 'moon': '\f117', + 'sun': '\f118', + 'train': '\f119', + 'eclipse': '\f11a', + 'drone': '\f11b', + 'truck': '\f11c', + 'ship': '\f11d', + 'offline': '\f11e', + 'printer': '\f11f', + 'paperclip': '\f120', + 'attachments': '\f121', + 'attachment': '\f122', + 'dogecoin': '\f123', + 'bitcoin': '\f124', + 'setting': '\f125', + 'headset': '\f126', + 'play': '\f127', + 'pause': '\f128', + 'next': '\f129', + 'back': '\f12a', + 'shuffle': '\f12b', + 'repeat': '\f12c', + 'outgoing-call': '\f12d', + 'incoming-call': '\f12e', + 'cash-payment': '\f12f', + 'mobile-payment': '\f130', + 'card': '\f131', + 'like-1': '\f132', + 'bank': '\f133', + 'telegram': '\f134', + 'drive': '\f135', + 'remote-control': '\f136', + 'house': '\f137', + 'image': '\f138', + 'app-store': '\f139', + 'email': '\f13a', + 'stats': '\f13b', + 'notification': '\f13c', + 'send': '\f13d', + 'insurance': '\f13e', + 'hourglass': '\f13f', + 'calendar': '\f140', + 'alarm': '\f141', + 'layers': '\f142', + 'facebook': '\f143', + 'instagram': '\f144', + 'linkedin': '\f145', + 'globe': '\f146', + 'equalizer': '\f147', + 'settings-1': '\f148', + 'creativity': '\f149', + 'content-marketing': '\f14a', + 'line-chart': '\f14b', + 'cms': '\f14c', + 'hello': '\f14d', + 'password': '\f14e', + 'credit-card': '\f14f', + 'enlarge': '\f150', + '24-hours': '\f151', + 'heart': '\f152', + 'user-experience': '\f153', + 'web-design': '\f154', +); + +.flaticon-delivery:before { + content: map-get($flaticon-map, 'delivery'); +} +.flaticon-bicycle:before { + content: map-get($flaticon-map, 'bicycle'); +} +.flaticon-bookmark:before { + content: map-get($flaticon-map, 'bookmark'); +} +.flaticon-like:before { + content: map-get($flaticon-map, 'like'); +} +.flaticon-microphone:before { + content: map-get($flaticon-map, 'microphone'); +} +.flaticon-location:before { + content: map-get($flaticon-map, 'location'); +} +.flaticon-gallery:before { + content: map-get($flaticon-map, 'gallery'); +} +.flaticon-share:before { + content: map-get($flaticon-map, 'share'); +} +.flaticon-star:before { + content: map-get($flaticon-map, 'star'); +} +.flaticon-trash-bin:before { + content: map-get($flaticon-map, 'trash-bin'); +} +.flaticon-user-2:before { + content: map-get($flaticon-map, 'user-2'); +} +.flaticon-view:before { + content: map-get($flaticon-map, 'view'); +} +.flaticon-user:before { + content: map-get($flaticon-map, 'user'); +} +.flaticon-pin:before { + content: map-get($flaticon-map, 'pin'); +} +.flaticon-chat:before { + content: map-get($flaticon-map, 'chat'); +} +.flaticon-home:before { + content: map-get($flaticon-map, 'home'); +} +.flaticon-mail:before { + content: map-get($flaticon-map, 'mail'); +} +.flaticon-settings:before { + content: map-get($flaticon-map, 'settings'); +} +.flaticon-alignment-right:before { + content: map-get($flaticon-map, 'alignment-right'); +} +.flaticon-link:before { + content: map-get($flaticon-map, 'link'); +} +.flaticon-attach:before { + content: map-get($flaticon-map, 'attach'); +} +.flaticon-smile:before { + content: map-get($flaticon-map, 'smile'); +} +.flaticon-moon:before { + content: map-get($flaticon-map, 'moon'); +} +.flaticon-sun:before { + content: map-get($flaticon-map, 'sun'); +} +.flaticon-train:before { + content: map-get($flaticon-map, 'train'); +} +.flaticon-eclipse:before { + content: map-get($flaticon-map, 'eclipse'); +} +.flaticon-drone:before { + content: map-get($flaticon-map, 'drone'); +} +.flaticon-truck:before { + content: map-get($flaticon-map, 'truck'); +} +.flaticon-ship:before { + content: map-get($flaticon-map, 'ship'); +} +.flaticon-offline:before { + content: map-get($flaticon-map, 'offline'); +} +.flaticon-printer:before { + content: map-get($flaticon-map, 'printer'); +} +.flaticon-paperclip:before { + content: map-get($flaticon-map, 'paperclip'); +} +.flaticon-attachments:before { + content: map-get($flaticon-map, 'attachments'); +} +.flaticon-attachment:before { + content: map-get($flaticon-map, 'attachment'); +} +.flaticon-dogecoin:before { + content: map-get($flaticon-map, 'dogecoin'); +} +.flaticon-bitcoin:before { + content: map-get($flaticon-map, 'bitcoin'); +} +.flaticon-setting:before { + content: map-get($flaticon-map, 'setting'); +} +.flaticon-headset:before { + content: map-get($flaticon-map, 'headset'); +} +.flaticon-play:before { + content: map-get($flaticon-map, 'play'); +} +.flaticon-pause:before { + content: map-get($flaticon-map, 'pause'); +} +.flaticon-next:before { + content: map-get($flaticon-map, 'next'); +} +.flaticon-back:before { + content: map-get($flaticon-map, 'back'); +} +.flaticon-shuffle:before { + content: map-get($flaticon-map, 'shuffle'); +} +.flaticon-repeat:before { + content: map-get($flaticon-map, 'repeat'); +} +.flaticon-outgoing-call:before { + content: map-get($flaticon-map, 'outgoing-call'); +} +.flaticon-incoming-call:before { + content: map-get($flaticon-map, 'incoming-call'); +} +.flaticon-cash-payment:before { + content: map-get($flaticon-map, 'cash-payment'); +} +.flaticon-mobile-payment:before { + content: map-get($flaticon-map, 'mobile-payment'); +} +.flaticon-card:before { + content: map-get($flaticon-map, 'card'); +} +.flaticon-like-1:before { + content: map-get($flaticon-map, 'like-1'); +} +.flaticon-bank:before { + content: map-get($flaticon-map, 'bank'); +} +.flaticon-telegram:before { + content: map-get($flaticon-map, 'telegram'); +} +.flaticon-drive:before { + content: map-get($flaticon-map, 'drive'); +} +.flaticon-remote-control:before { + content: map-get($flaticon-map, 'remote-control'); +} +.flaticon-house:before { + content: map-get($flaticon-map, 'house'); +} +.flaticon-image:before { + content: map-get($flaticon-map, 'image'); +} +.flaticon-app-store:before { + content: map-get($flaticon-map, 'app-store'); +} +.flaticon-email:before { + content: map-get($flaticon-map, 'email'); +} +.flaticon-stats:before { + content: map-get($flaticon-map, 'stats'); +} +.flaticon-notification:before { + content: map-get($flaticon-map, 'notification'); +} +.flaticon-send:before { + content: map-get($flaticon-map, 'send'); +} +.flaticon-insurance:before { + content: map-get($flaticon-map, 'insurance'); +} +.flaticon-hourglass:before { + content: map-get($flaticon-map, 'hourglass'); +} +.flaticon-calendar:before { + content: map-get($flaticon-map, 'calendar'); +} +.flaticon-alarm:before { + content: map-get($flaticon-map, 'alarm'); +} +.flaticon-layers:before { + content: map-get($flaticon-map, 'layers'); +} +.flaticon-facebook:before { + content: map-get($flaticon-map, 'facebook'); +} +.flaticon-instagram:before { + content: map-get($flaticon-map, 'instagram'); +} +.flaticon-linkedin:before { + content: map-get($flaticon-map, 'linkedin'); +} +.flaticon-globe:before { + content: map-get($flaticon-map, 'globe'); +} +.flaticon-equalizer:before { + content: map-get($flaticon-map, 'equalizer'); +} +.flaticon-settings-1:before { + content: map-get($flaticon-map, 'settings-1'); +} +.flaticon-creativity:before { + content: map-get($flaticon-map, 'creativity'); +} +.flaticon-content-marketing:before { + content: map-get($flaticon-map, 'content-marketing'); +} +.flaticon-line-chart:before { + content: map-get($flaticon-map, 'line-chart'); +} +.flaticon-cms:before { + content: map-get($flaticon-map, 'cms'); +} +.flaticon-hello:before { + content: map-get($flaticon-map, 'hello'); +} +.flaticon-password:before { + content: map-get($flaticon-map, 'password'); +} +.flaticon-credit-card:before { + content: map-get($flaticon-map, 'credit-card'); +} +.flaticon-enlarge:before { + content: map-get($flaticon-map, 'enlarge'); +} +.flaticon-24-hours:before { + content: map-get($flaticon-map, '24-hours'); +} +.flaticon-heart:before { + content: map-get($flaticon-map, 'heart'); +} +.flaticon-user-experience:before { + content: map-get($flaticon-map, 'user-experience'); +} +.flaticon-web-design:before { + content: map-get($flaticon-map, 'web-design'); +} diff --git a/src/_metronic/assets/fonticon/fonticon.svg b/src/_metronic/assets/fonticon/fonticon.svg new file mode 100644 index 0000000..f083150 --- /dev/null +++ b/src/_metronic/assets/fonticon/fonticon.svg @@ -0,0 +1,273 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/_metronic/assets/fonticon/fonticon.ttf b/src/_metronic/assets/fonticon/fonticon.ttf new file mode 100644 index 0000000..42b869a Binary files /dev/null and b/src/_metronic/assets/fonticon/fonticon.ttf differ diff --git a/src/_metronic/assets/fonticon/fonticon.woff b/src/_metronic/assets/fonticon/fonticon.woff new file mode 100644 index 0000000..b01bfc1 Binary files /dev/null and b/src/_metronic/assets/fonticon/fonticon.woff differ diff --git a/src/_metronic/assets/fonticon/fonticon.woff2 b/src/_metronic/assets/fonticon/fonticon.woff2 new file mode 100644 index 0000000..b77520b Binary files /dev/null and b/src/_metronic/assets/fonticon/fonticon.woff2 differ diff --git a/src/_metronic/assets/keenicons/duotone/Read Me.txt b/src/_metronic/assets/keenicons/duotone/Read Me.txt new file mode 100644 index 0000000..8491652 --- /dev/null +++ b/src/_metronic/assets/keenicons/duotone/Read Me.txt @@ -0,0 +1,7 @@ +Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. + +To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts + +You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. + +You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection. diff --git a/src/_metronic/assets/keenicons/duotone/demo-files/demo.css b/src/_metronic/assets/keenicons/duotone/demo-files/demo.css new file mode 100644 index 0000000..39b8991 --- /dev/null +++ b/src/_metronic/assets/keenicons/duotone/demo-files/demo.css @@ -0,0 +1,152 @@ +body { + padding: 0; + margin: 0; + font-family: sans-serif; + font-size: 1em; + line-height: 1.5; + color: #555; + background: #fff; +} +h1 { + font-size: 1.5em; + font-weight: normal; +} +small { + font-size: .66666667em; +} +a { + color: #e74c3c; + text-decoration: none; +} +a:hover, a:focus { + box-shadow: 0 1px #e74c3c; +} +.bshadow0, input { + box-shadow: inset 0 -2px #e7e7e7; +} +input:hover { + box-shadow: inset 0 -2px #ccc; +} +input, fieldset { + font-family: sans-serif; + font-size: 1em; + margin: 0; + padding: 0; + border: 0; +} +input { + color: inherit; + line-height: 1.5; + height: 1.5em; + padding: .25em 0; +} +input:focus { + outline: none; + box-shadow: inset 0 -2px #449fdb; +} +.glyph { + font-size: 16px; + width: 15em; + padding-bottom: 1em; + margin-right: 4em; + margin-bottom: 1em; + float: left; + overflow: hidden; +} +.liga { + width: 80%; + width: calc(100% - 2.5em); +} +.talign-right { + text-align: right; +} +.talign-center { + text-align: center; +} +.bgc1 { + background: #f1f1f1; +} +.fgc1 { + color: #999; +} +.fgc0 { + color: #000; +} +p { + margin-top: 1em; + margin-bottom: 1em; +} +.mvm { + margin-top: .75em; + margin-bottom: .75em; +} +.mtn { + margin-top: 0; +} +.mtl, .mal { + margin-top: 1.5em; +} +.mbl, .mal { + margin-bottom: 1.5em; +} +.mal, .mhl { + margin-left: 1.5em; + margin-right: 1.5em; +} +.mhmm { + margin-left: 1em; + margin-right: 1em; +} +.mls { + margin-left: .25em; +} +.ptl { + padding-top: 1.5em; +} +.pbs, .pvs { + padding-bottom: .25em; +} +.pvs, .pts { + padding-top: .25em; +} +.unit { + float: left; +} +.unitRight { + float: right; +} +.size1of2 { + width: 50%; +} +.size1of1 { + width: 100%; +} +.clearfix:before, .clearfix:after { + content: " "; + display: table; +} +.clearfix:after { + clear: both; +} +.hidden-true { + display: none; +} +.textbox0 { + width: 3em; + background: #f1f1f1; + padding: .25em .5em; + line-height: 1.5; + height: 1.5em; +} +#testDrive { + display: block; + padding-top: 24px; + line-height: 1.5; +} +.fs0 { + font-size: 16px; +} +.fs1 { + font-size: 32px; +} + diff --git a/src/_metronic/assets/keenicons/duotone/demo-files/demo.js b/src/_metronic/assets/keenicons/duotone/demo-files/demo.js new file mode 100644 index 0000000..6f45f1c --- /dev/null +++ b/src/_metronic/assets/keenicons/duotone/demo-files/demo.js @@ -0,0 +1,30 @@ +if (!('boxShadow' in document.body.style)) { + document.body.setAttribute('class', 'noBoxShadow'); +} + +document.body.addEventListener("click", function(e) { + var target = e.target; + if (target.tagName === "INPUT" && + target.getAttribute('class').indexOf('liga') === -1) { + target.select(); + } +}); + +(function() { + var fontSize = document.getElementById('fontSize'), + testDrive = document.getElementById('testDrive'), + testText = document.getElementById('testText'); + function updateTest() { + testDrive.innerHTML = testText.value || String.fromCharCode(160); + if (window.icomoonLiga) { + window.icomoonLiga(testDrive); + } + } + function updateSize() { + testDrive.style.fontSize = fontSize.value + 'px'; + } + fontSize.addEventListener('change', updateSize, false); + testText.addEventListener('input', updateTest, false); + testText.addEventListener('change', updateTest, false); + updateSize(); +}()); diff --git a/src/_metronic/assets/keenicons/duotone/demo.html b/src/_metronic/assets/keenicons/duotone/demo.html new file mode 100644 index 0000000..75f7642 --- /dev/null +++ b/src/_metronic/assets/keenicons/duotone/demo.html @@ -0,0 +1,8060 @@ + + + + + IcoMoon Demo + + + + + +
+

Font Name: KeenIcons (Glyphs: 573)

+
+
+

Grid Size: 24

+
+
+ + ki-duotone ki-abstract-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-7 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-8 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-9 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-10 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-11 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-12 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-13 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-14 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-15 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-16 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-17 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-18 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-19 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-20 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-21 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-22 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-23 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-24 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-25 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-26 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-27 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-28 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-29 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-30 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-31 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-32 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-33 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-34 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-35 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-36 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-37 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-38 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-39 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-40 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-41 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-42 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-43 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-44 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-45 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-46 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-47 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-48 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract-49 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-abstract +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-add-files +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-add-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-add-item +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-add-notepad +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-address-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-airplane-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-airplane +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-airpod +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-android +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-angular +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-apple +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-archive-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-archive +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-circle-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-circle-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-diagonal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-down-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-down-refraction +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-down-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-mix +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-right-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-two-diagonals +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-up-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-up-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-up-refraction +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-up-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrow-zigzag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrows-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-arrows-loop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-artificial-intelligence +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-auto-brightness +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-avalanche +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-award +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-badge +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bandage +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bank +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-barcode +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-basket-ok +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-basket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-behance +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bill +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-binance-usd +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-binance +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bitcoin +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-black-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-black-left-line +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-black-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-black-right-line +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-black-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-black-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bluetooth +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-book-open +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-book-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bookmark-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bootstrap +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-briefcase +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-brifecase-cros +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-brifecase-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-brifecase-timer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-brush +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bucket-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bucket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-burger-menu-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-burger-menu-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-burger-menu-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-burger-menu-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-burger-menu-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-burger-menu-6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-burger-menu +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-bus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-calendar-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-calendar-8 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-calendar-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-calendar-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-calendar-remove +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-calendar-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-calendar-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-call +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-capsule +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-car-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-car-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-car +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-category +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cd +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-celsius +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-line-down-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-line-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-line-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-line-up-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-line-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-line +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-pie-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-pie-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-pie-simple +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-pie-too +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-simple-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-simple-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart-simple +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-check-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-check-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cheque +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-chrome +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-classmates +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-click +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-clipboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cloud-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cloud-change +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cloud-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-code +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-coffee +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-color-swatch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-colors-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-compass +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-copy-success +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-copy +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-courier-express +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-courier +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-credit-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cross-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cross-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cross +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-crown-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-crown +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-css +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cube-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cube-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-cup +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-data +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-delete-files +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-delete-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-delivery-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-delivery-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-delivery-24 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-delivery-door +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-delivery-geolocation +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-delivery-time +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-delivery +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-design-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-design-frame +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-design-mask +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-design +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-devices-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-devices +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-diamonds +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-directbox-default +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-disconnect +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-discount +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-disk +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dislike +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dj +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-document +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dollar +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dots-circle-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dots-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dots-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dots-square-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dots-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dots-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-double-check-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-double-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-double-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-double-left-arrow +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-double-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-double-right-arrow +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-double-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-double-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-down-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dribbble +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-drop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-dropbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-educare +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-electricity +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-electronic-clock +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-7 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-8 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-9 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-10 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-11 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-12 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-equal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-element-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-emoji-happy +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-enjin-coin +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-entrance-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-entrance-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-eraser +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-euro +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-exit-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-exit-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-exit-right-corner +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-exit-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-exit-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-external-drive +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-eye-slash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-eye +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-facebook +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-faceid +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-fasten +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-fat-rows +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-feather +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-figma +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-file-added +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-file-deleted +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-file-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-file-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-file-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-file-sheet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-file-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-file +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-files-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-filter-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-filter-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-filter-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-filter-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-filter-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-filter +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-finance-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-financial-schedule +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-fingerprint-scanning +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-flag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-flash-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-flask +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-focus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-folder-added +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-folder-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-folder-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-frame +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-gear +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-general-mouse +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-geolocation-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-geolocation +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-ghost +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-gift +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-github +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-glass +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-google-play +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-google +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-graph-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-graph-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-graph-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-graph-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-graph +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-grid-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-grid-frame +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-grid +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-handcart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-happy-emoji +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-heart-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-heart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-home-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-home-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-home-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-html +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-icon +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-illustrator +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-information-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-information-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-information-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-information-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-information +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-instagram +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-joystick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-js-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-js +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-kanban +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-key-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-key +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-keyboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-laptop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-laravel +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-left-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-like-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-like-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-like-shapes +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-like-tag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-like +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-loading +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-lock-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-lock-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-lock +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-logistic +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-lots-shopping +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-lovely +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-lts +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-magnifier +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-map +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-mask +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-maximize +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-medal-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-menu +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-message-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-message-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-message-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-message-notif +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-message-programming +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-message-question +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-message-text-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-message-text +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-messages +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-microsoft +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-milk +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-minus-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-minus-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-minus-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-monitor-mobile +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-moon +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-more-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-mouse-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-mouse-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-mouse +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-nexo +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-night-day +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-note-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-note +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-notepad-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-notepad-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-notepad +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-notification-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-notification-bing +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-notification-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-notification-favorite +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-notification-on +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-notification-status +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-notification +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-ocean +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-office-bag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-package +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-pails +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-paintbucket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-paper-clip +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-parcel-tracking +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-parcel +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-password-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-paypal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-pencil +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-people +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-percentage +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-phone +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-photoshop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-picture +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-pill +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-plus-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-plus-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-pointers +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-price-tag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-printer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-profile-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-profile-user +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-pulse +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-purchase +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-python +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-question-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-question +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-questionnaire-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-ranking +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-react +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-receipt-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-rescue +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-right-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-right-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-rocket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-route +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-router +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-row-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-row-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-safe-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-satellite +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-save-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-save-deposit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-scan-barcode +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-scooter-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-scooter +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-screen +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-scroll +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-search-list +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-security-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-security-user +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-send +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-setting-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-setting-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-setting-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-setting +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-share +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-shield-cross +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-shield-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-shield-slash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-shield-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-shield +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-ship +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-shop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-simcard-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-simcard +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-size +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-slack +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-slider-horizontal-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-slider-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-slider-vertical-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-slider-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-slider +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-sms +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-snapchat +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-social-media +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-soft-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-soft-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-soft +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-some-files +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-sort +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-speaker +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-spotify +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-spring-framework +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-square-brackets +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-status +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-subtitle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-sun +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-support-24 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-switch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-syringe +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tablet-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tablet-delete +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tablet-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tablet-ok +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tablet-text-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tablet-text-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tablet-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tag-cross +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-teacher +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tech-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-technology-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-technology-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-technology-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-technology +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-telephone-geolocation +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-test-tubes +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text-align-center +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text-align-justify-center +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text-align-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text-align-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text-bold +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text-italic +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text-number +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text-strikethrough +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text-underline +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-text +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-thermometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-theta +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tiktok +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-time +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-timer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-to-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-to-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-toggle-off-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-toggle-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-toggle-on-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-toggle-on +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-trailer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-trash-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-trash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-tree +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-trello +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-triangle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-truck +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-ts +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-twitch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-twitter +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-two-credit-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-underlining +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-up-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-up-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-update-file +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-update-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-user-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-user-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-user-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-user +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-verify +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-vibe +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-virus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-vue +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-vuesax +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-wallet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-wanchain +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-watch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-whatsapp +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-wifi-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-wifi-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-wrench +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-xaomi +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-xd +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-xmr +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-yii +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-duotone ki-youtube +
+
+ + +
+
+ liga: + +
+
+
+ + +
+

Font Test Drive

+ + +
  +
+
+ +
+

Generated by IcoMoon

+
+ + + + diff --git a/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.eot b/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.eot new file mode 100644 index 0000000..9111d32 Binary files /dev/null and b/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.eot differ diff --git a/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.svg b/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.svg new file mode 100644 index 0000000..0361a81 --- /dev/null +++ b/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.svg @@ -0,0 +1,1720 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.ttf b/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.ttf new file mode 100644 index 0000000..3347d91 Binary files /dev/null and b/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.ttf differ diff --git a/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.woff b/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.woff new file mode 100644 index 0000000..125e0cb Binary files /dev/null and b/src/_metronic/assets/keenicons/duotone/fonts/keenicons-duotone.woff differ diff --git a/src/_metronic/assets/keenicons/duotone/selection.json b/src/_metronic/assets/keenicons/duotone/selection.json new file mode 100644 index 0000000..0bd00fd --- /dev/null +++ b/src/_metronic/assets/keenicons/duotone/selection.json @@ -0,0 +1 @@ +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M492.373 904.107l-145.92-219.307c-7.808-11.571-12.464-25.828-12.464-41.173s4.656-29.603 12.631-41.438l-0.168 0.264 141.227-213.333c1.82-2.841 2.902-6.308 2.902-10.027s-1.081-7.185-2.947-10.102l0.045 0.075-103.68-151.467c-6.397-9.584-10.208-21.368-10.208-34.042 0-21.261 10.725-40.018 27.060-51.154l0.214-0.138 42.667-28.587c9.584-6.397 21.368-10.208 34.042-10.208 21.261 0 40.018 10.725 51.154 27.060l0.138 0.214 148.48 220.587c7.808 11.571 12.464 25.828 12.464 41.173s-4.656 29.603-12.631 41.438l0.168-0.264-141.227 213.333c-1.82 2.841-2.902 6.308-2.902 10.027s1.081 7.185 2.947 10.102l-0.045-0.075 103.68 149.333c6.397 9.584 10.208 21.368 10.208 34.042 0 21.261-10.725 40.018-27.060 51.154l-0.214 0.138-42.667 28.587c-10.030 7.304-22.596 11.686-36.185 11.686-21.525 0-40.483-10.993-51.565-27.671l-0.142-0.228z","M531.627 119.893c-11.274-16.549-30.030-27.274-51.292-27.274-12.674 0-24.458 3.811-34.268 10.35l0.226-0.142-42.667 28.587c-16.549 11.274-27.274 30.030-27.274 51.292 0 12.674 3.811 24.458 10.35 34.268l-0.142-0.226 101.973 152.747c1.82 2.841 2.902 6.308 2.902 10.027s-1.081 7.185-2.947 10.102l0.045-0.075-81.92 122.453h210.773l60.16-90.453c7.808-11.571 12.464-25.828 12.464-41.173s-4.656-29.603-12.631-41.438l0.168 0.264z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-1"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5819,"id":572,"name":"abstract-1","prevSize":32,"code":59648,"codes":[59648,59649]},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M768 256v256c0 141.385-114.615 256-256 256s-256-114.615-256-256v0-256h512zM896 85.333h-768c-23.564 0-42.667 19.103-42.667 42.667v0 384c0 235.641 191.025 426.667 426.667 426.667v0 0c235.641 0 426.667-191.025 426.667-426.667v0-384c0-23.564-19.103-42.667-42.667-42.667v0z","M896 85.333h-384v170.667h256v256c0 141.385-114.615 256-256 256v0 170.667c235.641 0 426.667-191.025 426.667-426.667v0-384c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5820,"id":571,"name":"abstract-2","prevSize":32,"code":59650,"codes":[59650,59651]},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M926.293 481.707l-384-384c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003-384 384c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003 384 384c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 384-384c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003zM512 308.907l117.76 117.76h-235.52zM512 715.093l-117.76-117.76h235.52z","M629.76 426.667h-117.76v170.667h117.76l-117.76 117.76v223.573c0.073 0 0.16 0.001 0.247 0.001 11.721 0 22.338-4.726 30.049-12.377l-0.003 0.003 384-384c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-384-384c-7.709-7.648-18.326-12.374-30.047-12.374-0.087 0-0.173 0-0.26 0.001l0.013-0v223.573z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5821,"id":570,"name":"abstract-3","prevSize":32,"code":59652,"codes":[59652,59653]},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M512 308.907l203.093 203.093-203.093 203.093-203.093-203.093 203.093-203.093zM512 85.333c-0.073-0-0.16-0.001-0.247-0.001-11.721 0-22.338 4.726-30.049 12.377l0.003-0.003-384 384c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003 384 384c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 384-384c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-384-384c-7.709-7.648-18.326-12.374-30.047-12.374-0.087 0-0.173 0-0.26 0.001l0.013-0z","M542.293 97.707c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003-384 384c-7.648 7.709-12.374 18.326-12.374 30.047 0 0.087 0 0.173 0.001 0.26l-0-0.013h223.573l203.093-203.093 203.093 203.093h223.573c0-0.073 0.001-0.16 0.001-0.247 0-11.721-4.726-22.338-12.377-30.049l0.003 0.003z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-4"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5822,"id":569,"name":"abstract-4","prevSize":32,"code":59654,"codes":[59654,59655]},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M682.667 384v256c0 23.564-19.103 42.667-42.667 42.667h-256c-23.564 0-42.667-19.103-42.667-42.667l-0-256c0-23.564 19.103-42.667 42.667-42.667l256-0c23.564 0 42.667 19.103 42.667 42.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-5"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5823,"id":568,"name":"abstract-5","prevSize":32,"code":59656,"codes":[59656,59657]},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M810.667 426.667h-8.107c4.977-12.646 7.936-27.286 8.106-42.596l0.001-0.071c0-70.692-57.308-128-128-128v0c-26.776 0.075-51.603 8.359-72.112 22.468l0.432-0.281c-37.668-63.804-106.077-105.932-184.326-105.932-117.262 0-212.427 94.609-213.327 211.659l-0.001 0.086c0.149 15.183 1.695 29.91 4.516 44.179l-0.249-1.512h-4.267c-70.692 0-128 57.308-128 128s57.308 128 128 128v0h170.667l189.44 189.44c7.053 7.194 16.872 11.654 27.734 11.654 21.443 0 38.827-17.383 38.827-38.827 0-0.047-0-0.094-0-0.141l0 0.007v-162.133h170.667c70.692 0 128-57.308 128-128s-57.308-128-128-128v0z"],"attrs":[{"opacity":0.3}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-6"]},"attrs":[{"opacity":0.3}],"properties":{"order":5824,"id":567,"name":"abstract-6","prevSize":32,"code":59658},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M512 271.36l208.64 120.32v240.64l-208.64 120.32-208.64-120.32v-240.64l208.64-120.32zM512 85.333c-0.145-0.001-0.316-0.002-0.488-0.002-13.006 0-25.198 3.485-35.694 9.571l0.342-0.183-305.493 177.92c-21.568 12.521-35.84 35.509-35.84 61.83 0 0.013 0 0.026 0 0.039l-0-0.002v354.987c-0 0.011-0 0.024-0 0.037 0 26.321 14.272 49.309 35.5 61.647l0.34 0.183 307.627 177.92c10.31 5.919 22.668 9.41 35.84 9.41s25.53-3.491 36.197-9.598l-0.357 0.188 307.627-177.92c21.568-12.521 35.84-35.509 35.84-61.83 0-0.013-0-0.026-0-0.039l0 0.002v-354.987c0-0.011 0-0.024 0-0.037 0-26.321-14.272-49.309-35.5-61.647l-0.34-0.183-309.76-177.92c-10.154-5.904-22.346-9.388-35.352-9.388-0.172 0-0.343 0.001-0.514 0.002l0.026-0z","M855.467 272.64l-307.627-177.92c-10.33-5.842-22.672-9.313-35.818-9.387l-0.022-0v186.453l208.213 119.893v240.64l-208.213 119.893v186.453c13.076-0.085 25.285-3.721 35.732-9.991l-0.319 0.178 307.627-177.493c21.568-12.521 35.84-35.509 35.84-61.83 0-0.013-0-0.026-0-0.039l0 0.002v-354.987c0-0.084 0.001-0.183 0.001-0.283 0-26.148-14.085-49.007-35.082-61.403l-0.332-0.181z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-7"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5825,"id":566,"name":"abstract-7","prevSize":32,"code":59659,"codes":[59659,59660]},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM512 256c-141.385 0-256 114.615-256 256s114.615 256 256 256c141.385 0 256-114.615 256-256v0c0-141.385-114.615-256-256-256v0z","M768 512c0 141.385-114.615 256-256 256v0 170.667c235.641 0 426.667-191.025 426.667-426.667s-191.025-426.667-426.667-426.667v0 170.667c141.385 0 256 114.615 256 256v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-8"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5826,"id":565,"name":"abstract-8","prevSize":32,"code":59661,"codes":[59661,59662]},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M725.333 298.667v426.667h-426.667v-426.667h426.667zM853.333 128h-682.667c-23.564 0-42.667 19.103-42.667 42.667v0 682.667c0 23.564 19.103 42.667 42.667 42.667v0h682.667c23.564 0 42.667-19.103 42.667-42.667v0-682.667c0-23.564-19.103-42.667-42.667-42.667v0z","M853.333 128h-341.333v170.667h213.333v426.667h-213.333v170.667h341.333c23.564 0 42.667-19.103 42.667-42.667v0-682.667c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-9"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5827,"id":564,"name":"abstract-9","prevSize":32,"code":59663,"codes":[59663,59664]},"setIdx":0,"setId":0,"iconIdx":8},{"icon":{"paths":["M896 469.333v85.333c0 23.564-19.103 42.667-42.667 42.667l-682.667 0c-23.564 0-42.667-19.103-42.667-42.667v-85.333c0-23.564 19.103-42.667 42.667-42.667l682.667-0c23.564 0 42.667 19.103 42.667 42.667z","M469.333 128h85.333c23.564 0 42.667 19.103 42.667 42.667v682.667c0 23.564-19.103 42.667-42.667 42.667h-85.333c-23.564 0-42.667-19.103-42.667-42.667v-682.667c0-23.564 19.103-42.667 42.667-42.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-10"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5828,"id":563,"name":"abstract-10","prevSize":32,"code":59665,"codes":[59665,59666]},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M753.359 210.325l60.34 60.34c16.662 16.662 16.662 43.677 0 60.34l-482.718 482.718c-16.662 16.662-43.677 16.662-60.34 0l-60.34-60.34c-16.662-16.662-16.662-43.677 0-60.34l482.718-482.718c16.662-16.662 43.677-16.662 60.34-0z","M210.325 270.641l60.34-60.34c16.662-16.662 43.677-16.662 60.34 0l482.718 482.718c16.662 16.662 16.662 43.677 0 60.34l-60.34 60.34c-16.662 16.662-43.677 16.662-60.34 0l-482.718-482.718c-16.662-16.662-16.662-43.677 0-60.34z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-11"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5829,"id":562,"name":"abstract-11","prevSize":32,"code":59667,"codes":[59667,59668]},"setIdx":0,"setId":0,"iconIdx":10},{"icon":{"paths":["M554.667 938.667h-85.333c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h85.333c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM776.533 457.813l110.507-64c12.853-7.512 21.35-21.244 21.35-36.96 0-7.747-2.064-15.011-5.673-21.273l0.11 0.207-42.667-74.24c-7.53-12.777-21.22-21.215-36.882-21.215-7.952 0-15.395 2.175-21.768 5.963l0.197-0.108-110.507 64c-12.853 7.512-21.35 21.244-21.35 36.96 0 7.747 2.064 15.011 5.673 21.273l-0.11-0.207 42.667 74.24c7.53 12.777 21.22 21.215 36.882 21.215 7.952 0 15.395-2.175 21.768-5.963l-0.197 0.108zM332.8 310.187l-110.507-64c-6.176-3.68-13.62-5.855-21.572-5.855-15.661 0-29.352 8.438-36.773 21.016l-0.109 0.199-42.667 74.24c-3.499 6.055-5.563 13.32-5.563 21.067 0 15.716 8.497 29.448 21.148 36.851l0.202 0.109 110.507 64c6.176 3.68 13.62 5.855 21.572 5.855 15.661 0 29.352-8.438 36.773-21.016l0.109-0.199 42.667-74.24c3.499-6.055 5.563-13.32 5.563-21.067 0-15.716-8.497-29.448-21.148-36.851l-0.202-0.109z","M554.667 298.667h-85.333c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h85.333c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM222.293 777.813l110.507-64c12.853-7.512 21.35-21.244 21.35-36.96 0-7.747-2.064-15.011-5.673-21.273l0.11 0.207-42.667-74.24c-7.53-12.777-21.22-21.215-36.882-21.215-7.952 0-15.395 2.175-21.768 5.963l0.197-0.108-110.507 64c-12.853 7.512-21.35 21.244-21.35 36.96 0 7.747 2.064 15.011 5.673 21.273l-0.11-0.207 42.667 74.24c7.53 12.777 21.22 21.215 36.882 21.215 7.952 0 15.395-2.175 21.768-5.963l-0.197 0.108zM887.040 630.187l-110.507-64c-6.176-3.68-13.62-5.855-21.572-5.855-15.661 0-29.352 8.438-36.773 21.016l-0.109 0.199-42.667 74.24c-3.499 6.055-5.563 13.32-5.563 21.067 0 15.716 8.497 29.448 21.148 36.851l0.202 0.109 110.507 64c6.176 3.68 13.62 5.855 21.572 5.855 15.661 0 29.352-8.438 36.773-21.016l0.109-0.199 42.667-74.24c3.499-6.055 5.563-13.32 5.563-21.067 0-15.716-8.497-29.448-21.148-36.851l-0.202-0.109z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-12"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5830,"id":561,"name":"abstract-12","prevSize":32,"code":59669,"codes":[59669,59670]},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M512 221.867l251.307 145.067v290.133l-251.307 145.067-251.307-145.067v-290.133l251.307-145.067zM512 85.333c-13.167 0.132-25.498 3.595-36.225 9.584l0.385-0.198-305.493 177.92c-21.568 12.521-35.84 35.509-35.84 61.83 0 0.013 0 0.026 0 0.039l-0-0.002v354.987c-0 0.011-0 0.024-0 0.037 0 26.321 14.272 49.309 35.5 61.647l0.34 0.183 307.627 177.92c10.31 5.919 22.668 9.41 35.84 9.41s25.53-3.491 36.197-9.598l-0.357 0.188 307.627-177.92c21.568-12.521 35.84-35.509 35.84-61.83 0-0.013-0-0.026-0-0.039l0 0.002v-354.987c0-0.011 0-0.024 0-0.037 0-26.321-14.272-49.309-35.5-61.647l-0.34-0.183-309.76-177.92c-10.343-5.791-22.673-9.254-35.8-9.386l-0.040-0z","M583.253 512c0 39.352-31.901 71.253-71.253 71.253s-71.253-31.901-71.253-71.253c0-39.352 31.901-71.253 71.253-71.253s71.253 31.901 71.253 71.253z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-13"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5831,"id":560,"name":"abstract-13","prevSize":32,"code":59671,"codes":[59671,59672]},"setIdx":0,"setId":0,"iconIdx":12},{"icon":{"paths":["M128 128h768c23.564 0 42.667 19.103 42.667 42.667v85.333c0 23.564-19.103 42.667-42.667 42.667h-768c-23.564 0-42.667-19.103-42.667-42.667v-85.333c0-23.564 19.103-42.667 42.667-42.667z","M896 597.333h-768c-23.564 0-42.667-19.103-42.667-42.667v0-85.333c0-23.564 19.103-42.667 42.667-42.667v0h768c23.564 0 42.667 19.103 42.667 42.667v0 85.333c0 23.564-19.103 42.667-42.667 42.667v0zM938.667 853.333v-85.333c0-23.564-19.103-42.667-42.667-42.667v0h-768c-23.564 0-42.667 19.103-42.667 42.667v0 85.333c0 23.564 19.103 42.667 42.667 42.667v0h768c23.564 0 42.667-19.103 42.667-42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-14"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5832,"id":559,"name":"abstract-14","prevSize":32,"code":59673,"codes":[59673,59674]},"setIdx":0,"setId":0,"iconIdx":13},{"icon":{"paths":["M516.267 935.253l-75.52-33.707c-14.379-7.065-24.101-21.605-24.101-38.416 0-5.842 1.174-11.409 3.299-16.479l-0.105 0.281 16.64-37.973c18.593-38.613 29.458-83.958 29.458-131.84s-10.864-93.227-30.262-133.703l0.804 1.863c-27.681-58.299-43.844-126.675-43.844-198.827s16.163-140.527 45.067-201.704l-1.223 2.877 16.64-37.547c6.995-14.574 21.636-24.458 38.586-24.458 5.777 0 11.285 1.148 16.31 3.228l-0.283-0.104 75.52 33.707c14.379 7.065 24.101 21.605 24.101 38.416 0 5.842-1.174 11.409-3.299 16.479l0.105-0.281-16.64 36.267c-18.593 38.613-29.458 83.958-29.458 131.84s10.864 93.227 30.262 133.703l-0.804-1.863c27.681 58.299 43.844 126.675 43.844 198.827s-16.163 140.527-45.067 201.704l1.223-2.877-16.64 37.547c-6.684 15.361-21.729 25.907-39.237 25.907-5.531 0-10.815-1.052-15.665-2.968l0.289 0.101zM864.853 913.92l16.64-37.547c27.573-58.319 43.67-126.693 43.67-198.827s-16.097-140.507-44.896-201.725l1.225 2.898c-18.593-38.613-29.458-83.958-29.458-131.84s10.864-93.227 30.262-133.703l-0.804 1.863 17.067-37.973c2.020-4.789 3.194-10.356 3.194-16.198 0-16.811-9.722-31.351-23.85-38.304l-0.251-0.111-75.52-33.707c-4.742-1.977-10.25-3.125-16.027-3.125-16.95 0-31.591 9.884-38.475 24.202l-0.111 0.256-17.067 37.547c-27.681 58.299-43.844 126.675-43.844 198.827s16.163 140.527 45.067 201.704l-1.223-2.877c18.593 38.613 29.458 83.958 29.458 131.84s-10.864 93.227-30.262 133.703l0.804-1.863-16.64 37.973c-2.020 4.789-3.194 10.356-3.194 16.198 0 16.811 9.722 31.351 23.85 38.304l0.251 0.111 75.52 33.707c4.742 1.977 10.25 3.125 16.027 3.125 16.95 0 31.591-9.884 38.475-24.202l0.111-0.256z","M221.867 935.253l-75.52-33.707c-14.379-7.065-24.101-21.605-24.101-38.416 0-5.842 1.174-11.409 3.299-16.479l-0.105 0.281 17.067-37.973c18.593-38.613 29.458-83.958 29.458-131.84s-10.864-93.227-30.262-133.703l0.804 1.863c-27.573-58.319-43.67-126.693-43.67-198.827s16.097-140.507 44.896-201.725l-1.225 2.898 16.64-37.547c7.023-14.496 21.624-24.314 38.518-24.314 5.641 0 11.026 1.095 15.955 3.083l-0.287-0.102 75.52 33.707c14.379 7.065 24.101 21.605 24.101 38.416 0 5.842-1.174 11.409-3.299 16.479l0.105-0.281-16.213 36.267c-18.593 38.613-29.458 83.958-29.458 131.84s10.864 93.227 30.262 133.703l-0.804-1.863c27.681 58.299 43.844 126.675 43.844 198.827s-16.163 140.527-45.067 201.704l1.223-2.877-17.067 37.547c-6.684 15.361-21.729 25.907-39.237 25.907-5.531 0-10.815-1.052-15.665-2.968l0.289 0.101z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-15"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5833,"id":558,"name":"abstract-15","prevSize":32,"code":59675,"codes":[59675,59676]},"setIdx":0,"setId":0,"iconIdx":14},{"icon":{"paths":["M88.747 516.267l33.707-75.52c7.065-14.379 21.605-24.101 38.416-24.101 5.842 0 11.409 1.174 16.479 3.299l-0.281-0.105 37.973 16.64c38.613 18.593 83.958 29.458 131.84 29.458s93.227-10.864 133.703-30.262l-1.863 0.804c58.299-27.681 126.675-43.844 198.827-43.844s140.527 16.163 201.704 45.067l-2.877-1.223 37.547 16.64c14.574 6.995 24.458 21.636 24.458 38.586 0 5.777-1.148 11.285-3.228 16.31l0.104-0.283-33.707 75.52c-7.065 14.379-21.605 24.101-38.416 24.101-5.842 0-11.409-1.174-16.479-3.299l0.281 0.105-36.267-16.64c-38.613-18.593-83.958-29.458-131.84-29.458s-93.227 10.864-133.703 30.262l1.863-0.804c-58.299 27.681-126.675 43.844-198.827 43.844s-140.527-16.163-201.704-45.067l2.877 1.223-37.547-16.64c-15.361-6.684-25.907-21.729-25.907-39.237 0-5.531 1.052-10.815 2.968-15.665l-0.101 0.289zM110.080 864.853l37.547 16.64c58.319 27.573 126.693 43.67 198.827 43.67s140.507-16.097 201.725-44.896l-2.898 1.225c38.613-18.593 83.958-29.458 131.84-29.458s93.227 10.864 133.703 30.262l-1.863-0.804 37.973 17.067c4.789 2.020 10.356 3.194 16.198 3.194 16.811 0 31.351-9.722 38.304-23.85l0.111-0.251 33.707-75.52c1.977-4.742 3.125-10.25 3.125-16.027 0-16.95-9.884-31.591-24.202-38.475l-0.256-0.111-37.547-17.067c-58.299-27.681-126.675-43.844-198.827-43.844s-140.527 16.163-201.704 45.067l2.877-1.223c-38.613 18.593-83.958 29.458-131.84 29.458s-93.227-10.864-133.703-30.262l1.863 0.804-37.973-16.64c-4.789-2.020-10.356-3.194-16.198-3.194-16.811 0-31.351 9.722-38.304 23.85l-0.111 0.251-33.707 75.947c-1.886 4.642-2.981 10.028-2.981 15.669 0 16.894 9.819 31.495 24.061 38.407l0.254 0.111z","M88.747 221.867l33.707-75.52c7.065-14.379 21.605-24.101 38.416-24.101 5.842 0 11.409 1.174 16.479 3.299l-0.281-0.105 37.973 17.067c38.613 18.593 83.958 29.458 131.84 29.458s93.227-10.864 133.703-30.262l-1.863 0.804c58.319-27.573 126.693-43.67 198.827-43.67s140.507 16.097 201.725 44.896l-2.898-1.225 37.547 16.64c14.496 7.023 24.314 21.624 24.314 38.518 0 5.641-1.095 11.026-3.083 15.955l0.102-0.287-33.707 75.52c-7.065 14.379-21.605 24.101-38.416 24.101-5.842 0-11.409-1.174-16.479-3.299l0.281 0.105-36.267-16.213c-38.613-18.593-83.958-29.458-131.84-29.458s-93.227 10.864-133.703 30.262l1.863-0.804c-58.299 27.681-126.675 43.844-198.827 43.844s-140.527-16.163-201.704-45.067l2.877 1.223-37.547-17.067c-15.361-6.684-25.907-21.729-25.907-39.237 0-5.531 1.052-10.815 2.968-15.665l-0.101 0.289z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-16"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5834,"id":557,"name":"abstract-16","prevSize":32,"code":59677,"codes":[59677,59678]},"setIdx":0,"setId":0,"iconIdx":15},{"icon":{"paths":["M456.107 456.107c113.362-114.412 266.992-188.756 437.856-199.999l2.037-0.107c23.939-1.83 42.67-21.704 42.67-45.954 0-0.194-0.001-0.389-0.004-0.582l0 0.029v-81.493c0-23.564-19.103-42.667-42.667-42.667v0c-438.548 22.091-788.575 372.119-810.585 808.635l-0.082 2.032c0 23.564 19.103 42.667 42.667 42.667v0h82.773c23.94-0.39 43.417-18.977 45.217-42.51l0.010-0.156c11.35-172.9 85.694-326.53 200.055-439.842l0.052-0.051z","M637.013 637.013c67.144-67.691 157.024-112.741 257.226-122.738l1.76-0.142c23.457-1.988 41.852-21.122 42.665-44.722l0.002-0.078v-85.333c0-0.051 0-0.112 0-0.173 0-23.564-19.103-42.667-42.667-42.667-1.352 0-2.689 0.063-4.009 0.186l0.169-0.013c-294.573 22.833-527.993 256.254-550.699 548.777l-0.128 2.049c-0.11 1.151-0.173 2.488-0.173 3.84 0 23.564 19.103 42.667 42.667 42.667 0.061 0 0.122-0 0.183-0l-0.009 0h85.333c0.047 0 0.103 0 0.159 0 24.333 0 44.302-18.688 46.336-42.495l0.012-0.172c9.648-101.768 54.115-191.65 121.188-259.001l-0.014 0.014zM697.173 697.173c50.669-50.601 117.17-85.359 191.433-96.205l1.847-0.221c1.666-0.231 3.592-0.362 5.548-0.362 23.564 0 42.667 19.103 42.667 42.667 0 0.127-0.001 0.255-0.002 0.382l0-0.019v81.92c-0.425 22.867-16.848 41.777-38.524 46.031l-0.303 0.049c-63.716 15.042-112.957 64.284-127.769 126.841l-0.231 1.159c-4.155 22.3-23.344 38.997-46.479 39.253l-0.027 0h-82.347c-0.108 0.001-0.235 0.002-0.362 0.002-23.564 0-42.667-19.103-42.667-42.667 0-1.956 0.132-3.882 0.387-5.768l-0.024 0.22c11.191-76.154 46.094-142.655 96.846-193.273l0.007-0.007z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-17"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5835,"id":556,"name":"abstract-17","prevSize":32,"code":59679,"codes":[59679,59680]},"setIdx":0,"setId":0,"iconIdx":16},{"icon":{"paths":["M768 938.667h-512c-22.117-1.748-39.402-20.126-39.402-42.542 0-8.97 2.768-17.293 7.496-24.162l-0.094 0.144 220.16-274.773c15.749-20.492 40.267-33.569 67.84-33.569s52.091 13.077 67.691 33.368l0.149 0.201 220.587 275.627c4.29 6.544 6.843 14.561 6.843 23.175 0 22.368-17.213 40.717-39.116 42.521l-0.154 0.010z","M800.427 151.893l-220.587 274.773c-15.749 20.492-40.267 33.569-67.84 33.569s-52.091-13.077-67.691-33.368l-0.149-0.201-220.587-274.773c-4.622-6.719-7.383-15.032-7.383-23.989 0-22.559 17.507-41.028 39.676-42.563l0.133-0.007h512c22.302 1.542 39.809 20.012 39.809 42.571 0 8.957-2.76 17.27-7.476 24.134l0.094-0.145z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-18"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5836,"id":555,"name":"abstract-18","prevSize":32,"code":59681,"codes":[59681,59682]},"setIdx":0,"setId":0,"iconIdx":17},{"icon":{"paths":["M738.133 503.893l-226.133 392.107h391.253c0.052 0 0.114 0 0.176 0 19.558 0 35.413-15.855 35.413-35.413 0-6.606-1.809-12.79-4.959-18.083l0.090 0.163z","M512 896h-391.253c-0.052 0-0.114 0-0.176 0-19.558 0-35.413-15.855-35.413-35.413 0-6.606 1.809-12.79 4.959-18.083l-0.090 0.163 195.84-338.773zM481.28 165.12l-195.413 338.773h452.267l-195.413-338.773c-6.225-10.71-17.645-17.796-30.72-17.796s-24.495 7.086-30.629 17.627l-0.091 0.169z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-19"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5837,"id":554,"name":"abstract-19","prevSize":32,"code":59683,"codes":[59683,59684]},"setIdx":0,"setId":0,"iconIdx":18},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM618.667 192c-176.731 0-320 143.269-320 320s143.269 320 320 320c176.731 0 320-143.269 320-320v0c0-176.731-143.269-320-320-320v0z","M938.667 512c0 176.731-143.269 320-320 320s-320-143.269-320-320c0-176.731 143.269-320 320-320v0c176.731 0 320 143.269 320 320v0zM512 298.667c-117.821 0-213.333 95.513-213.333 213.333s95.513 213.333 213.333 213.333c117.821 0 213.333-95.513 213.333-213.333v0c0-117.821-95.513-213.333-213.333-213.333v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-20"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5838,"id":553,"name":"abstract-20","prevSize":32,"code":59685,"codes":[59685,59686]},"setIdx":0,"setId":0,"iconIdx":19},{"icon":{"paths":["M485.547 313.6c28.81-28.864 68.64-46.72 112.641-46.72 87.894 0 159.147 71.252 159.147 159.147s-71.252 159.147-159.147 159.147c-44 0-83.83-17.856-112.638-46.717l-0.003-0.003c-28.634-28.836-46.331-68.565-46.331-112.427s17.697-83.591 46.34-112.436l-0.009 0.009zM357.547 185.6c-62.071 61.819-100.48 147.356-100.48 241.864 0 188.513 152.82 341.333 341.333 341.333s341.333-152.82 341.333-341.333c0-94.508-38.409-180.045-100.469-241.853l-0.011-0.011c-61.718-61.468-146.848-99.469-240.853-99.469s-179.135 38.002-240.864 99.481l0.011-0.011z","M482.56 746.24c-17.153 6.871-37.037 10.856-57.852 10.856-88.13 0-159.573-71.443-159.573-159.573s71.443-159.573 159.573-159.573c83.257 0 151.621 63.761 158.927 145.116l0.045 0.615c4.707 0.501 10.168 0.786 15.695 0.786 66.759 0 123.787-41.664 146.5-100.407l0.365-1.072c-48.679-132.944-174.108-226.106-321.296-226.106-188.513 0-341.333 152.82-341.333 341.333s152.82 341.333 341.333 341.333c138.317 0 257.419-82.272 311.039-200.549l0.87-2.145c-40.83 18.642-88.561 29.509-138.83 29.509-41.413 0-81.104-7.375-117.831-20.884l2.368 0.762z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-21"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5839,"id":552,"name":"abstract-21","prevSize":32,"code":59687,"codes":[59687,59688]},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M512 869.973c2.873 21.022 20.712 37.047 42.295 37.047 13.879 0 26.209-6.626 34.001-16.888l0.077-0.106 228.693-399.787c3.443-6.017 5.473-13.225 5.473-20.907 0-23.538-19.061-42.625-42.589-42.667l-0.004-0h-267.947z","M512 154.027c-2.873-21.022-20.712-37.047-42.295-37.047-13.879 0-26.209 6.626-34.001 16.888l-0.077 0.106-228.693 399.787c-3.443 6.017-5.473 13.225-5.473 20.907 0 23.538 19.061 42.625 42.589 42.667l0.004 0h267.947z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-22"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5840,"id":551,"name":"abstract-22","prevSize":32,"code":59689,"codes":[59689,59690]},"setIdx":0,"setId":0,"iconIdx":21},{"icon":{"paths":["M304.64 910.933c-7.6 5.628-17.16 9.009-27.51 9.009-25.685 0-46.507-20.822-46.507-46.507 0-5.205 0.855-10.211 2.433-14.883l-0.096 0.328 79.36-244.053-207.787-150.613c-12.7-8.439-20.957-22.685-20.957-38.86 0-25.685 20.822-46.507 46.507-46.507 0.618 0 1.233 0.012 1.845 0.036l-0.088-0.003h760.32c0.524-0.021 1.139-0.033 1.757-0.033 25.685 0 46.507 20.822 46.507 46.507 0 16.175-8.257 30.421-20.786 38.753l-0.171 0.107z","M469.333 136.107l-157.013 478.72 407.040 296.107c7.6 5.628 17.16 9.009 27.51 9.009 25.685 0 46.507-20.822 46.507-46.507 0-5.205-0.855-10.211-2.433-14.883l0.096 0.328-236.373-722.773c-7.339-16.616-23.673-28.002-42.667-28.002s-35.328 11.386-42.549 27.705l-0.117 0.297z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-23"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5841,"id":550,"name":"abstract-23","prevSize":32,"code":59691,"codes":[59691,59692]},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M721.493 176.64v174.080l-209.493 120.747v-241.92l150.613-85.333c5.637-3.317 12.419-5.277 19.657-5.277 21.134 0 38.367 16.702 39.22 37.626l0.003 0.077zM104.96 586.24l150.613 85.333 209.92-116.907-209.493-123.307-150.613 85.333c-12.724 6.666-21.257 19.779-21.257 34.885 0 14.937 8.343 27.925 20.623 34.559l0.208 0.103zM768 847.36v-174.080l-209.493-118.613v241.92l151.040 85.333c5.527 3.156 12.147 5.017 19.201 5.017 21.679 0 39.253-17.574 39.253-39.253 0-0.114-0-0.227-0.001-0.341l0 0.017z","M361.387 142.507l150.613 85.333v241.92l-209.493-119.040v-174.080c-0-0.041-0-0.090-0-0.139 0-21.679 17.574-39.253 39.253-39.253 7.226 0 13.997 1.953 19.812 5.359l-0.185-0.1zM314.453 881.493l151.040-85.333v-241.493l-209.493 118.613v174.080c0.059 21.634 17.611 39.15 39.253 39.15 7.054 0 13.673-1.861 19.394-5.118l-0.194 0.101zM919.040 518.4l-150.613-85.333-209.92 121.6 209.493 118.613 150.613-85.333c12.724-6.666 21.257-19.779 21.257-34.885 0-14.937-8.343-27.925-20.623-34.559l-0.208-0.103z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-24"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5842,"id":549,"name":"abstract-24","prevSize":32,"code":59693,"codes":[59693,59694]},"setIdx":0,"setId":0,"iconIdx":23},{"icon":{"paths":["M298.667 876.8l-213.333-123.307v-246.187l213.333-123.307 213.333 123.307v246.187zM896 889.6v-98.56l-85.333-49.493-85.333 49.493v98.56l85.333 49.067z","M938.667 602.453v-344.747l-298.667-172.373-298.667 172.373v344.747l298.667 172.8 298.667-172.8z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-25"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5843,"id":548,"name":"abstract-25","prevSize":32,"code":59695,"codes":[59695,59696]},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M906.667 790.187l-352 139.947c-12.995 5.466-28.1 8.643-43.947 8.643s-30.952-3.176-44.713-8.927l0.766 0.284-349.44-139.947c-19.070-7.736-32.273-26.113-32.273-47.573s13.204-39.838 31.931-47.45l0.343-0.123 53.333-21.76 264.107 105.813c22.496 9.178 48.599 14.505 75.947 14.505s53.45-5.327 77.328-14.999l-1.381 0.495 266.667-105.813 54.613 21.76c18.733 7.889 31.646 26.096 31.646 47.319 0 21.707-13.508 40.259-32.577 47.708l-0.348 0.12zM554.667 699.733l350.72-140.373c18.787-7.865 31.746-26.099 31.746-47.36s-12.959-39.495-31.408-47.234l-0.337-0.126-350.72-140.373c-12.667-4.95-27.332-7.819-42.667-7.819s-30 2.869-43.488 8.099l0.821-0.28-352 140.373c-18.787 7.865-31.746 26.099-31.746 47.36s12.959 39.495 31.408 47.234l0.337 0.126 352 140.373c12.667 4.95 27.332 7.819 42.667 7.819s30-2.869 43.488-8.099l-0.821 0.28z","M469.333 469.333l-352-140.373c-19.070-7.736-32.273-26.113-32.273-47.573s13.204-39.838 31.931-47.45l0.343-0.123 352-139.947c12.64-5.143 27.305-8.128 42.667-8.128s30.026 2.985 43.446 8.406l-0.779-0.278 350.72 139.947c19.070 7.736 32.273 26.113 32.273 47.573s-13.204 39.838-31.931 47.45l-0.343 0.123-350.72 140.373c-12.667 4.95-27.332 7.819-42.667 7.819s-30-2.869-43.488-8.099l0.821 0.28z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-26"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5844,"id":547,"name":"abstract-26","prevSize":32,"code":59697,"codes":[59697,59698]},"setIdx":0,"setId":0,"iconIdx":25},{"icon":{"paths":["M682.667 256l225.707 225.707c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003-140.373 140.373-256-256zM115.627 542.293l225.707 225.707 170.667-170.667-256-256-140.373 140.373c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003z","M768 682.667l-225.707 225.707c-7.733 7.795-18.45 12.621-30.293 12.621s-22.56-4.826-30.291-12.618l-0.003-0.003-140.373-140.373 256-256zM481.707 115.627l-225.707 225.707 170.667 170.667 256-256-140.373-140.373c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-27"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5845,"id":546,"name":"abstract-27","prevSize":32,"code":59699,"codes":[59699,59700]},"setIdx":0,"setId":0,"iconIdx":26},{"icon":{"paths":["M469.333 277.333c0 106.039-85.961 192-192 192s-192-85.961-192-192c0-106.039 85.961-192 192-192s192 85.961 192 192z","M554.667 277.333c0-106.039 85.961-192 192-192s192 85.961 192 192c0 106.039-85.961 192-192 192v0c-0.127 0-0.277 0-0.427 0-105.803 0-191.573-85.77-191.573-191.573 0-0.15 0-0.3 0.001-0.45l-0 0.023zM277.333 938.667c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192v0c-0 0.127-0 0.277-0 0.427 0 105.803 85.77 191.573 191.573 191.573 0.15 0 0.3-0 0.45-0.001l-0.023 0zM746.667 938.667c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192v0c-0 0.127-0 0.277-0 0.427 0 105.803 85.77 191.573 191.573 191.573 0.15 0 0.3-0 0.45-0.001l-0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-28"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5846,"id":545,"name":"abstract-28","prevSize":32,"code":59701,"codes":[59701,59702]},"setIdx":0,"setId":0,"iconIdx":27},{"icon":{"paths":["M298.667 192c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667s106.667 47.756 106.667 106.667z","M597.333 192c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667v0c58.91 0 106.667 47.756 106.667 106.667v0zM789.333 85.333c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667c58.91 0 106.667-47.756 106.667-106.667v0c0-58.91-47.756-106.667-106.667-106.667v0zM192 384c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667c58.91 0 106.667-47.756 106.667-106.667v0c0-58.91-47.756-106.667-106.667-106.667v0zM490.667 384c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667c58.91 0 106.667-47.756 106.667-106.667v0c0-58.91-47.756-106.667-106.667-106.667v0zM789.333 384c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667c58.91 0 106.667-47.756 106.667-106.667v0c0-58.91-47.756-106.667-106.667-106.667v0zM192 682.667c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667c58.91 0 106.667-47.756 106.667-106.667v0c0-58.91-47.756-106.667-106.667-106.667v0zM490.667 682.667c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667c58.91 0 106.667-47.756 106.667-106.667v0c0-58.91-47.756-106.667-106.667-106.667v0zM789.333 682.667c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667c58.91 0 106.667-47.756 106.667-106.667v0c0-58.91-47.756-106.667-106.667-106.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-29"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5847,"id":544,"name":"abstract-29","prevSize":32,"code":59703,"codes":[59703,59704]},"setIdx":0,"setId":0,"iconIdx":28},{"icon":{"paths":["M256 170.667c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333z","M597.333 512c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0zM170.667 426.667c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM853.333 426.667c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM512 85.333c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM853.333 85.333c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM512 768c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM170.667 768c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM853.333 768c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-30"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5848,"id":543,"name":"abstract-30","prevSize":32,"code":59705,"codes":[59705,59706]},"setIdx":0,"setId":0,"iconIdx":29},{"icon":{"paths":["M938.667 512c-0.009 39.004-5.303 76.768-15.206 112.62l0.699-2.967-710.827-412.16c76.898-75.421 182.349-121.971 298.672-121.971 234.872 0 425.418 189.779 426.661 424.359l0 0.119z","M156.587 747.52c-43.967-66.017-70.157-147.152-70.157-234.404 0-118.78 48.537-226.224 126.86-303.58l0.044-0.043 183.467 107.52v291.84zM734.72 512l-521.387 302.507c77.109 76.605 183.365 123.952 300.68 123.952 196.575 0 362.101-132.936 411.582-313.813l0.698-2.993z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-31"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5849,"id":542,"name":"abstract-31","prevSize":32,"code":59707,"codes":[59707,59708]},"setIdx":0,"setId":0,"iconIdx":30},{"icon":{"paths":["M813.653 210.347c40.553 40.428 72.961 89.001 94.565 143.060l1.009 2.86-155.733 155.733-397.227-397.227c46.14-18.613 99.644-29.412 155.67-29.412 117.829 0 224.503 47.763 301.716 124.985l0.001 0.001zM114.773 667.733c63.815 160.284 217.646 271.512 397.456 271.512 56.608 0 110.642-11.024 160.071-31.043l-2.861 1.024-398.933-397.227z","M356.267 114.773l155.733 155.733-397.227 397.227c-18.995-46.568-30.019-100.602-30.019-157.21 0-179.81 111.228-333.641 268.633-396.443l2.879-1.014zM512 754.773l155.733 155.733c160.284-63.815 271.512-217.646 271.512-397.456 0-56.608-11.024-110.642-31.043-160.071l1.024 2.861z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-32"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5850,"id":541,"name":"abstract-32","prevSize":32,"code":59709,"codes":[59709,59710]},"setIdx":0,"setId":0,"iconIdx":31},{"icon":{"paths":["M938.667 512c-0.004 78.548-21.232 152.138-58.263 215.346l1.090-2.013-246.187-426.667h246.187c35.941 61.196 57.17 134.785 57.173 213.332l0 0.001zM142.507 298.667l123.307 213.333 246.187-426.667c-157.090 0.004-294.35 84.903-368.403 211.32l-1.090 2.014zM142.507 725.333c75.143 128.43 212.403 213.329 369.492 213.333l0.001 0 123.307-213.333z","M881.493 298.667h-492.8l123.307-213.333c157.090 0.004 294.35 84.903 368.403 211.32l1.090 2.014zM142.507 298.667c-35.937 61.196-57.162 134.786-57.162 213.333s21.225 152.137 58.253 215.347l-1.090-2.014h246.187zM758.187 512l-246.187 426.667c157.090-0.004 294.35-84.903 368.403-211.32l1.090-2.014z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-33"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5851,"id":540,"name":"abstract-33","prevSize":32,"code":59711,"codes":[59711,59712]},"setIdx":0,"setId":0,"iconIdx":32},{"icon":{"paths":["M388.693 298.667l-122.88 213.333h-180.48c0.004-157.090 84.903-294.35 211.32-368.403l2.014-1.090zM725.333 142.507l-90.027 156.16 122.88 213.333h180.48c-0.004-157.090-84.903-294.35-211.32-368.403l-2.014-1.090zM635.307 725.333h-246.613l-90.027 156.16c61.196 35.937 134.786 57.162 213.333 57.162s152.137-21.225 215.347-58.253l-2.014 1.090z","M725.333 142.507l-90.027 156.16h-246.613l-90.027-156.16c61.196-35.937 134.786-57.162 213.333-57.162s152.137 21.225 215.347 58.253l-2.014-1.090zM758.187 512l-122.88 213.333 90.027 156.16c128.43-75.143 213.329-212.403 213.333-369.492l0-0.001zM265.813 512h-180.48c0.004 157.090 84.903 294.35 211.32 368.403l2.014 1.090 90.027-156.16z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-34"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5852,"id":539,"name":"abstract-34","prevSize":32,"code":59713,"codes":[59713,59714]},"setIdx":0,"setId":0,"iconIdx":33},{"icon":{"paths":["M938.667 512c0 10.24 0 20.48 0 30.293l-106.667-105.813-109.653 109.653c1.903-9.863 2.992-21.205 2.992-32.802 0-0.468-0.002-0.936-0.005-1.403l0 0.072c-0.122-105.669-77.050-193.333-177.953-210.175l-1.247-0.172-109.653-109.653 105.813-106.667c222.241 16.297 396.375 200.608 396.375 425.59 0 0.378-0 0.757-0.001 1.135l0-0.058zM477.867 722.347c-102.15-17.013-179.078-104.678-179.2-210.334l-0-0.013c-0.003-0.395-0.005-0.863-0.005-1.331 0-11.597 1.089-22.94 3.169-33.932l-0.178 1.129-109.653 109.653-106.667-105.813c0 9.813 0 20.053 0 30.293-0.001 0.32-0.001 0.698-0.001 1.077 0 224.982 174.133 409.293 394.975 425.508l1.399 0.082 105.813-105.387z","M938.667 542.293c-16.297 222.241-200.608 396.375-425.59 396.375-0.378 0-0.757-0-1.135-0.001l0.058 0c-10.24 0-20.48 0-30.293 0l105.813-105.387-109.653-110.933c9.863 1.903 21.205 2.992 32.802 2.992 0.468 0 0.936-0.002 1.403-0.005l-0.072 0c105.669-0.122 193.333-77.050 210.175-177.953l0.172-1.247 109.653-109.653zM436.48 192l105.813-106.667c-9.813 0-20.053 0-30.293 0-0.32-0.001-0.698-0.001-1.077-0.001-224.982 0-409.293 174.133-425.508 394.975l-0.082 1.399 106.667 105.813 109.653-109.653c17.013-102.15 104.678-179.078 210.334-179.2l0.013-0c0.395-0.003 0.863-0.005 1.331-0.005 11.597 0 22.94 1.089 33.932 3.169l-1.129-0.178z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-35"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5853,"id":538,"name":"abstract-35","prevSize":32,"code":59715,"codes":[59715,59716]},"setIdx":0,"setId":0,"iconIdx":34},{"icon":{"paths":["M512 758.187v-246.187l213.333 123.307c42.649 25.051 70.827 70.696 70.827 122.921 0 78.469-63.611 142.080-142.080 142.080s-142.080-63.611-142.080-142.080c0-0.015 0-0.029 0-0.044l-0 0.002zM298.667 635.307l213.333-123.307-213.333-123.307c-20.484-12.070-45.129-19.2-71.44-19.2-78.704 0-142.507 63.802-142.507 142.507s63.802 142.507 142.507 142.507c26.31 0 50.955-7.13 72.108-19.563l-0.669 0.363zM512 265.813v246.187l213.333-123.307c42.649-25.051 70.827-70.696 70.827-122.921 0-78.469-63.611-142.080-142.080-142.080s-142.080 63.611-142.080 142.080c0 0.015 0 0.029 0 0.044l-0-0.002z","M298.667 388.693c-42.649-25.051-70.827-70.696-70.827-122.921 0-78.469 63.611-142.080 142.080-142.080s142.080 63.611 142.080 142.080c0 0.015-0 0.029-0 0.044l0-0.002v246.187l-213.333-123.307zM725.333 635.307c20.269 11.805 44.613 18.773 70.585 18.773 78.469 0 142.080-63.611 142.080-142.080s-63.611-142.080-142.080-142.080c-25.972 0-50.316 6.968-71.264 19.138l0.68-0.364-213.333 123.307 213.333 123.307zM298.667 635.307c-42.649 25.051-70.827 70.696-70.827 122.921 0 78.469 63.611 142.080 142.080 142.080s142.080-63.611 142.080-142.080c0-0.015-0-0.029-0-0.044l0 0.002v-246.187l-213.333 123.307z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-36"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5854,"id":537,"name":"abstract-36","prevSize":32,"code":59717,"codes":[59717,59718]},"setIdx":0,"setId":0,"iconIdx":35},{"icon":{"paths":["M605.867 627.2c7.812 21.142 12.331 45.561 12.331 71.036 0 38.717-10.439 74.997-28.657 106.176l0.539-0.999c-37.762 63.391-105.947 105.197-183.896 105.197-117.454 0-212.739-94.919-213.331-212.234l-0-0.056c30.416 18.205 67.098 28.97 106.296 28.97 63.985 0 121.27-28.685 159.696-73.897l0.248-0.299c15.664 6.382 33.833 10.132 52.864 10.24l0.043 0c35.817-0.174 68.596-13.040 94.103-34.325l-0.236 0.192zM365.227 535.893c-1.421-7.070-2.343-15.301-2.556-23.708l-0.004-0.186c0.107-46.476 21.613-87.908 55.183-114.979l0.283-0.221c-7.881-21.16-12.442-45.608-12.442-71.121 0-77.766 42.373-145.635 105.289-181.78l1.019-0.54c-31.596-19.527-69.902-31.097-110.911-31.097-117.821 0-213.333 95.513-213.333 213.333 0 105.151 76.076 192.534 176.19 210.111l1.281 0.186zM725.333 298.667c-64.058 0.412-121.359 28.994-160.196 73.967l-0.231 0.273c49.23 18.884 85.257 62 93.753 114.35l0.114 0.85c97.821 18.936 170.68 103.892 170.68 205.866 0 0.825-0.005 1.649-0.014 2.472l0.001-0.125c63.822-37.664 105.965-106.083 105.965-184.345 0-116.674-93.662-211.472-209.899-213.306l-0.172-0.002z","M418.133 396.8c-7.812-21.142-12.331-45.561-12.331-71.036 0-38.717 10.439-74.997 28.657-106.176l-0.539 0.999c37.762-63.391 105.947-105.197 183.896-105.197 117.454 0 212.739 94.919 213.331 212.234l0 0.056c-30.416-18.205-67.098-28.97-106.296-28.97-63.985 0-121.27 28.685-159.696 73.897l-0.248 0.299c-15.664-6.382-33.833-10.132-52.864-10.24l-0.043-0c-35.817 0.174-68.596 13.040-94.103 34.325l0.236-0.192zM365.227 535.893c-97.821-18.936-170.68-103.892-170.68-205.866 0-0.825 0.005-1.649 0.014-2.472l-0.001 0.125c-66.913 36.884-111.49 106.963-111.49 187.454 0 117.821 95.513 213.333 213.333 213.333 65.991 0 124.983-29.963 164.115-77.026l0.281-0.348c-49.934-18.405-86.649-61.645-95.454-114.337l-0.119-0.863zM803.413 590.080c-31.054-52.444-82.58-89.974-143.297-101.756l-1.343-0.217c1.421 7.070 2.343 15.301 2.556 23.708l0.004 0.186c-0.107 46.476-21.613 87.908-55.183 114.979l-0.283 0.221c7.881 21.16 12.442 45.608 12.442 71.121 0 77.766-42.373 145.635-105.289 181.78l-1.019 0.54c30.42 17.705 66.952 28.155 105.925 28.155 117.821 0 213.333-95.513 213.333-213.333 0-38.753-10.333-75.093-28.394-106.414l0.549 1.032z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-37"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5855,"id":536,"name":"abstract-37","prevSize":32,"code":59719,"codes":[59719,59720]},"setIdx":0,"setId":0,"iconIdx":36},{"icon":{"paths":["M505.173 357.12l-178.773 309.76-124.16 213.333-98.56-170.667c-6.953-12.297-11.051-27.003-11.051-42.667s4.097-30.37 11.279-43.106l-0.228 0.44 277.76-481.707z","M505.173 357.12l-123.733-213.333h197.547c0.353-0.005 0.77-0.008 1.188-0.008 31.422 0 58.878 16.984 73.688 42.272l0.218 0.403 228.693 395.52h-247.893zM326.4 666.88l-124.16 213.333h554.667c0.479 0.010 1.044 0.015 1.61 0.015 31.425 0 58.883-16.987 73.692-42.279l0.218-0.403 98.56-170.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-38"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5856,"id":535,"name":"abstract-38","prevSize":32,"code":59721,"codes":[59721,59722]},"setIdx":0,"setId":0,"iconIdx":37},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M372.48 256c-22.73-12.955-49.714-25.726-77.677-36.531l-4.243-1.442c42.072-45.59 87.858-86.504 137.294-122.732l2.653-1.854c24.453-5.053 52.596-7.999 81.409-8.106l0.084-0c29.333 0.084 57.925 3.031 85.579 8.576l-2.806-0.469c-85.573 44.102-158.881 98.345-222.206 162.471l-0.088 0.089zM512 358.4c78.232-74.272 174.48-130.34 281.476-160.954l4.817-1.179c-24.887-23.008-52.887-43.255-83.145-59.909l-2.189-1.104c-103.498 39.126-192.029 96.249-265.981 168.269l0.167-0.162c23.938 18.145 45.078 36.173 65.145 55.317l-0.292-0.277zM298.667 853.333q0 13.653 0 26.88c-34.867-19.754-64.881-42.836-91.271-69.51l-0.036-0.036c-11.388-42.529-37.637-77.662-72.714-100.287l-0.672-0.406c-16.559-30.737-29.941-66.358-38.303-103.871l-0.523-2.795c116.878 25.117 203.255 127.447 203.52 249.998l0 0.029zM453.547 420.693c-78.216-74.878-177.255-128.609-287.565-151.648l-3.849-0.672c-15.761 22.847-30.062 48.951-41.603 76.498l-1.064 2.862c111.917 17.013 209.583 68.424 284.164 142.937l-0.004-0.004c16.442-26.573 32.898-49.41 50.771-71.034l-0.851 1.060zM93.44 430.080c-5.076 24.592-8.023 52.887-8.107 81.855l-0 0.065v2.56c100.707 13.082 186.37 68.393 239.875 147.284l0.765 1.196c10.957-36.729 22.848-67.571 36.78-97.266l-1.793 4.253c-67.198-75.667-160.402-126.94-265.481-139.744l-2.039-0.202zM469.333 853.333c0.412-255.786 188.328-467.559 433.625-505.239l2.855-0.361c-12.612-30.581-26.916-56.828-43.638-81.291l0.971 1.504c-275.186 57.006-479.078 297.376-479.147 585.379l-0 0.007c0 22.613 0 44.8 3.84 66.987 25.811 7.976 56.002 13.87 87.116 16.528l1.631 0.112c-4.362-24.979-6.989-53.896-7.252-83.377l-0.002-0.25zM816.64 810.667c11.388-42.529 37.637-77.662 72.714-100.287l0.672-0.406c16.559-30.737 29.941-66.358 38.303-103.871l0.523-2.795c-116.878 25.117-203.255 127.447-203.52 249.998l-0 0.029q0 13.653 0 26.88c34.867-19.754 64.881-42.836 91.271-69.51l0.036-0.036zM640 853.333c0.162-173.343 129.512-316.425 296.952-338.165l1.714-0.182v-2.987c-0.083-29.033-3.031-57.328-8.574-84.681l0.467 2.761c-212.667 26.348-375.656 205.943-375.656 423.606 0 28.856 2.865 57.043 8.325 84.292l-0.456-2.725c31.72-3.438 60.635-9.899 88.245-19.198l-2.912 0.851c-4.394-18.772-7.305-40.605-8.090-62.979l-0.017-0.594z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-39"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5857,"id":534,"name":"abstract-39","prevSize":32,"code":59723,"codes":[59723,59724]},"setIdx":0,"setId":0,"iconIdx":38},{"icon":{"paths":["M677.973 640c2.971-11.785 4.681-25.317 4.693-39.246l0-0.008c0.003-0.39 0.005-0.85 0.005-1.311 0-31.002-8.566-60.003-23.46-84.765l0.415 0.743c-30.029-51.324-84.857-85.267-147.617-85.333l-0.009-0c-9.839 0.464-18.954 1.379-27.921 2.744l1.468-0.184c-170.667 21.76-287.147 172.8-374.613 319.573l353.28-613.973c9.666-16.686 27.436-27.73 47.787-27.73s38.121 11.044 47.645 27.466l0.141 0.264 12.8 22.613c82.347 146.347 152.747 319.147 105.387 479.147z","M883.2 864.427c-166.827 0-355.413-14.933-475.307-130.133 28.174 22.341 64.242 35.841 103.463 35.841 0.226 0 0.453-0 0.679-0.001l-0.035 0c0.095 0 0.208 0 0.32 0 63.7 0 119.25-34.899 148.571-86.62l0.442-0.847c6.004-10.772 11.107-23.252 14.661-36.369l0.272-1.178c-0.062-0.83-0.097-1.797-0.097-2.773s0.035-1.944 0.104-2.902l-0.007 0.128c49.067-158.72-23.040-331.52-105.387-477.867l358.4 620.8c4.422 7.748 7.029 17.026 7.029 26.914 0 29.719-23.554 53.936-53.012 55.003l-0.097 0.003zM371.2 781.653c-18.609-32.635-32.214-70.701-38.581-111.17l-0.246-1.897c-17.493-104.533 38.4-221.013 152.32-237.227-170.667 21.76-287.147 172.8-374.613 319.573l-17.92 30.72c-4.717 7.948-7.504 17.521-7.504 27.744 0 30.398 24.642 55.040 55.040 55.040 0.388 0 0.776-0.004 1.162-0.012l-0.058 0.001h301.227c-27.704-23.222-50.989-50.583-69.176-81.318l-0.797-1.455z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-40"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5858,"id":533,"name":"abstract-40","prevSize":32,"code":59725,"codes":[59725,59726]},"setIdx":0,"setId":0,"iconIdx":39},{"icon":{"paths":["M777.813 928.853v0c-62.293-51.2-381.013-57.173-499.627-16.64-5.6 1.725-12.037 2.719-18.706 2.719-17.988 0-34.289-7.229-46.154-18.939l0.007 0.007-118.187-118.187c94.293-95.147 374.187-124.587 590.080-92.587 15.787 106.24 46.507 197.547 92.587 243.627zM810.667 128c-11.967-12.393-28.73-20.088-47.29-20.088-7.033 0-13.809 1.105-20.162 3.151l0.465-0.129c-118.613 42.667-437.333 34.56-499.627-16.64v0c56.747 55.467 83.627 151.467 97.28 244.48 51.127 7.875 110.107 12.373 170.137 12.373 0.186 0 0.372-0 0.558-0l-0.029 0c173.227 0 346.88-34.987 416.853-104.96z","M912.64 744.96c1.787 5.695 2.817 12.244 2.817 19.034 0 18.25-7.44 34.762-19.452 46.668l-0.005 0.005-117.76 116.907c-95.573-93.013-125.013-372.907-93.013-588.8 106.24-15.787 197.547-46.507 243.627-92.587v0c-50.773 61.44-56.747 380.16-16.213 498.773zM351.573 507.307c0-114.773-14.507-320.853-105.387-412.16l-118.187 118.187c-12.325 11.958-19.973 28.675-19.973 47.178 0 7.39 1.22 14.495 3.469 21.124l-0.136-0.463c17.721 63.037 27.908 135.429 27.908 210.2 0 5.903-0.063 11.791-0.19 17.663l0.015-0.876c0 162.133-29.867 253.867-42.667 270.507v0c45.227-47.36 136.96-78.080 244.907-93.867 6.633-47.121 10.419-101.554 10.419-156.872 0-7.251-0.065-14.487-0.195-21.707l0.015 1.085z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-41"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5859,"id":532,"name":"abstract-41","prevSize":32,"code":59727,"codes":[59727,59728]},"setIdx":0,"setId":0,"iconIdx":40},{"icon":{"paths":["M938.667 341.333h-597.333l170.667-170.667h298.667c0.070-0 0.153-0 0.236-0 28.166 0 52.56 16.149 64.428 39.694l0.189 0.414zM150.613 813.227c12.057 23.958 36.451 40.107 64.617 40.107 0.083 0 0.166-0 0.249-0l-0.013 0h298.667l170.667-170.667h-599.467zM813.227 873.387c23.41-11.77 39.357-35.298 40.105-62.622l0.002-0.098v-298.667l-170.667-170.667v597.333zM210.773 150.613c-23.958 12.057-40.107 36.451-40.107 64.617 0 0.083 0 0.166 0 0.249l-0-0.013v298.667l170.667 170.667v-599.467z","M938.667 341.333l-85.333 170.667-170.667-170.667zM341.333 682.667l-170.667-170.667-85.333 170.667zM682.667 682.667l-170.667 170.667 170.667 85.333zM341.333 341.333l170.667-170.667-170.667-85.333z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-42"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5860,"id":531,"name":"abstract-42","prevSize":32,"code":59729,"codes":[59729,59730]},"setIdx":0,"setId":0,"iconIdx":41},{"icon":{"paths":["M341.333 85.333v597.333h-256v-314.027c-0-0.027-0-0.058-0-0.090 0-18.122 7.336-34.531 19.201-46.418l-0.001 0.001zM682.667 341.333v597.333l236.8-236.8c11.864-11.886 19.2-28.295 19.2-46.417 0-0.032-0-0.063-0-0.095l0 0.005v-314.027z","M938.667 341.333h-597.333v-256h314.027c0.027-0 0.058-0 0.090-0 18.122 0 34.531 7.336 46.418 19.201l-0.001-0.001zM85.333 682.667l236.8 236.8c11.886 11.864 28.295 19.2 46.417 19.2 0.032 0 0.063-0 0.095-0l-0.005 0h314.027v-256z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-43"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5861,"id":530,"name":"abstract-43","prevSize":32,"code":59731,"codes":[59731,59732]},"setIdx":0,"setId":0,"iconIdx":42},{"icon":{"paths":["M85.333 512l341.333 102.4 512-102.4-341.333-102.4-512 102.4z","M891.733 350.72l-806.4 161.28v-208.213c0.066-28.151 20.022-51.621 46.555-57.108l0.378-0.065 747.52-149.333c3.078-0.693 6.613-1.090 10.241-1.090 26.863 0 48.64 21.777 48.64 48.64 0 0.083-0 0.167-0.001 0.25l0-0.013v148.48c-0.066 28.151-20.022 51.621-46.555 57.108l-0.378 0.065zM938.667 720.213v-208.213l-806.4 161.28c-26.911 5.552-46.867 29.023-46.933 57.166l-0 0.007v148.48c-0 0.070-0.001 0.154-0.001 0.237 0 26.863 21.777 48.64 48.64 48.64 3.628 0 7.163-0.397 10.564-1.15l-0.323 0.060 747.52-149.333c26.911-5.552 46.867-29.023 46.933-57.166l0-0.007z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-44"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5862,"id":529,"name":"abstract-44","prevSize":32,"code":59733,"codes":[59733,59734]},"setIdx":0,"setId":0,"iconIdx":43},{"icon":{"paths":["M341.333 938.667c-23.564 0-42.667-19.103-42.667-42.667v0-512c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 512c0 23.564-19.103 42.667-42.667 42.667v0z","M170.667 640c-23.564 0-42.667-19.103-42.667-42.667v0-341.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 341.333c0 23.564-19.103 42.667-42.667 42.667v0zM554.667 810.667v-682.667c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 682.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0zM725.333 682.667v-469.333c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 469.333c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0zM896 768v-341.333c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 341.333c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-45"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5863,"id":528,"name":"abstract-45","prevSize":32,"code":59735,"codes":[59735,59736]},"setIdx":0,"setId":0,"iconIdx":44},{"icon":{"paths":["M512 85.333c-431.787 276.48-512 742.4 0 853.333 512-110.933 431.787-576.853 0-853.333z","M512 938.667l354.56-354.56c5.547 160.427-102.827 300.373-354.56 354.56zM822.613 414.72c-24.68-49.572-53.095-92.304-86.076-131.027l0.743 0.894-225.28 227.413v213.333zM389.973 176.64c-38.395 33.109-72.894 68.42-104.199 106.459l-1.188 1.487 227.413 227.413v-213.333zM512 85.333v213.333l122.027-122.027c-36.236-31.739-76.066-61.803-118.009-88.877l-4.018-2.429zM157.44 584.107l354.56 354.56v-213.333l-310.613-310.613c-25.021 49.338-40.917 107.173-43.908 168.398l-0.038 0.988z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-46"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5864,"id":527,"name":"abstract-46","prevSize":32,"code":59737,"codes":[59737,59738]},"setIdx":0,"setId":0,"iconIdx":45},{"icon":{"paths":["M471.893 196.267c13.5-22.776 37.955-37.806 65.92-37.806s52.42 15.030 65.726 37.453l0.194 0.353 160 277.76 160.427 277.76c6.397 10.893 10.175 23.992 10.175 37.973 0 41.921-33.965 75.91-75.878 75.947l-640.004 0c-41.916-0.037-75.882-34.025-75.882-75.947 0-13.981 3.778-27.080 10.369-38.332l-0.194 0.358 160.427-277.76z","M228.267 529.067c13.391-22.798 37.79-37.861 65.707-37.861s52.316 15.063 65.513 37.505l0.194 0.356 64.427 110.933 64 111.36c6.551 10.995 10.423 24.245 10.423 38.4 0 41.944-34.002 75.947-75.947 75.947-0.064 0-0.129-0-0.193-0l0.010 0h-256c-41.916-0.037-75.882-34.025-75.882-75.947 0-13.981 3.778-27.080 10.369-38.332l-0.194 0.358 63.573-111.787z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-47"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5865,"id":526,"name":"abstract-47","prevSize":32,"code":59739,"codes":[59739,59740]},"setIdx":0,"setId":0,"iconIdx":46},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M512 841.813c-182.053-0.243-329.571-147.76-329.813-329.79l-0-0.023c0-17.673 14.327-32 32-32s32 14.327 32 32v0c0 146.805 119.009 265.813 265.813 265.813s265.813-119.009 265.813-265.813c0-146.805-119.009-265.813-265.813-265.813v0c-17.673 0-32-14.327-32-32s14.327-32 32-32v0c182.151 0 329.813 147.662 329.813 329.813s-147.662 329.813-329.813 329.813v0z","M512 718.507c-17.673 0-32-14.327-32-32s14.327-32 32-32v0c78.704 0 142.507-63.802 142.507-142.507s-63.802-142.507-142.507-142.507v0c-17.673 0-32-14.327-32-32s14.327-32 32-32v0c114.050 0 206.507 92.456 206.507 206.507s-92.456 206.507-206.507 206.507v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-48"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5866,"id":525,"name":"abstract-48","prevSize":32,"code":59741,"codes":[59741,59742,59743]},"setIdx":0,"setId":0,"iconIdx":47},{"icon":{"paths":["M320 277.333h106.667c23.564 0 42.667 19.103 42.667 42.667v0 380.587c0 23.564-19.103 42.667-42.667 42.667v0h-106.667c-0.007 0-0.016 0-0.025 0-128.403 0-232.719-103.127-234.64-231.072l-0.002-0.181c0-129.603 105.064-234.667 234.667-234.667v0z","M704 746.667h-106.667c-23.564 0-42.667-19.103-42.667-42.667v0l0-380.587c0-23.564 19.103-42.667 42.667-42.667v0h106.667c0.007-0 0.016-0 0.025-0 128.403 0 232.719 103.127 234.64 231.072l0.002 0.181c0 129.603-105.064 234.667-234.667 234.667v0z","M686.080 544h-341.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h341.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract-49"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5867,"id":524,"name":"abstract-49","prevSize":32,"code":59744,"codes":[59744,59745,59746]},"setIdx":0,"setId":0,"iconIdx":48},{"icon":{"paths":["M441.6 903.68l-291.84-291.84c-15.088-14.997-24.427-35.764-24.427-58.712 0-11.616 2.393-22.674 6.712-32.706l-0.206 0.538 17.493-42.667c13.253-30.271 42.744-51.138 77.165-51.626l0.062-0.001h420.693l-185.6-185.6c-13.475-13.57-21.803-32.266-21.803-52.907s8.328-39.337 21.807-52.911l-0.004 0.004 15.36-14.933c13.502-13.45 32.126-21.766 52.693-21.766s39.192 8.316 52.696 21.768l-0.002-0.002 291.84 291.84c15.088 14.997 24.427 35.764 24.427 58.712 0 11.616-2.393 22.674-6.712 32.706l0.206-0.538-17.493 42.667c-13.253 30.271-42.744 51.138-77.165 51.626l-0.062 0.001h-420.693l185.6 185.6c13.475 13.57 21.803 32.266 21.803 52.907s-8.328 39.337-21.807 52.911l0.004-0.004-15.36 14.933c-13.502 13.45-32.126 21.766-52.693 21.766s-39.192-8.316-52.696-21.768l0.002 0.002z","M376.747 597.333h273.493l-200.533-170.667h-223.147c-34.483 0.488-63.974 21.355-77.012 51.079l-0.214 0.548-17.493 42.667c-4.114 9.495-6.507 20.552-6.507 32.168 0 22.948 9.338 43.715 24.422 58.708l0.004 0.004 291.84 291.84c13.502 13.45 32.126 21.766 52.693 21.766s39.192-8.316 52.696-21.768l-0.002 0.002 15.36-15.36c13.45-13.502 21.766-32.126 21.766-52.693s-8.316-39.192-21.768-52.696l0.002 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["abstract"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5868,"id":523,"name":"abstract","prevSize":32,"code":59747,"codes":[59747,59748]},"setIdx":0,"setId":0,"iconIdx":49},{"icon":{"paths":["M977.493 397.227h-200.533c-77.986-2.423-140.284-66.224-140.284-144.574 0-3.476 0.123-6.923 0.364-10.338l-0.026 0.459v-205.227z","M215.467 640c-96.142-0-174.080 77.938-174.080 174.080s77.938 174.080 174.080 174.080v0c96.142-0 174.080-77.938 174.080-174.080s-77.938-174.080-174.080-174.080v0zM279.040 847.36h-31.573v31.147c-0.893 16.956-14.859 30.367-31.958 30.367-0.765 0-1.524-0.027-2.276-0.080l0.101 0.006c-17.484-0.463-31.537-14.516-31.999-31.957l-0.001-0.043v-31.147h-30.293c-17.617-0.669-31.644-15.112-31.644-32.831 0-0.758 0.026-1.511 0.076-2.256l-0.005 0.101c0.9-17.447 14.938-31.337 32.364-31.998l0.062-0.002h31.147v-31.147c1.94-16.464 15.813-29.115 32.64-29.115s30.7 12.651 32.625 28.961l0.015 0.155v31.147h31.147c17.494 0.234 31.585 14.47 31.585 31.997 0 0.301-0.004 0.601-0.012 0.9l0.001-0.044c0.065 0.767 0.101 1.66 0.101 2.562 0 17.794-14.333 32.241-32.084 32.425l-0.017 0z","M977.92 462.507h-200.96c-113.213-3.189-203.774-95.726-203.774-209.415 0-3.629 0.092-7.237 0.275-10.821l-0.020 0.503v-206.080h-209.067c-132.324 1.678-238.947 109.338-238.947 241.902 0 0.906 0.005 1.812 0.015 2.716l-0.001-0.138v366.933c0 5.547 0 11.52 0 17.067 24.991-15.805 55.41-25.185 88.019-25.185 0.706 0 1.411 0.004 2.114 0.013l-0.107-0.001c0.010-0 0.022-0 0.034-0 94.257 0 170.667 76.41 170.667 170.667 0 1.2-0.012 2.398-0.037 3.592l0.003-0.178c-0.301 29.028-7.525 56.302-20.093 80.338l0.466-0.978h373.76c132.324-1.678 238.947-109.338 238.947-241.902 0-0.906-0.005-1.812-0.015-2.716l0.001 0.138z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["add-files"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5869,"id":522,"name":"add-files","prevSize":32,"code":59749,"codes":[59749,59750,59751]},"setIdx":0,"setId":0,"iconIdx":50},{"icon":{"paths":["M478.293 193.28c16.864 41.318 56.712 69.917 103.246 69.973l128.007 0c84.766 0.073 158.567 46.95 196.96 116.18l0.587 1.153c-7.856-123.304-109.678-220.365-234.218-220.587l-0.022-0h-207.787z","M713.387 260.693h-128c-0.007 0-0.014 0-0.022 0-46.439 0-86.188-28.646-102.54-69.231l-0.264-0.743-13.227-35.84c-16.937-41.012-56.548-69.381-102.806-69.547l-0.021-0h-85.333c-0.127-0-0.277-0-0.427-0-107.924 0-195.413 87.49-195.413 195.413 0 0 0 0 0 0l0 0v433.067c0.243 124.235 101.011 224.853 225.28 224.853 0 0 0-0 0-0l402.773 0c0 0 0 0 0 0 124.269 0 225.037-100.618 225.28-224.83l0-0.023v-227.84c0-0.127 0-0.277 0-0.427 0-124.183-100.67-224.853-224.853-224.853-0.15 0-0.3 0-0.45 0l0.023-0zM609.28 604.16h-66.133v65.28c0.008 0.258 0.012 0.561 0.012 0.865 0 16.435-13.088 29.813-29.409 30.281l-0.043 0.001c-0.004 0-0.008 0-0.012 0-16.43 0-29.806-13.081-30.28-29.396l-0.001-0.044v-67.84h-68.267c-16.731 0-30.293-13.563-30.293-30.293s13.563-30.293 30.293-30.293v0h65.707v-65.707c-0.008-0.258-0.012-0.561-0.012-0.865 0-16.435 13.088-29.813 29.409-30.281l0.043-0.001c0.51-0.032 1.106-0.050 1.707-0.050 16.259 0 29.44 13.181 29.44 29.44 0 0.017-0 0.035-0 0.052l0-0.003v67.84h68.267c16.731 0 30.293 13.563 30.293 30.293s-13.563 30.293-30.293 30.293v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["add-folder"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5870,"id":521,"name":"add-folder","prevSize":32,"code":59752,"codes":[59752,59753]},"setIdx":0,"setId":0,"iconIdx":51},{"icon":{"paths":["M577.707 341.333h234.24c69.986 0 126.72 56.734 126.72 126.72v343.893c0 69.986-56.734 126.72-126.72 126.72h-234.24c-69.986 0-126.72-56.734-126.72-126.72v-343.893c0-69.986 56.734-126.72 126.72-126.72z","M386.987 469.333c0.207-103.524 82.862-187.674 185.784-190.288l0.243-0.005v-65.707c0-70.692-57.308-128-128-128v0h-231.68c-70.692 0-128 57.308-128 128v0 341.333c0 70.692 57.308 128 128 128v0h174.933z","M773.547 608h-37.547v-37.547c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 37.547h-37.547c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h37.547v37.547c0 17.673 14.327 32 32 32s32-14.327 32-32v0-37.547h37.547c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["add-item"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5871,"id":520,"name":"add-item","prevSize":32,"code":59754,"codes":[59754,59755,59756]},"setIdx":0,"setId":0,"iconIdx":52},{"icon":{"paths":["M353.28 157.44h317.867c128.66 0 232.96 104.3 232.96 232.96v315.307c0 128.66-104.3 232.96-232.96 232.96h-317.867c-128.66 0-232.96-104.3-232.96-232.96v-315.307c0-128.66 104.3-232.96 232.96-232.96z","M356.267 231.68c-17.673 0-32-14.327-32-32v0-78.080c0-17.673 14.327-32 32-32s32 14.327 32 32v0 78.080c0 17.673-14.327 32-32 32v0z","M667.733 231.68c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-78.080c-0-17.673 14.327-32 32-32s32 14.327 32 32v-0 78.080c0 17.673-14.327 32-32 32h0z","M609.28 581.12v0h-65.707v65.707c0.008 0.258 0.012 0.561 0.012 0.865 0 16.435-13.088 29.813-29.409 30.281l-0.043 0.001c-0.004 0-0.008 0-0.012 0-16.43 0-29.806-13.081-30.28-29.396l-0.001-0.044v-67.84h-68.267c-16.731 0-30.293-13.563-30.293-30.293s13.563-30.293 30.293-30.293v0h65.707v-65.28c-0.008-0.262-0.013-0.57-0.013-0.879 0-16.52 13.041-29.995 29.39-30.692l0.063-0.002c0.382-0.017 0.83-0.027 1.28-0.027 16.495 0 29.867 13.372 29.867 29.867 0 0.010-0 0.019-0 0.029l0-0.002v67.84h68.267c15.34 1.87 27.106 14.814 27.106 30.507s-11.766 28.637-26.958 30.492l-0.148 0.015z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["add-notepad"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5872,"id":519,"name":"add-notepad","prevSize":32,"code":59757,"codes":[59757,59758,59759,59760]},"setIdx":0,"setId":0,"iconIdx":53},{"icon":{"paths":["M789.333 469.333h85.333c23.564 0 42.667 19.103 42.667 42.667v0 85.333c0 23.564-19.103 42.667-42.667 42.667v0h-85.333v-170.667z","M917.333 256v85.333c0 23.564-19.103 42.667-42.667 42.667v0h-85.333v-170.667h85.333c23.564 0 42.667 19.103 42.667 42.667v0z","M666.453 938.667h-436.907c-67.865 0-122.88-55.015-122.88-122.88h0v-607.573c0-67.865 55.015-122.88 122.88-122.88v0h436.907c67.865 0 122.88 55.015 122.88 122.88v0 607.573c0 67.865-55.015 122.88-122.88 122.88v0zM448 298.667c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM587.52 682.667c0.768 0.049 1.666 0.077 2.57 0.077 23.564 0 42.667-19.103 42.667-42.667 0-5.233-0.942-10.246-2.666-14.879l0.096 0.295c-30.862-67.529-97.822-113.608-175.544-113.608-2.336 0-4.662 0.042-6.978 0.124l0.335-0.009c-1.578-0.046-3.436-0.073-5.299-0.073-77.616 0-144.524 45.852-175.112 111.946l-0.496 1.193c-11.093 27.733 11.52 57.6 65.28 57.6z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["address-book"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5873,"id":518,"name":"address-book","prevSize":32,"code":59761,"codes":[59761,59762,59763]},"setIdx":0,"setId":0,"iconIdx":54},{"icon":{"paths":["M336.243 86.061l347.302-1.879c140.44-0.76 254.906 112.473 255.665 252.914l1.865 344.742c0.76 140.44-112.473 254.906-252.914 255.665l-347.302 1.879c-140.44 0.76-254.906-112.473-255.665-252.914l-1.865-344.742c-0.76-140.44 112.473-254.906 252.914-255.665z","M785.067 469.333l-194.133-85.333c-6.851-3.162-11.52-9.973-11.52-17.874 0-0.016 0-0.032 0-0.048l-0 0.003v-103.68c0-0.029 0-0.063 0-0.097 0-14.597-5.864-27.825-15.366-37.456l0.006 0.006-19.627-20.053c-7.753-7.924-18.556-12.837-30.507-12.837s-22.753 4.913-30.499 12.83l-0.008 0.008-19.627 20.053c-9.496 9.625-15.36 22.852-15.36 37.45 0 0.034 0 0.068 0 0.102l-0-0.005v103.68c0.002 0.096 0.003 0.209 0.003 0.322 0 7.827-4.683 14.56-11.401 17.55l-0.122 0.049-197.973 85.333c-10.326 4.549-17.42 14.664-17.493 26.444l-0 0.009v67.413c0.2 15.87 13.112 28.659 29.011 28.659 4.003 0 7.817-0.811 11.286-2.277l-0.19 0.071 159.573-69.547c2.266-0.989 4.906-1.565 7.681-1.565 10.79 0 19.546 8.707 19.626 19.478l0 0.008v104.107c0 0.037 0 0.081 0 0.125 0 6.133-2.813 11.608-7.219 15.207l-0.035 0.028-75.093 61.867c-6.025 5.195-9.816 12.837-9.816 21.366 0 0.139 0.001 0.277 0.003 0.415l-0-0.021v63.573c0.294 15.090 12.596 27.21 27.728 27.21 6.466 0 12.415-2.213 17.131-5.922l-0.060 0.045 93.013-75.947c4.54-3.773 10.429-6.064 16.853-6.064s12.314 2.29 16.897 6.098l-0.043-0.035 93.44 75.947c4.24 2.765 9.431 4.41 15.005 4.41 14.616 0 26.592-11.307 27.656-25.651l0.005-0.092v-63.573c-0.051-8.724-4.002-16.515-10.196-21.724l-0.044-0.036-69.12-56.32c-4.441-3.627-7.254-9.103-7.254-15.235 0-0.044 0-0.088 0-0.131l-0 0.007v-107.093c0.080-10.779 8.836-19.485 19.626-19.485 2.775 0 5.415 0.576 7.807 1.614l-0.127-0.049 155.733 67.84c3.279 1.395 7.092 2.205 11.095 2.205 15.899 0 28.811-12.788 29.011-28.64l0-0.019v-67.413c0.031-0.502 0.049-1.089 0.049-1.681 0-11.045-6.172-20.648-15.255-25.55l-0.154-0.076z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["airplane-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5874,"id":517,"name":"airplane-square","prevSize":32,"code":59764,"codes":[59764,59765]},"setIdx":0,"setId":0,"iconIdx":55},{"icon":{"paths":["M880.64 455.68l-261.973-114.347c-9.339-4.306-15.719-13.56-15.787-24.311l-0-0.009v-142.080c-0.146-19.781-8.096-37.677-20.92-50.787l0.013 0.013-27.307-26.88c-10.397-10.668-24.906-17.285-40.96-17.285s-30.563 6.617-40.948 17.273l-0.012 0.012-26.453 26.88c-12.164 13.061-19.631 30.638-19.631 49.959 0 0.286 0.002 0.572 0.005 0.857l-0-0.043v140.373c0.031 0.483 0.049 1.047 0.049 1.615 0 10.932-6.631 20.315-16.090 24.346l-0.173 0.065-267.093 114.347c-13.906 5.98-23.467 19.562-23.467 35.377 0 0.013 0 0.025 0 0.038l-0-0.002v91.307c0.139 21.338 17.469 38.581 38.826 38.581 5.553 0 10.833-1.166 15.61-3.265l-0.249 0.098 213.333-93.867c3.139-1.419 6.807-2.246 10.667-2.246 14.61 0 26.453 11.844 26.453 26.453 0 0.040-0 0.079-0 0.119l0-0.006v140.373c0.001 0.090 0.002 0.195 0.002 0.301 0 8.209-3.622 15.572-9.356 20.578l-0.032 0.028-99.84 82.773c-8.357 6.781-13.653 17.051-13.653 28.558 0 0.010 0 0.020 0 0.030l-0-0.002v85.333c0.099 20.426 16.68 36.946 37.12 36.946 8.932 0 17.127-3.155 23.532-8.411l-0.065 0.052 125.867-102.4c6.056-5.155 13.968-8.29 22.613-8.29s16.558 3.135 22.663 8.331l-0.050-0.041 125.867 102.4c6.34 5.204 14.535 8.359 23.467 8.359 20.44 0 37.021-16.52 37.12-36.936l0-0.009v-85.333c0.004-0.191 0.006-0.417 0.006-0.643 0-11.322-5.313-21.403-13.582-27.886l-0.077-0.058-93.44-76.373c-6.008-4.889-9.816-12.283-9.816-20.566 0-0.12 0.001-0.239 0.002-0.359l-0 0.018v-144.213c-0-0.033-0-0.073-0-0.113 0-14.61 11.844-26.453 26.453-26.453 3.86 0 7.527 0.827 10.834 2.313l-0.167-0.067 209.92 91.307c4.528 2.002 9.808 3.168 15.361 3.168 21.357 0 38.687-17.244 38.826-38.568l0-0.013v-91.307c0-0.011 0-0.023 0-0.036 0-15.815-9.561-29.397-23.217-35.282l-0.249-0.096z","M618.667 341.333c-9.339-4.306-15.719-13.56-15.787-24.311l-0-0.009v-142.080c-0.146-19.781-8.096-37.677-20.92-50.787l0.013 0.013-27.307-26.88c-10.397-10.668-24.906-17.285-40.96-17.285s-30.563 6.617-40.948 17.273l-0.012 0.012-26.453 26.88c-12.164 13.061-19.631 30.638-19.631 49.959 0 0.286 0.002 0.572 0.005 0.857l-0-0.043v140.373c0.031 0.483 0.049 1.047 0.049 1.615 0 10.932-6.631 20.315-16.090 24.346l-0.173 0.065-267.093 114.347c-13.906 5.98-23.467 19.562-23.467 35.377 0 0.013 0 0.025 0 0.038l-0-0.002v91.307c0.139 21.338 17.469 38.581 38.826 38.581 5.553 0 10.833-1.166 15.61-3.265l-0.249 0.098 213.333-93.867c3.139-1.419 6.807-2.246 10.667-2.246 14.61 0 26.453 11.844 26.453 26.453 0 0.040-0 0.079-0 0.119l0-0.006v53.333l286.72-217.6z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["airplane"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5875,"id":516,"name":"airplane","prevSize":32,"code":59766,"codes":[59766,59767]},"setIdx":0,"setId":0,"iconIdx":56},{"icon":{"paths":["M290.987 85.333h442.027c101.797 0 184.32 82.523 184.32 184.32v484.693c0 101.797-82.523 184.32-184.32 184.32h-442.027c-101.797 0-184.32-82.523-184.32-184.32v-484.693c0-101.797 82.523-184.32 184.32-184.32z","M106.667 335.787h810.667v64h-810.667v-64z","M384.427 264.533h254.72c57.025 0 103.253 46.228 103.253 103.253s-46.228 103.253-103.253 103.253h-254.72c-57.025 0-103.253-46.228-103.253-103.253s46.228-103.253 103.253-103.253z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["airpod"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5876,"id":515,"name":"airpod","prevSize":32,"code":59768,"codes":[59768,59769,59770]},"setIdx":0,"setId":0,"iconIdx":57},{"icon":{"paths":["M387.413 383.573h249.173c49.013 0 88.747 39.733 88.747 88.747v250.027c0 49.013-39.733 88.747-88.747 88.747h-249.173c-49.013 0-88.747-39.733-88.747-88.747v-250.027c0-49.013 39.733-88.747 88.747-88.747z","M170.667 710.827c-23.564 0-42.667-19.103-42.667-42.667v0-170.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 170.667c0 23.564-19.103 42.667-42.667 42.667v0z","M387.413 810.667v0 85.333c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-85.333z","M636.587 810.667h-81.92v85.333c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-85.333z","M853.333 710.827c-23.564 0-42.667-19.103-42.667-42.667v0-170.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 170.667c0 23.564-19.103 42.667-42.667 42.667v0z","M590.080 323.84c0.409 0.008 0.891 0.012 1.375 0.012 41.305 0 75.036-32.427 77.124-73.213l0.008-0.186c-1.427-91.511-75.944-165.147-167.661-165.147-1.057 0-2.112 0.010-3.164 0.029l0.158-0.002c-0.894-0.017-1.949-0.027-3.006-0.027-91.717 0-166.234 73.636-167.659 165.013l-0.002 0.134c2.096 40.972 35.827 73.399 77.132 73.399 0.483 0 0.966-0.004 1.447-0.013l-0.072 0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["android"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5877,"id":514,"name":"android","prevSize":32,"code":59771,"codes":[59771,59772,59773,59774,59775,59776]},"setIdx":0,"setId":0,"iconIdx":58},{"icon":{"paths":["M773.547 805.547l-193.28 113.493c-20.929 12.291-46.097 19.55-72.96 19.55s-52.031-7.259-73.649-19.922l0.689 0.373-193.707-113.493c-38.939-23.694-65.61-64.22-69.931-111.216l-0.042-0.571-32.853-364.8c-0.386-3.955-0.607-8.55-0.607-13.196 0-61.073 38.077-113.253 91.786-134.096l0.981-0.335 225.707-85.333c15.34-5.885 33.085-9.293 51.627-9.293s36.286 3.408 52.643 9.633l-1.017-0.34 225.707 85.333c54.695 21.602 92.686 74.004 92.686 135.28 0 4.346-0.191 8.648-0.565 12.897l0.039-0.55-32 364.8c-4.585 47.804-31.756 88.406-70.582 111.418l-0.672 0.368z","M735.573 676.267l-59.307-125.867c-1.181-6.327-4.053-11.845-8.126-16.234l0.019 0.021-131.84-278.187c-5.549-10.879-16.623-18.227-29.424-18.347l-0.016-0c-0.001-0-0.002-0-0.003-0-12.728 0-23.673 7.635-28.505 18.574l-0.079 0.199-191.573 420.267c-1.847 3.921-2.925 8.517-2.925 13.365 0 13.019 7.775 24.223 18.935 29.22l0.203 0.081c3.711 1.886 8.091 2.991 12.73 2.991 0.175 0 0.349-0.002 0.523-0.005l-0.026 0c12.83-0.052 23.873-7.646 28.931-18.575l0.082-0.198 52.48-115.2h225.28l55.040 115.627c4.638 12.32 16.325 20.926 30.023 20.926 17.673 0 32-14.327 32-32 0-5.986-1.643-11.587-4.504-16.379l0.081 0.146zM426.667 523.947l81.067-178.347 85.333 178.347z","M784.64 181.333l-225.707-85.333c-13.796-5.972-29.806-9.812-46.606-10.654l-0.327-0.013v853.333c25.842-0.904 49.826-8.072 70.724-20.022l-0.751 0.395 193.28-113.493c39.497-23.38 66.669-63.983 71.208-111.198l0.046-0.588 32-364.8c0.302-3.509 0.474-7.593 0.474-11.718 0-61.898-38.767-114.742-93.346-135.575l-0.995-0.334z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["angular"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5878,"id":513,"name":"angular","prevSize":32,"code":59777,"codes":[59777,59778,59779]},"setIdx":0,"setId":0,"iconIdx":59},{"icon":{"paths":["M652.8 217.6c21.34-26.48 36.421-58.875 42.493-94.345l0.174-1.228c0.27-1.552 0.425-3.339 0.425-5.163 0-17.437-14.136-31.573-31.573-31.573-4.145 0-8.104 0.799-11.731 2.251l0.213-0.075c-35.401 12.878-65.18 34.003-88.067 61.132l-0.253 0.308c-22.662 27.308-38.002 61.448-42.574 98.913l-0.092 0.927c-0.032 0.525-0.050 1.14-0.050 1.758 0 17.202 13.945 31.147 31.147 31.147 3.214 0 6.314-0.487 9.23-1.39l-0.221 0.059c37.115-11.372 68.175-33.321 90.572-62.305l0.308-0.415z","M801.28 430.933c7.988-7.763 12.945-18.608 12.945-30.612 0-13.974-6.718-26.38-17.101-34.162l-0.111-0.079c-28.391-23.46-64.152-38.952-103.349-42.61l-0.758-0.057c-58.027-3.84-104.96 34.133-160.853 34.133s-90.453-34.133-152.32-34.133c-71.181 4.586-132.119 44.517-165.871 102.273l-0.529 0.98c-58.88 88.747-48.64 256 44.8 401.92 33.707 51.627 78.507 110.080 137.387 110.080 52.053 0 66.56-33.707 137.387-33.707s85.333 34.133 136.107 33.707c58.88 0 105.813-64.853 139.52-116.48 11.789-17.183 23.427-37.024 33.679-57.675l1.308-2.912c2.274-5.049 3.599-10.946 3.599-17.151 0-14.906-7.644-28.027-19.225-35.656l-0.16-0.099c-49.044-32.312-80.966-87.135-80.966-149.414 0-50.371 20.882-95.864 54.461-128.296l0.052-0.050z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["apple"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5879,"id":512,"name":"apple","prevSize":32,"code":59780,"codes":[59780,59781]},"setIdx":0,"setId":0,"iconIdx":60},{"icon":{"paths":["M768 935.253l-217.6-124.587c-11.025-6.429-24.269-10.224-38.4-10.224s-27.375 3.795-38.769 10.422l0.369-0.198-217.6 124.587c-11.016 6.469-24.262 10.29-38.401 10.29-42.283 0-76.585-34.17-76.799-76.403l-0-0.020v-601.173c0.243-104.913 85.347-189.867 190.293-189.867 0 0 0 0 0.001 0l361.813-0c104.763 0.242 189.625 85.104 189.867 189.844l0 0.023v601.173c-0.351 42.148-34.6 76.179-76.797 76.179-13.967 0-27.062-3.728-38.347-10.244l0.371 0.197z","M472.747 576c-8.483-0.028-16.164-3.444-21.764-8.964l0.004 0.004-66.987-63.573c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 44.8 42.667 149.333-148.053c5.846-8.439 15.479-13.896 26.386-13.896 17.673 0 32 14.327 32 32 0 11.668-6.245 21.877-15.574 27.468l-0.145 0.081-170.667 170.667c-5.36 4.332-12.258 6.955-19.769 6.955-1.001 0-1.992-0.047-2.969-0.138l0.125 0.009z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["archive-tick"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5880,"id":511,"name":"archive-tick","prevSize":32,"code":59782,"codes":[59782,59783]},"setIdx":0,"setId":0,"iconIdx":61},{"icon":{"paths":["M192.427 426.667h640v415.147c0 53.491-43.363 96.853-96.853 96.853v0h-446.293c-53.491 0-96.853-43.363-96.853-96.853v0-415.147z","M194.987 83.2h634.027c60.56 0 109.653 49.093 109.653 109.653v127.573c0 60.56-49.093 109.653-109.653 109.653h-634.027c-60.56 0-109.653-49.093-109.653-109.653v-127.573c0-60.56 49.093-109.653 109.653-109.653z","M606.293 632.747h-153.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h153.173c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["archive"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5881,"id":510,"name":"archive","prevSize":32,"code":59784,"codes":[59784,59785,59786]},"setIdx":0,"setId":0,"iconIdx":62},{"icon":{"paths":["M388.267 892.587h368.213c101.033-1.907 182.205-84.259 182.205-185.569 0-0.911-0.007-1.821-0.020-2.728l0.002 0.137v-380.16c0.011-0.768 0.018-1.675 0.018-2.584 0-101.225-81.221-183.479-182.048-185.147l-0.157-0.002h-368.213c-100.983 1.671-182.205 83.925-182.205 185.15 0 0.908 0.007 1.815 0.020 2.721l-0.002-0.137v241.493c-0.136 1.092-0.213 2.357-0.213 3.639 0 17.202 13.945 31.147 31.147 31.147s31.147-13.945 31.147-31.147c0-1.282-0.078-2.547-0.228-3.789l0.015 0.149v-241.493c-0.004-0.386-0.007-0.842-0.007-1.298 0-66.881 53.619-121.239 120.215-122.433l0.112-0.002h368.213c66.708 1.195 120.327 55.553 120.327 122.435 0 0.456-0.002 0.912-0.007 1.368l0.001-0.069v380.16c0.004 0.388 0.007 0.847 0.007 1.307 0 66.967-53.569 121.422-120.194 122.851l-0.133 0.002h-368.213c-51.16-0.394-94.658-32.77-111.517-78.104l-0.27-0.829c-4.371-12.263-15.883-20.883-29.407-20.883-4.816 0-9.376 1.093-13.447 3.044l0.187-0.081c-11.688 5.074-19.715 16.515-19.715 29.831 0 4.64 0.975 9.052 2.73 13.043l-0.082-0.208c26.25 69.594 92.294 118.196 169.69 118.196 0.644 0 1.286-0.003 1.928-0.010l-0.098 0.001z","M238.933 651.093c-9.222-0.358-17.395-4.567-23.006-11.053l-0.034-0.040-122.88-128c-4.804-5.565-7.731-12.869-7.731-20.856 0-8.437 3.265-16.112 8.601-21.829l-0.017 0.019c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 99.84 103.253 99.84-103.253c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.057 5.635 8.149 13.123 8.149 21.333s-3.092 15.698-8.175 21.363l0.026-0.030-122.027 128c-5.645 6.527-13.818 10.735-22.98 11.091l-0.060 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-circle-left"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5882,"id":509,"name":"arrow-circle-left","prevSize":32,"code":59787,"codes":[59787,59788]},"setIdx":0,"setId":0,"iconIdx":63},{"icon":{"paths":["M635.733 892.587h-368.213c-101.033-1.907-182.205-84.259-182.205-185.569 0-0.911 0.007-1.821 0.020-2.728l-0.002 0.137v-380.16c-0.011-0.768-0.018-1.675-0.018-2.584 0-101.225 81.221-183.479 182.048-185.147l0.157-0.002h368.213c100.983 1.671 182.205 83.925 182.205 185.15 0 0.908-0.007 1.815-0.020 2.721l0.002-0.137v241.493c0.136 1.092 0.213 2.357 0.213 3.639 0 17.202-13.945 31.147-31.147 31.147s-31.147-13.945-31.147-31.147c0-1.282 0.078-2.547 0.228-3.789l-0.015 0.149v-241.493c0.004-0.386 0.007-0.842 0.007-1.298 0-66.881-53.619-121.239-120.215-122.433l-0.112-0.002h-368.213c-66.708 1.195-120.327 55.553-120.327 122.435 0 0.456 0.002 0.912 0.007 1.368l-0.001-0.069v380.16c-0.004 0.388-0.007 0.847-0.007 1.307 0 66.967 53.569 121.422 120.194 122.851l0.133 0.002h368.213c51.16-0.394 94.658-32.77 111.517-78.104l0.27-0.829c4.589-11.843 15.89-20.088 29.117-20.088 4.11 0 8.033 0.796 11.626 2.242l-0.209-0.074c11.688 5.074 19.715 16.515 19.715 29.831 0 4.64-0.975 9.052-2.73 13.043l0.082-0.208c-26.217 69.496-92.114 118.055-169.37 118.187l-0.016 0z","M785.067 651.093v0c-9.105-0.125-17.273-4.033-23.022-10.22l-0.018-0.020-122.027-128.853c-5.057-5.635-8.149-13.123-8.149-21.333s3.092-15.698 8.175-21.363l-0.026 0.030c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 99.84 104.107 99.84-104.107c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-122.88 128c-5.692 5.29-13.346 8.536-21.759 8.536-0.15 0-0.301-0.001-0.45-0.003l0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-circle-right"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5883,"id":508,"name":"arrow-circle-right","prevSize":32,"code":59789,"codes":[59789,59790]},"setIdx":0,"setId":0,"iconIdx":64},{"icon":{"paths":["M233.387 817.493c-7.939-0.475-14.978-3.984-20.039-9.371l-0.015-0.016c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 546.133-552.107c5.699-5.321 13.376-8.588 21.815-8.588 17.673 0 32 14.327 32 32 0 8.44-3.267 16.116-8.606 21.834l0.017-0.019-548.693 552.107c-5.786 5.793-13.78 9.379-22.612 9.387l-0.002 0z","M229.973 817.493c-8.833-0.008-16.828-3.594-22.613-9.386l-0-0c-5.799-5.662-9.396-13.558-9.396-22.294 0-0.262 0.003-0.524 0.010-0.785l-0.001 0.039v-179.2c0.241-17.489 14.474-31.573 31.997-31.573 0.001 0 0.002 0 0.003 0l-0-0c17.49 0.239 31.576 14.473 31.576 31.997 0 0.151-0.001 0.302-0.003 0.452l0-0.023v146.347h146.773c0.383-0.017 0.832-0.026 1.283-0.026 17.202 0 31.147 13.945 31.147 31.147 0 0.159-0.001 0.318-0.004 0.477l0-0.024c0 0.003 0 0.007 0 0.011 0 17.609-14.036 31.939-31.529 32.414l-0.044 0.001h-179.627z","M783.787 439.040v0c-17.724-0.241-32-14.665-32-32.424 0-0.001 0-0.002 0-0.003l-0 0v-146.347h-146.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h179.2c0.328-0.013 0.712-0.020 1.098-0.020 8.628 0 16.413 3.607 21.93 9.394l0.011 0.012c5.802 5.857 9.387 13.919 9.387 22.818 0 0.078-0 0.156-0.001 0.234l0-0.012-2.133 179.2c-0.45 16.87-13.89 30.458-30.657 31.145l-0.063 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-diagonal"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5884,"id":507,"name":"arrow-diagonal","prevSize":32,"code":59791,"codes":[59791,59792,59793]},"setIdx":0,"setId":0,"iconIdx":65},{"icon":{"paths":["M721.92 733.867h-358.4c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h315.733v-315.733c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 358.4c0 23.564-19.103 42.667-42.667 42.667v0z","M721.92 733.867c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007-357.973-357.973c-6.377-7.412-10.259-17.129-10.259-27.753 0-23.564 19.103-42.667 42.667-42.667 10.624 0 20.341 3.883 27.809 10.307l-0.056-0.047 357.973 357.973c7.795 7.733 12.621 18.45 12.621 30.294 0 23.501-19.001 42.565-42.478 42.666l-0.010 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-down-left"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5885,"id":506,"name":"arrow-down-left","prevSize":32,"code":59794,"codes":[59794,59795]},"setIdx":0,"setId":0,"iconIdx":66},{"icon":{"paths":["M883.627 693.76c-9.088-0.103-17.327-3.655-23.487-9.405l0.020 0.019-244.053-237.653-164.267 157.44c-5.993 5.858-14.201 9.472-23.253 9.472s-17.26-3.614-23.26-9.478l0.006 0.006-288-284.16c-6.188-6.081-10.023-14.539-10.023-23.893 0-18.496 14.994-33.49 33.49-33.49 9.142 0 17.428 3.663 23.471 9.601l-0.005-0.005 264.533 261.12 164.693-157.013c5.926-5.832 14.062-9.433 23.040-9.433s17.114 3.601 23.044 9.437l-0.004-0.004 267.093 259.84c6.241 6.056 10.114 14.523 10.114 23.894 0 18.336-14.828 33.208-33.147 33.28l-0.007 0z","M901.973 725.333v0h-187.307c-0.13 0.002-0.284 0.003-0.438 0.003-17.202 0-31.147-13.945-31.147-31.147 0-0.301 0.004-0.601 0.013-0.9l-0.001 0.044c-0.002-0.128-0.003-0.279-0.003-0.43 0-17.437 14.136-31.573 31.573-31.573 0.151 0 0.302 0.001 0.452 0.003l-0.023-0h154.453v-154.453c-0-0.001-0-0.002-0-0.003 0-17.523 14.085-31.757 31.551-31.997l0.023-0c0.383-0.017 0.832-0.026 1.283-0.026 17.202 0 31.147 13.945 31.147 31.147 0 0.159-0.001 0.318-0.004 0.477l0-0.024 2.133 186.88c0 0.014 0 0.031 0 0.047 0 8.954-3.582 17.072-9.392 22.998l0.005-0.005c-5.754 5.583-13.612 9.025-22.275 9.025-0.72 0-1.434-0.024-2.141-0.071l0.096 0.005z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-down-refraction"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5886,"id":505,"name":"arrow-down-refraction","prevSize":32,"code":59796,"codes":[59796,59797]},"setIdx":0,"setId":0,"iconIdx":67},{"icon":{"paths":["M700.16 747.093h-358.827c-23.564 0-42.667-19.103-42.667-42.667v0-358.4c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 315.733h315.307c23.564-0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667h0z","M341.333 747.093c-0.074 0-0.161 0.001-0.248 0.001-23.564 0-42.667-19.103-42.667-42.667 0-11.844 4.826-22.561 12.619-30.291l0.003-0.003 358.4-358.4c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003-357.12 357.973c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-down-right"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5887,"id":504,"name":"arrow-down-right","prevSize":32,"code":59798,"codes":[59798,59799]},"setIdx":0,"setId":0,"iconIdx":68},{"icon":{"paths":["M512 810.667v0c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003-253.013-255.573c-9.153-7.872-14.914-19.467-14.914-32.407 0-23.564 19.103-42.667 42.667-42.667 12.94 0 24.535 5.761 32.36 14.858l0.047 0.056 223.147 223.147 223.147-223.147c7.872-9.153 19.467-14.914 32.407-14.914 23.564 0 42.667 19.103 42.667 42.667 0 12.94-5.761 24.535-14.858 32.36l-0.056 0.047-253.013 253.44c-7.474 8.496-18.195 13.982-30.204 14.504l-0.089 0.003z","M512 810.667c-23.564 0-42.667-19.103-42.667-42.667v0-508.587c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 508.587c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-down"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5888,"id":503,"name":"arrow-down","prevSize":32,"code":59800,"codes":[59800,59801]},"setIdx":0,"setId":0,"iconIdx":69},{"icon":{"paths":["M512 808.107c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007-253.013-253.013c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 253.013-253.013c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002-223.147 223.147 223.147 223.147c7.796 7.733 12.621 18.45 12.621 30.294 0 23.564-19.103 42.667-42.667 42.667-0.087 0-0.174-0-0.262-0.001l0.013 0z","M765.44 554.667h-506.88c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h506.88c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-left"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5889,"id":502,"name":"arrow-left","prevSize":32,"code":59802,"codes":[59802,59803]},"setIdx":0,"setId":0,"iconIdx":70},{"icon":{"paths":["M930.133 243.627l-108.373-112.64c-5.473-5.43-13.011-8.786-21.333-8.786s-15.86 3.356-21.335 8.788l0.002-0.002c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 59.307 62.72h-132.267c-8.661 0.222-16.455 3.763-22.192 9.392l0.005-0.005-470.613 480.427h-97.28c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h108.8c8.549-0.099 16.244-3.676 21.751-9.378l0.009-0.009 469.333-482.133h113.92l-55.893 59.307c-5.585 5.878-9.021 13.844-9.021 22.613s3.436 16.736 9.034 22.627l-0.013-0.014c5.565 5.636 13.229 9.188 21.723 9.386l0.037 0.001c8.549-0.099 16.244-3.676 21.751-9.378l0.009-0.009 112.64-116.907c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0z","M466.773 544.427c-8.549-0.099-16.244-3.676-21.751-9.378l-0.009-0.009-231.68-239.36h-97.28c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h108.8c8.549 0.099 16.244 3.676 21.751 9.378l0.009 0.009 241.92 248.32c5.585 5.878 9.021 13.844 9.021 22.613s-3.436 16.736-9.034 22.627l0.013-0.014c-5.431 5.908-13.143 9.647-21.73 9.813l-0.030 0zM929.707 730.88l-108.8-112.64c-5.473-5.43-13.011-8.786-21.333-8.786s-15.86 3.356-21.335 8.788l0.002-0.002c-5.585 5.878-9.021 13.844-9.021 22.613s3.436 16.736 9.034 22.627l-0.013-0.014 55.893 58.453h-101.547l-107.093-109.653c-5.425-5.534-12.979-8.964-21.333-8.964s-15.908 3.43-21.329 8.959l-0.005 0.005c-5.682 5.835-9.186 13.815-9.186 22.613s3.504 16.778 9.193 22.62l-0.007-0.007 115.627 119.040c5.516 5.711 13.211 9.287 21.742 9.386l0.018 0h113.92l-60.16 61.867c-5.585 5.878-9.021 13.844-9.021 22.613s3.436 16.736 9.034 22.627l-0.013-0.014c5.595 5.791 13.43 9.387 22.105 9.387 0.029 0 0.058-0 0.087-0l-0.004 0c0.006 0 0.014 0 0.021 0 8.561 0 16.28-3.602 21.725-9.372l0.014-0.015 112.64-116.907c5.585-5.878 9.021-13.844 9.021-22.613s-3.436-16.736-9.034-22.627l0.013 0.014z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-mix"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5890,"id":501,"name":"arrow-mix","prevSize":32,"code":59804,"codes":[59804,59805]},"setIdx":0,"setId":0,"iconIdx":71},{"icon":{"paths":["M906.667 701.44h-709.547l61.44-61.44c5.331-5.518 8.616-13.042 8.616-21.333s-3.285-15.816-8.624-21.342l0.008 0.009c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0-116.053 114.773c-4.972 5.669-8.006 13.147-8.006 21.333s3.033 15.664 8.038 21.37l-0.032-0.037 116.053 128.427c5.931 6.31 14.331 10.241 23.649 10.241 0.086 0 0.172-0 0.257-0.001l-0.013 0c8.266-0.069 15.763-3.304 21.35-8.549l-0.017 0.016c5.682-5.835 9.186-13.815 9.186-22.613s-3.504-16.778-9.193-22.62l0.007 0.007-65.28-71.68h713.387c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z","M929.28 307.627l-118.613-121.6c-5.518-5.331-13.042-8.616-21.333-8.616s-15.816 3.285-21.342 8.624l0.009-0.008c-5.057 5.635-8.149 13.123-8.149 21.333s3.092 15.698 8.175 21.363l-0.026-0.030 63.147 64h-712.107c-16.014 1.912-28.311 15.413-28.311 31.787s12.297 29.874 28.159 31.772l0.152 0.015h715.52l-63.573 64c-5.784 5.79-9.362 13.785-9.362 22.617 0 17.514 14.071 31.742 31.524 31.997l0.024 0c1.215 0.175 2.618 0.275 4.044 0.275 6.668 0 12.826-2.185 17.796-5.878l-0.080 0.057 114.347-114.773c5.813-5.795 9.41-13.81 9.41-22.665 0-0.432-0.009-0.862-0.026-1.29l0.002 0.061c-0.082-8.956-3.644-17.064-9.397-23.051l0.011 0.011z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-right-left"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5891,"id":500,"name":"arrow-right-left","prevSize":32,"code":59806,"codes":[59806,59807]},"setIdx":0,"setId":0,"iconIdx":72},{"icon":{"paths":["M512 808.107c-0.074 0-0.161 0.001-0.248 0.001-23.564 0-42.667-19.103-42.667-42.667 0-11.844 4.826-22.561 12.619-30.291l0.003-0.003 223.147-223.147-223.147-223.147c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 253.013 253.013c7.861 7.709 12.749 18.426 12.8 30.284l0 0.010c-0.051 11.868-4.939 22.584-12.793 30.287l-0.007 0.007-253.013 253.013c-7.709 7.861-18.426 12.749-30.284 12.8l-0.010 0z","M765.44 554.667h-506.88c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h506.88c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-right"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5892,"id":499,"name":"arrow-right","prevSize":32,"code":59808,"codes":[59808,59809]},"setIdx":0,"setId":0,"iconIdx":73},{"icon":{"paths":["M814.507 768l-256-256 247.467-249.173c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0-248.747 245.76-246.187-250.027c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 248.747 250.453-256 258.987c-5.057 5.635-8.149 13.123-8.149 21.333s3.092 15.698 8.175 21.363l-0.026-0.030c5.875 5.648 13.812 9.189 22.575 9.386l0.038 0.001c7.893-0.688 14.87-4.146 20.050-9.384l0.003-0.003 256-256 256 256c5.875 5.648 13.812 9.189 22.575 9.386l0.038 0.001c8.817-0.106 16.781-3.668 22.619-9.392l-0.005 0.005c5.453-5.728 8.808-13.496 8.808-22.048 0-7.877-2.846-15.090-7.567-20.665l0.039 0.047z","M230.827 823.040c-8.817-0.106-16.781-3.668-22.619-9.392l0.005 0.005c-5.742-5.976-9.305-14.084-9.387-23.024l-0-0.016v-179.2c0.237-17.577 14.423-31.763 31.977-32l0.023-0c17.538 0.476 31.573 14.807 31.573 32.415 0 0.004-0 0.008-0 0.012l0-0.001v146.773h146.773c17.523 0.221 31.727 14.127 32.425 31.509l0.002 0.064c0.002 0.127 0.003 0.277 0.003 0.427 0 17.673-14.327 32-32 32-0.001 0-0.002-0-0.003-0l0 0-179.2 2.133z","M794.88 444.587v0c-17.538-0.476-31.573-14.807-31.573-32.415 0-0.004 0-0.008 0-0.012l-0 0.001v-146.773h-146.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h179.627c0.473-0.028 1.027-0.045 1.584-0.045 8.348 0 15.848 3.633 21.005 9.404l0.024 0.027c5.796 5.252 9.421 12.808 9.421 21.21 0 0.493-0.013 0.984-0.037 1.471l0.003-0.068v179.2c0 0.008 0 0.017 0 0.026 0 17.673-14.327 32-32 32-0.45 0-0.898-0.009-1.344-0.028l0.064 0.002z","M793.173 823.040v0l-179.2-2.133c-17.673 0-32-14.327-32-32v0c0.9-17.447 14.938-31.337 32.364-31.998l0.062-0.002h146.773v-146.773c-0-0.001-0-0.002-0-0.003 0-17.523 14.085-31.757 31.551-31.997l0.023-0c0.514-0.031 1.115-0.048 1.72-0.048 16.966 0 30.72 13.754 30.72 30.72 0 0.317-0.005 0.633-0.014 0.948l0.001-0.046 2.133 179.2c-0.082 8.956-3.644 17.064-9.397 23.051l0.011-0.011c-6.048 6.818-14.832 11.094-24.614 11.094-0.047 0-0.093-0-0.14-0l0.007 0z","M229.12 444.587c-17.673 0-32-14.327-32-32v0-179.2c-0.013-0.328-0.020-0.712-0.020-1.098 0-8.628 3.607-16.413 9.394-21.93l0.012-0.011c5.392-5.793 13.060-9.405 21.571-9.405 0.366 0 0.731 0.007 1.095 0.020l-0.053-0.002h179.627c17.673 0 32 14.327 32 32s-14.327 32-32 32v0 0h-146.773v146.773c0 0.003 0 0.007 0 0.011 0 17.609-14.036 31.939-31.529 32.414l-0.044 0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-two-diagonals"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5893,"id":498,"name":"arrow-two-diagonals","prevSize":32,"code":59810,"codes":[59810,59811,59812,59813,59814]},"setIdx":0,"setId":0,"iconIdx":74},{"icon":{"paths":["M843.947 768c-5.318-5.757-12.906-9.35-21.333-9.35s-16.015 3.593-21.315 9.33l-0.018 0.020-69.973 69.12v-715.947c0.227-1.411 0.356-3.038 0.356-4.695 0-17.202-13.945-31.147-31.147-31.147-0.125 0-0.25 0.001-0.375 0.002l0.019-0c-16.836 0.469-30.305 14.229-30.305 31.135 0 0.304 0.004 0.607 0.013 0.909l-0.001-0.044v711.68l-57.173-61.013c-5.318-5.757-12.906-9.35-21.333-9.35s-16.015 3.593-21.315 9.33l-0.018 0.020c-5.403 5.955-8.711 13.898-8.711 22.613s3.308 16.658 8.736 22.641l-0.025-0.028 110.507 116.48c5.318 5.757 12.906 9.35 21.333 9.35s16.015-3.593 21.315-9.33l0.018-0.020 119.467-119.040c5.811-5.985 9.394-14.161 9.394-23.174 0-0.253-0.003-0.505-0.008-0.757l0.001 0.037c-0.55-7.291-3.532-13.797-8.127-18.796l0.020 0.022z","M448.427 209.493l-107.093-114.773c-5.325-5.821-12.954-9.458-21.433-9.458-0.716 0-1.425 0.026-2.128 0.077l0.094-0.005c-8.549 0.099-16.244 3.676-21.751 9.378l-0.009 0.009-115.627 120.747c-4.972 5.669-8.006 13.147-8.006 21.333s3.033 15.664 8.038 21.37l-0.032-0.037c5.425 5.531 12.977 8.96 21.329 8.96 0.002 0 0.003-0 0.005-0l-0 0c8.432-0.010 16.020-3.616 21.315-9.366l0.019-0.020 61.013-61.44v711.253c0 16.731 13.563 30.293 30.293 30.293s30.293-13.563 30.293-30.293v0-717.653l60.587 63.573c5.374 5.643 12.944 9.152 21.333 9.152s15.959-3.509 21.322-9.14l0.011-0.012c5.54-5.745 8.952-13.574 8.952-22.199 0-8.407-3.242-16.057-8.544-21.768l0.018 0.020z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-up-down"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5894,"id":497,"name":"arrow-up-down","prevSize":32,"code":59815,"codes":[59815,59816]},"setIdx":0,"setId":0,"iconIdx":75},{"icon":{"paths":["M332.8 733.867c-23.564 0-42.667-19.103-42.667-42.667v0-358.4c0-23.564 19.103-42.667 42.667-42.667v0h358.4c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0h-315.733v315.733c0 23.564-19.103 42.667-42.667 42.667l-0-0z","M691.2 733.867c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007-357.973-357.973c-6.377-7.412-10.259-17.129-10.259-27.753 0-23.564 19.103-42.667 42.667-42.667 10.624 0 20.341 3.883 27.809 10.307l-0.056-0.047 357.973 357.973c7.795 7.733 12.621 18.45 12.621 30.294 0 23.501-19.001 42.565-42.478 42.666l-0.010 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-up-left"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5895,"id":496,"name":"arrow-up-left","prevSize":32,"code":59817,"codes":[59817,59818]},"setIdx":0,"setId":0,"iconIdx":76},{"icon":{"paths":["M119.040 730.027c-0.018 0-0.040 0-0.061 0-9.375 0-17.833-3.927-23.819-10.226l-0.013-0.014c-6.241-6.056-10.114-14.522-10.114-23.893s3.873-17.837 10.106-23.885l0.008-0.008 291.84-288c6.17-5.814 14.508-9.388 23.68-9.388s17.51 3.573 23.697 9.404l-0.017-0.016 166.4 159.147 247.467-240.213c6.131-6.079 14.574-9.835 23.893-9.835 18.745 0 33.941 15.196 33.941 33.941 0 9.426-3.842 17.954-10.046 24.104l-0.002 0.002-271.36 263.253c-6.061 5.883-14.34 9.51-23.467 9.51s-17.406-3.627-23.475-9.519l0.008 0.008-166.4-159.147-268.373 264.533c-6.136 6.137-14.541 10.006-23.849 10.239l-0.044 0.001z","M903.68 520.107v0c-17.538-0.476-31.573-14.807-31.573-32.415 0-0.004 0-0.008 0-0.012l-0 0.001v-156.587h-157.013c-0.262 0.008-0.57 0.012-0.879 0.012-16.992 0-30.848-13.422-31.546-30.242l-0.002-0.063c-0-0.001-0-0.002-0-0.003 0-17.759 14.276-32.183 31.977-32.424l0.023-0h189.44c0.203-0.005 0.443-0.008 0.683-0.008 8.622 0 16.402 3.602 21.919 9.383l0.011 0.012c6.646 4.823 11.134 12.271 11.938 20.791l0.009 0.116v189.013c0 0.030 0 0.066 0 0.101 0 17.909-14.518 32.427-32.427 32.427-0.901 0-1.794-0.037-2.676-0.109l0.116 0.008z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-up-refraction"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5896,"id":495,"name":"arrow-up-refraction","prevSize":32,"code":59819,"codes":[59819,59820]},"setIdx":0,"setId":0,"iconIdx":77},{"icon":{"paths":["M691.2 733.867c-23.564 0-42.667-19.103-42.667-42.667v0-315.733h-315.733c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h358.4c23.564 0 42.667 19.103 42.667 42.667v0 358.4c0 23.564-19.103 42.667-42.667 42.667v-0z","M332.8 733.867c-23.487-0.102-42.488-19.165-42.488-42.666 0-11.844 4.826-22.56 12.618-30.291l0.003-0.003 357.973-357.973c16.64-17.067 77.227 42.667 60.16 60.16l-357.973 357.973c-7.709 7.861-18.426 12.749-30.284 12.8l-0.010 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-up-right"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5897,"id":494,"name":"arrow-up-right","prevSize":32,"code":59821,"codes":[59821,59822]},"setIdx":0,"setId":0,"iconIdx":78},{"icon":{"paths":["M765.44 554.667c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003-223.147-222.72-223.147 223.147c-7.872 9.153-19.467 14.914-32.407 14.914-23.564 0-42.667-19.103-42.667-42.667 0-12.94 5.761-24.535 14.858-32.36l0.056-0.047 253.013-253.44c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 253.013 253.44c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002c-7.661 7.393-18.104 11.947-29.61 11.947-0.090 0-0.18-0-0.27-0.001l0.014 0z","M512 810.667c-23.564 0-42.667-19.103-42.667-42.667v0-508.587c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 508.587c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-up"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5898,"id":493,"name":"arrow-up","prevSize":32,"code":59823,"codes":[59823,59824]},"setIdx":0,"setId":0,"iconIdx":79},{"icon":{"paths":["M304.64 408.747c-0.14 0.002-0.305 0.003-0.471 0.003-8.956 0-17.075-3.584-23.001-9.395l0.005 0.005-128-128c-5.802-6.098-9.375-14.364-9.387-23.464l-0-0.002c0.103-9.088 3.655-17.327 9.405-23.487l-0.019 0.020 128-128c5.989-6.042 14.291-9.783 23.467-9.783 18.245 0 33.036 14.791 33.036 33.036 0 9.070-3.655 17.286-9.572 23.256l0.002-0.002-105.387 104.107 105.387 105.387c5.983 6.016 9.682 14.309 9.682 23.467s-3.699 17.451-9.683 23.468l0.001-0.001c-5.921 5.806-14.040 9.39-22.996 9.39-0.165 0-0.331-0.001-0.496-0.004l0.025 0zM742.827 928.853l128-128c6.087-5.968 9.861-14.277 9.861-23.467s-3.773-17.499-9.855-23.461l-0.005-0.005-128-128c-5.791-5.005-13.393-8.054-21.707-8.054-18.38 0-33.28 14.9-33.28 33.28 0 8.314 3.049 15.917 8.090 21.75l-0.036-0.042 105.387 105.387-105.387 105.387c-5.959 5.948-9.645 14.17-9.645 23.253s3.686 17.306 9.645 23.253l0.001 0.001c5.968 6.087 14.277 9.861 23.467 9.861s17.499-3.773 23.461-9.855l0.005-0.005z","M805.973 743.68h-494.507c-1.947 0.136-4.219 0.213-6.509 0.213-54.904 0-99.413-44.509-99.413-99.413s44.509-99.413 99.413-99.413c2.29 0 4.563 0.077 6.814 0.23l-0.305-0.017h409.6c90.568-1.441 163.433-75.198 163.433-165.973 0-91.675-74.318-165.993-165.993-165.993-0.9 0-1.799 0.007-2.695 0.021l0.135-0.002h-495.36c-18.144 0-32.853 14.709-32.853 32.853s14.709 32.853 32.853 32.853v0h495.36c54.904 0 99.413 44.509 99.413 99.413s-44.509 99.413-99.413 99.413h-410.027c-90.712 1.56-163.65 75.462-163.65 166.4 0 91.913 74.51 166.423 166.423 166.423 0.975 0 1.948-0.008 2.919-0.025l-0.146 0.002h494.507c18.144 0 32.853-14.709 32.853-32.853h0c0.007-0.255 0.011-0.555 0.011-0.856 0-18.234-14.664-33.043-32.842-33.277l-0.022-0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrow-zigzag"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5899,"id":492,"name":"arrow-zigzag","prevSize":32,"code":59825,"codes":[59825,59826]},"setIdx":0,"setId":0,"iconIdx":80},{"icon":{"paths":["M853.333 92.16c-18.048 0.237-32.616 14.805-32.853 32.831l-0 0.023v116.907c-73.297-76.51-176.296-124.060-290.402-124.060-190.937 0-350.777 133.143-391.743 311.651l-0.522 2.702c-0.566 2.266-0.89 4.868-0.89 7.546 0 15.504 10.88 28.466 25.422 31.668l0.215 0.040c1.154 0.201 2.484 0.316 3.84 0.316s2.686-0.115 3.979-0.336l-0.139 0.020c15.555-0.021 28.576-10.849 31.957-25.378l0.043-0.222c34.65-151.408 168.196-262.658 327.727-262.658 96.915 0 184.241 41.058 245.532 106.729l0.181 0.196h-123.307c-18.38 0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28h200.96c18.38 0 33.28-14.9 33.28-33.28v0-198.4c-0.241-18.196-15.047-32.853-33.277-32.853-0.001 0-0.002 0-0.003 0l0-0z","M899.413 562.347c-1.871-0.373-4.021-0.587-6.221-0.587-16.020 0-29.396 11.319-32.567 26.396l-0.038 0.217c-32.601 154.281-167.625 268.402-329.304 268.402-98.495 0-187.097-42.353-248.589-109.841l-0.241-0.268h128c1.129 0.136 2.437 0.213 3.762 0.213 18.38 0 33.28-14.9 33.28-33.28s-14.9-33.28-33.28-33.28c-1.326 0-2.633 0.078-3.918 0.228l0.156-0.015h-185.173c-18.38 0-33.28 14.9-33.28 33.28v0 191.573c0 18.38 14.9 33.28 33.28 33.28s33.28-14.9 33.28-33.28v0-89.173c71.495 66.2 167.515 106.809 273.021 106.809 193.102 0 354.432-136.035 393.384-317.5l0.475-2.642c0.541-2.261 0.851-4.857 0.851-7.526 0-16.198-11.425-29.727-26.657-32.968l-0.221-0.039z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrows-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5900,"id":491,"name":"arrows-circle","prevSize":32,"code":59827,"codes":[59827,59828]},"setIdx":0,"setId":0,"iconIdx":81},{"icon":{"paths":["M826.453 503.040c-17.068 0.474-30.723 14.423-30.723 31.562 0 0.154 0.001 0.308 0.003 0.461l-0-0.023v109.653c0.005 0.387 0.008 0.844 0.008 1.302 0 55.1-44.070 99.907-98.884 101.096l-0.111 0.002h-426.667l65.28-66.987c5.682-5.835 9.186-13.815 9.186-22.613s-3.504-16.778-9.193-22.62l0.007 0.007c-5.425-5.534-12.979-8.964-21.333-8.964s-15.908 3.43-21.329 8.959l-112.645 115.205c-4.891 5.702-7.869 13.17-7.869 21.333s2.977 15.632 7.906 21.377l-0.037-0.044 113.067 128c5.425 5.534 12.979 8.964 21.333 8.964s15.908-3.43 21.329-8.959l0.005-0.005c5.585-5.878 9.021-13.844 9.021-22.613s-3.436-16.736-9.034-22.627l0.013 0.014-60.16-64.853h421.12c89.015-1.902 160.447-74.512 160.447-163.805 0-0.913-0.007-1.823-0.022-2.732l0.002 0.137v-109.227c0.002-0.13 0.003-0.284 0.003-0.438 0-17.138-13.655-31.088-30.679-31.561l-0.044-0.001z","M849.92 222.293l-119.040-122.027c-5.473-5.43-13.011-8.786-21.333-8.786s-15.86 3.356-21.335 8.788l0.002-0.002c-5.585 5.878-9.021 13.844-9.021 22.613s3.436 16.736 9.034 22.627l-0.013-0.014 62.72 64.427h-421.12c-88.409 2.366-159.175 74.598-159.175 163.358 0 1.069 0.010 2.137 0.031 3.201l-0.002-0.159v103.253c0 16.966 13.754 30.72 30.72 30.72s30.72-13.754 30.72-30.72v-103.253c-0.009-0.512-0.015-1.116-0.015-1.721 0-55.016 44.123-99.728 98.912-100.678l0.089-0.001h426.667l-62.293 64c-5.682 5.835-9.186 13.815-9.186 22.613s3.504 16.778 9.193 22.62l-0.007-0.007c5.459 5.785 13.179 9.387 21.739 9.387 0.007 0 0.015-0 0.022-0l-0.001 0c7.692-0.257 14.587-3.47 19.626-8.532l0.001-0.001 113.067-115.2c5.528-5.906 8.932-13.859 8.96-22.608l0-0.006c0.004-0.199 0.006-0.434 0.006-0.669 0-8.954-3.405-17.113-8.992-23.252l0.025 0.028z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["arrows-loop"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5901,"id":490,"name":"arrows-loop","prevSize":32,"code":59829,"codes":[59829,59830]},"setIdx":0,"setId":0,"iconIdx":82},{"icon":{"paths":["M857.6 675.84c56.32-45.227 49.92-110.507 49.067-174.933-4.433-72.344-33.98-137.041-79.943-186.196l0.157 0.169c-41.147-48.748-91.96-87.953-149.638-114.927l-2.682-1.126c-50.586-17.862-108.92-28.182-169.664-28.182-1.703 0-3.403 0.008-5.102 0.024l0.26-0.002c-9.706-0.763-21.017-1.198-32.429-1.198-102.833 0-197.416 35.319-272.281 94.489l0.924-0.704c-68.267 55.467-110.933 152.747-52.907 232.107 21.383 23.691 49 41.368 80.269 50.468l1.224 0.305c18.797 7.023 40.517 11.087 63.186 11.087 10.837 0 21.457-0.929 31.785-2.711l-1.104 0.158c-3.537 10.842-5.577 23.319-5.577 36.271 0 26.424 8.488 50.866 22.886 70.747l-0.243-0.352c22.59 26.219 55.836 42.716 92.935 42.716 1.228 0 2.452-0.018 3.671-0.054l-0.179 0.004c10.467-0.161 20.416-2.182 29.595-5.745l-0.582 0.199c9.102-4.941 16.631-9.606 23.887-14.636l-0.847 0.556c25.625-11.762 55.593-18.619 87.164-18.619 16.901 0 33.342 1.965 49.109 5.68l-1.446-0.287c44.478 10.756 100.202 20.504 156.894 27.078l6.946 0.655c5.515 0.918 11.869 1.443 18.347 1.443s12.832-0.525 19.024-1.534l-0.677 0.091c14.715-5.382 27.35-13.212 38.047-23.108l-0.074 0.068z","M803.84 698.88c-2.555 21.171-9.050 40.366-18.745 57.512l0.398-0.765c-13.227 24.32-39.253 32.427-58.88 49.92-26.027 24.32-20.48 66.133-18.773 97.707 0.059 0.864 0.092 1.872 0.092 2.888 0 6.68-1.448 13.022-4.048 18.728l0.116-0.283c-5.665 7.486-14.556 12.273-24.564 12.273-5.385 0-10.446-1.385-14.847-3.819l0.158 0.080c-12.581-7.836-22.513-18.865-28.815-31.969l-0.198-0.458c-11.093-20.053-20.053-42.667-32.427-60.16-29.183-34.97-64.633-63.607-104.783-84.444l-1.883-0.889c-19.104-14.044-33.244-33.855-39.918-56.84l-0.189-0.76h4.693c9.102-4.941 16.631-9.606 23.887-14.636l-0.847 0.556c25.625-11.762 55.593-18.619 87.164-18.619 16.901 0 33.342 1.965 49.109 5.68l-1.446-0.287c44.478 10.756 100.202 20.504 156.894 27.078l6.946 0.655c5.219 0.566 11.272 0.889 17.4 0.889 1.233 0 2.463-0.013 3.689-0.039l-0.183 0.003z","M388.693 370.773c0 44.772-36.295 81.067-81.067 81.067s-81.067-36.295-81.067-81.067c0-44.772 36.295-81.067 81.067-81.067s81.067 36.295 81.067 81.067z","M593.067 491.947c0 44.772-36.295 81.067-81.067 81.067s-81.067-36.295-81.067-81.067c0-44.772 36.295-81.067 81.067-81.067s81.067 36.295 81.067 81.067z","M835.84 532.48c0 44.772-36.295 81.067-81.067 81.067s-81.067-36.295-81.067-81.067c0-44.772 36.295-81.067 81.067-81.067s81.067 36.295 81.067 81.067z","M307.627 391.68c-17.665-0.011-31.98-14.334-31.98-32 0-8.619 3.408-16.443 8.95-22.197l-0.010 0.010 114.347-119.893v-98.56c0-17.673 14.327-32 32-32s32 14.327 32 32v0 111.36c0.002 0.127 0.003 0.277 0.003 0.428 0 8.413-3.246 16.067-8.554 21.779l0.018-0.020-123.733 131.413c-5.623 4.813-12.984 7.742-21.028 7.742-0.708 0-1.41-0.023-2.107-0.067l0.095 0.005z","M512 521.387c-17.224-0.572-30.969-14.673-30.969-31.983 0-7.627 2.669-14.632 7.123-20.13l-0.047 0.060 72.96-85.333v-264.96c0-17.673 14.327-32 32-32s32 14.327 32 32v0 278.613c-0.111 8.187-3.162 15.641-8.141 21.374l0.035-0.041-81.067 93.013c-5.665 5.817-13.573 9.426-22.323 9.426-0.552 0-1.101-0.014-1.646-0.043l0.076 0.003z","M754.773 564.48c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-413.44c0-17.673 14.327-32 32-32s32 14.327 32 32v0 413.44c0 17.673-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["artificial-intelligence"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5902,"id":489,"name":"artificial-intelligence","prevSize":32,"code":59831,"codes":[59831,59832,59833,59834,59835,59836,59837,59838]},"setIdx":0,"setId":0,"iconIdx":83},{"icon":{"paths":["M912.64 449.28l-59.307-60.16c-7.905-7.75-12.805-18.541-12.805-30.475 0-0.236 0.002-0.472 0.006-0.707l-0 0.036v-85.333c-0.24-48.831-39.881-88.324-88.746-88.324-0.3 0-0.6 0.001-0.9 0.004l0.046-0h-85.333c-0.2 0.003-0.435 0.005-0.671 0.005-11.935 0-22.725-4.9-30.468-12.798l-0.007-0.007-59.733-60.16c-16.057-16.040-38.23-25.96-62.72-25.96s-46.663 9.92-62.721 25.961l0.001-0.001-60.16 59.307c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0h-85.333c-48.831 0.24-88.324 39.881-88.324 88.746 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v85.333c0.003 0.2 0.005 0.435 0.005 0.671 0 11.935-4.9 22.725-12.798 30.468l-0.007 0.007-60.16 59.733c-16.040 16.057-25.96 38.23-25.96 62.72s9.92 46.663 25.961 62.721l-0.001-0.001 59.307 60.16c7.905 7.75 12.805 18.541 12.805 30.475 0 0.236-0.002 0.472-0.006 0.707l0-0.036v85.333c0.24 48.831 39.881 88.324 88.746 88.324 0.3 0 0.6-0.001 0.9-0.004l-0.046 0h85.333c0.2-0.003 0.435-0.005 0.671-0.005 11.935 0 22.725 4.9 30.468 12.798l0.007 0.007 60.16 60.16c16.057 16.040 38.23 25.96 62.72 25.96s46.663-9.92 62.721-25.961l-0.001 0.001 59.733-59.307c7.75-7.905 18.541-12.805 30.475-12.805 0.236 0 0.472 0.002 0.707 0.006l-0.036-0h85.333c49.013-0 88.747-39.733 88.747-88.747v0-85.333c-0.003-0.2-0.005-0.435-0.005-0.671 0-11.935 4.9-22.725 12.798-30.468l0.007-0.007 60.16-60.16c16.041-16.057 25.961-38.23 25.961-62.721 0-24.702-10.092-47.047-26.379-63.137l-0.009-0.009z","M661.76 704.427c-12.711-0.080-23.679-7.46-28.929-18.156l-0.085-0.191-120.747-259.413-120.747 259.413c-5.228 10.98-16.235 18.434-28.982 18.434-4.972 0-9.679-1.134-13.876-3.157l0.192 0.083c-11.047-5.077-18.58-16.047-18.58-28.776 0-5.057 1.189-9.836 3.303-14.074l-0.083 0.183 149.76-321.28c5.815-10.207 16.624-16.977 29.013-16.977s23.198 6.77 28.927 16.813l0.086 0.164 149.76 320.853c1.94 4.006 3.074 8.713 3.074 13.685 0 12.747-7.454 23.754-18.24 28.899l-0.193 0.083c-3.963 2.103-8.655 3.359-13.636 3.413l-0.017 0z","M608 589.653h-192.427c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h192.427c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["auto-brightness"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5903,"id":488,"name":"auto-brightness","prevSize":32,"code":59839,"codes":[59839,59840,59841]},"setIdx":0,"setId":0,"iconIdx":84},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M469.333 688.213c-15.657 26.928-44.355 44.753-77.22 44.8l-0.007 0h-120.32c-0.231 0.011-0.501 0.017-0.772 0.017-9.661 0-17.493-7.832-17.493-17.493 0-3.314 0.922-6.413 2.523-9.055l-0.044 0.078 122.88-213.333 114.773-198.4c4.954-8.028 13.702-13.297 23.68-13.297s18.726 5.27 23.611 13.178l0.069 0.119 51.627 89.173c7.435 12.739 11.824 28.044 11.824 44.373s-4.389 31.634-12.053 44.798l0.229-0.425-66.987 116.053zM608 640l-37.12 64c-2.967 4.305-4.74 9.633-4.74 15.375 0 15.081 12.226 27.307 27.307 27.307 0.316 0 0.632-0.005 0.945-0.016l-0.046 0.001h148.053c0.268 0.009 0.583 0.015 0.9 0.015 15.081 0 27.307-12.226 27.307-27.307 0-5.742-1.772-11.070-4.8-15.467l0.060 0.092-37.12-64-36.693-64c-4.849-8.046-13.539-13.344-23.467-13.344s-18.618 5.298-23.398 13.221l-0.069 0.123z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["avalanche"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5904,"id":487,"name":"avalanche","prevSize":32,"code":59842,"codes":[59842,59843]},"setIdx":0,"setId":0,"iconIdx":85},{"icon":{"paths":["M451.84 923.307l-213.333-119.893c-38.026-21.854-63.288-62.132-63.573-108.333l-0-0.040v-243.627c-0.003-0.299-0.004-0.652-0.004-1.005 0-45.908 24.168-86.171 60.474-108.76l0.543-0.315 210.347-123.733c18.102-10.403 39.801-16.54 62.933-16.54s44.831 6.136 63.558 16.87l-0.625-0.33 213.333 119.893c37.786 22.295 62.898 62.541 63.572 108.704l0.001 0.096 2.133 243.627c0 0.018 0 0.040 0 0.061 0 46.257-24.537 86.784-61.306 109.273l-0.561 0.319-210.347 123.307c-18.28 11.006-40.348 17.517-63.936 17.517-23.292 0-45.102-6.348-63.793-17.409l0.582 0.319z","M446.293 218.027c18.102-10.403 39.801-16.54 62.933-16.54s44.831 6.136 63.558 16.87l-0.625-0.33 187.733 106.24v-114.773c-0.724-68.726-56.605-124.16-125.433-124.16-0.002 0-0.005 0-0.007 0l-244.906-0c-0.002-0-0.004-0-0.007-0-68.829 0-124.71 55.434-125.433 124.091l-0.001 0.069v115.627z","M563.627 682.667l-42.667-14.933c-2.983-1.115-6.429-1.76-10.027-1.76s-7.044 0.645-10.23 1.826l0.204-0.066-42.667 14.507c-2.927 1.053-6.305 1.662-9.824 1.662-16.495 0-29.867-13.372-29.867-29.867 0-0.284 0.004-0.568 0.012-0.85l-0.001 0.042v-44.8c0-0.042 0-0.092 0-0.142 0-7.194-2.406-13.825-6.457-19.134l0.056 0.077-24.747-34.56c-3.878-4.989-6.217-11.341-6.217-18.24 0-13.541 9.012-24.978 21.366-28.639l0.211-0.054 42.667-12.8c6.737-1.928 12.336-6.005 16.151-11.426l0.062-0.094 25.6-36.693c5.444-7.977 14.492-13.145 24.747-13.145s19.302 5.168 24.68 13.042l0.066 0.103 25.173 37.12c3.8 5.594 9.43 9.699 16.016 11.475l0.197 0.045 42.667 13.227c12.386 3.828 21.23 15.176 21.23 28.591 0 6.944-2.37 13.335-6.346 18.408l0.049-0.065-27.307 35.413c-3.755 4.792-6.021 10.906-6.021 17.55 0 0.581 0.017 1.157 0.051 1.729l-0.004-0.079v42.667c0.020 0.414 0.032 0.898 0.032 1.386 0 16.495-13.372 29.867-29.867 29.867-3.211 0-6.304-0.507-9.204-1.445l0.211 0.059z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["award"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5905,"id":486,"name":"award","prevSize":32,"code":59844,"codes":[59844,59845,59846]},"setIdx":0,"setId":0,"iconIdx":86},{"icon":{"paths":["M327.68 125.013h369.067c133.373-0 241.493 108.12 241.493 241.493v290.56c0 133.373-108.12 241.493-241.493 241.493h-369.067c-133.373 0-241.493-108.12-241.493-241.493v-290.56c0-133.373 108.12-241.493 241.493-241.493z","M459.947 399.36c0 61.031-49.284 110.507-110.080 110.507s-110.080-49.476-110.080-110.507c0-61.031 49.284-110.507 110.080-110.507s110.080 49.476 110.080 110.507z","M512.853 646.827c0 59.382-72.972 107.52-162.987 107.52s-162.987-48.138-162.987-107.52c0-59.382 72.972-107.52 162.987-107.52s162.987 48.138 162.987 107.52z","M790.187 635.733h-150.187c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h148.907c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M806.4 471.893h-225.28c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h225.28c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["badge"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5906,"id":485,"name":"badge","prevSize":32,"code":59847,"codes":[59847,59848,59849,59850,59851]},"setIdx":0,"setId":0,"iconIdx":87},{"icon":{"paths":["M298.667 930.56c-86.789-48.464-156.502-118.314-203.448-202.583l-1.352-2.644c-5.463-9.339-8.688-20.563-8.688-32.54 0-17.931 7.229-34.173 18.932-45.971l-0.004 0.004 541.013-542.72c11.671-11.734 27.829-18.996 45.682-18.996 12.814 0 24.754 3.741 34.787 10.19l-0.256-0.154c84.592 50.567 153.488 119.19 202.909 200.91l1.465 2.61c5.657 9.468 9.002 20.883 9.002 33.080 0 17.875-7.184 34.071-18.822 45.86l0.007-0.007-542.72 542.293c-11.821 11.861-28.173 19.199-46.239 19.199-11.867 0-22.994-3.166-32.583-8.7l0.315 0.168z","M679.68 495.787c-7.686 7.52-18.216 12.16-29.829 12.16-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c11.614 0 22.144 4.64 29.837 12.168l-0.008-0.008c7.924 7.753 12.837 18.556 12.837 30.507s-4.913 22.753-12.83 30.499l-0.008 0.008zM588.373 343.467c-7.686-7.52-18.216-12.16-29.829-12.16-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c11.614 0 22.144-4.64 29.837-12.168l-0.008 0.008c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-0.008-0.008zM588.373 526.080c-7.686-7.52-18.216-12.16-29.829-12.16-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c11.614 0 22.144-4.64 29.837-12.168l-0.008 0.008c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-0.008-0.008zM497.067 434.773c-7.686-7.52-18.216-12.16-29.829-12.16-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c11.614 0 22.144-4.64 29.837-12.168l-0.008 0.008c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-0.008-0.008zM497.067 617.387c-7.686-7.52-18.216-12.16-29.829-12.16-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c11.614 0 22.144-4.64 29.837-12.168l-0.008 0.008c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-0.008-0.008zM405.76 526.080c-7.686-7.52-18.216-12.16-29.829-12.16-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c11.614 0 22.144-4.64 29.837-12.168l-0.008 0.008c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-0.008-0.008z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bandage"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5907,"id":484,"name":"bandage","prevSize":32,"code":59852,"codes":[59852,59853]},"setIdx":0,"setId":0,"iconIdx":88},{"icon":{"paths":["M914.347 308.907l-330.24-203.093c-20.505-12.833-45.417-20.443-72.107-20.443s-51.602 7.611-72.685 20.78l0.578-0.337-330.24 203.093c-46.507 29.013-22.187 90.453 35.84 90.453h52.907v380.16c-0.002 0.127-0.002 0.277-0.002 0.427 0 20.501 16.619 37.12 37.12 37.12 0.001 0 0.002-0 0.003-0l63.147 0c0.128 0.002 0.278 0.002 0.429 0.002 20.501 0 37.12-16.619 37.12-37.12 0-0.151-0.001-0.302-0.003-0.452l0 0.023v-380.16h104.533v380.16c-0.002 0.127-0.002 0.277-0.002 0.427 0 20.501 16.619 37.12 37.12 37.12 0.001 0 0.002-0 0.003-0l64.853 0c0.001 0 0.002 0 0.002 0 20.501 0 37.12-16.619 37.12-37.12 0-0.15-0.001-0.3-0.003-0.449l0 0.023v-380.16h102.827v380.16c-0.002 0.127-0.002 0.277-0.002 0.427 0 20.501 16.619 37.12 37.12 37.12 0.001 0 0.002-0 0.003-0l65.28 0c0.001 0 0.002 0 0.002 0 20.501 0 37.12-16.619 37.12-37.12 0-0.15-0.001-0.3-0.003-0.449l0 0.023v-380.16h58.027c58.453 0 80.64-61.44 34.133-90.453z","M913.92 971.52h-803.84c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h803.84c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bank"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5908,"id":483,"name":"bank","prevSize":32,"code":59854,"codes":[59854,59855]},"setIdx":0,"setId":0,"iconIdx":89},{"icon":{"paths":["M269.653 712.107c-17.673 0-32-14.327-32-32v0-328.533c0-17.673 14.327-32 32-32s32 14.327 32 32v0 328.533c0.002 0.128 0.003 0.279 0.003 0.43 0 17.437-14.136 31.573-31.573 31.573-0.151 0-0.302-0.001-0.452-0.003l0.023 0z","M398.080 440.32c-17.673 0-32-14.327-32-32v0-56.747c0-17.673 14.327-32 32-32s32 14.327 32 32v0 56.747c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M398.080 712.107c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-164.267c0-17.673 14.327-32 32-32s32 14.327 32 32v0 164.267c0 17.673-14.327 32-32 32v0z","M654.507 702.72c-17.673 0-32-14.327-32-32v0-56.32c0-17.673 14.327-32 32-32s32 14.327 32 32v0 56.32c0 17.673-14.327 32-32 32v0z","M654.507 538.453c-17.673 0-32-14.327-32-32v0-165.12c0-17.673 14.327-32 32-32s32 14.327 32 32v0 164.267c0.007 0.254 0.011 0.553 0.011 0.853 0 17.673-14.327 32-32 32-0.004 0-0.008-0-0.012-0l0.001 0z","M526.080 712.107c-17.673 0-32-14.327-32-32v0-328.533c0-17.673 14.327-32 32-32s32 14.327 32 32v0 328.533c0.002 0.128 0.003 0.279 0.003 0.43 0 17.437-14.136 31.573-31.573 31.573-0.151 0-0.302-0.001-0.452-0.003l0.023 0z","M782.933 712.107c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-328.533c0-17.673 14.327-32 32-32s32 14.327 32 32v0 328.533c0 17.673-14.327 32-32 32v0z","M314.027 177.493h395.947c126.304-0 228.693 102.389 228.693 228.693v235.093c0 126.304-102.389 228.693-228.693 228.693h-395.947c-126.304 0-228.693-102.389-228.693-228.693v-235.093c0-126.304 102.389-228.693 228.693-228.693z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["barcode"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5909,"id":482,"name":"barcode","prevSize":32,"code":59856,"codes":[59856,59857,59858,59859,59860,59861,59862,59863]},"setIdx":0,"setId":0,"iconIdx":90},{"icon":{"paths":["M850.773 237.227h-677.547c-48.805 1.179-87.919 41.023-87.919 90.002 0 0.759 0.009 1.515 0.028 2.27l-0.002-0.112c-0.016 0.643-0.026 1.399-0.026 2.158 0 48.979 39.114 88.823 87.81 90l0.109 0.002h677.547c48.805-1.179 87.919-41.023 87.919-90.002 0-0.759-0.009-1.515-0.028-2.27l0.002 0.112c0.016-0.643 0.026-1.399 0.026-2.158 0-48.979-39.114-88.823-87.81-90l-0.109-0.002z","M763.733 290.56c-0.014 0-0.031 0-0.047 0-11.275 0-21.17-5.91-26.756-14.802l-0.077-0.131-83.2-128c-2.822-4.634-4.493-10.239-4.493-16.233 0-11.014 5.639-20.711 14.188-26.36l0.118-0.073c4.644-2.721 10.226-4.327 16.184-4.327 10.895 0 20.536 5.374 26.416 13.615l0.067 0.099 83.2 130.133c2.732 4.614 4.346 10.169 4.346 16.101 0 11.019-5.57 20.738-14.047 26.494l-0.112 0.072c-4.293 2.164-9.357 3.431-14.716 3.431-0.376 0-0.751-0.006-1.125-0.019l0.054 0.001z","M256 290.987c-0.254 0.008-0.552 0.012-0.851 0.012-6.016 0-11.623-1.754-16.336-4.778l0.121 0.072c-8.59-5.828-14.159-15.546-14.159-26.565 0-5.932 1.614-11.488 4.427-16.25l-0.081 0.149 85.333-128c5.723-8.667 15.419-14.306 26.433-14.306 5.995 0 11.599 1.671 16.373 4.572l-0.14-0.079c8.516 5.928 14.019 15.669 14.019 26.696 0 5.871-1.561 11.378-4.289 16.129l0.084-0.158-83.2 128c-5.703 8.793-15.47 14.528-26.577 14.528-0.407 0-0.812-0.008-1.215-0.023l0.058 0.002z","M173.227 421.547l64 398.080c11.327 67.145 68.475 117.837 137.688 119.038l0.126 0.002h277.76c69.775-1.132 127.209-52.542 137.71-119.521l0.103-0.799 60.16-396.8zM675.413 623.36l-155.307 141.653c-5.743 5.035-13.318 8.107-21.609 8.107-0.053 0-0.106-0-0.159-0l0.008 0c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003-73.387-73.387c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.741-5.887 13.751-9.539 22.613-9.539s16.872 3.652 22.607 9.532l0.006 0.007 52.053 51.627 132.693-120.747c5.696-5.071 13.246-8.17 21.519-8.17 9.348 0 17.772 3.956 23.69 10.285l0.017 0.018c5.173 5.664 8.342 13.236 8.342 21.548 0 9.372-4.029 17.804-10.45 23.656l-0.025 0.023z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["basket-ok"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5910,"id":481,"name":"basket-ok","prevSize":32,"code":59864,"codes":[59864,59865,59866,59867]},"setIdx":0,"setId":0,"iconIdx":91},{"icon":{"paths":["M850.773 237.227h-677.547c-48.805 1.179-87.919 41.023-87.919 90.002 0 0.759 0.009 1.515 0.028 2.27l-0.002-0.112c-0.016 0.643-0.026 1.399-0.026 2.158 0 48.979 39.114 88.823 87.81 90l0.109 0.002h677.547c48.805-1.179 87.919-41.023 87.919-90.002 0-0.759-0.009-1.515-0.028-2.27l0.002 0.112c0.016-0.643 0.026-1.399 0.026-2.158 0-48.979-39.114-88.823-87.81-90l-0.109-0.002z","M173.227 421.547l64 398.080c11.327 67.145 68.475 117.837 137.688 119.038l0.126 0.002h277.76c69.775-1.132 127.209-52.542 137.71-119.521l0.103-0.799 60.16-396.8zM444.587 741.12c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-154.027c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM642.987 741.12c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-154.027c0-17.673 14.327-32 32-32s32 14.327 32 32v0z","M763.733 290.56c-0.014 0-0.031 0-0.047 0-11.275 0-21.17-5.91-26.756-14.802l-0.077-0.131-83.2-128c-2.822-4.634-4.493-10.239-4.493-16.233 0-11.014 5.639-20.711 14.188-26.36l0.118-0.073c4.644-2.721 10.226-4.327 16.184-4.327 10.895 0 20.536 5.374 26.416 13.615l0.067 0.099 83.2 130.133c2.732 4.614 4.346 10.169 4.346 16.101 0 11.019-5.57 20.738-14.047 26.494l-0.112 0.072c-4.293 2.164-9.357 3.431-14.716 3.431-0.376 0-0.751-0.006-1.125-0.019l0.054 0.001z","M256 290.987c-0.254 0.008-0.552 0.012-0.851 0.012-6.016 0-11.623-1.754-16.336-4.778l0.121 0.072c-8.59-5.828-14.159-15.546-14.159-26.565 0-5.932 1.614-11.488 4.427-16.25l-0.081 0.149 85.333-128c5.723-8.667 15.419-14.306 26.433-14.306 5.995 0 11.599 1.671 16.373 4.572l-0.14-0.079c8.516 5.928 14.019 15.669 14.019 26.696 0 5.871-1.561 11.378-4.289 16.129l0.084-0.158-83.2 128c-5.703 8.793-15.47 14.528-26.577 14.528-0.407 0-0.812-0.008-1.215-0.023l0.058 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["basket"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5911,"id":480,"name":"basket","prevSize":32,"code":59868,"codes":[59868,59869,59870,59871]},"setIdx":0,"setId":0,"iconIdx":92},{"icon":{"paths":["M477.867 321.28c16.052 20.563 25.738 46.776 25.738 75.252 0 2.045-0.050 4.079-0.149 6.099l0.011-0.285c0.024 0.893 0.038 1.945 0.038 2.999 0 27.988-9.659 53.72-25.825 74.044l0.187-0.243c-9.878 13.031-22.827 23.239-37.793 29.636l-0.607 0.231c25.134 8.089 45.788 24.183 59.473 45.226l0.261 0.428c13.397 21.755 21.334 48.113 21.334 76.326 0 0.167-0 0.333-0.001 0.5l0-0.026c0.023 0.919 0.036 2.002 0.036 3.088 0 29.352-9.623 56.456-25.886 78.33l0.249-0.351c-9.449 17.333-22.399 31.647-37.993 42.401l-0.407 0.265c-16.882 12.27-36.993 21.223-58.791 25.448l-0.943 0.152c-21.585 4.923-46.551 8.004-72.144 8.527l-0.389 0.006h-196.267c-0.792 0.056-1.716 0.087-2.647 0.087-22.15 0-40.107-17.956-40.107-40.107 0-0.932 0.032-1.856 0.094-2.771l-0.007 0.124v-433.92c-0.056-0.792-0.087-1.716-0.087-2.647 0-22.15 17.956-40.107 40.107-40.107 0.932 0 1.856 0.032 2.771 0.094l-0.124-0.007h213.333c4.519-0.432 9.771-0.678 15.081-0.678 47.72 0 90.796 19.884 121.395 51.818l0.057 0.060zM192 359.68v115.2h128c1.378 0.064 2.994 0.1 4.618 0.1 18.636 0 36.155-4.779 51.4-13.178l-0.551 0.278c13.091-10.163 21.435-25.902 21.435-43.59 0-1.176-0.037-2.344-0.11-3.502l0.008 0.158c0.279-1.832 0.438-3.946 0.438-6.097 0-19.154-12.622-35.361-30.002-40.756l-0.302-0.081c-19.156-5.261-41.179-8.365-63.9-8.533l-0.1-0.001zM192 560.213v140.8h128c19.826-0.081 38.895-3.196 56.808-8.902l-1.341 0.369c20.643-12.521 34.226-34.872 34.226-60.395 0-1.268-0.034-2.528-0.1-3.78l0.007 0.175c0.054-0.927 0.084-2.012 0.084-3.104 0-23.271-13.903-43.294-33.855-52.218l-0.363-0.145c-15.263-5.385-32.863-8.508-51.189-8.533l-0.011-0zM836.267 410.88c27.764 12.65 50.766 31.547 67.932 54.987l0.335 0.48c16.072 22.794 26.804 50.433 29.808 80.351l0.058 0.716c0 8.533 4.267 21.333 4.267 34.133 0.056 0.792 0.087 1.716 0.087 2.647 0 22.15-17.956 40.107-40.107 40.107-0.932 0-1.856-0.032-2.771-0.094l0.124 0.007h-238.933c-0.043 1.049-0.067 2.28-0.067 3.516 0 32.488 16.889 61.032 42.366 77.33l0.368 0.22c15.571 8.078 33.996 12.816 53.527 12.816 0.682 0 1.363-0.006 2.042-0.017l-0.102 0.001c24.679-0.947 46.962-10.487 64.106-25.693l-0.106 0.093c11.954-10.75 27.851-17.325 45.283-17.325 2.083 0 4.144 0.094 6.18 0.278l-0.262-0.019h25.6c14.664 0.236 26.46 12.179 26.46 26.877 0 5.934-1.923 11.419-5.179 15.865l0.053-0.076c-37.945 51.593-98.239 84.834-166.321 85.333l-0.079 0c-0.15 0-0.329 0.001-0.507 0.001-51.536 0-98.944-17.673-136.494-47.29l0.468 0.356c-37.246-33.781-60.541-82.363-60.541-136.385 0-6.062 0.293-12.055 0.866-17.966l-0.059 0.751c-0.542-5.4-0.851-11.67-0.851-18.013 0-105.567 85.579-191.147 191.147-191.147 2.1 0 4.191 0.034 6.274 0.101l-0.304-0.008c1.837-0.063 3.996-0.099 6.164-0.099 28.7 0 55.923 6.325 80.35 17.658l-1.181-0.492zM682.667 496.213c-15.526 15.223-25.256 36.31-25.599 59.669l-0.001 0.064h174.933c-0.344-23.424-10.074-44.51-25.586-59.72l-0.014-0.014c-16.365-12.779-37.066-20.708-59.593-21.33l-0.14-0.003c-0.169-0.001-0.369-0.002-0.569-0.002-23.948 0-46.022 8.020-63.684 21.521l0.253-0.186z","M663.467 338.347h162.133c18.851 0 34.133-15.282 34.133-34.133s-15.282-34.133-34.133-34.133h-162.133c-0.128-0.002-0.278-0.003-0.429-0.003-18.616 0-33.707 15.091-33.707 33.707 0 0.151 0.001 0.302 0.003 0.452l-0-0.023c4.267 21.333 17.067 34.133 34.133 34.133z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["behance"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5912,"id":479,"name":"behance","prevSize":32,"code":59872,"codes":[59872,59873]},"setIdx":0,"setId":0,"iconIdx":93},{"icon":{"paths":["M768 262.827h-512c-1.904 69.209-58.462 124.587-127.954 124.587-0.016 0-0.032-0-0.048-0l0.003 0v249.173c0.013-0 0.029-0 0.046-0 69.492 0 126.050 55.378 127.951 124.411l0.004 0.176h512c1.904-69.209 58.462-124.587 127.954-124.587 0.016 0 0.032 0 0.048 0l-0.003-0v-249.173c-0.013 0-0.029 0-0.046 0-69.492 0-126.050-55.378-127.951-124.411l-0.004-0.176z","M810.667 262.827h-42.667c1.904 69.209 58.462 124.587 127.954 124.587 0.016 0 0.032-0 0.048-0l-0.003 0v-23.893c0.139-1.92 0.218-4.16 0.218-6.418 0-49.084-37.334-89.447-85.154-94.243l-0.397-0.032z","M256 262.827h-42.667c-48.217 4.828-85.551 45.192-85.551 94.275 0 2.258 0.079 4.498 0.234 6.717l-0.017-0.299v23.893c0.013 0 0.029 0 0.046 0 69.492 0 126.050-55.378 127.951-124.411l0.004-0.176z","M768 761.173h42.667c48.217-4.828 85.551-45.192 85.551-94.275 0-2.258-0.079-4.498-0.234-6.717l0.017 0.299v-23.893c-0.013-0-0.029-0-0.046-0-69.492 0-126.050 55.378-127.951 124.411l-0.004 0.176z","M128 636.587v23.893c-0.139 1.92-0.218 4.16-0.218 6.418 0 49.084 37.334 89.447 85.154 94.243l0.397 0.032h42.667c-1.904-69.209-58.462-124.587-127.954-124.587-0.016 0-0.032 0-0.048 0l0.003-0z","M640 512c0 78.469-57.308 142.080-128 142.080s-128-63.611-128-142.080c0-78.469 57.308-142.080 128-142.080s128 63.611 128 142.080z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bill"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5913,"id":478,"name":"bill","prevSize":32,"code":59874,"codes":[59874,59875,59876,59877,59878,59879]},"setIdx":0,"setId":0,"iconIdx":94},{"icon":{"paths":["M863.268 439.792l54.004 54.004c13.83 13.83 13.83 36.252 0 50.082l-366.262 366.262c-13.83 13.83-36.252 13.83-50.082 0l-54.004-54.004c-13.83-13.83-13.83-36.252-0-50.082l366.262-366.262c13.83-13.83 36.252-13.83 50.082 0z","M696.743 272.859l54.004 54.004c13.83 13.83 13.83 36.252 0 50.082l-366.262 366.262c-13.83 13.83-36.252 13.83-50.082 0l-54.004-54.004c-13.83-13.83-13.83-36.252-0-50.082l366.262-366.262c13.83-13.83 36.252-13.83 50.082 0z","M280.376 306.619l199.725-199.725c13.83-13.83 36.252-13.83 50.082-0l54.004 54.004c13.83 13.83 13.83 36.252-0 50.082l-199.725 199.725c-13.83 13.83-36.252 13.83-50.082 0l-54.004-54.004c-13.83-13.83-13.83-36.252 0-50.082z","M113.725 472.825l54.004-54.004c13.83-13.83 36.252-13.83 50.082 0l54.004 54.004c13.83 13.83 13.83 36.252 0 50.082l-54.004 54.004c-13.83 13.83-36.252 13.83-50.082 0l-54.004-54.004c-13.83-13.83-13.83-36.252 0-50.082z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["binance-usd"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5914,"id":477,"name":"binance-usd","prevSize":32,"code":59880,"codes":[59880,59881,59882,59883]},"setIdx":0,"setId":0,"iconIdx":95},{"icon":{"paths":["M597.333 532.907l-66.133 66.987c-5.318 5.757-12.906 9.35-21.333 9.35s-16.015-3.593-21.315-9.33l-0.018-0.020-61.867-66.987c-5.643-5.374-9.152-12.944-9.152-21.333s3.509-15.959 9.14-21.322l0.012-0.011 64-66.133c5.318-5.757 12.906-9.35 21.333-9.35s16.015 3.593 21.315 9.33l0.018 0.020 64 66.987c5.381 5.336 8.713 12.732 8.713 20.907s-3.331 15.57-8.711 20.905l-0.002 0.002z","M267.52 532.907l-66.133 66.56c-5.259 5.877-12.866 9.558-21.333 9.558s-16.075-3.681-21.309-9.531l-0.024-0.027-64.853-66.56c-5.43-5.473-8.786-13.011-8.786-21.333s3.356-15.86 8.788-21.335l-0.002 0.002 66.133-66.56c5.318-5.757 12.906-9.35 21.333-9.35s16.015 3.593 21.315 9.33l0.018 0.020 64.853 66.987c5.305 5.45 8.576 12.903 8.576 21.12s-3.271 15.67-8.583 21.127l0.007-0.007z","M928.853 532.907l-66.133 66.56c-5.318 5.757-12.906 9.35-21.333 9.35s-16.015-3.593-21.315-9.33l-0.018-0.020-64.853-66.56c-5.43-5.473-8.786-13.011-8.786-21.333s3.356-15.86 8.788-21.335l-0.002 0.002 66.133-66.987c5.318-5.757 12.906-9.35 21.333-9.35s16.015 3.593 21.315 9.33l0.018 0.020 66.133 66.56c5.083 5.465 8.202 12.817 8.202 20.897 0 8.722-3.634 16.594-9.471 22.186l-0.011 0.011z","M532.053 267.093l133.547 135.253c5.374 5.643 12.944 9.152 21.333 9.152s15.959-3.509 21.322-9.14l0.011-0.012 46.080-46.933c5.43-5.473 8.786-13.011 8.786-21.333s-3.356-15.86-8.788-21.335l0.002 0.002-213.333-215.893c-7.562-6.936-17.684-11.186-28.8-11.186s-21.238 4.251-28.831 11.215l0.031-0.028-213.333 216.32c-5.43 5.473-8.786 13.011-8.786 21.333s3.356 15.86 8.788 21.335l-0.002-0.002 45.227 46.507c5.374 5.643 12.944 9.152 21.333 9.152s15.959-3.509 21.322-9.14l0.011-0.012 132.693-135.253c5.267-5.357 12.593-8.677 20.693-8.677s15.426 3.32 20.689 8.673l0.004 0.004z","M666.027 621.227l-133.973 135.68c-5.318 5.757-12.906 9.35-21.333 9.35s-16.015-3.593-21.315-9.33l-0.018-0.020-132.693-135.68c-5.318-5.757-12.906-9.35-21.333-9.35s-16.015 3.593-21.315 9.33l-0.018 0.020-45.227 46.507c-5.43 5.473-8.786 13.011-8.786 21.333s3.356 15.86 8.788 21.335l-0.002-0.002 213.333 216.747c7.562 6.936 17.684 11.186 28.8 11.186s21.238-4.251 28.831-11.215l-0.031 0.028 213.333-216.747c5.43-5.473 8.786-13.011 8.786-21.333s-3.356-15.86-8.788-21.335l-46.078-46.505c-5.247-5.229-12.486-8.462-20.48-8.462s-15.233 3.233-20.481 8.463l0.001-0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["binance"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5915,"id":476,"name":"binance","prevSize":32,"code":59884,"codes":[59884,59885,59886,59887,59888]},"setIdx":0,"setId":0,"iconIdx":96},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M700.587 488.96c12.774-18.807 20.418-41.998 20.48-66.971l0-0.016v-6.827c0-66.687-54.060-120.747-120.747-120.747h-35.84v-55.893c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 54.613h-54.187v-56.32c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 55.040h-102.4c-0.001-0-0.002-0-0.003-0-17.523 0-31.757 14.085-31.997 31.551l-0 0.023c-0 0.003-0 0.007-0 0.011 0 17.609 14.036 31.939 31.529 32.414l0.044 0.001h54.613v124.16h-54.613c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h54.613v120.747h-54.613c-17.673-0-32 14.327-32 32s14.327 32 32 32h104.533v57.6c0 17.673 14.327 32 32 32s32-14.327 32-32v0-58.453h54.187v59.307c0 17.673 14.327 32 32 32s32-14.327 32-32v0-59.307h87.893c68.274-0.699 123.35-56.208 123.35-124.581 0-50.929-30.558-94.72-74.34-114.039l-0.797-0.314zM398.080 355.84l201.813 2.56c0-0 0.001-0 0.002-0 31.426 0 56.93 25.355 57.172 56.724l0 0.023v6.827c0 31.576-25.597 57.173-57.173 57.173v0h-201.813zM654.080 663.893h-256v-120.747h256c31.203 2.704 55.507 28.7 55.507 60.373s-24.304 57.669-55.28 60.357l-0.227 0.016z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bitcoin"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5916,"id":475,"name":"bitcoin","prevSize":32,"code":59889,"codes":[59889,59890]},"setIdx":0,"setId":0,"iconIdx":97},{"icon":{"paths":["M691.2 590.933h-147.2v-347.733c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 347.733h-147.2c-11.154 0.204-20.117 9.293-20.117 20.477 0 5.46 2.137 10.421 5.619 14.092l-0.009-0.009 179.627 179.2c3.517 3.786 8.523 6.147 14.080 6.147s10.563-2.361 14.069-6.135l0.011-0.012 179.627-179.2c3.474-3.662 5.611-8.623 5.611-14.083 0-11.183-8.964-20.273-20.098-20.477l-0.019-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-down"]},"attrs":[{}],"properties":{"order":5917,"id":474,"name":"black-down","prevSize":32,"code":59891},"setIdx":0,"setId":0,"iconIdx":98},{"icon":{"paths":["M777.387 480h-347.733v-138.667c0.051-0.588 0.081-1.272 0.081-1.963 0-13.196-10.697-23.893-23.893-23.893-7.639 0-14.441 3.585-18.815 9.164l-0.039 0.052-170.667 170.667c-4.324 4.388-6.994 10.415-6.994 17.067s2.67 12.679 6.997 17.070l-0.003-0.003 170.667 170.667c4.485 5.167 11.062 8.415 18.399 8.415 13.432 0 24.32-10.888 24.32-24.32 0-0.559-0.019-1.114-0.056-1.663l0.004 0.074v-138.667h347.733c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z","M85.333 817.493c-17.673 0-32-14.327-32-32v0-546.987c0-17.673 14.327-32 32-32s32 14.327 32 32v0 546.987c0.002 0.128 0.003 0.279 0.003 0.43 0 17.437-14.136 31.573-31.573 31.573-0.151 0-0.302-0.001-0.452-0.003l0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["black-left-line"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5918,"id":473,"name":"black-left-line","prevSize":32,"code":59892,"codes":[59892,59893]},"setIdx":0,"setId":0,"iconIdx":99},{"icon":{"paths":["M781.653 480h-348.16v-147.2c0.001-0.068 0.001-0.148 0.001-0.229 0-11.075-8.978-20.053-20.053-20.053-5.489 0-10.462 2.205-14.084 5.778l0.002-0.002-179.2 179.627c-3.786 3.517-6.147 8.523-6.147 14.080s2.361 10.563 6.135 14.069l0.012 0.011 179.2 179.627c3.619 3.57 8.593 5.776 14.081 5.776 11.075 0 20.053-8.978 20.053-20.053 0-0.081-0-0.161-0.001-0.241l0 0.012v-147.2h348.16c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-left"]},"attrs":[{}],"properties":{"order":5919,"id":472,"name":"black-left","prevSize":32,"code":59894},"setIdx":0,"setId":0,"iconIdx":100},{"icon":{"paths":["M801.28 509.013l-170.667-170.667c-4.484-5.15-11.050-8.386-18.373-8.386-13.432 0-24.32 10.888-24.32 24.32 0 0.398 0.010 0.795 0.029 1.188l-0.002-0.056v137.813h-345.173c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h347.733v138.24c-0.017 0.338-0.026 0.734-0.026 1.133 0 13.432 10.888 24.32 24.32 24.32 7.323 0 13.889-3.236 18.348-8.357l0.025-0.029 170.667-170.667c3.245-4.095 5.206-9.337 5.206-15.037 0-7.030-2.982-13.363-7.751-17.803l-0.015-0.014z","M933.547 817.493c-17.673 0-32-14.327-32-32v0-546.987c0-17.673 14.327-32 32-32s32 14.327 32 32v0 546.987c0.002 0.128 0.003 0.279 0.003 0.43 0 17.437-14.136 31.573-31.573 31.573-0.151 0-0.302-0.001-0.452-0.003l0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["black-right-line"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5920,"id":471,"name":"black-right-line","prevSize":32,"code":59895,"codes":[59895,59896]},"setIdx":0,"setId":0,"iconIdx":101},{"icon":{"paths":["M804.693 497.92l-179.2-179.627c-3.662-3.474-8.623-5.611-14.083-5.611-11.183 0-20.273 8.964-20.477 20.098l-0 0.019v147.2h-347.733c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h347.733v147.2c0.204 11.154 9.293 20.117 20.477 20.117 5.46 0 10.421-2.137 14.092-5.619l-0.009 0.009 179.2-179.627c3.786-3.517 6.147-8.523 6.147-14.080s-2.361-10.563-6.135-14.069l-0.012-0.011z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-right"]},"attrs":[{}],"properties":{"order":5921,"id":470,"name":"black-right","prevSize":32,"code":59897},"setIdx":0,"setId":0,"iconIdx":102},{"icon":{"paths":["M698.027 390.4l-170.667-168.533c-4.32-4.299-10.276-6.956-16.853-6.956s-12.534 2.658-16.854 6.957l0.001-0.001-170.667 170.667c-5.665 4.412-9.274 11.234-9.274 18.899 0 13.196 10.697 23.893 23.893 23.893 0.862 0 1.713-0.046 2.552-0.135l-0.104 0.009h136.96v346.027c0 17.673 14.327 32 32 32s32-14.327 32-32v0-349.44h141.653c12.804-0.496 22.996-10.996 22.996-23.876 0-6.91-2.933-13.134-7.622-17.497l-0.015-0.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-up"]},"attrs":[{}],"properties":{"order":5922,"id":469,"name":"black-up","prevSize":32,"code":59898},"setIdx":0,"setId":0,"iconIdx":103},{"icon":{"paths":["M518.4 824.32c-5.143-0.067-9.978-1.32-14.264-3.498l0.184 0.085c-10.676-5.093-17.922-15.8-17.922-28.2 0-0.136 0.001-0.272 0.003-0.407l-0 0.021v-191.573l-124.16 114.773c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 169.387-158.293v-4.267l-167.253-147.627c-6.578-5.892-10.698-14.411-10.698-23.893 0-17.69 14.341-32.031 32.031-32.031 8.208 0 15.696 3.088 21.364 8.165l-0.030-0.027 124.587 111.36v-198.827c0.057-17.63 14.362-31.899 32-31.899 7.429 0 14.266 2.531 19.697 6.779l-0.070-0.053 177.92 138.24c7.173 5.663 11.873 14.183 12.37 23.814l0.003 0.079c0.016 0.376 0.025 0.817 0.025 1.261 0 9.272-3.943 17.623-10.244 23.467l-0.020 0.019-134.4 125.44 133.973 119.893c6.57 6.097 10.668 14.779 10.668 24.419 0 0.115-0.001 0.231-0.002 0.346l0-0.018c-0.602 9.816-5.266 18.435-12.316 24.274l-0.057 0.046-177.92 137.813c-5.011 3.5-11.231 5.592-17.94 5.592-0.593 0-1.183-0.016-1.768-0.049l0.081 0.004zM550.4 568.32v157.013l96-74.667zM550.4 291.84v164.267l96.427-89.173z","M308.907 85.333h405.76c123.476 0 223.573 100.097 223.573 223.573v405.76c0 123.476-100.097 223.573-223.573 223.573h-405.76c-123.476 0-223.573-100.097-223.573-223.573v-405.76c0-123.476 100.097-223.573 223.573-223.573z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bluetooth"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5923,"id":468,"name":"bluetooth","prevSize":32,"code":59899,"codes":[59899,59900]},"setIdx":0,"setId":0,"iconIdx":104},{"icon":{"paths":["M938.667 722.347c0.003 0.243 0.004 0.53 0.004 0.817 0 36.883-26.441 67.591-61.401 74.202l-0.47 0.074c-123.52 20.478-234.344 58.283-335.972 111.298l6.159-2.925c-10.344 4.364-22.369 6.899-34.987 6.899s-24.643-2.536-35.594-7.125l0.608 0.226c-94.858-49.358-204.883-87.597-320.818-108.964l-7.289-1.116c-36.287-6.156-63.574-37.358-63.574-74.932 0-0.057 0-0.114 0-0.17l-0 0.009v-529.493c-0-0.005-0-0.010-0-0.016 0-42.415 34.385-76.8 76.8-76.8 4.066 0 8.058 0.316 11.953 0.925l-0.433-0.056c113.808 17.748 215.984 55.16 307.429 108.876l-4.069-2.21c9.92 6.33 22.015 10.089 34.987 10.089s25.066-3.759 35.253-10.248l-0.266 0.158c86.908-51.299 188.231-89.542 296.122-108.833l5.531-0.82c3.848-0.68 8.279-1.068 12.8-1.068 42.577 0 77.106 34.455 77.226 77.003l0 0.011z","M848.64 112.213c-113.422 20.112-214.746 58.354-305.935 111.981l4.281-2.328c-9.981 6.116-22.053 9.759-34.972 9.813l-0.015 0v682.667c0.75 0.025 1.631 0.039 2.516 0.039 11.754 0 22.917-2.528 32.976-7.070l-0.505 0.204c95.468-50.089 206.291-87.895 323.291-107.472l6.523-0.902c35.449-6.67 61.909-37.387 61.909-74.283 0-0.885-0.015-1.767-0.045-2.644l0.003 0.127v-534.187c-0.12-42.56-34.65-77.015-77.226-77.015-4.521 0-8.952 0.389-13.26 1.134l0.46-0.066z","M330.24 384h-96.853c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h96.853c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M362.667 512h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h128c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["book-open"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5924,"id":467,"name":"book-open","prevSize":32,"code":59901,"codes":[59901,59902,59903,59904]},"setIdx":0,"setId":0,"iconIdx":105},{"icon":{"paths":["M298.667 85.76h427.093c117.585 0 212.907 95.322 212.907 212.907v427.093c0 117.585-95.322 212.907-212.907 212.907h-427.093c-117.585 0-212.907-95.322-212.907-212.907v-427.093c0-117.585 95.322-212.907 212.907-212.907z","M490.667 327.253v0c-55.681-32.759-120.746-56.676-190.078-67.841l-3.202-0.425c-2.566-0.476-5.518-0.748-8.533-0.748-27.062 0-49.006 21.908-49.067 48.955l-0 0.006v337.92c-0.001 0.082-0.001 0.178-0.001 0.275 0 24.588 18.571 44.84 42.452 47.492l0.216 0.019c78.56 14.573 148.642 39.010 213.346 72.408l-4.279-2.008z","M725.333 256c-72.358 12.925-136.98 37.319-195.187 71.47l2.76-1.497v437.76c60.89-32.179 131.601-56.314 206.31-68.573l4.036-0.547c22.738-4.375 39.682-24.113 39.682-47.808 0-0.143-0.001-0.285-0.002-0.427l0 0.022v-341.333c0-0.072 0.001-0.157 0.001-0.242 0-27.334-22.159-49.493-49.493-49.493-2.863 0-5.67 0.243-8.4 0.71l0.293-0.041z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["book-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5925,"id":466,"name":"book-square","prevSize":32,"code":59905,"codes":[59905,59906,59907]},"setIdx":0,"setId":0,"iconIdx":106},{"icon":{"paths":["M297.387 85.333h429.227c81.768 0 148.053 66.286 148.053 148.053v557.227c0 81.768-66.286 148.053-148.053 148.053h-429.227c-81.768 0-148.053-66.286-148.053-148.053v-557.227c0-81.768 66.286-148.053 148.053-148.053z","M298.667 938.667h426.667c81.67-0.242 147.811-66.383 148.053-148.030l0-0.023v-150.613h-599.040c-69.043 0-125.013 55.97-125.013 125.013v0 25.6c0.241 81.821 66.625 148.056 148.479 148.056 0.3 0 0.6-0.001 0.9-0.003l-0.046 0z","M675.413 330.667h-327.68c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h327.68c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M552.107 482.987h-204.373c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h204.373c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["book"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5926,"id":465,"name":"book","prevSize":32,"code":59908,"codes":[59908,59909,59910,59911]},"setIdx":0,"setId":0,"iconIdx":107},{"icon":{"paths":["M322.133 211.627h379.733c130.781 0 236.8 106.019 236.8 236.8v253.44c0 130.781-106.019 236.8-236.8 236.8h-379.733c-130.781 0-236.8-106.019-236.8-236.8v-253.44c0-130.781 106.019-236.8 236.8-236.8z","M623.36 590.933l-63.573-36.267c-13.655-8.258-30.15-13.144-47.787-13.144s-34.132 4.886-48.206 13.379l0.419-0.235-63.573 37.973c-9.875 5.994-21.811 9.542-34.575 9.542-37.231 0-67.413-30.182-67.413-67.413 0-0.505 0.006-1.008 0.017-1.51l-0.001 0.075v-341.333c0.483-59.014 48.435-106.667 107.517-106.667 0.001 0 0.002 0 0.004 0l213.333-0c58.643 0.961 105.813 48.725 105.813 107.506 0 0.005-0 0.010-0 0.014l0-0.001v341.333c-0.635 36.743-30.569 66.285-67.404 66.285-12.762 0-24.696-3.546-34.87-9.707l0.301 0.169z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bookmark-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5927,"id":464,"name":"bookmark-2","prevSize":32,"code":59912,"codes":[59912,59913]},"setIdx":0,"setId":0,"iconIdx":108},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M693.333 85.333h-362.667v451.413c0.921 21.183 18.318 38.008 39.645 38.008 6.217 0 12.099-1.43 17.337-3.978l-0.236 0.103 107.52-47.787c5.026-2.251 10.893-3.562 17.067-3.562s12.040 1.311 17.338 3.67l-0.271-0.108 107.52 47.787c5.003 2.445 10.885 3.875 17.102 3.875 21.327 0 38.724-16.825 39.642-37.925l0.003-0.083z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bookmark"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5928,"id":463,"name":"bookmark","prevSize":32,"code":59914,"codes":[59914,59915]},"setIdx":0,"setId":0,"iconIdx":109},{"icon":{"paths":["M994.987 454.827v0c-70.692 0-128-57.308-128-128v0-46.933c-0-83.888-68.005-151.893-151.893-151.893l0 0h-377.173c-83.888-0-151.893 68.005-151.893 151.893h-0v47.36c0 70.692-57.308 128-128 128v0 0 112.213c70.692 0 128 57.308 128 128v0 49.493c0.484 83.521 68.303 151.040 151.891 151.040 0.001 0 0.002-0 0.003-0l377.173 0c83.888-0 151.893-68.005 151.893-151.893v0-49.493c0-70.692 57.308-128 128-128v0 0z","M554.667 546.56h-123.733c-17.673 0-32-14.327-32-32v0-176.213c-0.002-0.128-0.003-0.279-0.003-0.43 0-17.437 14.136-31.573 31.573-31.573 0.151 0 0.302 0.001 0.452 0.003l-0.023-0h123.733c63.297 3.89 113.158 56.175 113.158 120.107s-49.862 116.217-112.818 120.090l-0.34 0.017zM462.933 482.56h91.733c28.925-2.6 51.423-26.726 51.423-56.107s-22.497-53.507-51.205-56.091l-0.217-0.016h-91.733z","M554.667 722.347h-123.733c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-175.787c-0.002-0.128-0.003-0.279-0.003-0.43 0-17.437 14.136-31.573 31.573-31.573 0.151 0 0.302 0.001 0.452 0.003l-0.023-0h123.733c66.215 0 119.893 53.678 119.893 119.893s-53.678 119.893-119.893 119.893h-0zM462.933 658.347h91.733c30.869 0 55.893-25.024 55.893-55.893s-25.024-55.893-55.893-55.893h-91.733z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bootstrap"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5929,"id":462,"name":"bootstrap","prevSize":32,"code":59916,"codes":[59916,59917,59918]},"setIdx":0,"setId":0,"iconIdx":110},{"icon":{"paths":["M768 221.013h-509.867c-97.905 0.162-177.209 79.566-177.209 177.493 0 6.613 0.362 13.142 1.066 19.567l-0.071-0.794 37.973 355.84c10.004 89.334 85.051 158.167 176.201 158.293l0.013 0h436.48c0.094 0 0.206 0 0.317 0 92.083 0 167.748-70.29 176.268-160.143l0.054-0.711 33.28-355.413c0.473-4.865 0.742-10.518 0.742-16.233 0-97.323-78.142-176.396-175.108-177.898l-0.141-0.002zM590.080 590.933c0 0.001 0 0.001 0 0.002 0 32.047-25.979 58.027-58.027 58.027-0.15 0-0.3-0.001-0.45-0.002l0.023 0h-49.493c-0.127 0.001-0.277 0.002-0.427 0.002-32.047 0-58.027-25.979-58.027-58.027 0-0.001 0-0.001 0-0.002l-0 0v-101.547h164.267z","M942.507 415.147c0.473-4.865 0.742-10.518 0.742-16.233 0-97.323-78.142-176.396-175.108-177.898l-0.141-0.002h-68.693v-42.667c0-63.859-51.768-115.627-115.627-115.627h-144.64c-0.006-0-0.013-0-0.020-0-63.109 0-114.409 50.559-115.605 113.381l-0.002 0.112v42.667h-65.28c-97.905 0.162-177.209 79.566-177.209 177.493 0 6.613 0.362 13.142 1.066 19.567l-0.071-0.794 6.4 61.44c84.736 63.898 188.413 107.16 301.262 120.464l2.951 0.283c2.772 47.459 41.746 84.947 89.562 85.333l0.038 0h47.36c46.628-0.217 84.906-35.682 89.568-81.108l0.032-0.385c122.471-13.312 231.849-60.859 320.731-132.746l-1.157 0.906zM387.84 176.213c0-28.513 23.114-51.627 51.627-51.627h144.64c28.513 0 51.627 23.114 51.627 51.627v0 42.667h-248.32zM554.667 590.933c0 0.001 0 0.002 0 0.003 0 14.374-11.653 26.027-26.027 26.027-0.15 0-0.3-0.001-0.449-0.004l0.022 0h-46.080c-0.127 0.002-0.277 0.003-0.427 0.003-14.374 0-26.027-11.653-26.027-26.027 0-0.001 0-0.002 0-0.004l-0 0v-69.547h98.987z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["briefcase"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5930,"id":461,"name":"briefcase","prevSize":32,"code":59919,"codes":[59919,59920]},"setIdx":0,"setId":0,"iconIdx":111},{"icon":{"paths":["M768 221.013h-509.867c-97.905 0.162-177.209 79.566-177.209 177.493 0 6.613 0.362 13.142 1.066 19.567l-0.071-0.794 37.973 355.84c10.004 89.334 85.051 158.167 176.201 158.293l0.013 0h436.48c0.094 0 0.206 0 0.317 0 92.083 0 167.748-70.29 176.268-160.143l0.054-0.711 33.28-355.413c0.473-4.865 0.742-10.518 0.742-16.233 0-97.323-78.142-176.396-175.108-177.898l-0.141-0.002zM512 762.88c-91.429 0-165.547-74.118-165.547-165.547s74.118-165.547 165.547-165.547c91.429 0 165.547 74.118 165.547 165.547h-0c0 91.429-74.118 165.547-165.547 165.547v0z","M942.507 415.147c0.473-4.865 0.742-10.518 0.742-16.233 0-97.323-78.142-176.396-175.108-177.898l-0.141-0.002h-68.693v-42.667c0-63.859-51.768-115.627-115.627-115.627h-144.64c-0.006-0-0.013-0-0.020-0-63.109 0-114.409 50.559-115.605 113.381l-0.002 0.112v42.667h-65.28c-97.905 0.162-177.209 79.566-177.209 177.493 0 6.613 0.362 13.142 1.066 19.567l-0.071-0.794 6.4 61.44c63.903 49.896 140.271 87.098 223.515 106.335l3.898 0.759c0 4.693 0 8.96 0 13.653 0 109.102 88.445 197.547 197.547 197.547s197.547-88.445 197.547-197.547v0c0-5.12 0-10.24 0-14.933 87.714-21.507 164.215-60.717 228.828-113.855l-0.988 0.788zM387.84 176.213c0-28.513 23.114-51.627 51.627-51.627h144.64c28.513 0 51.627 23.114 51.627 51.627v0 42.667h-248.32zM512.427 730.88c-0.127 0-0.277 0.001-0.427 0.001-73.756 0-133.547-59.791-133.547-133.547s59.791-133.547 133.547-133.547c73.756 0 133.546 59.79 133.547 133.546l0 0c0 73.756-59.791 133.547-133.547 133.547v0z","M557.227 597.333l22.187-22.187c6.274-5.858 10.185-14.178 10.185-23.412 0-17.673-14.327-32-32-32-9.234 0-17.554 3.911-23.394 10.166l-0.017 0.019-22.187 22.187-22.187-22.187c-5.858-6.274-14.178-10.185-23.412-10.185-17.673 0-32 14.327-32 32 0 9.234 3.911 17.554 10.166 23.394l0.019 0.017 22.187 22.187-22.187 22.187c-5.887 5.741-9.539 13.751-9.539 22.613s3.652 16.872 9.532 22.607l0.007 0.006c5.528 5.793 13.308 9.394 21.93 9.394 0.24 0 0.48-0.003 0.719-0.008l-0.036 0.001c0.044 0 0.097 0 0.149 0 8.788 0 16.737-3.59 22.461-9.384l0.003-0.003 22.187-22.187 22.187 22.187c5.727 5.797 13.676 9.387 22.464 9.387 0.052 0 0.105-0 0.157-0l-0.008 0c0.203 0.005 0.443 0.008 0.683 0.008 8.622 0 16.402-3.602 21.919-9.383l0.011-0.012c5.887-5.741 9.539-13.751 9.539-22.613s-3.652-16.872-9.532-22.607l-0.007-0.006z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["brifecase-cros"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5931,"id":460,"name":"brifecase-cros","prevSize":32,"code":59921,"codes":[59921,59922,59923]},"setIdx":0,"setId":0,"iconIdx":112},{"icon":{"paths":["M765.013 221.013h-509.013c-97.383 1.151-175.883 80.362-175.883 177.908 0 6.466 0.345 12.852 1.017 19.14l-0.068-0.781 37.973 355.84c10.013 89.415 85.189 158.293 176.452 158.293 0.066 0 0.132-0 0.199-0l436.043 0c0.094 0 0.206 0 0.317 0 92.083 0 167.748-70.29 176.268-160.143l0.054-0.711 33.28-355.413c0.498-4.988 0.782-10.781 0.782-16.64 0-98.002-79.426-177.453-177.418-177.493l-0.004-0zM512 762.88c-0.127 0-0.277 0.001-0.427 0.001-91.429 0-165.547-74.118-165.547-165.547s74.118-165.547 165.547-165.547c91.429 0 165.546 74.117 165.547 165.546l0 0c0 0 0 0 0 0.001 0 91.279-73.875 165.303-165.097 165.546l-0.023 0z","M941.653 415.147c0.498-4.988 0.782-10.781 0.782-16.64 0-98.002-79.426-177.453-177.418-177.493l-66.564-0v-42.667c0-63.859-51.768-115.627-115.627-115.627h-144.213c-0.133-0.001-0.289-0.001-0.446-0.001-63.109 0-114.409 50.559-115.605 113.382l-0.002 0.112v42.667h-66.56c-97.484 1.019-176.117 80.282-176.117 177.911 0 7.22 0.43 14.339 1.266 21.334l-0.082-0.845 6.827 61.44c64.005 49.132 140.402 85.634 223.557 104.235l3.856 0.725c0 4.693 0 8.96 0 13.653 5.044 105.312 91.654 188.785 197.76 188.785s192.715-83.473 197.743-188.334l0.017-0.451c0-5.12 0-10.24 0-14.933 87.727-21.446 164.238-60.665 228.818-113.849l-0.978 0.782zM386.987 176.213c0.242-28.564 23.453-51.627 52.052-51.627 0.001 0 0.001 0 0.002 0l144.213-0c28.513 0 51.627 23.114 51.627 51.627v0 42.667h-248.32zM511.573 730.88c-73.756 0-133.547-59.791-133.547-133.547s59.791-133.547 133.547-133.547c73.756 0 133.547 59.791 133.547 133.547v-0c0 0 0 0 0 0.001 0 73.606-59.548 133.303-133.097 133.546l-0.023 0z","M485.12 675.84c-8.669-0.176-16.477-3.727-22.189-9.389l0.002 0.002-40.107-38.827c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 18.347 17.92 68.267-63.573c5.861-6.301 14.198-10.23 23.454-10.23 17.673 0 32 14.327 32 32 0 10.427-4.987 19.69-12.707 25.532l-0.080 0.058-91.733 85.333c-5.429 4.005-12.252 6.411-19.637 6.411-0.297 0-0.592-0.004-0.887-0.012l0.044 0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["brifecase-tick"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5932,"id":459,"name":"brifecase-tick","prevSize":32,"code":59924,"codes":[59924,59925,59926]},"setIdx":0,"setId":0,"iconIdx":113},{"icon":{"paths":["M768 221.013h-509.867c-97.905 0.162-177.209 79.566-177.209 177.493 0 6.613 0.362 13.142 1.066 19.567l-0.071-0.794 37.973 355.84c10.004 89.334 85.051 158.167 176.201 158.293l0.013 0h436.48c0.094 0 0.206 0 0.317 0 92.083 0 167.748-70.29 176.268-160.143l0.054-0.711 33.28-355.413c0.473-4.865 0.742-10.518 0.742-16.233 0-97.323-78.142-176.396-175.108-177.898l-0.141-0.002zM512 762.88c-91.429 0-165.547-74.118-165.547-165.547s74.118-165.547 165.547-165.547c91.429 0 165.547 74.118 165.547 165.547h-0c0 91.429-74.118 165.547-165.547 165.547v0z","M942.507 415.147c0.473-4.865 0.742-10.518 0.742-16.233 0-97.323-78.142-176.396-175.108-177.898l-0.141-0.002h-68.693v-42.667c0-63.859-51.768-115.627-115.627-115.627h-144.64c-0.006-0-0.013-0-0.020-0-63.109 0-114.409 50.559-115.605 113.381l-0.002 0.112v42.667h-65.28c-97.905 0.162-177.209 79.566-177.209 177.493 0 6.613 0.362 13.142 1.066 19.567l-0.071-0.794 6.4 61.44c63.903 49.896 140.271 87.098 223.515 106.335l3.898 0.759c0 4.693 0 8.96 0 13.653 0 109.102 88.445 197.547 197.547 197.547s197.547-88.445 197.547-197.547v0c0-5.12 0-10.24 0-14.933 87.714-21.507 164.215-60.717 228.828-113.855l-0.988 0.788zM387.84 176.213c0-28.513 23.114-51.627 51.627-51.627h144.64c28.513 0 51.627 23.114 51.627 51.627v0 42.667h-248.32zM512.427 730.88c-0.127 0-0.277 0.001-0.427 0.001-73.756 0-133.547-59.791-133.547-133.547s59.791-133.547 133.547-133.547c73.756 0 133.546 59.79 133.547 133.546l0 0c0 73.756-59.791 133.547-133.547 133.547v0z","M457.813 672.427c-0.085 0.001-0.185 0.001-0.285 0.001-11.207 0-21.031-5.919-26.518-14.801l-0.077-0.134c-2.898-4.681-4.615-10.357-4.615-16.435 0-10.885 5.509-20.484 13.89-26.161l0.111-0.071 46.507-29.867v-46.933c0-17.673 14.327-32 32-32s32 14.327 32 32v0 64.427c0 0.014 0 0.031 0 0.047 0 11.275-5.91 21.17-14.802 26.756l-0.131 0.077-60.587 39.253c-4.523 2.452-9.903 3.893-15.619 3.893-0.659 0-1.314-0.019-1.964-0.057l0.090 0.004z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["brifecase-timer"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5933,"id":458,"name":"brifecase-timer","prevSize":32,"code":59927,"codes":[59927,59928,59929]},"setIdx":0,"setId":0,"iconIdx":114},{"icon":{"paths":["M275.627 631.040l117.76 118.187c86.463-54.384 161.586-113.5 229.939-179.577l-0.392 0.377-168.533-168.533c-65.141 68.091-124.090 143.18-175.288 223.682l-3.486 5.864z","M392.107 747.947c-8.107 105.387-103.253 157.013-240.213 190.72-4.323 1.241-9.289 1.954-14.421 1.954-29.926 0-54.187-24.26-54.187-54.187 0-5.254 0.748-10.333 2.143-15.137l-0.095 0.383c31.573-136.96 85.333-233.813 189.013-240.64zM928.853 189.867c5.949-9.96 9.466-21.968 9.466-34.797 0-37.938-30.755-68.693-68.693-68.693-12.939 0-25.043 3.577-35.375 9.797l0.31-0.173c-144.931 87.657-269.841 188.81-379.374 304.655l-0.786 0.839 168.533 168.533c117.051-110.187 218.366-235.124 301.501-372.305l4.419-7.855z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["brush"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5934,"id":457,"name":"brush","prevSize":32,"code":59930,"codes":[59930,59931]},"setIdx":0,"setId":0,"iconIdx":115},{"icon":{"paths":["M311.893 85.76h400.64c124.89 0 226.133 101.243 226.133 226.133v400.64c0 124.89-101.243 226.133-226.133 226.133h-400.64c-124.89 0-226.133-101.243-226.133-226.133v-400.64c0-124.89 101.243-226.133 226.133-226.133z","M659.2 480.427l-157.44-157.44-75.093-73.813c-5.668-5.186-13.249-8.364-21.572-8.364-8.098 0-15.494 3.008-21.13 7.968l0.036-0.031c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 26.027 26.453-136.107 134.4c-16.29 16.42-26.357 39.034-26.357 64s10.067 47.58 26.363 64.006l-0.006-0.006 96.427 96.427c16.465 16.19 39.065 26.184 64 26.184s47.535-9.995 64.013-26.197l-0.013 0.013 160-160c5.066-5.091 8.197-12.11 8.197-19.861 0-7.316-2.79-13.98-7.364-18.987l0.020 0.022z","M776.533 696.32c-2.834 34.168-31.264 60.826-65.92 60.826s-63.086-26.657-65.904-60.586l-0.016-0.24c4.578-36.866 19.958-69.49 42.828-95.332l-0.161 0.186c5.672-7.3 14.453-11.952 24.32-11.952s18.648 4.652 24.268 11.882l0.052 0.069c22.214 25.701 36.943 58.43 40.478 94.444l0.056 0.703z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bucket-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5935,"id":456,"name":"bucket-square","prevSize":32,"code":59932,"codes":[59932,59933,59934]},"setIdx":0,"setId":0,"iconIdx":116},{"icon":{"paths":["M729.6 434.773l-274.773-274.773s0 0-2.133 0l-63.573-65.28c-5.559-5.236-13.071-8.453-21.333-8.453s-15.774 3.217-21.349 8.468l0.016-0.015c-5.331 5.518-8.616 13.042-8.616 21.333s3.285 15.816 8.624 21.342l-0.008-0.009 36.267 36.693-222.72 222.72c-24.286 24.38-39.3 58.010-39.3 95.147s15.014 70.767 39.304 95.151l-0.004-0.004 142.507 142.507c24.38 24.286 58.010 39.3 95.147 39.3s70.767-15.014 95.151-39.304l-0.004 0.004 236.8-236.8c7.054-7.589 11.383-17.796 11.383-29.013s-4.329-21.424-11.407-29.040l0.024 0.027z","M682.667 938.667h-526.933c-17.202 0-31.147-13.945-31.147-31.147s13.945-31.147 31.147-31.147v0h526.933c17.202 0 31.147 13.945 31.147 31.147s-13.945 31.147-31.147 31.147v0z","M903.68 753.92c0 53.962-43.745 97.707-97.707 97.707s-97.707-43.745-97.707-97.707v0c6.417-54.492 28.913-102.803 62.544-141.091l-0.251 0.291c8.35-10.773 21.293-17.641 35.84-17.641s27.49 6.868 35.763 17.538l0.077 0.103c33.47 37.861 55.776 86.3 61.348 139.717l0.092 1.083z","M729.6 492.8c7.122-7.605 11.496-17.859 11.496-29.135 0-2.064-0.147-4.093-0.43-6.079l0.027 0.228-619.52 29.013c-0.096 1.889-0.151 4.101-0.151 6.326 0 36.698 14.898 69.917 38.975 93.938l0.003 0.003 142.507 142.507c24.38 24.286 58.010 39.3 95.147 39.3s70.767-15.014 95.151-39.304l-0.004 0.004z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bucket"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5936,"id":455,"name":"bucket","prevSize":32,"code":59935,"codes":[59935,59936,59937,59938]},"setIdx":0,"setId":0,"iconIdx":117},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M602.027 544h-180.053c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h180.053c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M682.667 691.2h-339.2c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h339.2c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M682.667 396.8h-339.2c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h339.2c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["burger-menu-1"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5937,"id":454,"name":"burger-menu-1","prevSize":32,"code":59939,"codes":[59939,59940,59941,59942]},"setIdx":0,"setId":0,"iconIdx":118},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M377.173 328.107c0 26.863-22.159 48.64-49.493 48.64s-49.493-21.777-49.493-48.64c0-26.863 22.159-48.64 49.493-48.64s49.493 21.777 49.493 48.64z","M561.493 328.107c0 26.863-22.159 48.64-49.493 48.64s-49.493-21.777-49.493-48.64c0-26.863 22.159-48.64 49.493-48.64s49.493 21.777 49.493 48.64z","M747.093 328.107c0 26.863-22.159 48.64-49.493 48.64s-49.493-21.777-49.493-48.64c0-26.863 22.159-48.64 49.493-48.64s49.493 21.777 49.493 48.64z","M376.32 512.427c0 26.863-22.159 48.64-49.493 48.64s-49.493-21.777-49.493-48.64c0-26.863 22.159-48.64 49.493-48.64s49.493 21.777 49.493 48.64z","M560.64 512.427c0 26.863-22.159 48.64-49.493 48.64s-49.493-21.777-49.493-48.64c0-26.863 22.159-48.64 49.493-48.64s49.493 21.777 49.493 48.64z","M746.667 512.427c0 26.863-22.159 48.64-49.493 48.64s-49.493-21.777-49.493-48.64c0-26.863 22.159-48.64 49.493-48.64s49.493 21.777 49.493 48.64z","M375.893 695.893c0 26.863-22.159 48.64-49.493 48.64s-49.493-21.777-49.493-48.64c0-26.863 22.159-48.64 49.493-48.64s49.493 21.777 49.493 48.64z","M560.213 695.893c0 26.863-22.159 48.64-49.493 48.64s-49.493-21.777-49.493-48.64c0-26.863 22.159-48.64 49.493-48.64s49.493 21.777 49.493 48.64z","M745.813 695.893c0 26.863-22.159 48.64-49.493 48.64s-49.493-21.777-49.493-48.64c0-26.863 22.159-48.64 49.493-48.64s49.493 21.777 49.493 48.64z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["burger-menu-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5938,"id":453,"name":"burger-menu-2","prevSize":32,"code":59943,"codes":[59943,59944,59945,59946,59947,59948,59949,59950,59951,59952]},"setIdx":0,"setId":0,"iconIdx":119},{"icon":{"paths":["M295.253 212.053c0 44.065-36.104 79.787-80.64 79.787s-80.64-35.722-80.64-79.787c0-44.065 36.104-79.787 80.64-79.787s80.64 35.722 80.64 79.787z","M595.627 212.053c0 44.065-36.104 79.787-80.64 79.787s-80.64-35.722-80.64-79.787c0-44.065 36.104-79.787 80.64-79.787s80.64 35.722 80.64 79.787z","M898.56 212.053c0 44.065-36.104 79.787-80.64 79.787s-80.64-35.722-80.64-79.787c0-44.065 36.104-79.787 80.64-79.787s80.64 35.722 80.64 79.787z","M293.973 512.427c0 44.065-36.104 79.787-80.64 79.787s-80.64-35.722-80.64-79.787c0-44.065 36.104-79.787 80.64-79.787s80.64 35.722 80.64 79.787z","M594.773 512.427c0 44.065-36.104 79.787-80.64 79.787s-80.64-35.722-80.64-79.787c0-44.065 36.104-79.787 80.64-79.787s80.64 35.722 80.64 79.787z","M897.28 512.427c0 44.065-36.104 79.787-80.64 79.787s-80.64-35.722-80.64-79.787c0-44.065 36.104-79.787 80.64-79.787s80.64 35.722 80.64 79.787z","M293.12 811.947c0 44.065-36.104 79.787-80.64 79.787s-80.64-35.722-80.64-79.787c0-44.065 36.104-79.787 80.64-79.787s80.64 35.722 80.64 79.787z","M593.493 811.947c0 44.065-36.104 79.787-80.64 79.787s-80.64-35.722-80.64-79.787c0-44.065 36.104-79.787 80.64-79.787s80.64 35.722 80.64 79.787z","M896.427 811.947c0 44.065-36.104 79.787-80.64 79.787s-80.64-35.722-80.64-79.787c0-44.065 36.104-79.787 80.64-79.787s80.64 35.722 80.64 79.787z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["burger-menu-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5939,"id":452,"name":"burger-menu-3","prevSize":32,"code":59953,"codes":[59953,59954,59955,59956,59957,59958,59959,59960,59961]},"setIdx":0,"setId":0,"iconIdx":120},{"icon":{"paths":["M847.36 607.147h-665.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h665.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M847.36 896h-665.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h665.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M847.36 316.587h-665.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h665.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M739.84 424.107c-0.097 0.001-0.212 0.002-0.327 0.002-8.732 0-16.625-3.593-22.281-9.382l-0.006-0.006c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 85.333-85.333-85.333-85.333c-5.321-5.699-8.588-13.376-8.588-21.815 0-17.673 14.327-32 32-32 8.44 0 16.116 3.267 21.834 8.606l-0.019-0.017 107.52 107.52c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-107.52 108.373c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-4"]},"attrs":[{},{},{},{}],"properties":{"order":5940,"id":451,"name":"burger-menu-4","prevSize":32,"code":59962},"setIdx":0,"setId":0,"iconIdx":121},{"icon":{"paths":["M746.667 544h-469.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h469.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M844.8 834.56h-665.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h665.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M844.8 253.44h-665.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h665.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-5"]},"attrs":[{},{},{}],"properties":{"order":5941,"id":450,"name":"burger-menu-5","prevSize":32,"code":59963},"setIdx":0,"setId":0,"iconIdx":122},{"icon":{"paths":["M844.8 544h-665.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h665.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M746.667 834.56h-469.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h469.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M746.667 253.44h-469.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h469.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-6"]},"attrs":[{},{},{}],"properties":{"order":5942,"id":449,"name":"burger-menu-6","prevSize":32,"code":59964},"setIdx":0,"setId":0,"iconIdx":123},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M712.533 353.28h-143.36c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h143.36c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M712.533 544h-360.96c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h360.96c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M701.013 734.72h-244.48c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h244.48c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["burger-menu"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5943,"id":448,"name":"burger-menu","prevSize":32,"code":59965,"codes":[59965,59966,59967,59968]},"setIdx":0,"setId":0,"iconIdx":124},{"icon":{"paths":["M285.44 85.333h453.12c63.388-0 114.773 51.386 114.773 114.773v623.787c0 63.388-51.386 114.773-114.773 114.773h-453.12c-63.388 0-114.773-51.386-114.773-114.773v-623.787c0-63.388 51.386-114.773 114.773-114.773z","M170.667 341.333h682.667v213.333h-682.667v-213.333z","M619.947 245.333h-207.787c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h207.787c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M394.667 746.667c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z","M736 746.667c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["bus"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5944,"id":447,"name":"bus","prevSize":32,"code":59969,"codes":[59969,59970,59971,59972,59973]},"setIdx":0,"setId":0,"iconIdx":125},{"icon":{"paths":["M301.653 85.333h420.693c95.906 0 173.653 77.747 173.653 173.653v506.027c0 95.906-77.747 173.653-173.653 173.653h-420.693c-95.906 0-173.653-77.747-173.653-173.653v-506.027c0-95.906 77.747-173.653 173.653-173.653z","M330.24 213.333h363.52c41.002 0 74.24 33.238 74.24 74.24v107.52c0 41.002-33.238 74.24-74.24 74.24h-363.52c-41.002 0-74.24-33.238-74.24-74.24v-107.52c0-41.002 33.238-74.24 74.24-74.24z","M746.667 654.080c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M660.907 745.813c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M343.893 777.813c-0.174 0.003-0.379 0.005-0.584 0.005-8.999 0-17.119-3.765-22.87-9.806l-0.012-0.013c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 96.853-91.733c5.559-5.236 13.071-8.453 21.333-8.453s15.774 3.217 21.349 8.468l-0.016-0.015c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-94.293 91.733c-5.458 5.869-13.154 9.595-21.721 9.813l-0.039 0.001z","M440.32 777.813c-0.151 0.003-0.329 0.004-0.508 0.004-8.252 0-15.744-3.254-21.263-8.548l0.011 0.010-96.853-92.16c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 96.853 91.733c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.431 5.574-13.011 9.032-21.399 9.032-0.728 0-1.449-0.026-2.163-0.077l0.096 0.006z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["calculator"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5945,"id":446,"name":"calculator","prevSize":32,"code":59974,"codes":[59974,59975,59976,59977,59978,59979]},"setIdx":0,"setId":0,"iconIdx":126},{"icon":{"paths":["M119.467 463.36v242.347c-0.004 0.507-0.006 1.107-0.006 1.707 0 127.718 103.536 231.253 231.253 231.253 0.002 0 0.004-0 0.006-0l322.56 0c127.718 0 231.253-103.536 231.253-231.253v0-244.053c0-19.323-15.664-34.987-34.987-34.987v0h-715.093c-19.323 0-34.987 15.664-34.987 34.987v0z","M889.6 322.133c1.432 3.674 2.261 7.927 2.261 12.374 0 19.323-15.664 34.987-34.987 34.987-0.045 0-0.090-0-0.135-0l0.007 0h-682.667c-23.141-0.546-41.692-19.434-41.692-42.656 0-5.529 1.052-10.812 2.966-15.66l-0.101 0.289c26.346-62.321 77.346-109.837 140.445-130.939l1.635-0.474v-66.987c0.704-15.463 13.412-27.733 28.985-27.733 0.010 0 0.020 0 0.030 0l-0.001-0c16.259-0 29.44 13.181 29.44 29.44v55.893c4.693 0 8.96 0 13.653 0h139.52v-57.6c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 54.613h123.733c4.693 0 8.96 0 13.653 0v-54.613c0.704-15.463 13.412-27.733 28.985-27.733 0.010 0 0.020 0 0.030 0l-0.001-0c16.259-0 29.44 13.181 29.44 29.44l-0 0v65.28c68.267 22.8 121.368 74.643 145.407 140.473l0.513 1.607z","M409.173 589.227c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M546.133 589.227c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M408.747 725.76c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["calendar-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5946,"id":445,"name":"calendar-2","prevSize":32,"code":59980,"codes":[59980,59981,59982,59983,59984]},"setIdx":0,"setId":0,"iconIdx":127},{"icon":{"paths":["M308.48 148.053h407.040c111.223-0 201.387 90.164 201.387 201.387v386.56c0 111.223-90.164 201.387-201.387 201.387h-407.040c-111.223 0-201.387-90.164-201.387-201.387v-386.56c0-111.223 90.164-201.387 201.387-201.387z","M341.333 238.507c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-121.173c0-17.673 14.327-32 32-32s32 14.327 32 32v0 121.173c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M682.667 238.507c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-121.173c0-17.673 14.327-32 32-32s32 14.327 32 32v0 121.173c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M512 532.48c-0.518 0.010-1.129 0.016-1.741 0.016-50.475 0-91.56-40.206-92.976-90.339l-0.003-0.131c0-52.312 42.408-94.72 94.72-94.72s94.72 42.408 94.72 94.72l-0-0c-1.418 50.264-42.503 90.47-92.979 90.47-0.612 0-1.223-0.006-1.833-0.018l0.091 0.001zM512 416c-0.555-0.038-1.202-0.059-1.855-0.059-14.993 0-27.329 11.372-28.855 25.961l-0.011 0.125c2.552 14.851 15.333 26.009 30.72 26.009s28.168-11.158 30.694-25.824l0.026-0.185c-1.536-14.714-13.873-26.086-28.865-26.086-0.653 0-1.3 0.022-1.942 0.064l0.087-0.005z","M512 670.293c-1.038 0.037-2.258 0.058-3.482 0.058-56.167 0-101.945-44.479-104.032-100.135l-0.006-0.19c2.101-56.076 48.067-100.738 104.464-100.738 1.074 0 2.145 0.016 3.212 0.048l-0.156-0.004c0.91-0.028 1.981-0.045 3.056-0.045 56.397 0 102.364 44.662 104.459 100.547l0.006 0.191c-2.093 55.846-47.871 100.325-104.038 100.325-1.225 0-2.444-0.021-3.658-0.063l0.176 0.005zM512 533.333c-0.125-0.001-0.272-0.002-0.42-0.002-21.458 0-39.216 15.84-42.219 36.465l-0.028 0.23c3.219 20.652 20.878 36.269 42.184 36.269 0.17 0 0.339-0.001 0.508-0.003l-0.026 0c0.143 0.002 0.313 0.003 0.482 0.003 21.306 0 38.965-15.617 42.153-36.029l0.031-0.24c-3.031-20.855-20.789-36.695-42.247-36.695-0.148 0-0.295 0.001-0.442 0.002l0.022-0z","M108.373 749.653c6.478 105.554 93.534 188.741 200.080 189.013l0.027 0h407.040c106.156-0.228 192.97-82.73 200.073-187.115l0.034-0.619z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["calendar-8"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5947,"id":444,"name":"calendar-8","prevSize":32,"code":59985,"codes":[59985,59986,59987,59988,59989,59990]},"setIdx":0,"setId":0,"iconIdx":128},{"icon":{"paths":["M532.053 792.747c-0.002-0.347-0.003-0.758-0.003-1.17 0-129.367 104.873-234.24 234.24-234.24 39.108 0 75.977 9.584 108.387 26.531l-1.291-0.615v-143.36c0-19.323-15.664-34.987-34.987-34.987v0h-716.8c-19.323 0-34.987 15.664-34.987 34.987h-0v242.773c0.243 127.77 103.876 231.253 231.68 231.253 0 0 0-0 0-0l247.893 0c-21.428-34.331-34.134-76.022-34.134-120.68 0-0.173 0-0.347 0.001-0.52l-0 0.027z","M856.747 298.667c1.415 3.678 2.235 7.934 2.235 12.381 0 19.294-15.429 34.984-34.622 35.405l-0.039 0.001h-682.667c-23.51-0.072-42.541-19.147-42.541-42.666 0-5.525 1.050-10.804 2.961-15.649l-0.101 0.289c26.339-62.575 77.525-110.276 140.871-131.368l1.636-0.472v-66.56c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44h0v55.467c4.267 0 8.533 0 13.227 0h139.947v-55.467c0-16.259 13.181-29.44 29.44-29.44v0c0.001-0 0.002-0 0.003-0 16.024 0 29.013 12.99 29.013 29.013 0 0.15-0.001 0.3-0.003 0.449l0-0.023v54.187h125.013c4.267 0 8.533 0 13.227 0v-54.187c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 66.56c67.744 23.127 120.347 74.891 144.13 140.47l0.51 1.61z","M376.32 566.187c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M513.28 566.187c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M375.893 702.72c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M768 622.080c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667c94.257 0 170.667-76.41 170.667-170.667v0c0-94.257-76.41-170.667-170.667-170.667v0zM831.573 826.027h-32v32c0.002 0.128 0.003 0.278 0.003 0.429 0 17.524-14.086 31.758-31.554 31.997l-0.023 0c-17.49-0.239-31.576-14.473-31.576-31.997 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-32.853h-32c-17.49-0.239-31.576-14.473-31.576-31.997 0-0.151 0.001-0.302 0.003-0.452l-0 0.023c0.663-17.488 14.553-31.527 31.918-32.423l0.082-0.003h31.573v-32c-0.002-0.13-0.003-0.284-0.003-0.438 0-17.61 14.037-31.941 31.533-32.415l0.044-0.001c17.49 0.239 31.576 14.473 31.576 31.997 0 0.151-0.001 0.302-0.003 0.452l0-0.023v32.853h32c0.003-0 0.007-0 0.012-0 17.437 0 31.573 14.136 31.573 31.573 0 0.3-0.004 0.599-0.013 0.897l0.001-0.044c0.002 0.128 0.003 0.279 0.003 0.43 0 17.909-14.518 32.427-32.427 32.427-0.151 0-0.302-0.001-0.452-0.003l0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["calendar-add"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5948,"id":443,"name":"calendar-add","prevSize":32,"code":59991,"codes":[59991,59992,59993,59994,59995,59996]},"setIdx":0,"setId":0,"iconIdx":129},{"icon":{"paths":["M89.6 464.64v242.773c-0 127.718 103.536 231.253 231.253 231.253v0h322.56c127.718 0 231.253-103.536 231.253-231.253v0-242.773c0-19.323-15.664-34.987-34.987-34.987v0h-715.093c-19.323 0-34.987 15.664-34.987 34.987v0z","M859.733 323.413c1.414 3.677 2.233 7.93 2.233 12.375 0 19.443-15.669 35.227-35.068 35.412l-0.018 0h-682.667c-0.089 0.001-0.195 0.001-0.301 0.001-23.564 0-42.667-19.103-42.667-42.667 0-5.525 1.050-10.805 2.962-15.65l-0.101 0.289c26.614-62.67 78.091-110.383 141.717-131.371l1.643-0.469v-66.56c-0-16.259 13.181-29.44 29.44-29.44v0c0.001-0 0.002-0 0.003-0 16.024 0 29.013 12.99 29.013 29.013 0 0.15-0.001 0.3-0.003 0.449l0-0.023v55.893c4.693 0 8.96 0 13.653 0h139.947v-55.893c-0.002-0.127-0.003-0.277-0.003-0.427 0-16.024 12.99-29.013 29.013-29.013 0.001 0 0.002 0 0.003 0l-0-0c16.259-0 29.44 13.181 29.44 29.44l0 0v55.893h122.027c4.693 0 8.96 0 13.653 0v-55.893c-0.136-1.062-0.213-2.291-0.213-3.538 0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44c0 1.247-0.078 2.476-0.228 3.682l0.015-0.144v66.56c68.829 22.591 122.506 74.45 147.101 140.47l0.526 1.61z","M457.813 826.88l-57.6 14.933c-2.718 0.704-5.839 1.108-9.053 1.108-20.736 0-37.547-16.81-37.547-37.547 0-2.2 0.189-4.356 0.552-6.452l-0.032 0.224 9.813-58.453c1.551-7.426 4.843-13.916 9.434-19.256l-0.047 0.056 181.333-194.987c8.292-8.988 20.129-14.598 33.276-14.598 11.876 0 22.683 4.577 30.752 12.064l-0.029-0.026 35.84 33.28c9.519 7.883 15.537 19.704 15.537 32.931 0 12.019-4.97 22.877-12.966 30.632l-0.011 0.011-180.053 195.413c-5.025 5.282-11.583 9.061-18.96 10.624l-0.24 0.043z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["calendar-edit"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5949,"id":442,"name":"calendar-edit","prevSize":32,"code":59997,"codes":[59997,59998,59999]},"setIdx":0,"setId":0,"iconIdx":130},{"icon":{"paths":["M532.053 792.747c-0.002-0.347-0.003-0.758-0.003-1.17 0-129.367 104.873-234.24 234.24-234.24 39.108 0 75.977 9.584 108.387 26.531l-1.291-0.615v-143.36c0-19.323-15.664-34.987-34.987-34.987v0h-716.8c-19.323 0-34.987 15.664-34.987 34.987h-0v242.773c0.243 127.77 103.876 231.253 231.68 231.253 0 0 0-0 0-0l247.893 0c-21.428-34.331-34.134-76.022-34.134-120.68 0-0.173 0-0.347 0.001-0.52l-0 0.027z","M856.747 298.667c1.415 3.678 2.235 7.934 2.235 12.381 0 19.294-15.429 34.984-34.622 35.405l-0.039 0.001h-682.667c-23.51-0.072-42.541-19.147-42.541-42.666 0-5.525 1.050-10.804 2.961-15.649l-0.101 0.289c26.339-62.575 77.525-110.276 140.871-131.368l1.636-0.472v-66.56c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44h0v55.467c4.267 0 8.533 0 13.227 0h139.947v-55.467c0-16.259 13.181-29.44 29.44-29.44v0c0.001-0 0.002-0 0.003-0 16.024 0 29.013 12.99 29.013 29.013 0 0.15-0.001 0.3-0.003 0.449l0-0.023v54.187h125.013c4.267 0 8.533 0 13.227 0v-54.187c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 66.56c67.744 23.127 120.347 74.891 144.13 140.47l0.51 1.61z","M376.32 566.187c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M513.28 566.187c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M375.893 702.72c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M768 622.080c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667c94.257 0 170.667-76.41 170.667-170.667v0c0-94.257-76.41-170.667-170.667-170.667v0zM835.413 815.787c5.935 5.879 9.609 14.030 9.609 23.040s-3.674 17.161-9.606 23.037l-0.003 0.003c-5.786 5.793-13.78 9.379-22.612 9.387l-0.002 0c-8.801-0.197-16.738-3.738-22.624-9.397l0.011 0.011-23.467-24.32-24.747 23.040c-5.631 5.286-13.23 8.534-21.588 8.534-0.060 0-0.121-0-0.181-0.001l0.009 0c-9.31-0.172-17.637-4.241-23.442-10.64l-0.024-0.027c-6.102-5.97-9.885-14.289-9.885-23.491 0-9.615 4.13-18.265 10.713-24.273l0.026-0.023 22.613-20.907-21.333-21.76c-2.198-4.257-3.486-9.291-3.486-14.627 0-17.909 14.518-32.427 32.427-32.427 5.999 0 11.618 1.629 16.438 4.469l-0.152-0.083 23.467 24.32 24.747-23.040c5.664-5.173 13.236-8.342 21.548-8.342 9.372 0 17.804 4.029 23.656 10.45l0.023 0.025c5.222 5.793 8.416 13.503 8.416 21.958 0 9.524-4.053 18.102-10.528 24.103l-0.021 0.019-22.613 20.907z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["calendar-remove"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5950,"id":441,"name":"calendar-remove","prevSize":32,"code":60000,"codes":[60000,60001,60002,60003,60004,60005]},"setIdx":0,"setId":0,"iconIdx":131},{"icon":{"paths":["M119.467 464.64v242.773c-0 127.718 103.536 231.253 231.253 231.253h322.56c127.718 0 231.253-103.536 231.253-231.253v0-242.773c0-19.323-15.664-34.987-34.987-34.987v0h-715.093c-19.323 0-34.987 15.664-34.987 34.987v0z","M889.6 323.413c1.414 3.677 2.233 7.93 2.233 12.375 0 19.443-15.669 35.227-35.068 35.412l-0.018 0h-682.667c-0.089 0.001-0.195 0.001-0.301 0.001-23.564 0-42.667-19.103-42.667-42.667 0-5.525 1.050-10.805 2.962-15.65l-0.101 0.289c26.614-62.67 78.091-110.383 141.717-131.371l1.643-0.469v-66.56c-0.002-0.127-0.003-0.277-0.003-0.427 0-16.024 12.99-29.013 29.013-29.013 0.001 0 0.002 0 0.003 0l-0-0c16.259-0 29.44 13.181 29.44 29.44v55.893c5.547 0 8.96 0 13.653 0h139.52v-55.893c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 55.893h123.733c4.693 0 8.96 0 13.653 0v-55.893c-0.002-0.127-0.003-0.277-0.003-0.427 0-16.024 12.99-29.013 29.013-29.013 0.001 0 0.002 0 0.003 0l-0-0c16.259-0 29.44 13.181 29.44 29.44l-0 0v66.56c68.133 23.029 121.145 74.782 145.398 140.466l0.522 1.614z","M667.733 666.453c0 86.009-69.724 155.733-155.733 155.733s-155.733-69.724-155.733-155.733c0-86.009 69.724-155.733 155.733-155.733s155.733 69.724 155.733 155.733z","M647.68 834.987c-9.019-0.157-17.14-3.879-23.038-9.812l-0.002-0.002-38.827-40.533c-8.439-5.846-13.896-15.479-13.896-26.386 0-17.673 14.327-32 32-32 11.668 0 21.877 6.245 27.468 15.574l0.081 0.145 39.253 40.107c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.292 4.849-12.373 7.82-20.149 7.82-1.018 0-2.024-0.051-3.016-0.15l0.125 0.010z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["calendar-search"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5951,"id":440,"name":"calendar-search","prevSize":32,"code":60006,"codes":[60006,60007,60008,60009]},"setIdx":0,"setId":0,"iconIdx":132},{"icon":{"paths":["M532.053 792.747c-0.002-0.347-0.003-0.758-0.003-1.17 0-129.367 104.873-234.24 234.24-234.24 39.108 0 75.977 9.584 108.387 26.531l-1.291-0.615v-143.36c0-19.323-15.664-34.987-34.987-34.987v0h-716.8c-19.323 0-34.987 15.664-34.987 34.987h-0v242.773c0.243 127.77 103.876 231.253 231.68 231.253 0 0 0-0 0-0l247.893 0c-21.428-34.331-34.134-76.022-34.134-120.68 0-0.173 0-0.347 0.001-0.52l-0 0.027z","M856.747 298.667c1.415 3.678 2.235 7.934 2.235 12.381 0 19.294-15.429 34.984-34.622 35.405l-0.039 0.001h-682.667c-23.51-0.072-42.541-19.147-42.541-42.666 0-5.525 1.050-10.804 2.961-15.649l-0.101 0.289c26.339-62.575 77.525-110.276 140.871-131.368l1.636-0.472v-66.56c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44h0v55.467c4.267 0 8.533 0 13.227 0h139.947v-55.467c0-16.259 13.181-29.44 29.44-29.44v0c0.001-0 0.002-0 0.003-0 16.024 0 29.013 12.99 29.013 29.013 0 0.15-0.001 0.3-0.003 0.449l0-0.023v54.187h125.013c4.267 0 8.533 0 13.227 0v-54.187c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 66.56c67.744 23.127 120.347 74.891 144.13 140.47l0.51 1.61z","M376.32 566.187c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M513.28 566.187c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M375.893 702.72c0 20.030-16.428 36.267-36.693 36.267s-36.693-16.237-36.693-36.267c0-20.030 16.428-36.267 36.693-36.267s36.693 16.237 36.693 36.267z","M768 622.080c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667c94.257 0 170.667-76.41 170.667-170.667v0c0-94.257-76.41-170.667-170.667-170.667v0zM864.427 777.813l-72.96 93.013c-5.89 7.534-14.967 12.34-25.168 12.373l-0.005 0c-0.032 0-0.070 0-0.109 0-10.181 0-19.237-4.819-25.010-12.3l-0.054-0.073-52.48-66.987c-5.746-5.847-9.292-13.87-9.292-22.722 0-17.909 14.518-32.427 32.427-32.427 11.635 0 21.838 6.127 27.559 15.331l0.080 0.138 26.88 34.987 47.787-60.587c5.827-7.591 14.904-12.436 25.113-12.436 7.474 0 14.341 2.597 19.749 6.938l-0.062-0.048c7.040 5.91 11.483 14.715 11.483 24.557 0 7.706-2.724 14.775-7.261 20.299l0.044-0.056z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["calendar-tick"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5952,"id":439,"name":"calendar-tick","prevSize":32,"code":60010,"codes":[60010,60011,60012,60013,60014,60015]},"setIdx":0,"setId":0,"iconIdx":133},{"icon":{"paths":["M119.467 464.64v242.773c-0 127.718 103.536 231.253 231.253 231.253h322.56c127.718 0 231.253-103.536 231.253-231.253v0-242.773c0-19.323-15.664-34.987-34.987-34.987v0h-715.093c-19.323 0-34.987 15.664-34.987 34.987v0z","M889.6 323.413c1.414 3.677 2.233 7.93 2.233 12.375 0 19.443-15.669 35.227-35.068 35.412l-0.018 0h-682.667c-0.089 0.001-0.195 0.001-0.301 0.001-23.564 0-42.667-19.103-42.667-42.667 0-5.525 1.050-10.805 2.962-15.65l-0.101 0.289c26.614-62.67 78.091-110.383 141.717-131.371l1.643-0.469v-66.56c-0.002-0.127-0.003-0.277-0.003-0.427 0-16.024 12.99-29.013 29.013-29.013 0.001 0 0.002 0 0.003 0l-0-0c16.259-0 29.44 13.181 29.44 29.44v55.893c5.547 0 8.96 0 13.653 0h139.52v-55.893c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 55.893h123.733c4.693 0 8.96 0 13.653 0v-55.893c-0.002-0.127-0.003-0.277-0.003-0.427 0-16.024 12.99-29.013 29.013-29.013 0.001 0 0.002 0 0.003 0l-0-0c16.259-0 29.44 13.181 29.44 29.44l-0 0v66.56c68.133 23.029 121.145 74.782 145.398 140.466l0.522 1.614zM372.48 554.667c-19.845 0.241-35.84 16.385-35.84 36.264 0 20.030 16.237 36.267 36.267 36.267s36.265-16.236 36.267-36.264l0-0c-0.241-20.081-16.576-36.267-36.691-36.267-0.001 0-0.002 0-0.003 0l0-0zM509.44 554.667c-19.845 0.241-35.84 16.385-35.84 36.264 0 20.030 16.237 36.267 36.267 36.267s36.265-16.236 36.267-36.264l0-0c-0.241-20.081-16.576-36.267-36.691-36.267-0.001 0-0.002 0-0.003 0l0-0zM647.68 554.667c-20.030 0-36.267 16.237-36.267 36.267s16.237 36.267 36.267 36.267h0c20.030 0 36.267-16.237 36.267-36.267s-16.237-36.267-36.267-36.267h-0zM372.053 691.2c-19.845 0.241-35.84 16.385-35.84 36.264 0 20.030 16.237 36.267 36.267 36.267s36.265-16.236 36.267-36.264l0-0c0-0.001 0-0.002 0-0.003 0-20.030-16.237-36.267-36.267-36.267-0.15 0-0.3 0.001-0.449 0.003l0.023-0zM509.013 691.2c-19.845 0.241-35.84 16.385-35.84 36.264 0 20.030 16.237 36.267 36.267 36.267s36.265-16.236 36.267-36.264l0-0c0-0.001 0-0.002 0-0.003 0-20.030-16.237-36.267-36.267-36.267-0.15 0-0.3 0.001-0.449 0.003l0.023-0zM646.827 691.2c-19.659 0.477-35.413 16.527-35.413 36.257 0 20.030 16.237 36.267 36.267 36.267 20.026 0 36.261-16.231 36.267-36.256l0-0.001c-0.24-20.082-16.575-36.269-36.691-36.269-0.151 0-0.302 0.001-0.452 0.003l0.023-0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["calendar"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5953,"id":438,"name":"calendar","prevSize":32,"code":60016,"codes":[60016,60017]},"setIdx":0,"setId":0,"iconIdx":134},{"icon":{"paths":["M191.573 85.333h337.067c53.019 0 96 42.981 96 96v661.333c0 53.019-42.981 96-96 96h-337.067c-53.019 0-96-42.981-96-96v-661.333c0-53.019 42.981-96 96-96z","M404.48 85.333v42.667c0 23.564-19.103 42.667-42.667 42.667v0 0c-23.564 0-42.667-19.103-42.667-42.667v0-42.667h85.333z","M293.973 702.72c0 36.524 29.609 66.133 66.133 66.133s66.133-29.609 66.133-66.133v0z","M360.533 365.653v0c88.837 0 160.853 72.016 160.853 160.853v0 120.747c0 15.552-12.608 28.16-28.16 28.16v0h-265.387c-15.552 0-28.16-12.608-28.16-28.16v0-120.32c-0-0.127-0.001-0.277-0.001-0.427 0-88.837 72.016-160.853 160.853-160.853 0 0 0 0 0.001 0l-0-0z","M360.107 409.6c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-54.187c0-17.673 14.327-32 32-32s32 14.327 32 32v0 54.187c0 17.673-14.327 32-32 32v0z","M896 554.667h-119.467c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h119.467c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M778.667 341.333c-0.048 0-0.105 0-0.162 0-17.673 0-32-14.327-32-32 0-12.105 6.721-22.64 16.635-28.077l0.166-0.084 116.053-61.867c4.651-2.789 10.262-4.438 16.258-4.438 17.673 0 32 14.327 32 32 0 12.565-7.242 23.438-17.779 28.674l-0.186 0.084-116.053 61.013c-4.249 2.695-9.365 4.404-14.857 4.69l-0.076 0.003z","M896 826.88c-5.623-0.063-10.901-1.476-15.546-3.93l0.186 0.090-116.053-61.867c-10.204-5.528-17.016-16.155-17.016-28.373 0-17.763 14.4-32.163 32.163-32.163 5.545 0 10.762 1.403 15.316 3.874l-0.17-0.084 114.773 63.573c9.026 5.761 14.925 15.723 14.925 27.063 0 16.468-12.439 30.030-28.434 31.804l-0.144 0.013z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["call"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5954,"id":437,"name":"call","prevSize":32,"code":60018,"codes":[60018,60019,60020,60021,60022,60023,60024,60025]},"setIdx":0,"setId":0,"iconIdx":135},{"icon":{"paths":["M865.28 158.72c-45.183-45.256-107.642-73.252-176.64-73.252s-131.457 27.996-176.637 73.249l-0.003 0.003-176.64 176.64 353.28 353.28 176.64-176.64c45.256-45.183 73.252-107.642 73.252-176.64s-27.996-131.457-73.249-176.637l-0.003-0.003z","M688.64 688.64l-176.64 176.64c-45.206 45.206-107.658 73.167-176.64 73.167-137.964 0-249.807-111.842-249.807-249.807 0-68.982 27.961-131.434 73.167-176.64l176.64-176.64z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["capsule"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5955,"id":436,"name":"capsule","prevSize":32,"code":60026,"codes":[60026,60027]},"setIdx":0,"setId":0,"iconIdx":136},{"icon":{"paths":["M151.893 430.507l36.267-91.733h-57.173c-23.471 2.333-41.651 21.977-41.651 45.867s18.18 43.533 41.459 45.851l0.192 0.015z","M893.013 338.773h-46.080l39.253 91.733h6.827c23.471-2.333 41.651-21.977 41.651-45.867s-18.18-43.533-41.459-45.851l-0.192-0.015z","M122.453 762.453v45.653c0 39.588 32.092 71.68 71.68 71.68s71.68-32.092 71.68-71.68v0-45.653z","M775.253 808.107c0 39.588 32.092 71.68 71.68 71.68s71.68-32.092 71.68-71.68v-45.653h-143.36z","M905.387 474.88l-104.107-241.493c-23.102-52.877-74.939-89.162-135.252-89.173l-298.668-0c-0.621-0.009-1.354-0.015-2.087-0.015-61.714 0-114.532 38.089-136.229 92.041l-0.351 0.987-95.147 239.36c-6.481 16.111-10.24 34.79-10.24 54.347 0 0.094 0 0.188 0 0.281l-0-0.015v231.253h794.453v-229.12c-0.026-21.162-4.579-41.254-12.742-59.369l0.369 0.915zM247.467 380.587l40.107-122.027c3.547-10.966 13.661-18.76 25.598-18.773l405.335-0c12.021 0.098 22.21 7.829 25.967 18.579l0.059 0.194 40.107 122.027c0.867 2.547 1.368 5.482 1.368 8.533 0 15.081-12.226 27.307-27.307 27.307-0.031 0-0.062-0-0.092-0l0.005 0h-485.547c-14.935-0.191-26.968-12.343-26.968-27.305 0-3.052 0.501-5.987 1.425-8.728l-0.056 0.193zM238.933 617.387c-24.742 0-44.8-20.058-44.8-44.8s20.058-44.8 44.8-44.8c24.742 0 44.8 20.058 44.8 44.8v0c0.036 0.654 0.056 1.419 0.056 2.19 0 23.564-19.103 42.667-42.667 42.667-0.77 0-1.536-0.020-2.296-0.061l0.106 0.004zM793.6 617.387c-24.742 0-44.8-20.058-44.8-44.8s20.058-44.8 44.8-44.8c24.742 0 44.8 20.058 44.8 44.8v0c0.035 0.643 0.054 1.396 0.054 2.154 0 23.564-19.103 42.667-42.667 42.667-0.469 0-0.937-0.008-1.402-0.023l0.068 0.002z","M675.84 692.48h-298.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h298.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["car-2"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5956,"id":435,"name":"car-2","prevSize":32,"code":60028,"codes":[60028,60029,60030,60031,60032,60033]},"setIdx":0,"setId":0,"iconIdx":137},{"icon":{"paths":["M314.027 675.413c0 34.875-28.272 63.147-63.147 63.147s-63.147-28.272-63.147-63.147c0-34.875 28.272-63.147 63.147-63.147s63.147 28.272 63.147 63.147z","M833.28 675.413c0 34.875-28.272 63.147-63.147 63.147s-63.147-28.272-63.147-63.147c0-34.875 28.272-63.147 63.147-63.147s63.147 28.272 63.147 63.147z","M884.053 488.533l-92.587-19.2c-12.795-3.161-23.875-9.254-32.908-17.543l0.055 0.050-151.467-146.773c-12.696-11.891-29.815-19.195-48.639-19.2l-219.734-0c-0.1-0.001-0.218-0.001-0.337-0.001-22.323 0-42.204 10.453-55.016 26.731l-0.114 0.15-80.213 101.973c-8.897 11.368-20.985 19.868-34.911 24.186l-0.502 0.134-30.72 8.533c-30.010 9.241-51.472 36.653-51.627 69.102l-0 0.018v97.28c0.123 16.609 6.773 31.642 17.507 42.681l-0.014-0.014c9.758 10.040 22.991 16.657 37.754 17.905l0.219 0.015c1.029-60.004 49.912-108.251 110.065-108.251 57.448 0 104.618 44.007 109.638 100.149l0.030 0.422c0.222 4.621 3.913 8.311 8.513 8.533l0.020 0.001h282.453c4.72-0.202 8.525-3.859 8.957-8.496l0.003-0.037c2.128-58.922 50.407-105.881 109.653-105.881 60.597 0 109.721 49.124 109.721 109.721 0 1.35-0.024 2.695-0.073 4.034l0.006-0.194c14.401-0.519 27.449-5.917 37.634-14.579l-0.087 0.072c13.087-11.324 21.322-27.952 21.333-46.505l0-0.002v-56.747c0-33.2-23.122-61-54.142-68.175l-0.472-0.092zM426.667 332.8v131.413h-107.52c-20.719-0.023-37.506-16.825-37.506-37.547 0-7.796 2.376-15.037 6.443-21.039l-0.084 0.132 37.547-56.32c6.835-10.095 18.248-16.642 31.189-16.642 0.135 0 0.27 0.001 0.405 0.002l-0.021-0zM609.707 464.213h-119.893v-130.987h68.693c10.99 0.038 20.863 4.791 27.705 12.342l0.028 0.032 50.347 55.893c6.010 6.631 9.689 15.473 9.689 25.174 0 20.693-16.739 37.476-37.416 37.546l-0.007 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["car-3"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5957,"id":434,"name":"car-3","prevSize":32,"code":60034,"codes":[60034,60035,60036]},"setIdx":0,"setId":0,"iconIdx":138},{"icon":{"paths":["M587.093 816.213h-165.973c-0.041-0-0.089-0-0.138-0-35.023 0-63.688 27.225-65.985 61.666l-0.011 0.2v3.84c-2.302 34.778-30.997 62.135-66.118 62.293l-0.016 0h-163.84c-36.661-0.13-66.331-29.88-66.331-66.56 0-1.802 0.072-3.587 0.212-5.353l-0.015 0.233 28.587-356.693c5.003-58.968 54.089-104.938 113.918-104.96l621.229-0c0.622-0.012 1.356-0.019 2.091-0.019 59.855 0 108.968 45.988 113.934 104.558l0.029 0.421 28.587 356.693c0.126 1.533 0.197 3.318 0.197 5.12 0 36.679-29.669 66.429-66.318 66.56l-0.012 0h-181.76c-34.144-0.266-62.149-26.2-65.682-59.442l-0.025-0.291v-8.96c-3.363-33.434-31.357-59.317-65.395-59.317-0.41 0-0.818 0.004-1.226 0.011l0.061-0.001z","M201.387 410.453h621.227c14.464 0.174 28.223 2.977 40.892 7.952l-0.785-0.272-42.667-233.387c-11.235-59.8-62.838-104.51-124.965-104.96l-0.048-0h-377.173c-62.176 0.449-113.778 45.16-124.889 104.165l-0.125 0.795-42.667 235.52h5.973c13.283-6.169 28.829-9.781 45.215-9.813l0.011-0z","M879.787 347.307h-756.053c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h756.053c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M795.307 597.333h-138.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h138.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M368.64 597.333h-138.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h138.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["car"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5958,"id":433,"name":"car","prevSize":32,"code":60037,"codes":[60037,60038,60039,60040,60041]},"setIdx":0,"setId":0,"iconIdx":139},{"icon":{"paths":["M206.080 84.48h123.733c66.687 0 120.747 54.060 120.747 120.747v123.733c0 66.687-54.060 120.747-120.747 120.747h-123.733c-66.687 0-120.747-54.060-120.747-120.747v-123.733c0-66.687 54.060-120.747 120.747-120.747z","M694.187 85.76h123.733c66.687 0 120.747 54.060 120.747 120.747v123.733c0 66.687-54.060 120.747-120.747 120.747h-123.733c-66.687 0-120.747-54.060-120.747-120.747v-123.733c0-66.687 54.060-120.747 120.747-120.747z","M206.080 573.013h123.733c66.687-0 120.747 54.060 120.747 120.747v123.733c0 66.687-54.060 120.747-120.747 120.747h-123.733c-66.687 0-120.747-54.060-120.747-120.747v-123.733c0-66.687 54.060-120.747 120.747-120.747z","M694.187 574.293h123.733c66.687 0 120.747 54.060 120.747 120.747v123.733c0 66.687-54.060 120.747-120.747 120.747h-123.733c-66.687 0-120.747-54.060-120.747-120.747v-123.733c0-66.687 54.060-120.747 120.747-120.747z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["category"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5959,"id":432,"name":"category","prevSize":32,"code":60042,"codes":[60042,60043,60044,60045]},"setIdx":0,"setId":0,"iconIdx":140},{"icon":{"paths":["M618.667 512c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667s106.667 47.756 106.667 106.667z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cd"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5960,"id":431,"name":"cd","prevSize":32,"code":60046,"codes":[60046,60047]},"setIdx":0,"setId":0,"iconIdx":141},{"icon":{"paths":["M498.773 773.12c-144.213 0-261.12-116.907-261.12-261.12s116.907-261.12 261.12-261.12v0c0.421-0.003 0.919-0.004 1.418-0.004 52.719 0 101.716 15.936 142.437 43.253l-0.922-0.582c8.415 5.849 13.854 15.468 13.854 26.358 0 6.017-1.661 11.646-4.548 16.454l0.081-0.145c-5.867 8.242-15.387 13.553-26.148 13.553-6.103 0-11.807-1.708-16.659-4.673l0.14 0.080c-30.369-20.071-67.637-32.020-107.695-32.020-108.866 0-197.12 88.254-197.12 197.12s88.254 197.12 197.12 197.12c62.018 0 117.347-28.641 153.482-73.417l0.294-0.376c5.913-7.189 14.81-11.739 24.768-11.739 7.61 0 14.6 2.657 20.092 7.093l-0.061-0.047c7.248 5.991 11.831 14.984 11.831 25.046 0 7.468-2.525 14.346-6.767 19.828l0.055-0.075c-48.004 60.769-121.691 99.416-204.404 99.416-0.439 0-0.878-0.001-1.317-0.003l0.068 0zM736.427 384c-27.57 0-49.92 22.35-49.92 49.92s22.35 49.92 49.92 49.92c27.57 0 49.92-22.35 49.92-49.92v0c0-27.57-22.35-49.92-49.92-49.92h0z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["celsius"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5961,"id":430,"name":"celsius","prevSize":32,"code":60048,"codes":[60048,60049]},"setIdx":0,"setId":0,"iconIdx":142},{"icon":{"paths":["M340.907 85.333h347.307c140.442 0 254.293 113.851 254.293 254.293v344.747c0 140.442-113.851 254.293-254.293 254.293h-347.307c-140.442 0-254.293-113.851-254.293-254.293v-344.747c0-140.442 113.851-254.293 254.293-254.293z","M692.907 624.213c-0.001 0-0.003 0-0.004 0-9.26 0-17.601-3.933-23.445-10.22l-0.018-0.020-112.213-122.88c-0.805-0.668-1.848-1.073-2.987-1.073s-2.182 0.405-2.994 1.079l0.008-0.006-65.707 53.76c-11.623 9.62-26.683 15.456-43.106 15.456-19.497 0-37.073-8.225-49.447-21.394l-0.033-0.036-102.4-106.667c-3.234-4.917-5.159-10.945-5.159-17.422 0-17.673 14.327-32 32-32 7.446 0 14.298 2.543 19.735 6.808l-0.070-0.053 102.4 106.667c0.7 0.73 1.684 1.184 2.773 1.184s2.073-0.454 2.772-1.183l0.001-0.001 66.987-55.040c11.65-9.543 26.7-15.327 43.102-15.327 19.902 0 37.815 8.517 50.293 22.104l0.045 0.050 111.787 122.453c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.879 5.331-13.718 8.594-22.319 8.594-0.704 0-1.403-0.022-2.096-0.065l0.095 0.005z","M735.147 670.293h-124.16c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h92.16v-94.293c0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427v0 128c-0.692 16.89-14.552 30.32-31.548 30.32-0.459 0-0.916-0.010-1.37-0.029l0.065 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-line-down-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5962,"id":429,"name":"chart-line-down-2","prevSize":32,"code":60050,"codes":[60050,60051,60052]},"setIdx":0,"setId":0,"iconIdx":143},{"icon":{"paths":["M843.52 699.307c-9.773-0.022-18.5-4.48-24.277-11.467l-0.043-0.053-155.733-182.613c-9.684-11.29-23.965-18.397-39.906-18.397-12.961 0-24.825 4.699-33.981 12.486l0.075-0.062-42.667 37.12c-20.199 17.876-46.919 28.791-76.187 28.791-34.563 0-65.57-15.221-86.686-39.325l-0.114-0.133-178.773-196.267c-6.301-5.861-10.23-14.198-10.23-23.454 0-17.673 14.327-32 32-32 10.427 0 19.69 4.987 25.532 12.707l0.058 0.080 178.773 196.693c9.639 10.613 23.493 17.25 38.897 17.25 13.033 0 24.957-4.751 34.134-12.616l-0.071 0.059 42.667-37.547c20.149-16.946 46.38-27.243 75.017-27.243 35.472 0 67.253 15.798 88.693 40.741l0.13 0.155 155.733 182.613c4.83 5.573 7.774 12.896 7.774 20.907 0 17.673-14.327 32-32 32-0.033 0-0.066-0-0.099-0l0.005 0z","M906.24 938.667h-577.707c-0.127 0-0.278 0-0.428 0-134.080 0-242.773-108.693-242.773-242.773 0-0.3 0.001-0.6 0.002-0.9l-0 0.046v-577.707c0-17.673 14.327-32 32-32s32 14.327 32 32v0 577.707c0.243 98.786 80.38 178.773 179.199 178.773 0 0 0-0 0-0l577.707-0c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-line-down"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5963,"id":428,"name":"chart-line-down","prevSize":32,"code":60053,"codes":[60053,60054]},"setIdx":0,"setId":0,"iconIdx":144},{"icon":{"paths":["M323.84 635.307c-8.483-0.028-16.164-3.444-21.764-8.964l0.004 0.004c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 101.973-106.667c12.2-12.631 29.286-20.473 48.205-20.473 16.267 0 31.18 5.799 42.785 15.442l-0.11-0.089 65.707 53.333c0.7 0.73 1.684 1.184 2.773 1.184s2.073-0.454 2.772-1.183l0.001-0.001 111.36-122.453c5.9-7.8 15.163-12.787 25.59-12.787 17.673 0 32 14.327 32 32 0 9.255-3.929 17.593-10.211 23.436l-0.020 0.018-111.36 122.453c-12.537 13.782-30.543 22.399-50.562 22.399-16.3 0-31.266-5.713-43.004-15.245l0.126 0.099-65.707-53.76c-0.628-0.71-1.542-1.156-2.56-1.156s-1.932 0.445-2.557 1.152l-0.003 0.004-101.973 106.667c-5.999 6.032-14.292 9.776-23.46 9.813l-0.007 0z","M832.853 952.747l-26.027-14.080c-5.536-3.397-12.24-5.408-19.413-5.408s-13.877 2.012-19.577 5.502l0.164-0.093-26.453 15.787c-5.569 3.271-12.266 5.202-19.414 5.202-21.443 0-38.827-17.383-38.827-38.827 0-3.209 0.389-6.327 1.123-9.309l-0.055 0.266 6.4-29.867c0.401-2.196 0.63-4.724 0.63-7.305 0-12.032-4.98-22.901-12.992-30.657l-0.011-0.011-22.613-20.48c-7.97-7.283-12.95-17.723-12.95-29.326 0-20.163 15.038-36.813 34.51-39.346l0.2-0.021 29.867-3.413c14.26-1.589 26.068-10.696 31.477-23.215l0.097-0.252 9.387-22.187c7.152-14.123 21.559-23.635 38.187-23.635s31.034 9.512 38.075 23.391l0.112 0.243 9.387 21.76c5.505 12.77 17.313 21.878 31.397 23.451l0.176 0.016 29.867 2.987c19.849 2.38 35.086 19.117 35.086 39.413 0 11.579-4.96 22-12.87 29.254l-0.029 0.027-22.187 20.48c-7.945 7.281-12.909 17.705-12.909 29.288 0 3.079 0.351 6.075 1.014 8.952l-0.052-0.267 6.4 30.293c0.475 2.279 0.747 4.897 0.747 7.579 0 21.443-17.383 38.827-38.827 38.827-7.018 0-13.602-1.862-19.283-5.119l0.189 0.1z","M622.080 896l2.987-15.787-11.52-10.667c-21.172-19.414-34.396-47.201-34.396-78.077 0-11.431 1.813-22.439 5.166-32.752l-0.211 0.749c11.831-38.452 44.684-66.872 84.821-72.053l0.512-0.054h15.787l3.413-8.533c16.318-37.973 53.282-64.141 96.39-64.426l0.036-0c0.19-0.001 0.415-0.002 0.639-0.002 42.945 0 79.792 26.11 95.532 63.322l0.256 0.68 3.84 8.107h15.36c13.365 1.55 25.497 5.635 36.314 11.767l-0.474-0.247c0-5.547 0-11.093 0-17.067v-339.627c0.008-0.765 0.013-1.668 0.013-2.573 0-139.076-112.022-251.987-250.757-253.426l-0.136-0.001h-347.733c-139.909 1.925-252.587 115.793-252.587 255.977 0 0.008 0 0.016 0 0.024l-0-0.001v341.333c-0 0.013-0 0.028-0 0.043 0 139.735 111.955 253.321 251.060 255.953l0.246 0.004h284.16c-1.029-5.496-1.617-11.818-1.617-18.278 0-8.655 1.056-17.064 3.047-25.104l-0.15 0.716z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-line-star"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5964,"id":427,"name":"chart-line-star","prevSize":32,"code":60055,"codes":[60055,60056,60057]},"setIdx":0,"setId":0,"iconIdx":145},{"icon":{"paths":["M907.52 938.667h-569.173c-138.767-1.655-250.876-113.465-253.011-251.958l-0.002-0.202v-570.88c0-17.673 14.327-32 32-32s32 14.327 32 32v0 570.88c0.242 104.763 85.104 189.625 189.844 189.867l0.023 0h568.32c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M226.987 699.733c-0.028 0-0.061 0-0.094 0-17.673 0-32-14.327-32-32 0-8.011 2.943-15.334 7.808-20.947l-0.034 0.040 155.733-183.040c21.493-25.050 53.186-40.82 88.562-40.82 28.778 0 55.118 10.436 75.443 27.731l-0.165-0.137 42.667 37.12c9.28 8.444 21.668 13.614 35.264 13.614 15.9 0 30.148-7.071 39.772-18.239l0.057-0.068 178.773-196.267c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c6.347 5.935 10.303 14.359 10.303 23.707 0 8.273-3.098 15.823-8.198 21.552l0.028-0.033-178.773 196.267c-21.323 23.548-52.009 38.279-86.137 38.279-28.738 0-55.035-10.445-75.304-27.746l0.161 0.134-42.667-37.12c-9.058-7.83-20.95-12.6-33.956-12.6-15.962 0-30.245 7.184-39.794 18.496l-0.064 0.078-158.293 180.48c-5.82 7.040-14.547 11.498-24.316 11.52l-0.004 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-line-up-2"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5965,"id":426,"name":"chart-line-up-2","prevSize":32,"code":60058,"codes":[60058,60059]},"setIdx":0,"setId":0,"iconIdx":146},{"icon":{"paths":["M905.387 938.667h-577.707c-133.747-0.242-242.104-108.6-242.347-242.323l-0-0.023v-577.707c0-17.673 14.327-32 32-32s32 14.327 32 32v0 577.707c0 98.498 79.849 178.347 178.347 178.347v0h577.707c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M226.987 699.733c-0.028 0-0.061 0-0.094 0-17.673 0-32-14.327-32-32 0-8.011 2.943-15.334 7.808-20.947l-0.034 0.040 155.733-183.040c21.493-25.050 53.186-40.82 88.562-40.82 28.778 0 55.118 10.436 75.443 27.731l-0.165-0.137 42.667 37.12c9.28 8.444 21.668 13.614 35.264 13.614 15.9 0 30.148-7.071 39.772-18.239l0.057-0.068 178.773-196.267c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c6.347 5.935 10.303 14.359 10.303 23.707 0 8.273-3.098 15.823-8.198 21.552l0.028-0.033-178.773 196.267c-21.323 23.548-52.009 38.279-86.137 38.279-28.738 0-55.035-10.445-75.304-27.746l0.161 0.134-42.667-37.12c-9.058-7.83-20.95-12.6-33.956-12.6-15.962 0-30.245 7.184-39.794 18.496l-0.064 0.078-158.293 180.48c-5.82 7.040-14.547 11.498-24.316 11.52l-0.004 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-line-up"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5966,"id":425,"name":"chart-line-up","prevSize":32,"code":60060,"codes":[60060,60061]},"setIdx":0,"setId":0,"iconIdx":147},{"icon":{"paths":["M339.627 85.333h346.027c140.442 0 254.293 113.851 254.293 254.293v344.747c0 140.442-113.851 254.293-254.293 254.293h-346.027c-140.442 0-254.293-113.851-254.293-254.293v-344.747c0-140.442 113.851-254.293 254.293-254.293z","M323.413 635.307c-0.097 0.001-0.211 0.002-0.325 0.002-8.521 0-16.242-3.421-21.866-8.965l0.004 0.004c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 101.973-106.667c12.375-12.485 29.531-20.215 48.491-20.215 16.272 0 31.214 5.693 42.943 15.196l-0.128-0.1 66.133 53.76c0.7 0.73 1.684 1.184 2.773 1.184s2.073-0.454 2.772-1.183l0.001-0.001 112.213-123.733c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-111.787 122.453c-12.598 13.693-30.604 22.243-50.607 22.243-16.261 0-31.202-5.65-42.967-15.094l0.134 0.104-65.707-53.76c-0.7-0.73-1.684-1.184-2.773-1.184s-2.073 0.454-2.772 1.183l-0.001 0.001-102.4 106.667c-5.692 4.945-13.146 7.995-21.31 8.106l-0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-line"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5967,"id":424,"name":"chart-line","prevSize":32,"code":60062,"codes":[60062,60063]},"setIdx":0,"setId":0,"iconIdx":148},{"icon":{"paths":["M554.667 364.373v-232.96c-0.002-0.164-0.004-0.357-0.004-0.55 0-23.564 19.103-42.667 42.667-42.667 2.412 0 4.777 0.2 7.080 0.585l-0.249-0.034c173.8 21.588 310.448 156.637 334.277 327.796l0.23 2.018c0.35 2.053 0.55 4.418 0.55 6.83 0 23.564-19.103 42.667-42.667 42.667-0.193 0-0.387-0.001-0.58-0.004l0.029 0h-236.373c-0.381 0.005-0.83 0.008-1.28 0.008-57.261 0-103.68-46.419-103.68-103.68 0-0.003 0-0.005 0-0.008l-0 0z","M469.333 501.76v-261.973c0-0.004 0-0.008 0-0.013 0-35.346-28.654-64-64-64-4.531 0-8.952 0.471-13.217 1.366l0.417-0.073c-176.597 36.924-307.338 191.329-307.338 376.27 0 3.619 0.050 7.225 0.149 10.82l-0.012-0.53c7.277 208.715 178.224 375.149 388.045 375.149 3.229 0 6.448-0.039 9.658-0.118l-0.476 0.009c65.24-1.833 125.869-19.972 178.447-50.46l-1.807 0.967c18.939-11.138 31.45-31.415 31.45-54.615 0-17.725-7.303-33.743-19.063-45.212l-0.013-0.013-124.587-123.733c-46.37-40.010-76.015-98.307-77.648-163.56l-0.006-0.28z","M935.68 613.12c-10.007 61.393-33.156 116.026-66.508 162.893l0.802-1.186c-9.818 14.208-26.019 23.398-44.366 23.398-14.618 0-27.874-5.835-37.565-15.302l0.010 0.010-164.693-162.987c-6.464-6.917-10.434-16.236-10.434-26.483 0-20.911 16.531-37.961 37.238-38.795l0.076-0.002h232.533c0.087-0.001 0.189-0.001 0.292-0.001 29.22 0 52.907 23.687 52.907 52.907 0 1.954-0.106 3.883-0.312 5.783l0.021-0.235z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-pie-3"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5968,"id":423,"name":"chart-pie-3","prevSize":32,"code":60064,"codes":[60064,60065,60066]},"setIdx":0,"setId":0,"iconIdx":149},{"icon":{"paths":["M560.64 358.4v-210.347c-0.007-0.342-0.011-0.746-0.011-1.15 0-34.639 28.081-62.72 62.72-62.72 4.23 0 8.362 0.419 12.357 1.217l-0.4-0.067c153.572 30.746 272.615 149.788 302.949 300.906l0.411 2.454c0.73 3.592 1.148 7.721 1.148 11.947 0 34.593-28.006 62.645-62.581 62.72l-0.007 0h-211.627c-57.968 0-104.96-46.992-104.96-104.96v0z","M560.64 665.6v210.347c-0.007 0.342-0.011 0.746-0.011 1.15 0 34.639 28.081 62.72 62.72 62.72 4.23 0 8.362-0.419 12.357-1.217l-0.4 0.067c153.572-30.746 272.615-149.788 302.949-300.906l0.411-2.454c0.73-3.592 1.148-7.721 1.148-11.947 0-34.593-28.006-62.645-62.581-62.72l-0.007-0h-211.627c-57.968 0-104.96 46.992-104.96 104.96v-0z","M512 864.427c-0.272 37.024-30.349 66.933-67.412 66.933-4.529 0-8.953-0.447-13.231-1.298l0.429 0.071c-196.354-40.918-341.761-212.545-341.761-418.133s145.407-377.215 338.988-417.649l2.773-0.485c3.849-0.78 8.273-1.227 12.802-1.227 37.063 0 67.14 29.909 67.411 66.907l0 0.026z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-pie-4"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5969,"id":422,"name":"chart-pie-4","prevSize":32,"code":60067,"codes":[60067,60068,60069]},"setIdx":0,"setId":0,"iconIdx":150},{"icon":{"paths":["M557.227 347.733v-194.133c-0.011-0.465-0.018-1.013-0.018-1.563 0-37.703 30.564-68.267 68.267-68.267 5.146 0 10.159 0.569 14.98 1.649l-0.455-0.086c149.67 33.211 265.455 148.996 298.182 296.071l0.485 2.595c0.823 3.977 1.294 8.547 1.294 13.227 0 37.703-30.564 68.267-68.267 68.267-0.005 0-0.010-0-0.014-0l-195.413 0c-0.002 0-0.004 0-0.007 0-65.294 0-118.31-52.569-119.033-117.692l-0.001-0.068z","M676.267 531.2c-101.228-0.242-183.225-82.238-183.467-183.443l-0-0.023v-177.067c-7.253 0-14.507 0-21.76 0-212.077 0-384 171.923-384 384s171.923 384 384 384c212.077 0 384-171.923 384-384v0c0-7.253 0-14.507 0-21.76z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-pie-simple"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5970,"id":421,"name":"chart-pie-simple","prevSize":32,"code":60070,"codes":[60070,60071]},"setIdx":0,"setId":0,"iconIdx":151},{"icon":{"paths":["M469.333 853.333c-1.046 46.318-38.841 83.466-85.313 83.466-7.744 0-15.246-1.031-22.378-2.964l0.598 0.138c-161.444-47.832-277.214-194.823-277.214-368.853s115.769-321.021 274.497-368.161l2.718-0.693c6.529-1.792 14.025-2.822 21.762-2.822 46.92 0 84.996 37.868 85.331 84.71l0 0.032z","M554.667 745.813c1.046 46.318 38.841 83.466 85.313 83.466 7.744 0 15.246-1.031 22.378-2.964l-0.598 0.138c161.444-47.832 277.214-194.823 277.214-368.853s-115.769-321.021-274.497-368.161l-2.718-0.693c-6.529-1.792-14.025-2.822-21.762-2.822-46.92 0-84.996 37.868-85.331 84.71l-0 0.032z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-pie-too"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5971,"id":420,"name":"chart-pie-too","prevSize":32,"code":60072,"codes":[60072,60073]},"setIdx":0,"setId":0,"iconIdx":152},{"icon":{"paths":["M886.613 945.067h-749.227c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h749.227c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M470.613 264.107h40.96c27.806 0 50.347 22.541 50.347 50.347v451.84c0 27.806-22.541 50.347-50.347 50.347h-40.96c-27.806 0-50.347-22.541-50.347-50.347v-451.84c0-27.806 22.541-50.347 50.347-50.347z","M718.933 78.933h30.72c30.633 0 55.467 24.833 55.467 55.467v626.773c0 30.633-24.833 55.467-55.467 55.467h-30.72c-30.633 0-55.467-24.833-55.467-55.467v-626.773c0-30.633 24.833-55.467 55.467-55.467z","M229.547 476.587h40.96c27.806 0 50.347 22.541 50.347 50.347v239.36c0 27.806-22.541 50.347-50.347 50.347h-40.96c-27.806 0-50.347-22.541-50.347-50.347v-239.36c0-27.806 22.541-50.347 50.347-50.347z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-simple-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5972,"id":419,"name":"chart-simple-2","prevSize":32,"code":60074,"codes":[60074,60075,60076,60077]},"setIdx":0,"setId":0,"iconIdx":153},{"icon":{"paths":["M886.613 943.787h-749.227c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h749.227c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M471.893 264.96h40.96c27.806 0 50.347 22.541 50.347 50.347v450.987c0 27.806-22.541 50.347-50.347 50.347h-40.96c-27.806 0-50.347-22.541-50.347-50.347v-450.987c0-27.806 22.541-50.347 50.347-50.347z","M266.24 817.067h-30.72c-30.633 0-55.467-24.833-55.467-55.467l0-625.493c0-30.633 24.833-55.467 55.467-55.467h30.72c30.633 0 55.467 24.833 55.467 55.467l-0 625.493c0 30.633-24.833 55.467-55.467 55.467z","M712.96 477.013h40.96c27.806 0 50.347 22.541 50.347 50.347v238.933c0 27.806-22.541 50.347-50.347 50.347h-40.96c-27.806 0-50.347-22.541-50.347-50.347v-238.933c0-27.806 22.541-50.347 50.347-50.347z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-simple-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5973,"id":418,"name":"chart-simple-3","prevSize":32,"code":60078,"codes":[60078,60079,60080,60081]},"setIdx":0,"setId":0,"iconIdx":154},{"icon":{"paths":["M886.613 941.227h-749.227c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h749.227c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M718.080 265.813h40.96c27.806 0 50.347 22.541 50.347 50.347v446.293c0 27.806-22.541 50.347-50.347 50.347h-40.96c-27.806 0-50.347-22.541-50.347-50.347v-446.293c0-27.806 22.541-50.347 50.347-50.347z","M478.72 82.773h31.573c30.398 0 55.040 24.642 55.040 55.040v619.947c0 30.398-24.642 55.040-55.040 55.040h-31.573c-30.398 0-55.040-24.642-55.040-55.040v-619.947c0-30.398 24.642-55.040 55.040-55.040z","M230.4 476.16h40.96c27.806 0 50.347 22.541 50.347 50.347v235.947c0 27.806-22.541 50.347-50.347 50.347h-40.96c-27.806 0-50.347-22.541-50.347-50.347v-235.947c0-27.806 22.541-50.347 50.347-50.347z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart-simple"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5974,"id":417,"name":"chart-simple","prevSize":32,"code":60082,"codes":[60082,60083,60084,60085]},"setIdx":0,"setId":0,"iconIdx":155},{"icon":{"paths":["M554.667 210.773c0 26.027 10.24 42.667 25.6 45.227 109.28 32.006 187.735 131.337 187.735 248.993 0 0.363-0.001 0.727-0.002 1.090l0-0.056c-0.074 22.916-3.026 45.108-8.514 66.279l0.408-1.853c-0.925 3.084-1.457 6.629-1.457 10.298 0 13.825 7.558 25.885 18.767 32.273l0.183 0.096 69.547 42.667c7.435 4.339 16.368 6.901 25.9 6.901 24.228 0 44.59-16.553 50.394-38.966l0.079-0.362c9.771-33.654 15.391-72.312 15.391-112.283 0-1.776-0.011-3.549-0.033-5.32l0.003 0.269c0.010-1.073 0.015-2.342 0.015-3.612 0-199.103-134.893-366.699-318.274-416.385l-3.021-0.697c-3.488-0.848-7.492-1.334-11.61-1.334-28.277 0-51.2 22.923-51.2 51.2 0 1.070 0.033 2.132 0.097 3.185l-0.007-0.144z","M804.267 725.333c15.823 9.237 26.286 26.134 26.286 45.476 0 13.752-5.289 26.268-13.945 35.626l0.032-0.035c-76.775 80.503-184.862 130.56-304.64 130.56s-227.865-50.057-304.482-130.393l-0.158-0.167c-8.623-9.323-13.913-21.839-13.913-35.591 0-19.341 10.463-36.239 26.038-45.341l0.249-0.134 69.547-40.533c5.206-3.118 11.485-4.962 18.195-4.962 9.471 0 18.084 3.674 24.492 9.674l-0.020-0.018c45.863 45.858 109.219 74.222 179.2 74.222s133.337-28.364 179.2-74.222l-0 0c6.388-5.982 15.001-9.655 24.472-9.655 6.71 0 12.989 1.844 18.359 5.053l-0.164-0.091zM246.613 611.413c11.392-6.484 18.95-18.544 18.95-32.369 0-3.669-0.532-7.213-1.524-10.56l0.067 0.263c-4.94-18.762-7.883-40.346-8.106-62.582l-0.001-0.138c-0.001-0.307-0.002-0.67-0.002-1.034 0-117.655 78.455-216.986 185.904-248.532l1.832-0.461c14.952-4.702 25.608-18.439 25.608-34.665 0-0.263-0.003-0.526-0.008-0.788l0.001 0.039v-82.347c0.058-0.909 0.090-1.971 0.090-3.040 0-28.277-22.923-51.2-51.2-51.2-4.118 0-8.122 0.486-11.959 1.404l0.349-0.070c-186.402 50.382-321.295 217.979-321.295 417.082 0 1.27 0.005 2.538 0.016 3.805l-0.001-0.194c-0.002 0.515-0.004 1.124-0.004 1.734 0 39.936 5.61 78.561 16.085 115.131l-0.722-2.945c5.884 22.775 26.246 39.327 50.474 39.327 9.531 0 18.464-2.562 26.148-7.034l-0.248 0.133z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chart"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5975,"id":416,"name":"chart","prevSize":32,"code":60086,"codes":[60086,60087]},"setIdx":0,"setId":0,"iconIdx":156},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M499.627 670.293l256-256c7.753-7.753 12.548-18.463 12.548-30.293 0-23.661-19.181-42.841-42.841-42.841-11.83 0-22.541 4.795-30.293 12.548l0-0-225.707 226.133-140.373-140.8c-7.753-7.753-18.463-12.548-30.293-12.548-23.661 0-42.841 19.181-42.841 42.841 0 11.83 4.795 22.541 12.548 30.293l170.667 170.667c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["check-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5976,"id":415,"name":"check-circle","prevSize":32,"code":60088,"codes":[60088,60089]},"setIdx":0,"setId":0,"iconIdx":157},{"icon":{"paths":["M333.227 85.333h357.547c136.908 0 247.893 110.986 247.893 247.893v357.547c0 136.908-110.986 247.893-247.893 247.893h-357.547c-136.908 0-247.893-110.986-247.893-247.893v-357.547c0-136.908 110.986-247.893 247.893-247.893z","M499.627 670.293l256-256c7.753-7.753 12.548-18.463 12.548-30.293 0-23.661-19.181-42.841-42.841-42.841-11.83 0-22.541 4.795-30.293 12.548l0-0-225.707 226.133-140.373-140.8c-7.753-7.753-18.463-12.548-30.293-12.548-23.661 0-42.841 19.181-42.841 42.841 0 11.83 4.795 22.541 12.548 30.293l170.667 170.667c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["check-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5977,"id":414,"name":"check-square","prevSize":32,"code":60090,"codes":[60090,60091]},"setIdx":0,"setId":0,"iconIdx":158},{"icon":{"paths":["M452.267 725.333c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003-195.84-197.547c-7.753-7.753-12.548-18.463-12.548-30.293 0-23.661 19.181-42.841 42.841-42.841 11.83 0 22.541 4.795 30.293 12.548l-0-0 165.547 165.973 284.587-285.013c7.753-7.753 18.463-12.548 30.293-12.548 23.661 0 42.841 19.181 42.841 42.841 0 11.83-4.795 22.541-12.548 30.293l-314.88 314.88c-7.663 8.151-18.305 13.425-30.179 14.075l-0.115 0.005z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check"]},"attrs":[{}],"properties":{"order":5978,"id":413,"name":"check","prevSize":32,"code":60092},"setIdx":0,"setId":0,"iconIdx":159},{"icon":{"paths":["M348.587 404.48h-92.587c-1.566 0.271-3.369 0.427-5.208 0.427-17.673 0-32-14.327-32-32s14.327-32 32-32c1.839 0 3.642 0.155 5.397 0.453l-0.189-0.027h92.587c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M523.093 404.48h-58.027c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h58.027c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M348.587 544h-92.587c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h92.587c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M523.093 682.667h-96.427c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h94.72c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M523.093 544h-58.027c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h58.027c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M656.64 808.107v-661.333c0.008-0.293 0.013-0.638 0.013-0.984 0-20.736-16.81-37.547-37.547-37.547-8.166 0-15.723 2.607-21.885 7.034l0.112-0.077-51.627 33.28c-5.993 4.054-13.381 6.471-21.333 6.471s-15.341-2.418-21.469-6.558l0.136 0.087-85.333-57.173c-5.976-4.107-13.369-6.559-21.333-6.559s-15.357 2.452-21.462 6.643l0.129-0.084-83.2 64c-5.976 4.107-13.369 6.559-21.333 6.559s-15.357-2.452-21.462-6.643l0.129 0.084-55.040-36.693c-6.065-4.287-13.613-6.853-21.76-6.853-20.972 0-37.973 17.001-37.973 37.973 0 0.009 0 0.019 0 0.028l-0-0.001v658.347c0 72.106 58.454 130.56 130.56 130.56v0h522.24c-72.106-0-130.56-58.454-130.56-130.56l-0 0z","M917.333 682.667c0.017-0.643 0.027-1.401 0.027-2.161 0-47.128-38.205-85.333-85.333-85.333-0.76 0-1.517 0.010-2.272 0.030l0.112-0.002h-173.653v208.64c-0.013 0.694-0.020 1.512-0.020 2.332 0 63.48 44.291 116.615 103.657 130.189l0.897 0.173c7.825 1.672 16.814 2.629 26.028 2.629 71.871 0 130.133-58.263 130.133-130.133 0-0.174-0-0.349-0.001-0.523l0 0.027v-98.133z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cheque"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5979,"id":412,"name":"cheque","prevSize":32,"code":60093,"codes":[60093,60094,60095,60096,60097,60098,60099]},"setIdx":0,"setId":0,"iconIdx":160},{"icon":{"paths":["M966.4 512c0 238.234-193.126 431.36-431.36 431.36s-431.36-193.126-431.36-431.36c0-238.234 193.126-431.36 431.36-431.36s431.36 193.126 431.36 431.36z","M938.667 359.68c-10.225-26.346-21.264-48.682-33.993-69.887l1.139 2.047c-45.997-5.784-99.226-9.085-153.225-9.085-86.305 0-170.64 8.432-252.227 24.517l8.224-1.352c-92.345 13.465-164.806 84.481-180.301 174.949l-0.179 1.264c-50.004-71.249-91.569-153.383-120.552-241.238l-1.901-6.655c-16.444 18.966-31.539 40.042-44.592 62.453l-1.061 1.973c55.836 138.359 129.623 257.492 220.19 361.646l-1.31-1.539h2.56c38.626 40.904 93.077 66.51 153.512 66.986l0.088 0.001c25.649-0.199 50.111-5.034 72.67-13.705l-1.416 0.479c-45.753 83.427-95.090 155.355-150.663 221.896l1.757-2.162c23.205 4.585 49.898 7.224 77.203 7.253l0.024 0c78.578-98.034 144.686-210.773 193.147-332.454l3.12-8.88c10.679-24.409 16.945-52.843 17.067-82.728l0-0.046c-0.459-67.134-31.856-126.842-80.631-165.639l-0.436-0.335c20.345-0.823 44.226-1.291 68.217-1.291 71.727 0 142.477 4.189 212.016 12.336l-8.446-0.805zM682.667 516.693c-0 82.239-66.668 148.907-148.907 148.907s-148.907-66.668-148.907-148.907c0-82.239 66.668-148.907 148.907-148.907h0c82.239 0 148.907 66.668 148.907 148.907h0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["chrome"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5980,"id":411,"name":"chrome","prevSize":32,"code":60100,"codes":[60100,60101]},"setIdx":0,"setId":0,"iconIdx":161},{"icon":{"paths":["M411.733 395.52c0.005-56.079 45.467-101.539 101.547-101.539 56.083 0 101.547 45.464 101.547 101.547s-45.464 101.547-101.547 101.547c-0.45 0-0.9-0.003-1.348-0.009l0.068 0.001c-55.529-0.722-100.267-45.906-100.267-101.539 0-0.003 0-0.006 0-0.008l-0 0zM571.733 612.693c17.083-4.494 31.287-9.306 45.062-14.948l-2.396 0.868c11.363-5.079 19.138-16.282 19.138-29.301 0-4.848-1.078-9.444-3.007-13.561l0.083 0.196c-4.92-11.428-16.084-19.284-29.084-19.284-4.937 0-9.609 1.133-13.771 3.153l0.188-0.082c-21.279 10.748-46.384 17.043-72.96 17.043s-51.681-6.295-73.907-17.474l0.947 0.432c-4.389-2.365-9.606-3.755-15.147-3.755-11.555 0-21.698 6.043-27.441 15.142l-0.079 0.134c-2.519 4.468-4.002 9.809-4.002 15.496 0 11.411 5.973 21.428 14.963 27.093l0.132 0.078c12.283 7.157 26.492 13.010 41.517 16.82l1.15 0.247-53.76 66.987c-4.396 5.437-7.058 12.434-7.058 20.053 0 17.683 14.335 32.018 32.018 32.018 10.064 0 19.043-4.643 24.913-11.904l0.047-0.061 62.72-78.080 62.72 78.080c5.945 7.172 14.792 11.759 24.715 11.946l0.031 0c0.253 0.008 0.55 0.012 0.849 0.012 7.379 0 14.115-2.755 19.235-7.292l-0.030 0.026c7.438-5.832 12.173-14.818 12.173-24.91 0-7.565-2.661-14.51-7.098-19.947l0.045 0.057z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["classmates"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5981,"id":410,"name":"classmates","prevSize":32,"code":60102,"codes":[60102,60103]},"setIdx":0,"setId":0,"iconIdx":162},{"icon":{"paths":["M784.64 554.667l-370.347-371.627c-7.7-7.601-18.286-12.296-29.968-12.296-5.971 0-11.656 1.227-16.817 3.442l0.278-0.106c-15.59 6.527-26.363 21.621-26.453 39.242l-0 0.012v523.947c-0 0.025-0 0.055-0 0.085 0 16.73 9.628 31.21 23.646 38.203l0.247 0.112c5.434 2.692 11.832 4.267 18.599 4.267 0.061 0 0.123-0 0.184-0l-0.009 0c0.087 0.001 0.19 0.001 0.293 0.001 9.901 0 19.015-3.373 26.255-9.032l-0.094 0.071c29.532-22.927 62.745-44.698 97.651-63.759l3.896-1.948 64 151.467c9.676 23.225 32.192 39.255 58.452 39.255 0.15 0 0.301-0.001 0.451-0.002l-0.023 0c8.952-0.061 17.449-1.938 25.164-5.281l-0.417 0.161c23.56-9.66 39.852-32.418 39.852-58.982 0-9.553-2.107-18.614-5.882-26.744l0.164 0.392-64-152.747c37.716-12.45 82.21-22.339 128.055-27.832l3.358-0.328c16.456-1.92 29.921-12.959 35.319-27.863l0.094-0.297c0.886-3.247 1.395-6.975 1.395-10.821 0-12.197-5.118-23.198-13.323-30.974l-0.019-0.018z","M603.307 227.84c-0.239 0.007-0.52 0.011-0.803 0.011-5.354 0-10.374-1.429-14.699-3.927l0.142 0.076c-9.924-5.453-16.538-15.836-16.538-27.764 0-5.457 1.384-10.591 3.821-15.069l-0.083 0.166 42.667-75.093c5.116-11.271 16.272-18.968 29.226-18.968 17.673 0 32 14.327 32 32 0 6.589-1.992 12.713-5.405 17.803l0.073-0.115-42.24 76.373c-5.797 8.804-15.636 14.535-26.814 14.535-0.474 0-0.945-0.010-1.413-0.031l0.067 0.002z","M744.533 365.653c-17.545-0.169-31.702-14.43-31.702-31.999 0-12.43 7.087-23.205 17.441-28.504l0.181-0.084 75.947-38.4c4.221-2.187 9.214-3.47 14.507-3.47 17.705 0 32.057 14.352 32.057 32.057 0 12.412-7.054 23.176-17.371 28.503l-0.179 0.084-76.373 38.4c-3.958 2.157-8.669 3.425-13.676 3.425-0.292 0-0.583-0.004-0.874-0.013l0.043 0.001z","M203.947 459.52v0h-85.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h85.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M139.52 689.493c-17.545-0.169-31.702-14.43-31.702-31.999 0-12.43 7.087-23.205 17.441-28.504l0.181-0.084 76.373-37.973c4.096-2.080 8.931-3.299 14.051-3.299 12.595 0 23.467 7.374 28.534 18.041l0.082 0.191c2.227 4.181 3.535 9.144 3.535 14.411 0 12.446-7.3 23.187-17.852 28.175l-0.19 0.081-76.373 37.973c-4.047 1.887-8.786 2.988-13.782 2.988-0.105 0-0.209-0-0.314-0.001l0.016 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["click"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5982,"id":409,"name":"click","prevSize":32,"code":60104,"codes":[60104,60105,60106,60107,60108]},"setIdx":0,"setId":0,"iconIdx":163},{"icon":{"paths":["M364.658 85.021l287.835 42.709c104.89 15.564 177.304 113.211 161.74 218.101l-42.709 287.835c-15.564 104.89-113.211 177.304-218.101 161.74l-287.835-42.709c-104.89-15.564-177.304-113.211-161.74-218.101l42.709-287.835c15.564-104.89 113.211-177.304 218.101-161.74z","M815.36 301.227c0.752 6.402 1.181 13.817 1.181 21.333s-0.429 14.932-1.264 22.224l0.083-0.891-42.667 288.427c-13.276 93.994-93.182 165.505-189.791 165.505-9.964 0-19.75-0.761-29.303-2.227l1.068 0.135-288.427-42.667c-32.559-5.068-61.477-17.755-85.807-36.184l0.473 0.344c19.015 57.611 63.315 102.192 119.412 121.207l1.335 0.393 276.48 92.16c18.081 6.219 38.915 9.81 60.588 9.81 83.89 0 155.215-53.802 181.35-128.783l0.409-1.347 92.16-276.48c6.31-18.184 9.955-39.141 9.955-60.95 0-75.097-43.211-140.102-106.125-171.508l-1.11-0.501z","M459.093 307.2c0 47.6-38.587 86.187-86.187 86.187s-86.187-38.587-86.187-86.187c0-47.6 38.587-86.187 86.187-86.187s86.187 38.587 86.187 86.187z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["clipboard"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5983,"id":408,"name":"clipboard","prevSize":32,"code":60109,"codes":[60109,60110,60111]},"setIdx":0,"setId":0,"iconIdx":164},{"icon":{"paths":["M485.12 891.733h-65.28c-21.645-2.252-38.376-20.397-38.376-42.45 0-10.129 3.53-19.434 9.426-26.752l-0.064 0.082 92.587-92.587c7.533-6.819 17.572-10.993 28.587-10.993s21.054 4.173 28.623 11.025l-0.036-0.032 92.587 92.587c5.833 7.236 9.362 16.54 9.362 26.67 0 22.053-16.731 40.198-38.192 42.435l-0.184 0.016h-65.28z","M810.667 647.68c70.692 0 128-57.308 128-128s-57.308-128-128-128v0h-8.107c4.977-12.646 7.936-27.286 8.106-42.596l0.001-0.071c0-70.692-57.308-128-128-128v0c-26.776 0.075-51.603 8.359-72.112 22.468l0.432-0.281c-37.668-63.804-106.077-105.932-184.326-105.932-117.262 0-212.427 94.609-213.327 211.659l-0.001 0.086c0.125 15.169 1.673 29.897 4.515 44.159l-0.248-1.493h-4.267c-70.692 0-128 57.308-128 128s57.308 128 128 128v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cloud-add"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5984,"id":407,"name":"cloud-add","prevSize":32,"code":60112,"codes":[60112,60113]},"setIdx":0,"setId":0,"iconIdx":165},{"icon":{"paths":["M318.72 891.733h-65.28c-21.645-2.252-38.376-20.397-38.376-42.45 0-10.129 3.53-19.434 9.426-26.752l-0.064 0.082 92.587-92.587c7.562-6.936 17.684-11.186 28.8-11.186s21.238 4.251 28.831 11.215l-0.031-0.028 92.16 92.587c5.853 7.243 9.396 16.563 9.396 26.711 0 21.914-16.521 39.969-37.787 42.391l-0.196 0.018h-119.467z","M651.52 718.080h-65.707c-21.61 2.288-38.301 20.416-38.301 42.443 0 10.326 3.668 19.795 9.772 27.176l-0.058-0.072 92.16 92.16c7.299 7.524 17.504 12.194 28.8 12.194s21.501-4.67 28.79-12.184l0.010-0.010 92.587-92.16c6.027-7.302 9.683-16.757 9.683-27.065 0-22.166-16.903-40.384-38.523-42.468l-0.173-0.014h-119.040z","M810.667 669.013c70.692 0 128-57.308 128-128s-57.308-128-128-128v0h-8.107c4.977-12.646 7.936-27.286 8.106-42.596l0.001-0.071c0-70.692-57.308-128-128-128v0c-26.776 0.075-51.603 8.359-72.112 22.468l0.432-0.281c-37.668-63.804-106.077-105.932-184.326-105.932-117.262 0-212.427 94.609-213.327 211.659l-0.001 0.086c0.125 15.169 1.673 29.897 4.515 44.159l-0.248-1.493h-4.267c-70.692 0-128 57.308-128 128s57.308 128 128 128v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cloud-change"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5985,"id":406,"name":"cloud-change","prevSize":32,"code":60114,"codes":[60114,60115,60116]},"setIdx":0,"setId":0,"iconIdx":166},{"icon":{"paths":["M810.667 647.68c70.692 0 128-57.308 128-128s-57.308-128-128-128v0h-8.107c4.977-12.646 7.936-27.286 8.106-42.596l0.001-0.071c0-70.692-57.308-128-128-128v0c-26.776 0.075-51.603 8.359-72.112 22.468l0.432-0.281c-37.668-63.804-106.077-105.932-184.326-105.932-117.262 0-212.427 94.609-213.327 211.659l-0.001 0.086c0.125 15.169 1.673 29.897 4.515 44.159l-0.248-1.493h-4.267c-70.692 0-128 57.308-128 128s57.308 128 128 128v0z","M485.12 718.080h-65.28c-21.793 2.097-38.696 20.315-38.696 42.482 0 10.308 3.656 19.763 9.741 27.138l-0.058-0.073 92.587 92.16c7.229 7.502 17.364 12.161 28.587 12.161s21.357-4.659 28.575-12.149l0.012-0.012 92.587-92.16c6.027-7.302 9.683-16.757 9.683-27.065 0-22.166-16.903-40.384-38.523-42.468l-0.173-0.014h-119.040z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cloud-download"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5986,"id":405,"name":"cloud-download","prevSize":32,"code":60117,"codes":[60117,60118]},"setIdx":0,"setId":0,"iconIdx":167},{"icon":{"paths":["M810.667 768c70.692 0 128-57.308 128-128s-57.308-128-128-128v0h-8.107c4.977-12.646 7.936-27.286 8.106-42.596l0.001-0.071c0-70.692-57.308-128-128-128v0c-26.776 0.075-51.603 8.359-72.112 22.468l0.432-0.281c-37.668-63.804-106.077-105.932-184.326-105.932-117.262 0-212.427 94.609-213.327 211.659l-0.001 0.086c0.149 15.183 1.695 29.91 4.516 44.179l-0.249-1.512h-4.267c-70.692 0-128 57.308-128 128s57.308 128 128 128v0z"],"attrs":[{"opacity":0.3}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud"]},"attrs":[{"opacity":0.3}],"properties":{"order":5987,"id":404,"name":"cloud","prevSize":32,"code":60119},"setIdx":0,"setId":0,"iconIdx":168},{"icon":{"paths":["M310.613 85.333h402.773c124.419 0 225.28 100.861 225.28 225.28v402.773c0 124.419-100.861 225.28-225.28 225.28h-402.773c-124.419 0-225.28-100.861-225.28-225.28v-402.773c0-124.419 100.861-225.28 225.28-225.28z","M713.387 85.333h-402.773c-0.127-0-0.277-0-0.427-0-124.183 0-224.853 100.67-224.853 224.853 0 0.15 0 0.3 0 0.45l-0-0.023v30.72h853.333v-30.72c0-0.127 0-0.277 0-0.427 0-124.183-100.67-224.853-224.853-224.853-0.15 0-0.3 0-0.45 0l0.023-0z","M381.013 757.76c-8.801-0.197-16.738-3.738-22.624-9.397l0.011 0.011-85.333-85.333c-6.051-5.763-9.814-13.881-9.814-22.878 0-0.057 0-0.114 0-0.171l-0 0.009c0.382-8.979 4.051-17.033 9.825-23.052l-0.012 0.012 85.333-81.92c5.887-8.010 15.273-13.151 25.859-13.151 17.673 0 32 14.327 32 32 0 11.451-6.015 21.498-15.058 27.152l-0.134 0.078-59.733 58.88 62.293 61.013c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.574 6.478-13.53 10.771-22.493 11.512l-0.12 0.008z","M642.987 757.76c-9.019-0.157-17.14-3.879-23.038-9.812l-0.002-0.002c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 62.72-62.72-61.867-59.307c-3.837-5.214-6.141-11.763-6.141-18.849 0-17.673 14.327-32 32-32 6.222 0 12.029 1.776 16.942 4.848l-0.134-0.078 85.333 81.92c5.763 6.007 9.431 14.061 9.811 22.967l0.002 0.073c0 0.048 0 0.105 0 0.162 0 8.997-3.763 17.115-9.801 22.866l-0.013 0.012-85.333 85.333c-5.313 5.366-12.413 8.954-20.332 9.801l-0.148 0.013z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["code"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5988,"id":403,"name":"code","prevSize":32,"code":60120,"codes":[60120,60121,60122,60123]},"setIdx":0,"setId":0,"iconIdx":169},{"icon":{"paths":["M274.347 278.187h311.467c96.377 0 174.507 78.129 174.507 174.507v311.467c0 96.377-78.129 174.507-174.507 174.507h-311.467c-96.377 0-174.507-78.129-174.507-174.507v-311.467c0-96.377 78.129-174.507 174.507-174.507z","M760.747 452.693v0 311.467c0 5.12 0 10.24 0 15.36v0c90.251 0 163.413-73.163 163.413-163.413s-73.163-163.413-163.413-163.413v0z","M99.84 452.693v66.133h660.907v-66.133c-0.243-96.429-78.47-174.507-174.933-174.507-0 0-0 0-0 0l-311.467 0c-96.377 0-174.507 78.129-174.507 174.507v0z","M430.080 201.387c-0.008 0-0.017 0-0.026 0-17.223 0-31.268-13.606-31.972-30.656l-0.002-0.064v-85.333c0-17.673 14.327-32 32-32s32 14.327 32 32v0 85.333c-0.474 17.068-14.423 30.723-31.562 30.723-0.154 0-0.308-0.001-0.461-0.003l0.023 0z","M263.253 201.387c-0.008 0-0.017 0-0.026 0-17.223 0-31.268-13.606-31.972-30.656l-0.002-0.064v-85.333c0-17.673 14.327-32 32-32s32 14.327 32 32v0 85.333c-0.474 17.068-14.423 30.723-31.562 30.723-0.154 0-0.308-0.001-0.461-0.003l0.023 0z","M597.333 205.653c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-85.333c0-17.673 14.327-32 32-32s32 14.327 32 32v0 85.333c0 17.673-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["coffee"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5989,"id":402,"name":"coffee","prevSize":32,"code":60124,"codes":[60124,60125,60126,60127,60128,60129]},"setIdx":0,"setId":0,"iconIdx":170},{"icon":{"paths":["M554.667 228.693l-419.413 418.56c-30.902 30.902-50.015 73.592-50.015 120.747 0 94.309 76.453 170.762 170.762 170.762 47.155 0 89.845-19.113 120.747-50.015l-0 0 418.56-419.413c16.29-16.42 26.357-39.034 26.357-64s-10.067-47.58-26.363-64.006l0.006 0.006-112.64-112.64c-16.42-16.29-39.034-26.357-64-26.357s-47.58 10.067-64.006 26.363l0.006-0.006zM213.333 722.773c11.584-11.599 27.596-18.773 45.283-18.773 35.346 0 64 28.654 64 64s-28.654 64-64 64c-17.687 0-33.698-7.175-45.282-18.773l-0.001-0.001c-12.451-11.636-20.212-28.157-20.212-46.49 0-17.068 6.726-32.566 17.673-43.986l-0.021 0.023z","M301.653 812.8v0 0z","M280.747 709.12v0z","M320 768v0z","M302.080 725.333v0 0z","M279.467 827.733v0z","M232.96 708.693v0z","M208.213 930.987c3.729 1.39 8.575 2.855 13.522 4.063l0.985 0.203c-5.931-1.412-10.778-2.877-15.509-4.582l1.002 0.315z","M256 704v0z","M315.307 792.747s0 0 0 0 0-0.853 0 0z","M315.733 745.813s0 0 0-2.56 0 1.707 0 2.56z","M93.013 816.213c0-5.12-3.413-9.813-4.267-14.933 0.853 5.12 2.987 9.387 4.267 14.933z","M135.253 888.747c7.838 7.561 16.335 14.569 25.352 20.885l0.675 0.448c-9.698-6.731-18.197-13.741-26.079-21.383l0.052 0.050z","M174.507 917.333c5.547 2.56 10.667 5.973 16.213 8.107-5.547-2.133-10.667-5.547-16.213-8.107z","M847.787 597.333h-179.627l-291.413 291.413c-30.878 30.845-73.517 49.92-120.612 49.92-0.047 0-0.094-0-0.141-0l591.794 0c50.192 0 90.88-40.688 90.88-90.88v0-159.573c0-50.192-40.688-90.88-90.88-90.88v0z","M107.093 849.493c-2.782-4.471-5.631-9.79-8.153-15.289l-0.38-0.925c2.903 6.424 5.751 11.742 8.901 16.855l-0.368-0.642z","M98.56 702.72c2.903-6.424 5.751-11.742 8.901-16.855l-0.368 0.642c-2.782 4.471-5.631 9.79-8.153 15.289l-0.38 0.925z","M113.92 673.28c6.731-9.698 13.741-18.197 21.383-26.079l-0.050 0.052c-7.561 7.838-14.569 16.335-20.885 25.352l-0.448 0.675z","M88.747 734.72c0-5.12 2.987-9.813 4.267-14.933-1.28 5.547-3.413 9.813-4.267 14.933z","M135.253 888.747c-7.593-7.83-14.602-16.329-20.896-25.363l-0.437-0.663c6.765 9.691 13.772 18.189 21.394 26.090l-0.060-0.063z","M85.333 176.213v591.787c0 94.257 76.41 170.667 170.667 170.667s170.667-76.41 170.667-170.667v0-591.787c0-50.192-40.688-90.88-90.88-90.88h-159.573c-50.192 0-90.88 40.688-90.88 90.88v0zM192 768c-0.001-0.126-0.001-0.276-0.001-0.425 0-35.582 28.845-64.427 64.427-64.427s64.427 28.845 64.427 64.427c0 35.582-28.845 64.427-64.427 64.427-0.15 0-0.299-0.001-0.448-0.002l0.023 0c-35.346 0-64-28.654-64-64v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["color-swatch"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5990,"id":401,"name":"color-swatch","prevSize":32,"code":60130,"codes":[60130,60131,60132,60133,60134,60135,60136,60137,60138,60139,60140,60141,60142,60143,60144,60145,60146,60147,60148,60149,60150]},"setIdx":0,"setId":0,"iconIdx":171},{"icon":{"paths":["M300.8 87.040h422.4c118.056 0 213.76 95.704 213.76 213.76v422.4c0 118.056-95.704 213.76-213.76 213.76h-422.4c-118.056 0-213.76-95.704-213.76-213.76v-422.4c0-118.056 95.704-213.76 213.76-213.76z","M667.307 411.733c0 84.831-68.769 153.6-153.6 153.6s-153.6-68.769-153.6-153.6c0-84.831 68.769-153.6 153.6-153.6s153.6 68.769 153.6 153.6z","M564.907 616.107c0 84.831-68.769 153.6-153.6 153.6s-153.6-68.769-153.6-153.6c0-84.831 68.769-153.6 153.6-153.6s153.6 68.769 153.6 153.6z","M616.107 462.507c-39.487 0.124-75.436 15.171-102.525 39.792l0.125-0.112c31.478 28.032 51.208 68.672 51.208 113.92s-19.73 85.888-51.056 113.787l-0.152 0.133c27.135 24.613 63.322 39.679 103.029 39.679 84.831 0 153.6-68.769 153.6-153.6s-68.769-153.6-153.6-153.6c-0.221 0-0.442 0-0.663 0.001l0.034-0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["colors-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5991,"id":400,"name":"colors-square","prevSize":32,"code":60151,"codes":[60151,60152,60153,60154]},"setIdx":0,"setId":0,"iconIdx":172},{"icon":{"paths":["M746.667 336.213l-113.92 298.667-60.587-60.587-180.907-183.040 298.667-113.92c4.11-1.345 8.839-2.12 13.75-2.12 25.214 0 45.653 20.44 45.653 45.653 0 5.503-0.974 10.778-2.758 15.664l0.101-0.317z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM687.787 277.333l-298.667 113.92-113.92 298.667c-1.542 4.384-2.432 9.44-2.432 14.703 0 25.214 20.44 45.653 45.653 45.653 6.426 0 12.542-1.328 18.088-3.724l-0.296 0.114 298.667-113.92 111.787-296.533c1.88-4.808 2.969-10.375 2.969-16.196 0-25.214-20.44-45.653-45.653-45.653-5.821 0-11.388 1.090-16.508 3.076l0.311-0.106z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["compass"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5992,"id":399,"name":"compass","prevSize":32,"code":60155,"codes":[60155,60156]},"setIdx":0,"setId":0,"iconIdx":173},{"icon":{"paths":["M781.653 85.333h-282.88c-0-0-0-0-0.001-0-86.802 0-157.197 70.245-157.439 156.99l-0 0.023v34.987h183.893c122.2 0.242 221.198 99.24 221.44 221.417l0 0.023v183.893h34.987c86.768-0.243 157.013-70.638 157.013-157.439 0-0-0-0-0-0.001l-0 0v-282.88c0-86.716-70.297-157.013-157.013-157.013v0z","M525.227 341.333h-282.88c-86.768 0.243-157.013 70.638-157.013 157.439 0 0 0 0 0 0.001l0-0v282.88c-0 86.716 70.297 157.013 157.013 157.013v0h282.88c0 0 0 0 0.001 0 86.802 0 157.197-70.245 157.439-156.99l0-0.023v-282.88c0-86.952-70.488-157.44-157.44-157.44v0zM546.987 576.853l-157.867 152.32c-5.835 5.682-13.815 9.186-22.613 9.186s-16.778-3.504-22.62-9.193l0.007 0.007-75.093-77.227c-2.797-4.656-4.451-10.275-4.451-16.28 0-17.673 14.327-32 32-32 6.766 0 13.041 2.1 18.21 5.683l-0.106-0.069 52.907 52.053 135.253-130.56c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.792 5.791 9.374 13.792 9.374 22.629 0 9.254-3.928 17.59-10.208 23.433l-0.020 0.018z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["copy-success"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5993,"id":398,"name":"copy-success","prevSize":32,"code":60157,"codes":[60157,60158]},"setIdx":0,"setId":0,"iconIdx":174},{"icon":{"paths":["M242.347 341.333h283.307c86.716 0 157.013 70.297 157.013 157.013v283.307c0 86.716-70.297 157.013-157.013 157.013h-283.307c-86.716 0-157.013-70.297-157.013-157.013v-283.307c0-86.716 70.297-157.013 157.013-157.013z","M781.653 85.333h-282.88c-0-0-0-0-0.001-0-86.802 0-157.197 70.245-157.439 156.99l-0 0.023v34.987h183.893c122.2 0.242 221.198 99.24 221.44 221.417l0 0.023v183.893h34.987c86.768-0.243 157.013-70.638 157.013-157.439 0-0-0-0-0-0.001l-0 0v-282.88c0-86.716-70.297-157.013-157.013-157.013v0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy"]},"attrs":[{},{}],"properties":{"order":5994,"id":397,"name":"copy","prevSize":32,"code":60159},"setIdx":0,"setId":0,"iconIdx":175},{"icon":{"paths":["M629.333 110.933c36.054 0.394 66.487 24.019 77.064 56.594l0.163 0.58h-154.88c10.785-33.288 41.427-56.973 77.629-57.173l0.024-0z","M103.253 802.987l229.973-230.4 45.227-44.8 5.547-5.12 123.307-218.453c7.925-13.798 20.868-23.958 36.279-28.066l0.414-0.094c2.565-0.411 5.522-0.645 8.533-0.645s5.969 0.235 8.853 0.687l-0.32-0.041c-8.014-12.014-12.791-26.781-12.8-42.664l-0-0.002v-5.12h163.413v2.56c-0.137 41.44-31.182 75.586-71.281 80.599l-0.399 0.041 17.92 10.667c7.736 4.43 14.155 10.304 19.076 17.307l0.124 0.186c4.422 5.661 7.806 12.369 9.728 19.67l0.086 0.383 27.307 100.693h104.96c29.926 0 54.187 24.26 54.187 54.187s-24.26 54.187-54.187 54.187h-157.867l-6.4-2.133c-2.274-0.436-4.286-1.332-6.016-2.59l0.043 0.030s-2.133 0-2.987 0v0c-5.646-3.119-10.348-7.276-13.996-12.254l-0.084-0.12c-4.91-6.615-8.491-14.517-10.18-23.099l-0.060-0.368v-7.68l-50.347 85.333 53.76 53.76c9.748 9.602 15.787 22.946 15.787 37.7 0 0.096-0 0.192-0.001 0.288l0-0.015c0.001 0.102 0.001 0.223 0.001 0.344 0 14.866-6.034 28.323-15.787 38.055l-0.001 0.001-169.387 160c-9.602 9.748-22.946 15.787-37.7 15.787-0.096 0-0.192-0-0.288-0.001l0.015 0c-0.102 0.001-0.223 0.001-0.344 0.001-14.866 0-28.323-6.034-38.055-15.787l-0.001-0.001c-9.654-9.906-15.609-23.458-15.609-38.4s5.954-28.494 15.62-38.412l-0.011 0.012 121.6-121.173-80.213-58.027-241.067 239.36c-9.602 9.748-22.946 15.787-37.7 15.787-0.096 0-0.192-0-0.288-0.001l0.015 0c-0.127 0.001-0.278 0.002-0.428 0.002-29.691 0-53.76-24.069-53.76-53.76 0-0.151 0.001-0.301 0.002-0.451l-0 0.023c-0.002-0.187-0.004-0.408-0.004-0.63 0-14.643 6.046-27.874 15.778-37.332l0.012-0.012z","M819.2 460.373h-38.4v-96.853c0.241-21.966 18.104-39.68 40.104-39.68 0.001 0 0.002 0 0.002 0l75.093-0c21.915 0 39.68 17.765 39.68 39.68v0 108.8c0 21.915-17.765 39.68-39.68 39.68v0h-24.32c-1.152-28.334-24.068-50.951-52.416-51.625l-0.064-0.001z","M706.56 168.107h61.44c1.077-0.136 2.324-0.213 3.589-0.213 16.731 0 30.293 13.563 30.293 30.293s-13.563 30.293-30.293 30.293c-1.265 0-2.511-0.078-3.736-0.228l0.147 0.015h-57.173v-35.413c-0.068-8.883-1.625-17.381-4.434-25.287l0.167 0.54z","M551.68 168.107h154.88c2.641 7.365 4.199 15.863 4.266 24.716l0 0.031v35.413h-163.413v-35.413c0.068-8.883 1.625-17.381 4.434-25.287l-0.167 0.54z","M116.48 413.44c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h245.333c17.673 0 32 14.327 32 32v0c0.002 0.127 0.003 0.277 0.003 0.427 0 17.437-14.136 31.573-31.573 31.573-0.001 0-0.002-0-0.003-0l-245.333 0z","M240.213 292.693c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h121.6c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023c0.007 0.254 0.012 0.553 0.012 0.853 0 17.437-14.136 31.573-31.573 31.573-0.004 0-0.008-0-0.012-0l-121.599 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["courier-express"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":5995,"id":396,"name":"courier-express","prevSize":32,"code":60160,"codes":[60160,60161,60162,60163,60164,60165,60166]},"setIdx":0,"setId":0,"iconIdx":176},{"icon":{"paths":["M642.133 452.693h-106.667l-27.733-105.387c0-35.346-28.654-64-64-64v0h-62.293c-35.346 0-64 28.654-64 64v0 372.053c-0.077 23.849-5.416 46.433-14.915 66.675l0.409-0.969-39.253 87.467c-2.548 5.584-4.034 12.112-4.034 18.987 0 25.792 20.909 46.701 46.701 46.701 18.917 0 35.207-11.248 42.548-27.421l0.119-0.293 47.787-105.387c8.713-19.333 13.876-41.891 14.079-65.632l0.001-0.074v-102.827l49.92 88.747c13.414 22.758 21.338 50.14 21.338 79.373 0 0.445-0.002 0.89-0.006 1.335l0-0.068v85.333c0 25.449 20.631 46.080 46.080 46.080s46.080-20.631 46.080-46.080v0-109.653c0.003-0.376 0.005-0.821 0.005-1.267 0-29.233-7.924-56.615-21.742-80.116l0.404 0.743-45.227-78.933v-77.227h134.4c25.449 0 46.080-20.631 46.080-46.080s-20.631-46.080-46.080-46.080v0z","M595.2 242.773h125.013c24.507 0 44.373 19.867 44.373 44.373v83.627c0 24.507-19.867 44.373-44.373 44.373h-125.013c-24.507 0-44.373-19.867-44.373-44.373v-83.627c0-24.507 19.867-44.373 44.373-44.373z","M560.64 148.48h-55.467c-7.118-40.183-41.568-70.378-83.152-70.826l-0.048-0h-20.053c-47.128 0-85.333 38.205-85.333 85.333v0 36.267c0 47.128 38.205 85.333 85.333 85.333v0h20.053c41.754-0.487 76.265-30.888 83.128-70.746l0.072-0.507h55.467c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["courier"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5996,"id":395,"name":"courier","prevSize":32,"code":60167,"codes":[60167,60168,60169]},"setIdx":0,"setId":0,"iconIdx":177},{"icon":{"paths":["M224.853 222.293h574.293c77.055 0 139.52 62.465 139.52 139.52v352.427c0 77.055-62.465 139.52-139.52 139.52h-574.293c-77.055 0-139.52-62.465-139.52-139.52v-352.427c0-77.055 62.465-139.52 139.52-139.52z","M85.333 381.44h853.333v108.373h-853.333v-108.373z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["credit-cart"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5997,"id":394,"name":"credit-cart","prevSize":32,"code":60170,"codes":[60170,60171]},"setIdx":0,"setId":0,"iconIdx":178},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M572.16 512l120.747-120.747c9.153-7.872 14.914-19.467 14.914-32.407 0-23.564-19.103-42.667-42.667-42.667-12.94 0-24.535 5.761-32.36 14.858l-0.047 0.056-120.747 120.747-120.747-120.747c-7.412-6.377-17.129-10.259-27.753-10.259-23.564 0-42.667 19.103-42.667 42.667 0 10.624 3.883 20.341 10.307 27.809l-0.047-0.056 120.747 120.747-120.747 120.747c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002 120.747-120.747 120.747 120.747c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cross-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5998,"id":393,"name":"cross-circle","prevSize":32,"code":60172,"codes":[60172,60173]},"setIdx":0,"setId":0,"iconIdx":179},{"icon":{"paths":["M333.227 85.333h357.547c136.908 0 247.893 110.986 247.893 247.893v357.547c0 136.908-110.986 247.893-247.893 247.893h-357.547c-136.908 0-247.893-110.986-247.893-247.893v-357.547c0-136.908 110.986-247.893 247.893-247.893z","M572.16 512l120.747-120.747c9.153-7.872 14.914-19.467 14.914-32.407 0-23.564-19.103-42.667-42.667-42.667-12.94 0-24.535 5.761-32.36 14.858l-0.047 0.056-120.747 120.747-120.747-120.747c-7.412-6.377-17.129-10.259-27.753-10.259-23.564 0-42.667 19.103-42.667 42.667 0 10.624 3.883 20.341 10.307 27.809l-0.047-0.056 120.747 120.747-120.747 120.747c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002 120.747-120.747 120.747 120.747c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cross-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":5999,"id":392,"name":"cross-square","prevSize":32,"code":60174,"codes":[60174,60175]},"setIdx":0,"setId":0,"iconIdx":180},{"icon":{"paths":["M725.333 722.347c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-364.373-360.107c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002 364.373 360.107c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003z","M360.96 725.333c-7.937 8.044-18.96 13.027-31.147 13.027-24.161 0-43.747-19.586-43.747-43.747 0-11.974 4.811-22.825 12.605-30.725l-0.005 0.005 364.373-365.227c7.937-8.044 18.96-13.027 31.147-13.027 24.161 0 43.747 19.586 43.747 43.747 0 11.974-4.811 22.825-12.605 30.725l0.005-0.005-364.373 365.227z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cross"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6000,"id":391,"name":"cross","prevSize":32,"code":60176,"codes":[60176,60177]},"setIdx":0,"setId":0,"iconIdx":181},{"icon":{"paths":["M716.8 805.973h-413.867c-19.575-0.144-36.208-12.586-42.565-29.976l-0.101-0.317-170.667-495.787c-1.891-4.647-2.988-10.038-2.988-15.685 0-23.564 19.103-42.667 42.667-42.667 9.842 0 18.906 3.333 26.125 8.931l-0.097-0.073 170.667 122.88c6.219 4.628 14.052 7.408 22.533 7.408 16.12 0 29.894-10.045 35.405-24.216l0.089-0.259 85.333-222.72c5.088-18.284 21.59-31.477 41.173-31.477s36.085 13.194 41.102 31.177l0.071 0.3 82.773 224c5.533 14.562 19.373 24.723 35.587 24.723 8.628 0 16.584-2.877 22.96-7.725l-0.094 0.068 176.213-130.987c7.446-6.492 17.248-10.451 27.975-10.451 23.564 0 42.667 19.103 42.667 42.667 0 6.254-1.346 12.194-3.763 17.546l0.109-0.269-176.64 502.613c-5.467 17.697-21.68 30.332-40.845 30.332-0.641 0-1.278-0.014-1.912-0.042l0.090 0.003z","M618.667 625.493h-213.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h213.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M730.453 938.667h-436.48c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h436.48c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["crown-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6001,"id":390,"name":"crown-2","prevSize":32,"code":60178,"codes":[60178,60179,60180]},"setIdx":0,"setId":0,"iconIdx":182},{"icon":{"paths":["M661.76 291.413l-125.44-120.747c-6.242-6.184-14.835-10.005-24.32-10.005s-18.078 3.821-24.323 10.008l0.003-0.003-164.693 158.72c-6.242 6.184-14.835 10.005-24.32 10.005s-18.078-3.821-24.323-10.008l0.003 0.003-128-128c-6.439-7.237-15.778-11.774-26.177-11.774-19.323 0-34.987 15.664-34.987 34.987 0 1.141 0.055 2.269 0.161 3.382l-0.011-0.142v422.827c0.191 55.967 21.904 106.826 57.29 144.766l-0.116-0.126z","M879.36 202.667l-128 128c-6.078 5.977-14.422 9.667-23.627 9.667-6.227 0-12.059-1.689-17.065-4.633l0.158 0.086-517.973 500.053c30.293 18.114 66.736 28.996 105.688 29.439l0.126 0.001h426.667c117.821 0 213.333-95.513 213.333-213.333v0-424.107c0-0.006 0-0.014 0-0.022 0-19.323-15.664-34.987-34.987-34.987-9.455 0-18.033 3.75-24.329 9.844l0.009-0.009z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["crown"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6002,"id":389,"name":"crown","prevSize":32,"code":60181,"codes":[60181,60182]},"setIdx":0,"setId":0,"iconIdx":183},{"icon":{"paths":["M745.387 875.947l-203.947 58.453c-8.818 2.641-18.952 4.161-29.44 4.161s-20.622-1.52-30.192-4.351l0.752 0.191-203.093-58.453c-41.373-12.030-71.895-47.579-76.336-90.856l-0.037-0.451-60.587-581.547c-0.368-3.328-0.578-7.186-0.578-11.093 0-58.91 47.756-106.667 106.667-106.667 0.053 0 0.107 0 0.16 0l-0.008-0h526.507c0.045-0 0.098-0 0.152-0 58.91 0 106.667 47.756 106.667 106.667 0 3.907-0.21 7.766-0.62 11.564l0.041-0.471-59.307 581.12c-4.727 43.86-35.324 79.479-76.042 91.541l-0.758 0.193z","M728.32 276.907c-6.027-6.566-14.65-10.667-24.23-10.667-0.032 0-0.063 0-0.095 0l0.005-0h-384c-1.115-0.136-2.405-0.213-3.713-0.213-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427c1.309 0 2.599-0.078 3.867-0.228l-0.153 0.015h348.16l-11.947 111.36h-314.88c-1.115-0.136-2.405-0.213-3.713-0.213-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427c1.309 0 2.599-0.078 3.867-0.228l-0.153 0.015h306.773l-16.213 150.187-118.187 34.987-122.88-37.547-15.36-56.747c-3.94-13.614-16.294-23.399-30.933-23.399-17.754 0-32.146 14.392-32.146 32.146 0 3.115 0.443 6.126 1.269 8.974l-0.056-0.227 21.333 75.52c3.074 10.52 10.987 18.714 21.102 22.119l0.232 0.068 148.907 46.080c1.41 0.199 3.038 0.312 4.693 0.312s3.284-0.114 4.878-0.333l-0.185 0.021c1.41 0.212 3.038 0.333 4.693 0.333s3.283-0.121 4.874-0.354l-0.181 0.022 148.48-42.667c12.225-3.758 21.212-14.323 22.601-27.165l0.012-0.142 42.667-384c0.243-1.472 0.382-3.169 0.382-4.898 0-8.975-3.745-17.075-9.757-22.824l-0.012-0.011z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["css"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6003,"id":388,"name":"css","prevSize":32,"code":60183,"codes":[60183,60184]},"setIdx":0,"setId":0,"iconIdx":184},{"icon":{"paths":["M422.827 924.587l-223.573-128c-53.685-31.305-89.189-88.614-89.189-154.215 0-0.834 0.006-1.666 0.017-2.497l-0.001 0.126v-256c-0.002-0.326-0.003-0.712-0.003-1.099 0-65.596 35.498-122.901 88.333-153.753l0.844-0.455 223.573-128c25.56-15.103 56.324-24.027 89.173-24.027s63.614 8.924 90.002 24.479l-0.829-0.452 223.573 128c53.678 31.307 89.177 88.612 89.177 154.208 0 0.386-0.001 0.772-0.004 1.158l0-0.059v256c-0.068 65.526-35.548 122.749-88.329 153.571l-0.844 0.455-223.573 128c-26.079 15.909-57.627 25.328-91.376 25.328-31.957 0-61.941-8.445-87.843-23.226l0.872 0.458z","M890.027 293.973c-15.785-27.375-37.906-49.495-64.439-64.832l-0.841-0.448-223.573-128c-25.56-15.103-56.324-24.027-89.173-24.027s-63.614 8.924-90.002 24.479l0.829-0.452-223.573 128c-27.375 15.785-49.495 37.906-64.832 64.439l-0.448 0.841 378.027 218.027z","M889.6 293.973l-377.6 218.027 5.547 436.053c31.475-0.552 60.817-9.193 86.185-23.923l-0.852 0.456 223.573-128c52.735-31.523 87.498-88.317 87.498-153.23 0-1.18-0.011-2.358-0.034-3.533l0.003 0.176v-256c0-0.104 0-0.227 0-0.35 0-33.054-9.035-63.997-24.77-90.496l0.45 0.819z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cube-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6004,"id":387,"name":"cube-2","prevSize":32,"code":60185,"codes":[60185,60186,60187]},"setIdx":0,"setId":0,"iconIdx":185},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M311.040 441.173l151.467 87.467c12.196 7.514 20.258 20.712 20.48 35.808l0 0.032v174.933c-1.22 22.583-19.83 40.434-42.608 40.434-7.025 0-13.654-1.698-19.498-4.706l0.239 0.112-151.467-87.467c-12.196-7.514-20.258-20.712-20.48-35.808l-0-0.032v-174.933c1.22-22.583 19.83-40.434 42.608-40.434 7.025 0 13.654 1.698 19.498 4.706l-0.239-0.112zM712.96 441.173l-151.467 87.467c-12.196 7.514-20.258 20.712-20.48 35.808l-0 0.032v174.933c1.22 22.583 19.83 40.434 42.608 40.434 7.025 0 13.654-1.698 19.498-4.706l-0.239 0.112 151.467-87.467c12.196-7.514 20.258-20.712 20.48-35.808l0-0.032v-174.933c-1.22-22.583-19.83-40.434-42.608-40.434-7.025 0-13.654 1.698-19.498 4.706l0.239-0.112zM341.333 336.64l151.040-87.893c6.050-3.855 13.424-6.144 21.333-6.144s15.283 2.289 21.496 6.241l-0.163-0.097 151.893 85.333c11.63 7.745 19.189 20.803 19.189 35.627s-7.559 27.881-19.033 35.529l-0.156 0.098-150.613 89.6c-6.12 3.594-13.479 5.716-21.333 5.716s-15.214-2.123-21.535-5.825l0.201 0.109-152.32-87.040c-11.63-7.745-19.189-20.803-19.189-35.627s7.559-27.881 19.033-35.529l0.156-0.098z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cube-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6005,"id":386,"name":"cube-3","prevSize":32,"code":60188,"codes":[60188,60189]},"setIdx":0,"setId":0,"iconIdx":186},{"icon":{"paths":["M785.493 167.68c0.080-1.323 0.126-2.869 0.126-4.427 0-41.365-32.167-75.217-72.851-77.908l-0.235-0.012h-394.24c-41.111 2.484-73.511 36.431-73.511 77.946 0 1.548 0.045 3.086 0.134 4.611l-0.010-0.211c0 202.667 85.333 384 197.12 439.467 12.512 6.73 20.874 19.731 20.874 34.684 0 2.826-0.299 5.583-0.866 8.24l0.046-0.257c-21.168 87.135-51.783 163.769-91.549 234.576l2.375-4.602c-4.162 5.96-6.65 13.356-6.65 21.334 0 20.736 16.81 37.547 37.547 37.547 0.088 0 0.176-0 0.263-0.001l-0.013 0h224.427c1.226 0.156 2.644 0.245 4.083 0.245 18.851 0 34.133-15.282 34.133-34.133 0-7.092-2.163-13.68-5.866-19.138l0.077 0.12c-31.258-68.49-58.542-149.105-77.691-232.819l-1.669-8.674c-0.761-2.84-1.198-6.101-1.198-9.465 0-14.207 7.802-26.592 19.355-33.104l0.19-0.098c107.947-57.6 185.6-226.56 185.6-433.92z","M938.667 309.76c0.055 2.049 0.086 4.461 0.086 6.881 0 149.598-119.736 271.229-268.601 274.288l-0.285 0.005h-50.773c24.674-17.611 45.687-38.352 63.036-61.954l0.538-0.766c110.645-8.675 197.144-100.595 197.144-212.718 0-1.116-0.009-2.231-0.026-3.343l0.002 0.168c0.010-0.385 0.015-0.839 0.015-1.295 0-29.953-23.926-54.318-53.71-55.024l-0.066-0.001c-12.306-0.237-22.191-10.269-22.191-22.609 0-0.151 0.001-0.302 0.004-0.453l-0 0.023v-14.933c-0.003-0.127-0.004-0.277-0.004-0.427 0-12.253 9.933-22.187 22.187-22.187 0.001 0 0.003 0 0.004 0l-0-0c62.414 0.961 112.64 51.782 112.64 114.334 0 0.004-0 0.009-0 0.013l0-0.001zM352.427 529.493c-115.61-2.847-208.242-97.242-208.242-213.273 0-1.222 0.010-2.441 0.031-3.657l-0.002 0.183c-0.010-0.389-0.015-0.847-0.015-1.306 0-30.039 23.878-54.5 53.689-55.439l0.086-0.002c0.004 0 0.010 0 0.015 0 13.432 0 24.32-10.888 24.32-24.32 0-0.3-0.005-0.599-0.016-0.896l0.001 0.043v-10.667c0.002-0.127 0.004-0.277 0.004-0.427 0-13.432-10.888-24.32-24.32-24.32-0.001 0-0.003 0-0.004 0l0-0c-62.414 0.961-112.64 51.782-112.64 114.334 0 0.004 0 0.009 0 0.013l-0-0.001c-0.055 2.049-0.086 4.461-0.086 6.881 0 149.598 119.736 271.229 268.601 274.288l0.285 0.005h61.013c-24.111-17.524-44.795-37.802-62.191-60.713l-0.529-0.727z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["cup"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6006,"id":385,"name":"cup","prevSize":32,"code":60190,"codes":[60190,60191]},"setIdx":0,"setId":0,"iconIdx":187},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M768 562.773h-34.56c2.13-11.139 3.371-23.97 3.413-37.084l0-0.036v-19.2c-0.096-17.887-2.112-35.252-5.851-51.965l0.304 1.619h36.693c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-59.307c-41.472-75.327-120.221-125.582-210.734-125.867l-0.040-0h-178.773c-17.724 0.241-32 14.665-32 32.424 0 0.001 0 0.002 0 0.003l-0-0v93.867h-31.147c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h32v106.667h-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h32v98.133c0.237 17.577 14.423 31.763 31.977 32l0.023 0h186.88c91.125-0.287 169.86-53.042 207.607-129.626l0.606-1.361h52.907c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM351.147 330.24h146.773c52.975 0.196 100.332 24.082 132.055 61.61l0.211 0.257h-279.040zM351.147 456.107h314.453c4.905 15.004 7.851 32.286 8.105 50.219l0.001 0.128v19.2c-0.115 13.215-1.664 26.007-4.497 38.309l0.23-1.189h-318.293zM506.027 693.76h-154.88v-66.987h288.853c-30.939 40.782-79.398 66.88-133.956 66.987l-0.017 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dash"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6007,"id":384,"name":"dash","prevSize":32,"code":60192,"codes":[60192,60193]},"setIdx":0,"setId":0,"iconIdx":188},{"icon":{"paths":["M174.080 85.333h121.173c49.013 0 88.747 39.733 88.747 88.747v78.507c0 49.013-39.733 88.747-88.747 88.747h-121.173c-49.013 0-88.747-39.733-88.747-88.747v-78.507c0-49.013 39.733-88.747 88.747-88.747z","M737.707 128h145.92c30.398 0 55.040 24.642 55.040 55.040v60.587c0 30.398-24.642 55.040-55.040 55.040h-145.92c-30.398 0-55.040-24.642-55.040-55.040v-60.587c0-30.398 24.642-55.040 55.040-55.040z","M737.707 448h145.92c30.398 0 55.040 24.642 55.040 55.040v60.587c0 30.398-24.642 55.040-55.040 55.040h-145.92c-30.398 0-55.040-24.642-55.040-55.040v-60.587c0-30.398 24.642-55.040 55.040-55.040z","M737.707 768h145.92c30.398 0 55.040 24.642 55.040 55.040v60.587c0 30.398-24.642 55.040-55.040 55.040h-145.92c-30.398 0-55.040-24.642-55.040-55.040v-60.587c0-30.398 24.642-55.040 55.040-55.040z","M682.667 565.333c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-117.333v-256h117.333c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-298.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h117.333v514.987c0 69.043 55.97 125.013 125.013 125.013v0h56.32c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-56.32c-33.697 0-61.013-27.317-61.013-61.013v0-194.987z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["data"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6008,"id":383,"name":"data","prevSize":32,"code":60194,"codes":[60194,60195,60196,60197,60198]},"setIdx":0,"setId":0,"iconIdx":189},{"icon":{"paths":["M964.693 407.040h-200.96c-77.764-2.406-139.889-66.022-139.889-144.148 0-3.626 0.134-7.221 0.397-10.78l-0.028 0.475v-205.227zM372.48 823.040c0.022 1.016 0.034 2.213 0.034 3.413 0 94.257-76.41 170.667-170.667 170.667-0.012 0-0.024-0-0.036-0l0.002 0c-96.142 0-174.080-77.938-174.080-174.080s77.938-174.080 174.080-174.080v-0c0.010-0 0.022-0 0.034-0 94.257 0 170.667 76.41 170.667 170.667 0 1.2-0.012 2.398-0.037 3.592l0.003-0.178zM298.667 823.893c0.002-0.13 0.003-0.284 0.003-0.438 0-17.61-14.037-31.941-31.533-32.415l-0.044-0.001h-128c-17.484 0.463-31.537 14.516-31.999 31.957l-0.001 0.043c-0.007 0.257-0.012 0.56-0.012 0.864 0 17.613 14.042 31.946 31.541 32.415l0.043 0.001h128c17.724-0.241 32-14.665 32-32.424 0-0.001-0-0.002-0-0.003l0 0z","M964.693 472.32h-200.96c-113.252-3.433-203.754-96.062-203.754-209.829 0-3.483 0.085-6.947 0.253-10.389l-0.019 0.485v-206.080h-209.067c-132.324 1.678-238.947 109.338-238.947 241.902 0 0.906 0.005 1.812 0.015 2.716l-0.001-0.138v366.933c0 5.547 0 11.52 0 17.067 25.145-16.154 55.796-25.827 88.693-26.026l0.053-0c94.411 1.636 170.317 78.555 170.317 173.202 0 29.332-7.29 56.961-20.158 81.175l0.454-0.937h373.76c132.509-1.439 239.374-109.193 239.374-241.907 0-0.905-0.005-1.808-0.015-2.711l0.001 0.138z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["delete-files"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6009,"id":382,"name":"delete-files","prevSize":32,"code":60199,"codes":[60199,60200]},"setIdx":0,"setId":0,"iconIdx":190},{"icon":{"paths":["M485.547 190.72c16.459 41.071 55.932 69.549 102.056 69.549 0.271 0 0.541-0.001 0.812-0.003l-0.042 0h125.867c84.408 0.117 157.882 46.813 196.109 115.757l0.585 1.149c-7.643-122.928-109.21-219.732-233.386-219.733l-205.654-0z","M714.24 260.267h-125.867c-0.229 0.002-0.499 0.003-0.77 0.003-46.125 0-85.598-28.479-101.795-68.812l-0.262-0.738-16.213-35.84c-16.624-40.569-55.484-68.778-101.025-69.545l-0.095-0.001h-85.333c-107.688 0-194.987 87.299-194.987 194.987h-0v431.36c-0 0.127-0 0.277-0 0.427 0 123.712 100.288 224 224 224 0.15 0 0.3-0 0.451-0l-0.024 0h401.92c123.947 0 224.427-100.479 224.427-224.427v0-226.56c0-0 0-0 0-0 0-124.033-100.427-224.61-224.403-224.853l-0.023-0zM609.28 650.24c-5.663 5.733-13.5 9.308-22.172 9.387l-0.015 0c-8.119-0.139-15.458-3.363-20.92-8.546l0.014 0.013-47.787-45.653-45.227 48.213c-5.459 5.787-13.18 9.39-21.742 9.39-0.156 0-0.312-0.001-0.468-0.004l0.024 0c-0.034 0-0.073 0-0.113 0-8.031 0-15.341-3.081-20.815-8.126l0.021 0.019c-5.43-5.473-8.786-13.011-8.786-21.333s3.356-15.86 8.788-21.335l-0.002 0.002 45.653-48.64-49.067-46.507c-5.534-5.425-8.964-12.979-8.964-21.333s3.43-15.908 8.959-21.329l0.005-0.005c5.473-5.43 13.011-8.786 21.333-8.786s15.86 3.356 21.335 8.788l-0.002-0.002 47.787 46.080 43.947-51.2c5.595-6.677 13.938-10.892 23.265-10.892 16.731 0 30.293 13.563 30.293 30.293 0 9.327-4.215 17.67-10.845 23.227l-0.047 0.038-45.653 48.64 48.213 46.507c6.607 5.517 10.781 13.758 10.781 22.973 0 7.762-2.961 14.832-7.815 20.143l0.021-0.023z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["delete-folder"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6010,"id":381,"name":"delete-folder","prevSize":32,"code":60201,"codes":[60201,60202]},"setIdx":0,"setId":0,"iconIdx":191},{"icon":{"paths":["M541.326 357.559l191.64-54.554c24.93-7.097 50.893 7.36 57.99 32.29l52.101 183.022c7.097 24.93-7.36 50.893-32.29 57.99l-191.64 54.554c-24.93 7.097-50.893-7.36-57.99-32.29l-52.101-183.022c-7.097-24.93 7.36-50.893 32.29-57.99z","M584.981 344.878l104.232-29.672 20.443 71.814c4.581 16.091-4.75 32.849-20.842 37.43v0l-45.961 13.084c-16.091 4.581-32.849-4.75-37.43-20.842v0l-20.443-71.814z","M469.098 131.349l157.58-44.858c20.624-5.871 42.102 6.089 47.973 26.713l43.573 153.066c5.871 20.624-6.089 42.102-26.713 47.973l-157.58 44.858c-20.624 5.871-42.102-6.089-47.973-26.713l-43.573-153.066c-5.871-20.624 6.089-42.102 26.713-47.973z","M505.104 121.443l85.766-24.415 17.289 60.734c3.806 13.372-3.948 27.297-17.319 31.104v0l-37.343 10.63c-13.372 3.806-27.297-3.948-31.104-17.319v0l-17.289-60.734z","M445.44 634.88c-14.587-0.057-26.867-9.865-30.665-23.241l-0.055-0.226-123.307-444.16-125.867 34.56c-2.24 0.576-4.811 0.906-7.459 0.906-14.338 0-26.413-9.688-30.036-22.874l-0.051-0.219c-0.785-2.621-1.237-5.633-1.237-8.75 0-14.539 9.827-26.783 23.202-30.452l0.222-0.052 156.16-42.667c2.534-0.722 5.445-1.136 8.452-1.136 14.584 0 26.889 9.756 30.745 23.097l0.056 0.226 131.413 474.88c0.734 2.537 1.156 5.451 1.156 8.464 0 14.354-9.578 26.471-22.692 30.307l-0.223 0.056z","M642.987 754.773c-14.587-0.057-26.867-9.865-30.665-23.241l-0.055-0.226c-0.714-2.505-1.125-5.381-1.125-8.353 0-14.499 9.772-26.715 23.090-30.421l0.222-0.053 264.533-73.387c2.558-0.743 5.496-1.171 8.533-1.171 17.495 0 31.678 14.183 31.678 31.678 0 14.457-9.685 26.653-22.921 30.452l-0.224 0.055-264.533 73.387z","M477.013 679.253c-0.89-0.029-1.936-0.045-2.987-0.045-54.198 0-98.133 43.936-98.133 98.133s43.936 98.133 98.133 98.133c54.182 0 98.107-43.91 98.133-98.085l0-0.002c0.006-0.385 0.009-0.84 0.009-1.295 0-52.894-42.4-95.884-95.066-96.837l-0.089-0.001zM477.013 812.373c-0.895 0.081-1.935 0.128-2.986 0.128-19.323 0-34.987-15.664-34.987-34.987s15.664-34.987 34.987-34.987c19.278 0 34.914 15.591 34.986 34.852l0 0.007c-0.21 17.852-14.266 32.354-31.917 33.277l-0.083 0.003z","M845.227 938.667h-525.653c-17.437 0-31.573-14.136-31.573-31.573v0c-0-0.001-0-0.002-0-0.003 0-17.523 14.085-31.757 31.551-31.997l0.023-0h525.653c17.489 0.241 31.573 14.474 31.573 31.997 0 0.001-0 0.002-0 0.003l0-0c0 17.437-14.136 31.573-31.573 31.573v0z","M113.465 136.046l106.712-27.022c20.33-5.148 40.985 7.159 46.133 27.49l2.618 10.34c5.148 20.33-7.159 40.985-27.49 46.133l-106.712 27.022c-20.33 5.148-40.985-7.159-46.133-27.49l-2.618-10.34c-5.148-20.33 7.159-40.985 27.49-46.133z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["delivery-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6011,"id":380,"name":"delivery-2","prevSize":32,"code":60203,"codes":[60203,60204,60205,60206,60207,60208,60209,60210,60211]},"setIdx":0,"setId":0,"iconIdx":192},{"icon":{"paths":["M426.667 123.307h245.333c37.467 0 67.84 30.373 67.84 67.84v212.907c0 37.467-30.373 67.84-67.84 67.84h-245.333c-37.467 0-67.84-30.373-67.84-67.84v-212.907c0-37.467 30.373-67.84 67.84-67.84z","M930.56 505.6c-9.431-10.707-23.171-17.426-38.481-17.426-9.049 0-17.549 2.347-24.925 6.466l0.26-0.133-176.213 125.867c6.494 14.819 10.273 32.090 10.273 50.244 0 11.099-1.413 21.869-4.068 32.138l0.195-0.889c-13.583 52.337-60.365 90.372-116.044 90.453l-0.009 0c-0.044 0-0.097 0-0.149 0-10.564 0-20.802-1.401-30.536-4.028l0.818 0.188-104.107-26.88c-14.8-2.596-25.904-15.353-25.904-30.702 0-17.202 13.945-31.147 31.147-31.147 3.623 0 7.101 0.619 10.335 1.756l-0.218-0.067 104.107 26.453c4.554 1.337 9.786 2.106 15.198 2.106 26.933 0 49.416-19.049 54.712-44.409l0.063-0.363c1.672-5.44 2.634-11.694 2.634-18.172 0-29.765-20.319-54.784-47.843-61.943l-0.445-0.098-246.613-61.867c-2.369-0.29-5.112-0.455-7.893-0.455s-5.524 0.165-8.219 0.487l0.326-0.032c-2.673-0.206-5.79-0.323-8.933-0.323-40.107 0-75.758 19.083-98.367 48.664l-0.219 0.299c-40.107 44.8-89.173 96.853-122.453 131.84-9.905 9.951-16.029 23.674-16.029 38.827s6.123 28.876 16.031 38.829l-0.002-0.002 75.52 69.12c9.906 9.654 23.458 15.609 38.4 15.609s28.494-5.954 38.412-15.62l-0.012 0.011c9.157-9.928 19.373-18.653 30.532-26.069l0.614-0.384c16.213-8.533 258.133 52.053 258.133 52.053 7.748 2.048 16.643 3.224 25.813 3.224s18.065-1.176 26.543-3.385l-0.73 0.162c19.867-7.955 36.873-19.071 51.251-32.902l-0.051 0.048 278.187-283.733s34.987-42.24 8.96-73.813z","M480.853 123.307h136.107v85.333c0 28.513-23.114 51.627-51.627 51.627v0h-32.853c-28.513 0-51.627-23.114-51.627-51.627v-85.333cv-0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["delivery-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6012,"id":379,"name":"delivery-3","prevSize":32,"code":60212,"codes":[60212,60213,60214]},"setIdx":0,"setId":0,"iconIdx":193},{"icon":{"paths":["M130.56 381.44c-53.76 49.92-63.573 120.747-7.253 231.253 62.634 112.24 151.004 203.343 257.477 267.431l3.216 1.796c93.44 53.333 157.013 67.413 222.72 29.013 33.424-15.374 56.213-48.572 56.213-87.092 0-6.931-0.738-13.691-2.139-20.203l0.113 0.628c-5.021-6.979-10.345-13.116-16.172-18.734l-0.041-0.039-115.627-78.933c-5.032-2.257-10.906-3.571-17.087-3.571-7.846 0-15.198 2.118-21.514 5.813l0.202-0.109c-15.568 12.531-29.474 24.95-42.725 38.031l0.058-0.058c-2.99 3.443-7.374 5.608-12.264 5.608-2.687 0-5.222-0.654-7.453-1.811l0.090 0.043c-63.785-42.485-116.941-95.505-158.289-157.115l-1.284-2.032c-1.111-2.038-1.764-4.463-1.764-7.041 0-4.509 1.999-8.552 5.159-11.29l0.019-0.016c8.96-9.387 37.973-42.667 37.973-42.667 4.007-5.75 6.402-12.883 6.402-20.575 0-0.117-0.001-0.233-0.002-0.349l0 0.018c-1.008-6.798-2.496-12.841-4.484-18.653l0.218 0.733-78.933-115.627c-9.050-12.983-23.909-21.371-40.728-21.371-0.682 0-1.361 0.014-2.036 0.041l0.097-0.003c-23.612 1.286-44.66 11.315-60.157 26.877l-0.003 0.003z","M938.667 461.227c0 204.301-165.619 369.92-369.92 369.92s-369.92-165.619-369.92-369.92c0-204.301 165.619-369.92 369.92-369.92s369.92 165.619 369.92 369.92z","M527.36 537.6h-71.253c42.667-42.667 77.227-78.933 77.227-125.013 0.034-0.837 0.054-1.82 0.054-2.808 0-40.53-32.856-73.387-73.387-73.387-2.121 0-4.222 0.090-6.298 0.266l0.271-0.019c-26.67 0.022-51.117 9.525-70.155 25.32l0.182-0.147c-2.444 2.197-3.974 5.368-3.974 8.897 0 1.72 0.363 3.355 1.018 4.832l-0.030-0.076 9.813 20.907c1.354 3.247 4.174 5.645 7.61 6.387l0.070 0.013c1.442 0.666 3.129 1.054 4.907 1.054s3.465-0.388 4.981-1.085l-0.074 0.031c10.302-10.338 24.068-17.218 39.409-18.751l0.271-0.022c1.378-0.239 2.965-0.376 4.584-0.376 15.552 0 28.16 12.608 28.16 28.16 0 1.488-0.115 2.949-0.338 4.374l0.020-0.158c0 28.16-23.467 55.040-79.36 108.373l-23.467 23.040c-2.332 1.952-3.812 4.853-3.84 8.102l-0 0.005v18.347c0.227 6.269 5.251 11.293 11.499 11.519l0.021 0.001h142.080c6.362 0 11.52-5.158 11.52-11.52v0-25.173c-0.236-6.176-5.3-11.093-11.512-11.093-0.003 0-0.006 0-0.008 0l0-0z","M752.213 478.72h-19.627v-128c-1.040-5.38-5.713-9.388-11.321-9.388-0.070 0-0.14 0.001-0.209 0.002l0.010-0h-32.853c-3.818 0.035-7.203 1.855-9.366 4.665l-0.021 0.028-98.987 142.080c-1.22 1.805-1.997 4-2.132 6.366l-0.002 0.034v17.493c0.236 6.176 5.3 11.093 11.512 11.093 0.003 0 0.006-0 0.008-0l93.44 0v49.493c0 6.362 5.158 11.52 11.52 11.52v0h28.587c6.362 0 11.52-5.158 11.52-11.52v0-47.787h19.627c5.626-0.823 9.898-5.615 9.898-11.405 0-0.492-0.031-0.976-0.091-1.451l0.006 0.057v-23.467c-0.86-5.586-5.633-9.814-11.393-9.814-0.045 0-0.089 0-0.134 0.001l0.007-0zM680.96 478.72h-40.96l42.667-55.040z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["delivery-24"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6013,"id":378,"name":"delivery-24","prevSize":32,"code":60215,"codes":[60215,60216,60217,60218]},"setIdx":0,"setId":0,"iconIdx":194},{"icon":{"paths":["M360.96 85.333h280.747c45.95 0 83.2 37.25 83.2 83.2v556.8c0 45.95-37.25 83.2-83.2 83.2h-280.747c-45.95 0-83.2-37.25-83.2-83.2v-556.8c0-45.95 37.25-83.2 83.2-83.2z","M640 500.907c-17.673 0-32-14.327-32-32v0-77.227c0-17.673 14.327-32 32-32s32 14.327 32 32v0 77.653c-0.241 17.489-14.474 31.573-31.997 31.573-0.001 0-0.002-0-0.003-0l0 0z","M652.373 651.093h197.973c24.742 0 44.8 20.058 44.8 44.8v197.973c0 24.742-20.058 44.8-44.8 44.8h-197.973c-24.742 0-44.8-20.058-44.8-44.8v-197.973c0-24.742 20.058-44.8 44.8-44.8z","M507.733 936.107h-347.307c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h347.307c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["delivery-door"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6014,"id":377,"name":"delivery-door","prevSize":32,"code":60219,"codes":[60219,60220,60221,60222]},"setIdx":0,"setId":0,"iconIdx":195},{"icon":{"paths":["M826.88 444.587h-54.187c-20.736-0-37.547 16.81-37.547 37.547l-0 0v115.2c-0.002 0.128-0.002 0.278-0.002 0.429 0 20.501 16.619 37.12 37.12 37.12 0.151 0 0.302-0.001 0.452-0.003l-0.023 0h123.307v-32c0-0.001 0-0.001 0-0.002 0-17.637-4.422-34.24-12.217-48.763l0.271 0.552z","M431.36 862.293c0 41.944-34.002 75.947-75.947 75.947s-75.947-34.002-75.947-75.947c0-41.944 34.002-75.947 75.947-75.947s75.947 34.002 75.947 75.947z","M735.147 862.293c0 41.944-34.002 75.947-75.947 75.947s-75.947-34.002-75.947-75.947c0-41.944 34.002-75.947 75.947-75.947s75.947 34.002 75.947 75.947z","M884.053 554.667l-107.947-205.653c-18.12-33.732-53.142-56.287-93.435-56.32l-11.951-0c0.101 1.341 0.159 2.904 0.159 4.48s-0.058 3.139-0.171 4.687l0.012-0.207c0.001 0.205 0.001 0.447 0.001 0.69 0 55.201-20.717 105.562-54.8 143.735l0.185-0.211-110.080 122.88c-12.694 13.959-30.928 22.686-51.2 22.686s-38.506-8.727-51.15-22.63l-0.050-0.056-109.227-122.88c-34.037-37.65-54.865-87.805-54.865-142.824 0-3.64 0.091-7.259 0.271-10.854l-0.020 0.505h-6.827c-58.071 0.483-104.96 47.671-104.96 105.81 0 0.001 0 0.002 0 0.004l-0-0v358.4c0.241 58.106 47.281 105.145 105.364 105.387l0.023 0h557.653c57.923-0.482 104.721-47.429 104.96-105.364l0-0.023v-154.453c-0.075-17.493-4.487-33.938-12.217-48.338l0.27 0.552z","M430.080 85.333c-108.72 12.219-192.456 103.64-192.456 214.617 0 56.334 21.576 107.629 56.916 146.071l-0.141-0.155 109.653 122.88c12.694 13.959 30.928 22.686 51.2 22.686s38.506-8.727 51.15-22.63l110.13-122.936c35.084-38.319 56.581-89.583 56.581-145.869 0-119.47-96.85-216.32-216.32-216.32-9.417 0-18.693 0.602-27.792 1.769l1.078-0.113zM455.253 384c-44.772 0-81.067-36.295-81.067-81.067s36.295-81.067 81.067-81.067c44.772 0 81.067 36.295 81.067 81.067l-0-0c0 44.772-36.295 81.067-81.067 81.067h-0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["delivery-geolocation"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6015,"id":376,"name":"delivery-geolocation","prevSize":32,"code":60223,"codes":[60223,60224,60225,60226,60227]},"setIdx":0,"setId":0,"iconIdx":196},{"icon":{"paths":["M865.707 384h-61.013c-23.564 0-42.667 19.103-42.667 42.667v0 128c0 23.564 19.103 42.667 42.667 42.667v0h139.52v-35.84c0-0.082 0-0.18 0-0.277 0-20.236-5.217-39.253-14.38-55.779l0.3 0.59z","M421.12 853.333c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333z","M762.453 853.333c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333z","M442.027 85.333c-123.712 0-224 100.288-224 224s100.288 224 224 224c123.712 0 224-100.288 224-224v0c0-123.712-100.288-224-224-224v0zM474.027 305.067c-0.033 10.207-4.84 19.284-12.303 25.12l-0.070 0.053-75.52 60.16c-5.228 4.253-11.969 6.828-19.311 6.828-0.111 0-0.222-0.001-0.333-0.002l0.017 0c-10.306-0.385-19.352-5.46-25.112-13.142l-0.061-0.085c-3.601-5.15-5.753-11.544-5.753-18.44 0-9.619 4.189-18.261 10.842-24.199l0.032-0.028 63.573-51.627v-78.933c0-17.673 14.327-32 32-32s32 14.327 32 32v0z","M930.133 506.027l-119.467-229.547c-20.211-37.847-59.448-63.165-104.598-63.165-0.728 0-1.453 0.007-2.178 0.020l0.109-0.002h-229.973v91.733c-0.033 10.207-4.84 19.284-12.303 25.12l-0.070 0.053-75.52 60.16c-5.228 4.253-11.969 6.828-19.311 6.828-0.111 0-0.222-0.001-0.333-0.002l0.017 0c-10.306-0.385-19.352-5.46-25.112-13.142l-0.061-0.085c-3.601-5.15-5.753-11.544-5.753-18.44 0-9.619 4.189-18.261 10.842-24.199l0.032-0.028 63.573-51.627v-76.373h-213.333c-64.677 1.196-116.678 53.794-116.907 118.591l-0 0.022v402.773c0 65.508 53.105 118.613 118.613 118.613v0h627.2c65.508 0 118.613-53.105 118.613-118.613v0-173.227c0-0.082 0-0.18 0-0.277 0-20.236-5.217-39.253-14.38-55.779l0.3 0.59z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["delivery-time"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6016,"id":375,"name":"delivery-time","prevSize":32,"code":60228,"codes":[60228,60229,60230,60231,60232]},"setIdx":0,"setId":0,"iconIdx":197},{"icon":{"paths":["M245.333 85.333h317.44c39.588-0 71.68 32.092 71.68 71.68v0 368.213c0.001 0.127 0.001 0.277 0.001 0.427 0 39.588-32.092 71.68-71.68 71.68-0 0-0.001-0-0.001-0l-482.986 0v-346.453c0-91.429 74.118-165.547 165.547-165.547v0z","M825.6 853.333h-627.2c-65.508 0-118.613-53.105-118.613-118.613v0-402.773c0-65.508 53.105-118.613 118.613-118.613v0h505.6c0.615-0.012 1.341-0.018 2.069-0.018 45.15 0 84.387 25.318 104.288 62.53l0.31 0.634 121.6 229.547c8.863 15.937 14.080 34.954 14.080 55.189 0 0.098-0 0.195-0 0.293l0-0.015v173.227c0 0.006 0 0.012 0 0.019 0 65.508-53.105 118.613-118.613 118.613-0.75 0-1.499-0.007-2.245-0.021l0.112 0.002z","M865.707 384h-61.013c-23.564 0-42.667 19.103-42.667 42.667v0 128c0 23.564 19.103 42.667 42.667 42.667v0h139.52v-35.84c0-0.082 0-0.18 0-0.277 0-20.236-5.217-39.253-14.38-55.779l0.3 0.59z","M421.12 853.333c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333z","M762.453 853.333c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["delivery"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6017,"id":374,"name":"delivery","prevSize":32,"code":60233,"codes":[60233,60234,60235,60236,60237]},"setIdx":0,"setId":0,"iconIdx":198},{"icon":{"paths":["M938.667 170.667h-568.747c-110.045 0-199.253 89.209-199.253 199.253v0 568.747h384c23.564 0 42.667-19.103 42.667-42.667v0-128h128c23.564 0 42.667-19.103 42.667-42.667v0-128h128c23.564 0 42.667-19.103 42.667-42.667v0z","M554.667 768h-128v-128c0-23.564 19.103-42.667 42.667-42.667v0h128v128c0 23.564-19.103 42.667-42.667 42.667v0zM128 768c-23.564 0-42.667 19.103-42.667 42.667v0 85.333c0 23.564 19.103 42.667 42.667 42.667v0h256c23.564 0 42.667-19.103 42.667-42.667v0-128zM768 554.667v-128h-128c-23.564 0-42.667 19.103-42.667 42.667v0 128h128c23.564 0 42.667-19.103 42.667-42.667v0zM896 85.333h-85.333c-23.564 0-42.667 19.103-42.667 42.667v0 298.667h128c23.564 0 42.667-19.103 42.667-42.667v0-256c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["design-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6018,"id":373,"name":"design-2","prevSize":32,"code":60238,"codes":[60238,60239]},"setIdx":0,"setId":0,"iconIdx":199},{"icon":{"paths":["M938.667 776.107v-16.213c-0-42.651-34.576-77.227-77.227-77.227l0 0h-485.547c-19.087 0-34.56-15.473-34.56-34.56v0-485.547c0-42.651-34.576-77.227-77.227-77.227v-0h-16.213c-42.651 0-77.227 34.576-77.227 77.227h0v613.547c-0 42.651 34.576 77.227 77.227 77.227v0h613.547c42.651-0 77.227-34.576 77.227-77.227l0 0z","M853.333 247.893v613.547c-0 42.651-34.576 77.227-77.227 77.227l0 0h-16.213c-42.651-0-77.227-34.576-77.227-77.227l0 0v-485.547c0-19.087-15.473-34.56-34.56-34.56v0h-306.773v-170.667h434.773c42.651-0 77.227 34.576 77.227 77.227h0zM162.56 341.333h8.107v-170.667h-8.107c-42.651-0-77.227 34.576-77.227 77.227h-0v16.213c0 42.651 34.576 77.227 77.227 77.227v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["design-frame"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6019,"id":372,"name":"design-frame","prevSize":32,"code":60240,"codes":[60240,60241]},"setIdx":0,"setId":0,"iconIdx":200},{"icon":{"paths":["M937.387 512c0 234.935-190.452 425.387-425.387 425.387s-425.387-190.452-425.387-425.387c0-234.935 190.452-425.387 425.387-425.387s425.387 190.452 425.387 425.387z","M512 313.173c0.005-0.298 0.007-0.65 0.007-1.003 0-38.881-31.519-70.4-70.4-70.4-10.025 0-19.561 2.096-28.193 5.873l0.453-0.177c-104.676 44.148-176.813 145.917-176.813 264.533s72.137 220.385 174.933 263.828l1.88 0.705c8.065 3.463 17.451 5.476 27.308 5.476 39.116 0 70.827-31.71 70.827-70.827 0-0.125-0-0.25-0.001-0.375l0 0.019z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["design-mask"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6020,"id":371,"name":"design-mask","prevSize":32,"code":60242,"codes":[60242,60243]},"setIdx":0,"setId":0,"iconIdx":201},{"icon":{"paths":["M896 779.947v-609.28h-526.080c-110.045 0-199.253 89.209-199.253 199.253v0 483.413c292.18-0.333 541.337-184.168 638.448-442.441l1.552-4.706v373.76c-25.687 15.029-42.667 42.482-42.667 73.901 0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333c0-31.419-16.98-58.872-42.264-73.683l-0.403-0.218z","M938.667 170.667c0-0.004 0-0.009 0-0.014 0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 29.656 15.128 55.778 38.087 71.072l0.313 0.196c-34.351 296.909-267.571 530.129-561.504 564.199l-2.976 0.281c-15.439-23.601-41.746-38.978-71.645-38.978-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c32.896 0 61.445-18.614 75.687-45.884l0.224-0.471c340.854-36.656 609.090-304.746 645.69-642.331l0.283-3.216c27.689-14.369 46.321-42.747 46.507-75.495l0-0.025z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["design"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6021,"id":370,"name":"design","prevSize":32,"code":60244,"codes":[60244,60245]},"setIdx":0,"setId":0,"iconIdx":202},{"icon":{"paths":["M705.707 938.667h-387.413c-105.096 0-190.293-85.197-190.293-190.293h-0v-472.747c0-105.096 85.197-190.293 190.293-190.293v0h243.627c0.078-0 0.17-0 0.262-0 56.080 0 106.481 24.313 141.237 62.973l0.154 0.174 143.787 160c30.187 33.713 48.641 78.479 48.641 127.556 0 0.156-0 0.312-0.001 0.468l0-0.024v312.747c-0.485 104.728-85.495 189.44-190.291 189.44-0.001 0-0.001-0-0.002-0l-0-0z","M407.467 799.147c-0.319 0.011-0.693 0.018-1.070 0.018-8.693 0-16.587-3.421-22.409-8.989l0.012 0.012-85.333-85.333c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 85.333-85.333c5.858-6.274 14.178-10.185 23.412-10.185 17.673 0 32 14.327 32 32 0 9.234-3.911 17.554-10.166 23.394l-0.019 0.017-62.293 63.147 62.72 62.293c5.784 5.79 9.362 13.785 9.362 22.617 0 17.514-14.071 31.742-31.524 31.997l-0.024 0z","M616.533 799.147c-17.478-0.255-31.548-14.483-31.548-31.997 0-8.831 3.577-16.827 9.362-22.617l-0 0 62.72-61.867-63.147-62.72c-5.806-5.858-9.393-13.924-9.393-22.827 0-17.912 14.521-32.433 32.433-32.433 9.009 0 17.16 3.673 23.038 9.604l0.002 0.002 85.333 85.333c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-85.333 85.333c-5.687 5.56-13.476 8.991-22.066 8.991-0.493 0-0.982-0.011-1.47-0.034l0.069 0.003z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["devices-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6022,"id":369,"name":"devices-2","prevSize":32,"code":60246,"codes":[60246,60247,60248]},"setIdx":0,"setId":0,"iconIdx":203},{"icon":{"paths":["M266.667 138.667h490.667c100.148 0 181.333 81.186 181.333 181.333v384c0 100.148-81.186 181.333-181.333 181.333h-490.667c-100.148 0-181.333-81.186-181.333-181.333v-384c0-100.148 81.186-181.333 181.333-181.333z","M349.867 426.667c0 23.564-18.72 42.667-41.813 42.667s-41.813-19.103-41.813-42.667c0-23.564 18.72-42.667 41.813-42.667s41.813 19.103 41.813 42.667z","M474.88 426.667c0 23.564-18.72 42.667-41.813 42.667s-41.813-19.103-41.813-42.667c0-23.564 18.72-42.667 41.813-42.667s41.813 19.103 41.813 42.667z","M719.36 458.667h-139.947c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h139.947c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M719.36 693.333h-411.307c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h411.307c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["devices"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6023,"id":368,"name":"devices","prevSize":32,"code":60249,"codes":[60249,60250,60251,60252,60253]},"setIdx":0,"setId":0,"iconIdx":204},{"icon":{"paths":["M926.293 412.587l-33.707-75.093h-761.173l-33.707 75.093c-7.814 16.816-12.372 36.503-12.372 57.254 0 35.406 13.269 67.712 35.106 92.217l-0.121-0.138 302.933 336.64c21.83 24.536 53.492 39.917 88.747 39.917s66.916-15.38 88.642-39.797l0.105-0.12 302.933-336.64c21.716-24.367 34.985-56.674 34.985-92.079 0-20.751-4.558-40.438-12.728-58.113l0.356 0.859z","M131.413 337.493h761.173l-81.92-183.040c-2.403-5.892-5.122-10.945-8.3-15.664l0.193 0.304c-3.547-3.926-7.167-7.546-10.962-10.976l-0.131-0.117c-5.749-6.457-12.037-12.203-18.867-17.258l-0.333-0.236c-14.052-12.228-31.371-21.065-50.471-25.046l-0.729-0.127c-2.555-0.209-5.53-0.329-8.533-0.329s-5.979 0.119-8.922 0.354l0.388-0.025h-384c-0.286-0.003-0.624-0.004-0.963-0.004-23.452 0-45.268 7.008-63.467 19.044l0.429-0.267c-8.958 6.906-16.69 14.775-23.24 23.575l-0.226 0.318c-6.681 7.817-13.011 16.455-18.676 25.55l-0.524 0.903z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["diamonds"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6024,"id":367,"name":"diamonds","prevSize":32,"code":60254,"codes":[60254,60255]},"setIdx":0,"setId":0,"iconIdx":205},{"icon":{"paths":["M725.333 938.667h-426.667c-94.257 0-170.667-76.41-170.667-170.667v0-144.213c-0-0.009-0-0.020-0-0.031 0-77.183 61.729-139.948 138.511-141.619l0.156-0.003h34.56c44.056 0.041 83.481 19.83 109.907 50.991l0.173 0.209 12.373 14.933c21.195 25.119 52.693 40.965 87.893 40.965s66.699-15.846 87.753-40.794l0.141-0.171 12.373-14.933c26.599-31.37 66.024-51.159 110.073-51.2l35.421-0c78.233 0 141.653 63.42 141.653 141.653v0 144.213c0 0.008 0 0.017 0 0.026 0 94.257-76.41 170.667-170.667 170.667-1.050 0-2.098-0.009-3.144-0.028l0.157 0.002z","M339.627 85.333h345.6c74.698 0 135.253 60.555 135.253 135.253v290.133c0 74.698-60.555 135.253-135.253 135.253h-345.6c-74.698 0-135.253-60.555-135.253-135.253v-290.133c0-74.698 60.555-135.253 135.253-135.253z","M608 305.92h-192c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h192c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M564.48 426.667h-110.080c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h110.080c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["directbox-default"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6025,"id":366,"name":"directbox-default","prevSize":32,"code":60256,"codes":[60256,60257,60258,60259]},"setIdx":0,"setId":0,"iconIdx":206},{"icon":{"paths":["M477.867 364.373l-30.293-30.72c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 125.013-125.44c38.684-39.086 92.341-63.289 151.651-63.289 66.764 0 126.365 30.669 165.483 78.688l0.306 0.388c29.047 37.002 46.583 84.242 46.583 135.578 0 62.125-25.682 118.251-67.008 158.342l-0.056 0.054-119.040 118.613c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-30.72-30.293c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 125.44-125.013c15.78-15.496 25.56-37.056 25.56-60.901 0-28.914-14.381-54.47-36.38-69.904l-0.273-0.182c-13.875-9.176-30.904-14.639-49.209-14.639-25.388 0-48.322 10.509-64.688 27.415l-0.023 0.024-121.6 122.027c-7.733 7.795-18.45 12.621-30.293 12.621s-22.56-4.826-30.291-12.618l-0.003-0.003zM477.867 665.6l-113.92 116.053c-16.39 16.93-39.323 27.439-64.711 27.439-18.305 0-35.334-5.463-49.545-14.848l0.337 0.209c-22.272-15.616-36.653-41.172-36.653-70.086 0-23.844 9.78-45.405 25.547-60.888l0.013-0.013 119.467-119.040c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-30.72-30.72c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002-113.067 113.067c-41.382 40.144-67.063 96.271-67.063 158.395 0 51.336 17.536 98.576 46.945 136.056l-0.362-0.479c39.424 48.407 99.025 79.076 165.789 79.076 59.31 0 112.967-24.203 151.633-63.271l0.018-0.018 119.467-119.467c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002-30.72-30.72c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003z","M228.267 353.28h-9.813l-90.453-29.44c-13.045-4.396-22.272-16.518-22.272-30.796 0-3.32 0.499-6.524 1.426-9.541l-0.061 0.23c4.032-13.118 16.041-22.489 30.238-22.489 3.529 0 6.923 0.579 10.091 1.647l-0.223-0.065 89.6 28.16c12.727 4.421 21.7 16.311 21.7 30.297 0 17.502-14.051 31.722-31.488 31.996l-0.026 0z","M360.533 226.56c-15.915-0.226-29.041-11.884-31.548-27.119l-0.026-0.188-8.533-61.44c-0.24-1.475-0.376-3.175-0.376-4.907 0-17.763 14.4-32.163 32.163-32.163 16.031 0 29.323 11.729 31.763 27.073l0.024 0.183 8.533 61.013c0.206 1.356 0.324 2.921 0.324 4.514 0 16.048-11.972 29.299-27.473 31.309l-0.158 0.017z","M693.333 884.907c-0.068 0.001-0.148 0.001-0.229 0.001-15.172 0-27.844-10.701-30.881-24.967l-0.037-0.207-18.773-91.733c-0.444-1.999-0.699-4.296-0.699-6.652 0-15.352 10.811-28.179 25.235-31.284l0.21-0.038c1.804-0.351 3.879-0.553 6-0.553 15.464 0 28.433 10.685 31.927 25.075l0.046 0.225 19.2 91.733c0.396 1.901 0.623 4.086 0.623 6.324 0 15.407-10.746 28.305-25.151 31.607l-0.218 0.042z","M861.44 704c-1.154 0.201-2.484 0.316-3.84 0.316s-2.686-0.115-3.979-0.336l0.139 0.020-59.733-14.933c-14.092-3.367-24.408-15.854-24.408-30.749 0-2.717 0.343-5.354 0.989-7.869l-0.048 0.219c3.531-14.122 16.107-24.416 31.088-24.416 2.748 0 5.415 0.346 7.96 0.998l-0.222-0.048 59.733 14.507c14.248 3.438 24.667 16.077 24.667 31.149 0 17.673-14.327 32-32 32-0.122 0-0.244-0.001-0.366-0.002l0.019 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["disconnect"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6026,"id":365,"name":"disconnect","prevSize":32,"code":60260,"codes":[60260,60261,60262,60263,60264]},"setIdx":0,"setId":0,"iconIdx":207},{"icon":{"paths":["M912.64 449.28l-59.307-60.16c-7.905-7.75-12.805-18.541-12.805-30.475 0-0.236 0.002-0.472 0.006-0.707l-0 0.036v-85.333c-0.24-48.831-39.881-88.324-88.746-88.324-0.3 0-0.6 0.001-0.9 0.004l0.046-0h-85.333c-0.2 0.003-0.435 0.005-0.671 0.005-11.935 0-22.725-4.9-30.468-12.798l-0.007-0.007-59.733-60.16c-16.057-16.040-38.23-25.96-62.72-25.96s-46.663 9.92-62.721 25.961l0.001-0.001-60.16 59.307c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0h-85.333c-48.831 0.24-88.324 39.881-88.324 88.746 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v85.333c0.003 0.2 0.005 0.435 0.005 0.671 0 11.935-4.9 22.725-12.798 30.468l-0.007 0.007-60.16 59.733c-16.040 16.057-25.96 38.23-25.96 62.72s9.92 46.663 25.961 62.721l-0.001-0.001 59.307 60.16c7.905 7.75 12.805 18.541 12.805 30.475 0 0.236-0.002 0.472-0.006 0.707l0-0.036v85.333c0.24 48.831 39.881 88.324 88.746 88.324 0.3 0 0.6-0.001 0.9-0.004l-0.046 0h85.333c0.2-0.003 0.435-0.005 0.671-0.005 11.935 0 22.725 4.9 30.468 12.798l0.007 0.007 60.16 60.16c16.057 16.040 38.23 25.96 62.72 25.96s46.663-9.92 62.721-25.961l-0.001 0.001 59.733-59.307c7.75-7.905 18.541-12.805 30.475-12.805 0.236 0 0.472 0.002 0.707 0.006l-0.036-0h85.333c49.013-0 88.747-39.733 88.747-88.747v0-85.333c-0.003-0.2-0.005-0.435-0.005-0.671 0-11.935 4.9-22.725 12.798-30.468l0.007-0.007 60.16-60.16c16.041-16.057 25.961-38.23 25.961-62.721 0-24.702-10.092-47.047-26.379-63.137l-0.009-0.009z","M384 672c-0.203 0.005-0.443 0.008-0.683 0.008-8.622 0-16.402-3.602-21.919-9.383l-0.011-0.012c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 256-256c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-256 256c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0zM384 341.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM640 597.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["discount"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6027,"id":364,"name":"discount","prevSize":32,"code":60265,"codes":[60265,60266]},"setIdx":0,"setId":0,"iconIdx":208},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 621.227c-60.324 0-109.227-48.902-109.227-109.227s48.902-109.227 109.227-109.227c60.324 0 109.227 48.902 109.227 109.227v0c0 60.324-48.902 109.227-109.227 109.227v0z","M514.133 669.867c-86.241-0.005-156.151-69.918-156.151-156.16 0-86.245 69.915-156.16 156.16-156.16 85.645 0 155.186 68.946 156.15 154.362l0.001 0.091c0.006 0.507 0.009 1.107 0.009 1.707 0 86.245-69.915 156.16-156.16 156.16-0.003 0-0.007-0-0.010-0l0 0zM514.133 428.373c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0.011-0.508 0.017-1.107 0.017-1.707 0-47.128-38.205-85.333-85.333-85.333-0.006 0-0.012 0-0.018 0l0.001-0zM631.893 861.44c117.458-40.013 206.521-134.993 237.516-253.461l0.564-2.539c0.333-1.733 0.524-3.727 0.524-5.765 0-17.673-14.327-32-32-32-14.089 0-26.052 9.105-30.324 21.753l-0.066 0.226c-26.372 100.282-99.749 179.148-194.549 212.672l-2.144 0.661c-12.722 4.424-21.689 16.311-21.689 30.293 0 17.648 14.287 31.96 31.926 32l0.004 0c3.857-0.662 7.302-2.005 10.361-3.91l-0.121 0.070zM216.32 457.387c21.521-112.007 102.527-200.83 208.207-233.249l2.14-0.565c13.347-4.077 22.887-16.285 22.887-30.72 0-17.706-14.354-32.060-32.060-32.060-3.271 0-6.428 0.49-9.4 1.4l0.227-0.060c-131.209 39.454-229.909 147.253-255.633 281.016l-0.367 2.291c-0.371 1.828-0.583 3.929-0.583 6.080 0 15.616 11.186 28.62 25.983 31.435l0.2 0.032h5.973c0.319 0.011 0.693 0.018 1.070 0.018 15.414 0 28.283-10.898 31.321-25.41l0.036-0.208z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["disk"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6028,"id":363,"name":"disk","prevSize":32,"code":60267,"codes":[60267,60268]},"setIdx":0,"setId":0,"iconIdx":209},{"icon":{"paths":["M776.96 152.747h90.027c37.467 0 67.84 30.373 67.84 67.84v459.093c0 37.467-30.373 67.84-67.84 67.84h-90.027c-37.467 0-67.84-30.373-67.84-67.84v-459.093c0-37.467 30.373-67.84 67.84-67.84z","M711.253 623.787l-170.667 259.84c-17.31 26.316-46.708 43.449-80.108 43.449-52.784 0-95.573-42.79-95.573-95.573 0-6.16 0.583-12.184 1.696-18.020l-0.095 0.597 22.187-128c0.503-2.695 0.791-5.795 0.791-8.962 0-28.105-22.645-50.921-50.684-51.197l-0.026-0h-173.653c-41.547-0.213-75.145-33.942-75.145-75.519 0-8.075 1.267-15.854 3.614-23.149l-0.149 0.535 110.080-362.667c12.704-39.57 49.129-67.727 92.147-67.84l0.013-0h216.32c0.535-0.007 1.167-0.011 1.8-0.011 31.298 0 60.28 9.911 83.98 26.766l-0.447-0.302 110.933 89.6z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dislike"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6029,"id":362,"name":"dislike","prevSize":32,"code":60269,"codes":[60269,60270]},"setIdx":0,"setId":0,"iconIdx":210},{"icon":{"paths":["M551.253 85.333c-32.99 0-59.733 26.744-59.733 59.733h0v153.6h-90.88c-116.171 0-210.347 94.175-210.347 210.347s94.175 210.347 210.347 210.347v0h150.613c32.99 0 59.733-26.744 59.733-59.733v-0-514.56c0-32.99-26.744-59.733-59.733-59.733v0zM309.76 507.307c-0-50.192 40.688-90.88 90.88-90.88l0 0h90.88v180.907h-90.88c-0.001 0-0.003 0-0.004 0-49.892 0-90.393-40.203-90.876-89.981l-0-0.046z","M649.813 938.667c-26.019-0.11-48.103-16.838-56.193-40.114l-0.127-0.419c-2.126-5.834-3.355-12.569-3.355-19.591 0-25.937 16.771-47.957 40.060-55.808l0.415-0.121c49.475-15.521 84.833-60.739 85.333-114.288l0-0.059v-384c0-32.99 26.744-59.733 59.733-59.733s59.733 26.744 59.733 59.733l0 0v384c-0.227 105.533-68.352 195.095-162.999 227.339l-1.694 0.501c-4.916 1.744-10.585 2.752-16.49 2.752-1.555 0-3.093-0.070-4.612-0.207l0.196 0.014z","M833.28 145.067c0 32.754-26.552 59.307-59.307 59.307s-59.307-26.552-59.307-59.307c0-32.754 26.552-59.307 59.307-59.307s59.307 26.552 59.307 59.307z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dj"]},"attrs":[{},{},{}],"properties":{"order":6030,"id":361,"name":"dj","prevSize":32,"code":60271},"setIdx":0,"setId":0,"iconIdx":211},{"icon":{"paths":["M938.667 512h-201.813c-113.383-2.978-204.16-95.601-204.16-209.425 0-3.325 0.077-6.633 0.231-9.92l-0.017 0.465v-207.787h-209.493c-131.901 1.918-238.090 109.293-238.090 241.469 0 0.759 0.003 1.516 0.010 2.273l-0.001-0.116v366.080c-0.006 0.641-0.010 1.399-0.010 2.157 0 132.176 106.189 239.551 237.91 241.467l0.18 0.002h376.32c132.321-1.682 238.939-109.341 238.939-241.902 0-0.606-0.002-1.212-0.007-1.818l0.001 0.093v-183.040z","M682.667 727.467c0.077 0.808 0.12 1.747 0.12 2.696 0 15.721-11.976 28.645-27.302 30.148l-0.125 0.010h-319.573c-15.474-1.734-27.394-14.745-27.394-30.539 0-0.814 0.032-1.621 0.094-2.42l-0.007 0.106c-0.054-0.68-0.085-1.473-0.085-2.273 0-15.709 11.957-28.625 27.266-30.144l0.126-0.010h318.293c15.985 0.645 28.699 13.76 28.699 29.844 0 0.909-0.041 1.809-0.12 2.698l0.008-0.115zM597.333 85.333v204.8c-0.215 2.952-0.338 6.395-0.338 9.867 0 78.265 62.346 141.969 140.083 144.155l0.202 0.004h201.387zM344.747 584.96h134.827c17.909 0 32.427-14.518 32.427-32.427s-14.518-32.427-32.427-32.427h-134.827c-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427h-0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["document"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6031,"id":360,"name":"document","prevSize":32,"code":60272,"codes":[60272,60273]},"setIdx":0,"setId":0,"iconIdx":212},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M692.907 602.88c0.005 0.429 0.008 0.936 0.008 1.444 0 27.037-7.958 52.215-21.66 73.32l0.319-0.524c-15.479 22.599-36.601 40.295-61.367 51.261l-0.926 0.366c-26.88 11.651-58.184 18.429-91.071 18.429-2.183 0-4.36-0.030-6.529-0.089l0.32 0.007c-2.447 0.097-5.319 0.152-8.204 0.152-37.565 0-72.941-9.372-103.918-25.905l1.189 0.58c-20.602-12.368-37.509-28.866-49.986-48.46l-0.361-0.607c-11.53-16.638-18.741-37.049-19.62-59.089l-0.007-0.218c-0.044-0.697-0.069-1.512-0.069-2.333 0-10.288 3.915-19.661 10.337-26.712l-0.028 0.032c7.278-7.383 17.389-11.956 28.567-11.956 0.307 0 0.613 0.003 0.918 0.010l-0.045-0.001c0.118-0.001 0.258-0.002 0.398-0.002 9.386 0 17.939 3.565 24.378 9.416l-0.030-0.027c7.53 7.598 13.374 16.879 16.917 27.229l0.15 0.504c5.697 13.965 11.992 25.895 19.289 37.112l-0.515-0.845c7.282 10.258 16.919 18.39 28.148 23.707l0.438 0.187c12.885 6.247 28.026 9.899 44.020 9.899 1.475 0 2.942-0.031 4.402-0.093l-0.209 0.007c1.476 0.072 3.205 0.113 4.943 0.113 23.056 0 44.424-7.228 61.961-19.543l-0.345 0.229c15.497-10.461 25.562-27.945 25.6-47.781l0-0.006c0.023-0.569 0.036-1.236 0.036-1.907 0-13.532-5.384-25.807-14.128-34.798l0.011 0.012c-8.602-9.19-19.149-16.449-30.995-21.132l-0.578-0.201c-14.933-5.12-34.133-10.24-58.88-16.213-31.915-6.483-60.039-15.615-86.667-27.495l2.613 1.042c-21.421-9.595-39.136-24.161-52.221-42.29l-0.259-0.377c-11.309-16.886-18.048-37.662-18.048-60.012 0-1.853 0.046-3.695 0.138-5.525l-0.010 0.257c-0.012-0.607-0.019-1.323-0.019-2.041 0-24.182 7.678-46.57 20.73-64.86l-0.231 0.341c14.461-20.201 34.176-35.796 57.161-44.924l0.865-0.303c25.478-9.779 54.95-15.444 85.746-15.444 2.255 0 4.504 0.030 6.744 0.091l-0.33-0.007c1.474-0.034 3.211-0.054 4.952-0.054 24.127 0 47.375 3.764 69.188 10.738l-1.607-0.444c19.55 6.225 36.466 15.7 51 27.919l-0.226-0.185c12.208 9.762 22.117 21.853 29.156 35.653l0.284 0.614c5.795 10.619 9.255 23.238 9.386 36.653l0 0.040c0.001 0.083 0.001 0.181 0.001 0.279 0 11.289-4.384 21.553-11.542 29.184l0.021-0.023c-6.778 8.112-16.899 13.235-28.216 13.235-0.28 0-0.56-0.003-0.839-0.009l0.041 0.001c-0.744 0.057-1.612 0.090-2.487 0.090-8.309 0-15.933-2.932-21.894-7.818l0.061 0.048c-6.6-7.574-12.419-16.118-17.157-25.31l-0.336-0.717c-7.471-15.729-17.522-29.056-29.748-40.002l-0.119-0.104c-13.722-9.83-30.849-15.719-49.352-15.719-2.754 0-5.477 0.13-8.164 0.385l0.343-0.026c-1.47-0.081-3.19-0.127-4.921-0.127-19.629 0-37.869 5.944-53.020 16.13l0.341-0.216c-12.828 7.876-21.353 21.673-21.759 37.489l-0.001 0.058c-0.008 0.295-0.013 0.641-0.013 0.989 0 8.443 2.725 16.249 7.342 22.587l-0.076-0.11c5.514 7.032 12.338 12.766 20.14 16.902l0.34 0.165c7.537 4.336 16.288 8.239 25.449 11.236l1.005 0.284 42.667 11.52c28.619 6.618 52.015 13.509 74.868 21.555l-4.895-1.502c20.176 6.749 37.695 15.718 53.554 26.886l-0.648-0.432c14.343 10.148 25.881 23.325 33.85 38.654l0.283 0.599c8.615 16.56 13.668 36.16 13.668 56.941 0 0.682-0.005 1.362-0.016 2.041l0.001-0.102z","M512 798.72v0c-0.645 0.046-1.397 0.073-2.156 0.073-17.249 0-31.31-13.647-31.975-30.732l-0.002-0.060 4.267-512c-0-0.001-0-0.002-0-0.003 0-17.437 14.136-31.573 31.573-31.573 0.15 0 0.3 0.001 0.449 0.003l-0.023-0c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023-4.267 512c-0.435 16.494-13.455 29.81-29.785 30.716l-0.082 0.004z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dollar"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6032,"id":359,"name":"dollar","prevSize":32,"code":60274,"codes":[60274,60275,60276]},"setIdx":0,"setId":0,"iconIdx":213},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M569.173 517.12c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M569.173 302.933c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M569.173 730.88c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dots-circle-vertical"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6033,"id":358,"name":"dots-circle-vertical","prevSize":32,"code":60277,"codes":[60277,60278,60279,60280]},"setIdx":0,"setId":0,"iconIdx":214},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M574.293 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M360.107 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M788.053 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dots-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6034,"id":357,"name":"dots-circle","prevSize":32,"code":60281,"codes":[60281,60282,60283,60284]},"setIdx":0,"setId":0,"iconIdx":215},{"icon":{"paths":["M574.293 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M360.107 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M788.053 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dots-horizontal"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6035,"id":356,"name":"dots-horizontal","prevSize":32,"code":60285,"codes":[60285,60286,60287]},"setIdx":0,"setId":0,"iconIdx":216},{"icon":{"paths":["M85.333 693.333l0-362.667c0-135.494 109.839-245.333 245.333-245.333h362.667c135.494 0 245.333 109.839 245.333 245.333v362.667c0 135.494-109.839 245.333-245.333 245.333h-362.667c-135.494 0-245.333-109.839-245.333-245.333z","M564.053 496.213c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M564.053 710.4c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M564.053 282.453c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dots-square-vertical"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6036,"id":355,"name":"dots-square-vertical","prevSize":32,"code":60288,"codes":[60288,60289,60290,60291]},"setIdx":0,"setId":0,"iconIdx":217},{"icon":{"paths":["M330.667 85.333h362.667c135.494 0 245.333 109.839 245.333 245.333v362.667c0 135.494-109.839 245.333-245.333 245.333h-362.667c-135.494 0-245.333-109.839-245.333-245.333v-362.667c0-135.494 109.839-245.333 245.333-245.333z","M584.96 506.88c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M370.773 506.88c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M798.72 506.88c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dots-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6037,"id":354,"name":"dots-square","prevSize":32,"code":60292,"codes":[60292,60293,60294,60295]},"setIdx":0,"setId":0,"iconIdx":218},{"icon":{"paths":["M569.173 517.12c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M569.173 302.933c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M569.173 730.88c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dots-vertical"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6038,"id":353,"name":"dots-vertical","prevSize":32,"code":60296,"codes":[60296,60297,60298]},"setIdx":0,"setId":0,"iconIdx":219},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M602.88 670.293l236.8-236.8c5.746-6.837 9.236-15.736 9.236-25.45 0-21.915-17.765-39.68-39.68-39.68-9.714 0-18.613 3.491-25.511 9.286l0.061-0.050-208.64 209.067-130.133-130.133c-6.971-6.441-16.326-10.391-26.604-10.391-21.679 0-39.253 17.574-39.253 39.253 0 10.278 3.95 19.634 10.415 26.631l-0.024-0.026 157.44 157.867c7.369 6.918 17.234 11.252 28.107 11.519l0.053 0.001c0.114 0.001 0.249 0.002 0.385 0.002 10.638 0 20.288-4.232 27.358-11.104l-0.009 0.009z","M398.080 665.6l236.373-236.8c6.441-6.971 10.391-16.326 10.391-26.604 0-21.679-17.574-39.253-39.253-39.253-10.278 0-19.634 3.95-26.631 10.415l0.026-0.024-209.067 208.64-128-130.133c-7.302-7.518-17.506-12.184-28.8-12.184-22.163 0-40.13 17.967-40.13 40.13 0 10.87 4.321 20.73 11.34 27.956l-0.009-0.010 157.013 157.867c7.169 7.114 17.045 11.511 27.947 11.511s20.777-4.397 27.949-11.514l-0.003 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["double-check-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6039,"id":352,"name":"double-check-circle","prevSize":32,"code":60299,"codes":[60299,60300,60301]},"setIdx":0,"setId":0,"iconIdx":220},{"icon":{"paths":["M451.84 725.333c-11.712-0.172-22.255-5.037-29.86-12.793l-0.007-0.007-195.84-197.12c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002 165.547 165.547 284.587-284.587c7.753-7.753 18.463-12.548 30.293-12.548 23.661 0 42.841 19.181 42.841 42.841 0 11.83-4.795 22.541-12.548 30.293l0-0-314.88 314.453c-7.474 8.496-18.195 13.982-30.204 14.504l-0.089 0.003z","M657.493 725.333c-11.712-0.172-22.255-5.037-29.86-12.793l-0.007-0.007-195.84-195.413c-7.753-7.753-12.548-18.463-12.548-30.293 0-23.661 19.181-42.841 42.841-42.841 11.83 0 22.541 4.795 30.293 12.548l-0-0 165.12 165.547 284.587-284.587c7.136-5.564 16.231-8.921 26.109-8.921 23.564 0 42.667 19.103 42.667 42.667 0 9.45-3.072 18.182-8.272 25.253l0.083-0.118-314.88 314.453c-7.474 8.496-18.195 13.982-30.204 14.504l-0.089 0.003z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["double-check"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6040,"id":351,"name":"double-check","prevSize":32,"code":60302,"codes":[60302,60303]},"setIdx":0,"setId":0,"iconIdx":221},{"icon":{"paths":["M512 806.827c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 256-256c7.872-9.153 19.467-14.914 32.407-14.914 23.564 0 42.667 19.103 42.667 42.667 0 12.94-5.761 24.535-14.858 32.36l-0.056 0.047-256 256c-7.612 7.763-18.155 12.628-29.835 12.8l-0.032 0z","M512 806.827c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003-256-256c-6.377-7.412-10.259-17.129-10.259-27.753 0-23.564 19.103-42.667 42.667-42.667 10.624 0 20.341 3.883 27.809 10.307l-0.056-0.047 256 256c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003c-7.661 7.393-18.104 11.947-29.61 11.947-0.090 0-0.18-0-0.27-0.001l0.014 0z","M512 577.707c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007-256-256c-5.996-7.292-9.631-16.722-9.631-27.001 0-23.564 19.103-42.667 42.667-42.667 11.13 0 21.265 4.262 28.861 11.242l-0.031-0.028 224.427 224 224.427-224c7.872-9.153 19.467-14.914 32.407-14.914 23.564 0 42.667 19.103 42.667 42.667 0 12.94-5.761 24.535-14.858 32.36l-0.056 0.047-256 256c-7.521 6.855-17.56 11.064-28.581 11.093l-0.006 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["double-down"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6041,"id":350,"name":"double-down","prevSize":32,"code":60304,"codes":[60304,60305,60306]},"setIdx":0,"setId":0,"iconIdx":222},{"icon":{"paths":["M519.68 426.667l282.027-162.133c10.873-6.479 23.976-10.31 37.975-10.31 41.473 0 75.093 33.62 75.093 75.093 0 0.175-0.001 0.349-0.002 0.523l0-0.027v364.373c0.001 0.147 0.002 0.322 0.002 0.496 0 41.473-33.62 75.093-75.093 75.093-13.999 0-27.102-3.83-38.321-10.5l0.346 0.19-282.027-162.133c-29.88-17.201-49.673-48.956-49.673-85.333s19.794-68.132 49.198-85.081l0.475-0.253z","M158.293 426.667l282.027-162.133c11.173-6.958 24.737-11.083 39.264-11.083 41.473 0 75.093 33.62 75.093 75.093 0 0.446-0.004 0.892-0.012 1.336l0.001-0.067v364.373c0.001 0.147 0.002 0.322 0.002 0.496 0 41.473-33.62 75.093-75.093 75.093-13.999 0-27.102-3.83-38.321-10.5l0.346 0.19-283.307-162.133c-29.88-17.201-49.673-48.956-49.673-85.333s19.794-68.132 49.198-85.081l0.475-0.253z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["double-left-arrow"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6042,"id":349,"name":"double-left-arrow","prevSize":32,"code":60307,"codes":[60307,60308]},"setIdx":0,"setId":0,"iconIdx":223},{"icon":{"paths":["M517.547 810.667c-11.656-0.051-22.2-4.767-29.869-12.376l0.003 0.003-256-256c-6.897-7.552-11.122-17.648-11.122-28.729 0-0.55 0.010-1.098 0.031-1.642l-0.002 0.079c-0-0.073-0.001-0.16-0.001-0.247 0-11.721 4.726-22.338 12.377-30.049l-0.003 0.003 256-256c7.412-6.377 17.129-10.259 27.753-10.259 23.564 0 42.667 19.103 42.667 42.667 0 10.624-3.883 20.341-10.307 27.809l0.047-0.056-225.707 226.133 224.427 224.427c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002c-7.534 8.336-18.253 13.672-30.222 14.078l-0.071 0.002z","M746.667 810.667c-11.656-0.051-22.2-4.767-29.869-12.376l0.003 0.003-256-256c-7.648-7.709-12.374-18.326-12.374-30.047 0-0.087 0-0.173 0.001-0.26l-0 0.013c-0-0.073-0.001-0.16-0.001-0.247 0-11.721 4.726-22.338 12.377-30.049l-0.003 0.003 256-256c7.872-9.153 19.467-14.914 32.407-14.914 23.564 0 42.667 19.103 42.667 42.667 0 12.94-5.761 24.535-14.858 32.36l-0.056 0.047-222.293 226.133 224.427 224.427c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002c-7.84 8.665-19.127 14.087-31.68 14.087-0.263 0-0.525-0.002-0.786-0.007l0.039 0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["double-left"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6043,"id":348,"name":"double-left","prevSize":32,"code":60309,"codes":[60309,60310]},"setIdx":0,"setId":0,"iconIdx":224},{"icon":{"paths":["M504.32 426.667l-282.027-162.133c-10.873-6.479-23.976-10.31-37.975-10.31-41.473 0-75.093 33.62-75.093 75.093 0 0.175 0.001 0.349 0.002 0.523l-0-0.027v364.373c-0.001 0.147-0.002 0.322-0.002 0.496 0 41.473 33.62 75.093 75.093 75.093 13.999 0 27.102-3.83 38.321-10.5l-0.346 0.19 282.027-162.133c29.88-17.201 49.673-48.956 49.673-85.333s-19.794-68.132-49.198-85.081l-0.475-0.253z","M865.707 426.667l-282.027-162.133c-11.173-6.958-24.737-11.083-39.264-11.083-41.473 0-75.093 33.62-75.093 75.093 0 0.446 0.004 0.892 0.012 1.336l-0.001-0.067v364.373c-0.001 0.147-0.002 0.322-0.002 0.496 0 41.473 33.62 75.093 75.093 75.093 13.999 0 27.102-3.83 38.321-10.5l-0.346 0.19 283.307-162.133c29.88-17.201 49.673-48.956 49.673-85.333s-19.794-68.132-49.198-85.081l-0.475-0.253z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["double-right-arrow"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6044,"id":347,"name":"double-right-arrow","prevSize":32,"code":60311,"codes":[60311,60312]},"setIdx":0,"setId":0,"iconIdx":225},{"icon":{"paths":["M499.627 802.56c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 218.027-217.6-218.027-217.6c-7.753-7.753-12.548-18.463-12.548-30.293 0-23.661 19.181-42.841 42.841-42.841 11.83 0 22.541 4.795 30.293 12.548l247.893 247.893c7.648 7.709 12.374 18.326 12.374 30.047 0 0.087-0 0.173-0.001 0.26l0-0.013c0 0.073 0.001 0.16 0.001 0.247 0 11.721-4.726 22.338-12.377 30.049l0.003-0.003-247.893 247.893c-7.709 7.648-18.326 12.374-30.047 12.374-0.087 0-0.173-0-0.26-0.001l0.013 0z","M276.48 802.56c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 217.6-217.6-217.6-217.6c-7.753-7.753-12.548-18.463-12.548-30.293 0-23.661 19.181-42.841 42.841-42.841 11.83 0 22.541 4.795 30.293 12.548l247.893 247.893c7.648 7.709 12.374 18.326 12.374 30.047 0 0.087-0 0.173-0.001 0.26l0-0.013c-0.169 11.771-4.851 22.416-12.39 30.311l0.016-0.017-247.893 247.893c-7.709 7.648-18.326 12.374-30.047 12.374-0.087 0-0.173-0-0.26-0.001l0.013 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["double-right"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6045,"id":346,"name":"double-right","prevSize":32,"code":60313,"codes":[60313,60314]},"setIdx":0,"setId":0,"iconIdx":226},{"icon":{"paths":["M768 557.227c-11.712-0.172-22.255-5.037-29.86-12.793l-0.007-0.007-256-256c-7.753-7.753-12.548-18.463-12.548-30.293 0-23.661 19.181-42.841 42.841-42.841 11.83 0 22.541 4.795 30.293 12.548l256 256c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002c-7.749 8.118-18.639 13.179-30.711 13.227l-0.009 0z","M256 557.227c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 256-256c7.802-7.645 18.497-12.363 30.293-12.363 23.912 0 43.296 19.384 43.296 43.296 0 12.115-4.976 23.068-12.996 30.926l-0.007 0.007-256 256c-7.552 6.897-17.648 11.122-28.729 11.122-0.55 0-1.098-0.010-1.642-0.031l0.079 0.002z","M768 786.347c-11.712-0.172-22.255-5.037-29.86-12.793l-0.007-0.007-226.133-224-224.427 224c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 256-256c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 256 256c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002c-7.752 7.918-18.551 12.827-30.496 12.827-0.529 0-1.056-0.010-1.58-0.029l0.076 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["double-up"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6046,"id":345,"name":"double-up","prevSize":32,"code":60315,"codes":[60315,60316,60317]},"setIdx":0,"setId":0,"iconIdx":227},{"icon":{"paths":["M85.333 690.773l0-357.547c0-136.908 110.986-247.893 247.893-247.893h357.547c136.908 0 247.893 110.986 247.893 247.893v357.547c0 136.908-110.986 247.893-247.893 247.893h-357.547c-136.908 0-247.893-110.986-247.893-247.893z","M706.987 440.747c-0.048 12.081-5.109 22.971-13.21 30.704l-0.017 0.016-155.733 149.333c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-148.907-157.013c-7.411-7.669-11.977-18.128-11.977-29.653 0-23.581 19.116-42.697 42.697-42.697 12.056 0 22.944 4.996 30.708 13.032l0.012 0.012 121.6 125.013 125.013-119.467c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002c6.186 7.354 9.944 16.928 9.944 27.38 0 1.175-0.048 2.34-0.141 3.491l0.010-0.151z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["down-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6047,"id":344,"name":"down-square","prevSize":32,"code":60318,"codes":[60318,60319]},"setIdx":0,"setId":0,"iconIdx":228},{"icon":{"paths":["M512 733.867c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003-256-256c-7.753-7.753-12.548-18.463-12.548-30.293 0-23.661 19.181-42.841 42.841-42.841 11.83 0 22.541 4.795 30.293 12.548l225.707 225.707 225.707-225.707c7.753-7.753 18.463-12.548 30.293-12.548 23.661 0 42.841 19.181 42.841 42.841 0 11.83-4.795 22.541-12.548 30.293l-256 256c-7.709 7.648-18.326 12.374-30.047 12.374-0.087 0-0.173-0-0.26-0.001l0.013 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["down"]},"attrs":[{}],"properties":{"order":6048,"id":343,"name":"down","prevSize":32,"code":60320},"setIdx":0,"setId":0,"iconIdx":229},{"icon":{"paths":["M592.64 325.973c68.109-31.813 126.641-71.373 177.98-118.629l-0.486 0.442c5.684-5.028 9.249-12.34 9.249-20.484 0-9.103-4.455-17.166-11.303-22.128l-0.079-0.055c-70.49-53.114-159.487-85.135-255.954-85.333l-0.046-0c-18.504 0.865-35.818 2.848-52.757 5.908l2.41-0.361c-13.59 2.162-23.853 13.797-23.853 27.829 0 5.495 1.574 10.622 4.295 14.955l-0.069-0.117c36.439 52.070 73.781 112.742 107.679 175.547l4.961 10.053c4.881 9.18 14.385 15.324 25.324 15.324 4.607 0 8.96-1.090 12.814-3.026l-0.165 0.075z","M469.333 336.213c-42.164-76.050-83.259-140.035-127.923-201.251l3.763 5.411c-5.019-6.891-13.061-11.319-22.137-11.319-4.704 0-9.13 1.189-12.994 3.284l0.144-0.071c-97.916 52.849-171.757 139.72-206.486 244.426l-0.874 3.041c-1.038 2.794-1.638 6.023-1.638 9.391 0 15.143 12.136 27.451 27.212 27.729l0.026 0c4.498 0.060 9.809 0.095 15.128 0.095 110.384 0 217.305-14.828 318.879-42.6l-8.46 1.972c11.144-3.767 19.024-14.128 19.024-26.33 0-5.069-1.36-9.82-3.735-13.909l0.071 0.133z","M662.613 484.267c30.595-4.91 65.867-7.715 101.794-7.715 50.088 0 98.903 5.452 145.884 15.796l-4.478-0.827c1.736 0.381 3.731 0.599 5.776 0.599 15.552 0 28.16-12.608 28.16-28.16 0-1.264-0.083-2.509-0.245-3.729l0.015 0.143c-8.611-70.502-33.221-133.927-70.079-188.383l0.959 1.503c-5.079-7.207-13.366-11.858-22.74-11.858-7.817 0-14.879 3.234-19.92 8.437l-0.007 0.007c-55.955 52.207-120.395 96.317-190.832 129.875l-4.581 1.965c-9.61 4.496-16.148 14.083-16.148 25.198 0 4.168 0.919 8.12 2.566 11.667l-0.071-0.171 13.653 29.44c4.25 9.895 13.911 16.7 25.162 16.7 1.815 0 3.588-0.177 5.304-0.515l-0.173 0.028z","M545.28 482.987l-7.68-16.64c-4.706-9.365-14.237-15.678-25.243-15.678-2.866 0-5.632 0.428-8.237 1.224l0.199-0.052c-105.616 32.501-227.024 51.217-352.804 51.217-2.267 0-4.533-0.006-6.798-0.018l0.349 0.001h-34.133c-0.131-0.002-0.285-0.003-0.44-0.003-15.317 0-27.733 12.417-27.733 27.733 0 0.301 0.005 0.601 0.014 0.9l-0.001-0.044c1.275 30.931 5.405 60.2 12.148 88.454l-0.628-3.121c14.702 55.999 38.479 104.999 69.972 147.993l-0.852-1.219c5.188 6.937 13.382 11.378 22.613 11.378s17.425-4.442 22.561-11.305l0.053-0.074c83.242-106.778 191.29-190.44 315.694-242.972l5.159-1.934c10.421-4.147 17.654-14.147 17.654-25.837 0-3.598-0.685-7.036-1.932-10.191l0.065 0.188z","M686.080 601.173c22.127 59.181 43.721 132.857 60.512 208.342l2.208 11.818c2.774 12.867 14.056 22.37 27.558 22.37 6.909 0 13.238-2.488 18.137-6.618l-0.042 0.035c65.82-57.447 113.792-133.819 135.478-220.602l0.628-2.971c0.352-1.682 0.553-3.616 0.553-5.596 0-13.255-9.022-24.404-21.26-27.639l-0.199-0.045c-44.789-11.589-96.206-18.242-149.178-18.242-17.626 0-35.079 0.737-52.332 2.181l2.257-0.152c-14.511 1.248-25.816 13.335-25.816 28.062 0 3.242 0.548 6.357 1.556 9.255l-0.060-0.198z","M563.627 597.333c-122.339 49.457-223.599 129.581-297.319 231.014l-1.347 1.946c-3.387 4.497-5.424 10.178-5.424 16.334 0 9.293 4.642 17.502 11.734 22.434l0.090 0.059c67.577 46.038 151.011 73.508 240.86 73.508 51.3 0 100.508-8.955 146.147-25.387l-3.007 0.946c10.832-4.086 18.397-14.366 18.397-26.413 0-1.825-0.174-3.609-0.505-5.336l0.028 0.176c-19.823-104.77-46.099-196.361-79.725-284.318l3.779 11.251c-4.366-10.244-14.349-17.294-25.979-17.294-2.752 0-5.412 0.395-7.926 1.131l0.199-0.050z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dribbble"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6049,"id":342,"name":"dribbble","prevSize":32,"code":60321,"codes":[60321,60322,60323,60324,60325,60326]},"setIdx":0,"setId":0,"iconIdx":230},{"icon":{"paths":["M648.96 327.253c3.108-4.328 4.971-9.733 4.971-15.573s-1.863-11.245-5.026-15.654l0.055 0.081c-32.427-56.747-67.413-109.227-94.293-147.2-9.639-13.342-25.15-21.923-42.667-21.923s-33.028 8.581-42.561 21.77l-0.106 0.154c-78.507 114.347-234.24 356.693-234.24 469.333 0.083 42.555 9.508 82.888 26.331 119.086l-0.731-1.753c4.443 9.082 13.615 15.226 24.222 15.226 8.477 0 16.037-3.924 20.964-10.054l0.041-0.052z","M341.333 802.56c-3.775 4.593-6.063 10.532-6.063 17.006 0 8.952 4.376 16.882 11.106 21.767l0.078 0.054c45.306 35.178 102.913 56.486 165.487 56.746l0.060 0c0.127 0 0.277 0 0.427 0 153.167 0 277.333-124.166 277.333-277.333 0-0.15-0-0.3-0-0.45l0 0.023c-10.889-80.087-37.573-152.198-76.871-215.677l1.351 2.344c-4.772-7.923-13.328-13.14-23.103-13.14-7.704 0-14.651 3.241-19.552 8.433l-0.012 0.013z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["drop"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6050,"id":341,"name":"drop","prevSize":32,"code":60327,"codes":[60327,60328]},"setIdx":0,"setId":0,"iconIdx":231},{"icon":{"paths":["M759.467 389.973l-247.467 173.653 200.107 140.8 195.413-146.347c10.050-7.291 16.511-18.998 16.511-32.213s-6.461-24.922-16.396-32.134l-0.115-0.079z","M337.92 92.587c-6.442-4.705-14.518-7.527-23.253-7.527s-16.812 2.823-23.366 7.606l0.113-0.078-174.933 128c-10.052 7.378-16.505 19.149-16.505 32.427s6.452 25.049 16.393 32.348l0.112 0.078 148.053 104.533 247.467-174.507z","M117.333 493.653c-10.050 7.291-16.511 18.998-16.511 32.213s6.461 24.922 16.396 32.134l0.115 0.079 195.413 146.347 199.253-140.8-247.467-173.653z","M906.667 286.293c10.052-7.378 16.505-19.149 16.505-32.427s-6.452-25.049-16.393-32.348l-0.112-0.078-174.933-128c-6.442-4.705-14.518-7.527-23.253-7.527s-16.812 2.823-23.366 7.606l0.113-0.078-173.227 122.027 247.467 174.507z","M712.107 704.427l-200.107-140.373-200.107 140.373-114.773-85.333v106.24c0.487 28.611 15.96 53.502 38.889 67.212l0.364 0.202 237.227 136.533c11.189 6.617 24.658 10.527 39.040 10.527s27.851-3.91 39.402-10.725l-0.362 0.198 236.8-136.533c23.591-13.606 39.222-38.68 39.253-67.409l0-0.004v-107.093z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["dropbox"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6051,"id":340,"name":"dropbox","prevSize":32,"code":60329,"codes":[60329,60330,60331,60332,60333]},"setIdx":0,"setId":0,"iconIdx":232},{"icon":{"paths":["M644.267 746.667l-80.64-85.333c-13.234-13.852-31.851-22.464-52.48-22.464s-39.247 8.612-52.454 22.436l-0.026 0.028-80.213 85.333-42.667 44.8c-9.38 10.033-15.139 23.554-15.139 38.42 0 31.105 25.215 56.32 56.32 56.32 0.522 0 1.043-0.007 1.562-0.021l-0.077 0.002h269.227c0.094 0.001 0.206 0.001 0.318 0.001 30.869 0 55.893-25.024 55.893-55.893 0-15.302-6.149-29.167-16.11-39.26l0.006 0.006z","M687.36 232.533c9.61-10.083 15.523-23.765 15.523-38.827 0-31.012-25.065-56.17-56.042-56.319l-0.014-0h-269.653c-0.751-0.036-1.63-0.057-2.515-0.057-30.869 0-55.893 25.024-55.893 55.893 0 15.119 6.003 28.836 15.756 38.898l-0.014-0.015 42.667 42.667 79.787 85.333c13.234 13.852 31.851 22.464 52.48 22.464s39.247-8.612 52.454-22.436l0.026-0.028 80.64-85.333z","M92.16 485.973l95.147-149.76c8.488-13.563 23.346-22.45 40.28-22.45 13.101 0 24.959 5.319 33.533 13.916l0.001 0.001 152.32 149.333c8.221 8.255 13.303 19.641 13.303 32.213s-5.082 23.959-13.305 32.215l0.002-0.002-150.613 154.453c-8.723 8.712-20.767 14.099-34.070 14.099-16.969 0-31.891-8.767-40.483-22.018l-0.114-0.188-96-151.467c-4.409-7.178-7.021-15.87-7.021-25.173s2.612-17.996 7.142-25.386l-0.121 0.212z","M931.413 485.12l-94.72-149.76c-8.611-13.427-23.46-22.198-40.358-22.198-13.030 0-24.842 5.215-33.463 13.672l0.008-0.007-152.32 149.333c-8.325 8.207-13.482 19.608-13.482 32.213s5.157 24.006 13.476 32.208l0.005 0.005 150.613 154.453c8.723 8.712 20.767 14.099 34.070 14.099 16.969 0 31.891-8.767 40.483-22.018l0.114-0.188 96-151.467c4.462-7.051 7.111-15.635 7.111-24.838 0-9.482-2.812-18.307-7.647-25.688l0.11 0.179z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["educare"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6052,"id":339,"name":"educare","prevSize":32,"code":60334,"codes":[60334,60335,60336,60337]},"setIdx":0,"setId":0,"iconIdx":233},{"icon":{"paths":["M584.107 966.827c-57.452-0.482-103.867-47.047-104.107-104.51l-0-0.023v-191.147c0-17.673 14.327-32 32-32s32 14.327 32 32v0 191.147c0.262 12.634 5.976 23.883 14.876 31.526l0.057 0.048c6.735 5.595 15.47 8.99 24.999 8.99 2.934 0 5.792-0.322 8.542-0.932l-0.261 0.049c45.814-9.787 86.375-26.631 122.721-49.551l-1.547 0.911c4.692-2.846 10.363-4.53 16.427-4.53 17.701 0 32.050 14.349 32.050 32.050 0 11.637-6.202 21.825-15.48 27.44l-0.143 0.080c-40.534 24.488-87.647 43.389-137.801 54.078l-2.999 0.535c-6.279 2.006-13.557 3.377-21.083 3.828l-0.25 0.012z","M896 736c-0.156 0.003-0.34 0.005-0.525 0.005-4.965 0-9.635-1.266-13.704-3.493l0.149 0.075c-10.6-5.361-17.741-16.171-17.741-28.648 0-5.102 1.194-9.925 3.318-14.206l-0.084 0.186c25.562-50.512 40.534-110.119 40.534-173.223 0-0.301-0-0.603-0.001-0.904l0 0.047c0.002-0.442 0.003-0.966 0.003-1.49 0-217.733-176.507-394.24-394.24-394.24-59.739 0-116.374 13.287-167.112 37.067l2.416-1.017c-3.632 1.553-7.858 2.456-12.295 2.456-17.673 0-32-14.327-32-32 0-12.348 6.994-23.063 17.238-28.399l0.177-0.084c55.754-25.984 121.040-41.143 189.867-41.143 253.315 0 458.667 205.352 458.667 458.667 0 0.064-0 0.129-0 0.193l0-0.010c0.001 0.36 0.002 0.787 0.002 1.214 0 73.221-17.335 142.393-48.124 203.637l1.189-2.611c-5.177 10.41-15.58 17.524-27.682 17.919l-0.051 0.001z","M162.987 793.173c-0.033 0-0.073 0-0.112 0-10.619 0-20.031-5.173-25.852-13.136l-0.063-0.091c-52.376-73.495-83.738-165.119-83.738-264.069 0-85.069 23.181-164.724 63.57-232.992l-1.165 2.128c5.831-8.563 15.534-14.112 26.533-14.112 17.673 0 32 14.327 32 32 0 5.306-1.292 10.311-3.577 14.717l0.084-0.178c-26.876 44.846-45.128 97.839-51.059 154.5l-0.141 1.66c-1.369 12.394-2.15 26.766-2.15 41.319 0 85.318 26.84 164.366 72.537 229.163l-0.84-1.256c3.868 5.18 6.192 11.708 6.192 18.78 0 17.437-14.136 31.573-31.573 31.573-0.227 0-0.454-0.002-0.68-0.007l0.034 0.001z","M219.733 931.413c-59.853 0-108.373-48.52-108.373-108.373s48.52-108.373 108.373-108.373c59.853 0 108.373 48.52 108.373 108.373h0c-0 59.853-48.52 108.373-108.373 108.373h0zM219.733 778.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0z","M371.2 325.12h281.6c33.932 0 61.44 27.508 61.44 61.44v2.987c0 33.932-27.508 61.44-61.44 61.44h-281.6c-33.932 0-61.44-27.508-61.44-61.44v-2.987c0-33.932 27.508-61.44 61.44-61.44z","M436.053 325.12v-123.733c0-16.259-13.181-29.44-29.44-29.44s-29.44 13.181-29.44 29.44v0 122.453z","M650.24 325.12v-123.307c0.050-0.639 0.079-1.383 0.079-2.133 0-16.024-12.99-29.013-29.013-29.013-0.028 0-0.055 0-0.083 0l0.004-0c-16.259-0-29.44 13.181-29.44 29.44v0 125.013z","M644.693 549.973c0 73.285-59.409 132.693-132.693 132.693s-132.693-59.409-132.693-132.693v0-98.987h265.387z","M857.6 800.427c0 15.552-12.608 28.16-28.16 28.16s-28.16-12.608-28.16-28.16c0-15.552 12.608-28.16 28.16-28.16s28.16 12.608 28.16 28.16z","M260.267 201.813c0 15.552-12.608 28.16-28.16 28.16s-28.16-12.608-28.16-28.16c0-15.552 12.608-28.16 28.16-28.16s28.16 12.608 28.16 28.16z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["electricity"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6053,"id":338,"name":"electricity","prevSize":32,"code":60338,"codes":[60338,60339,60340,60341,60342,60343,60344,60345,60346,60347]},"setIdx":0,"setId":0,"iconIdx":234},{"icon":{"paths":["M310.187 213.333h341.333c47.128 0 85.333 38.205 85.333 85.333v426.667c0 47.128-38.205 85.333-85.333 85.333h-341.333c-47.128 0-85.333-38.205-85.333-85.333v-426.667c0-47.128 38.205-85.333 85.333-85.333z","M376.32 85.333h209.067c0.044-0 0.095-0 0.147-0 25.596 0 46.947 18.177 51.849 42.327l0.058 0.34 14.080 85.333h-341.333l14.080-85.333c4.959-24.49 26.31-42.667 51.906-42.667 0.052 0 0.103 0 0.155 0l-0.008-0z","M324.267 896c4.959 24.49 26.31 42.667 51.906 42.667 0.052 0 0.103-0 0.155-0l-0.008 0h209.067c0.044 0 0.095 0 0.147 0 25.596 0 46.947-18.177 51.849-42.327l0.058-0.34 14.080-85.333h-341.333z","M791.467 436.907c4.869-15.904 7.672-34.185 7.672-53.12s-2.803-37.216-8.018-54.449l0.346 1.329c-4.899-18.56-21.536-32.021-41.317-32.021-0.475 0-0.947 0.008-1.418 0.023l0.069-0.002h-12.373v170.667h12.8c0.244 0.005 0.531 0.008 0.818 0.008 19.931 0 36.67-13.666 41.358-32.14l0.063-0.295z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["electronic-clock"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6054,"id":337,"name":"electronic-clock","prevSize":32,"code":60348,"codes":[60348,60349,60350,60351]},"setIdx":0,"setId":0,"iconIdx":235},{"icon":{"paths":["M180.907 85.333h214.187c41.002 0 74.24 33.238 74.24 74.24v150.187c0 41.002-33.238 74.24-74.24 74.24h-214.187c-41.002 0-74.24-33.238-74.24-74.24v-150.187c0-41.002 33.238-74.24 74.24-74.24z","M180.907 469.333h214.187c41.002 0 74.24 33.238 74.24 74.24v320.853c0 41.002-33.238 74.24-74.24 74.24h-214.187c-41.002 0-74.24-33.238-74.24-74.24v-320.853c0-41.002 33.238-74.24 74.24-74.24z","M629.333 85.333h213.333c41.237 0 74.667 33.429 74.667 74.667v320c0 41.237-33.429 74.667-74.667 74.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v-320c0-41.237 33.429-74.667 74.667-74.667z","M628.907 640h214.187c41.002-0 74.24 33.238 74.24 74.24v150.187c0 41.002-33.238 74.24-74.24 74.24h-214.187c-41.002 0-74.24-33.238-74.24-74.24v-150.187c0-41.002 33.238-74.24 74.24-74.24z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-1"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6055,"id":336,"name":"element-1","prevSize":32,"code":60352,"codes":[60352,60353,60354,60355]},"setIdx":0,"setId":0,"iconIdx":236},{"icon":{"paths":["M149.333 106.667h128c23.564 0 42.667 19.103 42.667 42.667v128c0 23.564-19.103 42.667-42.667 42.667h-128c-23.564 0-42.667-19.103-42.667-42.667v-128c0-23.564 19.103-42.667 42.667-42.667z","M576 320h-128c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h128c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM917.333 277.333v-128c0-23.564-19.103-42.667-42.667-42.667v0h-128c-23.564 0-42.667 19.103-42.667 42.667v0 128c0 23.564 19.103 42.667 42.667 42.667v0h128c23.564 0 42.667-19.103 42.667-42.667v0zM320 576v-128c0-23.564-19.103-42.667-42.667-42.667v0h-128c-23.564 0-42.667 19.103-42.667 42.667v0 128c0 23.564 19.103 42.667 42.667 42.667v0h128c23.564 0 42.667-19.103 42.667-42.667v0zM618.667 576v-128c0-23.564-19.103-42.667-42.667-42.667v0h-128c-23.564 0-42.667 19.103-42.667 42.667v0 128c0 23.564 19.103 42.667 42.667 42.667v0h128c23.564 0 42.667-19.103 42.667-42.667v0zM917.333 576v-128c0-23.564-19.103-42.667-42.667-42.667v0h-128c-23.564 0-42.667 19.103-42.667 42.667v0 128c0 23.564 19.103 42.667 42.667 42.667v0h128c23.564 0 42.667-19.103 42.667-42.667v0zM320 874.667v-128c0-23.564-19.103-42.667-42.667-42.667v0h-128c-23.564 0-42.667 19.103-42.667 42.667v0 128c0 23.564 19.103 42.667 42.667 42.667v0h128c23.564 0 42.667-19.103 42.667-42.667v0zM618.667 874.667v-128c0-23.564-19.103-42.667-42.667-42.667v0h-128c-23.564 0-42.667 19.103-42.667 42.667v0 128c0 23.564 19.103 42.667 42.667 42.667v0h128c23.564 0 42.667-19.103 42.667-42.667v0zM917.333 874.667v-128c0-23.564-19.103-42.667-42.667-42.667v0h-128c-23.564 0-42.667 19.103-42.667 42.667v0 128c0 23.564 19.103 42.667 42.667 42.667v0h128c23.564 0 42.667-19.103 42.667-42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-2"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6056,"id":335,"name":"element-2","prevSize":32,"code":60356,"codes":[60356,60357]},"setIdx":0,"setId":0,"iconIdx":237},{"icon":{"paths":["M501.333 128h362.667c41.237 0 74.667 33.429 74.667 74.667v618.667c0 41.237-33.429 74.667-74.667 74.667h-362.667c-41.237 0-74.667-33.429-74.667-74.667v-618.667c0-41.237 33.429-74.667 74.667-74.667z","M160 128h106.667c41.237 0 74.667 33.429 74.667 74.667v618.667c0 41.237-33.429 74.667-74.667 74.667h-106.667c-41.237 0-74.667-33.429-74.667-74.667v-618.667c0-41.237 33.429-74.667 74.667-74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6057,"id":334,"name":"element-3","prevSize":32,"code":60358,"codes":[60358,60359]},"setIdx":0,"setId":0,"iconIdx":238},{"icon":{"paths":["M202.667 128h277.333c64.801 0 117.333 52.532 117.333 117.333v533.333c0 64.801-52.532 117.333-117.333 117.333h-277.333c-64.801 0-117.333-52.532-117.333-117.333v-533.333c0-64.801 52.532-117.333 117.333-117.333z","M757.333 128h106.667c41.237 0 74.667 33.429 74.667 74.667v618.667c0 41.237-33.429 74.667-74.667 74.667h-106.667c-41.237 0-74.667-33.429-74.667-74.667v-618.667c0-41.237 33.429-74.667 74.667-74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-4"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6058,"id":333,"name":"element-4","prevSize":32,"code":60360,"codes":[60360,60361]},"setIdx":0,"setId":0,"iconIdx":239},{"icon":{"paths":["M160 128h106.667c41.237 0 74.667 33.429 74.667 74.667v618.667c0 41.237-33.429 74.667-74.667 74.667h-106.667c-41.237 0-74.667-33.429-74.667-74.667v-618.667c0-41.237 33.429-74.667 74.667-74.667z","M864 469.333h-362.667c-41.237 0-74.667-33.429-74.667-74.667v0-192c0-41.237 33.429-74.667 74.667-74.667v0h362.667c41.237 0 74.667 33.429 74.667 74.667v0 192c0 41.237-33.429 74.667-74.667 74.667v0zM938.667 821.333v-192c0-41.237-33.429-74.667-74.667-74.667v0h-362.667c-41.237 0-74.667 33.429-74.667 74.667v0 192c0 41.237 33.429 74.667 74.667 74.667v0h362.667c41.237 0 74.667-33.429 74.667-74.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-5"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6059,"id":332,"name":"element-5","prevSize":32,"code":60362,"codes":[60362,60363]},"setIdx":0,"setId":0,"iconIdx":240},{"icon":{"paths":["M618.667 480v362.667c0 41.237-33.429 74.667-74.667 74.667v0h-64c-41.237 0-74.667-33.429-74.667-74.667v0-362.667c0-41.237 33.429-74.667 74.667-74.667v0h64c41.237 0 74.667 33.429 74.667 74.667v0zM842.667 405.333h-64c-41.237 0-74.667 33.429-74.667 74.667v0 362.667c0 41.237 33.429 74.667 74.667 74.667v0h64c41.237 0 74.667-33.429 74.667-74.667v0-362.667c0-41.237-33.429-74.667-74.667-74.667v0z","M320 480v362.667c0 41.237-33.429 74.667-74.667 74.667v0h-64c-41.237 0-74.667-33.429-74.667-74.667v0-362.667c0-41.237 33.429-74.667 74.667-74.667v0h64c41.237 0 74.667 33.429 74.667 74.667v0zM917.333 245.333v-64c0-41.237-33.429-74.667-74.667-74.667v0h-661.333c-41.237 0-74.667 33.429-74.667 74.667v0 64c0 41.237 33.429 74.667 74.667 74.667v0h661.333c41.237 0 74.667-33.429 74.667-74.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-6"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6060,"id":331,"name":"element-6","prevSize":32,"code":60364,"codes":[60364,60365]},"setIdx":0,"setId":0,"iconIdx":241},{"icon":{"paths":["M842.667 320h-661.333c-41.237 0-74.667-33.429-74.667-74.667v0-64c0-41.237 33.429-74.667 74.667-74.667v0h661.333c41.237 0 74.667 33.429 74.667 74.667v0 64c0 41.237-33.429 74.667-74.667 74.667v0zM288 405.333h-106.667c-41.237 0-74.667 33.429-74.667 74.667v0 362.667c0 41.237 33.429 74.667 74.667 74.667v0h106.667c41.237 0 74.667-33.429 74.667-74.667v0-362.667c0-41.237-33.429-74.667-74.667-74.667v0z","M522.667 405.333h320c41.237 0 74.667 33.429 74.667 74.667v362.667c0 41.237-33.429 74.667-74.667 74.667h-320c-41.237 0-74.667-33.429-74.667-74.667v-362.667c0-41.237 33.429-74.667 74.667-74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-7"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6061,"id":330,"name":"element-7","prevSize":32,"code":60366,"codes":[60366,60367]},"setIdx":0,"setId":0,"iconIdx":242},{"icon":{"paths":["M842.667 618.667h-320c-41.237 0-74.667-33.429-74.667-74.667v0-64c0-41.237 33.429-74.667 74.667-74.667v0h320c41.237 0 74.667 33.429 74.667 74.667v0 64c0 41.237-33.429 74.667-74.667 74.667v0zM917.333 842.667v-64c0-41.237-33.429-74.667-74.667-74.667v0h-320c-41.237 0-74.667 33.429-74.667 74.667v0 64c0 41.237 33.429 74.667 74.667 74.667v0h320c41.237 0 74.667-33.429 74.667-74.667v0z","M842.667 320h-661.333c-41.237 0-74.667-33.429-74.667-74.667v0-64c0-41.237 33.429-74.667 74.667-74.667v0h661.333c41.237 0 74.667 33.429 74.667 74.667v0 64c0 41.237-33.429 74.667-74.667 74.667v0zM288 405.333h-106.667c-41.237 0-74.667 33.429-74.667 74.667v0 362.667c0 41.237 33.429 74.667 74.667 74.667v0h106.667c41.237 0 74.667-33.429 74.667-74.667v0-362.667c0-41.237-33.429-74.667-74.667-74.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-8"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6062,"id":329,"name":"element-8","prevSize":32,"code":60368,"codes":[60368,60369]},"setIdx":0,"setId":0,"iconIdx":243},{"icon":{"paths":["M181.333 405.333h661.333c41.237 0 74.667 33.429 74.667 74.667v362.667c0 41.237-33.429 74.667-74.667 74.667h-661.333c-41.237 0-74.667-33.429-74.667-74.667v-362.667c0-41.237 33.429-74.667 74.667-74.667z","M181.333 106.667h661.333c41.237 0 74.667 33.429 74.667 74.667v64c0 41.237-33.429 74.667-74.667 74.667h-661.333c-41.237 0-74.667-33.429-74.667-74.667v-64c0-41.237 33.429-74.667 74.667-74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-9"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6063,"id":328,"name":"element-9","prevSize":32,"code":60370,"codes":[60370,60371]},"setIdx":0,"setId":0,"iconIdx":244},{"icon":{"paths":["M181.333 85.333h213.333c41.237 0 74.667 33.429 74.667 74.667v704c0 41.237-33.429 74.667-74.667 74.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v-704c0-41.237 33.429-74.667 74.667-74.667z","M629.333 85.333h213.333c41.237 0 74.667 33.429 74.667 74.667v234.667c0 41.237-33.429 74.667-74.667 74.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v-234.667c0-41.237 33.429-74.667 74.667-74.667z","M629.333 554.667h213.333c41.237 0 74.667 33.429 74.667 74.667v234.667c0 41.237-33.429 74.667-74.667 74.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v-234.667c0-41.237 33.429-74.667 74.667-74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-10"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6064,"id":327,"name":"element-10","prevSize":32,"code":60372,"codes":[60372,60373,60374]},"setIdx":0,"setId":0,"iconIdx":245},{"icon":{"paths":["M160.853 85.333h211.2c41.709 0 75.52 33.811 75.52 75.52v211.2c0 41.709-33.811 75.52-75.52 75.52h-211.2c-41.709 0-75.52-33.811-75.52-75.52v-211.2c0-41.709 33.811-75.52 75.52-75.52z","M651.947 85.333h211.2c41.709 0 75.52 33.811 75.52 75.52v211.2c0 41.709-33.811 75.52-75.52 75.52h-211.2c-41.709 0-75.52-33.811-75.52-75.52v-211.2c0-41.709 33.811-75.52 75.52-75.52z","M651.52 576h211.2c41.709 0 75.52 33.811 75.52 75.52v211.2c0 41.709-33.811 75.52-75.52 75.52h-211.2c-41.709 0-75.52-33.811-75.52-75.52v-211.2c0-41.709 33.811-75.52 75.52-75.52z","M160.853 576h211.2c41.709 0 75.52 33.811 75.52 75.52v211.2c0 41.709-33.811 75.52-75.52 75.52h-211.2c-41.709 0-75.52-33.811-75.52-75.52v-211.2c0-41.709 33.811-75.52 75.52-75.52z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-11"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6065,"id":326,"name":"element-11","prevSize":32,"code":60375,"codes":[60375,60376,60377,60378]},"setIdx":0,"setId":0,"iconIdx":246},{"icon":{"paths":["M627.2 85.333h218.027c41.237 0 74.667 33.429 74.667 74.667v320c0 41.237-33.429 74.667-74.667 74.667h-218.027c-41.237 0-74.667-33.429-74.667-74.667v-320c0-41.237 33.429-74.667 74.667-74.667z","M631.893 640h213.333c41.237 0 74.667 33.429 74.667 74.667v149.333c0 41.237-33.429 74.667-74.667 74.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v-149.333c0-41.237 33.429-74.667 74.667-74.667z","M178.773 85.333h213.333c41.237 0 74.667 33.429 74.667 74.667v704c0 41.237-33.429 74.667-74.667 74.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v-704c0-41.237 33.429-74.667 74.667-74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-12"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6066,"id":325,"name":"element-12","prevSize":32,"code":60379,"codes":[60379,60380,60381]},"setIdx":0,"setId":0,"iconIdx":247},{"icon":{"paths":["M150.187 85.333h211.2c41.709 0 75.52 33.811 75.52 75.52v211.2c0 41.709-33.811 75.52-75.52 75.52h-211.2c-41.709 0-75.52-33.811-75.52-75.52v-211.2c0-41.709 33.811-75.52 75.52-75.52z","M640.853 85.333h211.2c41.709 0 75.52 33.811 75.52 75.52v211.2c0 41.709-33.811 75.52-75.52 75.52h-211.2c-41.709 0-75.52-33.811-75.52-75.52v-211.2c0-41.709 33.811-75.52 75.52-75.52z","M150.187 576h211.2c41.709 0 75.52 33.811 75.52 75.52v211.2c0 41.709-33.811 75.52-75.52 75.52h-211.2c-41.709 0-75.52-33.811-75.52-75.52v-211.2c0-41.709 33.811-75.52 75.52-75.52z","M896 871.253h-298.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h298.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M896 707.413h-298.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h298.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-equal"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6067,"id":324,"name":"element-equal","prevSize":32,"code":60382,"codes":[60382,60383,60384,60385,60386]},"setIdx":0,"setId":0,"iconIdx":248},{"icon":{"paths":["M182.187 85.333h211.2c41.709 0 75.52 33.811 75.52 75.52v211.2c0 41.709-33.811 75.52-75.52 75.52h-211.2c-41.709 0-75.52-33.811-75.52-75.52v-211.2c0-41.709 33.811-75.52 75.52-75.52z","M672.853 85.333h211.2c41.709 0 75.52 33.811 75.52 75.52v211.2c0 41.709-33.811 75.52-75.52 75.52h-211.2c-41.709 0-75.52-33.811-75.52-75.52v-211.2c0-41.709 33.811-75.52 75.52-75.52z","M182.187 576h211.2c41.709 0 75.52 33.811 75.52 75.52v211.2c0 41.709-33.811 75.52-75.52 75.52h-211.2c-41.709 0-75.52-33.811-75.52-75.52v-211.2c0-41.709 33.811-75.52 75.52-75.52z","M911.36 789.333h-265.387c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h265.387c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M778.667 922.027c-17.673 0-32-14.327-32-32v0-265.387c0-17.673 14.327-32 32-32s32 14.327 32 32v0 265.387c0 17.673-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["element-plus"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6068,"id":323,"name":"element-plus","prevSize":32,"code":60387,"codes":[60387,60388,60389,60390,60391]},"setIdx":0,"setId":0,"iconIdx":249},{"icon":{"paths":["M321.28 85.333h381.44c130.31 0 235.947 105.637 235.947 235.947v381.44c0 130.31-105.637 235.947-235.947 235.947h-381.44c-130.31 0-235.947-105.637-235.947-235.947v-381.44c0-130.31 105.637-235.947 235.947-235.947z","M442.88 352c0 44.301-35.913 80.213-80.213 80.213s-80.213-35.913-80.213-80.213c0-44.301 35.913-80.213 80.213-80.213s80.213 35.913 80.213 80.213z","M738.987 352c0 44.301-35.913 80.213-80.213 80.213s-80.213-35.913-80.213-80.213c0-44.301 35.913-80.213 80.213-80.213s80.213 35.913 80.213 80.213z","M358.827 551.253h307.2c0.127-0.001 0.277-0.002 0.427-0.002 30.162 0 54.613 24.451 54.613 54.613 0 0.001-0 0.001-0 0.002l0-0c0 0 0 0.001 0 0.002 0 114.993-93.22 208.213-208.213 208.213-0.3 0-0.6-0.001-0.9-0.002l0.046 0c-114.809-0.243-207.787-93.37-207.787-208.213 0-0 0-0 0-0l0-0c0-30.162 24.451-54.613 54.613-54.613v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["emoji-happy"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6069,"id":322,"name":"emoji-happy","prevSize":32,"code":60392,"codes":[60392,60393,60394,60395]},"setIdx":0,"setId":0,"iconIdx":250},{"icon":{"paths":["M677.12 546.133v0c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-298.667v-7.253c0-56.79 46.037-102.827 102.827-102.827v0h195.413c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-194.987c-92.136 0-166.827 74.691-166.827 166.827v0 77.653c0 92.136 74.691 166.827 166.827 166.827v0h195.413c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-195.413c-56.79 0-102.827-46.037-102.827-102.827v0-6.4z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["enjin-coin"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6070,"id":321,"name":"enjin-coin","prevSize":32,"code":60396,"codes":[60396,60397]},"setIdx":0,"setId":0,"iconIdx":251},{"icon":{"paths":["M673.28 489.387l-124.587-124.587c-5.699-5.321-13.376-8.588-21.815-8.588-17.673 0-32 14.327-32 32 0 8.44 3.267 16.116 8.606 21.834l-0.017-0.019 69.973 69.973h-422.827c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h422.827l-69.973 69.973c-5.887 5.741-9.539 13.751-9.539 22.613s3.652 16.872 9.532 22.607l0.007 0.006c5.528 5.793 13.308 9.394 21.93 9.394 0.24 0 0.48-0.003 0.719-0.008l-0.036 0.001c0.044 0 0.097 0 0.149 0 8.788 0 16.737-3.59 22.461-9.384l0.003-0.003 124.587-124.587c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0z","M367.36 256c4.178-90.93 78.913-163.069 170.497-163.069 1.86 0 3.713 0.030 5.558 0.089l-0.269-0.007h186.453c1.576-0.052 3.429-0.082 5.289-0.082 91.584 0 166.32 72.139 170.484 162.694l0.014 0.375v512c-4.178 90.93-78.913 163.069-170.497 163.069-1.86 0-3.713-0.030-5.558-0.089l0.269 0.007h-186.453c-1.576 0.052-3.429 0.082-5.289 0.082-91.584 0-166.32-72.139-170.484-162.694l-0.014-0.375z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["entrance-left"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6071,"id":320,"name":"entrance-left","prevSize":32,"code":60398,"codes":[60398,60399]},"setIdx":0,"setId":0,"iconIdx":252},{"icon":{"paths":["M659.2 256c-4.178-90.93-78.913-163.069-170.497-163.069-1.86 0-3.713 0.030-5.558 0.089l0.269-0.007h-184.747c-2.086-0.091-4.534-0.143-6.993-0.143-91.606 0-166.355 72.173-170.487 162.758l-0.013 0.372v512c3.919 91.147 78.763 163.556 170.518 163.556 2.453 0 4.894-0.052 7.322-0.154l-0.347 0.012h186.453c1.061 0.024 2.312 0.037 3.566 0.037 91.719 0 166.539-72.351 170.502-163.093l0.012-0.357z","M870.827 480h-422.827l69.973-69.973c5.321-5.699 8.588-13.376 8.588-21.815 0-17.673-14.327-32-32-32-8.44 0-16.116 3.267-21.834 8.606l0.019-0.017-124.587 124.587c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 124.587 124.587c5.727 5.797 13.676 9.387 22.464 9.387 0.052 0 0.105-0 0.157-0l-0.008 0c0.203 0.005 0.443 0.008 0.683 0.008 8.622 0 16.402-3.602 21.919-9.383l0.011-0.012c5.887-5.741 9.539-13.751 9.539-22.613s-3.652-16.872-9.532-22.607l-0.007-0.006-69.973-69.973h422.827c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["entrance-right"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6072,"id":319,"name":"entrance-right","prevSize":32,"code":60400,"codes":[60400,60401]},"setIdx":0,"setId":0,"iconIdx":253},{"icon":{"paths":["M357.547 938.667h538.453c23.564 0 42.667-19.103 42.667-42.667v0 0c0-23.564-19.103-42.667-42.667-42.667v0h-469.333z","M666.453 666.453l-246.187 246.187c-16.125 16.065-38.369 25.997-62.933 25.997s-46.808-9.932-62.936-25.999l0.003 0.003-183.040-183.040c-16.709-16.226-27.078-38.902-27.078-64s10.369-47.774 27.056-63.979l0.022-0.021 246.187-244.053z","M357.547 357.547l246.187-246.187c16.226-16.709 38.902-27.078 64-27.078s47.774 10.369 63.979 27.056l0.021 0.022 180.907 183.040c16.065 16.125 25.997 38.369 25.997 62.933s-9.932 46.808-25.999 62.936l0.003-0.003-246.187 246.187z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["eraser"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6073,"id":318,"name":"eraser","prevSize":32,"code":60402,"codes":[60402,60403,60404]},"setIdx":0,"setId":0,"iconIdx":254},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M603.733 490.667h-323.84c-16.69-1.954-29.518-16.012-29.518-33.067s12.828-31.113 29.362-33.052l0.156-0.015h323.84c1.129-0.136 2.437-0.213 3.762-0.213 18.38 0 33.28 14.9 33.28 33.28s-14.9 33.28-33.28 33.28c-1.326 0-2.633-0.078-3.918-0.228l0.156 0.015zM603.733 566.613c0.002-0.127 0.003-0.277 0.003-0.427 0-18.144-14.709-32.853-32.853-32.853-0.001 0-0.002 0-0.003 0l-290.986-0c-16.69 1.954-29.518 16.012-29.518 33.067s12.828 31.113 29.362 33.052l0.156 0.015h289.707c18.144-0 32.853-14.709 32.853-32.853v0z","M702.72 625.493c4.6 5.009 7.693 11.469 8.519 18.619l0.015 0.154c-0.178 19.655-9.622 37.067-24.168 48.103l-0.152 0.11c-16.136 16.758-35.592 30.193-57.326 39.263l-1.128 0.417c-23.541 9.501-50.84 15.014-79.426 15.014-2.077 0-4.148-0.029-6.211-0.087l0.304 0.007c-1.069 0.015-2.331 0.023-3.596 0.023-21.866 0-43.149-2.496-63.579-7.218l1.895 0.369c-20.317-4.449-38.294-11.822-54.523-21.768l0.763 0.435c-15.382-10.319-28.59-22.307-39.858-35.956l-0.249-0.31c-11.654-13.872-21.895-29.572-30.124-46.433l-0.596-1.353c-7.692-16.241-14.162-35.203-18.451-54.977l-0.322-1.77c-4.972-19.704-8.056-42.441-8.528-65.819l-0.005-0.315c-0.034-1.626-0.053-3.543-0.053-5.465 0-33.032 5.645-64.746 16.022-94.229l-0.609 1.987c10.756-28.456 26.568-52.771 46.528-72.981l-0.021 0.021c19.138-19.947 42.31-35.862 68.222-46.454l1.324-0.479c24.537-10.264 53.050-16.226 82.954-16.226 0.836 0 1.672 0.005 2.506 0.014l-0.127-0.001c1.569-0.041 3.416-0.064 5.268-0.064 33.416 0 65.062 7.577 93.314 21.106l-1.302-0.562c23.467 12.373 52.48 31.573 54.613 61.013 0.033 0.626 0.051 1.358 0.051 2.095 0 13.933-6.679 26.307-17.010 34.093l-0.109 0.078c-2.879 2.679-6.278 4.845-10.023 6.325l-0.217 0.075c-2.918 0.915-6.274 1.442-9.752 1.442-6.143 0-11.903-1.644-16.863-4.515l0.162 0.087c-15.36-8.107-24.747-23.040-38.827-32.427-15.765-10.728-35.225-17.129-56.18-17.129-1.25 0-2.494 0.023-3.732 0.068l0.179-0.005c-1.194-0.047-2.596-0.074-4.004-0.074-35.129 0-66.369 16.648-86.261 42.485l-0.189 0.255c-21.35 30.908-34.103 69.179-34.103 110.428 0 4.381 0.144 8.728 0.427 13.037l-0.031-0.586c-0.090 2.365-0.142 5.143-0.142 7.933 0 28.922 5.534 56.551 15.601 81.887l-0.526-1.5c8.639 21.937 23.434 39.895 42.249 52.223l0.417 0.257c17.372 10.993 38.519 17.518 61.19 17.518 0.838 0 1.674-0.009 2.508-0.027l-0.125 0.002c0.952 0.029 2.072 0.045 3.196 0.045 24.025 0 46.294-7.522 64.579-20.339l-0.362 0.24c18.773-13.227 32-40.533 56.747-42.667 1.569-0.188 3.387-0.295 5.229-0.295 13.419 0 25.511 5.683 33.999 14.775l0.025 0.027z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["euro"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6074,"id":317,"name":"euro","prevSize":32,"code":60405,"codes":[60405,60406,60407]},"setIdx":0,"setId":0,"iconIdx":255},{"icon":{"paths":["M256 659.2c-90.93-4.178-163.069-78.913-163.069-170.497 0-1.86 0.030-3.713 0.089-5.558l-0.007 0.269v-184.747c-0.091-2.086-0.143-4.534-0.143-6.993 0-91.606 72.173-166.355 162.758-170.487l0.372-0.013h512c91.147 3.919 163.556 78.763 163.556 170.518 0 2.453-0.052 4.894-0.154 7.322l0.012-0.347v186.453c0.024 1.061 0.037 2.312 0.037 3.566 0 91.719-72.351 166.539-163.093 170.502l-0.357 0.012z","M480 370.773v422.827l-69.973-68.267c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.887 5.741-9.539 13.751-9.539 22.613s3.652 16.872 9.532 22.607l0.007 0.006 124.587 125.013c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0 124.587-127.573c5.795-5.661 9.388-13.554 9.388-22.287 0-0.115-0.001-0.23-0.002-0.344l0 0.017c0-0.044 0-0.097 0-0.149 0-8.788-3.59-16.737-9.384-22.461l-0.003-0.003c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0-69.973 70.827v-422.827c0-17.673-14.327-32-32-32s-32 14.327-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["exit-down"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6075,"id":316,"name":"exit-down","prevSize":32,"code":60408,"codes":[60408,60409]},"setIdx":0,"setId":0,"iconIdx":256},{"icon":{"paths":["M364.8 256c4.178-90.93 78.913-163.069 170.497-163.069 1.86 0 3.713 0.030 5.558 0.089l-0.269-0.007h184.747c2.086-0.091 4.534-0.143 6.993-0.143 91.606 0 166.355 72.173 170.487 162.758l0.013 0.372v512c-3.919 91.147-78.763 163.556-170.518 163.556-2.453 0-4.894-0.052-7.322-0.154l0.347 0.012h-184.747c-1.571 0.052-3.417 0.081-5.271 0.081-91.734 0-166.564-72.375-170.504-163.139l-0.012-0.356z","M653.227 480h-422.827l70.4-69.973c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.721-5.758-13.644-9.322-22.4-9.322s-16.679 3.564-22.398 9.32l-0.002 0.002-125.44 124.587c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 125.44 124.587c5.661 5.795 13.554 9.388 22.287 9.388 0.115 0 0.23-0.001 0.344-0.002l-0.017 0c0.044 0 0.097 0 0.149 0 8.788 0 16.737-3.59 22.461-9.384l0.003-0.003c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-70.827-69.973h422.827c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["exit-left"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6076,"id":315,"name":"exit-left","prevSize":32,"code":60410,"codes":[60410,60411]},"setIdx":0,"setId":0,"iconIdx":257},{"icon":{"paths":["M246.187 173.227h446.72c88.837 0 160.853 72.016 160.853 160.853v444.587c0 88.837-72.016 160.853-160.853 160.853h-446.72c-88.837 0-160.853-72.016-160.853-160.853v-444.587c0-88.837 72.016-160.853 160.853-160.853z","M570.453 497.92l303.36-302.080v100.267c0 17.909 14.518 32.427 32.427 32.427s32.427-14.518 32.427-32.427l-0-0v-178.347c0-17.909-14.518-32.427-32.427-32.427v0h-178.773c-0.066-0-0.144-0.001-0.222-0.001-8.899 0-16.962 3.585-22.821 9.39l0.002-0.002c-5.935 5.879-9.61 14.031-9.61 23.041 0 17.909 14.518 32.427 32.427 32.427 0.078 0 0.157-0 0.235-0.001l-0.012 0h100.267l-302.933 302.080c-4.627 5.565-7.435 12.785-7.435 20.662 0 17.909 14.518 32.427 32.427 32.427 7.876 0 15.097-2.808 20.715-7.478l-0.053 0.043z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["exit-right-corner"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6077,"id":314,"name":"exit-right-corner","prevSize":32,"code":60412,"codes":[60412,60413]},"setIdx":0,"setId":0,"iconIdx":258},{"icon":{"paths":["M659.2 256c-4.178-90.93-78.913-163.069-170.497-163.069-1.86 0-3.713 0.030-5.558 0.089l0.269-0.007h-184.747c-2.086-0.091-4.534-0.143-6.993-0.143-91.606 0-166.355 72.173-170.487 162.758l-0.013 0.372v512c3.919 91.147 78.763 163.556 170.518 163.556 2.453 0 4.894-0.052 7.322-0.154l-0.347 0.012h186.453c1.061 0.024 2.312 0.037 3.566 0.037 91.719 0 166.539-72.351 170.502-163.093l0.012-0.357z","M370.773 480h422.827l-68.267-69.973c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.741-5.887 13.751-9.539 22.613-9.539s16.872 3.652 22.607 9.532l0.006 0.007 125.013 124.587c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-127.573 124.587c-5.661 5.795-13.554 9.388-22.287 9.388-0.115 0-0.23-0.001-0.344-0.002l0.017 0c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 70.4-69.973h-422.4c-17.673 0-32-14.327-32-32s14.327-32 32-32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["exit-right"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6078,"id":313,"name":"exit-right","prevSize":32,"code":60414,"codes":[60414,60415]},"setIdx":0,"setId":0,"iconIdx":259},{"icon":{"paths":["M256 364.8c-90.93 4.178-163.069 78.913-163.069 170.497 0 1.86 0.030 3.713 0.089 5.558l-0.007-0.269v184.747c-0.091 2.086-0.143 4.534-0.143 6.993 0 91.606 72.173 166.355 162.758 170.487l0.372 0.013h512c91.147-3.919 163.556-78.763 163.556-170.518 0-2.453-0.052-4.894-0.154-7.322l0.012 0.347v-184.747c0.052-1.571 0.081-3.417 0.081-5.271 0-91.734-72.375-166.564-163.139-170.504l-0.356-0.012z","M480 653.227v-422.827l-69.973 70.4c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0c-5.758-5.721-9.322-13.644-9.322-22.4s3.564-16.679 9.32-22.398l0.002-0.002 124.587-125.013c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 124.587 125.013c5.795 5.661 9.388 13.554 9.388 22.287 0 0.115-0.001 0.23-0.002 0.344l0-0.017c0 0.044 0 0.097 0 0.149 0 8.788-3.59 16.737-9.384 22.461l-0.003 0.003c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0-69.973-70.827v422.827c0 17.673-14.327 32-32 32s-32-14.327-32-32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["exit-up"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6079,"id":312,"name":"exit-up","prevSize":32,"code":60416,"codes":[60416,60417]},"setIdx":0,"setId":0,"iconIdx":260},{"icon":{"paths":["M327.253 310.187h-52.053c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.053c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M327.253 416.853h-52.053c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.053c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M327.253 523.52h-52.053c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.053c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M317.867 85.333h388.693c92.895 0.243 168.107 75.604 168.107 168.533 0 0-0 0-0 0.001l0-0v303.787c0 25.921-21.013 46.933-46.933 46.933v0h-631.467c-25.921 0-46.933-21.013-46.933-46.933v0-303.787c-0-93.078 75.455-168.533 168.533-168.533h0z","M827.733 672h-631.467c-25.921 0-46.933 21.013-46.933 46.933v0 56.747c0 90.015 72.972 162.987 162.987 162.987h399.36c90.015 0 162.987-72.972 162.987-162.987v0-56.747c0-25.921-21.013-46.933-46.933-46.933v0zM704 842.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["external-drive"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6080,"id":311,"name":"external-drive","prevSize":32,"code":60418,"codes":[60418,60419,60420,60421,60422]},"setIdx":0,"setId":0,"iconIdx":261},{"icon":{"paths":["M122.88 931.84c-8.956-0.082-17.064-3.644-23.051-9.397l0.011 0.011c-5.807-5.858-9.396-13.923-9.396-22.827s3.588-16.969 9.398-22.829l-0.002 0.002 779.093-775.253c5.846-8.439 15.479-13.896 26.386-13.896 17.673 0 32 14.327 32 32 0 11.668-6.245 21.877-15.574 27.468l-0.145 0.081-776.533 775.253c-5.663 5.733-13.5 9.308-22.172 9.387l-0.015 0z","M390.4 538.027c0.242-67.060 54.54-121.358 121.577-121.6l0.023-0c38.109 0.018 72.073 17.751 94.106 45.409l0.188 0.244-170.667 170.667c-27.673-22.314-45.228-56.215-45.228-94.216 0-0.177 0-0.354 0.001-0.531l-0 0.027zM499.627 658.347c1.848 0.1 4.011 0.157 6.187 0.157s4.339-0.057 6.487-0.17l-0.3 0.013c67.158 0 121.6-54.442 121.6-121.6v0c0.1-1.721 0.157-3.734 0.157-5.76s-0.057-4.039-0.169-6.037l0.012 0.277z","M258.133 810.667l132.267-131.84c-38.619-34.030-62.854-83.599-62.854-138.829 0-102.033 82.714-184.747 184.747-184.747 55.443 0 105.181 24.422 139.044 63.096l0.183 0.213 134.827-134.4c-73.461-64.276-168.594-105.434-273.156-111.307l-1.191-0.053c-201.813 0-426.667 197.12-426.667 365.227 0 91.307 72.96 196.693 172.8 272.64z","M685.227 473.6c7.688 19.084 12.217 41.204 12.373 64.363l0 0.063c0.003 0.4 0.005 0.873 0.005 1.346 0 101.797-82.523 184.32-184.32 184.32-23.945 0-46.824-4.566-67.813-12.875l1.248 0.435-133.973 133.12c56.868 35.005 125.315 56.609 198.633 58.865l0.621 0.015c213.333 0 426.667-195.84 426.667-365.227-7.39-84.896-46.26-159.516-104.718-213.115l-0.242-0.219z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["eye-slash"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6081,"id":310,"name":"eye-slash","prevSize":32,"code":60423,"codes":[60423,60424,60425,60426]},"setIdx":0,"setId":0,"iconIdx":262},{"icon":{"paths":["M633.6 512c0 67.158-54.442 121.6-121.6 121.6s-121.6-54.442-121.6-121.6c0-67.158 54.442-121.6 121.6-121.6s121.6 54.442 121.6 121.6z","M633.6 512c0 67.158-54.442 121.6-121.6 121.6s-121.6-54.442-121.6-121.6c0-67.158 54.442-121.6 121.6-121.6s121.6 54.442 121.6 121.6z","M512 146.773c-201.813 0-426.667 197.12-426.667 365.227 0 160.427 224.853 365.227 426.667 365.227 213.333 0 426.667-195.84 426.667-365.227 0-162.987-224.853-365.227-426.667-365.227zM512 697.6c-102.504 0-185.6-83.096-185.6-185.6s83.096-185.6 185.6-185.6c102.504 0 185.6 83.096 185.6 185.6v0c0 102.504-83.096 185.6-185.6 185.6v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["eye"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6082,"id":309,"name":"eye","prevSize":32,"code":60427,"codes":[60427,60428,60429]},"setIdx":0,"setId":0,"iconIdx":263},{"icon":{"paths":["M336.243 86.061l347.302-1.879c140.44-0.76 254.906 112.473 255.665 252.914l1.865 344.742c0.76 140.44-112.473 254.906-252.914 255.665l-347.302 1.879c-140.44 0.76-254.906-112.473-255.665-252.914l-1.865-344.742c-0.76-140.44 112.473-254.906 252.914-255.665z","M682.667 512h-116.907v-99.84c0-27.806 22.541-50.347 50.347-50.347v0h71.253c11.782 0 21.333-9.551 21.333-21.333v0-84.48c0-11.782-9.551-21.333-21.333-21.333v0h-121.6c-83 0.24-150.192 67.579-150.192 150.613 0 0.45 0.002 0.9 0.006 1.349l-0-0.069v128h-78.933c-11.782 0-21.333 9.551-21.333 21.333v0 82.773c0 11.782 9.551 21.333 21.333 21.333v0h78.933v298.667h150.187v-298.667h85.333c0.045 0 0.097 0.001 0.15 0.001 9.020 0 16.733-5.598 19.853-13.509l0.050-0.145 32.853-82.347c1.873-3.109 2.981-6.863 2.981-10.876 0-11.782-9.551-21.333-21.333-21.333-1.051 0-2.085 0.076-3.096 0.223l0.115-0.014z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["facebook"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6083,"id":308,"name":"facebook","prevSize":32,"code":60430,"codes":[60430,60431]},"setIdx":0,"setId":0,"iconIdx":264},{"icon":{"paths":["M760.747 443.733c-0.853-0.071-1.847-0.111-2.849-0.111-8.064 0-15.52 2.601-21.576 7.010l0.105-0.073v-156.587h-450.987v156.587c-5.95-4.336-13.407-6.937-21.471-6.937-1.003 0-1.996 0.040-2.979 0.119l0.129-0.008c-26.88 2.56-45.653 37.12-42.667 76.8s29.44 70.4 56.32 67.413c3.64-0.435 6.956-1.336 10.054-2.651l-0.24 0.091v25.173c-0.005 0.456-0.008 0.994-0.008 1.533 0 45.378 20.474 85.975 52.689 113.055l0.226 0.185 104.96 85.333c19.292 16.288 44.438 26.187 71.896 26.187 25.535 0 49.071-8.562 67.892-22.971l-0.268 0.197 97.707-72.107c34.691-27.188 56.775-69.091 56.775-116.151 0-1.016-0.010-2.029-0.031-3.040l0.002 0.151v-37.973c2.858 1.224 6.173 2.125 9.638 2.543l0.175 0.017c26.88 2.987 52.053-27.307 56.32-67.413s-14.933-73.813-41.813-76.373z","M384 305.92c-58.804 38.629-97.093 104.285-97.093 178.884 0 12.166 1.018 24.093 2.974 35.703l-0.174-1.253s-143.787-298.667 115.2-319.573c41.882-29.47 93.948-47.099 150.131-47.099 25.546 0 50.241 3.645 73.593 10.442l-1.857-0.463c91.116 32.571 155.143 118.145 155.143 218.673 0 52.172-17.245 100.316-46.345 139.043l0.429-0.596s0-130.133-154.88-119.040c-2.95 0.134-6.41 0.211-9.887 0.211-76.588 0-144.512-37.095-186.786-94.298l-0.447-0.633z","M891.733 965.973h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h128c0.001 0 0.003 0 0.005 0 10.689 0 19.383-8.546 19.622-19.178l0-0.022v-142.507c0-17.673 14.327-32 32-32s32 14.327 32 32v0 142.507c-1.168 45.621-37.967 82.272-83.539 83.199l-0.088 0.001z","M264.533 965.973h-128c-0.008 0-0.017 0-0.027 0-46.378 0-84.115-36.999-85.304-83.090l-0.002-0.11v-142.507c0-17.673 14.327-32 32-32s32 14.327 32 32v0 142.507c0.239 10.654 8.933 19.2 19.622 19.2 0.002 0 0.003-0 0.005-0l128 0c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M943.36 311.040c-17.673 0-32-14.327-32-32v0-142.507c-0.239-10.654-8.933-19.2-19.622-19.2-0.002 0-0.003 0-0.005 0l-128-0c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h128c47.128 0 85.333 38.205 85.333 85.333v0 140.373c-0.226 17.735-14.657 32.025-32.424 32.025-0.451 0-0.9-0.009-1.346-0.027l0.064 0.002z","M85.333 311.040c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-142.507c1.192-46.201 38.928-83.2 85.307-83.2 0.009 0 0.019 0 0.028 0l127.999-0c17.673-0 32 14.327 32 32s-14.327 32-32 32h-128c-0.001-0-0.003-0-0.005-0-10.689 0-19.383 8.546-19.622 19.178l-0 0.022v142.507c-0.226 17.735-14.657 32.025-32.424 32.025-0.451 0-0.9-0.009-1.346-0.027l0.064 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["faceid"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6084,"id":307,"name":"faceid","prevSize":32,"code":60432,"codes":[60432,60433,60434,60435,60436,60437]},"setIdx":0,"setId":0,"iconIdx":265},{"icon":{"paths":["M785.067 238.933c15.719 15.487 25.457 37.006 25.457 60.8s-9.738 45.313-25.447 60.79l-0.010 0.010-151.893 151.467c-15.505 15.505-36.926 25.096-60.587 25.096-47.321 0-85.682-38.361-85.682-85.682 0-23.661 9.59-45.081 25.096-60.587l-0 0 151.467-151.893c15.487-15.719 37.006-25.457 60.8-25.457s45.313 9.738 60.79 25.447l0.010 0.010zM875.947 148.053c-38.687-39.104-92.356-63.319-151.68-63.319s-112.993 24.215-151.662 63.3l-0.018 0.019-151.467 150.613c-38.764 38.764-62.74 92.315-62.74 151.467 0 118.303 95.903 214.206 214.206 214.206 59.151 0 112.703-23.976 151.467-62.74l-0 0 151.893-151.467c39.104-38.687 63.319-92.356 63.319-151.68s-24.215-112.993-63.3-151.662l-0.019-0.018z","M602.88 421.12c-20.2-20.524-44.677-36.774-71.993-47.314l-1.394-0.473-17.493 17.493c-15.59 15.467-25.241 36.9-25.241 60.587s9.651 45.12 25.236 60.581l0.006 0.006c15.59 15.467 25.241 36.9 25.241 60.587s-9.651 45.12-25.236 60.581l-0.006 0.006-151.467 151.893c-15.56 15.56-37.056 25.184-60.8 25.184-47.488 0-85.984-38.496-85.984-85.984 0-23.744 9.624-45.24 25.184-60.8v0l134.4-133.973c-9.367-23.138-14.802-49.974-14.802-78.080s5.435-54.942 15.312-79.515l-0.509 1.435c-29.204 10.849-54.127 27.127-74.657 47.777l-0.010 0.010-150.613 151.467c-38.818 38.818-62.828 92.445-62.828 151.68 0 118.469 96.038 214.508 214.508 214.508 59.235 0 112.862-24.010 151.68-62.828l-0 0 151.467-150.613c39.362-38.727 63.752-92.569 63.752-152.107s-24.39-113.38-63.723-152.079l-0.028-0.028z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["fasten"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6085,"id":306,"name":"fasten","prevSize":32,"code":60438,"codes":[60438,60439]},"setIdx":0,"setId":0,"iconIdx":266},{"icon":{"paths":["M85.333 864v-213.333c0-41.237 33.429-74.667 74.667-74.667h704c41.237 0 74.667 33.429 74.667 74.667v213.333c0 41.237-33.429 74.667-74.667 74.667h-704c-41.237 0-74.667-33.429-74.667-74.667z","M160 85.333h405.333c41.237 0 74.667 33.429 74.667 74.667v213.333c0 41.237-33.429 74.667-74.667 74.667h-405.333c-41.237 0-74.667-33.429-74.667-74.667v-213.333c0-41.237 33.429-74.667 74.667-74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["fat-rows"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6086,"id":305,"name":"fat-rows","prevSize":32,"code":60440,"codes":[60440,60441]},"setIdx":0,"setId":0,"iconIdx":267},{"icon":{"paths":["M698.027 740.693c36.668-36.834 63.652-83.339 76.791-135.353l0.435-2.033c12.301-50.27 37.070-93.602 70.868-128.042l-0.042 0.042-296.107-297.387c-34.398 33.756-77.73 58.526-126.12 70.435l-1.88 0.391c-128.848 32.156-222.794 146.884-222.794 283.555 0 2.313 0.027 4.62 0.080 6.92l-0.006-0.341c0.031 1.482 0.049 3.229 0.049 4.98 0 69.691-28.224 132.79-73.865 178.49l0.003-0.003-18.347 18.347c-7.295 7.642-11.784 18.017-11.784 29.44s4.489 21.798 11.8 29.457l-0.016-0.017 118.613 118.613c7.642 7.295 18.017 11.784 29.44 11.784s21.798-4.489 29.457-11.8l-0.017 0.016 18.347-18.347c45.697-45.638 108.796-73.862 178.487-73.862 1.751 0 3.498 0.018 5.24 0.053l-0.26-0.004c1.543 0.029 3.363 0.046 5.187 0.046 80.596 0 153.572-32.623 206.445-85.384l-0.005 0.005z","M846.080 474.027l-296.107-296.107 60.587-60.16c14.766-14.86 35.216-24.058 57.813-24.058s43.047 9.198 57.809 24.054l0.004 0.004 180.053 180.907c14.86 14.766 24.058 35.216 24.058 57.813s-9.198 43.047-24.054 57.809l-0.004 0.004zM564.48 459.52c-18.802-18.272-44.496-29.539-72.822-29.539-57.732 0-104.533 46.801-104.533 104.533 0 13.219 2.454 25.865 6.931 37.508l-0.242-0.715-256 258.133 58.88 58.88 258.133-256c10.927 4.235 23.573 6.689 36.792 6.689 57.732 0 104.533-46.801 104.533-104.533 0-28.326-11.267-54.021-29.563-72.847l0.024 0.025z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["feather"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6087,"id":304,"name":"feather","prevSize":32,"code":60442,"codes":[60442,60443]},"setIdx":0,"setId":0,"iconIdx":268},{"icon":{"paths":["M369.92 85.333h284.16c78.469 0 142.080 63.611 142.080 142.080s-63.611 142.080-142.080 142.080h-284.16c-78.469 0-142.080-63.611-142.080-142.080s63.611-142.080 142.080-142.080z","M512 369.92h-142.080c-78.469 0-142.080 63.611-142.080 142.080s63.611 142.080 142.080 142.080v0h142.080z","M796.16 512c0 78.469-63.611 142.080-142.080 142.080s-142.080-63.611-142.080-142.080c0-78.469 63.611-142.080 142.080-142.080s142.080 63.611 142.080 142.080z","M512 654.080v142.507c0 78.469-63.611 142.080-142.080 142.080s-142.080-63.611-142.080-142.080c0-78.469 63.611-142.080 142.080-142.080h-0z","M369.92 369.493h142.080v-284.16h-142.080c-78.469 0-142.080 63.611-142.080 142.080s63.611 142.080 142.080 142.080v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["figma"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6088,"id":303,"name":"figma","prevSize":32,"code":60444,"codes":[60444,60445,60446,60447,60448]},"setIdx":0,"setId":0,"iconIdx":269},{"icon":{"paths":["M971.52 426.667h-201.387c-77.757-1.533-140.203-64.927-140.203-142.907 0-3.011 0.093-6.001 0.277-8.966l-0.020 0.407v-203.093zM221.867 623.787c-94.257-0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667c94.257 0 170.667-76.41 170.667-170.667v0c0-94.257-76.41-170.667-170.667-170.667l0 0zM139.52 748.8c5.405-4.314 12.337-6.923 19.878-6.923 10.287 0 19.44 4.854 25.294 12.397l0.054 0.073 26.88 34.56 47.787-60.587c5.922-7.466 14.993-12.212 25.173-12.212 17.702 0 32.052 14.35 32.052 32.052 0 7.522-2.591 14.439-6.929 19.906l0.051-0.066-72.96 92.587c-5.89 7.534-14.967 12.34-25.168 12.373l-0.005 0c-0.032 0-0.070 0-0.109 0-10.181 0-19.237-4.819-25.010-12.3l-0.054-0.073-52.48-66.987c-4.087-5.368-6.548-12.166-6.548-19.539 0-10.182 4.693-19.268 12.034-25.213l0.061-0.048z","M971.947 488.96h-201.813c-113.156-2.077-204.090-94.296-204.090-207.754 0-2.712 0.052-5.413 0.155-8.1l-0.012 0.387v-202.24h-209.493c-132.431 0-239.787 107.356-239.787 239.787l0-0v349.867c28.454-23.038 65.065-37.020 104.938-37.12l0.022-0c94.050 0.273 170.186 76.578 170.186 170.666 0 44.462-17.002 84.953-44.86 115.326l0.114-0.126h384c0 0 0 0 0 0 132.28 0 239.543-107.113 239.786-239.336l0-0.024z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["file-added"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6089,"id":302,"name":"file-added","prevSize":32,"code":60449,"codes":[60449,60450]},"setIdx":0,"setId":0,"iconIdx":270},{"icon":{"paths":["M974.080 417.28h-201.387c-77.974-2.439-140.256-66.233-140.256-144.574 0-3.326 0.112-6.626 0.333-9.896l-0.024 0.443v-204.8zM389.973 817.493c0.017 0.889 0.026 1.937 0.026 2.987 0 94.257-76.41 170.667-170.667 170.667-0.009 0-0.018-0-0.028-0l0.002 0c-95.906 0-173.653-77.747-173.653-173.653s77.747-173.653 173.653-173.653v0c0.008-0 0.017-0 0.026-0 94.257 0 170.667 76.41 170.667 170.667 0 1.050-0.009 2.098-0.028 3.144l0.002-0.157zM265.813 817.493l22.613-20.48c5.734-5.969 9.265-14.092 9.265-23.040s-3.531-17.070-9.276-23.051l0.011 0.011c-5.875-6.446-14.307-10.475-23.679-10.475-8.312 0-15.883 3.169-21.573 8.364l0.025-0.022-24.747 22.613-23.893-23.893c-5.741-5.887-13.751-9.539-22.613-9.539s-16.872 3.652-22.607 9.532l-0.006 0.007c-5.734 5.969-9.265 14.092-9.265 23.040s3.531 17.070 9.276 23.051l-0.011-0.011 21.76 21.76-22.613 20.907c-5.832 5.926-9.433 14.062-9.433 23.040s3.601 17.114 9.437 23.044l-0.004-0.004c5.056 7.321 12.93 12.387 22.020 13.635l0.167 0.019c8.393-0.129 16.010-3.345 21.789-8.559l-0.029 0.026 24.747-23.040 23.467 23.893c5.689 5.997 13.715 9.728 22.613 9.728s16.925-3.731 22.6-9.714l0.013-0.014c5.734-5.969 9.265-14.092 9.265-23.040s-3.531-17.070-9.276-23.051l0.011 0.011z","M974.507 482.133h-201.813c-113.383-2.978-204.16-95.601-204.16-209.425 0-3.325 0.077-6.633 0.231-9.92l-0.017 0.465v-205.653h-209.493c-132.691 1.204-239.793 109.050-239.793 241.911 0 0.603 0.002 1.206 0.007 1.808l-0.001-0.092v366.080c0 2.987 0 6.4 0 9.387 27.438-20.439 61.978-32.757 99.39-32.853l0.023-0c0.008-0 0.017-0 0.026-0 94.257 0 170.667 76.41 170.667 170.667 0 1.050-0.009 2.098-0.028 3.144l0.002-0.157c-0.008 34.692-10.188 67.005-27.719 94.121l0.412-0.681h372.907c132.691-1.204 239.793-109.050 239.793-241.911 0-0.603-0.002-1.206-0.007-1.808l0.001 0.092z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["file-deleted"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6090,"id":301,"name":"file-deleted","prevSize":32,"code":60451,"codes":[60451,60452]},"setIdx":0,"setId":0,"iconIdx":271},{"icon":{"paths":["M938.667 512h-200.533c-113.765-2.203-205.144-94.945-205.144-209.030 0-4.216 0.125-8.402 0.371-12.556l-0.027 0.573v-205.653h-209.067c-132.272 1.442-238.943 109.003-238.943 241.48 0 0.755 0.003 1.509 0.010 2.262l-0.001-0.115v366.080c-0.006 0.638-0.010 1.392-0.010 2.147 0 132.476 106.671 240.038 238.807 241.479l0.136 0.001h375.467c132.272-1.442 238.943-109.003 238.943-241.48 0-0.755-0.003-1.509-0.010-2.262l0.001 0.115v-183.040z","M922.027 469.333h-201.387c-77.757-1.533-140.203-64.927-140.203-142.907 0-3.011 0.093-6.001 0.277-8.966l-0.020 0.407v-201.813zM460.8 665.173l-68.693 60.16v-213.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 213.333l-78.933-61.013c-5.401-4.288-12.318-6.879-19.84-6.879-17.702 0-32.052 14.35-32.052 32.052 0 10.18 4.746 19.251 12.146 25.123l0.066 0.051 131.84 103.68 4.693 2.56 3.84 2.133c3.417 1.262 7.363 2.036 11.477 2.133l0.043 0.001c0.021 0 0.046 0 0.071 0 4.158 0 8.096-0.944 11.61-2.63l-0.162 0.070 4.267-2.133 5.12-2.987 121.173-103.68c6.772-5.972 11.021-14.669 11.021-24.358 0-7.971-2.876-15.271-7.647-20.917l0.040 0.048c-5.835-7.232-14.697-11.819-24.63-11.819-8.292 0-15.837 3.196-21.47 8.424l0.020-0.018z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["file-down"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6091,"id":300,"name":"file-down","prevSize":32,"code":60453,"codes":[60453,60454]},"setIdx":0,"setId":0,"iconIdx":272},{"icon":{"paths":["M938.667 512h-202.24c-113.383-2.978-204.16-95.601-204.16-209.425 0-3.325 0.077-6.633 0.231-9.92l-0.017 0.465v-207.787h-209.067c-131.901 1.918-238.090 109.293-238.090 241.469 0 0.759 0.003 1.516 0.010 2.273l-0.001-0.116v366.080c-0.006 0.641-0.010 1.399-0.010 2.157 0 132.176 106.189 239.551 237.91 241.467l0.18 0.002h375.893c132.457-1.202 239.37-108.858 239.37-241.484 0-0.753-0.003-1.506-0.010-2.258l0.001 0.115v-183.040z","M938.667 445.013h-202.24c-77.598-2.898-139.404-66.504-139.404-144.545 0-3.336 0.113-6.646 0.335-9.925l-0.024 0.444v-205.653zM512 593.067h-213.333l58.453-69.547c4.882-5.699 7.853-13.16 7.853-21.315 0-9.863-4.346-18.711-11.228-24.733l-0.038-0.033c-5.48-4.703-12.659-7.566-20.507-7.566-9.746 0-18.461 4.416-24.252 11.356l-0.041 0.050-103.253 123.307-3.413 5.547s0 0 0 3.413c-1.617 3.473-2.56 7.538-2.56 11.825 0 0.043 0 0.086 0 0.129l-0-0.007s0 0 0 0c-0.196 1.537-0.308 3.315-0.308 5.12s0.112 3.583 0.329 5.328l-0.021-0.208c0.067 0.576 0.106 1.244 0.106 1.92s-0.038 1.344-0.113 2l0.007-0.080 2.56 4.693 103.68 132.693c5.724 7.522 14.669 12.338 24.741 12.373l0.006 0c0.131 0.002 0.286 0.003 0.441 0.003 7.44 0 14.279-2.573 19.676-6.879l-0.064 0.049c7.923-6.145 12.973-15.666 12.973-26.366 0-6.69-1.974-12.919-5.371-18.136l0.078 0.128-62.293-79.787h215.893c16.464-1.94 29.115-15.813 29.115-32.64s-12.651-30.7-28.961-32.625l-0.155-0.015z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["file-left"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6092,"id":299,"name":"file-left","prevSize":32,"code":60455,"codes":[60455,60456]},"setIdx":0,"setId":0,"iconIdx":273},{"icon":{"paths":["M938.667 512h-200.533c-113.765-2.203-205.144-94.945-205.144-209.030 0-4.216 0.125-8.402 0.371-12.556l-0.027 0.573v-205.653h-209.067c-132.272 1.442-238.943 109.003-238.943 241.48 0 0.755 0.003 1.509 0.010 2.262l-0.001-0.115v366.080c-0.006 0.638-0.010 1.392-0.010 2.147 0 132.476 106.671 240.038 238.807 241.479l0.136 0.001h375.467c132.272-1.442 238.943-109.003 238.943-241.48 0-0.755-0.003-1.509-0.010-2.262l0.001 0.115v-183.040z","M938.667 445.013h-200.533c-78.348-1.974-141.108-65.956-141.108-144.597 0-3.318 0.112-6.61 0.332-9.872l-0.024 0.442v-205.653zM544.853 615.68c-0.595-1.303-1.308-2.427-2.153-3.437l0.019 0.024c-0.876-2.131-2.026-3.966-3.432-5.569l0.019 0.022-103.253-123.307c-5.8-6.392-14.139-10.39-23.413-10.39-7.28 0-13.985 2.464-19.326 6.604l0.072-0.054c-6.97 6.131-11.345 15.069-11.345 25.028 0 8.014 2.832 15.366 7.551 21.11l-0.046-0.058 58.453 69.547h-213.333c-16.464 1.94-29.115 15.813-29.115 32.64s12.651 30.7 28.961 32.625l0.155 0.015h213.333l-64 77.653c-4.459 5.56-7.156 12.7-7.156 20.469 0 10.326 4.764 19.539 12.214 25.562l0.062 0.049c5.332 4.254 12.17 6.827 19.608 6.827 0.007 0 0.013-0 0.020-0l-0.001 0c10.207-0.033 19.284-4.84 25.12-12.303l0.053-0.070 103.253-132.693c1.052-1.343 1.919-2.898 2.524-4.577l0.036-0.116c0.822-1.109 1.538-2.374 2.091-3.723l0.042-0.117c0.196-1.537 0.308-3.315 0.308-5.12s-0.112-3.583-0.329-5.328l0.021 0.208c1.128-3.391 1.778-7.295 1.778-11.351 0-0.81-0.026-1.614-0.077-2.411l0.006 0.109z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["file-right"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6093,"id":298,"name":"file-right","prevSize":32,"code":60457,"codes":[60457,60458]},"setIdx":0,"setId":0,"iconIdx":274},{"icon":{"paths":["M935.68 445.013h-198.827c-77.786-2.669-139.83-66.369-139.83-144.56 0-3.331 0.113-6.635 0.334-9.91l-0.024 0.443v-205.653l113.493 119.467z","M938.667 512h-148.907v114.347c-0.243 91.245-74.267 165.12-165.546 165.12-0 0-0-0-0.001-0l-224.427 0c-0 0-0 0-0.001 0-91.279 0-165.303-73.875-165.546-165.097l-0-0.023v-227.84c0-91.429 74.118-165.547 165.547-165.547v0h133.547v-147.627h-209.067c-132.272 1.442-238.943 109.003-238.943 241.48 0 0.755 0.003 1.509 0.010 2.262l-0.001-0.115v366.080c-0.006 0.638-0.010 1.392-0.010 2.147 0 132.476 106.671 240.038 238.807 241.479l0.136 0.001h375.467c132.272-1.442 238.943-109.003 238.943-241.48 0-0.755-0.003-1.509-0.010-2.262l0.001 0.115z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["file-sheet"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6094,"id":297,"name":"file-sheet","prevSize":32,"code":60459,"codes":[60459,60460]},"setIdx":0,"setId":0,"iconIdx":275},{"icon":{"paths":["M938.667 512h-201.813c-113.383-2.978-204.16-95.601-204.16-209.425 0-3.325 0.077-6.633 0.231-9.92l-0.017 0.465v-207.787h-209.493c-131.901 1.918-238.090 109.293-238.090 241.469 0 0.759 0.003 1.516 0.010 2.273l-0.001-0.116v366.080c-0.006 0.641-0.010 1.399-0.010 2.157 0 132.176 106.189 239.551 237.91 241.467l0.18 0.002h376.32c132.321-1.682 238.939-109.341 238.939-241.902 0-0.606-0.002-1.212-0.007-1.818l0.001 0.093v-183.040z","M938.667 445.013h-201.813c-77.751-2.422-139.859-66.032-139.859-144.148 0-3.476 0.123-6.924 0.365-10.338l-0.026 0.459v-205.653zM398.080 461.227l-5.547-3.413h-3.413c-3.38-1.587-7.336-2.527-11.509-2.56l-0.011-0h-3.413c-1.346-0.193-2.9-0.303-4.48-0.303s-3.134 0.11-4.655 0.323l0.175-0.020-4.267 2.56h-4.267l-130.56 108.373c-7.487 5.992-12.241 15.13-12.241 25.378 0 7.701 2.685 14.776 7.169 20.338l-0.049-0.062c5.661 7.544 14.587 12.374 24.64 12.374 0.038 0 0.075-0 0.113-0l-0.006 0c7.643-0.058 14.637-2.787 20.108-7.297l-0.055 0.044 78.507-62.293v221.44c0 17.673 14.327 32 32 32s32-14.327 32-32v0-219.307l68.267 59.307c5.547 4.942 12.901 7.961 20.96 7.961 9.731 0 18.434-4.403 24.226-11.325l0.040-0.050c4.781-5.722 7.685-13.157 7.685-21.27 0-9.844-4.274-18.689-11.067-24.782l-0.031-0.028z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["file-up"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6095,"id":296,"name":"file-up","prevSize":32,"code":60461,"codes":[60461,60462]},"setIdx":0,"setId":0,"iconIdx":276},{"icon":{"paths":["M938.667 446.293h-200.96c-78.139-1.942-140.74-65.746-140.74-144.172 0-3.618 0.133-7.205 0.395-10.757l-0.028 0.475v-206.507z","M938.667 512h-200.96c-112.847-3.64-202.944-95.994-202.944-209.391 0-3.788 0.101-7.553 0.299-11.291l-0.022 0.522v-206.507h-208.213c-131.908 1.91-238.104 109.288-238.104 241.47 0 1.209 0.009 2.415 0.027 3.619l-0.002-0.182v366.933c-0.016 1.022-0.024 2.229-0.024 3.437 0 132.181 106.197 239.559 237.925 241.468l0.18 0.002h373.76c131.908-1.91 238.104-109.288 238.104-241.47 0-1.209-0.009-2.415-0.027-3.619l0.002 0.182v-185.173z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["file"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6096,"id":295,"name":"file","prevSize":32,"code":60463,"codes":[60463,60464]},"setIdx":0,"setId":0,"iconIdx":277},{"icon":{"paths":["M402.347 92.587h240.213c22.857 0 41.387 18.529 41.387 41.387v42.24c0 22.857-18.529 41.387-41.387 41.387h-240.213c-22.857 0-41.387-18.529-41.387-41.387v-42.24c0-22.857 18.529-41.387 41.387-41.387z","M727.893 170.667v6.827c0 47.128-38.205 85.333-85.333 85.333v0h-240.213c-47.128 0-85.333-38.205-85.333-85.333v0-11.52c-113.62 16.452-199.957 113.108-200.107 229.958l-0 0.015v309.333c-0 128.896 104.491 233.387 233.387 233.387h324.693c128.896 0 233.387-104.491 233.387-233.387v0-309.333c-0.82-109.354-76.859-200.718-178.897-224.963l-1.583-0.317z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["files-tablet"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6097,"id":294,"name":"files-tablet","prevSize":32,"code":60465,"codes":[60465,60466]},"setIdx":0,"setId":0,"iconIdx":278},{"icon":{"paths":["M759.893 85.333h-544c-0.001-0-0.003-0-0.004-0-51.777 0-93.807 41.732-94.289 93.394l-0 0.046v106.24c0.015 25.808 10.444 49.178 27.311 66.138l-0.004-0.004 160.427 162.987c29.232 29.603 47.304 70.286 47.36 115.189l0 0.011v224c-0.051 1.103-0.080 2.397-0.080 3.697 0 47.128 38.205 85.333 85.333 85.333 19.719 0 37.876-6.689 52.326-17.921l-0.193 0.144 58.027-42.667c21.112-14.893 34.785-39.109 34.986-66.529l0-0.031v-179.627c-0.001-0.252-0.002-0.551-0.002-0.849 0-48.771 21.199-92.59 54.885-122.746l0.157-0.138 180.48-160.853c18.911-17.375 30.72-42.222 30.72-69.828 0-0.051-0-0.103-0-0.154l0 0.008v-102.4c-0.478-51.412-42.028-92.962-93.394-93.44l-0.046-0z","M699.733 435.627c-111.927 0.004-202.659 90.739-202.659 202.667 0 111.93 90.737 202.667 202.667 202.667 111.33 0 201.693-89.767 202.659-200.868l0.001-0.092c0.005-0.507 0.007-1.107 0.007-1.707 0-111.93-90.737-202.667-202.667-202.667-0.002 0-0.005 0-0.007 0l0-0zM791.893 606.293l-115.2 119.040c-3.033 3.045-6.979 5.178-11.392 5.955l-0.128 0.019-36.267 7.68c-1.397 0.285-3.003 0.448-4.648 0.448-13.432 0-24.32-10.888-24.32-24.32 0-1.516 0.139-2.999 0.404-4.438l-0.023 0.15 6.827-36.267c0.795-4.541 2.929-8.487 5.973-11.519l0.001-0.001 114.773-117.333c5.318-5.757 12.906-9.35 21.333-9.35s16.015 3.593 21.315 9.33l0.018 0.020 22.187 22.187c4.803 5.041 7.759 11.881 7.759 19.41 0 7.956-3.299 15.141-8.604 20.262l-0.008 0.008z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["filter-edit"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6098,"id":293,"name":"filter-edit","prevSize":32,"code":60467,"codes":[60467,60468]},"setIdx":0,"setId":0,"iconIdx":279},{"icon":{"paths":["M783.787 85.333h-543.573c-0.001-0-0.003-0-0.004-0-51.777 0-93.807 41.732-94.289 93.394l-0 0.046v106.24c-0.001 0.164-0.002 0.357-0.002 0.551 0 25.56 10.263 48.723 26.892 65.593l160.416 162.976c29.232 29.603 47.304 70.286 47.36 115.189l0 0.011v224c-0.051 1.103-0.080 2.397-0.080 3.697 0 47.128 38.205 85.333 85.333 85.333 19.719 0 37.876-6.689 52.326-17.921l-0.193 0.144 58.453-42.667c20.999-14.928 34.539-39.161 34.56-66.557l0-0.003v-179.627c-0.001-0.252-0.002-0.551-0.002-0.849 0-48.771 21.199-92.59 54.885-122.746l0.157-0.138 180.48-160.853c19.404-17.13 31.579-42.062 31.579-69.837 0-0.348-0.002-0.695-0.006-1.042l0 0.053v-101.547c-0.483-51.708-42.513-93.44-94.289-93.44-0.001 0-0.003 0-0.004 0l0-0z","M835.84 638.293c0 99.676-80.804 180.48-180.48 180.48s-180.48-80.804-180.48-180.48c0-99.676 80.804-180.48 180.48-180.48s180.48 80.804 180.48 180.48z","M822.187 837.12c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003-39.253-39.253c-5.887-5.741-9.539-13.751-9.539-22.613s3.652-16.872 9.532-22.607l0.007-0.006c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 39.253 39.253c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["filter-search"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6099,"id":292,"name":"filter-search","prevSize":32,"code":60469,"codes":[60469,60470,60471]},"setIdx":0,"setId":0,"iconIdx":280},{"icon":{"paths":["M670.293 262.827h-316.587c-30.398-0-55.040 24.642-55.040 55.040v0 61.867c-0 0.021-0 0.046-0 0.070 0 15.087 6.024 28.767 15.797 38.767l-0.010-0.010 93.44 93.44c17.133 17.075 27.734 40.695 27.734 66.791 0 0.069-0 0.138-0 0.206l0-0.011v128c-0.006 0.3-0.010 0.653-0.010 1.006 0 28.041 22.732 50.773 50.773 50.773 10.862 0 20.928-3.411 29.185-9.221l-0.161 0.108 34.133-23.893c12.197-8.684 20.057-22.773 20.057-38.697 0-0.195-0.001-0.391-0.004-0.585l0 0.030v-102.4c0.062-28.548 12.358-54.212 31.922-72.037l0.078-0.070 105.387-93.867c11.296-10.123 18.371-24.758 18.371-41.046 0-0.57-0.009-1.138-0.026-1.704l0.002 0.083v-57.6c0-30.398-24.642-55.040-55.040-55.040v0z","M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["filter-square"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6100,"id":291,"name":"filter-square","prevSize":32,"code":60472,"codes":[60472,60473]},"setIdx":0,"setId":0,"iconIdx":281},{"icon":{"paths":["M696.747 133.547h-213.333c0.315 2.752 0.494 5.942 0.494 9.173s-0.18 6.421-0.529 9.559l0.035-0.386v30.293c0 0.069 0 0.15 0 0.232 0 33.747-14.619 64.080-37.87 85.010l-0.103 0.092-98.987 88.747v94.293c0.014 0.531 0.022 1.157 0.022 1.784 0 31.188-19.684 57.779-47.307 68.026l-0.502 0.163-42.667 14.507c-6.23 2.074-13.406 3.316-20.859 3.413l-0.048 0c-0.512 0.013-1.114 0.020-1.718 0.020-39.823 0-72.107-32.283-72.107-72.107 0-0.457 0.004-0.914 0.013-1.369l-0.001 0.068v-109.653l-37.547-33.28c-3.754 16.011-5.928 34.406-5.973 53.302l-0 0.031v321.28c0 133.609 108.311 241.92 241.92 241.92v0h337.067c133.609 0 241.92-108.311 241.92-241.92v0-321.28c0-133.609-108.311-241.92-241.92-241.92l-0 0z","M418.133 236.8l-99.413 85.333c-8.665 7.84-14.087 19.127-14.087 31.68 0 0.263 0.002 0.525 0.007 0.786l-0.001-0.039v94.293c0.011 0.305 0.017 0.664 0.017 1.024 0 13.38-8.437 24.79-20.282 29.199l-0.215 0.070-42.667 14.507c-2.065 0.517-4.435 0.814-6.874 0.814-16.259 0-29.44-13.181-29.44-29.44 0-0.586 0.017-1.169 0.051-1.747l-0.004 0.080v-107.093c0.004-0.222 0.007-0.484 0.007-0.747 0-12.553-5.421-23.84-14.050-31.647l-0.037-0.033-99.413-85.333c-14.704-13.396-23.896-32.624-23.896-53.999 0-0.216 0.001-0.432 0.003-0.648l-0 0.033v-32c-0.047-0.918-0.074-1.993-0.074-3.074 0-33.936 26.59-61.662 60.073-63.479l0.161-0.007h256c33.453 2.045 59.809 29.676 59.809 63.462 0 1.090-0.027 2.173-0.082 3.249l0.006-0.151v30.293c-0.092 21.882-9.976 41.438-25.493 54.525l-0.107 0.088zM528.213 554.667h190.72c1.1 0.136 2.373 0.213 3.664 0.213 17.437 0 31.573-14.136 31.573-31.573s-14.136-31.573-31.573-31.573c-1.291 0-2.564 0.078-3.815 0.228l0.151-0.015h-190.72c-1.1-0.136-2.373-0.213-3.664-0.213-17.437 0-31.573 14.136-31.573 31.573s14.136 31.573 31.573 31.573c1.291 0 2.564-0.078 3.815-0.228l-0.151 0.015zM732.16 669.44h-357.547c-1.1-0.136-2.373-0.213-3.664-0.213-17.437 0-31.573 14.136-31.573 31.573s14.136 31.573 31.573 31.573c1.291 0 2.564-0.078 3.815-0.228l-0.151 0.015h357.547c1.1 0.136 2.373 0.213 3.664 0.213 17.437 0 31.573-14.136 31.573-31.573s-14.136-31.573-31.573-31.573c-1.291 0-2.564 0.078-3.815 0.228l0.151-0.015z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["filter-tablet"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6101,"id":290,"name":"filter-tablet","prevSize":32,"code":60474,"codes":[60474,60475]},"setIdx":0,"setId":0,"iconIdx":282},{"icon":{"paths":["M761.173 85.333h-543.573c-0.001-0-0.003-0-0.004-0-51.777 0-93.807 41.732-94.289 93.394l-0 0.046v106.24c0.015 25.808 10.444 49.178 27.311 66.138l-0.004-0.004 160.427 162.987c29.232 29.603 47.304 70.286 47.36 115.189l0 0.011v224c-0.051 1.103-0.080 2.397-0.080 3.697 0 47.128 38.205 85.333 85.333 85.333 19.719 0 37.876-6.689 52.326-17.921l-0.193 0.144 58.027-42.667c20.999-14.928 34.539-39.161 34.56-66.557l0-0.003v-164.267c-5.057-5.635-8.149-13.123-8.149-21.333s3.092-15.698 8.175-21.363l-0.026 0.030 4.267-2.987c6.478-37.245 24.706-69.418 50.659-93.336l0.114-0.104 180.907-160.853c19.415-17.419 31.574-42.59 31.574-70.6 0-0.080-0-0.159-0-0.239l0 0.012v-101.547c-0.482-51.709-42.512-93.441-94.289-93.441-0.151 0-0.303 0-0.454 0.001l0.023-0z","M698.027 426.667c-111.93 0-202.667 90.737-202.667 202.667s90.737 202.667 202.667 202.667c111.93 0 202.667-90.737 202.667-202.667v0c0-111.93-90.737-202.667-202.667-202.667v0zM797.013 602.027l-110.080 99.413c-5.75 5.188-13.367 8.404-21.734 8.533l-0.026 0c-8.266-0.069-15.763-3.304-21.35-8.549l0.017 0.016-53.76-48.213c-7.8-5.9-12.787-15.163-12.787-25.59 0-17.673 14.327-32 32-32 9.255 0 17.593 3.929 23.436 10.211l0.018 0.020 32.427 29.013 88.747-80.213c5.638-5.050 13.125-8.138 21.333-8.138 17.69 0 32.031 14.341 32.031 32.031 0 9.482-4.12 18.002-10.668 23.867l-0.030 0.027z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["filter-tick"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6102,"id":289,"name":"filter-tick","prevSize":32,"code":60476,"codes":[60476,60477]},"setIdx":0,"setId":0,"iconIdx":283},{"icon":{"paths":["M246.187 426.667l218.88-341.333h-224.853c-0.001-0-0.003-0-0.004-0-51.777 0-93.807 41.732-94.289 93.394l-0 0.046v106.24c-0.001 0.164-0.002 0.357-0.002 0.551 0 25.56 10.263 48.723 26.892 65.593l-0.011-0.011z","M783.787 85.333h-242.347l-249.173 386.987 42.667 42.667c29.232 29.603 47.304 70.286 47.36 115.189l0 0.011v223.147c-0.051 1.103-0.080 2.397-0.080 3.697 0 47.128 38.205 85.333 85.333 85.333 19.719 0 37.876-6.689 52.326-17.921l-0.193 0.144 58.453-42.667c20.999-14.928 34.539-39.161 34.56-66.557l0-0.003v-179.627c-0.011-0.708-0.017-1.543-0.017-2.38 0-47.968 20.507-91.147 53.233-121.247l0.118-0.107 180.48-160.853c19.404-17.13 31.579-42.062 31.579-69.837 0-0.348-0.002-0.695-0.006-1.042l0 0.053v-101.547c-0.483-51.708-42.513-93.44-94.289-93.44-0.001 0-0.003 0-0.004 0l0-0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["filter"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6103,"id":288,"name":"filter","prevSize":32,"code":60478,"codes":[60478,60479]},"setIdx":0,"setId":0,"iconIdx":284},{"icon":{"paths":["M334.933 93.013h354.133c137.85-0 249.6 111.75 249.6 249.6v354.133c0 137.85-111.75 249.6-249.6 249.6h-354.133c-137.85 0-249.6-111.75-249.6-249.6v-354.133c0-137.85 111.75-249.6 249.6-249.6z","M325.547 237.227h370.347c47.6 0 86.187 38.587 86.187 86.187v26.453c0 47.6-38.587 86.187-86.187 86.187h-370.347c-47.6 0-86.187-38.587-86.187-86.187v-26.453c0-47.6 38.587-86.187 86.187-86.187z","M363.093 589.227c0 22.622-18.911 40.96-42.24 40.96s-42.24-18.338-42.24-40.96c0-22.622 18.911-40.96 42.24-40.96s42.24 18.338 42.24 40.96z","M586.24 589.227c0 22.622-18.911 40.96-42.24 40.96s-42.24-18.338-42.24-40.96c0-22.622 18.911-40.96 42.24-40.96s42.24 18.338 42.24 40.96z","M363.093 745.813c0 22.622-18.911 40.96-42.24 40.96s-42.24-18.338-42.24-40.96c0-22.622 18.911-40.96 42.24-40.96s42.24 18.338 42.24 40.96z","M586.24 745.813c0 22.622-18.911 40.96-42.24 40.96s-42.24-18.338-42.24-40.96c0-22.622 18.911-40.96 42.24-40.96s42.24 18.338 42.24 40.96z","M733.013 793.6c-17.673 0-32-14.327-32-32v0-186.453c0-17.673 14.327-32 32-32s32 14.327 32 32v0 186.453c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["finance-calculator"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6104,"id":287,"name":"finance-calculator","prevSize":32,"code":60480,"codes":[60480,60481,60482,60483,60484,60485,60486]},"setIdx":0,"setId":0,"iconIdx":285},{"icon":{"paths":["M340.053 85.333h346.027c140.442 0 254.293 113.851 254.293 254.293v344.747c0 140.442-113.851 254.293-254.293 254.293h-346.027c-140.442 0-254.293-113.851-254.293-254.293v-344.747c0-140.442 113.851-254.293 254.293-254.293z","M433.067 726.187h-162.56v-143.36c0.454-27.089 22.054-48.987 48.981-49.918l0.086-0.002h113.493v193.28z","M755.627 726.187h-161.707l0-265.813h110.933c28.041 0 50.773 22.732 50.773 50.773v0 215.040cv0z","M593.92 726.187h-160.853l0-410.027c0.48-27.672 23.025-49.92 50.766-49.92 0.003 0 0.005 0 0.008 0l59.306-0c28.041 0 50.773 22.732 50.773 50.773h0l-0 409.173z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["financial-schedule"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6105,"id":286,"name":"financial-schedule","prevSize":32,"code":60487,"codes":[60487,60488,60489,60490]},"setIdx":0,"setId":0,"iconIdx":286},{"icon":{"paths":["M522.667 884.907c-8.184-0.213-15.701-2.899-21.877-7.334l0.117 0.080c-8.899-6.851-14.576-17.508-14.576-29.49 0-8.339 2.75-16.036 7.392-22.233l-0.069 0.097c31.383-41.743 55.034-91.226 67.732-144.943l0.535-2.683c4.341-15.775 18.558-27.171 35.436-27.171 20.265 0 36.693 16.428 36.693 36.693 0 2.825-0.319 5.576-0.924 8.218l0.047-0.246c-16.040 66.504-44.080 124.805-81.95 175.311l0.883-1.231c-6.584 9.090-17.165 14.935-29.112 14.935-0.116 0-0.231-0.001-0.346-0.002l0.018 0zM417.28 803.84c51.403-58.402 82.773-135.519 82.773-219.963 0-0.069-0-0.138-0-0.208l0 0.011v-184.32c-0.136-1.185-0.213-2.559-0.213-3.951 0-20.265 16.428-36.693 36.693-36.693s36.693 16.428 36.693 36.693c0 1.392-0.077 2.766-0.228 4.117l0.015-0.166v159.147c-0.136 1.185-0.213 2.559-0.213 3.951 0 20.265 16.428 36.693 36.693 36.693s36.693-16.428 36.693-36.693c0-1.392-0.077-2.766-0.228-4.117l0.015 0.166v-159.147c0.136-2.044 0.213-4.431 0.213-6.837 0-60.56-49.093-109.653-109.653-109.653s-109.653 49.093-109.653 109.653c0 2.405 0.077 4.793 0.23 7.159l-0.017-0.323v184.32c-0.071 65.543-24.479 125.371-64.671 170.949l0.244-0.282c-5.641 6.531-9.077 15.104-9.077 24.479 0 10.888 4.635 20.694 12.039 27.552l0.024 0.022c6.409 5.821 14.961 9.385 24.345 9.385 10.858 0 20.601-4.771 27.247-12.331l0.035-0.041zM317.867 695.893c20.27-1.162 36.267-17.883 36.267-38.341 0-0.021-0-0.042-0-0.063l0 0.003v-258.133c-0-0.153-0.001-0.334-0.001-0.514 0-22.955 4.226-44.923 11.941-65.168l-0.42 1.256c1.439-3.802 2.272-8.197 2.272-12.788 0-15.637-9.669-29.016-23.355-34.484l-0.25-0.088c-3.832-1.504-8.269-2.376-12.91-2.376-15.521 0-28.765 9.75-33.94 23.459l-0.083 0.25c-10.268 26.372-16.219 56.9-16.219 88.818 0 0.575 0.002 1.149 0.006 1.723l-0-0.088v261.547c0.235 19.378 15.999 34.997 35.411 34.997 0.301 0 0.601-0.004 0.9-0.011l-0.044 0.001zM426.667 251.733c17.17-13.226 37.395-23.489 59.357-29.576l1.23-0.291c15.226-5.177 25.986-19.348 25.986-36.032 0-3.42-0.452-6.735-1.3-9.887l0.061 0.266c-4.611-15.363-18.626-26.366-35.21-26.366-2.64 0-5.215 0.279-7.697 0.809l0.24-0.043c-32.633 9.589-61.051 24.189-85.982 43.139l0.648-0.473c-8.808 6.936-14.413 17.6-14.413 29.573 0 8.288 2.685 15.948 7.233 22.159l-0.074-0.106c6.736 9.073 17.404 14.898 29.434 14.933l0.006 0c7.828-0.667 14.861-3.613 20.556-8.165l-0.076 0.059zM761.6 776.107c18.921-57.501 29.844-123.684 29.867-192.415l0-0.011v-184.32c0.009-0.799 0.014-1.744 0.014-2.689 0-110.802-70.393-205.163-168.898-240.801l-1.783-0.564c-3.426-1.152-7.371-1.817-11.471-1.817-16.107 0-29.817 10.258-34.955 24.598l-0.081 0.259c-1.163 3.461-1.834 7.447-1.834 11.59 0 16.191 10.249 29.989 24.613 35.26l0.261 0.084c72.409 25.806 123.307 93.772 123.307 173.626 0 0.16-0 0.319-0.001 0.479l0-0.025v184.32c0.001 0.419 0.002 0.914 0.002 1.41 0 60.474-9.678 118.688-27.57 173.178l1.115-3.921c-1.195 3.464-1.885 7.457-1.885 11.61 0 16.211 10.513 29.967 25.093 34.822l0.259 0.075c1.667 0.282 3.588 0.442 5.547 0.442s3.879-0.161 5.75-0.47l-0.203 0.028c15.589-0.435 28.712-10.528 33.628-24.49l0.079-0.257z","M887.467 970.667h-125.867c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h125.867c10.654-0.239 19.2-8.933 19.2-19.622 0-0.002-0-0.003-0-0.005l0 0v-142.933c0-17.673 14.327-32 32-32s32 14.327 32 32v0 142.933c-0.928 45.659-37.579 82.459-83.091 83.624l-0.109 0.002z","M267.947 970.667h-125.867c-46.201-1.192-83.2-38.928-83.2-85.307 0-0.009 0-0.019 0-0.028l-0 0.001v-141.227c-0-17.673 14.327-32 32-32s32 14.327 32 32v-0 142.933c-0 0.001-0 0.003-0 0.005 0 10.689 8.546 19.383 19.178 19.622l0.022 0h128c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M938.667 312.747c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-143.36c-0-10.604-8.596-19.2-19.2-19.2h-125.867c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h125.867c46.201 1.192 83.2 38.928 83.2 85.307 0 0.009-0 0.019-0 0.028l0-0.001v141.227c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M90.88 312.747c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-143.36c1.192-46.201 38.928-83.2 85.307-83.2 0.009 0 0.019 0 0.028 0l127.999-0c17.673 0 32 14.327 32 32s-14.327 32-32 32h-130.133c-10.604 0-19.2 8.596-19.2 19.2v0 143.36c0 17.673-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["fingerprint-scanning"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6106,"id":285,"name":"fingerprint-scanning","prevSize":32,"code":60491,"codes":[60491,60492,60493,60494,60495]},"setIdx":0,"setId":0,"iconIdx":287},{"icon":{"paths":["M704.427 384l118.187-147.627c4.319-6.559 6.89-14.603 6.89-23.248 0-22.084-16.778-40.249-38.282-42.444l-0.181-0.015h-566.613v426.667h566.613c21.685-2.21 38.463-20.375 38.463-42.459 0-8.644-2.571-16.688-6.989-23.409l0.1 0.161z","M192.427 938.667c-17.673 0-32-14.327-32-32v0-788.907c0-17.673 14.327-32 32-32s32 14.327 32 32v0 788.48c0.007 0.255 0.012 0.555 0.012 0.856 0 17.437-14.136 31.573-31.573 31.573-0.154 0-0.308-0.001-0.462-0.003l0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["flag"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6107,"id":284,"name":"flag","prevSize":32,"code":60496,"codes":[60496,60497]},"setIdx":0,"setId":0,"iconIdx":288},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M446.72 731.307v-187.733h-85.333c-11.192-0.155-20.206-9.264-20.206-20.478 0-5.057 1.833-9.685 4.87-13.258l-0.024 0.029 198.827-230.4c3.832-4.144 9.297-6.731 15.367-6.731 11.363 0 20.608 9.065 20.9 20.357l0.001 0.027v191.147h85.333c11.373 0.225 20.506 9.497 20.506 20.903 0 5.037-1.781 9.658-4.748 13.267l0.029-0.036-196.267 227.413c-3.036 8.049-10.675 13.671-19.627 13.671-11.556 0-20.924-9.368-20.924-20.924 0-2.604 0.476-5.097 1.345-7.397l-0.048 0.144z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["flash-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6108,"id":283,"name":"flash-circle","prevSize":32,"code":60498,"codes":[60498,60499]},"setIdx":0,"setId":0,"iconIdx":289},{"icon":{"paths":["M753.067 554.667h-482.133l113.067-195.84v-188.16c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h256c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0 188.16z","M800 938.667h-576c-54.828-1.313-98.774-46.071-98.774-101.093 0-18.54 4.99-35.915 13.699-50.855l-0.259 0.481 132.267-232.533h482.133l134.4 232.533c8.441 14.452 13.425 31.818 13.425 50.347 0 55.767-45.143 100.99-100.879 101.12l-0.013 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["flask"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6109,"id":282,"name":"flask","prevSize":32,"code":60500,"codes":[60500,60501]},"setIdx":0,"setId":0,"iconIdx":290},{"icon":{"paths":["M938.667 480h-83.2c-17.312-165.144-148.702-294.777-313.144-309.24l-1.309-0.093v-85.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 85.333c-162.397 18.099-289.845 146.569-306.227 307.874l-0.12 1.459h-85.333c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h85.333c16.502 162.764 143.949 291.235 304.783 309.192l1.563 0.142v85.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0-83.2c166.399-14.72 298.123-145.418 314.339-310.038l0.114-1.428h83.2c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM512 792.747c-154.869-0.243-280.32-125.844-280.32-280.746 0-155.052 125.695-280.747 280.747-280.747s280.747 125.695 280.747 280.747l-0-0c-0.243 155.104-126.035 280.747-281.173 280.747l-0-0z","M675.413 512c0 91.9-74.5 166.4-166.4 166.4s-166.4-74.5-166.4-166.4c0-91.9 74.5-166.4 166.4-166.4s166.4 74.5 166.4 166.4z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["focus"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6110,"id":281,"name":"focus","prevSize":32,"code":60502,"codes":[60502,60503]},"setIdx":0,"setId":0,"iconIdx":291},{"icon":{"paths":["M484.267 191.573c16.617 41.328 56.365 69.973 102.805 69.973 0.008 0 0.016-0 0.023-0l127.999 0c0.020-0 0.043-0 0.066-0 84.767 0 158.578 46.906 196.894 116.178l0.586 1.155c-7.643-123.638-109.785-221.017-234.672-221.017-0.448 0-0.896 0.001-1.344 0.004l0.069-0h-207.36z","M713.387 261.547h-128c-0.007 0-0.014 0-0.022 0-46.439 0-86.188-28.646-102.54-69.231l-0.264-0.743-13.227-36.267c-16.81-41.188-56.455-69.734-102.796-69.973l-0.030-0h-85.333c-0-0-0-0-0-0-108.159 0-195.84 87.681-195.84 195.84 0 0.15 0 0.3 0.001 0.45l-0-0.024v434.347c-0 0.127-0 0.277-0 0.427 0 124.504 100.809 225.464 225.257 225.706l0.023 0h402.773c124.471-0.243 225.28-101.202 225.28-225.706 0-0.15-0-0.3-0-0.45l0 0.023v-228.267c0-0.127 0-0.277 0-0.427 0-124.504-100.809-225.464-225.257-225.706l-0.023-0zM670.72 532.48l-132.267 173.227c-5.537 7.037-13.936 11.608-23.412 11.945l-0.054 0.002c-9.393-0.174-17.76-4.424-23.431-11.050l-0.036-0.043-96.853-114.347c-3.416-4.881-5.458-10.942-5.458-17.481 0-16.966 13.754-30.72 30.72-30.72 8.458 0 16.118 3.418 21.673 8.948l-0.001-0.001 70.4 87.040 109.227-142.933c5.583-7.431 14.379-12.187 24.286-12.187 6.944 0 13.342 2.336 18.452 6.266l-0.071-0.053c6.914 5.754 11.284 14.362 11.284 23.991 0 6.489-1.985 12.515-5.38 17.504l0.069-0.108z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["folder-added"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6111,"id":280,"name":"folder-added","prevSize":32,"code":60504,"codes":[60504,60505]},"setIdx":0,"setId":0,"iconIdx":292},{"icon":{"paths":["M476.587 194.987c16.958 41.245 56.75 69.793 103.231 69.973l0.023 0h128c84.399 1.189 157.474 48.521 195.25 117.857l0.59 1.183c-8.075-123.121-109.817-219.953-234.22-220.16l-0.020-0h-206.080z","M710.827 260.693h-128c-0.143 0.001-0.312 0.001-0.48 0.001-46.201 0-85.755-28.462-102.082-68.809l-0.264-0.738-10.667-35.84c-16.743-41.356-56.579-69.997-103.104-69.997-0.803 0-1.603 0.009-2.402 0.025l0.119-0.002h-85.333c-0.127-0-0.277-0-0.427-0-107.924 0-195.413 87.49-195.413 195.413 0 0 0 0 0 0l0 0v432.64c0 124.419 100.861 225.28 225.28 225.28h402.773c0.127 0 0.277 0 0.427 0 124.183 0 224.853-100.67 224.853-224.853 0-0.15-0-0.3-0-0.45l0 0.023v-227.413c0-124.419-100.861-225.28-225.28-225.28v0zM658.773 650.667l-119.467 101.547c-6.086 5.077-13.989 8.16-22.613 8.16s-16.528-3.083-22.67-8.206l0.057 0.046-28.587-22.613-99.413-78.080c-6.765-5.899-11.015-14.532-11.015-24.159 0-6.939 2.209-13.362 5.961-18.605l-0.066 0.097c5.828-6.848 14.455-11.164 24.090-11.164 6.983 0 13.437 2.267 18.665 6.105l-0.088-0.062 78.933 62.293v-217.6c0-17.673 14.327-32 32-32s32 14.327 32 32v0 213.333l68.693-58.88c5.269-4.086 11.974-6.55 19.254-6.55 9.273 0 17.613 3.998 23.389 10.364l0.024 0.026c5.766 5.722 9.336 13.651 9.336 22.413 0 8.331-3.227 15.909-8.499 21.551l0.017-0.018z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["folder-down"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6112,"id":279,"name":"folder-down","prevSize":32,"code":60506,"codes":[60506,60507]},"setIdx":0,"setId":0,"iconIdx":293},{"icon":{"paths":["M477.013 194.987c16.617 41.328 56.365 69.973 102.805 69.973 0.008 0 0.016-0 0.023-0l127.999 0c84.426 1.093 157.541 48.459 195.251 117.855l0.589 1.185c-7.864-123.208-109.719-220.16-234.218-220.16-0.008 0-0.016 0-0.023 0l-206.079-0z","M713.387 260.693h-128c-0.143 0.001-0.312 0.001-0.48 0.001-46.201 0-85.755-28.462-102.082-68.809l-0.264-0.738-13.227-35.84c-16.81-41.188-56.455-69.734-102.796-69.973l-0.030-0h-85.333c-0.127-0-0.277-0-0.427-0-107.924 0-195.413 87.49-195.413 195.413 0 0 0 0 0 0l0 0v432.64c-0 0.127-0 0.277-0 0.427 0 124.183 100.67 224.853 224.853 224.853 0.15 0 0.3-0 0.45-0l-0.023 0h402.773c0.127 0 0.277 0 0.427 0 124.183 0 224.853-100.67 224.853-224.853 0-0.15-0-0.3-0-0.45l0 0.023v-227.413c0-124.419-100.861-225.28-225.28-225.28v0zM664.747 569.173c-5.981 6.918-14.769 11.269-24.573 11.269-7.873 0-15.090-2.806-20.707-7.471l0.053 0.043-68.267-58.88v213.333c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-215.467l-78.933 61.44c-5.718 5.406-13.453 8.73-21.966 8.73-17.673 0-32-14.327-32-32 0-11.073 5.624-20.832 14.171-26.577l0.115-0.073 100.693-78.933 29.013-22.613c6.086-5.077 13.989-8.16 22.613-8.16s16.528 3.083 22.67 8.206l-0.057-0.046 119.467 101.547c6.543 5.812 10.645 14.247 10.645 23.641 0 8.564-3.41 16.332-8.946 22.020l0.007-0.007z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["folder-up"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6113,"id":278,"name":"folder-up","prevSize":32,"code":60508,"codes":[60508,60509]},"setIdx":0,"setId":0,"iconIdx":294},{"icon":{"paths":["M484.267 191.147c16.592 41.085 56.145 69.548 102.346 69.548 0.169 0 0.338-0 0.507-0.001l-0.026 0h128c0.014-0 0.030-0 0.047-0 84.667 0 158.426 46.707 196.914 115.761l0.586 1.146c-8.075-123.121-109.817-219.953-234.22-220.16l-0.020-0h-209.067z","M484.267 191.147l-14.933-35.84c-16.81-41.188-56.455-69.734-102.796-69.973l-0.030-0h-85.333c-0.127-0-0.277-0-0.427-0-107.924 0-195.413 87.49-195.413 195.413 0 0 0 0 0 0l0 0v432.64c-0 0.127-0 0.277-0 0.427 0 124.183 100.67 224.853 224.853 224.853 0.15 0 0.3-0 0.45-0l-0.023 0h402.773c0.127 0 0.277 0 0.427 0 124.183 0 224.853-100.67 224.853-224.853 0-0.15-0-0.3-0-0.45l0 0.023v-227.413c0-124.419-100.861-225.28-225.28-225.28v0h-128c-45.712-0.526-84.682-28.835-100.856-68.808l-0.264-0.738z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["folder"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6114,"id":277,"name":"folder","prevSize":32,"code":60510,"codes":[60510,60511]},"setIdx":0,"setId":0,"iconIdx":295},{"icon":{"paths":["M886.613 757.333h-322.56c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h322.56c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M760.32 928h-196.267c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h196.267c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M390.4 104.533h-273.067c-0.001-0-0.002-0-0.003-0-16.495 0-29.867 13.372-29.867 29.867 0 0.15 0.001 0.3 0.003 0.449l-0-0.023v763.307c0 16.495 13.372 29.867 29.867 29.867l0 0h273.067c0.127 0.002 0.277 0.003 0.427 0.003 16.495 0 29.867-13.372 29.867-29.867 0-0.001-0-0.002-0-0.003l0 0v-763.307c0-16.731-13.563-30.293-30.293-30.293h0zM164.693 170.667h176.64l-85.333 250.027zM341.333 864h-176.64l91.307-251.733zM220.16 516.267l-68.693 193.707v-386.987zM356.693 709.973l-68.693-193.707 68.693-193.28z","M890.027 104.533h-329.387c-15.839 0.24-28.587 13.137-28.587 29.010 0 0.001 0 0.002 0 0.003l-0-0v432.213c0 15.788 12.799 28.587 28.587 28.587v0h329.387c15.788 0 28.587-12.799 28.587-28.587v0-432.213c0-0.001 0-0.002 0-0.003 0-15.874-12.748-28.77-28.564-29.010l-0.023-0zM628.48 170.667h193.707l-96.853 128zM822.187 532.48h-193.707l96.853-128zM685.227 349.44l-87.893 119.893v-237.653zM853.333 469.333l-87.893-119.893 87.893-117.76z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["frame"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6115,"id":276,"name":"frame","prevSize":32,"code":60512,"codes":[60512,60513,60514,60515]},"setIdx":0,"setId":0,"iconIdx":296},{"icon":{"paths":["M884.907 434.773h-40.533c-9.164-39.1-23.871-73.58-43.489-104.649l0.823 1.395 28.587-28.587c9.704-9.725 15.705-23.148 15.705-37.973s-6.001-28.249-15.706-37.974l0.001 0.001-33.28-33.28c-9.725-9.704-23.148-15.705-37.973-15.705s-28.249 6.001-37.974 15.706l0.001-0.001-28.587 28.587c-29.673-18.796-64.153-33.503-100.954-42.208l-2.3-0.459v-42.667c-1.398-28.678-24.89-51.425-53.74-51.627l-0.020-0h-46.933c-29.594 0.24-53.52 24.166-53.76 53.737l-0 0.023v42.667c-39.1 9.164-73.58 23.871-104.649 43.489l1.395-0.823-28.587-30.72c-9.725-9.704-23.148-15.705-37.973-15.705s-28.249 6.001-37.974 15.706l0.001-0.001-33.28 33.28c-9.704 9.725-15.705 23.148-15.705 37.973s6.001 28.249 15.706 37.974l-0.001-0.001 28.587 28.587c-18.796 29.673-33.503 64.153-42.208 100.954l-0.459 2.3h-42.667c-28.678 1.398-51.425 24.89-51.627 53.74l-0 0.020v46.933c0.24 29.594 24.166 53.52 53.737 53.76l0.023 0h42.667c9.164 39.1 23.871 73.58 43.489 104.649l-0.823-1.395-28.587 28.587c-9.704 9.725-15.705 23.148-15.705 37.973s6.001 28.249 15.706 37.974l-0.001-0.001 33.28 33.28c9.725 9.704 23.148 15.705 37.973 15.705s28.249-6.001 37.974-15.706l-0.001 0.001 28.587-28.587c29.673 18.796 64.153 33.503 100.954 42.208l2.3 0.459v40.533c0.201 28.87 22.949 52.362 51.501 53.755l0.125 0.005h46.933c29.594-0.24 53.52-24.166 53.76-53.737l0-0.023v-40.533c39.1-9.164 73.58-23.871 104.649-43.489l-1.395 0.823 28.587 28.587c9.725 9.704 23.148 15.705 37.973 15.705s28.249-6.001 37.974-15.706l-0.001 0.001 33.28-33.28c9.704-9.725 15.705-23.148 15.705-37.973s-6.001-28.249-15.706-37.974l0.001 0.001-28.587-28.587c18.796-29.673 33.503-64.153 42.208-100.954l0.459-2.3h40.533c29.594-0.24 53.52-24.166 53.76-53.737l0-0.023v-46.933c-0.24-29.594-24.166-53.52-53.737-53.76l-0.023-0zM512 670.293c-87.423 0-158.293-70.87-158.293-158.293s70.87-158.293 158.293-158.293c87.423 0 158.293 70.87 158.293 158.293v0c0 87.423-70.87 158.293-158.293 158.293v0z","M512 670.293c-87.423 0-158.293-70.87-158.293-158.293s70.87-158.293 158.293-158.293v0-268.373h-23.467c-29.594 0.24-53.52 24.166-53.76 53.737l-0 0.023v42.667c-39.1 9.164-73.58 23.871-104.649 43.489l1.395-0.823-28.587-30.72c-9.725-9.704-23.148-15.705-37.973-15.705s-28.249 6.001-37.974 15.706l0.001-0.001-33.28 33.28c-9.704 9.725-15.705 23.148-15.705 37.973s6.001 28.249 15.706 37.974l-0.001-0.001 28.587 28.587c-18.796 29.673-33.503 64.153-42.208 100.954l-0.459 2.3h-42.667c-28.678 1.398-51.425 24.89-51.627 53.74l-0 0.020v46.933c0.24 29.594 24.166 53.52 53.737 53.76l0.023 0h42.667c9.164 39.1 23.871 73.58 43.489 104.649l-0.823-1.395-28.587 28.587c-9.704 9.725-15.705 23.148-15.705 37.973s6.001 28.249 15.706 37.974l-0.001-0.001 33.28 33.28c9.725 9.704 23.148 15.705 37.973 15.705s28.249-6.001 37.974-15.706l-0.001 0.001 28.587-28.587c29.673 18.796 64.153 33.503 100.954 42.208l2.3 0.459v40.533c0.201 28.87 22.949 52.362 51.501 53.755l0.125 0.005h23.467z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["gear"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6116,"id":275,"name":"gear","prevSize":32,"code":60516,"codes":[60516,60517]},"setIdx":0,"setId":0,"iconIdx":297},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M426.667 331.52l262.827 85.333c28.259 9.105 48.346 35.169 48.346 65.924 0 29.805-18.865 55.205-45.306 64.908l-0.48 0.154-75.093 26.88c-19.323 7.401-34.102 22.879-40.399 42.19l-0.135 0.477-26.88 78.507c-9.676 27.259-35.244 46.43-65.29 46.43-30.992 0-57.22-20.397-65.992-48.5l-0.132-0.49-83.627-272.213c-2.202-6.583-3.473-14.163-3.473-22.040 0-39.588 32.092-71.68 71.68-71.68 8.587 0 16.821 1.51 24.451 4.279l-0.499-0.158z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["general-mouse"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6117,"id":274,"name":"general-mouse","prevSize":32,"code":60518,"codes":[60518,60519]},"setIdx":0,"setId":0,"iconIdx":298},{"icon":{"paths":["M768 669.867l-209.067 232.107c-11.544 12.978-28.288 21.114-46.933 21.114s-35.39-8.136-46.878-21.050l-0.055-0.064-209.067-232.107c-54.677-60.296-88.145-140.699-88.145-228.919 0-15.414 1.022-30.59 3.001-45.463l-0.19 1.742c25.83-165.133 167.059-289.981 337.448-289.981 188.513 0 341.333 152.82 341.333 341.333 0 84.65-30.814 162.104-81.838 221.755l0.39-0.467z","M538.453 248.747c-7.312-5.401-16.504-8.644-26.453-8.644s-19.141 3.243-26.576 8.73l0.123-0.086-101.547 76.373c-26.019 19.583-42.667 50.407-42.667 85.12 0 0.075 0 0.15 0 0.225l-0-0.012v117.333c0 23.564 19.103 42.667 42.667 42.667v0h85.333v-128c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 128h85.333c23.564 0 42.667-19.103 42.667-42.667v0-117.333c0-0.063 0-0.138 0-0.213 0-34.713-16.648-65.537-42.396-84.924l-0.271-0.196z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["geolocation-home"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6118,"id":273,"name":"geolocation-home","prevSize":32,"code":60520,"codes":[60520,60521]},"setIdx":0,"setId":0,"iconIdx":299},{"icon":{"paths":["M469.333 87.893c-182.21 21.913-322.074 175.578-322.074 361.91 0 93.576 35.274 178.913 93.251 243.439l-0.297-0.336 186.453 206.933c21.156 23.264 51.546 37.81 85.333 37.81s64.177-14.545 85.249-37.716l185.684-207.027c57.289-64.147 92.302-149.253 92.302-242.536 0-201.473-163.327-364.8-364.8-364.8-14.482 0-28.767 0.844-42.808 2.485l1.706-0.162zM512 586.667c-0.127 0-0.277 0.001-0.427 0.001-75.641 0-136.96-61.319-136.96-136.96s61.319-136.96 136.96-136.96c75.641 0 136.96 61.319 136.96 136.959l0 0c0 0 0 0 0 0.001 0 75.491-61.076 136.717-136.51 136.959l-0.023 0z","M656.213 446.293c0 79.647-64.567 144.213-144.213 144.213s-144.213-64.567-144.213-144.213c0-79.647 64.567-144.213 144.213-144.213s144.213 64.567 144.213 144.213z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["geolocation"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6119,"id":272,"name":"geolocation","prevSize":32,"code":60522,"codes":[60522,60523]},"setIdx":0,"setId":0,"iconIdx":300},{"icon":{"paths":["M613.547 389.547c0 56.083-45.464 101.547-101.547 101.547s-101.547-45.464-101.547-101.547c0-56.083 45.464-101.547 101.547-101.547s101.547 45.464 101.547 101.547z","M516.267 685.653c-72.127-1.073-139.063-22.389-195.641-58.5l1.508 0.9c-8.29-5.863-13.636-15.41-13.636-26.206 0-6.976 2.232-13.43 6.021-18.688l-0.065 0.095c5.815-7.813 15.023-12.82 25.4-12.82 6.423 0 12.399 1.918 17.384 5.213l-0.118-0.073c42.287 28.448 94.363 45.407 150.4 45.407s108.113-16.959 151.375-46.024l-0.975 0.617c5.114-3.615 11.478-5.778 18.347-5.778 17.683 0 32.018 14.335 32.018 32.018 0 10.814-5.361 20.376-13.57 26.173l-0.101 0.067c-49.591 35.62-111.411 57.131-178.233 57.599l-0.114 0.001z","M85.333 517.547v347.307c-0 0.053-0 0.116-0 0.179 0 20.501 16.619 37.12 37.12 37.12 9.127 0 17.484-3.294 23.949-8.758l-0.055 0.045 59.307-49.493c6.502-5.374 14.924-8.633 24.107-8.633s17.604 3.26 24.171 8.685l-0.064-0.051 93.44 79.787c6.473 5.45 14.903 8.761 24.107 8.761s17.633-3.311 24.164-8.808l-0.057 0.047 94.72-80.213c6.473-5.45 14.903-8.761 24.107-8.761s17.633 3.311 24.164 8.808l-0.057-0.047 91.733 78.080c6.443 5.528 14.882 8.893 24.107 8.893s17.664-3.365 24.156-8.935l-0.050 0.042 91.733-78.507c6.502-5.374 14.924-8.633 24.107-8.633s17.604 3.26 24.171 8.685l-0.064-0.051 59.307 49.493c6.41 5.422 14.77 8.717 23.899 8.717 20.265 0 36.738-16.24 37.113-36.415l0.001-0.035v-347.307c0-235.641-191.025-426.667-426.667-426.667v0 0c-235.641 0-426.667 191.025-426.667 426.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["ghost"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6120,"id":271,"name":"ghost","prevSize":32,"code":60524,"codes":[60524,60525,60526]},"setIdx":0,"setId":0,"iconIdx":301},{"icon":{"paths":["M170.667 320h682.667v496.213c0 67.629-54.824 122.453-122.453 122.453v0h-437.76c-67.629 0-122.453-54.824-122.453-122.453h-0v-496.213z","M177.493 213.333h669.013c39.116 0 70.827 31.71 70.827 70.827v71.68c0 39.116-31.71 70.827-70.827 70.827h-669.013c-39.116 0-70.827-31.71-70.827-70.827v-71.68c0-39.116 31.71-70.827 70.827-70.827z","M759.893 158.293l-61.013-61.013c-7.101-7.090-16.905-11.474-27.733-11.474s-20.632 4.384-27.734 11.475l0.001-0.001-131.413 130.987-131.413-130.987c-7.101-7.090-16.905-11.474-27.733-11.474s-20.632 4.384-27.734 11.475l0.001-0.001-61.013 61.013c-7.090 7.101-11.474 16.905-11.474 27.733s4.384 20.632 11.475 27.734l-0.001-0.001 141.653 141.653c7.101 7.090 16.905 11.474 27.733 11.474s20.632-4.384 27.734-11.475l-0.001 0.001 50.773-50.773 50.773 50.773c7.101 7.090 16.905 11.474 27.733 11.474s20.632-4.384 27.734-11.475l-0.001 0.001 141.653-142.080c6.963-7.079 11.263-16.797 11.263-27.52s-4.299-20.441-11.268-27.525l0.005 0.005z","M574.293 679.68l-32.427-21.76c-8.405-5.623-18.745-8.974-29.867-8.974s-21.461 3.351-30.064 9.098l0.197-0.124-32.427 21.76c-6.514 4.238-14.484 6.757-23.043 6.757-23.39 0-42.384-18.821-42.664-42.144l-0-0.026v-302.933h256v302.933c-0.28 23.35-19.274 42.171-42.664 42.171-8.559 0-16.529-2.52-23.208-6.858l0.166 0.101z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["gift"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6121,"id":270,"name":"gift","prevSize":32,"code":60527,"codes":[60527,60528,60529,60530]},"setIdx":0,"setId":0,"iconIdx":302},{"icon":{"paths":["M938.667 509.44c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M747.52 283.733c-2.641-7.93-9.995-13.546-18.661-13.546-1.246 0-2.466 0.116-3.648 0.338l0.122-0.019c-36.453 7.29-67.943 25.011-92.12 49.879l-0.040 0.041c-31.871-10.55-68.558-16.635-106.667-16.635s-74.796 6.085-109.143 17.338l2.477-0.702c-24.262-25.303-56.149-43.121-91.961-49.758l-1.052-0.162c-1.386-0.358-2.978-0.564-4.618-0.564-8.676 0-16.007 5.754-18.387 13.654l-0.035 0.136c-3.142 14.052-4.943 30.192-4.943 46.751 0 22.106 3.208 43.463 9.185 63.63l-0.402-1.582c-25.969 28.112-42.083 65.666-42.665 106.976l-0.001 0.117c0 94.293 50.773 170.667 197.12 190.72-22.596 15.19-39.825 36.825-49.207 62.26l-0.286 0.887-28.587 2.987-30.293 3.413h-20.053c-4.989-1.006-9.253-3.6-12.348-7.223l-0.025-0.030c-6.853-10.25-14.3-19.188-22.581-27.275l-0.033-0.032c-15.194-15.458-32.613-28.661-51.754-39.104l-1.152-0.576c-1.887-0.925-4.106-1.466-6.452-1.466-4.369 0-8.3 1.876-11.031 4.867l-0.010 0.012c-2.464 2.533-3.983 5.996-3.983 9.813s1.519 7.28 3.986 9.817l-0.003-0.003c13.872 12.478 25.981 26.485 36.191 41.862l0.503 0.805c4.093 6.699 8.096 14.554 11.51 22.716l0.437 1.177c6.705 14.396 17.829 25.796 31.605 32.675l0.395 0.179c6.628 3.887 14.46 6.484 22.824 7.238l0.216 0.016 17.493 2.133 51.627 5.12v98.987c33.316 9.75 71.589 15.359 111.173 15.359 49.009 0 96.010-8.598 139.576-24.369l-2.855 0.903v-119.467c0.040-1.177 0.063-2.56 0.063-3.949 0-41.168-20.245-77.607-51.322-99.906l-0.368-0.251c138.667-18.347 197.973-96.853 197.973-190.293-0.913-43.843-19.182-83.248-48.191-111.764l-0.023-0.022c4.232-15.877 6.663-34.105 6.663-52.901 0-18.181-2.274-35.831-6.554-52.681l0.318 1.475z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["github"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6122,"id":269,"name":"github","prevSize":32,"code":60531,"codes":[60531,60532]},"setIdx":0,"setId":0,"iconIdx":303},{"icon":{"paths":["M357.547 85.76h308.907c57.025 0 103.253 46.228 103.253 103.253v-0.427c0 57.025-46.228 103.253-103.253 103.253h-308.907c-57.025 0-103.253-46.228-103.253-103.253v0.427c0-57.025 46.228-103.253 103.253-103.253z","M853.333 750.507c7.232 15.944 11.447 34.573 11.447 54.187 0 73.966-59.94 133.932-133.897 133.973l-436.484 0c-0.169 0.001-0.369 0.001-0.57 0.001-73.756 0-133.547-59.791-133.547-133.547 0-18.638 3.818-36.384 10.714-52.499l-0.331 0.871 130.56-314.88 85.333-206.080c20.766-48.438 68.039-81.751 123.093-81.751s102.328 33.314 122.761 80.883l0.332 0.869 87.467 205.653z","M538.027 554.667c-131.84 67.413-229.547 36.693-286.293 2.133l-81.067 196.693c-6.565 15.244-10.383 32.99-10.383 51.628 0 73.756 59.791 133.547 133.547 133.547 0.2 0 0.401-0 0.601-0.001l-0.031 0h436.053c0.105 0 0.23 0 0.354 0 73.991 0 133.973-59.982 133.973-133.973 0-19.614-4.215-38.243-11.788-55.032l0.341 0.845-91.733-213.333c-26.191-7.408-56.27-11.666-87.344-11.666-49.348 0-96.187 10.74-138.307 30.011l2.078-0.852z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["glass"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6123,"id":268,"name":"glass","prevSize":32,"code":60533,"codes":[60533,60534,60535]},"setIdx":0,"setId":0,"iconIdx":304},{"icon":{"paths":["M913.493 554.667l-760.747 379.307c-6.387 3.663-14.042 5.824-22.201 5.824-24.978 0-45.227-20.249-45.227-45.227 0-0.398 0.005-0.794 0.015-1.189l-0.001 0.058v-762.88c-0.040-0.709-0.062-1.539-0.062-2.374 0-24.978 20.249-45.227 45.227-45.227 7.497 0 14.569 1.824 20.794 5.053l-0.252-0.119 760.747 384c16.501 6.99 27.867 23.049 27.867 41.762 0 18.058-10.583 33.644-25.885 40.894l-0.275 0.117z","M583.68 512.427l136.96-136.96-547.84-275.2 410.453 412.587-410.027 410.453 547.413-273.493-136.96-137.387z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["google-play"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6124,"id":267,"name":"google-play","prevSize":32,"code":60536,"codes":[60536,60537]},"setIdx":0,"setId":0,"iconIdx":305},{"icon":{"paths":["M578.133 933.547c-19.528 3.166-42.038 4.976-64.971 4.976-235.641 0-426.667-191.025-426.667-426.667s191.025-426.667 426.667-426.667c87.772 0 169.353 26.503 237.179 71.943l-1.541-0.972c14.641 10.491 24.067 27.451 24.067 46.613 0 14.956-5.743 28.571-15.143 38.759l0.036-0.039-38.827 42.667c-10.537 11.234-25.475 18.232-42.047 18.232-11.651 0-22.494-3.459-31.558-9.407l0.219 0.135c-37.787-23.223-83.555-36.978-132.535-36.978-28.903 0-56.686 4.79-82.601 13.619l1.803-0.534c-103.956 34.143-177.695 130.325-177.695 243.73 0 141.385 114.615 256 256 256 111.153 0 205.761-70.84 241.138-169.836l0.557-1.787h-173.653c-32.047 0-58.027-25.979-58.027-58.027v0-55.467c0.481-31.678 26.273-57.173 58.020-57.173 0.002 0 0.004 0 0.007 0l302.080-0c0.001-0 0.001-0 0.002-0 31.897 0 57.783 25.737 58.025 57.577l0 0.023v17.067c0 201.387-161.28 402.347-360.533 432.213z","M260.693 469.333c20.225-121.695 124.716-213.334 250.61-213.334 0.245 0 0.49 0 0.734 0.001l-0.038-0v-170.667c-0.446-0.002-0.974-0.003-1.503-0.003-38.899 0-76.597 5.139-112.454 14.774l3.023-0.692c-184.468 49.77-317.985 215.589-317.985 412.593 0 235.641 191.025 426.667 426.667 426.667 0.791 0 1.582-0.002 2.373-0.006l-0.122 0.001v-170.667c-140.906-0.632-254.888-115.004-254.888-255.998 0-15.073 1.303-29.841 3.801-44.199l-0.22 1.53z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["google"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6125,"id":266,"name":"google","prevSize":32,"code":60538,"codes":[60538,60539]},"setIdx":0,"setId":0,"iconIdx":306},{"icon":{"paths":["M340.907 85.333h347.307c140.442 0 254.293 113.851 254.293 254.293v344.747c0 140.442-113.851 254.293-254.293 254.293h-347.307c-140.442 0-254.293-113.851-254.293-254.293v-344.747c0-140.442 113.851-254.293 254.293-254.293z","M651.947 721.92c-17.673 0-32-14.327-32-32v0-381.44c0-17.673 14.327-32 32-32s32 14.327 32 32v0 381.44c0.002 0.128 0.003 0.279 0.003 0.43 0 17.437-14.136 31.573-31.573 31.573-0.151 0-0.302-0.001-0.452-0.003l0.023 0z","M412.16 721.92c-17.673 0-32-14.327-32-32v0-154.88c0-17.673 14.327-32 32-32s32 14.327 32 32v0 154.88c0 17.673-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["graph-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6126,"id":265,"name":"graph-2","prevSize":32,"code":60540,"codes":[60540,60541,60542]},"setIdx":0,"setId":0,"iconIdx":307},{"icon":{"paths":["M338.347 85.333h347.307c140.442 0 254.293 113.851 254.293 254.293v344.747c0 140.442-113.851 254.293-254.293 254.293h-347.307c-140.442 0-254.293-113.851-254.293-254.293v-344.747c0-140.442 113.851-254.293 254.293-254.293z","M938.667 682.667v-85.333h-206.507c-54.226-0.428-100.715-33.108-121.264-79.784l-0.336-0.856-37.547-85.333c-7.087-16.586-23.261-27.997-42.101-27.997-19.963 0-36.933 12.813-43.135 30.663l-0.097 0.321-85.333 243.2c-6.008 18.676-23.228 31.953-43.549 31.953-18.557 0-34.529-11.072-41.668-26.971l-0.116-0.289-13.653-28.587c-21.588-45.631-67.050-76.737-119.829-77.226l-0.064-0h-98.133v106.24c-0 0.009-0 0.019-0 0.029 0 140.035 112.437 253.809 251.957 255.969l0.203 0.002h351.573c138.604-3.575 249.6-116.785 249.6-255.92 0-0.028-0-0.056-0-0.084l0 0.004z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["graph-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6127,"id":264,"name":"graph-3","prevSize":32,"code":60543,"codes":[60543,60544]},"setIdx":0,"setId":0,"iconIdx":308},{"icon":{"paths":["M906.24 938.667h-577.707c-0.127 0-0.277 0-0.427 0-134.080 0-242.773-108.693-242.773-242.773 0-0.15 0-0.3 0-0.45l-0 0.023v-577.707c0-17.673 14.327-32 32-32s32 14.327 32 32v0 577.707c0.243 98.786 80.38 178.773 179.199 178.773 0 0 0-0 0-0l577.707-0c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M764.16 223.147c-13.628-5.080-29.374-8.020-45.806-8.020-37.914 0-72.173 15.65-96.67 40.842l-0.030 0.031-223.573 221.867c-24.785 24.417-58.83 39.494-96.396 39.494-13.539 0-26.62-1.958-38.976-5.607l0.972 0.246-117.76-33.707v244.053c-0 0.127-0.001 0.278-0.001 0.429 0 84.531 68.284 153.114 152.701 153.597l0.046 0h579.413v-488.533c0-0.045 0-0.099 0-0.153 0-74.856-46.789-138.784-112.717-164.134l-1.203-0.407z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["graph-4"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6128,"id":263,"name":"graph-4","prevSize":32,"code":60545,"codes":[60545,60546]},"setIdx":0,"setId":0,"iconIdx":309},{"icon":{"paths":["M339.627 85.333h346.027c140.442 0 254.293 113.851 254.293 254.293v344.747c0 140.442-113.851 254.293-254.293 254.293h-346.027c-140.442 0-254.293-113.851-254.293-254.293v-344.747c0-140.442 113.851-254.293 254.293-254.293z","M528.213 825.173c-17.673 0-32-14.327-32-32v0-177.067c0-17.673 14.327-32 32-32s32 14.327 32 32v0 177.067c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M322.56 825.173c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-122.453c0-17.673 14.327-32 32-32s32 14.327 32 32v-0 122.453c0 17.673-14.327 32-32 32v0z","M730.88 825.173c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-290.987c0-17.673 14.327-32 32-32s32 14.327 32 32v0 290.987c0 17.673-14.327 32-32 32v0z","M730.88 374.187c-0.003 0-0.007 0-0.011 0-17.673 0-32-14.327-32-32 0-0.3 0.004-0.599 0.012-0.897l-0.001 0.044v-68.267h-67.413c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h99.413c0.128-0.002 0.279-0.003 0.43-0.003 17.437 0 31.573 14.136 31.573 31.573 0 0.151-0.001 0.302-0.003 0.452l0-0.023v100.267c0.017 0.383 0.026 0.832 0.026 1.283 0 17.437-14.136 31.573-31.573 31.573-0.159 0-0.318-0.001-0.477-0.004l0.024 0z","M333.227 515.413c-0.003 0-0.007 0-0.011 0-17.373 0-31.513-13.845-31.988-31.103l-0.001-0.044c-0.030-0.511-0.047-1.108-0.047-1.709 0-17.068 13.729-30.93 30.747-31.144l0.020-0c8.96 0 215.893-9.387 372.907-229.12 5.912-7.487 14.989-12.249 25.178-12.249 17.673 0 32 14.327 32 32 0 6.455-1.911 12.464-5.199 17.492l0.075-0.122c-176.64 246.613-413.013 256-423.253 256z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["graph-up"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6129,"id":262,"name":"graph-up","prevSize":32,"code":60547,"codes":[60547,60548,60549,60550,60551,60552]},"setIdx":0,"setId":0,"iconIdx":310},{"icon":{"paths":["M340.907 85.333h347.307c140.442 0 254.293 113.851 254.293 254.293v344.747c0 140.442-113.851 254.293-254.293 254.293h-347.307c-140.442 0-254.293-113.851-254.293-254.293v-344.747c0-140.442 113.851-254.293 254.293-254.293z","M514.56 734.72c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-381.44c0-17.673 14.327-32 32-32s32 14.327 32 32v0 381.44c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M274.773 621.653c-17.673 0-32-14.327-32-32v0-155.307c0-17.673 14.327-32 32-32s32 14.327 32 32v0 155.307c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M751.787 621.653c-17.673 0-32-14.327-32-32v0-155.307c0-17.673 14.327-32 32-32s32 14.327 32 32v0 155.307c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["graph"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6130,"id":261,"name":"graph","prevSize":32,"code":60553,"codes":[60553,60554,60555,60556]},"setIdx":0,"setId":0,"iconIdx":311},{"icon":{"paths":["M306.773 85.333h410.453c122.298 0 221.44 99.142 221.44 221.44v410.453c0 122.298-99.142 221.44-221.44 221.44h-410.453c-122.298 0-221.44-99.142-221.44-221.44v-410.453c0-122.298 99.142-221.44 221.44-221.44z","M512 85.333h-205.227c-122.298 0-221.44 99.142-221.44 221.44l-0-0v410.453c0 122.298 99.142 221.44 221.44 221.44l-0-0h205.227z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["grid-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6131,"id":260,"name":"grid-2","prevSize":32,"code":60557,"codes":[60557,60558]},"setIdx":0,"setId":0,"iconIdx":312},{"icon":{"paths":["M274.773 213.333h91.733c39.352 0 71.253 31.901 71.253 71.253v0 526.080h-234.24v-526.080c0-39.352 31.901-71.253 71.253-71.253v0z","M800.853 810.667h-234.667v-312.747c0-39.352 31.901-71.253 71.253-71.253l-0-0h91.733c0-0 0.001-0 0.001-0 39.438 0 71.437 31.85 71.679 71.23l0 0.023z","M896 842.667h-768c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h768c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["grid-frame"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6132,"id":259,"name":"grid-frame","prevSize":32,"code":60559,"codes":[60559,60560,60561]},"setIdx":0,"setId":0,"iconIdx":313},{"icon":{"paths":["M306.773 85.333h410.453c122.298 0 221.44 99.142 221.44 221.44v410.453c0 122.298-99.142 221.44-221.44 221.44h-410.453c-122.298 0-221.44-99.142-221.44-221.44v-410.453c0-122.298 99.142-221.44 221.44-221.44z","M384 85.333h-77.227c-122.298 0-221.44 99.142-221.44 221.44l-0-0v410.453c0 122.298 99.142 221.44 221.44 221.44l-0-0h77.227z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["grid"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6133,"id":258,"name":"grid","prevSize":32,"code":60562,"codes":[60562,60563]},"setIdx":0,"setId":0,"iconIdx":314},{"icon":{"paths":["M482.56 868.267c0 38.881-31.519 70.4-70.4 70.4s-70.4-31.519-70.4-70.4c0-38.881 31.519-70.4 70.4-70.4s70.4 31.519 70.4 70.4z","M798.72 868.267c0 38.881-31.519 70.4-70.4 70.4s-70.4-31.519-70.4-70.4c0-38.881 31.519-70.4 70.4-70.4s70.4 31.519 70.4 70.4z","M844.8 172.8h-484.693c-6.743 0.168-13.19 1.092-19.366 2.69l0.593-0.13v-2.987l-42.667-71.68c-5.596-9.351-15.67-15.513-27.184-15.513-1.095 0-2.177 0.056-3.244 0.165l0.134-0.011h-143.36c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h125.013l32.427 55.467c1.676 2.172 3.65 4.011 5.883 5.49l0.090 0.056c-8.675 11.947-14.496 26.494-16.18 42.278l-0.034 0.389-6.4 91.733h661.333l5.547-77.227c0.148-1.915 0.232-4.148 0.232-6.4 0-48.709-39.431-88.209-88.115-88.32l-0.011-0z","M261.12 408.747l-14.933 199.253c-0.148 1.915-0.232 4.148-0.232 6.4 0 48.709 39.431 88.209 88.115 88.32l0.011 0h484.693c0.069 0 0.151 0 0.233 0 46.29 0 84.222-35.785 87.642-81.199l0.018-0.294 15.787-213.333z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["handcart"]},"attrs":[{},{},{},{}],"properties":{"order":6134,"id":257,"name":"handcart","prevSize":32,"code":60564},"setIdx":0,"setId":0,"iconIdx":315},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M519.253 775.253c-72.081-0.935-139.031-22.107-195.657-58.078l1.523 0.904c-7.825-5.983-12.821-15.322-12.821-25.829 0-6.225 1.754-12.040 4.795-16.978l-0.080 0.14c5.815-7.813 15.023-12.82 25.4-12.82 6.423 0 12.399 1.918 17.384 5.213l-0.118-0.073c42.395 28.329 94.533 45.208 150.613 45.208s108.219-16.879 151.611-45.834l-0.998 0.626c4.831-3.231 10.773-5.157 17.165-5.157 10.505 0 19.794 5.2 25.436 13.167l0.065 0.097c3.137 4.821 5.003 10.72 5.003 17.055 0 10.503-5.129 19.809-13.019 25.549l-0.091 0.063c-49.068 34.998-110.112 56.166-176.072 56.746l-0.142 0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["happy-emoji"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6135,"id":256,"name":"happy-emoji","prevSize":32,"code":60565,"codes":[60565,60566]},"setIdx":0,"setId":0,"iconIdx":316},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M651.093 316.16c-14.589-5.214-31.42-8.227-48.954-8.227-25.474 0-49.463 6.36-70.465 17.58l0.805-0.393c-6.12 3.594-13.479 5.716-21.333 5.716s-15.214-2.123-21.535-5.825l0.201 0.109c-19.83-10.57-43.367-16.778-68.354-16.778-13.316 0-26.22 1.763-38.492 5.068l1.033-0.237c-59.475 15.68-102.649 68.907-102.827 132.246l-0 0.020c0 145.067 140.8 229.973 203.093 259.84 8.475 3.841 18.376 6.080 28.8 6.080s20.325-2.238 29.25-6.261l-0.45 0.181c61.44-25.6 198.827-100.693 201.813-263.253-1.762-58.216-39.48-107.183-91.625-125.571l-0.962-0.296z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["heart-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6136,"id":255,"name":"heart-circle","prevSize":32,"code":60567,"codes":[60567,60568]},"setIdx":0,"setId":0,"iconIdx":317},{"icon":{"paths":["M786.347 141.653c-27.264-9.827-58.725-15.508-91.514-15.508-56.061 0-108.243 16.608-151.893 45.173l1.060-0.651c-5.47 3.632-12.189 5.795-19.413 5.795s-13.943-2.163-19.544-5.877l0.131 0.082c-42.41-27.738-94.35-44.24-150.145-44.24-25.819 0-50.812 3.534-74.523 10.143l1.948-0.464c-111.913 30.427-192.854 131.126-192.854 250.729 0 0.203 0 0.406 0.001 0.609l-0-0.031c-4.267 295.253 301.227 456.533 402.347 502.613 10.395 4.858 22.571 7.693 35.409 7.693 10.89 0 21.304-2.040 30.88-5.759l-0.582 0.199c100.693-38.827 395.947-178.773 401.493-508.16-1.619-111.136-72.308-205.352-170.987-241.761l-1.813-0.585z","M786.347 141.653c-27.264-9.827-58.725-15.508-91.514-15.508-56.061 0-108.243 16.608-151.893 45.173l1.060-0.651c-5.47 3.632-12.189 5.795-19.413 5.795s-13.943-2.163-19.544-5.877l0.131 0.082c-42.41-27.738-94.35-44.24-150.145-44.24-25.819 0-50.812 3.534-74.523 10.143l1.948-0.464c-111.913 30.427-192.854 131.126-192.854 250.729 0 0.203 0 0.406 0.001 0.609l-0-0.031c-0.008 0.978-0.013 2.133-0.013 3.29 0 29.034 2.956 57.378 8.584 84.747l-0.465-2.703h853.333c5.157-26.484 8.107-56.939 8.107-88.083 0-0.233-0-0.467-0-0.7l0 0.036c-1.619-111.136-72.308-205.352-170.987-241.761l-1.813-0.585z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["heart"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6137,"id":254,"name":"heart","prevSize":32,"code":60569,"codes":[60569,60570]},"setIdx":0,"setId":0,"iconIdx":318},{"icon":{"paths":["M737.28 930.133h-465.493c-0.083 0-0.182 0-0.281 0-75.772 0-138.325-56.595-147.695-129.82l-0.077-0.741-38.4-320.427c-0.553-4.833-0.869-10.434-0.869-16.109 0-48.193 22.764-91.069 58.126-118.463l0.343-0.255 283.733-220.16c24.992-19.779 56.969-31.729 91.737-31.729 36.898 0 70.653 13.459 96.623 35.736l-0.199-0.167 270.933 227.84c33.57 27.282 54.844 68.57 54.844 114.826 0 8.419-0.705 16.673-2.058 24.707l0.121-0.867-55.467 312.32c-12.428 70.331-72.981 123.099-145.898 123.307l-0.022 0z","M621.653 558.933c0 60.56-49.093 109.653-109.653 109.653s-109.653-49.093-109.653-109.653c0-60.56 49.093-109.653 109.653-109.653s109.653 49.093 109.653 109.653z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["home-1"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6138,"id":253,"name":"home-1","prevSize":32,"code":60571,"codes":[60571,60572]},"setIdx":0,"setId":0,"iconIdx":319},{"icon":{"paths":["M182.613 315.307l217.6-187.307c29.984-26.701 69.727-43.016 113.28-43.016s83.296 16.314 113.451 43.165l-0.171-0.15 216.32 190.293c59.239 52.039 96.428 127.948 96.428 212.543 0 0.278-0 0.556-0.001 0.834l0-0.043v239.36c-1.678 92.964-77.433 167.682-170.641 167.682-0.309 0-0.618-0.001-0.927-0.002l0.048 0h-512c-94.257 0-170.667-76.41-170.667-170.667v0-241.92c0.477-84.123 37.936-159.403 96.927-210.475l0.353-0.299z","M512 846.933c-17.673 0-32-14.327-32-32v0-122.027c0-17.673 14.327-32 32-32s32 14.327 32 32v0 122.027c0 17.673-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["home-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6139,"id":252,"name":"home-2","prevSize":32,"code":60573,"codes":[60573,60574]},"setIdx":0,"setId":0,"iconIdx":320},{"icon":{"paths":["M183.040 302.933l218.027-188.587c30.185-26.203 69.868-42.173 113.28-42.173s83.095 15.969 113.494 42.354l-0.214-0.182 216.32 189.867c58.979 51.804 96.005 127.374 96.005 211.592 0 0.612-0.002 1.224-0.006 1.835l0-0.094v239.787c-1.679 92.963-77.434 167.68-170.641 167.68-0.009 0-0.018-0-0.027-0l-513.279 0c-94.257 0-170.667-76.41-170.667-170.667v0-241.493c1.033-83.833 38.54-158.703 97.353-209.62l0.354-0.3z","M682.667 804.693h-341.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h341.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["home-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6140,"id":251,"name":"home-3","prevSize":32,"code":60575,"codes":[60575,60576]},"setIdx":0,"setId":0,"iconIdx":321},{"icon":{"paths":["M875.093 341.333l-245.333-213.333c-31.312-27.022-72.401-43.481-117.333-43.481s-86.021 16.459-117.565 43.676l0.232-0.196-245.76 213.333c-39.318 34.512-64.003 84.871-64.003 140.997 0 0.381 0.001 0.762 0.003 1.142l-0-0.059v357.12c-0 0.002-0 0.005-0 0.008 0 53.747 43.209 97.403 96.785 98.124l0.068 0.001h145.067c0.508 0.010 1.107 0.015 1.708 0.015 53.962 0 97.707-43.745 97.707-97.707 0-0.155-0-0.31-0.001-0.466l0 0.024v-184.32c-0.007-0.429-0.011-0.935-0.011-1.442 0-43.701 30.845-80.197 71.951-88.906l0.594-0.105c4.879-0.99 10.487-1.557 16.228-1.557 47.128 0 85.333 38.205 85.333 85.333 0 0.548-0.005 1.094-0.015 1.639l0.001-0.082v189.44c-0.001 0.131-0.001 0.286-0.001 0.442 0 53.362 42.778 96.733 95.911 97.691l0.090 0.001h145.067c53.644-0.722 96.853-44.378 96.853-98.125 0-0.003-0-0.006-0-0.009l0 0.001v-357.547c0.001-0.192 0.001-0.42 0.001-0.648 0-56.044-24.502-106.365-63.379-140.835l-0.196-0.17z"],"attrs":[{"opacity":0.3}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home"]},"attrs":[{"opacity":0.3}],"properties":{"order":6141,"id":250,"name":"home","prevSize":32,"code":60577},"setIdx":0,"setId":0,"iconIdx":322},{"icon":{"paths":["M745.387 875.947l-203.947 58.453c-8.818 2.641-18.952 4.161-29.44 4.161s-20.622-1.52-30.192-4.351l0.752 0.191-203.093-58.453c-41.373-12.030-71.895-47.579-76.336-90.856l-0.037-0.451-60.587-581.547c-0.368-3.328-0.578-7.186-0.578-11.093 0-58.91 47.756-106.667 106.667-106.667 0.053 0 0.107 0 0.16 0l-0.008-0h526.507c0.045-0 0.098-0 0.152-0 58.91 0 106.667 47.756 106.667 106.667 0 3.907-0.21 7.766-0.62 11.564l0.041-0.471-59.307 581.12c-4.727 43.86-35.324 79.479-76.042 91.541l-0.758 0.193z","M503.893 768c-1.346 0.198-2.9 0.311-4.48 0.311s-3.134-0.113-4.654-0.331l0.174 0.020-137.813-42.667c-11.66-3.453-20.419-13.067-22.584-24.978l-0.029-0.195-13.227-79.787c-0.752-2.586-1.185-5.556-1.185-8.627 0-17.673 14.327-32 32-32 16.805 0 30.585 12.954 31.898 29.421l0.007 0.112 9.813 59.733 109.227 32 118.187-37.973 11.52-145.493-280.747-5.547c-16.32-0.376-29.597-12.914-31.137-28.883l-0.010-0.13-19.627-190.293c-0.086-0.894-0.136-1.933-0.136-2.983 0-8.364 3.125-15.998 8.272-21.797l-0.030 0.034c5.537-7.037 13.936-11.608 23.412-11.945l0.054-0.002h358.4c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-322.56l12.8 128 287.147 5.973c0.107-0.001 0.234-0.002 0.361-0.002 9.103 0 17.241 4.131 22.641 10.621l0.039 0.048c5.103 5.53 8.233 12.948 8.233 21.096 0 0.985-0.046 1.959-0.135 2.92l0.009-0.123-17.067 200.96c-1.165 13.060-10.021 23.78-21.96 27.67l-0.226 0.064-148.48 47.787c-2.338 1.355-5.054 2.391-7.939 2.959l-0.168 0.027z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["html"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6142,"id":249,"name":"html","prevSize":32,"code":60578,"codes":[60578,60579]},"setIdx":0,"setId":0,"iconIdx":323},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M561.493 678.827c-7.061-35.963-38.332-62.72-75.852-62.72-0.033 0-0.067 0-0.1 0l-8.528-0c-34.145-66.473-63.123-143.805-82.952-224.729l-1.528-7.378c19.448-14.112 31.95-36.768 31.95-62.344 0-34.796-23.141-64.188-54.873-73.624l-0.544-0.139c-3.85-33.413-6.169-72.399-6.398-111.88l-0.002-0.333c0-7.68 0-15.36 0-23.040-24.872 9.232-45.966 19.287-66.012 30.947l2.012-1.080c0.328 40.36 2.954 79.741 7.754 118.448l-0.501-4.955c-21.915 13.779-36.267 37.83-36.267 65.233 0 0.017 0 0.033 0 0.050l-0-0.003c-0.005 0.339-0.008 0.74-0.008 1.141 0 36.686 25.44 67.43 59.641 75.554l0.528 0.106c22.868 95.489 54.351 179.238 94.71 257.672l-2.976-6.365c-128.25-36.786-240.174-92.268-339.315-164.279l3.101 2.146c0 8.107 0 16.213 0 24.747 0.222 19.482 1.611 38.41 4.1 56.989l-0.26-2.375c92.316 61.034 199.15 110.482 313.216 142.694l8.064 1.946c8.213 34.444 38.698 59.672 75.087 59.733l0.007 0h7.253c39.191 57.693 80.298 108.148 125.332 154.786l-0.319-0.332c26.114-6.76 48.407-14.637 69.805-24.16l-2.818 1.12c-49.045-47.943-93.256-100.416-132.091-156.875l-2.309-3.552c48.407 7.521 104.301 11.861 161.191 11.947l0.089 0c56.291-0.171 111.454-4.353 165.401-12.274l-6.255 0.754c13.369-20.377 25.81-43.808 36.058-68.382l1.062-2.871c-58.926 11.771-126.744 18.596-196.123 18.773l-0.143 0c-53.209-0.257-105.249-4.281-156.144-11.818l5.957 0.725z","M774.827 446.72c5.196-10.056 8.327-21.919 8.532-34.493l0.001-0.067c-0.242-42.703-34.915-77.227-77.652-77.227-0 0-0.001 0-0.001 0l0-0c-8.561 1.094-16.337 3.344-23.555 6.609l0.515-0.209c-48.911-70.078-83.647-153.683-98.11-244.056l-0.45-3.41c-20.035-4.632-43.339-7.698-67.214-8.516l-0.626-0.017c15.346 113.341 57.204 214.689 119.108 300.634l-1.348-1.967c-3.512 8.143-5.554 17.622-5.554 27.579 0 0.354 0.003 0.708 0.008 1.061l-0.001-0.053c-0 0-0 0.001-0 0.001 0 42.737 34.524 77.41 77.204 77.652l0.023 0c6.917-0.214 13.509-1.135 19.85-2.695l-0.65 0.135c56.751 52.551 123.157 95.693 196.104 126.348l4.43 1.652c5.584-18.123 10.221-39.794 13.025-62.037l0.202-1.963c-62.886-27.79-116.969-63.010-164.43-105.479l0.59 0.519z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["icon"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6143,"id":248,"name":"icon","prevSize":32,"code":60580,"codes":[60580,60581,60582]},"setIdx":0,"setId":0,"iconIdx":324},{"icon":{"paths":["M336.243 86.061l347.302-1.879c140.44-0.76 254.906 112.473 255.665 252.914l1.865 344.742c0.76 140.44-112.473 254.906-252.914 255.665l-347.302 1.879c-140.44 0.76-254.906-112.473-255.665-252.914l-1.865-344.742c-0.76-140.44 112.473-254.906 252.914-255.665z","M480 337.92c-3.878-12.451-15.141-21.398-28.545-21.759l-0.041-0.001c-0.467-0.024-1.014-0.038-1.564-0.038-12.894 0-24.006 7.626-29.074 18.613l-0.082 0.199-100.693 226.133-52.48 118.613c-1.76 3.869-2.786 8.39-2.786 13.151 0 13.041 7.699 24.285 18.799 29.433l0.2 0.083c3.825 1.716 8.291 2.716 12.991 2.716 13.179 0 24.521-7.862 29.593-19.151l0.082-0.205 42.667-99.413h131.413l32 96.853c4.4 12.751 16.295 21.749 30.292 21.76l0.001 0c1.539 0.294 3.31 0.462 5.12 0.462s3.581-0.168 5.297-0.49l-0.177 0.028c13.113-4.197 22.441-16.279 22.441-30.539 0-4.373-0.877-8.542-2.466-12.339l0.078 0.211zM398.933 541.867l46.507-105.387 34.987 105.387z","M713.813 426.667c-0.128-0.002-0.279-0.003-0.43-0.003-17.437 0-31.573 14.136-31.573 31.573 0 0.151 0.001 0.302 0.003 0.452l-0-0.023v233.387c0 17.673 14.327 32 32 32s32-14.327 32-32v0-232.96c0.002-0.127 0.003-0.277 0.003-0.427 0-17.673-14.327-32-32-32-0.001 0-0.002 0-0.003 0l0-0z","M756.48 348.16c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["illustrator"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6144,"id":247,"name":"illustrator","prevSize":32,"code":60583,"codes":[60583,60584,60585,60586]},"setIdx":0,"setId":0,"iconIdx":325},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M512 452.267c23.564 0 42.667 19.103 42.667 42.667v0 198.827c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0-198.827c0-23.564 19.103-42.667 42.667-42.667v0z","M565.333 340.907c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["information-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6145,"id":246,"name":"information-2","prevSize":32,"code":60587,"codes":[60587,60588,60589]},"setIdx":0,"setId":0,"iconIdx":326},{"icon":{"paths":["M433.92 918.613l-234.667-135.68c-46.998-27.4-78.080-77.566-78.080-134.992 0-0.092 0-0.184 0-0.275l-0 0.014v-271.36c-0-0.078-0-0.169-0-0.261 0-57.426 31.082-107.593 77.341-134.594l0.739-0.399 234.667-135.68c22.418-13.073 49.348-20.79 78.080-20.79s55.662 7.718 78.829 21.193l-0.749-0.402 234.667 135.68c46.998 27.4 78.080 77.566 78.080 134.992 0 0.092-0 0.184-0 0.275l0-0.014v271.36c0 0.078 0 0.169 0 0.261 0 57.426-31.082 107.593-77.341 134.594l-0.739 0.399-234.667 135.68c-22.418 13.073-49.348 20.79-78.080 20.79s-55.662-7.718-78.829-21.193l0.749 0.402z","M512 571.733c23.564 0 42.667-19.103 42.667-42.667v0-198.827c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 198.827c0 23.564 19.103 42.667 42.667 42.667v0z","M565.333 683.093c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["information-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6146,"id":245,"name":"information-3","prevSize":32,"code":60590,"codes":[60590,60591,60592]},"setIdx":0,"setId":0,"iconIdx":327},{"icon":{"paths":["M433.92 105.387l-234.667 135.68c-46.998 27.4-78.080 77.566-78.080 134.992 0 0.092 0 0.184 0 0.275l-0-0.014v271.36c-0 0.078-0 0.169-0 0.261 0 57.426 31.082 107.593 77.341 134.594l0.739 0.399 234.667 135.68c22.418 13.073 49.348 20.79 78.080 20.79s55.662-7.718 78.829-21.193l-0.749 0.402 234.667-135.68c46.998-27.4 78.080-77.566 78.080-134.992 0-0.092-0-0.184-0-0.275l0 0.014v-271.36c0-0.078 0-0.169 0-0.261 0-57.426-31.082-107.593-77.341-134.594l-0.739-0.399-234.667-135.68c-22.418-13.073-49.348-20.79-78.080-20.79s-55.662 7.718-78.829 21.193l0.749-0.402z","M512 452.267c23.564 0 42.667 19.103 42.667 42.667v0 198.827c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0-198.827c0-23.564 19.103-42.667 42.667-42.667v0z","M565.333 340.907c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["information-4"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6147,"id":244,"name":"information-4","prevSize":32,"code":60593,"codes":[60593,60594,60595]},"setIdx":0,"setId":0,"iconIdx":328},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M512 571.733c23.564 0 42.667-19.103 42.667-42.667v0-198.827c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 198.827c0 23.564 19.103 42.667 42.667 42.667v0z","M565.333 683.093c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["information-5"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6148,"id":243,"name":"information-5","prevSize":32,"code":60596,"codes":[60596,60597,60598]},"setIdx":0,"setId":0,"iconIdx":329},{"icon":{"paths":["M912.64 449.28l-59.307-60.16c-7.905-7.75-12.805-18.541-12.805-30.475 0-0.236 0.002-0.472 0.006-0.707l-0 0.036v-85.333c-0.24-48.831-39.881-88.324-88.746-88.324-0.3 0-0.6 0.001-0.9 0.004l0.046-0h-85.333c-0.2 0.003-0.435 0.005-0.671 0.005-11.935 0-22.725-4.9-30.468-12.798l-0.007-0.007-59.733-60.16c-16.057-16.040-38.23-25.96-62.72-25.96s-46.663 9.92-62.721 25.961l0.001-0.001-60.16 59.307c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0h-85.333c-48.831 0.24-88.324 39.881-88.324 88.746 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v85.333c0.003 0.2 0.005 0.435 0.005 0.671 0 11.935-4.9 22.725-12.798 30.468l-0.007 0.007-60.16 59.733c-16.040 16.057-25.96 38.23-25.96 62.72s9.92 46.663 25.961 62.721l-0.001-0.001 59.307 60.16c7.905 7.75 12.805 18.541 12.805 30.475 0 0.236-0.002 0.472-0.006 0.707l0-0.036v85.333c0.24 48.831 39.881 88.324 88.746 88.324 0.3 0 0.6-0.001 0.9-0.004l-0.046 0h85.333c0.2-0.003 0.435-0.005 0.671-0.005 11.935 0 22.725 4.9 30.468 12.798l0.007 0.007 60.16 60.16c16.057 16.040 38.23 25.96 62.72 25.96s46.663-9.92 62.721-25.961l-0.001 0.001 59.733-59.307c7.75-7.905 18.541-12.805 30.475-12.805 0.236 0 0.472 0.002 0.707 0.006l-0.036-0h85.333c49.013-0 88.747-39.733 88.747-88.747v0-85.333c-0.003-0.2-0.005-0.435-0.005-0.671 0-11.935 4.9-22.725 12.798-30.468l0.007-0.007 60.16-60.16c16.041-16.057 25.961-38.23 25.961-62.721 0-24.702-10.092-47.047-26.379-63.137l-0.009-0.009z","M512 571.733c23.564 0 42.667-19.103 42.667-42.667v0-198.827c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 198.827c0 23.564 19.103 42.667 42.667 42.667v0z","M565.333 683.093c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["information"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6149,"id":242,"name":"information","prevSize":32,"code":60599,"codes":[60599,60600,60601]},"setIdx":0,"setId":0,"iconIdx":330},{"icon":{"paths":["M938.667 352v318.293c-0.243 148.121-120.253 268.131-268.35 268.373l-0.023 0h-319.573c-146.727-0.724-265.392-119.836-265.392-266.664 0-0.601 0.002-1.202 0.006-1.802l-0 0.092v-318.293c-0.004-0.507-0.005-1.107-0.005-1.707 0-146.333 118.627-264.96 264.96-264.96 0.152 0 0.304 0 0.456 0l-0.024-0h319.573c0.254-0.001 0.554-0.001 0.855-0.001 147.448 0 267.034 119.288 267.519 266.622l0 0.046zM512 314.88c-0.126-0-0.275-0-0.425-0-108.395 0-196.267 87.872-196.267 196.267s87.872 196.267 196.267 196.267c108.095 0 195.78-87.386 196.265-195.367l0-0.046c0-0.127 0-0.278 0-0.429 0-108.331-87.577-196.207-195.794-196.691l-0.046-0zM762.88 218.453c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-0.006 0-0.012 0-0.019 0-23.564-19.103-42.667-42.667-42.667-0.45 0-0.899 0.007-1.345 0.021l0.065-0.002z","M512 749.653c-0.252 0.001-0.551 0.002-0.85 0.002-131.959 0-238.933-106.974-238.933-238.933s106.974-238.933 238.933-238.933c131.959 0 238.933 106.974 238.933 238.933 0 0.45-0.001 0.899-0.004 1.348l0-0.069c-0.962 131.013-107.032 236.933-238.011 237.653l-0.069 0zM512 357.547c-0.253-0.002-0.552-0.002-0.851-0.002-84.831 0-153.6 68.769-153.6 153.6s68.769 153.6 153.6 153.6c84.53 0 153.112-68.282 153.597-152.698l0-0.046c0-0.128 0.001-0.28 0.001-0.432 0-84.617-68.233-153.297-152.679-154.021l-0.069-0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["instagram"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6150,"id":241,"name":"instagram","prevSize":32,"code":60602,"codes":[60602,60603]},"setIdx":0,"setId":0,"iconIdx":331},{"icon":{"paths":["M248.747 676.267h544.427c55.14-0 99.84 44.7 99.84 99.84v60.16c0 55.14-44.7 99.84-99.84 99.84h-544.427c-55.14 0-99.84-44.7-99.84-99.84v-60.16c0-55.14 44.7-99.84 99.84-99.84z","M300.373 615.253h32.427c17.673 0 32 14.327 32 32v54.613c0 17.673-14.327 32-32 32h-32.427c-17.673 0-32-14.327-32-32v-54.613c0-17.673 14.327-32 32-32z","M460.8 419.84h107.52v325.547h-107.52v-325.547z","M514.56 87.893c-100.147 0-181.333 81.186-181.333 181.333s81.186 181.333 181.333 181.333c100.148 0 181.333-81.186 181.333-181.333 0-0.15-0-0.3-0.001-0.45l0 0.024c0-0 0-0 0-0.001 0-99.912-80.995-180.907-180.907-180.907-0.15 0-0.3 0-0.45 0.001l0.023-0zM475.733 253.013c-21.443 0-38.827-17.383-38.827-38.827s17.383-38.827 38.827-38.827h-0c21.443 0 38.827 17.383 38.827 38.827s-17.383 38.827-38.827 38.827h-0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["joystick"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6151,"id":240,"name":"joystick","prevSize":32,"code":60604,"codes":[60604,60605,60606,60607]},"setIdx":0,"setId":0,"iconIdx":332},{"icon":{"paths":["M512 967.68c-0.165 0.001-0.36 0.002-0.555 0.002-14.286 0-27.645-3.966-39.036-10.858l0.337 0.189-88.747-50.773c-9.485-5.67-15.737-15.884-15.737-27.559 0-5.532 1.404-10.736 3.874-15.275l-0.084 0.168c5.787-9.414 16.030-15.598 27.718-15.598 5.463 0 10.61 1.351 15.125 3.736l-0.177-0.085 87.893 50.773c2.081 1.222 4.583 1.944 7.253 1.944s5.173-0.722 7.322-1.981l-0.068 0.037 326.4-188.16c4.485-2.62 7.494-7.339 7.679-12.774l0.001-0.026v-378.027c-0.186-5.461-3.195-10.18-7.607-12.761l-0.073-0.039-324.267-188.16c-2.081-1.222-4.583-1.944-7.253-1.944s-5.173 0.722-7.322 1.981l0.068-0.037-326.4 188.16c-4.485 2.62-7.494 7.339-7.679 12.774l-0.001 0.026v369.067c0.050 10.561 5.82 19.763 14.368 24.673l0.139 0.074 85.333 49.067c4.67 2.653 10.259 4.217 16.213 4.217 18.362 0 33.251-14.871 33.28-33.227l0-0.003v-361.387c-0.002-0.127-0.003-0.277-0.003-0.427 0-17.437 14.136-31.573 31.573-31.573 0.001 0 0.002 0 0.003 0l-0-0c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023v361.813c0.014 0.613 0.022 1.335 0.022 2.059 0 35.442-19.206 66.398-47.778 83.028l-0.458 0.246c-13.888 8.444-30.681 13.443-48.64 13.443s-34.752-4.998-49.061-13.68l0.421 0.237-85.333-48.64c-27.77-16.539-46.085-46.406-46.085-80.551 0-0.331 0.002-0.662 0.005-0.992l-0 0.050v-369.067c0.582-28.687 16.217-53.597 39.307-67.21l0.373-0.203 326.4-188.16c11.25-6.653 24.793-10.584 39.253-10.584s28.004 3.931 39.618 10.783l-0.364-0.199 326.4 188.16c23.699 13.962 39.414 39.249 39.68 68.229l0 0.038v377.173c-0.266 29.017-15.981 54.305-39.308 68.063l-0.372 0.203-326.4 188.16c-10.715 6.188-23.568 9.839-37.274 9.839-0.696 0-1.39-0.009-2.082-0.028l0.102 0.002z","M746.667 581.973c0.015 0.654 0.023 1.424 0.023 2.196 0 20.718-6.052 40.023-16.485 56.243l0.249-0.413c-11.871 17.516-28.258 31.159-47.505 39.41l-0.709 0.27c-20.614 9.207-44.672 14.569-69.982 14.569-1.647 0-3.289-0.023-4.926-0.068l0.241 0.005c-1.904 0.077-4.14 0.122-6.385 0.122-28.902 0-56.095-7.312-79.832-20.187l0.884 0.439c-15.93-9.37-28.984-22.014-38.554-37.088l-0.272-0.459c-8.819-13.213-14.075-29.459-14.080-46.932l-0-0.001c-0.001-0.097-0.002-0.211-0.002-0.325 0-8.521 3.421-16.242 8.965-21.866l-0.004 0.004c5.557-5.545 13.227-8.974 21.698-8.974 0.322 0 0.642 0.005 0.962 0.015l-0.047-0.001c0.196-0.005 0.426-0.008 0.657-0.008 7.167 0 13.689 2.761 18.56 7.277l-0.018-0.016c5.725 5.901 10.233 13.018 13.097 20.923l0.13 0.41c4.269 10.634 9.138 19.762 14.85 28.277l-0.344-0.544c5.611 7.919 12.921 14.273 21.427 18.619l0.333 0.154c10.156 4.608 22.024 7.293 34.518 7.293 0.915 0 1.827-0.014 2.735-0.043l-0.133 0.003c1.168 0.060 2.536 0.093 3.912 0.093 17.724 0 34.133-5.629 47.538-15.196l-0.25 0.169c12.123-7.665 20.056-20.998 20.056-36.183 0-0.179-0.001-0.358-0.003-0.537l0 0.027c0.009-0.32 0.015-0.697 0.015-1.075 0-10.481-4.064-20.014-10.702-27.107l0.021 0.022c-7.568-7.461-16.871-13.183-27.247-16.506l-0.486-0.134c-11.588-4.109-26.587-8.369-41.893-11.822l-2.907-0.551c-24.847-5.396-46.519-12.447-67.188-21.378l2.334 0.898c-16.27-7.441-29.769-18.478-39.913-32.153l-0.194-0.273c-9.633-13.309-15.408-29.96-15.408-47.96 0-0.989 0.017-1.974 0.052-2.955l-0.004 0.142c-0.002-0.208-0.003-0.453-0.003-0.699 0-19.032 5.906-36.685 15.985-51.226l-0.195 0.298c11.488-16.016 27.144-28.376 45.393-35.6l0.687-0.24c19.376-7.601 41.814-12.007 65.28-12.007 1.65 0 3.295 0.022 4.935 0.065l-0.242-0.005c1.313-0.037 2.858-0.058 4.409-0.058 18.404 0 36.11 2.988 52.659 8.505l-1.175-0.339c15.127 4.693 28.22 11.995 39.417 21.468l-0.164-0.135c9.318 7.509 16.917 16.743 22.389 27.26l0.224 0.473c4.346 8.308 6.998 18.109 7.252 28.506l0.002 0.081c0 0.019 0 0.042 0 0.064 0 8.738-3.411 16.679-8.975 22.564l0.015-0.016c-5.203 6.276-13.001 10.244-21.725 10.244-0.162 0-0.324-0.001-0.486-0.004l0.024 0c-0.498 0.032-1.079 0.051-1.665 0.051-6.501 0-12.471-2.272-17.16-6.064l0.052 0.040c-5.26-5.802-9.81-12.396-13.421-19.545l-0.233-0.508c-5.693-12.237-13.459-22.597-22.948-31.066l-0.092-0.081c-10.542-7.075-23.517-11.292-37.478-11.292-1.826 0-3.635 0.072-5.425 0.214l0.236-0.015c-0.44-0.009-0.959-0.015-1.478-0.015-15.34 0-29.599 4.626-41.459 12.558l0.271-0.17c-9.894 6.072-16.442 16.757-16.64 28.985l-0 0.029c-0.008 0.251-0.012 0.546-0.012 0.842 0 6.42 2.085 12.353 5.615 17.159l-0.057-0.081c4.106 5.592 9.404 10.070 15.538 13.115l0.248 0.112c5.889 3.479 12.694 6.394 19.88 8.391l0.6 0.142 33.707 9.387c21.316 4.653 39.305 9.941 56.768 16.321l-3.008-0.961c16.249 5.051 30.395 11.87 43.279 20.436l-0.612-0.383c11.059 7.879 19.986 18.035 26.23 29.83l0.224 0.464c3.975 10.16 6.278 21.923 6.278 34.225 0 4.179-0.266 8.295-0.781 12.334l0.050-0.479z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["js-2"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6152,"id":239,"name":"js-2","prevSize":32,"code":60608,"codes":[60608,60609]},"setIdx":0,"setId":0,"iconIdx":333},{"icon":{"paths":["M448.853 738.133c-1.41 0.199-3.038 0.312-4.693 0.312s-3.284-0.114-4.878-0.333l0.185 0.021-132.693-39.68c-13.45-4.155-23.053-16.477-23.053-31.042 0-3.23 0.472-6.35 1.352-9.294l-0.059 0.23c4.006-13.422 16.24-23.040 30.72-23.040 3.193 0 6.277 0.468 9.187 1.338l-0.227-0.058 91.733 27.307v-334.080c-0.136-1.115-0.213-2.405-0.213-3.713 0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427c0 1.309-0.078 2.599-0.228 3.867l0.015-0.153v375.893c0 0.001 0 0.002 0 0.003 0 10.561-4.983 19.957-12.725 25.967l-0.075 0.056c-5.232 3.995-11.864 6.4-19.058 6.4-0.050 0-0.1-0-0.15-0l0.008 0zM579.413 728.32l128-37.547c13.422-4.006 23.040-16.24 23.040-30.72v-128c0-0.027 0-0.058 0-0.090 0-9.58-4.101-18.203-10.643-24.208l-0.024-0.022c-5.663-4.949-13.124-7.968-21.29-7.968-1.52 0-3.016 0.105-4.48 0.307l0.17-0.019-91.733 11.947v-144.64l110.933-17.493c15.53-2.596 27.221-15.936 27.221-32.006 0-1.654-0.124-3.279-0.363-4.866l0.022 0.179c-2.78-15.564-16.212-27.226-32.368-27.226-1.677 0-3.324 0.126-4.933 0.368l0.181-0.022-137.813 21.76c-15.54 2.368-27.309 15.637-27.309 31.654 0 0.122 0.001 0.243 0.002 0.364l-0-0.018v209.92c-0 0.018-0 0.040-0 0.061 0 9.542 4.29 18.081 11.047 23.794l0.046 0.038c5.382 4.98 12.609 8.035 20.549 8.035 1.632 0 3.234-0.129 4.797-0.378l-0.172 0.023 93.44-11.52v65.707l-106.24 30.72c-11.923 4.97-20.151 16.531-20.151 30.013 0 17.909 14.518 32.427 32.427 32.427 2.147 0 4.246-0.209 6.277-0.607l-0.205 0.034z","M745.387 875.947l-203.947 58.453c-8.818 2.641-18.952 4.161-29.44 4.161s-20.622-1.52-30.192-4.351l0.752 0.191-203.093-58.453c-41.373-12.030-71.895-47.579-76.336-90.856l-0.037-0.451-60.587-581.547c-0.368-3.328-0.578-7.186-0.578-11.093 0-58.91 47.756-106.667 106.667-106.667 0.053 0 0.107 0 0.16 0l-0.008-0h526.507c0.045-0 0.098-0 0.152-0 58.91 0 106.667 47.756 106.667 106.667 0 3.907-0.21 7.766-0.62 11.564l0.041-0.471-59.307 581.12c-4.727 43.86-35.324 79.479-76.042 91.541l-0.758 0.193z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["js"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6153,"id":238,"name":"js","prevSize":32,"code":60610,"codes":[60610,60611]},"setIdx":0,"setId":0,"iconIdx":334},{"icon":{"paths":["M160 85.333h213.333c41.237 0 74.667 33.429 74.667 74.667v704c0 41.237-33.429 74.667-74.667 74.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v-704c0-41.237 33.429-74.667 74.667-74.667z","M650.667 85.333h213.333c41.237 0 74.667 33.429 74.667 74.667v405.333c0 41.237-33.429 74.667-74.667 74.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v-405.333c0-41.237 33.429-74.667 74.667-74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["kanban"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6154,"id":237,"name":"kanban","prevSize":32,"code":60612,"codes":[60612,60613]},"setIdx":0,"setId":0,"iconIdx":335},{"icon":{"paths":["M305.493 85.333h412.587c121.591 0 220.16 98.569 220.16 220.16v412.587c0 121.591-98.569 220.16-220.16 220.16h-412.587c-121.591 0-220.16-98.569-220.16-220.16v-412.587c0-121.591 98.569-220.16 220.16-220.16z","M574.293 262.4c-0-0-0-0-0-0-103.768 0-187.917 83.999-188.159 187.71l-0 0.023c0.142 20.312 3.408 39.81 9.342 58.108l-0.382-1.361-123.733 123.733c-5.875 6.059-9.496 14.333-9.496 23.452 0 2.117 0.195 4.188 0.568 6.196l-0.032-0.208 12.373 62.72c2.554 13.079 12.59 23.258 25.385 25.988l0.215 0.038 63.573 12.373c1.862 0.385 4.003 0.605 6.195 0.605 8.932 0 17.009-3.66 22.814-9.561l0.004-0.004 37.547-37.547-53.76-51.2c-3.394-3.46-5.488-8.206-5.488-13.44s2.095-9.98 5.491-13.443l-0.003 0.003c3.392-3.369 8.066-5.451 13.227-5.451s9.834 2.082 13.228 5.452l-0.001-0.001 54.187 52.053 59.733-59.307c16.896 5.683 36.353 8.963 56.576 8.963 0.36 0 0.72-0.001 1.080-0.003l-0.055 0c103.682 0 187.733-84.051 187.733-187.733s-84.051-187.733-187.733-187.733v0zM578.987 512c-31.587-1.182-56.745-27.073-56.745-58.841 0-32.519 26.361-58.88 58.88-58.88s58.88 26.361 58.88 58.88c0 0.136-0 0.273-0.001 0.409l0-0.021c0 0.017 0 0.036 0 0.056 0 32.283-26.17 58.453-58.453 58.453-0.9 0-1.796-0.020-2.686-0.061l0.126 0.005z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["key-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6155,"id":236,"name":"key-square","prevSize":32,"code":60614,"codes":[60614,60615]},"setIdx":0,"setId":0,"iconIdx":336},{"icon":{"paths":["M617.813 89.173c-176.522 0.277-319.514 143.439-319.514 320 0 34.439 5.44 67.607 15.508 98.691l-0.634-2.264-210.347 210.347c-9.861 10.007-15.95 23.754-15.95 38.923 0 3.739 0.37 7.392 1.076 10.924l-0.059-0.354 20.48 107.093c4.687 21.412 21.255 37.98 42.299 42.599l0.367 0.068 109.227 23.467c3.156 0.648 6.783 1.018 10.497 1.018 15.27 0 29.077-6.267 38.988-16.37l0.008-0.009 63.573-63.573-91.307-88.32c-5.612-5.944-9.062-13.983-9.062-22.827s3.45-16.882 9.077-22.843l-0.015 0.016c5.835-5.682 13.815-9.186 22.613-9.186s16.778 3.504 22.62 9.193l-0.007-0.007 92.16 88.747 101.12-101.12c29.199 10.009 62.842 15.787 97.834 15.787 0.105 0 0.211-0 0.316-0l-0.016 0c176.731 0 320-143.269 320-320s-143.269-320-320-320v0z","M722.773 408.747c0 57.968-46.992 104.96-104.96 104.96s-104.96-46.992-104.96-104.96c0-57.968 46.992-104.96 104.96-104.96s104.96 46.992 104.96 104.96z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["key"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6156,"id":235,"name":"key","prevSize":32,"code":60616,"codes":[60616,60617]},"setIdx":0,"setId":0,"iconIdx":337},{"icon":{"paths":["M544 377.173v-46.933c-0.001-0.127-0.002-0.277-0.002-0.427 0-32.519 26.361-58.88 58.88-58.88 0.001 0 0.001 0 0.002 0l20.907-0c67.865 0 122.88-55.015 122.88-122.88v-27.733c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 27.733c0 32.519-26.361 58.88-58.88 58.88v0h-20.907c-67.917 0.243-122.88 55.356-122.88 123.306 0 0 0 0.001 0 0.001l-0-0v46.933z","M887.467 377.173h-750.933c-0.008-0-0.018-0-0.028-0-27.677 0-50.225 21.96-51.169 49.407l-0.002 0.086v457.813c0 28.277 22.923 51.2 51.2 51.2v0h750.933c28.277-0 51.2-22.923 51.2-51.2l0 0v-457.813c-0.947-27.533-23.495-49.493-51.172-49.493-0.010 0-0.020 0-0.030 0l0.002-0zM671.147 675.84c0 17.202-13.945 31.147-31.147 31.147s-31.147-13.945-31.147-31.147c0-17.202 13.945-31.147 31.147-31.147v0c17.202 0 31.147 13.945 31.147 31.147v0zM597.333 516.693c17.202 0 31.147 13.945 31.147 31.147s-13.945 31.147-31.147 31.147c-17.202 0-31.147-13.945-31.147-31.147v0c0-17.202 13.945-31.147 31.147-31.147v0zM543.147 675.84c0 17.202-13.945 31.147-31.147 31.147s-31.147-13.945-31.147-31.147c0-17.202 13.945-31.147 31.147-31.147v0c17.202 0 31.147 13.945 31.147 31.147v0zM469.333 516.693c17.202 0 31.147 13.945 31.147 31.147s-13.945 31.147-31.147 31.147c-17.202 0-31.147-13.945-31.147-31.147v0c0-17.202 13.945-31.147 31.147-31.147v0zM213.333 516.693c17.202 0 31.147 13.945 31.147 31.147s-13.945 31.147-31.147 31.147c-17.202 0-31.147-13.945-31.147-31.147v0c0-17.202 13.945-31.147 31.147-31.147h0zM261.12 835.84h-52.907c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.907c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM261.12 707.84h-52.907c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.907c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM310.187 547.84c0-17.202 13.945-31.147 31.147-31.147s31.147 13.945 31.147 31.147c0 17.202-13.945 31.147-31.147 31.147h0c-17.202 0-31.147-13.945-31.147-31.147v0zM384 644.693c17.202 0 31.147 13.945 31.147 31.147s-13.945 31.147-31.147 31.147c-17.202 0-31.147-13.945-31.147-31.147v0c0-17.202 13.945-31.147 31.147-31.147v0zM682.667 835.84h-292.267c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h292.267c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM810.667 835.84c-17.202 0-31.147-13.945-31.147-31.147s13.945-31.147 31.147-31.147c17.202 0 31.147 13.945 31.147 31.147l-0-0c-0.476 16.831-14.233 30.293-31.135 30.293-0.004 0-0.008-0-0.012-0l0.001 0zM810.667 707.84h-52.48c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.48c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM815.787 579.84h-90.453c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h90.453c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["keyboard"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6157,"id":234,"name":"keyboard","prevSize":32,"code":60618,"codes":[60618,60619]},"setIdx":0,"setId":0,"iconIdx":338},{"icon":{"paths":["M177.067 213.333h669.867c27.099 0 49.067 21.968 49.067 49.067v462.933h-768v-462.933c-0-27.099 21.968-49.067 49.067-49.067h0z","M85.333 725.333h853.333c0 47.128-38.205 85.333-85.333 85.333v0h-682.667c-47.128 0-85.333-38.205-85.333-85.333v0 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["laptop"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6158,"id":233,"name":"laptop","prevSize":32,"code":60620,"codes":[60620,60621]},"setIdx":0,"setId":0,"iconIdx":339},{"icon":{"paths":["M95.147 203.52v521.813c0.19 15.689 8.819 29.319 21.55 36.583l0.21 0.11 290.56 165.547c6.12 3.594 13.479 5.716 21.333 5.716s15.214-2.123 21.535-5.825l-0.201 0.109 292.693-170.667c12.605-7.569 20.909-21.166 20.909-36.702 0-0.147-0.001-0.294-0.002-0.44l0 0.022v-162.133l144.64-85.333c12.601-7.568 20.904-21.161 20.907-36.693l0-0v-139.52c-0.097-15.61-8.562-29.222-21.132-36.584l-0.201-0.109-123.307-72.107c-6.12-3.594-13.479-5.716-21.333-5.716s-15.214 2.123-21.535 5.825l0.201-0.109-124.16 71.253c-12.844 7.514-21.334 21.241-21.334 36.951 0 0.060 0 0.119 0 0.179l-0-0.009v165.12l-164.267 93.867v-350.72c-0.045-16.18-9.088-30.237-22.388-37.435l-0.226-0.112-128-69.547c-6.12-3.594-13.479-5.716-21.333-5.716s-15.214 2.123-21.535 5.825l0.201-0.109-122.027 69.547c-13.061 7.444-21.732 21.266-21.76 37.116l-0 0.004z","M101.12 182.187l154.88 91.307 170.667-91.733c-4.215-6.57-9.992-11.8-16.822-15.248l-0.244-0.112-128-69.547c-6.12-3.594-13.479-5.716-21.333-5.716s-15.214 2.123-21.535 5.825l0.201-0.109-122.027 69.547c-6.606 3.835-11.951 9.18-15.677 15.583l-0.109 0.204z","M432.213 203.947c0.009-0.335 0.015-0.729 0.015-1.124 0-7.745-2.064-15.008-5.671-21.27l0.11 0.207-170.667 91.733 3.84 375.040 170.667-95.147z","M763.307 557.653l-334.507 191.573-167.253-100.693 334.933-187.733 166.827 96.853z","M763.307 369.92v187.733l144.64-85.333c12.601-7.568 20.904-21.161 20.907-36.693l0-0v-139.52c-0.066-7.833-2.114-15.174-5.664-21.564l0.118 0.231z","M428.8 932.267c7.69-0.024 14.895-2.079 21.114-5.657l-0.207 0.11 292.693-170.667c12.605-7.569 20.909-21.166 20.909-36.702 0-0.147-0.001-0.294-0.002-0.44l0 0.022v-161.28l-334.507 191.573z","M602.027 274.347l161.28 95.573 160-95.147c-3.886-6.437-9.222-11.636-15.576-15.25l-0.211-0.11-122.88-72.107c-6.12-3.594-13.479-5.716-21.333-5.716s-15.214 2.123-21.535 5.825l0.201-0.109-124.16 71.253c-6.606 3.835-11.951 9.18-15.677 15.583l-0.109 0.204z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["laravel"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6159,"id":232,"name":"laravel","prevSize":32,"code":60622,"codes":[60622,60623,60624,60625,60626,60627,60628]},"setIdx":0,"setId":0,"iconIdx":340},{"icon":{"paths":["M333.227 85.333h357.547c136.908 0 247.893 110.986 247.893 247.893v357.547c0 136.908-110.986 247.893-247.893 247.893h-357.547c-136.908 0-247.893-110.986-247.893-247.893v-357.547c0-136.908 110.986-247.893 247.893-247.893z","M583.253 706.987c-12.081-0.048-22.971-5.109-30.704-13.21l-0.016-0.017-149.333-155.733c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 155.307-148.907c7.669-7.411 18.128-11.977 29.653-11.977 23.581 0 42.697 19.116 42.697 42.697 0 12.056-4.996 22.944-13.032 30.708l-0.012 0.012-123.307 121.6 119.467 125.013c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002c-7.354 6.186-16.928 9.944-27.38 9.944-1.175 0-2.34-0.048-3.491-0.141l0.151 0.010z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["left-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6160,"id":231,"name":"left-square","prevSize":32,"code":60629,"codes":[60629,60630]},"setIdx":0,"setId":0,"iconIdx":341},{"icon":{"paths":["M619.947 807.253c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003-253.013-252.587c-7.522-7.877-12.204-18.523-12.373-30.26l-0-0.033c-0-0.073-0.001-0.16-0.001-0.247 0-11.721 4.726-22.338 12.377-30.049l-0.003 0.003 253.013-252.587c7.412-6.377 17.129-10.259 27.753-10.259 23.564 0 42.667 19.103 42.667 42.667 0 10.624-3.883 20.341-10.307 27.809l0.047-0.056-223.147 222.72 222.293 222.72c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002c-7.468 7.415-17.669 12.087-28.959 12.372l-0.054 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["left"]},"attrs":[{}],"properties":{"order":6161,"id":230,"name":"left","prevSize":32,"code":60631},"setIdx":0,"setId":0,"iconIdx":342},{"icon":{"paths":["M771.413 85.333h-518.827c-0.005-0-0.012-0-0.018-0-68.057 0-123.369 54.57-124.567 122.341l-0.002 0.112v469.333c0 68.807 55.779 124.587 124.587 124.587v0h48.64c0.199-0.002 0.435-0.002 0.671-0.002 27.228 0 51.736 11.646 68.815 30.229l0.061 0.067 72.533 78.507c17.365 18.212 41.813 29.536 68.907 29.536s51.542-11.324 68.871-29.498l0.036-0.038 77.227-81.067c17.189-17.895 41.317-29.014 68.043-29.014 0.079 0 0.157 0 0.236 0l-0.012-0h42.667c0.637 0.012 1.387 0.018 2.14 0.018 68.364 0 123.867-55.062 124.58-123.258l0.001-0.067v-469.333c-1.199-67.883-56.511-122.453-124.568-122.453-0.006 0-0.013 0-0.019 0l0.001-0z","M627.627 306.347c-12.115-4.337-26.092-6.844-40.654-6.844-28.301 0-54.391 9.469-75.274 25.412l0.301-0.221c-20.471-15.69-46.443-25.143-74.622-25.143-11.398 0-22.434 1.546-32.911 4.441l0.866-0.204c-49.408 13.12-85.24 57.403-85.333 110.069l-0 0.011c0 135.68 148.907 207.787 184.747 223.147 2.158 0.805 4.651 1.271 7.253 1.271s5.095-0.466 7.401-1.319l-0.148 0.048c34.133-11.52 182.187-71.253 184.747-224.853-0.901-48.721-32.138-89.918-75.576-105.563l-0.797-0.251z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["like-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6162,"id":229,"name":"like-2","prevSize":32,"code":60632,"codes":[60632,60633]},"setIdx":0,"setId":0,"iconIdx":343},{"icon":{"paths":["M474.453 201.387c16.592 41.085 56.145 69.548 102.346 69.548 0.169 0 0.338-0 0.507-0.001l-0.026 0h128c0.014-0 0.030-0 0.047-0 84.667 0 158.426 46.707 196.914 115.761l0.586 1.146c-7.863-122.972-109.527-219.734-233.79-219.734-0.158 0-0.316 0-0.474 0l0.024-0h-207.787z","M713.387 261.12h-128c-0.143 0.001-0.312 0.001-0.48 0.001-46.201 0-85.755-28.462-102.082-68.809l-0.264-0.738-13.227-35.84c-16.683-41.364-56.361-70.087-102.788-70.4l-0.039-0h-85.333c-0.127-0-0.277-0-0.427-0-107.924 0-195.413 87.49-195.413 195.413 0 0.15 0 0.3 0.001 0.451l-0-0.024v431.787c-0 0.127-0 0.277-0 0.427 0 124.419 100.861 225.28 225.28 225.28 0 0 0-0 0-0l402.773 0c0 0 0 0 0 0 124.419 0 225.28-100.861 225.28-225.28 0-0.15-0-0.3-0-0.45l0 0.023v-226.56c0-0.127 0-0.277 0-0.427 0-124.183-100.67-224.853-224.853-224.853-0.15 0-0.3 0-0.45 0l0.023-0zM542.72 657.067c-10.261 7.122-22.98 11.379-36.693 11.379s-26.432-4.256-36.908-11.519l0.215 0.141c-36.693-24.32-85.333-66.56-85.333-110.080-0.092-1.348-0.145-2.922-0.145-4.508 0-36.829 28.28-67.053 64.31-70.14l0.261-0.018c23.094 0.69 42.962 13.847 53.17 32.945l0.163 0.335c1.361 2.275 3.812 3.775 6.613 3.775s5.252-1.5 6.594-3.74l0.019-0.035c10.371-19.433 30.239-32.59 53.241-33.278l0.092-0.002c36.291 3.105 64.571 33.329 64.571 70.158 0 1.586-0.052 3.16-0.156 4.72l0.011-0.212c-0.853 40.107-52.48 84.053-89.173 110.080z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["like-folder"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6163,"id":228,"name":"like-folder","prevSize":32,"code":60634,"codes":[60634,60635]},"setIdx":0,"setId":0,"iconIdx":344},{"icon":{"paths":["M912.64 449.28l-59.307-60.16c-7.905-7.75-12.805-18.541-12.805-30.475 0-0.236 0.002-0.472 0.006-0.707l-0 0.036v-85.333c-0.24-48.831-39.881-88.324-88.746-88.324-0.3 0-0.6 0.001-0.9 0.004l0.046-0h-85.333c-0.2 0.003-0.435 0.005-0.671 0.005-11.935 0-22.725-4.9-30.468-12.798l-0.007-0.007-59.733-60.16c-16.057-16.040-38.23-25.96-62.72-25.96s-46.663 9.92-62.721 25.961l0.001-0.001-60.16 59.307c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0h-85.333c-48.831 0.24-88.324 39.881-88.324 88.746 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v85.333c0.003 0.2 0.005 0.435 0.005 0.671 0 11.935-4.9 22.725-12.798 30.468l-0.007 0.007-60.16 59.733c-16.040 16.057-25.96 38.23-25.96 62.72s9.92 46.663 25.961 62.721l-0.001-0.001 59.307 60.16c7.905 7.75 12.805 18.541 12.805 30.475 0 0.236-0.002 0.472-0.006 0.707l0-0.036v85.333c0.24 48.831 39.881 88.324 88.746 88.324 0.3 0 0.6-0.001 0.9-0.004l-0.046 0h85.333c0.2-0.003 0.435-0.005 0.671-0.005 11.935 0 22.725 4.9 30.468 12.798l0.007 0.007 60.16 60.16c16.057 16.040 38.23 25.96 62.72 25.96s46.663-9.92 62.721-25.961l-0.001 0.001 59.733-59.307c7.75-7.905 18.541-12.805 30.475-12.805 0.236 0 0.472 0.002 0.707 0.006l-0.036-0h85.333c49.013-0 88.747-39.733 88.747-88.747v0-85.333c-0.003-0.2-0.005-0.435-0.005-0.671 0-11.935 4.9-22.725 12.798-30.468l0.007-0.007 60.16-60.16c16.041-16.057 25.961-38.23 25.961-62.721 0-24.702-10.092-47.047-26.379-63.137l-0.009-0.009z","M682.667 457.813h-85.333c-13.41-0.028-24.271-10.906-24.271-24.32 0-1.508 0.137-2.984 0.4-4.416l-0.023 0.149 10.667-61.013c0.583-2.725 0.917-5.855 0.917-9.063 0-24.978-20.249-45.227-45.227-45.227-16.17 0-30.358 8.486-38.354 21.247l-0.111 0.189-78.933 121.6v-24.747c-0-17.909-14.518-32.427-32.427-32.427h-42.667c-17.909 0-32.427 14.518-32.427 32.427v0 218.88c0 17.909 14.518 32.427 32.427 32.427v0h42.667c17.909 0 32.427-14.518 32.427-32.427h0v2.987l53.76 42.667c11.040 7.906 24.791 12.683 39.652 12.8l0.028 0h103.253c20.031-0.606 36.8-13.905 42.577-32.1l0.089-0.326 52.907-172.8c0.875-2.986 1.379-6.416 1.379-9.963 0-19.098-14.59-34.788-33.233-36.532l-0.146-0.011z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["like-shapes"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6164,"id":227,"name":"like-shapes","prevSize":32,"code":60636,"codes":[60636,60637]},"setIdx":0,"setId":0,"iconIdx":345},{"icon":{"paths":["M771.413 85.333h-518.827c-0.005-0-0.012-0-0.018-0-68.057 0-123.369 54.57-124.567 122.341l-0.002 0.112v469.333c0 68.807 55.779 124.587 124.587 124.587v0h48.64c0.199-0.002 0.435-0.002 0.671-0.002 27.228 0 51.736 11.646 68.815 30.229l0.061 0.067 72.533 78.507c17.365 18.212 41.813 29.536 68.907 29.536s51.542-11.324 68.871-29.498l0.036-0.038 77.227-81.067c17.189-17.895 41.317-29.014 68.043-29.014 0.079 0 0.157 0 0.236 0l-0.012-0h42.667c0.637 0.012 1.387 0.018 2.14 0.018 68.364 0 123.867-55.062 124.58-123.258l0.001-0.067v-469.333c-1.199-67.883-56.511-122.453-124.568-122.453-0.006 0-0.013 0-0.019 0l0.001-0z","M677.547 388.267h-82.773c-13.427-0.309-24.194-11.268-24.194-24.74 0-1.358 0.109-2.69 0.32-3.988l-0.019 0.142 10.667-61.013c0.408-2.291 0.641-4.929 0.641-7.622 0-25.214-20.44-45.653-45.653-45.653-15.634 0-29.432 7.858-37.66 19.84l-0.101 0.155-80.64 122.027v-25.173c0-0.013 0-0.029 0-0.045 0-17.909-14.518-32.427-32.427-32.427-0.6 0-1.197 0.016-1.789 0.049l0.082-0.004h-42.667c-17.909 0-32.427 14.518-32.427 32.427v0 218.88c0 17.909 14.518 32.427 32.427 32.427v0h42.667c17.909 0 32.427-14.518 32.427-32.427l0 0v3.413l53.76 42.667c11.186 8.016 25.148 12.818 40.232 12.818 0.556 0 1.111-0.007 1.664-0.020l-0.082 0.002h103.253c20.078-0.468 36.914-13.829 42.58-32.103l0.086-0.323 52.907-170.667c1.273-3.569 2.009-7.685 2.009-11.974 0-19.771-15.637-35.89-35.218-36.664l-0.070-0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["like-tag"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6165,"id":226,"name":"like-tag","prevSize":32,"code":60638,"codes":[60638,60639]},"setIdx":0,"setId":0,"iconIdx":346},{"icon":{"paths":["M157.44 276.48h90.027c37.467 0 67.84 30.373 67.84 67.84v459.093c0 37.467-30.373 67.84-67.84 67.84h-90.027c-37.467 0-67.84-30.373-67.84-67.84v-459.093c0-37.467 30.373-67.84 67.84-67.84z","M312.747 400.213l170.667-259.84c17.31-26.316 46.708-43.449 80.108-43.449 52.784 0 95.573 42.79 95.573 95.573 0 6.16-0.583 12.184-1.696 18.020l0.095-0.597-22.187 128c-0.503 2.695-0.791 5.795-0.791 8.962 0 28.105 22.645 50.921 50.684 51.197l0.026 0h173.653c41.547 0.213 75.145 33.942 75.145 75.519 0 8.075-1.267 15.854-3.614 23.149l0.149-0.535-110.507 361.813c-12.704 39.57-49.129 67.727-92.147 67.84l-0.013 0h-215.893c-0.535 0.007-1.167 0.011-1.8 0.011-31.298 0-60.28-9.911-83.98-26.766l0.447 0.302-110.933-88.747z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["like"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6166,"id":225,"name":"like","prevSize":32,"code":60640,"codes":[60640,60641]},"setIdx":0,"setId":0,"iconIdx":347},{"icon":{"paths":["M512 298.667c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM401.493 322.56c12.777-7.53 21.215-21.22 21.215-36.882 0-7.952-2.175-15.395-5.963-21.768l0.108 0.197-58.88-100.267c-7.693-11.965-20.938-19.777-36.007-19.777-23.564 0-42.667 19.103-42.667 42.667 0 7.23 1.798 14.040 4.972 20.008l-0.112-0.23 57.173 101.12c7.568 12.601 21.161 20.904 36.693 20.907l0 0c0.688 0.042 1.492 0.066 2.301 0.066 7.839 0 15.153-2.249 21.332-6.137l-0.166 0.098zM316.16 398.507c3.619-6.136 5.756-13.52 5.756-21.402 0-14.916-7.654-28.044-19.249-35.671l-0.161-0.099-89.173-54.187c-5.737-3.062-12.547-4.86-19.777-4.86-23.564 0-42.667 19.103-42.667 42.667 0 15.070 7.812 28.314 19.608 35.905l0.169 0.102 88.747 52.907c6.049 3.489 13.303 5.548 21.039 5.548 0.104 0 0.207-0 0.311-0.001l-0.016 0c0.124 0.001 0.271 0.002 0.418 0.002 15.536 0 29.133-8.304 36.595-20.716l0.107-0.193zM281.173 512c0-23.564-19.103-42.667-42.667-42.667v0h-93.013c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h93.013c23.564 0 42.667-19.103 42.667-42.667v0z","M714.667 235.093c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667v0c23.564 0 42.667 19.103 42.667 42.667v0zM222.293 730.88l69.973-42.667c13.711-7.282 22.89-21.472 22.89-37.806 0-23.564-19.103-42.667-42.667-42.667-8.495 0-16.409 2.482-23.059 6.761l0.169-0.102-70.4 42.667c-12.599 7.57-20.898 21.164-20.898 36.696 0 8.028 2.217 15.537 6.072 21.951l-0.107-0.193c7.472 12.771 21.083 21.236 36.679 21.333l0.014 0c7.879-0.208 15.204-2.399 21.549-6.089l-0.216 0.116zM332.8 861.013c-8.085-0.382-15.443-3.208-21.429-7.749l0.095 0.069c-12.673-7.554-21.030-21.188-21.030-36.774 0-7.822 2.105-15.153 5.779-21.456l-0.109 0.203 35.413-60.587c7.848-10.702 20.375-17.572 34.506-17.572 23.564 0 42.667 19.103 42.667 42.667 0 6.368-1.395 12.409-3.896 17.837l0.109-0.265-35.413 60.16c-6.965 13.627-20.683 22.917-36.621 23.465l-0.072 0.002zM512 903.68c-23.564 0-42.667-19.103-42.667-42.667v0-58.027c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 58.027c0 23.564-19.103 42.667-42.667 42.667v0zM685.227 853.333c-15.61-0.097-29.222-8.562-36.584-21.132l-0.109-0.201-23.467-40.107c-5.099-6.945-8.16-15.662-8.16-25.095 0-23.564 19.103-42.667 42.667-42.667 17.197 0 32.017 10.173 38.771 24.83l0.109 0.265 23.467 40.107c3.748 6.22 5.965 13.73 5.965 21.758 0 15.532-8.299 29.126-20.705 36.588l-0.193 0.107c-6.265 3.491-13.743 5.547-21.701 5.547-0.021 0-0.041-0-0.062-0l0.003 0zM803.413 725.333c-0.212 0.004-0.462 0.006-0.713 0.006-7.739 0-14.997-2.060-21.254-5.662l0.207 0.11-29.867-17.92c-14.922-6.863-25.095-21.684-25.095-38.88 0-23.564 19.103-42.667 42.667-42.667 9.433 0 18.15 3.061 25.214 8.244l-0.119-0.083 29.867 17.493c12.777 7.53 21.215 21.22 21.215 36.882 0 7.952-2.175 15.395-5.963 21.768l0.108-0.197c-7.495 12.482-20.898 20.745-36.243 20.906l-0.023 0zM843.52 554.667h-23.040c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h23.040c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0zM782.933 395.52c-23.559-0.007-42.654-19.107-42.654-42.667 0-15.53 8.298-29.123 20.702-36.586l0.193-0.107 10.24-5.973c5.162-2.391 11.204-3.786 17.572-3.786 23.564 0 42.667 19.103 42.667 42.667 0 14.131-6.87 26.658-17.453 34.423l-0.119 0.083-9.813 5.973c-6.129 3.575-13.454 5.766-21.274 5.972l-0.060 0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["loading"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6167,"id":224,"name":"loading","prevSize":32,"code":60642,"codes":[60642,60643]},"setIdx":0,"setId":0,"iconIdx":348},{"icon":{"paths":["M383.573 655.36c0 23.329-18.911 42.24-42.24 42.24s-42.24-18.911-42.24-42.24c0-23.329 18.911-42.24 42.24-42.24s42.24 18.911 42.24 42.24z","M554.24 655.36c0 23.329-18.911 42.24-42.24 42.24s-42.24-18.911-42.24-42.24c0-23.329 18.911-42.24 42.24-42.24s42.24 18.911 42.24 42.24z","M724.907 654.933c0 23.329-18.911 42.24-42.24 42.24s-42.24-18.911-42.24-42.24c0-23.329 18.911-42.24 42.24-42.24s42.24 18.911 42.24 42.24z","M252.16 403.2h519.68c92.136 0 166.827 74.691 166.827 166.827v202.24c0 92.136-74.691 166.827-166.827 166.827h-519.68c-92.136 0-166.827-74.691-166.827-166.827v-202.24c0-92.136 74.691-166.827 166.827-166.827z","M252.16 403.2h55.893v-85.333c0-92.607 75.073-167.68 167.68-167.68v0h72.533c92.607 0 167.68 75.073 167.68 167.68v0 85.333h64v-86.613c-0.484-127.673-103.974-231.012-231.657-231.253l-0.023-0h-72.533c-127.706 0.241-231.196 103.581-231.68 231.207l-0 0.047v87.467z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["lock-2"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6168,"id":223,"name":"lock-2","prevSize":32,"code":60644,"codes":[60644,60645,60646,60647,60648]},"setIdx":0,"setId":0,"iconIdx":349},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M637.013 554.667c-17.673 0-32-14.327-32-32v0-122.453c-0.24-40.669-33.144-73.573-73.79-73.813l-0.023-0h-38.4c-40.669 0.24-73.573 33.144-73.813 73.79l-0 0.023v122.88c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-122.88c0-76.112 61.701-137.813 137.813-137.813v0h38.4c76.112 0 137.813 61.701 137.813 137.813v0 122.88c-0.471 17.394-14.569 31.343-31.978 31.573l-0.022 0z","M649.387 445.867h-274.773c-48.778 0-88.32 39.542-88.32 88.32v0 105.813c-0.006 0.381-0.009 0.83-0.009 1.28 0 48.778 39.542 88.32 88.32 88.32 0.003 0 0.007-0 0.010-0l274.773 0c0.003 0 0.006 0 0.009 0 48.778 0 88.32-39.542 88.32-88.32 0-0.45-0.003-0.899-0.010-1.348l0.001 0.068v-105.813c0-48.778-39.542-88.32-88.32-88.32h0zM512 633.173c-0.126 0.001-0.275 0.002-0.425 0.002-25.214 0-45.653-20.44-45.653-45.653s20.44-45.653 45.653-45.653c25.214 0 45.653 20.44 45.653 45.653 0 0.149-0.001 0.298-0.002 0.447l0-0.023c0 24.978-20.249 45.227-45.227 45.227v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["lock-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6169,"id":222,"name":"lock-3","prevSize":32,"code":60649,"codes":[60649,60650,60651]},"setIdx":0,"setId":0,"iconIdx":350},{"icon":{"paths":["M747.947 580.693c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-232.107c0-92.607-75.073-167.68-167.68-167.68v0h-72.533c-92.607 0-167.68 75.073-167.68 167.68v0 232.107c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-232.107c0.484-127.673 103.974-231.012 231.657-231.253l0.023-0h72.533c127.856 0.242 231.437 103.824 231.68 231.656l0 0.024v232.107c-0.241 17.489-14.474 31.573-31.997 31.573-0.001 0-0.002-0-0.003-0l0 0z","M581.547 671.147c0 38.41-31.137 69.547-69.547 69.547s-69.547-31.137-69.547-69.547c0-38.41 31.137-69.547 69.547-69.547s69.547 31.137 69.547 69.547z","M771.84 403.2h-519.68c-92.136 0-166.827 74.691-166.827 166.827v0 202.24c0.243 91.952 74.84 166.4 166.826 166.4 0 0 0-0 0.001-0l519.68 0c0 0 0 0 0.001 0 91.986 0 166.583-74.448 166.826-166.377l0-0.023v-202.24c0-92.136-74.691-166.827-166.827-166.827h-0zM512 804.693c-73.756 0-133.547-59.791-133.547-133.547s59.791-133.547 133.547-133.547c73.756 0 133.547 59.791 133.547 133.547v0c0 73.756-59.791 133.547-133.547 133.547h0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["lock"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6170,"id":221,"name":"lock","prevSize":32,"code":60652,"codes":[60652,60653,60654]},"setIdx":0,"setId":0,"iconIdx":351},{"icon":{"paths":["M190.293 535.040h642.987c26.156 0 47.36 21.204 47.36 47.36v291.84c0 26.156-21.204 47.36-47.36 47.36h-642.987c-26.156 0-47.36-21.204-47.36-47.36v-291.84c0-26.156 21.204-47.36 47.36-47.36z","M270.507 853.333c-17.673 0-32-14.327-32-32v0-197.547c0-17.673 14.327-32 32-32s32 14.327 32 32v0 198.827c-0.474 17.068-14.423 30.723-31.562 30.723-0.154 0-0.308-0.001-0.461-0.003l0.023 0z","M431.36 853.333c-17.673 0-32-14.327-32-32v0-197.547c0-17.673 14.327-32 32-32s32 14.327 32 32v0 198.827c-0.474 17.068-14.423 30.723-31.562 30.723-0.154 0-0.308-0.001-0.461-0.003l0.023 0z","M592.64 853.333c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-197.547c0-17.673 14.327-32 32-32s32 14.327 32 32v0 198.827c-0.706 17.114-14.751 30.72-31.974 30.72-0.009 0-0.018-0-0.027-0l0.001 0z","M753.493 853.333c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-197.547c0-17.673 14.327-32 32-32s32 14.327 32 32v0 198.827c-0.706 17.114-14.751 30.72-31.974 30.72-0.009 0-0.018-0-0.027-0l0.001 0z","M311.467 535.040l200.533-191.147 200.533 191.147h92.587l-269.653-256c-5.635-5.057-13.123-8.149-21.333-8.149s-15.698 3.092-21.363 8.175l0.030-0.026-269.653 256z","M512 341.333c-55.9-0.24-101.124-45.612-101.124-101.546 0-0.3 0.001-0.6 0.004-0.9l-0 0.046c0-17.673 14.327-32 32-32s32 14.327 32 32v0c-0.002 0.127-0.002 0.277-0.002 0.427 0 20.501 16.619 37.12 37.12 37.12s37.12-16.619 37.12-37.12c0-20.5-16.618-37.119-37.117-37.12l-0-0c-17.431-0.23-31.529-14.179-31.999-31.53l-0.001-0.044v-68.267c0-17.673 14.327-32 32-32s32 14.327 32 32v0 42.667c39.364 14.432 66.945 51.58 66.945 95.17 0 55.082-44.042 99.878-98.832 101.095l-0.113 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["logistic"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6171,"id":220,"name":"logistic","prevSize":32,"code":60655,"codes":[60655,60656,60657,60658,60659,60660,60661]},"setIdx":0,"setId":0,"iconIdx":352},{"icon":{"paths":["M167.68 573.013h200.96c45.479 0 82.347 36.868 82.347 82.347v200.96c0 45.479-36.868 82.347-82.347 82.347h-200.96c-45.479 0-82.347-36.868-82.347-82.347v-200.96c0-45.479 36.868-82.347 82.347-82.347z","M207.36 573.013h121.6v81.067c0 23.564-19.103 42.667-42.667 42.667v0h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-81.067cl6.4 0z","M655.36 573.013h200.96c45.479 0 82.347 36.868 82.347 82.347v200.96c0 45.479-36.868 82.347-82.347 82.347h-200.96c-45.479 0-82.347-36.868-82.347-82.347v-200.96c0-45.479 36.868-82.347 82.347-82.347z","M695.040 573.013h122.027v81.067c0 23.564-19.103 42.667-42.667 42.667v0h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-81.067cl5.973 0z","M170.667 85.333h197.973c45.479-0 82.347 36.868 82.347 82.347v0 200.96c0 45.479-36.868 82.347-82.347 82.347v0h-200.96c-45.479 0-82.347-36.868-82.347-82.347h0v-197.973c0-47.128 38.205-85.333 85.333-85.333v0z","M207.36 85.333h121.6v81.067c0 23.564-19.103 42.667-42.667 42.667v0h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-81.067z","M655.36 85.333h200.96c45.479-0 82.347 36.868 82.347 82.347v200.96c0 45.479-36.868 82.347-82.347 82.347h-200.96c-45.479 0-82.347-36.868-82.347-82.347v-200.96c0-45.479 36.868-82.347 82.347-82.347z","M695.040 85.333h122.027v81.067c0 23.564-19.103 42.667-42.667 42.667v0h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-81.067ch5.973z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["lots-shopping"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6172,"id":219,"name":"lots-shopping","prevSize":32,"code":60662,"codes":[60662,60663,60664,60665,60666,60667,60668,60669]},"setIdx":0,"setId":0,"iconIdx":353},{"icon":{"paths":["M439.040 580.267c-0-0.010-0-0.022-0-0.034 0-83.204 56.706-153.164 133.579-173.341l1.248-0.278c14.728-3.96 31.637-6.235 49.078-6.235 36.127 0 69.975 9.761 99.049 26.79l-0.926-0.501c28.001-16.645 61.735-26.483 97.767-26.483 22.276 0 43.674 3.76 63.593 10.68l-1.36-0.411c11.071 3.943 20.363 8.116 29.266 12.919l-1.106-0.545c1.915-13.851 3.148-30.107 3.409-46.599l0.004-0.334c-1.12-97.988-63.579-181.102-150.727-212.826l-1.593-0.507c-24.12-8.591-51.941-13.555-80.922-13.555-56.773 0-109.096 19.052-150.924 51.112l0.593-0.436c-41.135-31.744-93.416-50.879-150.166-50.879-22.459 0-44.218 2.997-64.899 8.613l1.731-0.4c-98.817 26.241-170.48 114.806-170.667 220.139l-0 0.021c-4.267 271.36 298.667 415.573 369.067 445.867 4.302 1.719 9.288 2.715 14.507 2.715s10.205-0.997 14.778-2.81l-0.271 0.095c8.284-2.57 15.071-5.177 21.654-8.155l-1.174 0.475c-73.513-53.685-121.539-138.48-124.575-234.623l-0.012-0.47z","M721.067 505.6l-19.627-14.933c-21.033-16.496-47.879-26.453-77.051-26.453-0.062 0-0.124 0-0.185 0l0.010-0c-12.342 0.172-24.237 1.717-35.651 4.491l1.091-0.224c-49.61 14.093-85.336 58.994-85.336 112.239 0 0.291 0.001 0.582 0.003 0.872l-0-0.045c-2.987 157.44 183.040 244.48 220.587 260.267 32-12.373 213.333-83.2 213.333-263.253-1.744-49.014-32.972-90.311-76.412-106.821l-0.815-0.272c-12.801-4.714-27.585-7.441-43.005-7.441-29.565 0-56.788 10.023-78.458 26.857l0.29-0.216z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["lovely"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6173,"id":218,"name":"lovely","prevSize":32,"code":60670,"codes":[60670,60671]},"setIdx":0,"setId":0,"iconIdx":354},{"icon":{"paths":["M682.667 621.653h-119.467c-10.257-0.145-18.517-8.494-18.517-18.772 0-1.668 0.218-3.286 0.626-4.826l-0.030 0.131 17.493-63.147 106.667-21.76c14.804-2.803 25.849-15.636 25.849-31.050 0-2.301-0.246-4.544-0.713-6.705l0.038 0.208c-3.217-14.788-16.195-25.701-31.721-25.701-2.059 0-4.074 0.192-6.026 0.559l0.201-0.031-75.093 15.36 37.973-137.387c0.766-2.816 1.206-6.050 1.206-9.387 0-20.475-16.577-37.078-37.042-37.12l-0.004-0h-56.32c-0.017-0-0.037-0-0.057-0-16.772 0-30.916 11.253-35.294 26.621l-0.063 0.259-52.907 185.6-107.093 21.333c-15.38 2.514-26.974 15.704-26.974 31.603 0 17.673 14.327 32 32 32 0.483 0 0.964-0.011 1.442-0.032l-0.068 0.002h6.4l74.667-14.933-35.84 130.56c-0.925 3.067-1.458 6.591-1.458 10.24 0 20.265 16.428 36.693 36.693 36.693 0.063 0 0.125-0 0.188-0l-0.010 0h248.32c16.41-0.056 30.279-10.877 34.917-25.767l0.070-0.26 14.080-46.507c1.091-3.318 1.72-7.137 1.72-11.103 0-19.97-15.953-36.214-35.81-36.683l-0.044-0.001z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["lts"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6174,"id":217,"name":"lts","prevSize":32,"code":60672,"codes":[60672,60673]},"setIdx":0,"setId":0,"iconIdx":355},{"icon":{"paths":["M917.333 828.587l-135.253-128c-25.886 33.124-56.020 61.359-89.936 84.453l-1.371 0.881 139.093 132.267c11.729 13.641 29.007 22.226 48.291 22.226 35.111 0 63.573-28.463 63.573-63.573 0-21.207-10.384-39.989-26.345-51.538l-0.186-0.128z","M475.307 85.333c-212.077 0-384 171.923-384 384s171.923 384 384 384c212.077 0 384-171.923 384-384v0c0-212.077-171.923-384-384-384v0zM475.307 740.693c-149.632-0-270.933-121.301-270.933-270.933s121.301-270.933 270.933-270.933c149.482 0 270.69 121.058 270.933 270.484l0 0.023c0.001 0.254 0.001 0.554 0.001 0.854 0 149.397-121.11 270.507-270.507 270.507-0.151 0-0.301-0-0.452-0l0.024 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["magnifier"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6175,"id":216,"name":"magnifier","prevSize":32,"code":60674,"codes":[60674,60675]},"setIdx":0,"setId":0,"iconIdx":356},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M912.64 227.84l-660.48 688.64-3.413 5.12c20.988 8.678 45.309 14.736 70.722 16.998l0.958 0.069 286.72-298.667 223.573 227.413c5.509 5.474 12.976 8.983 21.259 9.384l0.075 0.003c11.89-10.707 22.65-22.144 32.411-34.411l0.443-0.576c-0.232-7.563-3.457-14.329-8.524-19.191l-0.010-0.009-224.853-228.693 283.307-295.253c-4.247-26.495-11.989-50.305-22.845-72.303l0.659 1.477z","M370.773 205.653c-69.899 8.858-124.848 63.081-134.729 131.861l-0.098 0.832c-0.868 6.126-1.364 13.202-1.364 20.394 0 39.475 14.932 75.461 39.456 102.62l77.961 87.759c9.019 9.997 22.019 16.253 36.48 16.253s27.461-6.256 36.441-16.209l0.039-0.043 78.507-87.893c24.352-26.953 39.253-62.851 39.253-102.229 0-0.060-0-0.12-0-0.18l0 0.009c-0.163-85.179-69.251-154.167-154.453-154.167-6.164 0-12.243 0.361-18.219 1.063l0.725-0.069zM388.693 416.427c-31.812-0-57.6-25.788-57.6-57.6s25.788-57.6 57.6-57.6c31.812 0 57.6 25.788 57.6 57.6v0c0 31.812-25.788 57.6-57.6 57.6v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["map"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6176,"id":215,"name":"map","prevSize":32,"code":60676,"codes":[60676,60677,60678]},"setIdx":0,"setId":0,"iconIdx":357},{"icon":{"paths":["M591.787 135.253c7.492-4.666 16.586-7.432 26.327-7.432 13.873 0 26.435 5.611 35.541 14.687l-0.001-0.001 227.84 227.84c8.918 9.077 14.423 21.533 14.423 35.274 0 9.85-2.829 19.040-7.719 26.801l0.123-0.208c-117.704 185.743-270.502 338.676-450.238 453.043l-5.868 3.49c-7.433 4.635-16.459 7.383-26.126 7.383-13.792 0-26.278-5.593-35.313-14.636l-227.84-228.267c-9.201-9.061-14.902-21.653-14.902-35.577 0-9.559 2.687-18.49 7.346-26.080l-0.124 0.217c24.32-37.12 50.347-75.947 78.080-111.787 13.155-17.050 21.085-38.718 21.085-62.239 0-12.096-2.097-23.703-5.949-34.476l0.223 0.715c-5.004-12.73-7.904-27.472-7.904-42.891 0-66.451 53.869-120.32 120.32-120.32 15.419 0 30.162 2.901 43.71 8.186l-0.819-0.281c10.141 3.693 21.848 5.828 34.054 5.828 23.58 0 45.299-7.97 62.609-21.363l-0.236 0.175c35.84-27.733 74.24-53.76 111.36-78.080zM343.893 682.667l341.333-341.333c6.377-7.412 10.259-17.129 10.259-27.753 0-23.564-19.103-42.667-42.667-42.667-10.624 0-20.341 3.883-27.809 10.307l0.056-0.047-341.333 341.333c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002c7.709 7.648 18.326 12.374 30.047 12.374 0.087 0 0.173-0 0.26-0.001l-0.013 0c11.656-0.051 22.2-4.767 29.869-12.376l-0.003 0.003zM448.853 797.013c135.281-99.027 250.84-214.585 346.769-345.436l3.098-4.43c2.976-5.669 4.722-12.386 4.722-19.51 0-23.564-19.103-42.667-42.667-42.667-12.291 0-23.368 5.197-31.153 13.513l-0.022 0.024c-94.030 127.755-203.338 237.063-326.905 328.146l-4.188 2.947c-10.568 7.857-17.341 20.306-17.341 34.337 0 9.564 3.147 18.393 8.461 25.508l-0.080-0.112c7.79 10.574 20.155 17.386 34.116 17.493l0.017 0c9.503-0.099 18.243-3.289 25.281-8.611l-0.107 0.078zM367.787 439.467c2.56-48.64 23.893-69.973 73.813-72.96 22.39-1.5 39.983-20.029 39.983-42.667 0-23.614-19.143-42.757-42.757-42.757-0.976 0-1.944 0.033-2.903 0.097l0.13-0.007c-0.643-0.010-1.403-0.015-2.163-0.015-83.417 0-151.040 67.623-151.040 151.040 0 1.056 0.011 2.109 0.032 3.159l-0.003-0.157c-0 0.023-0 0.050-0 0.077 0 22.664 17.67 41.2 39.985 42.584l0.121 0.006h2.56c21.581-0.034 39.403-16.085 42.216-36.9l0.024-0.22z","M653.653 142.507l23.040 23.040c17.413-8.812 37.909-14.128 59.609-14.505l0.124-0.002c0.141-0.001 0.309-0.001 0.476-0.001 37.538 0 71.492 15.34 95.937 40.094l0.014 0.014c24.433 24.661 39.529 58.608 39.529 96.081 0 21.873-5.143 42.544-14.286 60.871l0.357-0.791 23.040 23.040c8.52 9.060 13.756 21.294 13.756 34.751 0 1.134-0.037 2.259-0.11 3.374l0.008-0.152c25.695-33.264 41.185-75.551 41.185-121.455 0-110.28-89.4-199.68-199.68-199.68-45.691 0-87.797 15.346-121.446 41.165l0.475-0.35c0.562-0.022 1.222-0.034 1.885-0.034 14.020 0 26.745 5.543 36.105 14.556l-0.016-0.016z","M370.773 881.493l-23.040-23.467c-17.777 9.192-38.803 14.581-61.088 14.581-74.698 0-135.253-60.555-135.253-135.253 0-22.285 5.39-43.311 14.936-61.846l-0.355 0.758-23.040-23.040c-9.247-8.869-14.994-21.326-14.994-35.125 0-0.852 0.022-1.698 0.065-2.539l-0.005 0.118c-27.855 34.004-44.736 77.932-44.736 125.803 0 110.045 89.209 199.253 199.253 199.253 47.871 0 91.799-16.882 126.156-45.017l-0.353 0.28c-0.489 0.017-1.063 0.026-1.639 0.026-13.961 0-26.628-5.542-35.921-14.546l0.014 0.013z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["mask"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6177,"id":214,"name":"mask","prevSize":32,"code":60679,"codes":[60679,60680,60681]},"setIdx":0,"setId":0,"iconIdx":358},{"icon":{"paths":["M306.773 85.333h410.453c122.298 0 221.44 99.142 221.44 221.44v410.453c0 122.298-99.142 221.44-221.44 221.44h-410.453c-122.298 0-221.44-99.142-221.44-221.44v-410.453c0-122.298 99.142-221.44 221.44-221.44z","M113.92 436.907c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-85.333c0.726-131.259 107.18-237.413 238.484-237.653l0.023-0h81.92c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-81.92c-96.377 0-174.507 78.129-174.507 174.507v0 85.333c-0.476 17.302-14.616 31.147-31.989 31.147-0.004 0-0.008-0-0.012-0l0.001 0z","M408.32 942.080h-87.893c-131.626-0.242-238.264-106.881-238.507-238.484l-0-0.023v-85.333c0-17.673 14.327-32 32-32s32 14.327 32 32v0 85.333c0 96.377 78.129 174.507 174.507 174.507v0h87.893c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M703.573 942.080h-81.92c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h81.92c96.377-0 174.507-78.129 174.507-174.507v0-91.307c0-17.673 14.327-32 32-32s32 14.327 32 32v0 91.307c-0.242 131.626-106.881 238.264-238.484 238.507l-0.023 0z","M910.080 430.507c-17.673 0-32-14.327-32-32v0-78.080c-0-96.377-78.129-174.507-174.507-174.507h-87.893c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h87.893c131.626 0.242 238.264 106.881 238.507 238.484l0 0.023v78.080c0.002 0.128 0.003 0.279 0.003 0.43 0 17.437-14.136 31.573-31.573 31.573-0.151 0-0.302-0.001-0.452-0.003l0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["maximize"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6178,"id":213,"name":"maximize","prevSize":32,"code":60682,"codes":[60682,60683,60684,60685,60686]},"setIdx":0,"setId":0,"iconIdx":359},{"icon":{"paths":["M582.827 522.667l-47.36-24.747c-3.638-2.006-7.975-3.186-12.587-3.186s-8.949 1.18-12.724 3.255l0.137-0.069-46.933 24.747c-3.691 1.985-8.077 3.152-12.735 3.152-15.081 0-27.307-12.226-27.307-27.307 0-1.565 0.132-3.099 0.385-4.592l-0.023 0.161 8.96-52.48c0.409-1.812 0.643-3.894 0.643-6.030 0-6.978-2.5-13.372-6.653-18.335l0.037 0.045-37.973-37.12c-5.068-4.962-8.211-11.873-8.211-19.519 0-13.612 9.959-24.897 22.989-26.967l0.155-0.020 52.907-7.68c9.068-1.304 16.574-6.974 20.41-14.775l0.070-0.158 23.467-47.787c4.542-9.143 13.817-15.316 24.533-15.316s19.991 6.173 24.462 15.158l0.071 0.159 23.467 47.787c3.964 7.911 11.441 13.555 20.328 14.914l0.152 0.019 52.907 7.68c13.185 2.090 23.144 13.376 23.144 26.988 0 7.646-3.142 14.558-8.206 19.514l-0.005 0.005-37.973 37.12c-5.015 4.953-8.121 11.83-8.121 19.431 0 1.728 0.161 3.419 0.468 5.058l-0.026-0.169 8.96 52.48c0.405 1.762 0.637 3.786 0.637 5.864 0 15.081-12.226 27.307-27.307 27.307-5.644 0-10.888-1.712-15.241-4.646l0.097 0.062z","M819.2 391.68c0 163.535-132.571 296.107-296.107 296.107s-296.107-132.571-296.107-296.107c0-163.535 132.571-296.107 296.107-296.107s296.107 132.571 296.107 296.107z","M930.56 719.36l-158.293-168.107c-53.41 82.555-144.989 136.44-249.16 136.533l-7.694 0 209.92 224c7.737 7.818 18.469 12.659 30.331 12.659 20.493 0 37.611-14.447 41.726-33.712l0.050-0.28 13.227-59.307c3.586-17.928 18.024-31.645 36.045-34.109l0.222-0.025 60.16-7.253c19.753-3.996 34.416-21.216 34.416-41.861 0-10.991-4.156-21.012-10.983-28.576l0.033 0.038z","M266.24 539.307l-172.8 186.027c-6.62 7.481-10.663 17.377-10.663 28.217 0 21.304 15.614 38.961 36.022 42.152l0.24 0.031 60.16 7.253c18.243 2.489 32.681 16.205 36.221 33.861l0.046 0.273 10.667 58.88c4.684 18.862 21.469 32.621 41.467 32.621 12.235 0 23.267-5.15 31.047-13.399l0.020-0.021 213.333-227.84c-104.745-4.449-195.077-62.198-245-146.664l-0.76-1.389z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["medal-star"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6179,"id":212,"name":"medal-star","prevSize":32,"code":60687,"codes":[60687,60688,60689,60690]},"setIdx":0,"setId":0,"iconIdx":360},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M764.587 369.92h-505.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h505.173c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M764.587 540.587h-505.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h505.173c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M764.587 713.387h-505.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h505.173c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["menu"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6180,"id":211,"name":"menu","prevSize":32,"code":60691,"codes":[60691,60692,60693,60694]},"setIdx":0,"setId":0,"iconIdx":361},{"icon":{"paths":["M717.653 938.667h-589.653c-23.564 0-42.667-19.103-42.667-42.667v0-589.653c0-122.062 98.951-221.013 221.013-221.013v0h411.307c122.062 0 221.013 98.951 221.013 221.013v0 411.307c0 122.062-98.951 221.013-221.013 221.013v0z","M512 690.773c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-293.547c0-17.673 14.327-32 32-32s32 14.327 32 32v0 293.547c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M658.773 544h-293.547c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h293.547c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["message-add"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6181,"id":210,"name":"message-add","prevSize":32,"code":60695,"codes":[60695,60696,60697]},"setIdx":0,"setId":0,"iconIdx":362},{"icon":{"paths":["M717.653 938.667h-589.653c-23.564 0-42.667-19.103-42.667-42.667v0-589.653c0-122.062 98.951-221.013 221.013-221.013v0h411.307c122.062 0 221.013 98.951 221.013 221.013v0 411.307c0 122.062-98.951 221.013-221.013 221.013v0z","M479.147 330.24l31.573-42.667c14.586-20.043 37.967-32.922 64.355-32.922 18.44 0 35.411 6.289 48.886 16.84l-0.174-0.131 71.253 55.040c19.306 15.769 31.533 39.575 31.533 66.236 0 18.519-5.899 35.66-15.921 49.647l0.175-0.257-31.573 42.667c-9.719 2.059-20.886 3.238-32.329 3.238-38.397 0-73.693-13.278-101.547-35.492l0.329 0.253c-37.533-28.874-62.572-72.392-66.522-121.854l-0.038-0.599zM510.293 500.907c-34.961-27.36-61.76-63.642-77.124-105.448l-0.529-1.645-119.467 160.853c-8.897 12.479-14.3 27.989-14.506 44.75l-0 0.050v107.52c-0.028 0.688-0.044 1.496-0.044 2.307 0 33.461 27.126 60.587 60.587 60.587 5.321 0 10.482-0.686 15.399-1.974l-0.422 0.094 100.693-30.72c15.781-4.766 28.948-14.203 38.261-26.685l0.139-0.195 119.040-161.28c-46.031-4.601-87.251-22.187-120.777-48.993l0.457 0.353z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["message-edit"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6182,"id":209,"name":"message-edit","prevSize":32,"code":60698,"codes":[60698,60699]},"setIdx":0,"setId":0,"iconIdx":363},{"icon":{"paths":["M717.653 938.667h-589.653c-23.564 0-42.667-19.103-42.667-42.667v0-589.653c0-122.062 98.951-221.013 221.013-221.013v0h411.307c122.062 0 221.013 98.951 221.013 221.013v0 411.307c0 122.062-98.951 221.013-221.013 221.013v0z","M658.773 544h-293.547c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h293.547c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["message-minus"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6183,"id":208,"name":"message-minus","prevSize":32,"code":60700,"codes":[60700,60701]},"setIdx":0,"setId":0,"iconIdx":364},{"icon":{"paths":["M938.667 195.84c0 62.209-50.431 112.64-112.64 112.64s-112.64-50.431-112.64-112.64c0-62.209 50.431-112.64 112.64-112.64s112.64 50.431 112.64 112.64z","M826.027 369.493c-95.809-0.242-173.411-77.845-173.653-173.63l-0-0.023c0.128-30.085 8.021-58.299 21.776-82.778l-0.443 0.858h-384c-0.253-0.001-0.553-0.002-0.853-0.002-109.809 0-198.827 89.018-198.827 198.827 0 0.001 0 0.001 0 0.002l0 0v303.36c-0 109.809 89.018 198.827 198.827 198.827v0h64.853c18.95 0.065 35.704 9.409 45.964 23.723l0.116 0.171 45.653 64.853c11.952 16.982 31.47 27.941 53.547 27.941s41.594-10.959 53.409-27.734l0.138-0.207 44.8-64.853c10.376-14.484 27.13-23.828 46.070-23.893l0.010-0h64.853c109.809 0 198.827-89.018 198.827-198.827v-267.947c-23.376 13.177-51.271 21.051-80.982 21.333l-0.084 0.001z","M375.893 482.133c0 22.386-18.147 40.533-40.533 40.533s-40.533-18.147-40.533-40.533c0-22.386 18.147-40.533 40.533-40.533s40.533 18.147 40.533 40.533z","M539.307 482.133c0 22.386-18.147 40.533-40.533 40.533s-40.533-18.147-40.533-40.533c0-22.386 18.147-40.533 40.533-40.533s40.533 18.147 40.533 40.533z","M703.147 482.133c0 22.386-18.147 40.533-40.533 40.533s-40.533-18.147-40.533-40.533c0-22.386 18.147-40.533 40.533-40.533s40.533 18.147 40.533 40.533z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["message-notif"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6184,"id":207,"name":"message-notif","prevSize":32,"code":60702,"codes":[60702,60703,60704,60705,60706]},"setIdx":0,"setId":0,"iconIdx":365},{"icon":{"paths":["M741.547 85.333h-459.093c-0-0-0-0-0-0-108.716 0-196.877 88.011-197.119 196.67l-0 0.023v331.093c-0 0.127-0 0.277-0 0.427 0 108.866 88.254 197.12 197.12 197.12 0 0 0-0 0.001-0l73.813 0c16.134 0.15 30.508 7.558 40.035 19.11l0.072 0.090 72.96 90.027c9.62 11.87 24.198 19.395 40.533 19.395s30.914-7.525 40.457-19.297l0.076-0.097 68.267-87.893c9.689-12.513 24.714-20.491 41.603-20.491 0.374 0 0.747 0.004 1.119 0.012l-0.055-0.001h80.213c0.001 0 0.003 0 0.004 0 108.866 0 197.12-88.254 197.12-197.12 0-0.45-0.002-0.9-0.005-1.349l0 0.069v-331.093c-0.243-108.683-88.403-196.693-197.12-196.693-0 0-0 0-0 0l-0 0z","M341.333 573.867c-0.132 0.002-0.288 0.003-0.444 0.003-8.562 0-16.283-3.603-21.728-9.375l-0.014-0.015-85.333-85.333c-5.804-5.921-9.387-14.038-9.387-22.993 0-0.017 0-0.033 0-0.050l-0 0.003c0.058-9.037 3.804-17.188 9.806-23.033l0.007-0.007 85.333-81.92c5.887-8.010 15.273-13.151 25.859-13.151 17.673 0 32 14.327 32 32 0 11.451-6.015 21.498-15.058 27.152l-0.134 0.078-60.16 60.587 62.293 61.013c6.048 5.83 9.804 14.002 9.804 23.051 0 17.673-14.327 32-32 32-0.297 0-0.593-0.004-0.888-0.012l0.044 0.001z","M682.667 573.867c-0.122 0.002-0.265 0.003-0.409 0.003-17.673 0-32-14.327-32-32 0-9.045 3.753-17.213 9.786-23.033l0.010-0.009 62.293-61.013-62.293-59.307c-9.178-5.733-15.193-15.779-15.193-27.231 0-17.673 14.327-32 32-32 10.586 0 19.972 5.141 25.797 13.062l0.062 0.089 85.333 81.92c6.010 5.852 9.755 14.003 9.813 23.029l0 0.011c0 0.014 0 0.031 0 0.047 0 8.954-3.582 17.072-9.392 22.998l0.005-0.005-85.333 85.333c-5.331 5.021-12.534 8.107-20.458 8.107-0.008 0-0.016-0-0.023-0l0.001 0z","M474.027 584.107c-0.028 0-0.062 0-0.096 0-4.441 0-8.662-0.942-12.473-2.638l0.196 0.078c-11.749-4.913-19.854-16.312-19.854-29.605 0-4.731 1.026-9.221 2.869-13.262l-0.082 0.2 79.787-191.573c4.475-12.629 16.316-21.513 30.233-21.513 17.673 0 32 14.327 32 32 0 5.196-1.239 10.104-3.437 14.442l0.084-0.183-79.787 192.427c-5.046 11.535-16.298 19.479-29.421 19.626l-0.019 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["message-programming"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6185,"id":206,"name":"message-programming","prevSize":32,"code":60707,"codes":[60707,60708,60709,60710]},"setIdx":0,"setId":0,"iconIdx":366},{"icon":{"paths":["M746.24 96.853h-469.333c-105.907 0.485-191.573 86.451-191.573 192.425 0 0.001 0 0.001 0 0.002l-0-0v290.987c0 106.274 86.152 192.427 192.427 192.427v0 0c11.546 0 20.907 9.36 20.907 20.907v92.587c1.534 22.309 20.008 39.825 42.572 39.825 8.419 0 16.269-2.438 22.881-6.648l-0.173 0.103 190.72-139.093c6.782-4.786 15.213-7.658 24.314-7.68l0.006-0h165.973c0.38 0.003 0.83 0.004 1.28 0.004 106.274 0 192.427-86.152 192.427-192.427 0-0.002-0-0.003-0-0.005l0 0v-290.987c0-106.274-86.152-192.427-192.427-192.427v-0z","M512 524.373c-17.673 0-32-14.327-32-32v0-11.947c-0.020-0.773-0.032-1.683-0.032-2.596 0-37.462 19.39-70.395 48.681-89.312l0.418-0.253c10.242-5.794 17.047-16.607 17.067-29.011l0-0.003c0-18.851-15.282-34.133-34.133-34.133s-34.133 15.282-34.133 34.133l0-0c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c0.338-53.941 44.144-97.537 98.132-97.537 54.198 0 98.133 43.936 98.133 98.133 0 35.957-19.339 67.398-48.184 84.488l-0.455 0.249c-10.689 7.849-17.55 20.369-17.55 34.491 0 0.775 0.021 1.545 0.061 2.309l-0.005-0.107v11.947c-0.476 17.302-14.616 31.147-31.989 31.147-0.004 0-0.008-0-0.012-0l0.001 0z","M544 586.24c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["message-question"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6186,"id":205,"name":"message-question","prevSize":32,"code":60711,"codes":[60711,60712,60713]},"setIdx":0,"setId":0,"iconIdx":367},{"icon":{"paths":["M731.307 85.333h-438.613c-0-0-0-0-0-0-114.522 0-207.36 92.838-207.36 207.36 0 0.15 0 0.3 0 0.45l-0-0.023v316.16c-0 114.522 92.838 207.36 207.36 207.36h67.84c0.054-0 0.117-0 0.181-0 19.702 0 37.093 9.892 47.479 24.979l0.126 0.194 47.787 67.413c12.508 17.674 32.87 29.071 55.893 29.071s43.385-11.398 55.75-28.858l0.143-0.213 47.787-67.413c10.512-15.282 27.904-25.174 47.606-25.174 0.064 0 0.127 0 0.191 0l-0.010-0h67.84c114.522 0 207.36-92.838 207.36-207.36l0-0v-316.16c0-0.127 0-0.277 0-0.427 0-114.522-92.838-207.36-207.36-207.36-0 0-0 0-0 0l-0 0z","M715.093 410.88h-406.187c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h406.187c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M647.253 624.213h-270.507c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h270.507c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["message-text-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6187,"id":204,"name":"message-text-2","prevSize":32,"code":60714,"codes":[60714,60715,60716]},"setIdx":0,"setId":0,"iconIdx":368},{"icon":{"paths":["M717.653 938.667h-589.653c-23.564 0-42.667-19.103-42.667-42.667v0-589.653c0-122.062 98.951-221.013 221.013-221.013v0h411.307c122.062 0 221.013 98.951 221.013 221.013v0 411.307c0 122.062-98.951 221.013-221.013 221.013v0z","M715.093 437.333h-406.187c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h406.187c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M579.84 650.667h-270.933c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h270.933c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["message-text"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6188,"id":203,"name":"message-text","prevSize":32,"code":60717,"codes":[60717,60718,60719]},"setIdx":0,"setId":0,"iconIdx":369},{"icon":{"paths":["M770.133 85.333h-351.573c-91.9 0-166.4 74.5-166.4 166.4v0 4.267h353.28c91.9 0 166.4 74.5 166.4 166.4v0 249.173c0.254 0.001 0.555 0.002 0.856 0.002 91.665 0 165.973-74.309 165.973-165.973 0-0.301-0.001-0.602-0.002-0.902l0 0.046v-253.867c-0.72-91.588-75.133-165.555-166.822-165.555-0.602 0-1.203 0.003-1.803 0.010l0.091-0.001z","M605.44 256h-349.44c-91.803 0.242-166.158 74.597-166.4 166.377l-0 0.023v253.867c0.724 91.436 74.895 165.308 166.377 165.547l0.023 0h52.053c0.177-0.002 0.387-0.004 0.597-0.004 15.66 0 29.478 7.885 37.702 19.901l0.101 0.156 37.547 54.187c9.999 14.209 26.329 23.379 44.8 23.379s34.801-9.17 44.684-23.206l0.116-0.173 38.4-54.187c8.325-12.172 22.143-20.057 37.803-20.057 0.21 0 0.42 0.001 0.629 0.004l-0.032-0h54.187c91.9 0 166.4-74.5 166.4-166.4v-253.867c-0.482-91.235-74.312-165.065-165.501-165.546l-0.046-0z","M320.853 553.813c0 22.15-17.956 40.107-40.107 40.107s-40.107-17.956-40.107-40.107c0-22.15 17.956-40.107 40.107-40.107s40.107 17.956 40.107 40.107z","M470.187 553.813c0 22.15-17.956 40.107-40.107 40.107s-40.107-17.956-40.107-40.107c0-22.15 17.956-40.107 40.107-40.107s40.107 17.956 40.107 40.107z","M619.093 553.813c0 22.15-17.956 40.107-40.107 40.107s-40.107-17.956-40.107-40.107c0-22.15 17.956-40.107 40.107-40.107s40.107 17.956 40.107 40.107z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["messages"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6189,"id":202,"name":"messages","prevSize":32,"code":60720,"codes":[60720,60721,60722,60723,60724]},"setIdx":0,"setId":0,"iconIdx":370},{"icon":{"paths":["M570.453 157.013l308.053-38.4c2.052-0.28 4.424-0.44 6.833-0.44 29.16 0 52.854 23.401 53.326 52.449l0.001 0.044v245.333c0 29.455-23.878 53.333-53.333 53.333v0h-308.48c-29.455 0-53.333-23.878-53.333-53.333v0-206.080c0.022-27.182 20.375-49.604 46.673-52.88l0.261-0.026z","M438.187 416v-181.76c0-0.004 0-0.008 0-0.012 0-29.455-23.878-53.333-53.333-53.333-2.407 0-4.776 0.159-7.099 0.468l0.272-0.030-245.76 32c-26.13 3.241-46.251 24.982-46.932 51.558l-0.001 0.068v151.040c0 29.455 23.878 53.333 53.333 53.333v0h245.333c0.254 0.004 0.553 0.007 0.853 0.007 29.455 0 53.333-23.878 53.333-53.333 0-0.002-0-0.005-0-0.007l0 0z","M523.52 608v205.653c-0.001 0.114-0.001 0.25-0.001 0.385 0 27.2 20.362 49.644 46.674 52.922l0.26 0.026 308.053 38.4c2.052 0.28 4.424 0.44 6.833 0.44 29.16 0 52.854-23.401 53.326-52.449l0.001-0.044v-245.333c0-29.455-23.878-53.333-53.333-53.333v0h-308.48c-29.455 0-53.333 23.878-53.333 53.333v0z","M384 554.667h-245.333c-29.455 0-53.333 23.878-53.333 53.333v0 151.040c0.682 26.644 20.803 48.386 46.673 51.6l0.26 0.026 245.76 30.72c2.050 0.279 4.42 0.439 6.827 0.439 29.455 0 53.333-23.878 53.333-53.333 0-0.004-0-0.009-0-0.013l0 0.001v-180.48c0-0.002 0-0.004 0-0.007 0-29.455-23.878-53.333-53.333-53.333-0.3 0-0.6 0.002-0.898 0.007l0.045-0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["microsoft"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6190,"id":201,"name":"microsoft","prevSize":32,"code":60725,"codes":[60725,60726,60727,60728]},"setIdx":0,"setId":0,"iconIdx":371},{"icon":{"paths":["M637.013 221.013v-71.68h-253.013v72.533c0.003 0.355 0.004 0.774 0.004 1.193 0 46.126-18.577 87.913-48.658 118.287l0.013-0.014-42.667 42.667c-22.067 21.833-35.958 51.893-36.691 85.196l-0.002 0.137v345.173c-0.004 0.381-0.007 0.83-0.007 1.28 0 67.865 55.015 122.88 122.88 122.88 0.002 0 0.005-0 0.007-0l266.239 0c67.865 0 122.88-55.015 122.88-122.88h-0v-344.32c0-0.001 0-0.003 0-0.004 0-34.32-14.218-65.32-37.086-87.43l-0.034-0.033-42.667-42.667c-31.583-30.4-51.2-73.037-51.2-120.256 0-0.022 0-0.045 0-0.067l-0 0.004z","M405.333 85.333h213.333c35.346 0 64 28.654 64 64s-28.654 64-64 64h-213.333c-35.346 0-64-28.654-64-64s28.654-64 64-64z","M524.8 654.080c-55.467-80.64-206.933-70.4-268.8-61.867v223.573c-0 67.865 55.015 122.88 122.88 122.88h266.24c67.865 0 122.88-55.015 122.88-122.88h-0v-112.64c-85.333 10.667-200.107 10.667-243.2-49.067z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["milk"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6191,"id":200,"name":"milk","prevSize":32,"code":60729,"codes":[60729,60730,60731]},"setIdx":0,"setId":0,"iconIdx":372},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM768 512c0-23.564-19.103-42.667-42.667-42.667v0h-426.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h426.667c23.564 0 42.667-19.103 42.667-42.667v0z","M728.32 554.667h-432.64c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h432.64c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["minus-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6192,"id":199,"name":"minus-circle","prevSize":32,"code":60732,"codes":[60732,60733]},"setIdx":0,"setId":0,"iconIdx":373},{"icon":{"paths":["M477.44 200.96c16.617 41.328 56.365 69.973 102.805 69.973 0.008 0 0.016-0 0.023-0l127.999 0c0.164-0 0.358-0.001 0.552-0.001 84.524 0 158.135 46.727 196.41 115.758l0.585 1.149c-7.855-123.068-109.486-219.939-233.791-220.16l-0.022-0h-208.213z","M713.387 261.12h-128c-0.007 0-0.014 0-0.022 0-46.439 0-86.188-28.646-102.54-69.231l-0.264-0.743-13.227-35.84c-16.81-41.188-56.455-69.734-102.796-69.973l-0.030-0h-85.333c-0.127-0-0.277-0-0.427-0-107.924 0-195.413 87.49-195.413 195.413 0 0.15 0 0.3 0.001 0.451l-0-0.024v432.213c-0 0.127-0 0.277-0 0.427 0 124.183 100.67 224.853 224.853 224.853 0.15 0 0.3-0 0.45-0l-0.023 0h402.773c0.127 0 0.277 0 0.427 0 124.183 0 224.853-100.67 224.853-224.853 0-0.15-0-0.3-0-0.45l0 0.023v-226.987c0-0.127 0-0.277 0-0.427 0-124.183-100.67-224.853-224.853-224.853-0.15 0-0.3 0-0.45 0l0.023-0zM609.28 602.453v0l-194.56-2.133c-16.731 0-30.293-13.563-30.293-30.293s13.563-30.293 30.293-30.293v0l194.56 2.133c16.731-0 30.293 13.563 30.293 30.293s-13.563 30.293-30.293 30.293v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["minus-folder"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6193,"id":198,"name":"minus-folder","prevSize":32,"code":60734,"codes":[60734,60735]},"setIdx":0,"setId":0,"iconIdx":374},{"icon":{"paths":["M690.773 938.667h-357.547c-136.908-0-247.893-110.986-247.893-247.893l0 0v-357.547c-0-136.908 110.986-247.893 247.893-247.893l0 0h357.547c136.908-0 247.893 110.986 247.893 247.893l0 0v357.547c-0 136.908-110.986 247.893-247.893 247.893l0 0zM768 512c0-23.564-19.103-42.667-42.667-42.667v0h-426.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h426.667c23.564 0 42.667-19.103 42.667-42.667v0z","M728.747 554.667h-433.493c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h433.493c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["minus-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6194,"id":197,"name":"minus-square","prevSize":32,"code":60736,"codes":[60736,60737]},"setIdx":0,"setId":0,"iconIdx":375},{"icon":{"paths":["M258.56 554.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0l512-2.56c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0l-512 2.56z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus"]},"attrs":[{}],"properties":{"order":6195,"id":196,"name":"minus","prevSize":32,"code":60738},"setIdx":0,"setId":0,"iconIdx":376},{"icon":{"paths":["M718.933 85.333h-472.32c-89.228 0.724-161.282 73.225-161.282 162.555 0 0.302 0.001 0.604 0.002 0.905l-0-0.047v298.667c-0.001 0.255-0.002 0.557-0.002 0.858 0 89.33 72.054 161.831 161.214 162.555l0.069 0h189.44v112.213h-125.44c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h344.32c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-125.44v-113.493h189.44c89.043-0.963 160.856-73.371 160.856-162.551 0-0.303-0.001-0.606-0.002-0.909l0 0.047v-298.667c-0.236-89-71.957-161.17-160.762-162.133l-0.091-0.001z","M856.32 405.333h-256c-46.014 1.424-82.773 39.067-82.773 85.295 0 0.014 0 0.027 0 0.041l-0-0.002v362.667c-0 0.011-0 0.025-0 0.038 0 46.228 36.759 83.871 82.643 85.292l0.131 0.003h256c45.826-1.655 82.347-39.203 82.347-85.281 0-0.018-0-0.037-0-0.055l0 0.003v-363.947c-0.676-45.554-36.945-82.418-82.196-84.049l-0.15-0.004zM728.32 867.413c-0.253 0.005-0.552 0.008-0.851 0.008-26.156 0-47.36-21.204-47.36-47.36s21.204-47.36 47.36-47.36c26.156 0 47.36 21.204 47.36 47.36 0 0.147-0.001 0.294-0.002 0.441l0-0.022c0.001 0.127 0.002 0.277 0.002 0.427 0 25.685-20.822 46.507-46.507 46.507-0.001 0-0.001-0-0.002-0l0 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["monitor-mobile"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6196,"id":195,"name":"monitor-mobile","prevSize":32,"code":60739,"codes":[60739,60740]},"setIdx":0,"setId":0,"iconIdx":377},{"icon":{"paths":["M483.84 466.347c-20.722-41.586-32.85-90.583-32.85-142.412 0-43.694 8.619-85.374 24.25-123.434l-0.787 2.166c2.346-5.889 3.707-12.715 3.707-19.857 0-30.398-24.642-55.040-55.040-55.040-7.489 0-14.63 1.496-21.138 4.205l0.364-0.134c-49.421 19.169-91.888 45.734-128.339 78.81l0.339-0.303c-77.872 72.37-126.438 175.361-126.438 289.695 0 162.303 97.865 301.748 237.805 362.544l2.553 0.988c-8.55-32.753-13.522-70.379-13.653-109.146l-0-0.081c-0.012-1.199-0.019-2.617-0.019-4.035 0-109.418 41.477-209.147 109.567-284.325l-0.321 0.36z","M781.227 817.493c31.564-23.584 58.605-50.896 81.167-81.695l0.753-1.078c6.799-9.102 10.886-20.574 10.886-33.002 0-30.633-24.833-55.467-55.467-55.467-1.429 0-2.845 0.054-4.246 0.16l0.186-0.011c-12.796 1.823-27.575 2.863-42.598 2.863-126.625 0-235.979-73.941-287.243-181.001l-0.826-1.916c-67.768 74.817-109.246 174.547-109.246 283.965 0 1.419 0.007 2.836 0.021 4.251l-0.002-0.216c0.131 38.847 5.103 76.474 14.343 112.387l-0.69-3.16c46.178 20.505 100.048 32.444 156.706 32.444 89.054 0 171.219-29.495 237.259-79.25l-1.005 0.725z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["moon"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6197,"id":194,"name":"moon","prevSize":32,"code":60741,"codes":[60741,60742]},"setIdx":0,"setId":0,"iconIdx":378},{"icon":{"paths":["M297.813 85.333h428.373c117.349 0 212.48 95.131 212.48 212.48v428.373c0 117.349-95.131 212.48-212.48 212.48h-428.373c-117.349 0-212.48-95.131-212.48-212.48v-428.373c0-117.349 95.131-212.48 212.48-212.48z","M567.893 384c0 30.869-25.024 55.893-55.893 55.893s-55.893-25.024-55.893-55.893c0-30.869 25.024-55.893 55.893-55.893s55.893 25.024 55.893 55.893z","M410.453 640c0 30.869-25.024 55.893-55.893 55.893s-55.893-25.024-55.893-55.893c0-30.869 25.024-55.893 55.893-55.893s55.893 25.024 55.893 55.893z","M725.333 640c0 30.869-25.024 55.893-55.893 55.893s-55.893-25.024-55.893-55.893c0-30.869 25.024-55.893 55.893-55.893s55.893 25.024 55.893 55.893z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["more-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6198,"id":193,"name":"more-2","prevSize":32,"code":60743,"codes":[60743,60744,60745,60746]},"setIdx":0,"setId":0,"iconIdx":379},{"icon":{"paths":["M642.987 554.667l249.173 78.507c27.782 7.912 47.784 33.066 47.784 62.892 0 28.411-18.15 52.583-43.487 61.554l-0.457 0.141-70.827 25.6c-18.212 6.74-32.279 20.947-38.686 38.804l-0.141 0.45-26.88 73.387c-9.005 26.263-33.484 44.804-62.293 44.804s-53.289-18.541-62.155-44.342l-0.138-0.462-77.653-256c-1.946-6.051-3.068-13.013-3.068-20.237 0-37.703 30.564-68.267 68.267-68.267 7.343 0 14.416 1.159 21.045 3.305l-0.483-0.135z","M896.427 488.107c0 223.859-181.474 405.333-405.333 405.333s-405.333-181.474-405.333-405.333c0-223.859 181.474-405.333 405.333-405.333s405.333 181.474 405.333 405.333z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["mouse-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6199,"id":192,"name":"mouse-circle","prevSize":32,"code":60747,"codes":[60747,60748]},"setIdx":0,"setId":0,"iconIdx":380},{"icon":{"paths":["M290.987 90.453h370.773c108.631 0 196.693 88.063 196.693 196.693v370.773c0 108.631-88.063 196.693-196.693 196.693h-370.773c-108.631 0-196.693-88.063-196.693-196.693v-370.773c0-108.631 88.063-196.693 196.693-196.693z","M660.907 574.72l235.093 74.24c26.856 7.142 46.322 31.239 46.322 59.882 0 27.708-18.215 51.161-43.323 59.040l-0.438 0.119-66.987 24.32c-17.153 6.079-30.383 19.448-36.144 36.282l-0.122 0.411-24.747 66.987c-8.466 24.75-31.525 42.227-58.667 42.227s-50.2-17.478-58.537-41.792l-0.13-0.435-73.387-239.787c-2.063-6.034-3.254-12.985-3.254-20.215 0-35.582 28.845-64.427 64.427-64.427 7.111 0 13.952 1.152 20.348 3.279l-0.455-0.131z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["mouse-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6200,"id":191,"name":"mouse-square","prevSize":32,"code":60749,"codes":[60749,60750]},"setIdx":0,"setId":0,"iconIdx":381},{"icon":{"paths":["M523.947 213.333h-23.893c-134.787 0-244.053 109.266-244.053 244.053h0v233.813c0.243 134.603 109.416 243.627 244.053 243.627 0 0 0-0 0-0l23.893 0c0 0 0 0 0 0 134.637 0 243.81-109.023 244.053-243.603l0-0.023v-233.813c0-134.787-109.266-244.053-244.053-244.053l-0 0zM544 500.053c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-124.587c0-17.673 14.327-32 32-32s32 14.327 32 32v0z","M500.053 213.333h43.947v-92.16c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 92.16z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["mouse"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6201,"id":190,"name":"mouse","prevSize":32,"code":60751,"codes":[60751,60752]},"setIdx":0,"setId":0,"iconIdx":382},{"icon":{"paths":["M725.333 364.373l-201.813-116.053-180.053-104.107c-13.086-7.731-28.836-12.299-45.653-12.299s-32.568 4.568-46.078 12.531l0.425-0.232-124.16 75.093c-25.761 15.939-42.667 44.038-42.667 76.086 0 0.101 0 0.202 0.001 0.303l-0-0.016v414.293c-0.005 0.338-0.007 0.737-0.007 1.137 0 32.050 16.909 60.152 42.292 75.87l0.382 0.22 121.173 70.4c13.014 7.736 28.693 12.309 45.44 12.309s32.426-4.573 45.856-12.538l-0.416 0.229 183.467-105.813 201.813-115.627z","M682.667 144.213l-170.667 97.707 213.333 122.453v271.787l-426.667-271.787v271.787l201.387 116.48 183.893 105.813c12.942 7.742 28.55 12.32 45.227 12.32s32.284-4.578 45.635-12.546l-0.408 0.226 121.6-71.253c25.765-15.938 42.674-44.040 42.674-76.090 0-0.4-0.003-0.799-0.008-1.197l0.001 0.061v-414.293c0-0.085 0-0.186 0-0.287 0-32.048-16.906-60.147-42.286-75.866l-0.382-0.22-122.88-74.24c-13.161-7.846-29.024-12.484-45.97-12.484-16.343 0-31.679 4.314-44.931 11.866l0.448-0.235z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["nexo"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6202,"id":189,"name":"nexo","prevSize":32,"code":60753,"codes":[60753,60754]},"setIdx":0,"setId":0,"iconIdx":383},{"icon":{"paths":["M493.227 514.987c0.008 94.014 60.829 173.821 145.269 202.228l1.505 0.439c69.108-43.49 114.359-119.358 114.359-205.794 0-83.76-42.492-157.595-107.096-201.125l-0.864-0.548c-89.263 26.846-153.173 108.297-153.173 204.675 0 0.044 0 0.088 0 0.132l-0-0.007z","M434.773 514.987c-0-0.014-0-0.030-0-0.046 0-101.464 55.687-189.921 138.165-236.477l1.355-0.703c-18.655-5.417-40.084-8.533-62.241-8.533-0.018 0-0.037 0-0.055 0l0.003-0c-134.080-0-242.773 108.693-242.773 242.773s108.693 242.773 242.773 242.773v0c19.734-0.098 38.841-2.582 57.11-7.177l-1.643 0.35c-79.922-48.121-132.583-134.378-132.693-232.944l-0-0.016z","M512 200.533c-0.021 0-0.046 0-0.071 0-16.922 0-30.777-13.136-31.923-29.767l-0.006-0.1v-52.48c0-17.673 14.327-32 32-32s32 14.327 32 32v0 52.48c-1.152 16.731-15.006 29.867-31.929 29.867-0.025 0-0.050-0-0.075-0l0.004 0z","M512 938.667c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-51.2c0-17.673 14.327-32 32-32s32 14.327 32 32v0 50.347c0.002 0.128 0.003 0.278 0.003 0.429 0 17.76-14.277 32.185-31.98 32.424l-0.023 0z","M269.227 301.227c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003-35.84-35.84c-8.278-5.953-13.606-15.557-13.606-26.406 0-17.909 14.518-32.427 32.427-32.427 10.849 0 20.453 5.328 26.34 13.509l0.066 0.096 35.413 35.84c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.663 5.733-13.5 9.308-22.172 9.387l-0.015 0z","M790.187 822.613c-8.801-0.197-16.738-3.738-22.624-9.397l0.011 0.011-35.413-35.84c-6.274-5.858-10.185-14.178-10.185-23.412 0-17.673 14.327-32 32-32 9.234 0 17.554 3.911 23.394 10.166l0.017 0.019 35.84 35.413c5.708 5.902 9.225 13.954 9.225 22.827s-3.517 16.924-9.234 22.836l0.009-0.009c-5.976 5.742-14.084 9.305-23.024 9.387l-0.016 0z","M170.667 544h-52.48c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.48c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M905.813 544h-50.347c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h50.347c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M233.813 822.613c-8.956-0.082-17.064-3.644-23.051-9.397l0.011 0.011c-5.708-5.902-9.225-13.954-9.225-22.827s3.517-16.924 9.234-22.836l-0.009 0.009 35.84-35.413c5.858-6.274 14.178-10.185 23.412-10.185 17.673 0 32 14.327 32 32 0 9.234-3.911 17.554-10.166 23.394l-0.019 0.017-35.84 35.84c-5.773 5.556-13.541 9.076-22.127 9.385l-0.059 0.002z","M754.773 301.227c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 35.84-35.84c5.953-8.278 15.557-13.606 26.406-13.606 17.909 0 32.427 14.518 32.427 32.427 0 10.849-5.328 20.453-13.509 26.34l-0.096 0.066-35.84 35.413c-5.704 5.989-13.713 9.736-22.599 9.813l-0.014 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["night-day"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6203,"id":188,"name":"night-day","prevSize":32,"code":60755,"codes":[60755,60756,60757,60758,60759,60760,60761,60762,60763,60764]},"setIdx":0,"setId":0,"iconIdx":384},{"icon":{"paths":["M302.703 522.748l63.771-278.663c25.337-110.717 135.631-179.931 246.348-154.594l167.614 38.358c110.717 25.337 179.931 135.631 154.594 246.348l-63.771 278.663c-25.337 110.717-135.631 179.931-246.348 154.594l-167.614-38.358c-110.717-25.337-179.931-135.631-154.594-246.348z","M624.64 807.253l-167.253-39.253c-92.336-21.71-160.022-103.384-160.022-200.867 0-16.219 1.874-32.001 5.417-47.141l-0.275 1.394 64-278.613c4.541-16.094 10.505-30.117 17.981-43.163l-0.487 0.923-151.040 42.667c-85.669 25.285-147.125 103.241-147.125 195.55 0 20.17 2.934 39.654 8.399 58.049l-0.367-1.44 73.813 256c24.966 86.422 103.367 148.553 196.28 148.553 19.279 0 37.933-2.675 55.611-7.674l-1.437 0.347 176.213-50.773c23.304-7.526 43.552-18.12 61.569-31.542l-0.556 0.396c-11.084-0.332-21.658-1.559-31.932-3.616l1.212 0.202z","M742.4 444.16c-1.218 0.19-2.623 0.298-4.053 0.298s-2.835-0.108-4.207-0.317l0.154 0.019-200.533-51.2c-14.039-3.645-24.238-16.205-24.238-31.147 0-17.746 14.386-32.131 32.131-32.131 2.804 0 5.524 0.359 8.117 1.034l-0.223-0.049 200.96 51.627c13.441 3.994 23.076 16.237 23.076 30.73 0 17.386-13.865 31.533-31.14 31.989l-0.042 0.001z","M618.24 589.653h-8.107l-118.613-30.72c-14.039-3.645-24.238-16.205-24.238-31.147 0-17.746 14.386-32.131 32.131-32.131 2.804 0 5.524 0.359 8.117 1.034l-0.223-0.049 119.040 31.147c13.919 3.674 24.015 16.152 24.015 30.988 0 2.784-0.356 5.486-1.024 8.061l0.049-0.222c-4.288 13.398-16.59 22.945-31.136 23.040l-0.011 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["note-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6204,"id":187,"name":"note-2","prevSize":32,"code":60765,"codes":[60765,60766,60767,60768]},"setIdx":0,"setId":0,"iconIdx":385},{"icon":{"paths":["M302.635 542.487l63.771-278.663c25.337-110.717 135.631-179.931 246.348-154.594l167.614 38.358c110.717 25.337 179.931 135.631 154.594 246.348l-63.771 278.663c-25.337 110.717-135.631 179.931-246.348 154.594l-167.614-38.358c-110.717-25.337-179.931-135.631-154.594-246.348z","M624.64 826.88l-167.253-37.973c-92.336-21.71-160.022-103.384-160.022-200.867 0-16.219 1.874-32.001 5.417-47.141l-0.275 1.394 64-278.613c3.916-16.205 9.332-30.421 16.283-43.708l-0.496 1.042-151.040 42.667c-85.669 25.285-147.125 103.241-147.125 195.55 0 20.17 2.934 39.654 8.399 58.049l-0.367-1.44 73.813 256c25.082 86.244 103.396 148.206 196.182 148.206 19.938 0 39.207-2.861 57.42-8.195l-1.442 0.362 176.213-50.773c23.309-7.199 43.587-17.675 61.538-31.095l-0.524 0.375c-11.018-0.249-21.582-1.635-31.749-4.046l1.029 0.206z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["note"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6205,"id":186,"name":"note","prevSize":32,"code":60769,"codes":[60769,60770]},"setIdx":0,"setId":0,"iconIdx":386},{"icon":{"paths":["M735.573 398.933c0-0.001 0-0.002 0-0.003 0-17.759-14.276-32.183-31.977-32.424l-0.023-0h-384c-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427h384c17.724-0.241 32-14.665 32-32.424 0-0.001-0-0.002-0-0.003l0 0z","M501.333 601.6c0-0.001 0-0.002 0-0.003 0-17.759-14.276-32.183-31.977-32.424l-0.023-0h-147.2c-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427h147.2c17.724-0.241 32-14.665 32-32.424 0-0.001-0-0.002-0-0.003l0 0z","M356.267 231.68c-17.673 0-32-14.327-32-32v0-78.080c0-17.673 14.327-32 32-32s32 14.327 32 32v0 78.080c0 17.673-14.327 32-32 32v0z","M667.733 231.68c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-78.080c-0-17.673 14.327-32 32-32s32 14.327 32 32v-0 78.080c0 17.673-14.327 32-32 32h0z","M630.613 938.667v-165.973c-0.163-2.31-0.256-5.005-0.256-7.723 0-63.22 50.366-114.677 113.161-116.434l0.162-0.004h162.56z","M566.613 938.667v-165.973c-0.094-2.175-0.147-4.727-0.147-7.291 0-98.613 78.903-178.798 177.021-180.866l0.193-0.003h160v-194.133c0-0.127 0-0.277 0-0.427 0-128.425-104.109-232.533-232.533-232.533-0 0-0 0-0 0l-318.293-0c-0-0-0-0-0-0-128.425 0-232.533 104.109-232.533 232.533 0 0.15 0 0.3 0 0.45l-0-0.023v315.307c-0 0.127-0 0.277-0 0.427 0 128.425 104.109 232.533 232.533 232.533 0 0 0-0 0-0l213.333 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["notepad-bookmark"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6206,"id":185,"name":"notepad-bookmark","prevSize":32,"code":60771,"codes":[60771,60772,60773,60774,60775,60776]},"setIdx":0,"setId":0,"iconIdx":387},{"icon":{"paths":["M332.8 119.467h343.893c139.971 0 253.44 113.469 253.44 253.44v346.027c0 139.971-113.469 253.44-253.44 253.44h-343.893c-139.971 0-253.44-113.469-253.44-253.44v-346.027c0-139.971 113.469-253.44 253.44-253.44z","M621.227 150.187l42.667-55.893c19.084-25.814 49.413-42.369 83.609-42.369 23.88 0 45.874 8.073 63.403 21.639l-0.238-0.177 92.16 71.68c25.51 20.18 41.731 51.134 41.731 85.877 0 24.363-7.976 46.862-21.46 65.030l0.208-0.294-42.667 55.893c-12.21 2.481-26.244 3.901-40.611 3.901-50.509 0-96.918-17.553-133.46-46.892l0.417 0.324c-48.309-37.626-80.525-93.958-85.708-157.929l-0.052-0.791zM663.893 372.053c-45.863-35.613-80.949-83.072-100.869-137.816l-0.678-2.131-157.013 210.347c-12.879 16.020-20.84 36.475-21.331 58.771l-0.002 0.109v138.667c-0.020 0.66-0.031 1.436-0.031 2.214 0 43.594 35.34 78.933 78.933 78.933 7.762 0 15.263-1.121 22.349-3.209l-0.558 0.141 131.413-40.107c20.41-6.376 37.387-18.796 49.304-35.141l0.189-0.272 155.733-210.347c-60.556-4.204-115.284-26.169-159.819-60.661l0.673 0.501z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["notepad-edit"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6207,"id":184,"name":"notepad-edit","prevSize":32,"code":60777,"codes":[60777,60778]},"setIdx":0,"setId":0,"iconIdx":388},{"icon":{"paths":["M740.693 449.707c0.002-0.127 0.003-0.277 0.003-0.427 0-18.144-14.709-32.853-32.853-32.853-0.001 0-0.002 0-0.003 0l-389.973-0c-18.38-0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28v0h389.973c0.001 0 0.002 0 0.003 0 18.144 0 32.853-14.709 32.853-32.853 0-0.15-0.001-0.3-0.003-0.449l0 0.023z","M603.307 657.92c0.002-0.128 0.003-0.278 0.003-0.429 0-17.995-14.468-32.611-32.407-32.85l-0.023-0h-250.88c-18.38 0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28h250.88c17.961-0.239 32.429-14.855 32.429-32.851 0-0.151-0.001-0.302-0.003-0.452l0 0.023z","M353.28 157.44h317.867c128.66 0 232.96 104.3 232.96 232.96v315.307c0 128.66-104.3 232.96-232.96 232.96h-317.867c-128.66 0-232.96-104.3-232.96-232.96v-315.307c0-128.66 104.3-232.96 232.96-232.96z","M356.267 231.68c-17.673 0-32-14.327-32-32v0-78.080c0-17.673 14.327-32 32-32s32 14.327 32 32v0 78.080c0 17.673-14.327 32-32 32v0z","M667.733 231.68c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-78.080c-0-17.673 14.327-32 32-32s32 14.327 32 32v-0 78.080c0 17.673-14.327 32-32 32h0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["notepad"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6208,"id":183,"name":"notepad","prevSize":32,"code":60779,"codes":[60779,60780,60781,60782,60783]},"setIdx":0,"setId":0,"iconIdx":389},{"icon":{"paths":["M938.667 213.333c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M810.667 405.333c-105.941-0.242-191.758-86.059-192-191.977l-0-0.023c0.463-31.239 8.299-60.544 21.838-86.392l-0.505 1.059h-341.333c-117.821 0-213.333 95.513-213.333 213.333v0 384c0 117.821 95.513 213.333 213.333 213.333v0h384c117.821 0 213.333-95.513 213.333-213.333v0-341.333c-24.789 13.034-54.095 20.87-85.187 21.332l-0.147 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["notification-2"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6209,"id":182,"name":"notification-2","prevSize":32,"code":60784,"codes":[60784,60785]},"setIdx":0,"setId":0,"iconIdx":390},{"icon":{"paths":["M512 485.973c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-133.547c0-17.673 14.327-32 32-32s32 14.327 32 32v0 133.547c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M813.227 582.827c-35.853-53.174-57.23-118.687-57.23-189.192 0-2.187 0.021-4.37 0.062-6.548l-0.005 0.327v-7.68c-0.397-131.895-107.409-238.663-239.359-238.663-34.077 0-66.491 7.121-95.835 19.956l1.54-0.6c-84.124 35.446-142.105 117.214-142.105 212.525 0 1.184 0.009 2.367 0.027 3.547l-0.002-0.178v2.987c0.005 0.724 0.009 1.58 0.009 2.437 0 76.939-25.142 148.006-67.658 205.433l0.663-0.937-29.013 39.253c-10.927 14.631-17.496 33.073-17.496 53.050 0 0.25 0.001 0.499 0.003 0.749l-0-0.038c0.945 48.778 40.359 88.043 89.106 88.746l0.067 0.001h512c49.956 0 90.453-40.497 90.453-90.453h-0v-2.56c0.001-0.154 0.002-0.336 0.002-0.518 0-18.409-5.578-35.515-15.137-49.72l0.202 0.319z","M429.653 810.667c10.176 36.567 43.18 62.955 82.347 62.955s72.171-26.387 82.204-62.354l0.143-0.6z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["notification-bing"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6210,"id":181,"name":"notification-bing","prevSize":32,"code":60786,"codes":[60786,60787,60788]},"setIdx":0,"setId":0,"iconIdx":391},{"icon":{"paths":["M938.667 213.333c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M810.667 405.333c-105.941-0.242-191.758-86.059-192-191.977l-0-0.023c-0.001-0.213-0.001-0.466-0.001-0.719 0-38.712 11.797-74.668 31.993-104.469l-0.418 0.655c-41.309-14.66-88.953-23.131-138.576-23.131-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667 0-49.623-8.471-97.267-24.046-141.565l0.916 2.989c-29.147 19.777-65.103 31.575-103.815 31.575-0.253 0-0.505-0.001-0.758-0.002l0.039 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["notification-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6211,"id":180,"name":"notification-circle","prevSize":32,"code":60789,"codes":[60789,60790]},"setIdx":0,"setId":0,"iconIdx":392},{"icon":{"paths":["M938.667 213.333c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M810.667 405.333c-105.941-0.242-191.758-86.059-192-191.977l-0-0.023c0.463-31.239 8.299-60.544 21.838-86.392l-0.505 1.059h-341.333c-117.821 0-213.333 95.513-213.333 213.333v0 384c0 117.821 95.513 213.333 213.333 213.333v0h384c117.821 0 213.333-95.513 213.333-213.333v0-341.333c-24.789 13.034-54.095 20.87-85.187 21.332l-0.147 0.002z","M445.44 544c-8.043-3.026-17.34-4.778-27.045-4.778-19.121 0-36.654 6.799-50.313 18.111l0.132-0.106c-13.336-10.949-30.576-17.586-49.366-17.586-7.177 0-14.128 0.968-20.729 2.781l0.548-0.128c-33.18 10.658-56.772 41.244-56.772 77.341 0 0.71 0.009 1.418 0.027 2.124l-0.002-0.104c3.39 62.076 39.060 115.11 90.394 142.908l0.913 0.452c10.888 6.949 24.162 11.075 38.4 11.075s27.512-4.127 38.692-11.249l-0.292 0.174c51.99-28.63 86.867-82.661 87.891-144.925l0.002-0.141c0.025-0.737 0.039-1.604 0.039-2.473 0-33.888-21.707-62.705-51.975-73.307l-0.544-0.166z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["notification-favorite"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6212,"id":179,"name":"notification-favorite","prevSize":32,"code":60791,"codes":[60791,60792,60793]},"setIdx":0,"setId":0,"iconIdx":393},{"icon":{"paths":["M814.080 640c-35.851-53.728-57.209-119.786-57.209-190.832 0-1.761 0.013-3.519 0.039-5.274l-0.003 0.265v-7.253c-0.154-132.078-107.26-239.089-239.36-239.089-34.077 0-66.49 7.121-95.834 19.956l1.54-0.601c-84.124 35.446-142.105 117.214-142.105 212.525 0 1.184 0.009 2.367 0.027 3.547l-0.002-0.178v2.987c0.002 0.382 0.002 0.835 0.002 1.288 0 77.441-25.471 148.933-68.492 206.555l0.65-0.91-28.16 39.68c-10.93 14.822-17.493 33.447-17.493 53.606 0 0.054 0 0.108 0 0.163l-0-0.008c0 49.956 40.497 90.453 90.453 90.453h509.867c49.956 0 90.453-40.497 90.453-90.453h-0v-2.56c0.001-0.152 0.001-0.332 0.001-0.512 0-18.893-5.738-36.447-15.568-51.012l0.206 0.324z","M430.507 867.413c10.176 36.567 43.18 62.955 82.347 62.955s72.171-26.387 82.204-62.354l0.143-0.6z","M544.427 200.107s0 0 0 0v-82.347c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 80.64c-0.091 0.513-0.143 1.104-0.143 1.707s0.052 1.194 0.152 1.768l-0.009-0.061c11.517-1.967 24.783-3.092 38.312-3.092 9.049 0 17.981 0.503 26.769 1.483l-1.081-0.098z","M144.64 469.333c-0.086 0.001-0.188 0.001-0.289 0.001-15.933 0-29.11-11.802-31.265-27.141l-0.019-0.167c-2.463-14.052-3.871-30.232-3.871-46.741 0-91.075 42.846-172.142 109.48-224.145l0.631-0.474c5.135-3.546 11.494-5.664 18.347-5.664 17.974 0 32.544 14.571 32.544 32.544 0 11.121-5.578 20.939-14.088 26.809l-0.109 0.071c-50.645 40.843-82.771 102.891-82.771 172.441 0 12.785 1.086 25.316 3.169 37.507l-0.185-1.308c0.206 1.356 0.324 2.921 0.324 4.514 0 16.048-11.972 29.299-27.473 31.309l-0.158 0.017z","M879.36 469.333h-4.267c-15.659-2.027-27.631-15.279-27.631-31.326 0-1.592 0.118-3.157 0.345-4.687l-0.021 0.173c1.872-10.836 2.942-23.316 2.942-36.046 0-69.718-32.095-131.94-82.316-172.696l-0.412-0.324c-8.62-5.941-14.198-15.759-14.198-26.88 0-17.974 14.571-32.544 32.544-32.544 6.853 0 13.211 2.118 18.456 5.736l-0.109-0.071c67.121 52.481 109.862 133.462 109.862 224.426 0 15.969-1.317 31.631-3.849 46.882l0.227-1.656c-1.366 16.301-14.933 29.014-31.469 29.014-0.037 0-0.073-0-0.11-0l0.006 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["notification-on"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6213,"id":178,"name":"notification-on","prevSize":32,"code":60794,"codes":[60794,60795,60796,60797,60798]},"setIdx":0,"setId":0,"iconIdx":394},{"icon":{"paths":["M938.667 213.333c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M810.667 405.333c-105.941-0.242-191.758-86.059-192-191.977l-0-0.023c0.463-31.239 8.299-60.544 21.838-86.392l-0.505 1.059h-341.333c-117.821 0-213.333 95.513-213.333 213.333v0 384c0 117.821 95.513 213.333 213.333 213.333v0h384c117.821 0 213.333-95.513 213.333-213.333v0-341.333c-24.789 13.034-54.095 20.87-85.187 21.332l-0.147 0.002z","M490.667 597.333h-200.107c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h200.107c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M661.333 768h-370.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h370.773c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["notification-status"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6214,"id":177,"name":"notification-status","prevSize":32,"code":60799,"codes":[60799,60800,60801,60802]},"setIdx":0,"setId":0,"iconIdx":395},{"icon":{"paths":["M814.080 640c-35.851-53.728-57.209-119.786-57.209-190.832 0-1.761 0.013-3.519 0.039-5.274l-0.003 0.265v-7.68c-0.397-131.895-107.409-238.663-239.359-238.663-34.077 0-66.491 7.121-95.835 19.956l1.54-0.6c-84.112 35.315-142.109 117.005-142.109 212.241 0 1.284 0.011 2.566 0.032 3.845l-0.002-0.193v2.56c0.002 0.466 0.004 1.017 0.004 1.568 0 77.349-25.474 148.749-68.489 206.267l0.645-0.902-28.16 40.107c-10.929 14.727-17.494 33.261-17.494 53.328 0 0.152 0 0.304 0.001 0.456l-0-0.023c0 49.956 40.497 90.453 90.453 90.453h509.867c49.956 0 90.453-40.497 90.453-90.453h-0v-2.56c0.003-0.267 0.004-0.582 0.004-0.897 0-18.766-5.742-36.192-15.565-50.615l0.201 0.312z","M430.507 866.987c6.018 40.553 40.59 71.314 82.347 71.314s76.329-30.762 82.291-70.859l0.056-0.455z","M544.427 199.68v-82.347c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 81.067c-0.12 0.448-0.19 0.963-0.19 1.493s0.069 1.045 0.199 1.535l-0.009-0.042c11.677-1.865 25.139-2.931 38.851-2.931 8.856 0 17.609 0.445 26.236 1.312l-1.087-0.089z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["notification"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6215,"id":176,"name":"notification","prevSize":32,"code":60803,"codes":[60803,60804,60805]},"setIdx":0,"setId":0,"iconIdx":396},{"icon":{"paths":["M576 181.333c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M576 373.76c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M394.667 277.333c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M757.333 277.76c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M757.333 459.093c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M938.667 373.333c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M576 544c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M394.667 459.093c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M213.333 373.333c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z","M373.333 629.76c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M554.667 714.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M736 629.76c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M917.333 544c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M192 544c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667z","M906.667 672c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z","M725.333 768.427c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z","M544 864c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z","M362.667 768c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z","M181.333 672c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["ocean"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6216,"id":175,"name":"ocean","prevSize":32,"code":60806,"codes":[60806,60807,60808,60809,60810,60811,60812,60813,60814,60815,60816,60817,60818,60819,60820,60821,60822,60823,60824]},"setIdx":0,"setId":0,"iconIdx":397},{"icon":{"paths":["M853.333 668.16h-682.667c-47.128 0-85.333-38.205-85.333-85.333v0-191.147c-0-59.382 48.138-107.52 107.52-107.52v0h640c58.643 0.961 105.813 48.725 105.813 107.506 0 0.005-0 0.010-0 0.014l0-0.001v191.147c0 47.128-38.205 85.333-85.333 85.333v0z","M853.333 668.16h-682.667c-15.719-0.029-30.434-4.303-43.066-11.738l0.4 0.218v139.52c0 47.128 38.205 85.333 85.333 85.333v0h597.333c47.128 0 85.333-38.205 85.333-85.333v0-139.52c-12.233 7.217-26.947 11.491-42.658 11.52l-0.008 0z","M586.667 616.107h-120.747c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h120.747c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M652.8 316.16c-17.673 0-32-14.327-32-32v0-28.16c0-23.564-19.103-42.667-42.667-42.667v0h-102.4c-23.564 0-42.667 19.103-42.667 42.667v0 26.88c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-26.88c0-59.382 48.138-107.52 107.52-107.52v0h101.12c59.198 0.242 107.093 48.288 107.093 107.519 0 0-0 0.001-0 0.001l0-0v26.88c0.016 0.382 0.026 0.83 0.026 1.28 0 17.673-14.327 32-32 32-0.009 0-0.018-0-0.027-0l0.001 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["office-bag"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6217,"id":174,"name":"office-bag","prevSize":32,"code":60825,"codes":[60825,60826,60827,60828]},"setIdx":0,"setId":0,"iconIdx":398},{"icon":{"paths":["M686.507 337.067h-353.707c-80.34 0.016-147.025 58.464-159.869 135.158l-0.131 0.949-44.8 279.467c-1.382 7.953-2.173 17.111-2.173 26.453 0 89.544 72.59 162.133 162.133 162.133 0.014 0 0.028-0 0.041-0l449.278 0c89.201-0.452 161.337-72.867 161.337-162.131 0-10.257-0.952-20.291-2.774-30.020l0.156 1.005-49.493-280.747c-14.94-75.827-80.878-132.234-159.996-132.267l-0.004-0z","M692.48 410.453c-17.673 0-32-14.327-32-32v0-151.040c0-0 0-0.001 0-0.001 0-42.737-34.524-77.41-77.204-77.652l-0.023-0h-151.467c-42.703 0.242-77.227 34.915-77.227 77.652 0 0 0 0.001 0 0.001l-0-0v151.040c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-151.040c-0-0.127-0.001-0.277-0.001-0.427 0-78.083 63.178-141.41 141.204-141.653l0.023-0h151.467c0.127-0 0.277-0.001 0.427-0.001 78.233 0 141.653 63.42 141.653 141.653 0 0.15-0 0.301-0.001 0.451l0-0.023v151.040c0.002 0.135 0.003 0.294 0.003 0.453 0 17.437-14.136 31.573-31.573 31.573-0.451 0-0.9-0.009-1.347-0.028l0.064 0.002z","M899.413 786.347c0.063-1.754 0.099-3.814 0.099-5.882 0-10.737-0.967-21.249-2.82-31.452l0.161 1.068-4.693-24.747h-422.827c-15.34 1.87-27.106 14.814-27.106 30.507s11.766 28.637 26.958 30.492l0.148 0.015h430.080z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["package"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6218,"id":173,"name":"package","prevSize":32,"code":60829,"codes":[60829,60830,60831]},"setIdx":0,"setId":0,"iconIdx":399},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M698.88 335.36c14.374 0 26.027 11.653 26.027 26.027s-11.653 26.027-26.027 26.027c-14.374 0-26.027-11.653-26.027-26.027v0c0-14.374 11.653-26.027 26.027-26.027v0z","M527.787 335.36c0 14.374-11.653 26.027-26.027 26.027s-26.027-11.653-26.027-26.027c0-14.374 11.653-26.027 26.027-26.027s26.027 11.653 26.027 26.027z","M318.72 405.76c0.127-0.002 0.277-0.003 0.427-0.003 14.374 0 26.027 11.653 26.027 26.027 0 0.001-0 0.002-0 0.004l0-0c-1.721 13.096-12.812 23.101-26.24 23.101s-24.519-10.005-26.226-22.966l-0.014-0.134c0-14.374 11.653-26.027 26.027-26.027h0z","M232.107 571.307c0 14.374-11.653 26.027-26.027 26.027s-26.027-11.653-26.027-26.027c0-14.374 11.653-26.027 26.027-26.027s26.027 11.653 26.027 26.027z","M507.307 703.147c-14.374 0-26.027-11.653-26.027-26.027s11.653-26.027 26.027-26.027c14.374 0 26.027 11.653 26.027 26.027v0c0 14.374-11.653 26.027-26.027 26.027v0z","M632.32 529.92c0 14.374-11.653 26.027-26.027 26.027s-26.027-11.653-26.027-26.027c0-14.374 11.653-26.027 26.027-26.027s26.027 11.653 26.027 26.027z","M721.067 469.333c-253.867-46.933-280.747 160.853-283.307 222.72-0.468 9.287-8.111 16.64-17.473 16.64-0.007 0-0.015-0-0.022-0l-157.866 0c-0.142 0.004-0.31 0.007-0.478 0.007-9.661 0-17.493-7.832-17.493-17.493 0-1.987 0.331-3.896 0.941-5.676l-0.037 0.123c23.040-68.693 101.547-268.8 256-298.667 18.882-4.514 40.561-7.102 62.844-7.102 65.356 0 125.512 22.265 173.296 59.623l-0.621-0.467c3.831 3.23 6.248 8.033 6.248 13.4 0 9.661-7.832 17.493-17.493 17.493-1.615 0-3.179-0.219-4.664-0.629l0.123 0.029z","M843.947 490.24c0 14.374-11.653 26.027-26.027 26.027s-26.027-11.653-26.027-26.027c0-14.374 11.653-26.027 26.027-26.027s26.027 11.653 26.027 26.027z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["pails"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6219,"id":172,"name":"pails","prevSize":32,"code":60832,"codes":[60832,60833,60834,60835,60836,60837,60838,60839,60840]},"setIdx":0,"setId":0,"iconIdx":400},{"icon":{"paths":["M631.18 139.783l236.23 236.23c51.32 51.32 51.32 134.526-0 185.847l-321.611 321.611c-51.32 51.32-134.526 51.32-185.847 0l-236.23-236.23c-51.32-51.32-51.32-134.526-0-185.847l321.611-321.611c51.32-51.32 134.526-51.32 185.847 0z","M162.987 512l334.080-334.080c10.899-10.963 25.991-17.748 42.667-17.748s31.767 6.785 42.664 17.745l228.269 229.976c11.767 11.146 19.089 26.882 19.089 44.328 0 6.098-0.895 11.988-2.56 17.544l0.111-0.432c-4.119 13.242-16.264 22.69-30.616 22.69-1.997 0-3.952-0.183-5.848-0.533l0.197 0.030c-79.54-14.469-171.082-22.743-264.556-22.743-129.005 0-254.33 15.759-374.154 45.458l10.657-2.235z","M938.667 832.427c0 52.784-42.79 95.573-95.573 95.573s-95.573-42.79-95.573-95.573h0c6.189-53.294 28.073-100.577 60.843-138.113l-0.256 0.3c7.793-11.267 20.646-18.554 35.2-18.554s27.407 7.287 35.107 18.413l0.093 0.142c32.83 37.022 54.685 84.453 60.073 136.767l0.087 1.046z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["paintbucket"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6220,"id":171,"name":"paintbucket","prevSize":32,"code":60841,"codes":[60841,60842,60843]},"setIdx":0,"setId":0,"iconIdx":401},{"icon":{"paths":["M426.667 933.973c-0.358 0.002-0.781 0.004-1.204 0.004-34.628 0-67.265-8.523-95.928-23.585l1.132 0.542c-54.301-28.314-94.281-77.786-109.337-137.192l-0.317-1.474c-4.966-18.845-7.818-40.481-7.818-62.782 0-44.016 11.108-85.437 30.675-121.613l-0.67 1.355 154.453-298.667c5.457-10.435 16.204-17.434 28.587-17.434 17.758 0 32.154 14.396 32.154 32.154 0 5.376-1.319 10.443-3.652 14.897l0.084-0.177-156.16 298.667c-14.282 26.37-22.677 57.731-22.677 91.052 0 16.45 2.046 32.422 5.897 47.675l-0.287-1.341c10.715 42.709 38.729 77.425 75.976 96.888l0.824 0.392c20.711 9.632 44.959 15.251 70.52 15.251 68.865 0 128.203-40.787 155.176-99.522l0.437-1.062 165.973-318.72c5.343-10.295 15.922-17.206 28.115-17.206 5.317 0 10.327 1.314 14.723 3.636l-0.172-0.083c10.224 5.479 17.060 16.091 17.060 28.299 0 5.239-1.259 10.184-3.491 14.549l0.084-0.181-166.827 317.867c-40.334 79.625-120.063 134.081-212.85 137.798l-0.483 0.015z","M634.027 554.667c-5.479-0.009-10.624-1.431-15.092-3.921l0.158 0.081c-10.157-5.61-16.922-16.255-16.922-28.479 0-5.163 1.207-10.044 3.353-14.376l-0.085 0.189 93.44-180.053c9.996-18.234 15.875-39.953 15.875-63.045 0-11.399-1.433-22.464-4.128-33.023l0.199 0.921c-7.044-29.12-25.699-52.937-50.668-66.717l-0.532-0.269c-13.482-7.029-29.444-11.152-46.368-11.152-14.057 0-27.451 2.844-39.635 7.989l0.67-0.251c-31.181 12.308-56.061 34.976-70.901 63.676l-0.353 0.75-91.307 176.64c-5.484 10.264-16.127 17.13-28.373 17.13-17.708 0-32.063-14.355-32.063-32.063 0-5.462 1.366-10.604 3.774-15.105l-0.084 0.172 92.16-177.493c23.022-43.813 60.587-77.369 106.151-94.69l1.369-0.457c18.014-7.39 38.923-11.679 60.833-11.679 77.152 0 141.881 53.189 159.519 124.899l0.234 1.127c3.756 14.479 5.912 31.102 5.912 48.228 0 34.013-8.504 66.039-23.502 94.069l0.523-1.071-93.867 179.627c-5.117 10.942-16.033 18.387-28.688 18.387-0.565 0-1.126-0.015-1.683-0.044l0.078 0.003z","M482.987 735.573c-0.032 0-0.070 0-0.108 0-18.85 0-36.594-4.738-52.105-13.088l0.586 0.288c-37.751-21.883-62.736-62.098-62.736-108.15 0-21.993 5.699-42.655 15.7-60.59l-0.324 0.633 119.893-230.4c5.644-9.599 15.921-15.941 27.679-15.941 17.673 0 32 14.327 32 32 0 4.854-1.081 9.455-3.015 13.577l0.083-0.196-119.893 230.827c-5.574 8.951-8.878 19.817-8.878 31.455 0 21.328 11.099 40.064 27.836 50.747l0.242 0.145c6.246 3.022 13.583 4.788 21.333 4.788s15.088-1.766 21.632-4.918l-0.299 0.13c16.074-6.562 28.874-18.395 36.509-33.309l0.185-0.397 80.64-154.88c5.644-9.599 15.921-15.941 27.679-15.941 17.673 0 32 14.327 32 32 0 4.854-1.081 9.455-3.015 13.577l0.083-0.196-79.36 155.733c-15.204 29.328-40.090 51.865-70.345 63.687l-0.909 0.313c-12.525 5.131-27.062 8.109-42.294 8.109-0.281 0-0.562-0.001-0.842-0.003l0.043 0z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paper-clip"]},"attrs":[{},{},{}],"properties":{"order":6221,"id":170,"name":"paper-clip","prevSize":32,"code":60844},"setIdx":0,"setId":0,"iconIdx":402},{"icon":{"paths":["M440.32 160.853h262.4v197.12c0 43.358-35.149 78.507-78.507 78.507v0h-105.387c-43.358 0-78.507-35.149-78.507-78.507v0-197.12z","M330.667 469.333c-105.567 0-191.147 85.579-191.147 191.147v0c0.291 31.285 8.313 60.632 22.243 86.307l-0.483-0.974-64 53.76c-6.876 5.904-11.204 14.608-11.204 24.322 0 17.562 14.147 31.82 31.667 31.998l0.017 0c1.999 0.463 4.294 0.729 6.651 0.729 5.043 0 9.803-1.215 14.002-3.369l-0.173 0.081 61.013-51.2c33.589 30.154 78.23 48.593 127.177 48.593 105.332 0 190.72-85.388 190.72-190.72 0-103.842-82.99-188.301-186.263-190.669l-0.221-0.004zM455.253 660.48c-0 69.043-55.971 125.013-125.013 125.013s-125.013-55.97-125.013-125.013c0-69.043 55.97-125.013 125.013-125.013 0.15 0 0.3 0 0.45 0.001l-0.023-0c68.864 0.236 124.598 56.116 124.598 125.013 0 0.6-0.004 1.2-0.013 1.798l0.001-0.091z","M776.96 160.853h-411.307c-89.072 0-161.28 72.208-161.28 161.28h-0v247.467c28.89-39.25 74.912-64.435 126.817-64.435 86.716 0 157.013 70.297 157.013 157.013s-70.297 157.013-157.013 157.013c-41.895 0-79.957-16.408-108.112-43.149l0.068 0.064c27.501 51.149 80.642 85.335 141.767 85.335 0.26 0 0.52-0.001 0.78-0.002l-0.040 0h411.307c0.129 0 0.282 0.001 0.436 0.001 88.473 0 160.307-71.238 161.27-159.483l0.001-0.091v-379.733c0-0 0-0 0-0.001 0-89.072-72.208-161.28-161.28-161.28-0.15 0-0.3 0-0.45 0.001l0.023-0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["parcel-tracking"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6222,"id":169,"name":"parcel-tracking","prevSize":32,"code":60845,"codes":[60845,60846,60847]},"setIdx":0,"setId":0,"iconIdx":403},{"icon":{"paths":["M238.933 418.56l202.24 116.48c25.765 15.938 42.674 44.040 42.674 76.090 0 0.4-0.003 0.799-0.008 1.197l0.001-0.061v233.387c-0.311 49.013-40.115 88.625-89.172 88.625-16.33 0-31.636-4.39-44.8-12.054l0.425 0.228-200.533-116.48c-25.772-16.037-42.671-44.209-42.671-76.327 0-0.316 0.002-0.632 0.005-0.947l-0 0.048v-233.387c0.842-48.601 40.438-87.677 89.161-87.677 15.647 0 30.353 4.030 43.137 11.109l-0.458-0.232z","M918.613 495.36v233.387c0.003 0.267 0.005 0.583 0.005 0.899 0 32.118-16.9 60.29-42.292 76.107l-0.379 0.22-202.24 116.48c-12.739 7.435-28.045 11.825-44.375 11.825-49.056 0-88.861-39.612-89.172-88.596l-0-0.030v-233.387c-0.005-0.338-0.007-0.737-0.007-1.137 0-32.050 16.909-60.152 42.292-75.87l202.622-116.7c12.739-7.435 28.045-11.825 44.375-11.825 49.056 0 88.861 39.612 89.172 88.596l0 0.030z","M265.387 372.48l203.947 116.48c12.739 7.435 28.044 11.824 44.373 11.824s31.634-4.389 44.798-12.053l-0.425 0.229 200.96-117.76c26.659-15.643 44.275-44.164 44.275-76.8s-17.616-61.157-43.858-76.574l-0.417-0.226-204.373-116.48c-12.708-7.557-28.019-12.023-44.373-12.023s-31.665 4.467-44.78 12.247l0.406-0.223-200.96 117.76c-26.539 15.671-44.062 44.127-44.062 76.676 0 32.723 17.71 61.309 44.068 76.696l0.421 0.227z","M674.56 558.933c0.241 17.489 14.474 31.573 31.997 31.573 0.001 0 0.002-0 0.003-0l-0 0c17.489-0.241 31.573-14.474 31.573-31.997 0-0.001-0-0.002-0-0.003l0 0v-112.64l-63.573 36.693z","M737.28 383.573l-376.747-220.16-64 37.12 377.173 219.733v0.427l63.573-36.693v-0.427z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["parcel"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6223,"id":168,"name":"parcel","prevSize":32,"code":60848,"codes":[60848,60849,60850,60851,60852]},"setIdx":0,"setId":0,"iconIdx":404},{"icon":{"paths":["M271.36 512c0 24.271-19.676 43.947-43.947 43.947s-43.947-19.676-43.947-43.947c0-24.271 19.676-43.947 43.947-43.947s43.947 19.676 43.947 43.947z","M424.533 512c0 24.271-19.676 43.947-43.947 43.947s-43.947-19.676-43.947-43.947c0-24.271 19.676-43.947 43.947-43.947s43.947 19.676 43.947 43.947z","M621.227 936.107c-17.673 0-32-14.327-32-32v0-784.213c0-17.673 14.327-32 32-32s32 14.327 32 32v0 784.213c0.002 0.128 0.003 0.279 0.003 0.43 0 17.437-14.136 31.573-31.573 31.573-0.151 0-0.302-0.001-0.452-0.003l0.023 0z","M534.613 161.707h-278.613c-94.257 0-170.667 76.41-170.667 170.667v0 355.84c0 94.257 76.41 170.667 170.667 170.667v0h276.907z","M768 161.707h-170.667v700.587h170.667c94.257 0 170.667-76.41 170.667-170.667v0-357.547c0.005-0.507 0.009-1.107 0.009-1.707 0-94.257-76.41-170.667-170.667-170.667-0.003 0-0.006 0-0.009 0l0-0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["password-check"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6224,"id":167,"name":"password-check","prevSize":32,"code":60853,"codes":[60853,60854,60855,60856,60857]},"setIdx":0,"setId":0,"iconIdx":405},{"icon":{"paths":["M305.067 853.333h-89.173c-21.126-0.107-38.211-17.258-38.211-38.4 0-1.503 0.086-2.987 0.254-4.445l-0.017 0.178 101.547-619.093c10.691-60.346 62.476-105.673 124.953-106.24l0.060-0h197.12c0.127-0 0.277-0 0.427-0 115.079 0 208.397 93.168 208.64 208.19l0 0.023v5.12c-1.686 141.745-116.985 256.001-258.969 256.001-0.306 0-0.612-0.001-0.918-0.002l0.047 0h-128c-19.694 0.423-35.866 14.978-38.798 33.909l-0.029 0.225-37.973 230.4c-4.047 19.338-20.766 33.72-40.916 34.133l-0.044 0.001z","M477.013 938.667h-135.68c-19.323 0-34.987-15.664-34.987-34.987 0-2.722 0.311-5.372 0.899-7.916l-0.046 0.236 94.72-516.267c12.227-51.747 58.022-89.663 112.674-89.663 1.338 0 2.672 0.023 3.999 0.068l-0.193-0.005h183.040c2.871-0.159 6.231-0.25 9.612-0.25 99.055 0 179.944 77.776 184.93 175.591l0.018 0.445v3.413c-6.403 122.108-106.973 218.694-230.102 218.694-3.706 0-7.392-0.088-11.056-0.261l0.518 0.019h-51.2c-0.107-0.001-0.234-0.001-0.361-0.001-27.789 0-50.878 20.127-55.484 46.598l-0.048 0.336-31.147 170.667c-4.313 18.705-20.494 32.559-40.030 33.278l-0.077 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["paypal"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6225,"id":166,"name":"paypal","prevSize":32,"code":60858,"codes":[60858,60859]},"setIdx":0,"setId":0,"iconIdx":406},{"icon":{"paths":["M913.067 356.267l-91.733 92.16-245.76-245.76 92.16-91.733c15.544-16.11 37.324-26.114 61.44-26.114s45.896 10.004 61.416 26.089l0.024 0.025 122.453 122.453c16.11 15.544 26.114 37.324 26.114 61.44s-10.004 45.896-26.089 61.416l-0.025 0.024zM157.44 935.68l264.533-87.893-245.76-245.76-87.893 264.533c-1.789 5.17-2.822 11.129-2.822 17.329 0 30.162 24.451 54.613 54.613 54.613 6.2 0 12.158-1.033 17.713-2.937l-0.384 0.114z","M237.653 908.8l-80.213 26.88c-5.17 1.789-11.129 2.822-17.329 2.822-30.162 0-54.613-24.451-54.613-54.613 0-6.2 1.033-12.158 2.937-17.713l-0.114 0.384 26.88-80.213zM176.213 602.027l245.76 245.76 399.36-399.36-245.76-245.76z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["pencil"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6226,"id":165,"name":"pencil","prevSize":32,"code":60860,"codes":[60860,60861]},"setIdx":0,"setId":0,"iconIdx":407},{"icon":{"paths":["M621.227 520.533c0 78.94-63.993 142.933-142.933 142.933s-142.933-63.993-142.933-142.933c0-78.94 63.993-142.933 142.933-142.933s142.933 63.993 142.933 142.933z","M655.787 826.453c0 61.974-79.466 112.213-177.493 112.213s-177.493-50.24-177.493-112.213c0-61.974 79.466-112.213 177.493-112.213s177.493 50.24 177.493 112.213z","M824.747 205.653c0 66.451-53.869 120.32-120.32 120.32s-120.32-53.869-120.32-120.32c0-66.451 53.869-120.32 120.32-120.32s120.32 53.869 120.32 120.32z","M371.2 205.653c0 66.451-53.869 120.32-120.32 120.32s-120.32-53.869-120.32-120.32c0-66.451 53.869-120.32 120.32-120.32s120.32 53.869 120.32 120.32z","M697.6 419.413c-13.653 0-26.88 0-40.107 2.133 16.749 28.593 26.639 62.964 26.639 99.645 0 47.583-16.643 91.279-44.427 125.583l0.294-0.375c17.351 3.602 37.373 5.767 57.864 5.972l0.163 0.001c108.373 0 195.84-52.48 195.84-116.48s-87.893-116.48-196.267-116.48z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["people"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6227,"id":164,"name":"people","prevSize":32,"code":60862,"codes":[60862,60863,60864,60865,60866]},"setIdx":0,"setId":0,"iconIdx":408},{"icon":{"paths":["M384 672c-0.203 0.005-0.443 0.008-0.683 0.008-8.622 0-16.402-3.602-21.919-9.383l-0.011-0.012c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 256-256c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-256 256c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0zM384 341.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM640 597.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0z","M336.243 86.061l347.302-1.879c140.44-0.76 254.906 112.473 255.665 252.914l1.865 344.742c0.76 140.44-112.473 254.906-252.914 255.665l-347.302 1.879c-140.44 0.76-254.906-112.473-255.665-252.914l-1.865-344.742c-0.76-140.44 112.473-254.906 252.914-255.665z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["percentage"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6228,"id":163,"name":"percentage","prevSize":32,"code":60867,"codes":[60867,60868]},"setIdx":0,"setId":0,"iconIdx":409},{"icon":{"paths":["M354.133 85.333h315.733c65.273-0 118.187 52.914 118.187 118.187v616.96c0 65.273-52.914 118.187-118.187 118.187h-315.733c-65.273 0-118.187-52.914-118.187-118.187v-616.96c0-65.273 52.914-118.187 118.187-118.187z","M429.653 235.52c0 26.392-21.395 47.787-47.787 47.787s-47.787-21.395-47.787-47.787c0-26.392 21.395-47.787 47.787-47.787s47.787 21.395 47.787 47.787z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["phone"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6229,"id":162,"name":"phone","prevSize":32,"code":60869,"codes":[60869,60870]},"setIdx":0,"setId":0,"iconIdx":410},{"icon":{"paths":["M336.243 86.061l347.302-1.879c140.44-0.76 254.906 112.473 255.665 252.914l1.865 344.742c0.76 140.44-112.473 254.906-252.914 255.665l-347.302 1.879c-140.44 0.76-254.906-112.473-255.665-252.914l-1.865-344.742c-0.76-140.44 112.473-254.906 252.914-255.665z","M403.627 310.187h-85.333c-17.013 0.462-30.685 14.134-31.146 31.103l-0.001 0.043v341.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0-140.373h52.48c64.094 0 116.053-51.959 116.053-116.053s-51.959-116.053-116.053-116.053v0zM403.627 478.293h-52.48v-104.107h52.48c28.748-0 52.053 23.305 52.053 52.053s-23.305 52.053-52.053 52.053h0zM738.133 628.907c0 47.128-38.205 85.333-85.333 85.333v0h-52.053c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.48c11.782 0 21.333-9.551 21.333-21.333s-9.551-21.333-21.333-21.333v0c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333v0h52.907c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-52.907c-11.782 0-21.333 9.551-21.333 21.333s9.551 21.333 21.333 21.333v0c46.944 0.242 84.907 38.354 84.907 85.332 0 0-0 0.001-0 0.001l0-0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["photoshop"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6230,"id":161,"name":"photoshop","prevSize":32,"code":60871,"codes":[60871,60872]},"setIdx":0,"setId":0,"iconIdx":411},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M332.373 433.067c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333v0c0 47.128-38.205 85.333-85.333 85.333h0zM938.667 656.64l-97.707-98.56c-24.182-24.668-57.85-39.959-95.089-39.959-39.497 0-74.977 17.201-99.356 44.521l-0.115 0.131-85.333 92.587c-17.659 19.73-43.203 32.088-71.633 32.088-25.058 0-47.873-9.6-64.969-25.324l0.069 0.062c-23.625-21.529-55.181-34.715-89.816-34.715-31.867 0-61.128 11.162-84.085 29.789l0.248-0.195-149.333 120.32c37.237 95.131 128.207 161.28 234.628 161.28 0.164 0 0.327-0 0.491-0l-0.025 0h350.293c139.538-2.4 251.733-116.080 251.733-255.964 0-0.013-0-0.025-0-0.038l0 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["picture"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6231,"id":160,"name":"picture","prevSize":32,"code":60873,"codes":[60873,60874]},"setIdx":0,"setId":0,"iconIdx":412},{"icon":{"paths":["M813.653 813.653c-77.132 76.741-183.48 124.179-300.908 124.179-235.641 0-426.667-191.025-426.667-426.667 0-102.445 36.105-196.456 96.284-270.005l-0.602 0.759 511.147 511.573c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-512-512c72.789-59.577 166.801-95.682 269.246-95.682 235.641 0 426.667 191.025 426.667 426.667 0 117.428-47.439 223.777-124.197 300.926l0.018-0.018z"],"attrs":[{"opacity":0.3}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pill"]},"attrs":[{"opacity":0.3}],"properties":{"order":6232,"id":159,"name":"pill","prevSize":32,"code":60875},"setIdx":0,"setId":0,"iconIdx":413},{"icon":{"paths":["M200.107 917.333l-50.773 17.067c-4.588 1.646-9.882 2.598-15.398 2.598-25.921 0-46.933-21.013-46.933-46.933 0-5.516 0.952-10.81 2.699-15.726l-0.102 0.328 17.067-50.773c10.209-30.645 26.756-56.822 48.198-78.065l0.015-0.015 151.893-151.893 123.307 123.307-151.893 151.893c-21.258 21.457-47.435 38.004-76.701 47.813l-1.379 0.401z","M924.16 346.88l-247.040-247.040c-7.789-8.188-18.767-13.28-30.933-13.28s-23.144 5.092-30.917 13.262l-0.017 0.018-30.72 30.72c-8.188 7.789-13.28 18.767-13.28 30.933s5.092 23.144 13.262 30.917l0.018 0.017 30.72 30.72-134.827 134.827c-33.022-16.067-71.839-25.46-112.849-25.46-54.664 0-105.431 16.688-147.482 45.248l0.918-0.588c-20.859 14.232-34.374 37.888-34.374 64.701 0 21.341 8.561 40.681 22.437 54.775l-0.010-0.010 318.293 318.293c14.084 13.866 33.425 22.427 54.765 22.427 26.813 0 50.469-13.515 64.528-34.105l0.173-0.269c27.972-41.134 44.66-91.9 44.66-146.564 0-41.010-9.393-79.827-26.144-114.415l0.684 1.566 134.827-134.827 30.72 30.72c7.789 8.188 18.767 13.28 30.933 13.28s23.144-5.092 30.917-13.262l0.017-0.018 30.72-30.72c8.188-7.789 13.28-18.767 13.28-30.933s-5.092-23.144-13.262-30.917l-0.018-0.017z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["pin"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6233,"id":158,"name":"pin","prevSize":32,"code":60876,"codes":[60876,60877]},"setIdx":0,"setId":0,"iconIdx":414},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M725.333 469.333h-170.667v-170.667c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 170.667h-170.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h170.667v170.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-170.667h170.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["plus-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6234,"id":157,"name":"plus-circle","prevSize":32,"code":60878,"codes":[60878,60879]},"setIdx":0,"setId":0,"iconIdx":415},{"icon":{"paths":["M469.333 554.667h-170.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h170.667zM725.333 469.333h-170.667v85.333h170.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z","M333.227 85.333h357.547c136.908 0 247.893 110.986 247.893 247.893v357.547c0 136.908-110.986 247.893-247.893 247.893h-357.547c-136.908 0-247.893-110.986-247.893-247.893v-357.547c0-136.908 110.986-247.893 247.893-247.893z","M725.333 469.333h-170.667v-170.667c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 170.667h-170.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h170.667v170.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-170.667h170.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["plus-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6235,"id":156,"name":"plus-square","prevSize":32,"code":60880,"codes":[60880,60881,60882]},"setIdx":0,"setId":0,"iconIdx":416},{"icon":{"paths":["M512 810.667c-23.564 0-42.667-19.103-42.667-42.667v0-512c0-23.564 19.103-42.667 42.667-42.667v0 0c23.564 0 42.667 19.103 42.667 42.667v0 512c0 23.564-19.103 42.667-42.667 42.667v0z","M256 554.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h512c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0h-512z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["plus"]},"attrs":[{},{}],"properties":{"order":6236,"id":155,"name":"plus","prevSize":32,"code":60883},"setIdx":0,"setId":0,"iconIdx":417},{"icon":{"paths":["M481.707 85.333h60.587c30.398 0 55.040 24.642 55.040 55.040v743.253c0 30.398-24.642 55.040-55.040 55.040h-60.587c-30.398 0-55.040-24.642-55.040-55.040v-743.253c0-30.398 24.642-55.040 55.040-55.040z","M825.173 426.667h-217.6c-0.127 0.001-0.278 0.002-0.428 0.002-28.984 0-52.48-23.496-52.48-52.48 0-0.151 0.001-0.301 0.002-0.452l-0 0.023v-150.187c-0.001-0.127-0.002-0.278-0.002-0.428 0-28.984 23.496-52.48 52.48-52.48 0.151 0 0.301 0.001 0.452 0.002l-0.023-0h217.6c17.731 0.526 33.229 9.628 42.548 23.283l0.118 0.184 49.92 75.093c5.605 8.267 8.948 18.463 8.948 29.44s-3.343 21.173-9.066 29.626l0.119-0.186-48.64 75.093c-9.678 14.176-25.728 23.382-43.934 23.467l-0.013 0z","M198.827 682.667h217.6c0.127 0.001 0.278 0.002 0.428 0.002 28.984 0 52.48-23.496 52.48-52.48 0-0.151-0.001-0.301-0.002-0.452l0 0.023v-150.187c0.001-0.127 0.002-0.278 0.002-0.428 0-28.984-23.496-52.48-52.48-52.48-0.151 0-0.301 0.001-0.452 0.002l0.023-0h-217.6c-17.731 0.526-33.229 9.628-42.548 23.283l-0.118 0.184-51.2 75.093c-5.605 8.267-8.948 18.463-8.948 29.44s3.343 21.173 9.066 29.626l-0.119-0.186 49.92 75.093c9.678 14.176 25.728 23.382 43.934 23.467l0.013 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["pointers"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6237,"id":154,"name":"pointers","prevSize":32,"code":60884,"codes":[60884,60885,60886]},"setIdx":0,"setId":0,"iconIdx":418},{"icon":{"paths":["M130.56 283.733l-5.973 217.173c-0.064 1.936-0.101 4.211-0.101 6.496 0 58.040 23.699 110.545 61.949 148.365l0.019 0.019 194.56 194.987c34.758 34.822 82.81 56.364 135.893 56.364s101.135-21.542 135.89-56.362l0.003-0.003 203.52-203.52c34.822-34.758 56.364-82.81 56.364-135.893s-21.542-101.135-56.362-135.89l-0.003-0.003-196.693-196.693c-38.551-38.285-91.668-61.947-150.311-61.947-2.057 0-4.107 0.029-6.15 0.087l0.3-0.007-213.333 7.253c-87.184 2.313-157.26 72.389-159.569 159.356l-0.005 0.217z","M534.613 402.347c0 65.98-53.487 119.467-119.467 119.467s-119.467-53.487-119.467-119.467c0-65.98 53.487-119.467 119.467-119.467s119.467 53.487 119.467 119.467z","M537.6 725.333c-0.119 0.002-0.26 0.003-0.401 0.003-17.673 0-32-14.327-32-32 0-8.831 3.577-16.826 9.361-22.616l-0 0 170.667-170.667c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.887 5.741 9.539 13.751 9.539 22.613s-3.652 16.872-9.532 22.607l-0.007 0.006-168.533 170.667c-5.732 5.827-13.702 9.438-22.515 9.438-0.635 0-1.266-0.019-1.891-0.056l0.086 0.004z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["price-tag"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6238,"id":153,"name":"price-tag","prevSize":32,"code":60887,"codes":[60887,60888,60889]},"setIdx":0,"setId":0,"iconIdx":419},{"icon":{"paths":["M247.467 298.667h529.067c65.98 0 119.467 53.487 119.467 119.467v230.4c0 65.98-53.487 119.467-119.467 119.467h-529.067c-65.98 0-119.467-53.487-119.467-119.467v-230.4c0-65.98 53.487-119.467 119.467-119.467z","M437.333 85.333h149.76c76.4 0.243 138.24 62.233 138.24 138.666 0 0-0 0.001-0 0.001l0-0v74.667h-426.667v-74.667c0-76.583 62.083-138.667 138.667-138.667v0z","M341.333 640h341.333v167.253c0 72.578-58.836 131.413-131.413 131.413h-78.507c-72.578 0-131.413-58.836-131.413-131.413h0v-167.253z","M426.667 501.333h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h128c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M725.333 672h-426.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h426.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["printer"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6239,"id":152,"name":"printer","prevSize":32,"code":60890,"codes":[60890,60891,60892,60893,60894]},"setIdx":0,"setId":0,"iconIdx":420},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M674.133 432.64c0 89.544-72.59 162.133-162.133 162.133s-162.133-72.59-162.133-162.133c0-89.544 72.59-162.133 162.133-162.133s162.133 72.59 162.133 162.133z","M512 938.667c0.144 0 0.314 0 0.484 0 106.058 0 203.023-38.93 277.385-103.28l-0.535 0.453c-41.049-115.851-149.675-197.339-277.333-197.339s-236.284 81.489-276.698 195.287l-0.636 2.052c73.827 63.897 170.792 102.827 276.85 102.827 0.17 0 0.34-0 0.51-0l-0.026 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["profile-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6240,"id":151,"name":"profile-circle","prevSize":32,"code":60895,"codes":[60895,60896,60897]},"setIdx":0,"setId":0,"iconIdx":421},{"icon":{"paths":["M587.52 285.867c0 110.752-90.546 200.533-202.24 200.533s-202.24-89.782-202.24-200.533c0-110.752 90.546-200.533 202.24-200.533s202.24 89.782 202.24 200.533z","M685.227 738.133c0 110.752-134.291 200.533-299.947 200.533s-299.947-89.782-299.947-200.533c0-110.752 134.291-200.533 299.947-200.533s299.947 89.782 299.947 200.533z","M699.307 170.667c-24.66 0.029-47.991 5.693-68.783 15.772l0.943-0.412c12.394 29.261 19.598 63.288 19.598 98.998 0 62.712-22.216 120.234-59.207 165.128l0.356-0.445c28.396 25.928 66.35 41.811 108.014 41.811 88.601 0 160.427-71.825 160.427-160.427s-71.825-160.427-160.427-160.427c-0.324 0-0.647 0.001-0.97 0.003l0.050-0z","M699.307 533.333c-0.087-0-0.191-0-0.294-0-25.123 0-49.628 2.641-73.254 7.662l2.295-0.408c69.909 40.143 117.095 112.951 120.73 197.051l0.017 0.495c-0.205 42.994-13.409 82.862-35.879 115.926l0.466-0.726c125.44-4.693 225.28-74.24 225.28-159.573s-107.093-160.427-239.36-160.427z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["profile-user"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6241,"id":150,"name":"profile-user","prevSize":32,"code":60898,"codes":[60898,60899,60900,60901]},"setIdx":0,"setId":0,"iconIdx":422},{"icon":{"paths":["M512 194.987v0c-45.277-45.051-107.706-72.9-176.64-72.9s-131.363 27.849-176.65 72.91l0.010-0.010c-45.28 45.252-73.289 107.782-73.289 176.853s28.009 131.602 73.288 176.852l0.001 0.001 322.987 323.413c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 322.987-323.413c45.28-45.252 73.289-107.782 73.289-176.853s-28.009-131.602-73.288-176.852l-0.001-0.001c-45.277-45.051-107.706-72.9-176.64-72.9s-131.363 27.849-176.65 72.91l0.010-0.010z","M602.027 693.76h-4.693c-13.467-1.422-24.354-11.014-27.683-23.67l-0.050-0.223-62.72-236.8-57.173 170.667c-4.342 12.866-16.302 21.965-30.386 21.965-10.891 0-20.512-5.441-26.292-13.754l-0.069-0.105-67.413-99.84-55.467 29.867c-4.36 2.418-9.56 3.841-15.093 3.841-0.094 0-0.188-0-0.281-0.001l0.014 0h-126.72c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h118.613l73.813-39.68c4.565-2.659 10.048-4.228 15.897-4.228 11.149 0 20.967 5.702 26.696 14.349l0.074 0.119 49.493 71.68 69.12-212.48c3.801-12.693 15.376-21.785 29.074-21.785 0.429 0 0.856 0.009 1.28 0.027l-0.061-0.002c14.399 0.358 26.379 10.302 29.819 23.674l0.048 0.219 67.84 256 33.707-70.827c5.114-10.896 15.98-18.313 28.582-18.347l0.005-0h224c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-202.667l-62.293 131.413c-5.443 10.71-16.38 17.92-29.001 17.92-0.004 0-0.009-0-0.013-0l0.001 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["pulse"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6242,"id":149,"name":"pulse","prevSize":32,"code":60902,"codes":[60902,60903]},"setIdx":0,"setId":0,"iconIdx":423},{"icon":{"paths":["M738.56 353.28c-17.673 0-32-14.327-32-32v0c-4.718-92.362-80.755-165.464-173.867-165.464s-169.149 73.102-173.85 165.045l-0.017 0.419c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c5.551-127.080 109.923-228.004 237.867-228.004s232.316 100.924 237.849 227.504l0.017 0.499c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M762.88 321.28h-460.373c-0.017-0-0.038-0-0.058-0-91.665 0-165.973 74.309-165.973 165.973 0 9.493 0.797 18.799 2.328 27.857l-0.136-0.977 47.36 285.867c13.55 79.073 81.518 138.515 163.397 138.667l0.016 0h361.813c0.129 0 0.282 0.001 0.436 0.001 80.939 0 148.277-58.236 162.397-135.094l0.155-1.014 51.627-285.867c1.674-8.852 2.632-19.034 2.632-29.44 0-91.54-74.107-165.771-165.599-165.973l-0.019-0zM326.827 522.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM738.56 522.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667h-0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["purchase"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6243,"id":148,"name":"purchase","prevSize":32,"code":60904,"codes":[60904,60905]},"setIdx":0,"setId":0,"iconIdx":424},{"icon":{"paths":["M846.933 322.56h-145.493v-145.493c0-50.663-41.070-91.733-91.733-91.733l-0-0h-195.413c-50.663 0-91.733 41.070-91.733 91.733v0 145.493h-145.493c-50.663 0-91.733 41.070-91.733 91.733l-0 0v195.413c0 50.663 41.070 91.733 91.733 91.733v0h145.493v145.493c0 50.663 41.070 91.733 91.733 91.733h195.413c50.663 0 91.733-41.070 91.733-91.733v0-145.493h145.493c50.663 0 91.733-41.070 91.733-91.733v-195.413c0-50.663-41.070-91.733-91.733-91.733v0zM426.667 231.68c-17.489-0.241-31.573-14.474-31.573-31.997 0-0.001 0-0.002 0-0.003l-0 0c-0-17.437 14.136-31.573 31.573-31.573l0 0c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0zM597.333 856.32c-18.851 0-34.133-15.282-34.133-34.133v-0c-0-0.001-0-0.002-0-0.003 0-18.616 15.091-33.707 33.707-33.707 0.15 0 0.3 0.001 0.449 0.003l-0.023-0c18.616 0 33.707 15.091 33.707 33.707v0c0.002 0.127 0.003 0.277 0.003 0.427 0 18.616-15.091 33.707-33.707 33.707-0.001 0-0.002-0-0.003-0l0 0z","M609.707 85.333h-195.413c-50.663 0-91.733 41.070-91.733 91.733v0 145.493h-145.493c-50.663 0-91.733 41.070-91.733 91.733l-0 0v195.413c0 50.663 41.070 91.733 91.733 91.733v0h145.493v-85.333c0.943-57.113 46.993-103.164 104.017-104.106l0.089-0.001h175.36c54.198 0 98.133-43.936 98.133-98.133v-236.8c0-0.003 0-0.006 0-0.009 0-50.213-40.344-91.003-90.385-91.724l-0.068-0.001zM426.667 231.68c-17.489-0.241-31.573-14.474-31.573-31.997 0-0.001 0-0.002 0-0.003l-0 0c-0-17.437 14.136-31.573 31.573-31.573l0 0c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["python"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6244,"id":147,"name":"python","prevSize":32,"code":60906,"codes":[60906,60907]},"setIdx":0,"setId":0,"iconIdx":425},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M512 640c-17.673 0-32-14.327-32-32v0-34.987c-0.013-0.631-0.020-1.374-0.020-2.12 0-44.085 25.042-82.322 61.677-101.261l0.636-0.299c23.42-11.522 39.253-35.213 39.253-62.602 0-38.41-31.137-69.547-69.547-69.547-38.368 0-69.48 31.070-69.547 69.423l-0 0.006c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c0.278-73.781 60.153-133.485 133.972-133.485 8.294 0 16.412 0.754 24.289 2.196l-0.821-0.125c54.995 10.619 97.552 53.607 107.397 107.981l0.123 0.819c1.44 7.338 2.264 15.776 2.264 24.407 0 52.553-30.551 97.97-74.861 119.461l-0.79 0.346c-15.634 8.637-26.046 25.023-26.046 43.841 0 0.487 0.007 0.973 0.021 1.457l-0.002-0.071v34.987c-0.241 17.489-14.474 31.573-31.997 31.573-0.001 0-0.002-0-0.003-0l0 0z","M544 718.507c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["question-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6245,"id":146,"name":"question-2","prevSize":32,"code":60908,"codes":[60908,60909,60910]},"setIdx":0,"setId":0,"iconIdx":426},{"icon":{"paths":["M912.64 449.28l-59.307-60.16c-7.905-7.75-12.805-18.541-12.805-30.475 0-0.236 0.002-0.472 0.006-0.707l-0 0.036v-85.333c-0.24-48.831-39.881-88.324-88.746-88.324-0.3 0-0.6 0.001-0.9 0.004l0.046-0h-85.333c-0.2 0.003-0.435 0.005-0.671 0.005-11.935 0-22.725-4.9-30.468-12.798l-0.007-0.007-59.733-60.16c-16.057-16.040-38.23-25.96-62.72-25.96s-46.663 9.92-62.721 25.961l0.001-0.001-60.16 59.307c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0h-85.333c-48.831 0.24-88.324 39.881-88.324 88.746 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v85.333c0.003 0.2 0.005 0.435 0.005 0.671 0 11.935-4.9 22.725-12.798 30.468l-0.007 0.007-60.16 59.733c-16.040 16.057-25.96 38.23-25.96 62.72s9.92 46.663 25.961 62.721l-0.001-0.001 59.307 60.16c7.905 7.75 12.805 18.541 12.805 30.475 0 0.236-0.002 0.472-0.006 0.707l0-0.036v85.333c0.24 48.831 39.881 88.324 88.746 88.324 0.3 0 0.6-0.001 0.9-0.004l-0.046 0h85.333c0.2-0.003 0.435-0.005 0.671-0.005 11.935 0 22.725 4.9 30.468 12.798l0.007 0.007 60.16 60.16c16.057 16.040 38.23 25.96 62.72 25.96s46.663-9.92 62.721-25.961l-0.001 0.001 59.733-59.307c7.75-7.905 18.541-12.805 30.475-12.805 0.236 0 0.472 0.002 0.707 0.006l-0.036-0h85.333c49.013-0 88.747-39.733 88.747-88.747v0-85.333c-0.003-0.2-0.005-0.435-0.005-0.671 0-11.935 4.9-22.725 12.798-30.468l0.007-0.007 60.16-60.16c16.041-16.057 25.961-38.23 25.961-62.721 0-24.702-10.092-47.047-26.379-63.137l-0.009-0.009z","M512 637.013c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-34.987c0.34-43.743 25.282-81.582 61.658-100.394l0.636-0.299c23.42-11.522 39.253-35.213 39.253-62.602 0-38.41-31.137-69.547-69.547-69.547-38.368 0-69.48 31.070-69.547 69.423l-0 0.006c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c-0.009-0.586-0.015-1.277-0.015-1.97 0-41.031 18.683-77.698 48.006-101.959l0.222-0.178c23.18-19.892 53.544-32.001 86.736-32.001 73.756 0 133.547 59.791 133.547 133.547 0 53.031-30.91 98.842-75.696 120.4l-0.8 0.347c-15.634 8.637-26.046 25.023-26.046 43.841 0 0.487 0.007 0.973 0.021 1.457l-0.002-0.071v34.987c-0.241 17.724-14.665 32-32.424 32-0.001 0-0.002-0-0.003-0l0 0z","M544 715.947c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["question"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6246,"id":145,"name":"question","prevSize":32,"code":60911,"codes":[60911,60912,60913]},"setIdx":0,"setId":0,"iconIdx":427},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v346.027c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-346.027c0-140.207 113.66-253.867 253.867-253.867z","M298.667 462.080c-8.187-0.111-15.641-3.162-21.374-8.141l0.041 0.035-57.173-51.627c-6.828-6.192-11.099-15.098-11.099-25 0-8.397 3.070-16.076 8.149-21.977l-0.037 0.044c5.912-7.123 14.768-11.626 24.676-11.626 8.244 0 15.759 3.117 21.433 8.237l-0.028-0.025 29.44 26.027 52.053-85.333c5.77-9.497 16.058-15.744 27.806-15.744 6.466 0 12.49 1.893 17.549 5.154l-0.128-0.077c9.13 6.312 15.036 16.725 15.036 28.517 0 6.478-1.782 12.539-4.883 17.721l0.087-0.157-72.533 116.907c-4.824 8.274-13.144 14.058-22.882 15.343l-0.158 0.017zM798.72 395.093c0.002-0.147 0.004-0.321 0.004-0.496 0-17.395-13.519-31.633-30.624-32.779l-0.1-0.005h-256c-14.886 3.525-25.792 16.702-25.792 32.427s10.906 28.902 25.566 32.381l0.226 0.045h256c16.794-1.114 30.077-14.694 30.718-31.512l0.002-0.061zM303.36 693.76c9.222-0.358 17.395-4.567 23.006-11.053l0.034-0.040 72.533-117.333c3.104-5.043 4.942-11.152 4.942-17.691 0-11.787-5.975-22.179-15.061-28.312l-0.121-0.077c-4.93-3.184-10.955-5.077-17.421-5.077-11.748 0-22.036 6.247-27.725 15.6l-0.081 0.143-52.053 85.333-29.44-26.027c-5.645-5.095-13.161-8.212-21.404-8.212-9.908 0-18.763 4.503-24.633 11.573l-0.042 0.053c-4.944 5.882-7.948 13.538-7.948 21.895 0 9.883 4.2 18.785 10.913 25.018l0.021 0.020 58.453 48.64c5.692 4.945 13.146 7.995 21.31 8.106l0.023 0zM800 627.2c-1.553-16.57-15.21-29.488-31.963-29.866l-0.037-0.001h-256c-18.38 0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28v-0h256c17.793-0.452 32.045-14.983 32.045-32.843 0-0.604-0.016-1.204-0.048-1.8l0.004 0.083z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["questionnaire-tablet"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6247,"id":144,"name":"questionnaire-tablet","prevSize":32,"code":60914,"codes":[60914,60915]},"setIdx":0,"setId":0,"iconIdx":428},{"icon":{"paths":["M180.48 607.147h193.28v331.52h-276.053v-248.747c-0-45.714 37.059-82.773 82.773-82.773l0-0z","M456.96 441.6h110.507c45.714 0 82.773 37.059 82.773 82.773l0-0v414.293h-276.053v-414.293c0-45.714 37.059-82.773 82.773-82.773l0-0z","M649.813 731.307h193.707c45.714-0 82.773 37.059 82.773 82.773l-0 0v124.587h-276.48v-207.36z","M563.2 355.413l-39.68-18.773c-4.017-1.825-8.711-2.889-13.653-2.889s-9.637 1.064-13.866 2.975l0.212-0.086-40.107 17.067c-3.843 1.706-8.327 2.7-13.042 2.7-18.144 0-32.853-14.709-32.853-32.853 0-1.403 0.088-2.785 0.258-4.141l-0.017 0.162 5.12-42.667c0.191-1.297 0.3-2.793 0.3-4.316 0-8.239-3.199-15.731-8.423-21.301l0.016 0.017-29.013-33.707c-4.969-5.78-7.995-13.356-7.995-21.638 0-15.922 11.182-29.233 26.121-32.508l0.22-0.041 42.667-8.533c9.492-1.998 17.358-7.769 22.102-15.635l0.085-0.151 22.187-37.547c5.754-10.022 16.395-16.662 28.587-16.662s22.832 6.641 28.502 16.503l0.085 0.16 21.333 37.973c4.535 8.21 12.305 14.162 21.546 16.174l0.214 0.039 42.667 9.813c14.783 3.602 25.585 16.728 25.585 32.378 0 8.562-3.233 16.368-8.545 22.265l0.027-0.030-29.867 32c-5.394 5.835-8.702 13.668-8.702 22.273 0 1.172 0.061 2.33 0.181 3.47l-0.012-0.142 3.84 42.667c0.253 1.53 0.397 3.294 0.397 5.091 0 18.144-14.709 32.853-32.853 32.853-4.939 0-9.624-1.090-13.826-3.042l0.203 0.085z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["ranking"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6248,"id":143,"name":"ranking","prevSize":32,"code":60916,"codes":[60916,60917,60918,60919]},"setIdx":0,"setId":0,"iconIdx":429},{"icon":{"paths":["M970.667 512c0-70.827-59.733-133.12-154.88-175.36 11.093-103.68-13.227-186.453-74.24-221.867s-144.213-14.933-229.547 46.080c-85.333-61.013-168.107-81.493-229.12-46.080s-85.333 118.187-74.667 221.867c-95.147 42.667-154.88 104.533-154.88 175.36s59.307 133.12 154.453 175.36c0 3.84 0 8.107 0 12.373-8.533 101.547 18.773 176.213 76.8 209.493 19.357 11.275 42.607 17.931 67.411 17.931 0.601 0 1.201-0.004 1.8-0.012l-0.091 0.001c57.327-3.641 109.189-24.416 151.222-57.204l-0.608 0.457 9.387-6.827 9.387 6.827c41.424 32.331 93.286 53.106 149.817 56.706l0.797 0.041c0.435 0.005 0.949 0.008 1.464 0.008 25.029 0 48.505-6.652 68.755-18.284l-0.673 0.356c57.6-33.28 85.333-107.947 76.373-209.493 0-4.267 0-8.533 0-12.373 91.733-42.24 151.040-104.533 151.040-175.36zM672 161.28c0.391-0.007 0.853-0.012 1.315-0.012 12.965 0 25.155 3.324 35.762 9.165l-0.384-0.194c32.853 19.2 49.067 71.68 42.667 143.36-31.507-10.462-69.116-19.257-107.787-24.757l-3.573-0.417c-24.642-31.251-50.207-59.115-77.687-84.967l-0.393-0.366c30.721-23.339 68.784-38.541 110.208-41.768l0.725-0.045zM731.733 597.333c4.431 13.232 8.998 30.413 12.655 47.928l0.571 3.272c-13.008 4.606-30.003 9.452-47.335 13.418l-3.439 0.662c6.4-10.24 13.227-20.907 19.627-32s11.52-24.32 17.92-33.28zM658.347 597.333c-17.793 30.571-34.99 56.34-53.557 81.021l1.504-2.087c-27.961 3.711-60.654 6.025-93.813 6.396l-0.48 0.004c-33.296-0.063-66.052-2.077-98.242-5.932l3.948 0.385c-16.838-22.655-34.039-48.702-49.829-75.675l-2.224-4.112c-13.446-22.902-27.715-50.921-40.467-79.76l-2.199-5.573c14.95-34.411 29.219-62.43 44.906-89.525l-2.239 4.192c18.188-30.506 35.511-56.124 54.094-80.739l-1.614 2.232c27.349-3.586 59.851-6.044 92.771-6.807l1.095-0.020c33.255 0.151 65.883 2.007 98.024 5.485l-4.157-0.365c16.958 22.775 34.297 48.96 50.229 76.071l2.251 4.143c13.448 22.905 27.718 50.924 40.469 79.763l2.198 5.57c-14.951 34.413-29.221 62.431-44.907 89.527l2.24-4.194zM512 781.227c-12.8-11.52-25.6-23.893-37.973-37.12h75.947c-12.373 13.227-25.173 23.893-37.973 37.12zM310.187 628.48c6.4 11.093 13.227 21.76 19.627 32-20.77-4.628-37.766-9.474-54.377-15.15l3.604 1.070c4.347-20.102 8.905-36.542 14.251-52.622l-1.024 3.555q6.4 14.507 17.92 31.147zM292.267 428.8c-5.12-17.92-9.813-34.987-13.227-51.2 13.304-4.769 30.304-9.618 47.669-13.497l3.104-0.583c-6.4 10.24-13.227 20.907-19.627 32s-11.52 22.187-17.92 33.28zM512 243.627c12.373 11.093 24.747 23.040 37.12 36.267h-74.24c12.373-13.227 24.747-23.893 37.12-36.267zM713.813 395.52c-6.4-11.093-13.227-21.76-19.627-32 20.47 4.462 37.47 9.311 54.044 15.069l-3.271-0.989c-3.413 16.213-8.107 33.28-13.227 51.2-6.4-11.093-11.52-22.187-17.92-33.28zM314.88 170.667c9.978-5.65 21.913-8.979 34.626-8.979 0.577 0 1.152 0.007 1.726 0.021l-0.085-0.002c41.774 3.795 79.341 19.245 110.142 43.029l-0.489-0.363c-27.371 25.842-52.515 53.285-75.577 82.45l-1.223 1.603c-42.655 5.827-80.713 14.629-117.389 26.503l4.749-1.329c-5.973-71.68 10.24-124.16 43.52-142.933zM117.333 512c0-38.4 37.547-78.507 101.547-110.080 10.025 42.959 21.889 79.701 36.375 115.092l-1.815-5.012c-12.735 30.552-24.604 67.444-33.558 105.461l-1.002 5.045c-64-32-101.547-72.533-101.547-110.507zM314.88 853.333c-34.133-19.627-49.92-71.68-45.227-143.36 32.434 10.748 71.069 19.7 110.807 25.199l3.54 0.401c24.498 31.322 50.072 59.196 77.657 84.942l0.423 0.391c-60.587 40.107-113.92 52.053-147.2 32.427zM709.547 853.333c-33.707 19.627-85.333 7.253-146.347-32.427 28.008-26.138 53.582-54.011 76.885-83.75l1.195-1.584c42.82-5.829 81.026-14.632 117.853-26.507l-4.786 1.334c4.693 71.68-11.093 123.733-44.8 142.933zM805.12 621.653c-10.013-42.774-21.876-79.37-36.364-114.609l1.804 4.956c12.646-30.245 24.507-66.839 33.527-104.538l1.033-5.116c64 31.573 101.547 71.68 101.547 110.080s-37.547 78.080-101.547 109.653z","M589.227 512c0 42.651-34.576 77.227-77.227 77.227s-77.227-34.576-77.227-77.227c0-42.651 34.576-77.227 77.227-77.227s77.227 34.576 77.227 77.227z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["react"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6249,"id":142,"name":"react","prevSize":32,"code":60920,"codes":[60920,60921]},"setIdx":0,"setId":0,"iconIdx":430},{"icon":{"paths":["M311.893 85.76h400.64c124.89 0 226.133 101.243 226.133 226.133v400.64c0 124.89-101.243 226.133-226.133 226.133h-400.64c-124.89 0-226.133-101.243-226.133-226.133v-400.64c0-124.89 101.243-226.133 226.133-226.133z","M384 261.547c-47.128 0-85.333 38.205-85.333 85.333v0 352.427c-0.003 0.16-0.004 0.349-0.004 0.538 0 19.087 15.473 34.56 34.56 34.56 12.683 0 23.771-6.832 29.783-17.017l0.088-0.161 17.493-29.867c5.099-8.779 14.458-14.588 25.173-14.588s20.074 5.809 25.099 14.45l0.074 0.139 23.040 40.107c11.905 20.155 33.518 33.462 58.24 33.462s46.335-13.307 58.069-33.149l0.171-0.313 22.613-39.68c5.209-8.757 14.623-14.533 25.387-14.533s20.177 5.776 25.312 14.397l0.075 0.135 16.64 28.587c6.25 10.128 17.285 16.776 29.874 16.776 19.071 0 34.577-15.258 34.979-34.232l0.001-0.037v-352c0-47.128-38.205-85.333-85.333-85.333v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["receipt-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6250,"id":141,"name":"receipt-square","prevSize":32,"code":60922,"codes":[60922,60923]},"setIdx":0,"setId":0,"iconIdx":431},{"icon":{"paths":["M316.16 204.8c-8.271-9.12-13.334-21.282-13.334-34.627 0-20.657 12.132-38.48 29.659-46.733l0.315-0.133c52.673-25.044 114.457-39.668 179.657-39.668 80.622 0 156.021 22.361 220.334 61.22l-1.911-1.071c13.95 8.911 23.067 24.315 23.067 41.848 0 14.514-6.248 27.569-16.201 36.623l-0.040 0.036-80.64 76.373c-8.937 8.243-20.923 13.297-34.090 13.297-7.762 0-15.115-1.757-21.681-4.894l0.304 0.131c-26.253-12.56-57.051-19.943-89.562-20.053l-0.038-0c-0.179-0.001-0.391-0.001-0.603-0.001-23.659 0-46.332 4.223-67.305 11.956l1.349-0.435c-4.974 1.789-10.714 2.823-16.695 2.823-14.391 0-27.383-5.987-36.622-15.606l-0.016-0.017zM643.413 711.68c-9.047-9.593-21.844-15.566-36.035-15.566-6.696 0-13.082 1.33-18.907 3.74l0.329-0.12c-22.472 9.179-48.549 14.507-75.87 14.507-0.027 0-0.054-0-0.081-0l0.004 0c-27.982-0.103-54.656-5.578-79.085-15.444l1.432 0.511c-5.247-2.067-11.323-3.266-17.68-3.266-12.947 0-24.734 4.972-33.554 13.11l0.034-0.031-97.707 90.453c-9.993 9.089-16.241 22.144-16.241 36.659 0 17.533 9.117 32.937 22.869 41.729l0.199 0.119c62.681 38.228 138.504 60.86 219.614 60.86 76.010 0 147.377-19.876 209.189-54.714l-2.136 1.107c15.943-8.773 26.566-25.462 26.566-44.631 0-13.242-5.069-25.3-13.373-34.339l0.033 0.037z","M715.52 437.333c-1.808-4.953-2.853-10.672-2.853-16.634 0-14.496 6.179-27.549 16.046-36.669l0.033-0.031 85.333-80.213c8.876-8.518 20.95-13.764 34.249-13.764 18.612 0 34.824 10.273 43.276 25.458l0.129 0.252c29.842 56.558 47.358 123.607 47.358 194.747 0 75.587-19.774 146.555-54.431 208.014l1.1-2.121c-8.668 15.923-25.276 26.548-44.367 26.548-14.458 0-27.493-6.095-36.676-15.855l-0.024-0.026-85.333-92.587c-8.393-8.85-13.555-20.837-13.555-34.029 0-6.81 1.375-13.298 3.863-19.203l-0.122 0.325c10.785-23.966 17.067-51.951 17.067-81.404 0-0.181-0-0.363-0.001-0.544l0 0.028c-0.548-22.458-4.567-43.799-11.538-63.754l0.444 1.46zM300.8 630.613c9.55-9.11 15.488-21.934 15.488-36.145 0-6.651-1.301-12.999-3.662-18.802l0.12 0.334c-8.913-21.947-14.085-47.406-14.085-74.073 0-0.509 0.002-1.017 0.006-1.525l-0 0.078c0.032-32.357 7.264-63.018 20.178-90.477l-0.551 1.303c3.131-6.403 4.961-13.933 4.961-21.89 0-13.1-4.961-25.041-13.107-34.047l0.039 0.044-78.507-82.773c-9.127-9.692-22.045-15.727-36.371-15.727-17.919 0-33.634 9.442-42.439 23.622l-0.123 0.213c-42.272 64.546-67.422 143.616-67.422 228.56 0 0.947 0.003 1.893 0.009 2.838l-0.001-0.145c0.073 70.55 17.258 137.070 47.626 195.655l-1.12-2.375c8.645 15.604 25.016 25.993 43.812 25.993 13.28 0 25.348-5.185 34.291-13.642l-0.024 0.022z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["rescue"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6251,"id":140,"name":"rescue","prevSize":32,"code":60924,"codes":[60924,60925]},"setIdx":0,"setId":0,"iconIdx":432},{"icon":{"paths":["M246.613 670.72c-0.019 0-0.042 0-0.064 0-8.738 0-16.679-3.411-22.564-8.975l0.016 0.015-128-125.44c-6.041-5.829-9.793-13.996-9.793-23.040s3.752-17.211 9.783-23.031l0.010-0.009 128-125.44c4.779-2.994 10.586-4.769 16.807-4.769 17.673 0 32 14.327 32 32 0 7.087-2.304 13.635-6.203 18.938l0.062-0.089-102.4 101.12 104.533 102.4c5.692 5.837 9.202 13.823 9.202 22.63 0 17.544-13.932 31.834-31.336 32.409l-0.053 0.001z","M777.813 669.44c-0.118 0.002-0.257 0.002-0.396 0.002-8.845 0-16.851-3.588-22.644-9.389l-0-0c-5.708-5.902-9.225-13.954-9.225-22.827s3.517-16.924 9.234-22.836l-0.009 0.009 105.387-102.4-104.96-102.4c-5.708-5.902-9.225-13.954-9.225-22.827s3.517-16.924 9.234-22.836l-0.009 0.009c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 128 125.44c6.041 5.829 9.793 13.996 9.793 23.040s-3.752 17.211-9.783 23.031l-0.010 0.009-128 125.44c-5.573 5.297-13.127 8.555-21.442 8.555-0.412 0-0.822-0.008-1.23-0.024l0.059 0.002z","M118.187 546.56c-17.673 0-32-14.327-32-32s14.327-32 32-32v0l777.813-2.56c17.673 0 32 14.327 32 32s-14.327 32-32 32v0l-777.813 2.56z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["right-left"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6252,"id":139,"name":"right-left","prevSize":32,"code":60926,"codes":[60926,60927,60928]},"setIdx":0,"setId":0,"iconIdx":433},{"icon":{"paths":["M690.773 938.667h-357.547c-136.908-0-247.893-110.986-247.893-247.893l0-357.547c0-136.908 110.986-247.893 247.893-247.893l357.547 0c136.908 0 247.893 110.986 247.893 247.893l-0 357.547c0 136.908-110.986 247.893-247.893 247.893z","M440.747 706.987c-11.445-0.047-21.818-4.593-29.453-11.959l0.013 0.012c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 118.187-122.88-124.587-121.6c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 155.733 148.907c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002-149.333 155.733c-7.664 7.408-18.118 11.973-29.637 11.973-0.531 0-1.059-0.010-1.586-0.029l0.076 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["right-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6253,"id":138,"name":"right-square","prevSize":32,"code":60929,"codes":[60929,60930]},"setIdx":0,"setId":0,"iconIdx":434},{"icon":{"paths":["M443.307 807.253c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 222.293-222.72-222.293-222.72c-6.377-7.412-10.259-17.129-10.259-27.753 0-23.564 19.103-42.667 42.667-42.667 10.624 0 20.341 3.883 27.809 10.307l-0.056-0.047 252.16 252.587c7.648 7.709 12.374 18.326 12.374 30.047 0 0.087-0 0.173-0.001 0.26l0-0.013c-0.169 11.771-4.851 22.416-12.39 30.311l0.016-0.017-253.013 252.587c-7.468 7.415-17.669 12.087-28.959 12.372l-0.054 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["right"]},"attrs":[{}],"properties":{"order":6254,"id":137,"name":"right","prevSize":32,"code":60931},"setIdx":0,"setId":0,"iconIdx":435},{"icon":{"paths":["M853.333 85.333l-151.040 27.307c-79.456 21.663-147.532 62.651-201.305 117.676l-0.082 0.084c-88.32 92.16-186.88 289.707-226.133 372.053-3.358 7.089-5.318 15.402-5.318 24.173 0 16.31 6.779 31.036 17.673 41.516l0.019 0.018 87.893 85.333c10.136 9.876 24.001 15.967 39.289 15.967 9.668 0 18.767-2.436 26.717-6.728l-0.299 0.147c135.563-69.232 252.438-147.403 359.035-237.369l-2.768 2.276c55.933-56.614 95.605-129.41 111.368-210.738l0.419-2.595 27.307-143.787c0.833-4.127 1.31-8.87 1.31-13.726 0-40.059-32.474-72.533-72.533-72.533-4.078 0-8.078 0.337-11.973 0.984l0.423-0.058zM752.64 392.107c-15.588 16.448-37.59 26.683-61.983 26.683-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c23.112 0 44.077 9.188 59.444 24.111l-0.021-0.020c15.989 15.527 25.91 37.226 25.91 61.243 0 22.736-8.891 43.394-23.387 58.689l0.036-0.039z","M399.36 369.493l-118.613 222.293-195.413-4.693s163.413-249.6 314.027-217.6zM686.080 614.4l-213.333 130.56 13.227 193.707s239.36-175.787 200.107-324.267zM690.347 248.747c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["rocket"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6255,"id":136,"name":"rocket","prevSize":32,"code":60932,"codes":[60932,60933]},"setIdx":0,"setId":0,"iconIdx":436},{"icon":{"paths":["M222.72 89.6c-63.716 15.042-112.957 64.284-127.769 126.841l-0.231 1.159c-2.726 11.424-4.289 24.541-4.289 38.022 0 43.832 16.524 83.804 43.682 114.028l-0.139-0.157 95.573 106.667c7.846 8.736 19.177 14.205 31.787 14.205s23.941-5.47 31.752-14.166l0.035-0.039 95.573-106.667c26.908-30.038 43.358-69.93 43.358-113.664 0-94.257-76.41-170.667-170.667-170.667-13.713 0-27.049 1.617-39.826 4.672l1.162-0.234zM262.827 319.573c-35.346-0.001-63.999-28.654-63.999-64s28.654-64 64-64c35.346 0 64 28.654 64 64 0 0.15-0.001 0.3-0.002 0.45l0-0.023c-0.242 35.162-28.802 63.573-63.999 63.573-0.001 0-0.001-0-0.002-0l0 0z","M891.733 672.427l32.853-42.667c5.533-6.819 8.884-15.605 8.884-25.173 0-22.124-17.913-40.063-40.027-40.107l-0.004-0h-225.707v213.333h225.707c22.118-0.043 40.031-17.983 40.031-40.107 0-9.568-3.351-18.354-8.943-25.248l0.059 0.075z","M635.733 938.667c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-372.48c0-17.673 14.327-32 32-32s32 14.327 32 32v0 372.907c-0.241 17.489-14.474 31.573-31.997 31.573-0.001 0-0.002-0-0.003-0l0 0z","M607.147 907.093v-32h-265.813c-1.036 0.029-2.256 0.045-3.479 0.045-73.214 0-132.841-58.172-135.182-130.817l-0.005-0.215c2.109-72.817 61.641-131.043 134.774-131.043 1.369 0 2.733 0.020 4.093 0.061l-0.199-0.005h64c1.888 0.136 4.090 0.213 6.31 0.213 51.605 0 93.44-41.835 93.44-93.44s-41.835-93.44-93.44-93.44c-2.22 0-4.423 0.077-6.605 0.23l0.294-0.016h-71.68l-42.667 49.493c-9.229 7.945-20.967 13.214-33.879 14.486l-0.254 0.020h149.333c0.518-0.032 1.122-0.050 1.732-0.050 16.298 0 29.59 12.87 30.266 29.002l0.002 0.061c-0.691 16.419-14.169 29.468-30.694 29.468-0.459 0-0.916-0.010-1.37-0.030l0.065 0.002h-64.853c-1.029-0.019-2.242-0.030-3.458-0.030-108.555 0-196.834 86.81-199.204 194.796l-0.004 0.221c2.608 108.020 90.794 194.59 199.199 194.59 1.219 0 2.436-0.011 3.65-0.033l-0.182 0.003h298.667c-0.255 0.007-0.555 0.011-0.856 0.011-17.527 0-31.763-14.091-31.997-31.563l-0-0.022z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["route"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6256,"id":135,"name":"route","prevSize":32,"code":60934,"codes":[60934,60935,60936,60937]},"setIdx":0,"setId":0,"iconIdx":437},{"icon":{"paths":["M938.667 615.253v170.667c0 47.128-38.205 85.333-85.333 85.333v0c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0h-512c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0c-47.128 0-85.333-38.205-85.333-85.333v0-170.667c0-47.128 38.205-85.333 85.333-85.333v0h682.667c47.128 0 85.333 38.205 85.333 85.333v0zM256 657.92c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v-0zM426.667 657.92c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v-0zM597.333 657.92c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v-0z","M761.6 529.92v-387.84c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 387.84z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["router"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6257,"id":134,"name":"router","prevSize":32,"code":60938,"codes":[60938,60939]},"setIdx":0,"setId":0,"iconIdx":438},{"icon":{"paths":["M160 85.333h704c41.237 0 74.667 33.429 74.667 74.667v213.333c0 41.237-33.429 74.667-74.667 74.667h-704c-41.237 0-74.667-33.429-74.667-74.667v-213.333c0-41.237 33.429-74.667 74.667-74.667z","M160 576h704c41.237 0 74.667 33.429 74.667 74.667v213.333c0 41.237-33.429 74.667-74.667 74.667h-704c-41.237 0-74.667-33.429-74.667-74.667v-213.333c0-41.237 33.429-74.667 74.667-74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["row-horizontal"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6258,"id":133,"name":"row-horizontal","prevSize":32,"code":60940,"codes":[60940,60941]},"setIdx":0,"setId":0,"iconIdx":439},{"icon":{"paths":["M85.333 864l0-704c0-41.237 33.429-74.667 74.667-74.667h213.333c41.237 0 74.667 33.429 74.667 74.667v704c0 41.237-33.429 74.667-74.667 74.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667z","M650.667 85.333h213.333c41.237 0 74.667 33.429 74.667 74.667v704c0 41.237-33.429 74.667-74.667 74.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v-704c0-41.237 33.429-74.667 74.667-74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["row-vertical"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6259,"id":132,"name":"row-vertical","prevSize":32,"code":60942,"codes":[60942,60943]},"setIdx":0,"setId":0,"iconIdx":440},{"icon":{"paths":["M670.293 847.36h-417.707c-0.025 0-0.054 0-0.083 0-68.192 0-124.447-51.111-132.546-117.114l-0.065-0.646-34.56-286.72c-0.526-4.458-0.826-9.622-0.826-14.856 0-43.178 20.426-81.586 52.143-106.086l0.31-0.23 256-197.547c22.268-17.366 50.647-27.844 81.473-27.844 32.97 0 63.14 11.986 86.391 31.837l-0.184-0.154 243.2 204.373c28.953 24.425 47.218 60.728 47.218 101.297 0 8.079-0.724 15.989-2.112 23.668l0.121-0.805-47.787 279.893c-10.817 63.332-65.298 110.933-130.897 110.933-0.032 0-0.063-0-0.095-0l0.005 0z","M670.293 896l-42.667-34.987c-23.485-18.523-38.423-46.978-38.423-78.922 0-0.754 0.008-1.506 0.025-2.256l-0.002 0.112v-139.52c0.047-26.822 15.953-49.918 38.839-60.416l0.415-0.17 109.227-50.773c8.153-3.744 17.688-5.928 27.733-5.928s19.581 2.183 28.157 6.101l-0.424-0.173 105.387 46.080c23.812 11.089 40.037 34.788 40.107 62.284l0 0.009v139.947c-0.474 31.622-15.091 59.737-37.792 78.362l-0.181 0.144-50.773 40.107c-24.346 19.697-55.687 31.621-89.813 31.621s-65.467-11.924-90.084-31.833l0.271 0.212z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["safe-home"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6260,"id":131,"name":"safe-home","prevSize":32,"code":60944,"codes":[60944,60945]},"setIdx":0,"setId":0,"iconIdx":441},{"icon":{"paths":["M298.667 788.48c-0.387-0.003-0.845-0.005-1.304-0.005-67.352 0-124.663 42.991-145.988 103.029l-0.335 1.083c-1.254 3.432-1.979 7.395-1.979 11.527 0 19.087 15.473 34.56 34.56 34.56 0.246 0 0.491-0.003 0.736-0.008l-0.036 0.001h229.973c19.019-0.089 34.403-15.528 34.403-34.56 0-4.13-0.724-8.090-2.053-11.761l0.076 0.241c-21.659-61.123-78.971-104.116-146.325-104.116-0.608 0-1.215 0.004-1.821 0.010l0.092-0.001z","M337.067 667.733c145.493 145.067 348.587 180.48 469.333 85.333 5.027-4.618 8.167-11.222 8.167-18.56s-3.14-13.942-8.149-18.543l-0.018-0.017-520.107-517.12c-4.546-5.008-11.080-8.14-18.347-8.14s-13.801 3.132-18.328 8.119l-0.018 0.021c-93.867 121.173-58.027 323.84 87.467 468.907z","M564.907 476.587c14.507-13.227 29.013-26.027 42.667-37.547 6.961-6.026 11.339-14.875 11.339-24.747 0-18.045-14.628-32.673-32.673-32.673-8.173 0-15.645 3.001-21.374 7.961l0.041-0.035c-9.813 8.533-26.88 23.040-47.787 42.667z","M298.667 788.48c11.067 0.063 21.81 1.303 32.154 3.601l-1.007-0.188c2.404-36.745 15.834-69.951 36.976-96.8l-0.283 0.373c-10.24-8.533-20.48-17.92-30.293-27.733s-11.093-11.52-16.213-17.493c-30.052 39.355-49.832 88.027-54.538 141.033l-0.075 1.047c9.921-2.249 21.381-3.637 33.131-3.838l0.149-0.002z","M737.28 435.627v0c-17.125-0.692-30.747-14.743-30.747-31.975 0-0.459 0.010-0.915 0.029-1.369l-0.002 0.065c2.56-96.853-98.133-103.68-109.227-103.68-17.125-0.692-30.747-14.743-30.747-31.975 0-0.459 0.010-0.915 0.029-1.369l-0.002 0.065c-0-0.032-0-0.069-0-0.107 0-16.966 13.754-30.72 30.72-30.72 0.901 0 1.793 0.039 2.675 0.115l-0.115-0.008c51.12 3.066 96.765 24.288 131.055 57.239l-0.069-0.066c23.402 26.531 37.686 61.588 37.686 99.981 0 4.607-0.206 9.165-0.608 13.667l0.042-0.581c-0.462 16.777-13.943 30.258-30.677 30.719l-0.043 0.001z","M887.040 435.627c-0.513 0.029-1.113 0.046-1.717 0.046-17.389 0-31.539-13.87-31.989-31.151l-0.001-0.042c-4.693-233.387-248.747-256-259.413-256-16.587-1.312-29.55-15.095-29.55-31.906 0-0.934 0.040-1.859 0.118-2.773l-0.008 0.119c1.771-16.631 15.725-29.472 32.679-29.472 0.512 0 1.020 0.012 1.526 0.035l-0.072-0.003c108.373 8.107 314.027 85.333 318.72 317.867 0.002 0.13 0.003 0.284 0.003 0.438 0 17.374-13.846 31.514-31.106 31.988l-0.044 0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["satellite"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6261,"id":130,"name":"satellite","prevSize":32,"code":60946,"codes":[60946,60947,60948,60949,60950,60951]},"setIdx":0,"setId":0,"iconIdx":442},{"icon":{"paths":["M590.507 930.56l-176.64-99.413c-8.982-5.053-19.717-8.029-31.147-8.029s-22.165 2.976-31.471 8.196l0.325-0.167-176.64 99.413c-8.939 5.253-19.689 8.356-31.164 8.356-33.891 0-61.461-27.065-62.275-60.76l-0.001-0.076v-476.587c1.197-83.441 69.119-150.623 152.732-150.623 0.605 0 1.21 0.004 1.813 0.011l-0.092-0.001h293.547c0.131-0 0.286-0.001 0.442-0.001 83.61 0 151.53 67.177 152.73 150.501l0.001 0.113v476.587c-1.201 33.459-28.614 60.127-62.256 60.127-10.967 0-21.272-2.834-30.222-7.809l0.318 0.162z","M788.053 85.333h-293.547c-0.131-0-0.286-0.001-0.442-0.001-83.61 0-151.53 67.177-152.73 150.501l-0.001 0.113v14.933h189.44c83.25 0.472 150.696 67.469 151.892 150.5l0.001 0.113v270.507l165.12 93.013c8.937 5.25 19.684 8.351 31.155 8.351 34.039 0 61.702-27.302 62.284-61.203l0.001-0.055v-476.16c-1.202-83.437-69.122-150.614-152.732-150.614-0.155 0-0.31 0-0.466 0.001l0.024-0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["save-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6262,"id":129,"name":"save-2","prevSize":32,"code":60952,"codes":[60952,60953]},"setIdx":0,"setId":0,"iconIdx":443},{"icon":{"paths":["M347.733 885.333c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0z","M672.853 885.333c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0z","M773.973 885.333h-523.947c-90.958 0-164.693-73.736-164.693-164.693h0v-438.613c-0-90.958 73.736-164.693 164.693-164.693l0 0h523.947c90.958-0 164.693 73.736 164.693 164.693v438.613c0 90.958-73.736 164.693-164.693 164.693v0z","M789.333 501.333c0.001-0.102 0.001-0.222 0.001-0.342 0-35.346-28.654-64-64-64s-64 28.654-64 64c0 18.925 8.215 35.932 21.273 47.649l0.060 0.053v37.973c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-37.973c13.036-11.695 21.229-28.56 21.333-47.341l0-0.019z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["save-deposit"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6263,"id":128,"name":"save-deposit","prevSize":32,"code":60954,"codes":[60954,60955,60956,60957]},"setIdx":0,"setId":0,"iconIdx":444},{"icon":{"paths":["M286.293 224h110.080c34.404 0 62.293 27.89 62.293 62.293v110.080c0 34.404-27.89 62.293-62.293 62.293h-110.080c-34.404 0-62.293-27.89-62.293-62.293v-110.080c0-34.404 27.89-62.293 62.293-62.293z","M627.627 224h110.080c34.404 0 62.293 27.89 62.293 62.293v110.080c0 34.404-27.89 62.293-62.293 62.293h-110.080c-34.404 0-62.293-27.89-62.293-62.293v-110.080c0-34.404 27.89-62.293 62.293-62.293z","M286.293 565.333h110.080c34.404 0 62.293 27.89 62.293 62.293v110.080c0 34.404-27.89 62.293-62.293 62.293h-110.080c-34.404 0-62.293-27.89-62.293-62.293v-110.080c0-34.404 27.89-62.293 62.293-62.293z","M627.627 565.333h110.080c34.404 0 62.293 27.89 62.293 62.293v110.080c0 34.404-27.89 62.293-62.293 62.293h-110.080c-34.404 0-62.293-27.89-62.293-62.293v-110.080c0-34.404 27.89-62.293 62.293-62.293z","M82.347 416c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-117.333c-0-119.47 96.85-216.32 216.32-216.32v0h98.56c17.673-0 32 14.327 32 32s-14.327 32-32 32h-98.56c-84.124-0-152.32 68.196-152.32 152.32v117.333c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M941.653 416c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-117.333c0-0 0-0 0-0.001 0-83.974-67.953-152.077-151.87-152.319l-0.023-0h-136.107c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h136.107c119.287 0.243 215.893 96.999 215.893 216.32 0 0-0 0-0 0l-0 0v117.333c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M365.227 973.653h-98.56c-0 0-0 0-0 0-119.32 0-216.077-96.607-216.32-215.87l-0-0.023v-117.76c0-17.673 14.327-32 32-32s32 14.327 32 32v0 117.76c0.243 83.94 68.345 151.893 152.319 151.893 0 0 0-0 0.001-0l98.56-0c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M757.76 973.653h-136.107c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h136.107c83.791-0.242 151.652-68.103 151.893-151.87l0-0.023v-117.76c0-17.673 14.327-32 32-32s32 14.327 32 32v0 117.76c-0.242 119.137-96.756 215.651-215.87 215.893l-0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["scan-barcode"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6264,"id":127,"name":"scan-barcode","prevSize":32,"code":60958,"codes":[60958,60959,60960,60961,60962,60963,60964,60965]},"setIdx":0,"setId":0,"iconIdx":445},{"icon":{"paths":["M197.12 873.387c-61.738 0-111.787-50.049-111.787-111.787s50.049-111.787 111.787-111.787c61.738 0 111.787 50.049 111.787 111.787v0c0 61.738-50.049 111.787-111.787 111.787h0zM197.12 713.813c-26.392 0-47.787 21.395-47.787 47.787s21.395 47.787 47.787 47.787c26.392 0 47.787-21.395 47.787-47.787v0c-0-26.392-21.395-47.787-47.787-47.787h0z","M826.88 873.387c-61.738 0-111.787-50.049-111.787-111.787s50.049-111.787 111.787-111.787c61.738 0 111.787 50.049 111.787 111.787v0c0 61.738-50.049 111.787-111.787 111.787v0zM826.88 713.813c-26.392 0-47.787 21.395-47.787 47.787s21.395 47.787 47.787 47.787c26.392 0 47.787-21.395 47.787-47.787v0c0-26.392-21.395-47.787-47.787-47.787v0z","M643.413 793.6h-426.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h408.32l116.48-229.547c5.282-10.481 15.959-17.545 28.286-17.545 5.25 0 10.2 1.281 14.556 3.548l-0.175-0.083c10.345 5.557 17.26 16.301 17.26 28.661 0 5.092-1.174 9.909-3.265 14.197l0.085-0.192-125.44 247.040c-5.209 10.695-15.997 17.935-28.476 17.935-0.339 0-0.677-0.005-1.013-0.016l0.049 0.001z","M820.053 771.413c-15.148-0.221-27.765-10.796-31.103-24.953l-0.044-0.22-118.613-532.907h-81.067c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h107.093c15.092 0.010 27.739 10.466 31.103 24.529l0.044 0.218 125.867 558.080c0.527 2.175 0.829 4.671 0.829 7.238 0 15.092-10.447 27.744-24.505 31.117l-0.218 0.044z","M374.187 793.6h-2.56c-16.956-0.893-30.367-14.859-30.367-31.958 0-0.765 0.027-1.524 0.080-2.276l-0.006 0.101c0.475-4.139 0.746-8.936 0.746-13.796 0-66.448-50.632-121.070-115.421-127.39l-0.525-0.041c-16.254-1.912-28.745-15.606-28.745-32.217 0-1.126 0.057-2.238 0.169-3.334l-0.011 0.138c1.863-16.063 15.388-28.416 31.799-28.416 1.425 0 2.828 0.093 4.203 0.274l-0.162-0.017c97.719 7.769 174.075 88.981 174.075 188.028 0 7.715-0.463 15.321-1.363 22.793l0.088-0.901c-1.577 16.341-15.239 29.014-31.86 29.014-0.049 0-0.098-0-0.147-0l0.008 0z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scooter-2"]},"attrs":[{},{},{},{},{}],"properties":{"order":6265,"id":126,"name":"scooter-2","prevSize":32,"code":60966},"setIdx":0,"setId":0,"iconIdx":446},{"icon":{"paths":["M496.64 567.893h-359.253c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h359.253c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M515.84 298.667v0h93.013v-30.293c1.119-13.338 6.766-25.179 15.378-34.152l-0.018 0.019h-110.507c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z","M916.053 724.48c0 54.198-43.936 98.133-98.133 98.133s-98.133-43.936-98.133-98.133c0-54.198 43.936-98.133 98.133-98.133s98.133 43.936 98.133 98.133z","M817.92 583.68v-37.547c0-0.048 0-0.104 0-0.161 0-10.188-2.857-19.709-7.813-27.806l0.133 0.233-113.067-201.813h40.107l2.56-98.987c0.012-0.237 0.019-0.515 0.019-0.794 0-8.954-7.259-16.213-16.213-16.213-1.216 0-2.401 0.134-3.541 0.388l0.108-0.020-67.413 14.507c-23.502 4.876-41.154 24.708-42.659 48.914l-0.008 0.152-4.267 83.2v17.493l35.84 125.867c1.298 4.418 2.045 9.494 2.045 14.744 0 8.275-1.855 16.117-5.171 23.132l0.14-0.33-42.667 88.32c-8.703 18.329-27.062 30.776-48.328 30.776-0.86 0-1.715-0.020-2.565-0.061l0.12 0.005-68.267-2.987c-5.061-2.074-8.561-6.962-8.561-12.668 0-1.734 0.323-3.392 0.913-4.918l-0.032 0.093 15.36-52.48c0.268-1.027 0.422-2.205 0.422-3.42 0-7.624-6.060-13.833-13.626-14.073l-0.022-0.001-276.48-2.56c-20.071 0.137-37.536 11.165-46.793 27.465l-0.14 0.268-33.28 60.587c-5.171 8.112-8.242 18-8.242 28.605 0 29.691 24.069 53.76 53.76 53.76 0.498 0 0.994-0.007 1.488-0.020l-0.073 0.002h515.413c-0.002-0.254-0.003-0.553-0.003-0.853 0-77.762 63.038-140.8 140.8-140.8 0.001 0 0.002 0 0.003 0l-0-0z","M154.88 725.333v0c3.502 51.572 46.194 92.079 98.347 92.079s94.845-40.507 98.33-91.776l0.017-0.303h-189.867z","M402.347 459.093h-210.347c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h210.347c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M402.347 349.44h-210.347c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h210.347c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["scooter"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6266,"id":125,"name":"scooter","prevSize":32,"code":60967,"codes":[60967,60968,60969,60970,60971,60972,60973]},"setIdx":0,"setId":0,"iconIdx":447},{"icon":{"paths":["M259.413 85.333h505.173c96.142 0 174.080 77.938 174.080 174.080v320.427c0 96.142-77.938 174.080-174.080 174.080h-505.173c-96.142 0-174.080-77.938-174.080-174.080v-320.427c0-96.142 77.938-174.080 174.080-174.080z","M461.653 753.92h100.267v154.453h-100.267v-154.453z","M696.747 938.667h-369.493c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h369.493c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M85.333 569.173v9.387c-0.001 0.255-0.002 0.556-0.002 0.858 0 95.928 77.402 173.778 173.16 174.502l0.069 0h506.88c95.826-0.724 173.229-78.574 173.229-174.502 0-0.302-0.001-0.603-0.002-0.904l0 0.046v-9.387z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["screen"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6267,"id":124,"name":"screen","prevSize":32,"code":60974,"codes":[60974,60975,60976,60977]},"setIdx":0,"setId":0,"iconIdx":448},{"icon":{"paths":["M768 938.667c70.692 0 128-57.308 128-128v0c0.002-0.287 0.004-0.626 0.004-0.966 0-19.525-4.57-37.982-12.697-54.361l0.32 0.713-231.253-488.107c-7.808-15.666-12.377-34.123-12.377-53.647 0-0.34 0.001-0.679 0.004-1.018l-0 0.052c0-70.692 57.308-128 128-128v0h-512c-70.692 0-128 57.308-128 128v0c-0.002 0.287-0.004 0.626-0.004 0.966 0 19.525 4.57 37.982 12.697 54.361l-0.32-0.713 231.253 488.107c7.808 15.666 12.377 34.123 12.377 53.647 0 0.34-0.001 0.679-0.004 1.018l0-0.052c0 70.692-57.308 128-128 128v0z","M768 85.333c0.146-0.001 0.32-0.001 0.493-0.001 55.399 0 102.577 35.194 120.398 84.443l0.282 0.891c1.16 3.177 1.831 6.844 1.831 10.668 0 17.567-14.155 31.827-31.681 31.998l-0.016 0h-432.64c-0.345 0.009-0.752 0.014-1.159 0.014-21.848 0-40.39-14.157-46.953-33.798l-0.101-0.349c-15.372-54.27-64.28-93.439-122.404-93.866l-0.049-0z","M384 810.667c-0.119 70.602-57.381 127.79-128 127.79-48.418 0-90.558-26.884-112.306-66.538l-0.334-0.665c-2.5-5.263-3.959-11.436-3.959-17.95 0-23.006 18.208-41.759 41-42.635l0.080-0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["scroll"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6268,"id":123,"name":"scroll","prevSize":32,"code":60978,"codes":[60978,60979,60980]},"setIdx":0,"setId":0,"iconIdx":449},{"icon":{"paths":["M751.787 938.667h-479.573c-0.381 0.005-0.83 0.008-1.28 0.008-55.376 0-100.267-44.891-100.267-100.267 0-0.003 0-0.006 0-0.008l-0 0v-652.8c-0-0.002-0-0.005-0-0.008 0-55.376 44.891-100.267 100.267-100.267 0.45 0 0.899 0.003 1.348 0.009l-0.068-0.001h293.973c0.054-0 0.119-0 0.183-0 15.342 0 29.195 6.376 39.053 16.623l0.017 0.017 230.4 233.387c9.935 9.951 16.111 23.658 16.213 38.807l0 0.020v464.213c0 55.376-44.891 100.267-100.267 100.267v0z","M835.84 335.36l-230.4-233.387c-7.493-8.245-17.427-14.15-28.657-16.575l-0.357-0.065v145.067c-0 0-0 0-0 0.001 0 73.049 59.218 132.267 132.267 132.267 0.15 0 0.3-0 0.45-0.001l-0.023 0h141.653c-2.339-10.775-7.61-20.073-14.928-27.301l-0.005-0.005z","M693.333 735.573l-88.747-85.333c19.288-26.507 30.934-59.66 31.146-95.522l0-0.051c0.007-0.557 0.010-1.215 0.010-1.873 0-94.257-76.41-170.667-170.667-170.667s-170.667 76.41-170.667 170.667c0 94.257 76.41 170.667 170.667 170.667 34.582 0 66.762-10.286 93.648-27.965l-0.644 0.398 91.307 85.333c5.741 5.54 13.565 8.954 22.186 8.96l0.001 0c0.099 0.001 0.216 0.002 0.333 0.002 9.026 0 17.13-3.947 22.68-10.21l0.028-0.032c5.159-5.661 8.319-13.222 8.319-21.522 0-8.948-3.673-17.039-9.594-22.846l-0.005-0.005zM363.52 554.667c0.008-57.491 46.615-104.093 104.107-104.093 57.497 0 104.107 46.61 104.107 104.107 0 56.896-45.642 103.133-102.31 104.091l-0.090 0.001c-0.381 0.005-0.83 0.008-1.281 0.008-57.585 0-104.294-46.563-104.532-104.092l-0-0.023z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["search-list"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6269,"id":122,"name":"search-list","prevSize":32,"code":60981,"codes":[60981,60982,60983]},"setIdx":0,"setId":0,"iconIdx":450},{"icon":{"paths":["M624.64 936.107c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-784.213c0-17.673 14.327-32 32-32s32 14.327 32 32v0 784.213c0 17.673-14.327 32-32 32v0z","M534.613 177.493h-278.613c-94.257 0-170.667 76.41-170.667 170.667v0 355.413c0 94.257 76.41 170.667 170.667 170.667v0h276.907z","M768 177.493h-170.667v700.16h170.667c94.257 0 170.667-76.41 170.667-170.667v0-357.12c0.005-0.507 0.009-1.107 0.009-1.707 0-94.257-76.41-170.667-170.667-170.667-0.003 0-0.006 0-0.009 0l0-0z","M305.067 712.96c-17.007-0.193-30.857-13.449-31.995-30.194l-0.005-0.1v-341.333c0-17.673 14.327-32 32-32s32 14.327 32 32v0 341.333c-1.143 16.845-14.993 30.1-31.981 30.293l-0.019 0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["security-check"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6270,"id":121,"name":"security-check","prevSize":32,"code":60984,"codes":[60984,60985,60986,60987]},"setIdx":0,"setId":0,"iconIdx":451},{"icon":{"paths":["M420.267 905.813l-195.84-160c-32.827-26.666-53.66-66.997-53.76-112.196l-0-0.017v-313.6c0.034-58.365 34.632-108.64 84.432-131.47l0.902-0.37 196.267-89.6c17.658-8.275 38.345-13.105 60.16-13.105s42.502 4.829 61.050 13.477l-0.89-0.373 195.413 89.6c50.701 23.2 85.299 73.475 85.333 131.836l0 0.004v313.6c0 0.011 0 0.023 0 0.036 0 45.139-20.677 85.449-53.077 111.974l-0.256 0.204-195.84 160c-24.759 20.606-56.892 33.113-91.947 33.113s-67.188-12.507-92.181-33.302l0.234 0.189z","M619.52 391.68c0.001 0.127 0.001 0.277 0.001 0.427 0 59.382-48.138 107.52-107.52 107.52s-107.52-48.138-107.52-107.52c0-59.381 48.138-107.519 107.519-107.52l0-0c0-0 0.001-0 0.001-0 59.232 0 107.277 47.895 107.519 107.070l0 0.023zM512 525.653c-88.32 0-159.573 47.787-159.573 106.667s71.253 107.093 159.573 107.093 159.573-47.787 159.573-107.093-71.253-106.667-159.573-106.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["security-user"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6271,"id":120,"name":"security-user","prevSize":32,"code":60988,"codes":[60988,60989]},"setIdx":0,"setId":0,"iconIdx":452},{"icon":{"paths":["M802.56 91.307l-653.227 235.52c-37.702 14.553-63.962 50.501-63.962 92.583 0 36.776 20.055 68.868 49.825 85.935l0.483 0.255 181.76 99.84c19.627 11.348 43.175 18.043 68.286 18.043 40.534 0 76.994-17.446 102.28-45.238l0.1-0.112 426.667-458.24c-18.356-21.706-45.608-35.395-76.057-35.395-13.011 0-25.438 2.499-36.827 7.044l0.671-0.236z","M700.16 875.52l232.107-650.667c4.001-10.574 6.318-22.798 6.318-35.564 0-26.757-10.178-51.137-26.873-69.479l0.075 0.083-432.213 465.067c-23.779 25.816-38.358 60.425-38.358 98.44 0 23.347 5.499 45.409 15.272 64.962l-0.381-0.842 67.84 138.24c15.854 32.127 48.381 53.837 85.979 53.837 41.499 0 76.82-26.449 90.026-63.41l0.208-0.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["send"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6272,"id":119,"name":"send","prevSize":32,"code":60990,"codes":[60990,60991]},"setIdx":0,"setId":0,"iconIdx":453},{"icon":{"paths":["M861.013 394.24h-59.307c-11.39-28.217-25.742-52.577-43.128-74.413l0.461 0.6 29.013-50.347c6.567-11.303 10.442-24.873 10.442-39.349 0-29.128-15.693-54.591-39.086-68.396l-0.37-0.202-69.547-40.107c-11.331-6.662-24.958-10.597-39.505-10.597-29.121 0-54.559 15.77-68.239 39.235l-0.202 0.375-29.44 51.2c-11.824-1.883-25.686-3.113-39.777-3.408l-0.329-0.005c-14.279 0.143-28.171 1.224-41.779 3.184l1.672-0.198-28.587-50.773c-13.82-24.099-39.396-40.071-68.703-40.071-14.268 0-27.652 3.786-39.202 10.407l0.385-0.204-69.973 39.68c-24.099 13.82-40.071 39.396-40.071 68.703 0 14.268 3.786 27.652 10.407 39.202l-0.204-0.385 29.013 51.627c-16.646 21.049-30.965 45.093-41.898 70.917l-0.768 2.043h-57.6c-0.381-0.007-0.831-0.011-1.281-0.011-43.122 0-78.080 34.958-78.080 78.080 0 0.154 0 0.307 0.001 0.461l-0-0.024v80.213c-0.001 0.127-0.001 0.277-0.001 0.428 0 43.444 35.098 78.691 78.485 78.932l0.023 0h58.453c11.52 27.884 25.855 51.946 43.127 73.557l-0.461-0.597-29.44 50.347c-6.644 11.281-10.569 24.853-10.569 39.342 0 29.039 15.766 54.395 39.206 67.976l0.377 0.202 69.547 40.533c11.331 6.662 24.958 10.597 39.505 10.597 29.121 0 54.559-15.77 68.239-39.235l0.202-0.375 29.44-51.2c11.728 1.904 25.247 2.991 39.019 2.991 0.532 0 1.064-0.002 1.596-0.005l-0.082 0c15.166-0.123 29.956-1.205 44.459-3.187l-1.793 0.201 29.013 50.347c13.783 23.816 39.139 39.583 68.178 39.583 14.489 0 28.061-3.925 39.711-10.77l-0.369 0.2 69.547-40.107c23.996-13.738 39.904-39.191 39.904-68.36 0-14.415-3.885-27.922-10.665-39.532l0.201 0.372-29.44-51.2c16.262-20.508 30.529-43.801 41.817-68.731l0.849-2.096h57.6c42.27-1.144 76.27-34.995 77.65-77.098l0.003-0.129v-80.64c0.003-0.257 0.005-0.56 0.005-0.864 0-43.145-34.616-78.205-77.591-78.922l-0.067-0.001z","M650.24 512c0 76.583-62.083 138.667-138.667 138.667s-138.667-62.083-138.667-138.667c0-76.583 62.083-138.667 138.667-138.667s138.667 62.083 138.667 138.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["setting-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6273,"id":118,"name":"setting-2","prevSize":32,"code":60992,"codes":[60992,60993]},"setIdx":0,"setId":0,"iconIdx":454},{"icon":{"paths":["M304.213 85.333h415.147c120.884 0 218.88 97.996 218.88 218.88v415.147c0 120.884-97.996 218.88-218.88 218.88h-415.147c-120.884 0-218.88-97.996-218.88-218.88v-415.147c0-120.884 97.996-218.88 218.88-218.88z","M359.253 433.067c17.577-0.237 31.763-14.423 32-31.977l0-0.023v-166.4c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 166.4c0.237 17.577 14.423 31.763 31.977 32l0.023 0z","M359.253 475.733c-0.247-0.002-0.539-0.003-0.832-0.003-64.094 0-116.053 51.959-116.053 116.053 0 53 35.528 97.702 84.067 111.589l0.819 0.2v85.333c-0.002 0.128-0.003 0.279-0.003 0.43 0 17.437 14.136 31.573 31.573 31.573 0.151 0 0.302-0.001 0.452-0.003l-0.023 0c17.577-0.237 31.763-14.423 32-31.977l0-0.023v-85.333c49.358-14.088 84.885-58.79 84.885-111.79 0-64.094-51.959-116.053-116.053-116.053-0.292 0-0.585 0.001-0.877 0.003l0.045-0z","M664.747 590.933c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023v166.4c-0 17.673 14.327 32 32 32s32-14.327 32-32v0-166.4c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0z","M696.747 320.427v-85.333c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0c-0.128-0.002-0.279-0.003-0.43-0.003-17.437 0-31.573 14.136-31.573 31.573 0 0.151 0.001 0.302 0.003 0.452l-0-0.023v85.333c-49.172 14.38-84.48 59.066-84.48 111.998 0 64.33 52.15 116.48 116.48 116.48s116.48-52.15 116.48-116.48c0-52.932-35.308-97.618-83.656-111.791l-0.824-0.207z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["setting-3"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6274,"id":117,"name":"setting-3","prevSize":32,"code":60994,"codes":[60994,60995,60996,60997,60998]},"setIdx":0,"setId":0,"iconIdx":455},{"icon":{"paths":["M432.213 128c-81.031 0.124-148.578 57.705-164.084 134.177l-0.182 1.077h-149.333c-0.383-0.016-0.831-0.026-1.283-0.026-17.532 0-31.771 14.099-31.997 31.578l-0 0.021c-0 0.001-0 0.002-0 0.003 0 17.759 14.276 32.183 31.977 32.424l0.023 0h149.333c15.53 77.599 83.114 135.248 164.162 135.248 92.371 0 167.253-74.882 167.253-167.253 0-91.885-74.095-166.464-165.795-167.247l-0.074-0z","M667.307 327.68c-17.673 0-32-14.327-32-32v0c-0.008-0.255-0.012-0.555-0.012-0.856 0-17.202 13.945-31.147 31.147-31.147 0.154 0 0.308 0.001 0.462 0.003l-0.023-0h238.507c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023c0 0.001 0 0.002 0 0.003 0 17.759-14.276 32.183-31.977 32.424l-0.023 0z","M905.387 695.893h-149.333c-15.528-77.601-83.113-135.253-164.164-135.253-92.371 0-167.253 74.882-167.253 167.253s74.882 167.253 167.253 167.253c81.051 0 148.636-57.652 163.985-134.185l0.179-1.069h149.333c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0z","M356.693 760.747v0h-238.080c-0.385 0.017-0.838 0.026-1.292 0.026-17.673 0-32-14.327-32-32 0-0.309 0.004-0.617 0.013-0.925l-0.001 0.045c0.237-17.577 14.423-31.763 31.977-32l0.023-0h238.080c0.13-0.002 0.284-0.003 0.438-0.003 17.202 0 31.147 13.945 31.147 31.147 0 0.301-0.004 0.601-0.013 0.9l0.001-0.044c0.008 0.268 0.013 0.582 0.013 0.898 0 17.077-13.377 31.030-30.224 31.952l-0.082 0.004z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-4"]},"attrs":[{},{},{},{}],"properties":{"order":6275,"id":116,"name":"setting-4","prevSize":32,"code":60999},"setIdx":0,"setId":0,"iconIdx":456},{"icon":{"paths":["M435.2 905.813l-225.707-130.56c-46.218-26.845-76.8-76.115-76.8-132.528 0-0.058 0-0.116 0-0.174l-0 0.009v-261.12c-0-0.049-0-0.107-0-0.165 0-56.413 30.582-105.683 76.071-132.136l0.729-0.392 225.707-130.56c22.051-12.857 48.539-20.447 76.8-20.447s54.749 7.59 77.537 20.843l-0.737-0.396 225.707 130.56c46.218 26.845 76.8 76.115 76.8 132.528 0 0.058-0 0.116-0 0.174l0-0.009v261.12c0 0.049 0 0.107 0 0.165 0 56.413-30.582 105.683-76.071 132.136l-0.729 0.392-225.707 130.56c-22.051 12.857-48.539 20.447-76.8 20.447s-54.749-7.59-77.537-20.843l0.737 0.396z","M648.533 512c0 75.405-61.128 136.533-136.533 136.533s-136.533-61.128-136.533-136.533c0-75.405 61.128-136.533 136.533-136.533s136.533 61.128 136.533 136.533z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["setting"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6276,"id":115,"name":"setting","prevSize":32,"code":61000,"codes":[61000,61001]},"setIdx":0,"setId":0,"iconIdx":457},{"icon":{"paths":["M514.133 938.667c-0.236 0.001-0.515 0.001-0.794 0.001-58.822 0-114.595-13.052-164.582-36.417l2.389 1.003c-11.048-5.448-18.515-16.632-18.515-29.559 0-4.74 1.004-9.246 2.811-13.317l-0.083 0.209c5.305-11.108 16.448-18.646 29.353-18.646 4.824 0 9.402 1.053 13.516 2.942l-0.202-0.083c39.956 18.634 86.746 29.506 136.075 29.506 46.729 0 91.18-9.756 131.426-27.342l-2.115 0.824c3.407-1.328 7.351-2.098 11.475-2.098 17.909 0 32.427 14.518 32.427 32.427 0 12.603-7.19 23.527-17.692 28.893l-0.183 0.085c-45.187 19.96-97.881 31.579-153.289 31.579-0.709 0-1.418-0.002-2.126-0.006l0.109 0z","M869.547 544c-16.603-0.13-30.225-12.718-31.987-28.869l-0.013-0.144c-10.168-92.747-57.796-172.714-127.199-225.548l-0.801-0.585c-6.59-5.959-10.713-14.54-10.713-24.083 0-17.909 14.518-32.427 32.427-32.427 6.338 0 12.252 1.819 17.248 4.962l-0.134-0.079c84.367 63.999 141.568 160.015 153.448 269.628l0.152 1.732c0.128 1.073 0.2 2.315 0.2 3.575 0 16.542-12.551 30.152-28.649 31.827l-0.138 0.012z","M158.72 544h-3.413c-15.668-2.249-27.577-15.58-27.577-31.693 0-1.462 0.098-2.902 0.288-4.312l-0.018 0.165c12.104-113.272 71.047-210.767 156.795-274.019l1.071-0.754c5.757-5.315 13.481-8.574 21.967-8.574 17.909 0 32.427 14.518 32.427 32.427 0 12.023-6.543 22.518-16.263 28.117l-0.157 0.083c-73.027 53.253-122.716 134.736-132.989 228.085l-0.131 1.461c-1.775 16.296-15.397 28.883-31.987 29.013l-0.013 0z","M635.307 209.493c0 68.572-55.588 124.16-124.16 124.16s-124.16-55.588-124.16-124.16c0-68.572 55.588-124.16 124.16-124.16s124.16 55.588 124.16 124.16z","M337.493 719.36c0 68.572-55.588 124.16-124.16 124.16s-124.16-55.588-124.16-124.16c0-68.572 55.588-124.16 124.16-124.16s124.16 55.588 124.16 124.16z","M934.827 719.36c0 68.572-55.588 124.16-124.16 124.16s-124.16-55.588-124.16-124.16c0-68.572 55.588-124.16 124.16-124.16s124.16 55.588 124.16 124.16z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["share"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6277,"id":114,"name":"share","prevSize":32,"code":61002,"codes":[61002,61003,61004,61005,61006,61007]},"setIdx":0,"setId":0,"iconIdx":458},{"icon":{"paths":["M420.267 905.813l-195.84-160c-32.827-26.666-53.66-66.997-53.76-112.196l-0-0.017v-313.6c0.034-58.365 34.632-108.64 84.432-131.47l0.902-0.37 196.267-89.6c17.658-8.275 38.345-13.105 60.16-13.105s42.502 4.829 61.050 13.477l-0.89-0.373 195.413 89.6c50.701 23.2 85.299 73.475 85.333 131.836l0 0.004v313.6c0 0.011 0 0.023 0 0.036 0 45.139-20.677 85.449-53.077 111.974l-0.256 0.204-195.84 160c-24.759 20.606-56.892 33.113-91.947 33.113s-67.188-12.507-92.181-33.302l0.234 0.189z","M597.333 627.2c-0.097 0.001-0.211 0.002-0.325 0.002-8.521 0-16.242-3.421-21.866-8.965l0.004 0.004-170.667-166.827c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.902-5.708 13.954-9.225 22.827-9.225s16.924 3.517 22.836 9.234l-0.009-0.009 170.667 166.827c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.81 5.557-13.704 8.978-22.397 8.978-0.376 0-0.751-0.006-1.124-0.019l0.054 0.001z","M426.667 627.2c-0.066 0-0.144 0.001-0.222 0.001-8.899 0-16.962-3.585-22.821-9.39l0.002 0.002c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 170.667-166.827c5.846-8.439 15.479-13.896 26.386-13.896 17.673 0 32 14.327 32 32 0 11.668-6.245 21.877-15.574 27.468l-0.145 0.081-170.667 166.827c-5.163 4.942-11.955 8.219-19.493 8.949l-0.134 0.011z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["shield-cross"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6278,"id":113,"name":"shield-cross","prevSize":32,"code":61008,"codes":[61008,61009,61010]},"setIdx":0,"setId":0,"iconIdx":459},{"icon":{"paths":["M375.893 906.667l-195.84-160c-31.921-26.946-52.056-66.983-52.056-111.724 0-0.322 0.001-0.644 0.003-0.966l-0 0.049v-313.6c-0-0.020-0-0.045-0-0.069 0-58.472 34.595-108.864 84.433-131.826l0.901-0.372 196.267-89.6c17.725-8.284 38.485-13.117 60.373-13.117s42.649 4.834 61.271 13.492l-0.897-0.374 194.987 89.6c50.69 23.427 85.248 73.801 85.333 132.256l0 0.011v313.6c-0.046 45.271-20.701 85.708-53.086 112.442l-0.248 0.198-196.267 160c-24.892 20.852-57.26 33.516-92.587 33.516s-67.695-12.664-92.813-33.701l0.226 0.184z","M835.84 695.893c0 101.561-82.332 183.893-183.893 183.893s-183.893-82.332-183.893-183.893c0-101.561 82.332-183.893 183.893-183.893s183.893 82.332 183.893 183.893z","M897.28 900.267c0 22.622-18.338 40.96-40.96 40.96s-40.96-18.338-40.96-40.96c0-22.622 18.338-40.96 40.96-40.96s40.96 18.338 40.96 40.96z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["shield-search"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6279,"id":112,"name":"shield-search","prevSize":32,"code":61011,"codes":[61011,61012,61013]},"setIdx":0,"setId":0,"iconIdx":460},{"icon":{"paths":["M141.653 921.173c-0.097 0.001-0.212 0.002-0.327 0.002-8.732 0-16.625-3.593-22.281-9.382l-0.006-0.006c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 744.533-741.547c5.804-5.751 13.794-9.305 22.613-9.305 17.746 0 32.131 14.386 32.131 32.131 0 8.926-3.64 17.002-9.516 22.824l-0.002 0.002-744.533 741.12c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0z","M330.24 829.867l92.16 75.093c24.717 20.318 56.68 32.636 91.52 32.636s66.803-12.318 91.771-32.837l-0.251 0.201 195.84-160c31.909-26.717 52.057-66.569 52.057-111.127 0-0.382-0.001-0.764-0.004-1.145l0 0.058v-313.173c0.101-1.594 0.158-3.457 0.158-5.333s-0.057-3.739-0.171-5.587l0.012 0.254z","M282.88 791.040l549.973-547.413c-15.083-24.207-36.446-43.24-61.834-55.095l-0.886-0.372-195.84-89.6c-17.725-8.284-38.485-13.117-60.373-13.117s-42.649 4.834-61.271 13.492l0.897-0.374-195.413 89.6c-50.574 23.141-85.122 73.217-85.333 131.386l-0 0.028v313.173c-0 0.011-0 0.023-0 0.036 0 45.139 20.677 85.449 53.077 111.974l0.256 0.204z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["shield-slash"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6280,"id":111,"name":"shield-slash","prevSize":32,"code":61014,"codes":[61014,61015,61016]},"setIdx":0,"setId":0,"iconIdx":461},{"icon":{"paths":["M420.267 905.813l-195.84-160c-32.827-26.666-53.66-66.997-53.76-112.196l-0-0.017v-313.6c0.034-58.365 34.632-108.64 84.432-131.47l0.902-0.37 196.267-89.6c17.658-8.275 38.345-13.105 60.16-13.105s42.502 4.829 61.050 13.477l-0.89-0.373 195.413 89.6c50.701 23.2 85.299 73.475 85.333 131.836l0 0.004v313.6c0 0.011 0 0.023 0 0.036 0 45.139-20.677 85.449-53.077 111.974l-0.256 0.204-195.84 160c-24.759 20.606-56.892 33.113-91.947 33.113s-67.188-12.507-92.181-33.302l0.234 0.189z","M455.68 631.040c-9.037-0.058-17.188-3.804-23.033-9.806l-0.007-0.007-65.28-66.56c-6.126-5.84-9.935-14.063-9.935-23.176 0-17.673 14.327-32 32-32 9.325 0 17.719 3.989 23.568 10.353l0.021 0.023 42.667 42.667 155.733-151.467c5.846-8.439 15.479-13.896 26.386-13.896 17.673 0 32 14.327 32 32 0 11.668-6.245 21.877-15.574 27.468l-0.145 0.081-176.213 174.933c-5.459 5.787-13.18 9.39-21.742 9.39-0.156 0-0.312-0.001-0.468-0.004l0.024 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["shield-tick"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6281,"id":110,"name":"shield-tick","prevSize":32,"code":61017,"codes":[61017,61018]},"setIdx":0,"setId":0,"iconIdx":462},{"icon":{"paths":["M271.787 795.733l567.893-419.413v-56.32c-0.149-58.331-34.701-108.556-84.432-131.468l-0.901-0.372-195.413-89.6c-17.725-8.284-38.485-13.117-60.373-13.117s-42.649 4.834-61.271 13.492l0.897-0.374-195.84 89.6c-50.701 23.2-85.299 73.475-85.333 131.836l-0 0.004v313.6c-0.001 0.174-0.001 0.38-0.001 0.585 0 44.884 20.505 84.979 52.658 111.429l0.25 0.199z","M320.853 835.413l85.333 70.4c24.724 20.499 56.776 32.937 91.733 32.937s67.009-12.438 91.973-33.129l-0.239 0.193 195.84-160c32.656-26.729 53.333-67.039 53.333-112.178 0-0.013-0-0.025-0-0.038l0 0.002v-181.333z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["shield"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6282,"id":109,"name":"shield","prevSize":32,"code":61019,"codes":[61019,61020]},"setIdx":0,"setId":0,"iconIdx":463},{"icon":{"paths":["M332.373 213.333h359.253c65.744 0 119.040 53.296 119.040 119.040v253.867c0 65.744-53.296 119.040-119.040 119.040h-359.253c-65.744 0-119.040-53.296-119.040-119.040v-253.867c0-65.744 53.296-119.040 119.040-119.040z","M454.4 85.333h115.2c27.099 0 49.067 21.968 49.067 49.067v-0 78.933h-213.333v-78.933c-0-27.099 21.968-49.067 49.067-49.067l0-0z","M597.333 938.667h-170.667c-179.794 0-325.547-145.752-325.547-325.547v-0c-0.001-0.162-0.002-0.355-0.002-0.547 0-41.137 25.312-76.363 61.211-90.951l0.657-0.236 300.8-121.173c14.78-6.083 31.938-9.615 49.92-9.615s35.14 3.532 50.817 9.939l-0.897-0.324 298.667 121.173c36.556 14.824 61.868 50.049 61.868 91.187 0 0.192-0.001 0.384-0.002 0.576l0-0.030c0 0.001 0 0.002 0 0.003 0 179.794-145.752 325.547-325.547 325.547-0.45 0-0.9-0.001-1.35-0.003l0.070 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["ship"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6283,"id":108,"name":"ship","prevSize":32,"code":61021,"codes":[61021,61022,61023]},"setIdx":0,"setId":0,"iconIdx":464},{"icon":{"paths":["M517.973 524.8v0c-0.090 0-0.198 0-0.305 0-72.813 0-131.84-59.027-131.84-131.84 0-3.153 0.111-6.28 0.328-9.377l-0.023 0.417 18.347-298.667h219.307l25.6 296.107c0.297 3.323 0.466 7.189 0.466 11.094 0 72.913-58.997 132.046-131.858 132.266l-0.021 0z","M788.907 524.8v0c-72.823-0.009-132.53-56.151-138.209-127.514l-0.031-0.486-26.027-305.067c0-3.535 2.865-6.4 6.4-6.4v0h104.96c0.021-0 0.047-0 0.072-0 89.414 0 163.236 66.757 174.343 153.149l0.092 0.877 16.213 128c0.774 5.511 1.215 11.877 1.215 18.347 0 76.796-62.237 139.057-139.025 139.093l-0.003 0z","M253.013 524.8h-13.227c-72.79-0.030-131.787-59.045-131.787-131.84 0-5.111 0.291-10.154 0.857-15.113l-0.056 0.606 14.507-134.827c10.157-88.952 84.632-157.517 175.281-158.293l0.079-0.001h105.813l-20.48 315.733c-4.382 69.032-61.282 123.404-130.954 123.733l-0.033 0z","M926.72 368.64l-16.213-128c-10.602-87.842-84.674-155.263-174.502-155.307l-104.964-0c-0.017-0-0.037-0-0.057-0-3.535 0-6.4 2.865-6.4 6.4 0 0.301 0.021 0.597 0.061 0.887l-0.004-0.034v18.347l-0.853-25.6h-219.307v0h-105.813c-90.727 0.776-165.203 69.341-175.284 157.473l-0.076 0.82-14.507 134.827c-0.493 4.218-0.774 9.105-0.774 14.057 0 26.579 8.101 51.265 21.968 71.725l-0.287-0.449v271.36c-0 0.127-0 0.277-0 0.427 0 112.165 90.928 203.093 203.093 203.093 0 0 0-0 0-0l370.347-0c112.165 0 203.093-90.928 203.093-203.093v0-276.053c13.509-20.899 21.539-46.439 21.539-73.854 0-6.002-0.385-11.913-1.131-17.712l0.072 0.686z","M520.96 705.707v0c64.33 0 116.48 52.15 116.48 116.48v0 116.48h-232.96v-116.48c0-64.33 52.15-116.48 116.48-116.48v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["shop"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6284,"id":107,"name":"shop","prevSize":32,"code":61024,"codes":[61024,61025,61026,61027,61028]},"setIdx":0,"setId":0,"iconIdx":465},{"icon":{"paths":["M534.613 938.667h-305.92c-82.848-0.242-149.945-67.338-150.187-150.163l-0-0.023v-372.907c0-82.946 67.241-150.187 150.187-150.187v0h192.427c0.162-0.001 0.353-0.001 0.544-0.001 44.085 0 83.721 19.049 111.127 49.365l0.116 0.13 113.493 128c23.823 26.355 38.4 61.461 38.4 99.972 0 0.104-0 0.207-0 0.311l0-0.016v247.040c-0.964 82.209-67.831 148.48-150.177 148.48-0.003 0-0.007-0-0.010-0l0.001 0z","M907.093 261.12l-113.493-128c-27.63-29.445-66.791-47.788-110.237-47.788-0.245 0-0.49 0.001-0.734 0.002l0.038-0h-193.28c-81.879 1.2-147.821 67.741-148.053 149.738l-0 0.022v30.293h79.787c0.162-0.001 0.353-0.001 0.544-0.001 44.085 0 83.721 19.049 111.127 49.365l0.116 0.13 113.493 128c23.823 26.355 38.4 61.461 38.4 99.972 0 0.104-0 0.207-0 0.311l0-0.016v216.747h110.507c82.946 0 150.187-67.241 150.187-150.187v0-248.32c-0.008-38.604-14.58-73.803-38.52-100.403l0.12 0.136z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["simcard-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6285,"id":106,"name":"simcard-2","prevSize":32,"code":61029,"codes":[61029,61030]},"setIdx":0,"setId":0,"iconIdx":466},{"icon":{"paths":["M705.707 938.667h-387.413c-105.096 0-190.293-85.197-190.293-190.293h-0v-472.747c0-105.096 85.197-190.293 190.293-190.293v0h243.627c0.078-0 0.17-0 0.262-0 56.080 0 106.481 24.313 141.237 62.973l0.154 0.174 143.787 160c30.187 33.713 48.641 78.479 48.641 127.556 0 0.156-0 0.312-0.001 0.468l0-0.024v312.747c-0.485 104.728-85.495 189.44-190.291 189.44-0.001 0-0.001-0-0.002-0l-0-0z","M490.667 576v-170.667h-67.84c-68.572 0-124.16 55.588-124.16 124.16v0 46.507z","M533.333 576h192v-46.507c0-68.572-55.588-124.16-124.16-124.16v0h-67.84z","M533.333 618.667v170.667h67.84c68.572 0 124.16-55.588 124.16-124.16v-46.507z","M490.667 618.667h-192v46.507c0 68.572 55.588 124.16 124.16 124.16v0h67.84z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["simcard"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6286,"id":105,"name":"simcard","prevSize":32,"code":61031,"codes":[61031,61032,61033,61034,61035]},"setIdx":0,"setId":0,"iconIdx":467},{"icon":{"paths":["M311.467 298.667h187.733c124.89 0 226.133 101.243 226.133 226.133v187.733c0 124.89-101.243 226.133-226.133 226.133h-187.733c-124.89 0-226.133-101.243-226.133-226.133v-187.733c0-124.89 101.243-226.133 226.133-226.133z","M792.747 85.333h-177.493c-80.589 0-145.92 65.331-145.92 145.92v0 67.413h29.867c124.89 0 226.133 101.243 226.133 226.133v0 29.867h67.413c80.589 0 145.92-65.331 145.92-145.92v0-177.493c0-80.589-65.331-145.92-145.92-145.92h-0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["size"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6287,"id":104,"name":"size","prevSize":32,"code":61036,"codes":[61036,61037]},"setIdx":0,"setId":0,"iconIdx":468},{"icon":{"paths":["M616.96 96c50.663 0 91.733 41.070 91.733 91.733v191.147c0 50.663-41.070 91.733-91.733 91.733s-91.733-41.070-91.733-91.733v-191.147c0-50.663 41.070-91.733 91.733-91.733z","M406.613 555.093c50.663 0 91.733 41.070 91.733 91.733v191.147c0 50.663-41.070 91.733-91.733 91.733s-91.733-41.070-91.733-91.733v-191.147c0-50.663 41.070-91.733 91.733-91.733z","M85.76 398.080c0-50.663 41.070-91.733 91.733-91.733h191.147c50.663 0 91.733 41.070 91.733 91.733s-41.070 91.733-91.733 91.733h-191.147c-50.663 0-91.733-41.070-91.733-91.733z","M563.627 627.627c0-50.663 41.070-91.733 91.733-91.733h191.147c50.663 0 91.733 41.070 91.733 91.733s-41.070 91.733-91.733 91.733h-191.147c-50.663 0-91.733-41.070-91.733-91.733z","M95.147 628.48c-0.155 1.862-0.244 4.029-0.244 6.217 0 43.829 35.531 79.36 79.36 79.36 2.188 0 4.356-0.089 6.499-0.262l-0.282 0.018c41.721-4.646 73.869-39.715 73.869-82.293 0-1.069-0.020-2.134-0.060-3.193l0.005 0.153v-58.88c0.004-0.129 0.006-0.281 0.006-0.433 0-7.864-6.257-14.267-14.065-14.5l-0.022-0.001h-60.587c-0.652-0.018-1.42-0.029-2.19-0.029-42.568 0-77.631 32.133-82.256 73.467l-0.034 0.375z","M386.987 85.333c-1.722-0.132-3.729-0.208-5.754-0.208-44.065 0-79.787 35.722-79.787 79.787 0 2.025 0.075 4.032 0.224 6.020l-0.016-0.265c5.562 41.359 40.079 73.082 82.23 74.237l0.117 0.003h60.587c8.012 0 14.507-6.495 14.507-14.507v0-59.733c0.040-0.967 0.064-2.102 0.064-3.242 0-41.976-31.246-76.655-71.748-82.045l-0.422-0.046z","M636.587 938.667c1.722 0.132 3.729 0.208 5.754 0.208 44.065 0 79.787-35.722 79.787-79.787 0-2.025-0.075-4.032-0.224-6.020l0.016 0.265c-6.062-41.711-41.578-73.391-84.494-73.391-0.295 0-0.59 0.001-0.885 0.004l0.045-0h-58.88c-8.012 0-14.507 6.495-14.507 14.507v-0 58.88c-0.037 0.921-0.058 2.002-0.058 3.087 0 42.427 31.921 77.399 73.057 82.209l0.387 0.037z","M928.853 397.653c0.155-1.862 0.244-4.029 0.244-6.217 0-43.829-35.531-79.36-79.36-79.36-2.188 0-4.356 0.089-6.499 0.262l0.282-0.018c-41.523 4.847-73.444 39.819-73.444 82.246 0 1.086 0.021 2.167 0.062 3.242l-0.005-0.155v58.88c0 8.012 6.495 14.507 14.507 14.507v0h60.16c0.539 0.013 1.175 0.020 1.812 0.020 42.414 0 77.377-31.901 82.205-73.018l0.037-0.388z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["slack"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6288,"id":103,"name":"slack","prevSize":32,"code":61038,"codes":[61038,61039,61040,61041,61042,61043,61044,61045]},"setIdx":0,"setId":0,"iconIdx":469},{"icon":{"paths":["M179.627 227.413c-52.077 0-94.293 42.217-94.293 94.293v0 380.587c0 52.077 42.217 94.293 94.293 94.293v0h76.373v-569.173z","M844.373 227.413h-76.373v569.173h76.8c51.893-0.242 93.867-42.366 93.867-94.292 0-0-0-0.001-0-0.001l0 0v-380.587c0-52.077-42.217-94.293-94.293-94.293v-0z","M640 85.333h-256c-70.692 0-128 57.308-128 128v0 601.6c2.368 68.833 58.737 123.733 127.929 123.733 0.025 0 0.050-0 0.075-0l255.996 0c0.005 0 0.011 0 0.018 0 69.942 0 126.782-56.098 127.981-125.754l0.002-0.112v-599.467c0-70.692-57.308-128-128-128v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["slider-horizontal-2"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6289,"id":102,"name":"slider-horizontal-2","prevSize":32,"code":61046,"codes":[61046,61047,61048]},"setIdx":0,"setId":0,"iconIdx":470},{"icon":{"paths":["M322.987 117.333h378.027c69.986 0 126.72 56.734 126.72 126.72v535.893c0 69.986-56.734 126.72-126.72 126.72h-378.027c-69.986 0-126.72-56.734-126.72-126.72v-535.893c0-69.986 56.734-126.72 126.72-126.72z","M117.333 831.573c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-575.147c0-17.673 14.327-32 32-32s32 14.327 32 32v0 575.147c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M906.667 831.573c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-575.147c0-17.673 14.327-32 32-32s32 14.327 32 32v0 575.147c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["slider-horizontal"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6290,"id":101,"name":"slider-horizontal","prevSize":32,"code":61049,"codes":[61049,61050,61051]},"setIdx":0,"setId":0,"iconIdx":471},{"icon":{"paths":["M244.053 196.267h535.893c69.986 0 126.72 56.734 126.72 126.72v378.027c0 69.986-56.734 126.72-126.72 126.72h-535.893c-69.986 0-126.72-56.734-126.72-126.72v-378.027c0-69.986 56.734-126.72 126.72-126.72z","M799.573 149.333h-575.147c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h575.147c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M799.573 938.667h-575.147c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h575.147c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["slider-vertical-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6291,"id":100,"name":"slider-vertical-2","prevSize":32,"code":61052,"codes":[61052,61053,61054]},"setIdx":0,"setId":0,"iconIdx":472},{"icon":{"paths":["M227.413 844.373c0 52.077 42.217 94.293 94.293 94.293h380.587c52.077 0 94.293-42.217 94.293-94.293v0-76.373h-569.173z","M227.413 179.627v76.373h569.173v-76.373c0-52.077-42.217-94.293-94.293-94.293v0h-380.587c-52.077 0-94.293 42.217-94.293 94.293v0z","M85.333 384v256c0 70.692 57.308 128 128 128v0h601.6c68.833-2.368 123.733-58.737 123.733-127.929 0-0.025-0-0.050-0-0.075l0 0.004v-256c0-0.005 0-0.011 0-0.018 0-69.942-56.098-126.782-125.754-127.981l-0.112-0.002h-599.467c-70.692 0-128 57.308-128 128v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["slider-vertical"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6292,"id":99,"name":"slider-vertical","prevSize":32,"code":61055,"codes":[61055,61056,61057]},"setIdx":0,"setId":0,"iconIdx":473},{"icon":{"paths":["M392.107 85.333h239.787c102.504 0 185.6 83.096 185.6 185.6v482.133c0 102.504-83.096 185.6-185.6 185.6h-239.787c-102.504 0-185.6-83.096-185.6-185.6v-482.133c0-102.504 83.096-185.6 185.6-185.6z","M117.333 853.333c-0.008 0-0.017 0-0.026 0-17.223 0-31.268-13.606-31.972-30.656l-0.002-0.064v-621.227c0-17.673 14.327-32 32-32s32 14.327 32 32v0 621.227c-0.706 17.114-14.751 30.72-31.974 30.72-0.009 0-0.018-0-0.027-0l0.001 0z","M906.667 853.333c-17.673 0-32-14.327-32-32v0-619.947c0-17.673 14.327-32 32-32s32 14.327 32 32v0 621.227c-0.706 17.114-14.751 30.72-31.974 30.72-0.009 0-0.018-0-0.027-0l0.001 0z","M206.507 669.44v85.333c0.965 101.768 83.687 183.895 185.592 183.895 0.303 0 0.605-0.001 0.908-0.002l-0.047 0h238.080c0.254 0.001 0.555 0.002 0.855 0.002 102.205 0 185.115-82.611 185.598-184.703l0-0.046v-85.333z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["slider"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6293,"id":98,"name":"slider","prevSize":32,"code":61058,"codes":[61058,61059,61060,61061]},"setIdx":0,"setId":0,"iconIdx":474},{"icon":{"paths":["M267.093 149.333h489.813c100.383 0 181.76 81.377 181.76 181.76v361.813c0 100.383-81.377 181.76-181.76 181.76h-489.813c-100.383 0-181.76-81.377-181.76-181.76v-361.813c0-100.383 81.377-181.76 181.76-181.76z","M512 554.667c-35.476-0.143-67.957-12.851-93.252-33.899l0.238 0.193-145.067-119.893c-6.865-5.993-11.178-14.759-11.178-24.533 0-17.956 14.556-32.511 32.511-32.511 8.182 0 15.657 3.022 21.372 8.011l-0.038-0.033 144.213 119.893c14.075 11.908 32.432 19.147 52.48 19.147s38.405-7.239 52.6-19.246l-0.12 0.099 140.373-119.040c5.31-4.194 12.1-6.727 19.482-6.727 9.154 0 17.399 3.896 23.166 10.12l0.019 0.020c4.732 5.598 7.608 12.898 7.608 20.869 0 9.689-4.249 18.385-10.986 24.327l-0.035 0.031-140.373 119.040c-24.932 21.161-57.46 34.055-92.997 34.133l-0.017 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["sms"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6294,"id":97,"name":"sms","prevSize":32,"code":61062,"codes":[61062,61063]},"setIdx":0,"setId":0,"iconIdx":475},{"icon":{"paths":["M737.28 636.587c-34.351-15.528-62.117-40.548-80.616-71.714l-0.45-0.82c-18.347-38.827-16.64-42.667-3.413-52.053s49.067-26.453 48.64-42.667-13.653-20.907-32-14.507-29.44 14.507-29.44-2.56v-55.040c0-0.006 0-0.013 0-0.019 0-64.801-52.532-117.333-117.333-117.333-0.75 0-1.499 0.007-2.245 0.021l0.112-0.002h-18.347c-0.254-0.002-0.553-0.003-0.853-0.003-64.801 0-117.333 52.532-117.333 117.333 0 0.001 0 0.002 0 0.003l-0-0v63.573c0 3.84-2.56 5.12-15.36 0s-35.413-14.933-42.667-3.413 0 23.893 17.493 35.413 37.547 22.187 37.547 30.293c-1.917 21.42-10.134 40.62-22.76 56.078l0.146-0.185c-15.983 21.653-36.422 39.089-60.050 51.179l-0.964 0.448c-32 15.787-17.067 20.053-4.693 25.173 17.529 4.827 32.691 10.793 47.033 18.135l-1.38-0.641c5.973 5.547 0 15.787 6.827 20.907s22.613 5.12 30.72 5.973c26.937 0.306 51.771 9.056 72.047 23.719l-0.367-0.253c18.477 12.71 41.335 20.3 65.966 20.3 22.981 0 44.419-6.607 62.518-18.025l-0.484 0.285c23.147-16.618 52.051-26.574 83.282-26.574 2.072 0 4.134 0.044 6.185 0.131l-0.293-0.010c20.48 0 18.347-11.947 20.48-17.92s3.84-14.933 30.293-18.773 43.947-13.653 21.76-26.453z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["snapchat"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6295,"id":96,"name":"snapchat","prevSize":32,"code":61064,"codes":[61064,61065]},"setIdx":0,"setId":0,"iconIdx":476},{"icon":{"paths":["M731.733 471.893c-0.127 0.001-0.277 0.002-0.427 0.002-26.863 0-48.64-21.777-48.64-48.64 0-0.001 0-0.001 0-0.002l-0 0v-81.92c0-47.128-38.205-85.333-85.333-85.333v0h-256c-47.128 0-85.333 38.205-85.333 85.333v0 341.333c0 47.128 38.205 85.333 85.333 85.333v0h341.333c47.128 0 85.333-38.205 85.333-85.333v0-174.933c-0.241-19.845-16.385-35.84-36.264-35.84-0.001 0-0.002 0-0.003 0l0-0zM422.4 394.667h89.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-89.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM593.067 629.333h-166.4c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h168.107c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M336.243 86.061l347.302-1.879c140.44-0.76 254.906 112.473 255.665 252.914l1.865 344.742c0.76 140.44-112.473 254.906-252.914 255.665l-347.302 1.879c-140.44 0.76-254.906-112.473-255.665-252.914l-1.865-344.742c-0.76-140.44 112.473-254.906 252.914-255.665z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["social-media"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6296,"id":95,"name":"social-media","prevSize":32,"code":61066,"codes":[61066,61067]},"setIdx":0,"setId":0,"iconIdx":477},{"icon":{"paths":["M691.2 358.4l-296.533-296.533c-15.83-15.839-37.704-25.637-61.867-25.637s-46.037 9.797-61.866 25.636l-29.867 29.867c-15.839 15.83-25.637 37.704-25.637 61.867s9.797 46.037 25.636 61.866l234.667 234.667c15.839 15.83 25.637 37.704 25.637 61.867s-9.797 46.037-25.636 61.866l-0 0-234.667 236.8c-15.839 15.83-25.637 37.704-25.637 61.867s9.797 46.037 25.636 61.866l29.867 29.867c15.83 15.839 37.704 25.637 61.867 25.637s46.037-9.797 61.866-25.636l390.4-390.4c15.839-15.83 25.637-37.704 25.637-61.867s-9.797-46.037-25.636-61.866l-0-0z","M394.667 61.867c-15.83-15.839-37.704-25.637-61.867-25.637s-46.037 9.797-61.866 25.636l-29.867 29.867c-15.839 15.83-25.637 37.704-25.637 61.867s9.797 46.037 25.636 61.866l201.814 201.814 154.453-153.6z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["soft-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6297,"id":94,"name":"soft-2","prevSize":32,"code":61068,"codes":[61068,61069]},"setIdx":0,"setId":0,"iconIdx":478},{"icon":{"paths":["M785.493 149.333c49.152 0.241 88.932 40.021 89.173 89.15l0 0.023v546.987c-0.241 49.152-40.021 88.932-89.15 89.173l-0.023 0h-546.987c-49.152-0.241-88.932-40.021-89.173-89.15l-0-0.023v-546.987c0.241-49.152 40.021-88.932 89.15-89.173l0.023-0h546.987zM785.493 85.333h-546.987c-84.595 0-153.173 68.578-153.173 153.173v0 546.987c0 84.595 68.578 153.173 153.173 153.173v0h546.987c84.595 0 153.173-68.578 153.173-153.173v0-546.987c0-84.595-68.578-153.173-153.173-153.173v0z","M562.773 360.107h55.467c28.041 0 50.773 22.732 50.773 50.773v-0 527.787h-157.013v-527.36c-0.001-0.127-0.002-0.277-0.002-0.427 0-28.041 22.732-50.773 50.773-50.773 0.001 0 0.001 0 0.002 0l-0-0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["soft-3"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6298,"id":93,"name":"soft-3","prevSize":32,"code":61070,"codes":[61070,61071]},"setIdx":0,"setId":0,"iconIdx":479},{"icon":{"paths":["M936.96 513.707c0 234.699-190.261 424.96-424.96 424.96s-424.96-190.261-424.96-424.96c0-234.699 190.261-424.96 424.96-424.96s424.96 190.261 424.96 424.96z","M384 714.667c-0.359 0.002-0.783 0.004-1.207 0.004-111.223 0-201.387-90.164-201.387-201.387s90.164-201.387 201.387-201.387c40.739 0 78.652 12.097 110.345 32.894l-0.764-0.471c5.396 3.92 8.864 10.21 8.864 17.31 0 11.782-9.551 21.333-21.333 21.333-3.888 0-7.534-1.040-10.673-2.858l0.103 0.055c-24.055-15.521-53.441-24.746-84.982-24.746-87.423 0-158.293 70.87-158.293 158.293 0 87.3 70.67 158.093 157.923 158.293l0.019 0c26.864-0.047 52.133-6.833 74.22-18.758l-0.833 0.411c2.906-1.565 6.359-2.485 10.027-2.485 11.858 0 21.472 9.613 21.472 21.472 0 8.19-4.586 15.31-11.33 18.93l-0.115 0.056c-27.11 14.436-59.271 22.95-93.412 23.040l-0.028 0z","M453.973 513.707c0 38.645-31.328 69.973-69.973 69.973s-69.973-31.328-69.973-69.973c0-38.645 31.328-69.973 69.973-69.973s69.973 31.328 69.973 69.973z","M558.933 634.453c-11.782 0-21.333-9.551-21.333-21.333v0-189.867c0-11.782 9.551-21.333 21.333-21.333v0c11.782 0 21.333 9.551 21.333 21.333v0 189.867c0 11.782-9.551 21.333-21.333 21.333v-0z","M558.933 496.64c-6.715-0.097-12.681-3.221-16.608-8.066l-0.032-0.041c-2.866-3.548-4.6-8.113-4.6-13.084 0-6.85 3.295-12.931 8.386-16.744l0.054-0.039 66.987-52.48c3.733-3.281 8.66-5.284 14.054-5.284 11.782 0 21.333 9.551 21.333 21.333 0 7.313-3.679 13.766-9.288 17.61l-0.073 0.047-66.987 52.053c-3.351 2.922-7.762 4.704-12.59 4.704-0.224 0-0.447-0.004-0.669-0.011l0.032 0.001z","M826.88 634.453h-58.88c-55.939-1.98-100.535-47.805-100.535-104.045 0-4.231 0.252-8.404 0.743-12.503l-0.048 0.495c-0.17-2.284-0.267-4.948-0.267-7.635 0-57.114 43.836-103.99 99.699-108.817l0.408-0.028c56.271 4.856 100.107 51.731 100.107 108.845 0 2.687-0.097 5.35-0.288 7.988l0.021-0.354c0 11.782-9.551 21.333-21.333 21.333v0h-135.68c2.499 29.256 26.863 52.057 56.553 52.057 0.218 0 0.436-0.001 0.654-0.004l-0.033 0h61.013c11.782 0 21.333 9.551 21.333 21.333v0c0 0.032 0 0.069 0 0.107 0 11.782-9.551 21.333-21.333 21.333-0.751 0-1.494-0.039-2.225-0.115l0.092 0.008zM711.253 497.067h109.227c-3.723-27.355-25.125-48.757-52.164-52.445l-0.316-0.035c-29.081 1.982-52.486 23.927-56.705 52.143l-0.041 0.337z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["soft"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6299,"id":92,"name":"soft","prevSize":32,"code":61072,"codes":[61072,61073,61074,61075,61076,61077]},"setIdx":0,"setId":0,"iconIdx":480},{"icon":{"paths":["M785.067 587.093h-164.693c-92.89-1.771-167.513-77.49-167.513-170.638 0-3.312 0.094-6.602 0.281-9.868l-0.021 0.452v-168.107h-170.667c-109.023 0.724-197.124 89.271-197.124 198.396 0 0.452 0.002 0.903 0.005 1.354l-0-0.070v298.667c-0.014 0.892-0.023 1.944-0.023 2.998 0 108.831 87.627 197.196 196.176 198.388l0.113 0.001h308.053c108.655-1.201 196.274-89.563 196.274-198.389 0-0.604-0.003-1.207-0.008-1.81l0.001 0.092v-151.467z","M785.067 533.333h-164.693c-63.968-1.677-115.185-53.931-115.185-118.149 0-3.468 0.149-6.901 0.442-10.292l-0.031 0.441v-166.4zM732.16 85.333h-280.747c-75.205 0.367-140.788 41.213-176.115 101.852l-0.525 0.975c9.415-1.629 20.259-2.56 31.32-2.56 0.089 0 0.178 0 0.268 0l-0.014-0h298.667c123.061 0.237 222.73 100.052 222.73 223.146 0 0.75-0.004 1.499-0.011 2.248l0.001-0.114v306.347c-0.094 19.285-2.578 37.947-7.171 55.762l0.345-1.575c70.286-34.798 117.763-106.026 117.763-188.343 0-0.386-0.001-0.771-0.003-1.157l0 0.059v-286.293c0.005-0.51 0.007-1.114 0.007-1.718 0-114.481-92.203-207.427-206.4-208.628l-0.114-0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["some-files"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6300,"id":91,"name":"some-files","prevSize":32,"code":61078,"codes":[61078,61079]},"setIdx":0,"setId":0,"iconIdx":481},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M764.587 369.92h-505.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h505.173c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M679.253 551.253h-334.507c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h334.507c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M560.213 732.587h-96.427c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h96.427c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["sort"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6301,"id":90,"name":"sort","prevSize":32,"code":61080,"codes":[61080,61081,61082,61083]},"setIdx":0,"setId":0,"iconIdx":482},{"icon":{"paths":["M353.707 85.333h316.587c80.118 0 145.067 64.949 145.067 145.067v563.2c0 80.118-64.949 145.067-145.067 145.067h-316.587c-80.118 0-145.067-64.949-145.067-145.067v-563.2c0-80.118 64.949-145.067 145.067-145.067z","M570.453 326.827c0 32.283-26.17 58.453-58.453 58.453s-58.453-26.17-58.453-58.453c0-32.283 26.17-58.453 58.453-58.453s58.453 26.17 58.453 58.453z","M635.307 642.56c0 68.1-55.206 123.307-123.307 123.307s-123.307-55.206-123.307-123.307c0-68.1 55.206-123.307 123.307-123.307s123.307 55.206 123.307 123.307z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["speaker"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6302,"id":89,"name":"speaker","prevSize":32,"code":61084,"codes":[61084,61085,61086]},"setIdx":0,"setId":0,"iconIdx":483},{"icon":{"paths":["M738.56 471.893c-0.068 0.001-0.147 0.001-0.227 0.001-7.577 0-14.514-2.743-19.87-7.291l0.044 0.037c-186.453-151.467-426.667-53.76-429.653-52.48-3.655 1.567-7.908 2.478-12.373 2.478-17.746 0-32.131-14.386-32.131-32.131 0-13.28 8.056-24.678 19.548-29.574l0.21-0.080c11.093-4.693 278.187-113.92 494.933 62.293 7.162 5.913 11.692 14.793 11.692 24.73 0 7.821-2.806 14.987-7.466 20.546l0.041-0.050c-5.756 7.056-14.45 11.525-24.189 11.525-0.196 0-0.392-0.002-0.587-0.005l0.029 0zM709.12 568.747c2.798-4.695 4.453-10.354 4.453-16.4 0-10.765-5.246-20.305-13.321-26.203l-0.092-0.064c-62.085-44.965-139.771-71.926-223.753-71.926-53.046 0-103.579 10.756-149.539 30.206l2.519-0.947c-10.6 5.361-17.741 16.171-17.741 28.648 0 5.102 1.194 9.925 3.318 14.206l-0.084-0.186c5.218 10.669 15.992 17.887 28.453 17.887 5.184 0 10.076-1.249 14.392-3.463l-0.178 0.083c35.374-14.604 76.447-23.084 119.501-23.084 70.493 0 135.677 22.733 188.619 61.269l-0.92-0.638c4.961 3.17 11 5.071 17.48 5.12l0.013 0c0.094 0.001 0.205 0.002 0.316 0.002 11.099 0 20.86-5.726 26.49-14.386l0.075-0.122zM658.347 691.627c3.137-4.821 5.003-10.72 5.003-17.055 0-10.503-5.129-19.809-13.019-25.549l-0.091-0.063c-51.24-34.378-114.307-54.868-182.159-54.868-38.676 0-75.797 6.657-110.28 18.888l2.306-0.713c-8.637 5.821-14.242 15.566-14.242 26.62 0 17.673 14.327 32 32 32 2.17 0 4.29-0.216 6.34-0.628l-0.205 0.034c25.469-8.917 54.832-14.067 85.397-14.067 54.272 0 104.751 16.239 146.844 44.123l-0.988-0.615c4.983 3.604 11.178 5.819 17.883 5.973l0.037 0.001c10.456-0.529 19.547-5.935 25.103-13.972l0.071-0.108z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["spotify"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6303,"id":88,"name":"spotify","prevSize":32,"code":61087,"codes":[61087,61088]},"setIdx":0,"setId":0,"iconIdx":484},{"icon":{"paths":["M888.747 206.507c-4.95-13.137-17.414-22.312-32.021-22.312-11.37 0-21.441 5.559-27.644 14.107l-0.068 0.099-12.373 14.933c72.405 73.687 118.273 173.655 122.008 284.306l0.019 0.707c0.037-2.908 0.058-6.342 0.058-9.781 0-101.233-18.324-198.187-51.837-287.725l1.859 5.666z","M938.667 498.347c-8.96 180.053-116.907 351.573-517.547 302.933-5.78-1.116-10.086-6.135-10.086-12.16s4.306-11.044 10.008-12.147l0.078-0.013c107.093-30.293 318.72-117.333 384-344.747-78.663 178.309-253.899 300.513-457.676 300.513-25.49 0-50.533-1.912-74.995-5.601l2.751 0.341c-23.919-3.413-42.845-21.331-47.721-44.43l-0.065-0.37c-20.053-85.333-38.827-286.72 196.267-319.573s328.96-69.547 392.96-149.76c-77.493-78.983-185.35-127.938-304.64-127.938-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667 0-0.022-0-0.044-0-0.066l0 0.004c0-3.413 0-8.533 0-13.653z"],"attrs":[{"opacity":0.3},{"opacity":0.3}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["spring-framework"]},"attrs":[{"opacity":0.3},{"opacity":0.3}],"properties":{"order":6304,"id":87,"name":"spring-framework","prevSize":32,"code":61089},"setIdx":0,"setId":0,"iconIdx":485},{"icon":{"paths":["M690.773 938.667l-357.547 0c-136.908 0-247.893-110.986-247.893-247.893l-0-357.547c0-136.908 110.986-247.893 247.893-247.893l357.547-0c136.908 0 247.893 110.986 247.893 247.893v357.547c0 136.908-110.986 247.893-247.893 247.893z","M355.413 725.333c-11.056-0.040-20.768-5.756-26.379-14.384l-0.075-0.122-119.467-176.64c-3.298-4.994-5.261-11.121-5.261-17.707s1.963-12.713 5.337-17.828l-0.075 0.122 119.040-184.747c5.828-8.59 15.546-14.159 26.565-14.159 5.932 0 11.488 1.614 16.25 4.427l-0.149-0.081c8.516 5.928 14.019 15.669 14.019 26.696 0 5.871-1.561 11.378-4.289 16.129l0.084-0.158-106.667 168.533 109.653 159.573c2.965 4.761 4.722 10.541 4.722 16.731 0 10.632-5.185 20.053-13.165 25.872l-0.091 0.063c-5.479 4.404-12.398 7.225-19.956 7.675l-0.098 0.005z","M668.587 725.333c-6.679-0.221-12.841-2.259-18.059-5.631l0.139 0.084c-8.071-5.883-13.256-15.303-13.256-25.936 0-6.19 1.758-11.97 4.801-16.867l-0.079 0.136 107.52-159.573-109.653-168.96c-2.645-4.593-4.206-10.1-4.206-15.971 0-11.026 5.503-20.767 13.913-26.626l0.106-0.070c4.614-2.732 10.169-4.346 16.101-4.346 11.019 0 20.738 5.57 26.494 14.047l0.072 0.112 119.467 184.32c3.298 4.994 5.261 11.121 5.261 17.707s-1.963 12.713-5.337 17.828l0.075-0.122-119.467 176.64c-5.443 7.59-14.024 12.633-23.806 13.222l-0.088 0.004z","M469.333 725.333c-1.154 0.194-2.484 0.305-3.84 0.305s-2.686-0.111-3.981-0.324l0.141 0.019c-14.092-3.367-24.408-15.854-24.408-30.749 0-2.717 0.343-5.354 0.989-7.869l-0.048 0.219 85.333-361.387c3.489-14.197 16.107-24.562 31.147-24.562 17.689 0 32.029 14.34 32.029 32.029 0 2.65-0.322 5.224-0.928 7.687l0.046-0.22-87.467 361.387c-3.678 13.073-15.124 22.641-28.925 23.462l-0.088 0.004z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["square-brackets"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6305,"id":86,"name":"square-brackets","prevSize":32,"code":61090,"codes":[61090,61091,61092,61093]},"setIdx":0,"setId":0,"iconIdx":486},{"icon":{"paths":["M597.333 136.533l78.507 137.813c5.871 10.706 15.908 18.508 27.872 21.277l0.288 0.056 151.040 34.56c45.843 11.92 79.141 52.939 79.141 101.735 0 26.441-9.777 50.598-25.913 69.054l0.105-0.123-102.4 119.467c-6.787 7.975-10.915 18.395-10.915 29.779 0 1.684 0.090 3.347 0.266 4.984l-0.018-0.203 15.36 159.147c0.496 3.762 0.779 8.112 0.779 12.528 0 55.847-45.273 101.12-101.12 101.12-14.472 0-28.233-3.040-40.681-8.516l0.648 0.254-141.653-64c-5.141-2.369-11.156-3.751-17.493-3.751s-12.352 1.382-17.759 3.86l0.266-0.109-141.653 64c-11.307 4.748-24.449 7.507-38.234 7.507-55.847 0-101.12-45.273-101.12-101.12 0-4.149 0.25-8.24 0.735-12.258l-0.048 0.484 14.933-159.147c0.158-1.434 0.249-3.097 0.249-4.781 0-11.384-4.128-21.804-10.97-29.845l0.054 0.065-102.4-119.467c-16.031-18.333-25.808-42.491-25.808-68.932 0-48.796 33.298-89.815 78.412-101.573l0.73-0.162 151.040-34.56c12.252-2.826 22.289-10.628 28.049-21.112l0.111-0.221 78.933-137.813c17.52-29.419 49.161-48.821 85.333-48.821s67.813 19.402 85.083 48.367l0.251 0.454z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["star"]},"attrs":[{}],"properties":{"order":6306,"id":85,"name":"star","prevSize":32,"code":61094},"setIdx":0,"setId":0,"iconIdx":487},{"icon":{"paths":["M665.6 560.64h210.347c0.342-0.007 0.746-0.011 1.15-0.011 34.639 0 62.72 28.081 62.72 62.72 0 4.23-0.419 8.362-1.217 12.357l0.067-0.4c-30.746 153.572-149.788 272.615-300.906 302.949l-2.454 0.411c-3.592 0.73-7.721 1.148-11.947 1.148-34.593 0-62.645-28.006-62.72-62.581l-0-0.007v-211.627c0-57.968 46.992-104.96 104.96-104.96h-0z","M358.4 560.64h-210.347c-0.342-0.007-0.746-0.011-1.15-0.011-34.639 0-62.72 28.081-62.72 62.72 0 4.23 0.419 8.362 1.217 12.357l-0.067-0.4c30.746 153.572 149.788 272.615 300.906 302.949l2.454 0.411c3.592 0.73 7.721 1.148 11.947 1.148 34.593 0 62.645-28.006 62.72-62.581l0-0.007v-211.627c0-57.968-46.992-104.96-104.96-104.96h0z","M159.573 512c-37.137-0.125-67.194-30.259-67.194-67.413 0-4.987 0.542-9.848 1.569-14.527l-0.082 0.446c40.918-196.354 212.545-341.761 418.133-341.761s377.215 145.407 417.649 338.988l0.485 2.773c0.945 4.232 1.487 9.093 1.487 14.080 0 37.154-30.057 67.288-67.182 67.413l-0.012 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["status"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6307,"id":84,"name":"status","prevSize":32,"code":61095,"codes":[61095,61096,61097]},"setIdx":0,"setId":0,"iconIdx":488},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M530.347 597.333h-311.893c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h311.893c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M805.547 597.333h-136.96c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h136.96c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M805.547 747.093h-311.893c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h311.893c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M355.413 747.093h-136.96c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h136.96c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["subtitle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6308,"id":83,"name":"subtitle","prevSize":32,"code":61098,"codes":[61098,61099,61100,61101,61102]},"setIdx":0,"setId":0,"iconIdx":489},{"icon":{"paths":["M512 200.533c-0.021 0-0.046 0-0.071 0-16.922 0-30.777-13.136-31.923-29.767l-0.006-0.1v-52.48c0-17.673 14.327-32 32-32s32 14.327 32 32v0 52.48c-1.152 16.731-15.006 29.867-31.929 29.867-0.025 0-0.050-0-0.075-0l0.004 0z","M512 938.667c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-51.2c0-17.673 14.327-32 32-32s32 14.327 32 32v0 50.347c0.002 0.128 0.003 0.278 0.003 0.429 0 17.76-14.277 32.185-31.98 32.424l-0.023 0z","M269.227 301.227c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003-35.84-35.84c-8.278-5.953-13.606-15.557-13.606-26.406 0-17.909 14.518-32.427 32.427-32.427 10.849 0 20.453 5.328 26.34 13.509l0.066 0.096 35.413 35.84c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.663 5.733-13.5 9.308-22.172 9.387l-0.015 0z","M790.187 822.613c-8.801-0.197-16.738-3.738-22.624-9.397l0.011 0.011-35.413-35.84c-6.274-5.858-10.185-14.178-10.185-23.412 0-17.673 14.327-32 32-32 9.234 0 17.554 3.911 23.394 10.166l0.017 0.019 35.84 35.413c5.708 5.902 9.225 13.954 9.225 22.827s-3.517 16.924-9.234 22.836l0.009-0.009c-5.976 5.742-14.084 9.305-23.024 9.387l-0.016 0z","M170.667 544h-52.48c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.48c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M905.813 544h-50.347c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h50.347c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M233.813 822.613c-8.956-0.082-17.064-3.644-23.051-9.397l0.011 0.011c-5.708-5.902-9.225-13.954-9.225-22.827s3.517-16.924 9.234-22.836l-0.009 0.009 35.84-35.413c5.858-6.274 14.178-10.185 23.412-10.185 17.673 0 32 14.327 32 32 0 9.234-3.911 17.554-10.166 23.394l-0.019 0.017-35.84 35.84c-5.773 5.556-13.541 9.076-22.127 9.385l-0.059 0.002z","M754.773 301.227c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 35.84-35.84c5.953-8.278 15.557-13.606 26.406-13.606 17.909 0 32.427 14.518 32.427 32.427 0 10.849-5.328 20.453-13.509 26.34l-0.096 0.066-35.84 35.413c-5.704 5.989-13.713 9.736-22.599 9.813l-0.014 0z","M751.787 512c0 132.431-107.356 239.787-239.787 239.787s-239.787-107.356-239.787-239.787c0-132.431 107.356-239.787 239.787-239.787s239.787 107.356 239.787 239.787z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["sun"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6309,"id":82,"name":"sun","prevSize":32,"code":61103,"codes":[61103,61104,61105,61106,61107,61108,61109,61110,61111]},"setIdx":0,"setId":0,"iconIdx":490},{"icon":{"paths":["M771.413 85.333h-518.827c-0.005-0-0.012-0-0.018-0-68.057 0-123.369 54.57-124.567 122.341l-0.002 0.112v469.333c0 68.807 55.779 124.587 124.587 124.587v0h48.64c0.199-0.002 0.435-0.002 0.671-0.002 27.228 0 51.736 11.646 68.815 30.229l0.061 0.067 72.533 78.507c17.365 18.212 41.813 29.536 68.907 29.536s51.542-11.324 68.871-29.498l0.036-0.038 77.227-81.067c17.189-17.895 41.317-29.014 68.043-29.014 0.079 0 0.157 0 0.236 0l-0.012-0h42.667c0.637 0.012 1.387 0.018 2.14 0.018 68.364 0 123.867-55.062 124.58-123.258l0.001-0.067v-469.333c-1.199-67.883-56.511-122.453-124.568-122.453-0.006 0-0.013 0-0.019 0l0.001-0z","M440.747 610.987h-118.187c-31.544-0.042-57.099-25.624-57.099-57.173 0-14.602 5.474-27.925 14.482-38.030l-0.050 0.057c16.431-17.036 34.44-32.335 53.859-45.736l1.181-0.77c32.853-25.6 73.813-57.6 73.813-85.333 0.019-0.449 0.030-0.975 0.030-1.505 0-10.002-3.911-19.090-10.286-25.819l0.016 0.017c-6.95-6.619-16.378-10.692-26.757-10.692-0.493 0-0.984 0.009-1.473 0.027l0.071-0.002c-21.208-0-38.4 17.192-38.4 38.4v0c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c0-56.554 45.846-102.4 102.4-102.4s102.4 45.846 102.4 102.4l-0 0c0 58.027-52.48 98.56-98.56 134.4-13.227 10.24-26.027 20.053-35.413 29.013h101.973c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M680.107 610.987v0c-0.001 0-0.002 0-0.003 0-17.437 0-31.573-14.136-31.573-31.573 0-0.15 0.001-0.3 0.003-0.449l-0 0.023v-28.16h-97.28c-18.546-0.529-34.486-11.182-42.537-26.607l-0.13-0.273c-3.626-6.677-5.758-14.621-5.758-23.063 0-10.72 3.437-20.636 9.27-28.708l-0.099 0.144 112.64-163.413c9.199-13.272 24.352-21.855 41.509-21.855 5.286 0 10.381 0.815 15.168 2.325l-0.357-0.097c20.43 6.402 34.995 25.161 34.995 47.322 0 0.313-0.003 0.626-0.009 0.938l0.001-0.047v149.333h17.067c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-17.493v28.587c-0.138 17.568-14.412 31.756-31.999 31.756-1.203 0-2.39-0.066-3.558-0.196l0.144 0.013zM577.707 486.827h70.827v-104.533z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["support-24"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6310,"id":81,"name":"support-24","prevSize":32,"code":61112,"codes":[61112,61113,61114]},"setIdx":0,"setId":0,"iconIdx":491},{"icon":{"paths":["M747.947 469.333h-469.333c-0.507 0.005-1.107 0.008-1.707 0.008-105.803 0-191.573-85.77-191.573-191.573 0-0.153 0-0.305 0.001-0.458l-0 0.024c-0-0.129-0-0.282-0-0.434 0-105.803 85.77-191.573 191.573-191.573 0.6 0 1.2 0.003 1.799 0.008l-0.092-0.001h469.333c105.487 0.726 190.72 86.407 190.72 191.996 0 0.002-0 0.003-0 0.005l0-0c0 0.001 0 0.003 0 0.004 0 105.589-85.233 191.27-190.651 191.995l-0.069 0zM640 277.333c0.004 58.907 47.759 106.659 106.667 106.659 58.91 0 106.667-47.756 106.667-106.667 0-58.46-47.029-105.936-105.318-106.658l-0.068-0.001c-0.381-0.005-0.83-0.008-1.28-0.008-58.91 0-106.667 47.756-106.667 106.667 0 0.003 0 0.005 0 0.008l-0-0z","M747.947 938.667h-469.333c-0.507 0.005-1.107 0.008-1.707 0.008-105.803 0-191.573-85.77-191.573-191.573 0-0.153 0-0.305 0.001-0.458l-0 0.024c-0-0.129-0-0.282-0-0.434 0-105.803 85.77-191.573 191.573-191.573 0.6 0 1.2 0.003 1.799 0.008l-0.092-0.001h469.333c105.487 0.726 190.72 86.407 190.72 191.996 0 0.002-0 0.003-0 0.005l0-0c0 0.001 0 0.003 0 0.004 0 105.589-85.233 191.27-190.651 191.995l-0.069 0zM170.667 746.667c0.004 58.907 47.759 106.659 106.667 106.659 58.91 0 106.667-47.756 106.667-106.667 0-58.46-47.029-105.936-105.318-106.658l-0.068-0.001c-0.381-0.005-0.83-0.008-1.28-0.008-58.91 0-106.667 47.756-106.667 106.667 0 0.003 0 0.005 0 0.008l-0-0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["switch"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6311,"id":80,"name":"switch","prevSize":32,"code":61115,"codes":[61115,61116]},"setIdx":0,"setId":0,"iconIdx":492},{"icon":{"paths":["M808.107 512l-296.107-296.107c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003 29.44 29.44-238.080 238.507c-11.074 11.111-17.92 26.441-17.92 43.369 0 6.764 1.093 13.272 3.112 19.358l-0.125-0.434 32.427 96.427-162.987 162.56c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 162.56-162.987 96.427 32.427c5.652 1.894 12.16 2.987 18.924 2.987 16.929 0 32.259-6.847 43.371-17.922l-0.002 0.002 238.507-238.507 29.44 29.44c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003c7.542-7.69 12.197-18.235 12.197-29.867s-4.655-22.177-12.203-29.874l0.007 0.007z","M836.267 305.92l-116.907 116.907-118.187-118.187 116.907-116.907z","M884.48 386.987c-8.89-0.129-16.884-3.863-22.604-9.803l-0.010-0.010-213.333-215.893c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 213.333 216.32c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.875 5.648-13.812 9.189-22.575 9.386l-0.038 0.001z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["syringe"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6312,"id":79,"name":"syringe","prevSize":32,"code":61117,"codes":[61117,61118,61119]},"setIdx":0,"setId":0,"iconIdx":493},{"icon":{"paths":["M338.773 87.893h346.453c139.971-0 253.44 113.469 253.44 253.44v342.613c0 139.971-113.469 253.44-253.44 253.44h-346.453c-139.971 0-253.44-113.469-253.44-253.44v-342.613c0-139.971 113.469-253.44 253.44-253.44z","M733.013 361.813l-25.173-20.48c-7.082-5.426-16.066-8.694-25.813-8.694s-18.731 3.269-25.916 8.77l0.102-0.075-24.747 20.48c-6.884 4.964-15.488 7.939-24.788 7.939-22.905 0-41.594-18.049-42.622-40.7l-0.003-0.093v-240.64c0-23.564 19.103-42.667 42.667-42.667v0h153.173c23.564 0 42.667 19.103 42.667 42.667v0 240.64c-0.159 23.443-19.2 42.386-42.666 42.386-10.225 0-19.609-3.597-26.958-9.594l0.077 0.061zM591.36 512c0.002-0.127 0.003-0.277 0.003-0.427 0-17.909-14.518-32.427-32.427-32.427-0.001 0-0.002 0-0.003 0l-217.6-0c-0.001-0-0.002-0-0.003-0-17.909 0-32.427 14.518-32.427 32.427 0 0.15 0.001 0.3 0.003 0.449l-0-0.023c-0.002 0.128-0.003 0.278-0.003 0.429 0 17.995 14.468 32.611 32.407 32.85l0.023 0h217.6c17.961-0.239 32.429-14.855 32.429-32.851 0-0.151-0.001-0.302-0.003-0.452l0 0.023zM690.347 679.68c0-0.001 0-0.002 0-0.003 0-18.23-14.658-33.037-32.831-33.277l-0.023-0h-344.747c-18.38-0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28v0h344.747c18.048-0.237 32.616-14.805 32.853-32.831l0-0.023z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tablet-book"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6313,"id":78,"name":"tablet-book","prevSize":32,"code":61120,"codes":[61120,61121]},"setIdx":0,"setId":0,"iconIdx":494},{"icon":{"paths":["M551.68 547.84l51.627-58.88c5.43-5.473 8.786-13.011 8.786-21.333s-3.356-15.86-8.788-21.335l0.002 0.002c-4.932-5.382-11.993-8.744-19.84-8.744s-14.908 3.362-19.822 8.724l-0.018 0.020-51.627 60.587-54.613-55.467c-4.932-5.382-11.993-8.744-19.84-8.744s-14.908 3.362-19.822 8.724l-0.018 0.020c-5.144 5.599-8.298 13.098-8.298 21.333s3.153 15.735 8.318 21.356l-0.021-0.023 55.040 55.893-52.053 58.88c-5.236 5.559-8.453 13.071-8.453 21.333s3.217 15.774 8.468 21.349l-0.015-0.016c4.932 5.382 11.993 8.744 19.84 8.744s14.908-3.362 19.822-8.724l0.018-0.020 51.627-60.16 54.613 55.467c4.792 5.192 11.607 8.456 19.186 8.533l0.014 0c8.129-0.207 15.384-3.777 20.459-9.363l0.021-0.024c5.144-5.599 8.298-13.098 8.298-21.333s-3.153-15.735-8.318-21.356l0.021 0.023z","M717.653 160.853v9.813c0 47.128-38.205 85.333-85.333 85.333v0h-241.493c-47.128 0-85.333-38.205-85.333-85.333v0-9.813c-106.45 22.553-185.174 115.739-185.174 227.312 0 0.186 0 0.371 0.001 0.557l-0-0.029v315.733c-0.002 0.38-0.004 0.83-0.004 1.28 0 128.511 104.059 232.719 232.514 232.96l0.023 0h318.293c128.477-0.243 232.533-104.449 232.533-232.96 0-0-0-0-0-0l0 0v-316.587c0-0.128 0-0.28 0-0.431 0-111.962-79.129-205.443-184.513-227.569l-1.514-0.266z","M674.987 128v43.093c0 22.857-18.529 41.387-41.387 41.387h-242.773c-22.857 0-41.387-18.529-41.387-41.387v-43.093c0-22.857 18.529-41.387 41.387-41.387h242.773c22.857 0 41.387 18.529 41.387 41.387z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tablet-delete"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6314,"id":77,"name":"tablet-delete","prevSize":32,"code":61122,"codes":[61122,61123,61124]},"setIdx":0,"setId":0,"iconIdx":495},{"icon":{"paths":["M717.653 160.853v9.813c0 47.128-38.205 85.333-85.333 85.333v0h-241.493c-47.128 0-85.333-38.205-85.333-85.333v0-9.813c-106.45 22.553-185.174 115.739-185.174 227.312 0 0.186 0 0.371 0.001 0.557l-0-0.029v315.733c-0.002 0.38-0.004 0.83-0.004 1.28 0 128.511 104.059 232.719 232.514 232.96l0.023 0h318.293c128.477-0.243 232.533-104.449 232.533-232.96 0-0-0-0-0-0l0 0v-316.587c0-0.128 0-0.28 0-0.431 0-111.962-79.129-205.443-184.513-227.569l-1.514-0.266z","M674.987 128v43.093c0 22.857-18.529 41.387-41.387 41.387h-242.773c-22.857 0-41.387-18.529-41.387-41.387v-43.093c0-22.857 18.529-41.387 41.387-41.387h242.773c22.857 0 41.387 18.529 41.387 41.387z","M658.773 488.96c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 104.533l-178.347-138.24c-5.542-4.725-12.787-7.6-20.704-7.6-17.673 0-32 14.327-32 32 0 10.899 5.449 20.526 13.772 26.304l0.105 0.069 177.067 136.96-95.147 23.467c-14.244 3.441-24.66 16.078-24.66 31.147 0 17.643 14.277 31.951 31.908 32l0.005 0h7.68l160-39.253c1.849-1.036 4.006-1.786 6.298-2.121l0.102-0.012c10.523-5.658 17.623-16.473 17.919-28.973l0.001-0.040z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tablet-down"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6315,"id":76,"name":"tablet-down","prevSize":32,"code":61125,"codes":[61125,61126,61127]},"setIdx":0,"setId":0,"iconIdx":496},{"icon":{"paths":["M491.947 676.693v0c0.063 0 0.139 0.001 0.214 0.001 10.369 0 19.571-4.998 25.327-12.717l0.060-0.083 145.067-189.013c4.69-5.779 7.53-13.224 7.53-21.333 0-18.769-15.215-33.984-33.984-33.984-10.66 0-20.173 4.908-26.404 12.587l-0.050 0.063-119.467 156.16-77.653-90.88c-6.026-6.046-14.362-9.786-23.571-9.786-18.38 0-33.28 14.9-33.28 33.28 0 7.184 2.276 13.836 6.147 19.275l-0.069-0.102 104.533 125.013c6.211 7.077 15.274 11.521 25.376 11.521 0.079 0 0.158-0 0.236-0.001l-0.012 0z","M717.653 159.147v11.52c0 47.128-38.205 85.333-85.333 85.333v0h-241.493c-47.128 0-85.333-38.205-85.333-85.333v0-11.52c-106.505 22.903-185.173 116.268-185.173 228.006 0 0.092 0 0.183 0 0.275l-0-0.014v315.733c-0 128.425 104.109 232.533 232.533 232.533v0h318.293c0.127 0 0.277 0 0.427 0 128.189 0 232.107-103.918 232.107-232.107 0-0.15-0-0.3-0-0.45l0 0.023v-315.733c0-0.025 0-0.054 0-0.083 0-112.045-79.101-205.615-184.505-227.914l-1.521-0.269z","M674.987 126.72v43.093c0 22.857-18.529 41.387-41.387 41.387h-242.773c-22.857 0-41.387-18.529-41.387-41.387v-43.093c0-22.857 18.529-41.387 41.387-41.387h242.773c22.857 0 41.387 18.529 41.387 41.387z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tablet-ok"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6316,"id":75,"name":"tablet-ok","prevSize":32,"code":61128,"codes":[61128,61129,61130]},"setIdx":0,"setId":0,"iconIdx":497},{"icon":{"paths":["M517.547 545.28h-201.813c-18.38 0-33.28-14.9-33.28-33.28s14.9-33.28 33.28-33.28v0h201.813c18.38 0 33.28 14.9 33.28 33.28s-14.9 33.28-33.28 33.28v0z","M727.893 666.453c0-18.38-14.9-33.28-33.28-33.28v-0h-378.88c-18.38 0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28h378.88c18.38 0 33.28-14.9 33.28-33.28l-0 0z","M400.64 85.333h242.773c22.857-0 41.387 18.529 41.387 41.387v43.093c0 22.857-18.529 41.387-41.387 41.387h-242.773c-22.857 0-41.387-18.529-41.387-41.387v-43.093c0-22.857 18.529-41.387 41.387-41.387z","M729.173 162.56v8.107c0 47.128-38.205 85.333-85.333 85.333v0h-243.2c-47.128 0-85.333-38.205-85.333-85.333v0-11.093c-114.654 16.448-201.859 113.823-202.24 231.64l-0 0.040v312.32c0 129.838 105.255 235.093 235.093 235.093v0h327.68c129.838 0 235.093-105.255 235.093-235.093v0-312.32c-0.132-110.811-76.908-203.653-180.159-228.37l-1.601-0.324z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tablet-text-down"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6317,"id":74,"name":"tablet-text-down","prevSize":32,"code":61131,"codes":[61131,61132,61133,61134]},"setIdx":0,"setId":0,"iconIdx":498},{"icon":{"paths":["M517.547 701.44h-200.533c-18.144 0-32.853-14.709-32.853-32.853s14.709-32.853 32.853-32.853h200.533c18.144 0 32.853 14.709 32.853 32.853s-14.709 32.853-32.853 32.853h-0zM725.333 515.413c-0.241-18.196-15.047-32.853-33.277-32.853-0.001 0-0.002 0-0.003 0l-375.040-0c-16.69 1.954-29.518 16.012-29.518 33.067s12.828 31.113 29.362 33.052l0.156 0.015h375.893c18.009-0.476 32.427-15.189 32.427-33.269 0-0.004-0-0.008-0-0.012l0 0.001zM682.667 176.213v-42.667c0-23.564-19.103-42.667-42.667-42.667v0h-238.507c-23.564 0-42.667 19.103-42.667 42.667v0 42.667c0 23.564 19.103 42.667 42.667 42.667v0h240.64c22.628-1.168 40.533-19.8 40.533-42.613 0-0.019-0-0.037-0-0.056l0 0.003z","M725.333 170.667v6.827c0 47.128-38.205 85.333-85.333 85.333v0h-238.507c-47.128 0-85.333-38.205-85.333-85.333v0-11.52c-113.529 16.627-199.766 113.178-200.107 229.938l-0 0.036v309.333c-0 128.896 104.491 233.387 233.387 233.387v0h325.12c128.896 0 233.387-104.491 233.387-233.387v0-309.333c-1.060-109.923-78.088-201.555-181.052-224.981l-1.562-0.299z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tablet-text-up"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6318,"id":73,"name":"tablet-text-up","prevSize":32,"code":61135,"codes":[61135,61136]},"setIdx":0,"setId":0,"iconIdx":499},{"icon":{"paths":["M729.173 162.56v8.107c0 47.128-38.205 85.333-85.333 85.333v0h-243.2c-47.128 0-85.333-38.205-85.333-85.333v0-11.093c-114.654 16.448-201.859 113.823-202.24 231.64l-0 0.040v312.32c0 129.838 105.255 235.093 235.093 235.093v0h327.68c129.838 0 235.093-105.255 235.093-235.093v0-312.32c-0.132-110.811-76.908-203.653-180.159-228.37l-1.601-0.324z","M400.64 85.333h242.773c22.857-0 41.387 18.529 41.387 41.387v43.093c0 22.857-18.529 41.387-41.387 41.387h-242.773c-22.857 0-41.387-18.529-41.387-41.387v-43.093c0-22.857 18.529-41.387 41.387-41.387z","M365.227 649.387c0 17.673 14.327 32 32 32s32-14.327 32-32v0-104.533l178.347 137.813c5.758 5.607 13.633 9.064 22.315 9.064 17.673 0 32-14.327 32-32 0-11.573-6.144-21.711-15.348-27.331l-0.141-0.080-177.067-137.387 95.147-23.467c13.491-3.962 23.174-16.23 23.174-30.759 0-17.12-13.444-31.1-30.35-31.958l-0.077-0.003c-1.154-0.201-2.484-0.316-3.84-0.316s-2.686 0.115-3.979 0.336l0.139-0.020-160 38.827-5.547 3.413c-10.526 5.453-17.655 16.157-17.919 28.551l-0.001 0.036z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tablet-up"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6319,"id":72,"name":"tablet-up","prevSize":32,"code":61137,"codes":[61137,61138,61139]},"setIdx":0,"setId":0,"iconIdx":500},{"icon":{"paths":["M302.080 85.333h419.84c72.578 0 131.413 58.836 131.413 131.413v590.507c0 72.578-58.836 131.413-131.413 131.413h-419.84c-72.578 0-131.413-58.836-131.413-131.413v-590.507c0-72.578 58.836-131.413 131.413-131.413z","M594.773 266.667h-165.547c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h165.547c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M586.667 748.8c0 41.237-33.429 74.667-74.667 74.667s-74.667-33.429-74.667-74.667c0-41.237 33.429-74.667 74.667-74.667s74.667 33.429 74.667 74.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tablet"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6320,"id":71,"name":"tablet","prevSize":32,"code":61140,"codes":[61140,61141,61142]},"setIdx":0,"setId":0,"iconIdx":501},{"icon":{"paths":["M760.747 864h-334.080c-0.426 0.004-0.929 0.006-1.433 0.006-51.865 0-98.559-22.139-131.148-57.483l-0.112-0.123-161.707-176.64c-29.537-31.675-47.669-74.322-47.669-121.203 0-44.636 16.437-85.432 43.587-116.667l-0.185 0.217 151.893-170.667c32.73-37.724 80.744-61.443 134.299-61.443 0.336 0 0.671 0.001 1.006 0.003l-0.052-0h345.6c98.263 0 177.92 79.657 177.92 177.92v0 348.16c0 98.263-79.657 177.92-177.92 177.92h-0z","M675.84 640c-9.037-0.058-17.188-3.804-23.033-9.806l-0.007-0.007-197.973-203.52c-8.439-5.846-13.896-15.479-13.896-26.386 0-17.673 14.327-32 32-32 11.668 0 21.877 6.245 27.468 15.574l0.081 0.145 198.4 203.093c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.292 4.849-12.373 7.82-20.149 7.82-1.018 0-2.024-0.051-3.016-0.15l0.125 0.010z","M477.867 640c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 197.547-201.387c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-198.4 203.093c-5.504 4.784-12.742 7.699-20.661 7.699-0.386 0-0.771-0.007-1.154-0.021l0.055 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tag-cross"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6321,"id":70,"name":"tag-cross","prevSize":32,"code":61143,"codes":[61143,61144,61145]},"setIdx":0,"setId":0,"iconIdx":502},{"icon":{"paths":["M704.427 938.667h-337.92c-73.049 0-132.267-59.218-132.267-132.267v0-341.333c-0-166.363 134.864-301.227 301.227-301.227h0c166.179 0.243 300.8 135.014 300.8 301.226 0 0-0 0-0 0.001l0-0v341.333c0 0.127 0.001 0.277 0.001 0.427 0 72.813-59.027 131.84-131.84 131.84-0 0-0-0-0.001-0l0 0zM533.76 228.693c-0.127-0.001-0.277-0.001-0.427-0.001-35.818 0-64.853 29.036-64.853 64.853s29.036 64.853 64.853 64.853c35.817 0 64.853-29.035 64.853-64.852l0-0c0-0.010 0-0.023 0-0.035 0-35.067-27.832-63.634-62.612-64.815l-0.108-0.003z","M535.467 306.347c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-189.013c0-17.673 14.327-32 32-32s32 14.327 32 32v0 189.013c0 17.673-14.327 32-32 32v0z","M571.307 613.12c-28.16-14.080-42.667-21.76-42.667-36.693-0.014-0.285-0.021-0.619-0.021-0.954 0-11.782 9.551-21.333 21.333-21.333 1.671 0 3.298 0.192 4.859 0.556l-0.144-0.028c15.857 0.23 29.939 7.633 39.177 19.101l0.077 0.099c3.431 3.629 8.278 5.888 13.653 5.888s10.223-2.259 13.645-5.879l0.008-0.009 18.773-20.907c3.034-3.381 4.889-7.874 4.889-12.8s-1.855-9.419-4.905-12.818l0.016 0.018c-14.67-16.175-33.618-28.218-55.060-34.356l-0.834-0.204v-27.733c0-10.368-8.405-18.773-18.773-18.773v-0h-25.6c-10.368 0-18.773 8.405-18.773 18.773v-0 28.587c-36.581 11.184-62.727 44.645-62.727 84.213 0 0.394 0.003 0.787 0.008 1.18l-0.001-0.060c0 55.040 42.667 76.373 74.667 93.013s45.653 24.32 45.653 45.227c0 11.947-3.413 25.173-29.013 25.173-21.19-0.873-40.17-9.667-54.197-23.477l0.011 0.010c-3.315-3.003-7.734-4.841-12.583-4.841-0.829 0-1.645 0.054-2.445 0.158l0.094-0.010c-5.492 0.815-10.162 3.804-13.186 8.047l-0.041 0.060-16.64 24.32c-1.932 2.987-3.081 6.638-3.081 10.557 0 5.577 2.326 10.61 6.060 14.183l0.007 0.007c18.4 16.624 41.195 28.73 66.429 34.375l0.984 0.185v27.307c0 10.368 8.405 18.773 18.773 18.773v-0h25.6c10.368 0 18.773-8.405 18.773-18.773v-0-28.587c38.876-10.357 67.048-45.246 67.048-86.715 0-1.164-0.022-2.324-0.066-3.477l0.005 0.166c-1.948-48.26-34.683-88.373-79.009-101.351l-0.778-0.195z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tag"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6322,"id":69,"name":"tag","prevSize":32,"code":61146,"codes":[61146,61147,61148]},"setIdx":0,"setId":0,"iconIdx":503},{"icon":{"paths":["M463.787 940.8l-132.693-51.627c-54.658-21.761-92.587-74.217-92.587-135.533 0-0.052 0-0.103 0-0.155l-0 0.008v-237.227l273.493-157.44 273.067 158.72v238.080c0.001 0.153 0.001 0.334 0.001 0.515 0 60.755-37.348 112.787-90.338 134.388l-0.97 0.35-122.453 47.787c-16.643 7.265-36.035 11.492-56.415 11.492-18.368 0-35.933-3.434-52.090-9.694l0.984 0.335z","M849.92 266.24l-270.080-170.667c-20.799-13.263-46.152-21.139-73.345-21.139-28.84 0-55.611 8.859-77.74 24.004l0.472-0.305-258.56 174.507c-36.77 24.941-60.613 66.539-60.613 113.707s23.843 88.766 60.134 113.4l0.479 0.307 264.96 176.213c21.525 14.752 48.134 23.559 76.8 23.559s55.275-8.807 77.269-23.862l-0.469 0.303 256-174.933v133.973c0 17.673 14.327 32 32 32s32-14.327 32-32v0-222.293c2.448-9.64 3.852-20.706 3.852-32.101 0-48.033-24.959-90.236-62.616-114.347l-0.543-0.325z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["teacher"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6323,"id":68,"name":"teacher","prevSize":32,"code":61149,"codes":[61149,61150]},"setIdx":0,"setId":0,"iconIdx":504},{"icon":{"paths":["M868.693 298.667c-6.889-0.090-13.241-2.314-18.445-6.040l0.098 0.067c-93.234-69.061-210.519-110.545-337.493-110.545s-244.259 41.484-339.040 111.639l1.547-1.093c-5.401 4.288-12.318 6.879-19.84 6.879-17.702 0-32.052-14.35-32.052-32.052 0-10.18 4.746-19.251 12.146-25.123l0.066-0.051c3.413-2.987 360.107-275.627 751.36 0 6.934 5.907 11.304 14.646 11.304 24.406 0 16.846-13.018 30.652-29.543 31.907l-0.108 0.007zM750.933 473.6c3.131-4.859 4.992-10.794 4.992-17.163 0-10.377-4.939-19.6-12.595-25.447l-0.077-0.057c-64.368-46.527-144.873-74.419-231.893-74.419s-167.526 27.892-233.064 75.224l1.171-0.805c-7.591 5.827-12.436 14.904-12.436 25.113 0 7.474 2.597 14.341 6.938 19.749l-0.048-0.062c5.977 6.842 14.717 11.14 24.461 11.14 6.796 0 13.104-2.091 18.316-5.664l-0.11 0.072c53.826-38.911 121.149-62.238 193.92-62.238s140.094 23.327 194.899 62.911l-0.979-0.673c5.106 3.659 11.458 5.883 18.325 5.973l0.022 0c0.763 0.067 1.65 0.106 2.547 0.106 10.649 0 20.032-5.418 25.543-13.648l0.070-0.111zM618.24 671.573c4.623-5.564 7.429-12.781 7.429-20.654 0-9.804-4.351-18.592-11.227-24.538l-0.041-0.035c-26.987-24.975-63.224-40.294-103.040-40.294s-76.053 15.32-103.14 40.386l0.1-0.091c-4.212 5.367-6.756 12.219-6.756 19.665 0 17.673 14.327 32 32 32 6.478 0 12.506-1.925 17.543-5.233l-0.121 0.075c15.75-14.779 37.001-23.857 60.373-23.857s44.624 9.078 60.421 23.901l-0.048-0.044c5.501 4.773 12.731 7.681 20.641 7.681 0.094 0 0.187-0 0.28-0.001l-0.014 0c0.873 0.083 1.889 0.13 2.915 0.13 8.804 0 16.799-3.463 22.698-9.101l-0.012 0.012z","M855.893 941.653h-687.787c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h687.787c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tech-wifi"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6324,"id":67,"name":"tech-wifi","prevSize":32,"code":61151,"codes":[61151,61152]},"setIdx":0,"setId":0,"iconIdx":505},{"icon":{"paths":["M469.333 277.333c-0.245 105.618-85.921 191.142-191.573 191.142-105.803 0-191.573-85.77-191.573-191.573 0-105.353 85.042-190.843 190.224-191.569l0.069-0c0.38-0.003 0.83-0.004 1.28-0.004 105.803 0 191.573 85.77 191.573 191.573 0 0.152-0 0.303-0.001 0.454l0-0.024zM744.107 85.333c-0.254-0.001-0.553-0.002-0.853-0.002-106.039 0-192 85.961-192 192s85.961 192 192 192c106.038 0 191.999-85.96 192-191.998l-0 0c0.001-0.253 0.002-0.553 0.002-0.853 0-105.567-85.579-191.147-191.147-191.147-0.001 0-0.001 0-0.002 0l0-0zM274.773 554.667c-104.932 1.444-189.44 86.844-189.44 191.983 0 106.039 85.961 192 192 192 106.033 0 191.99-85.952 192-191.982l0-0.001c0-0.128 0-0.279 0-0.431 0-105.803-85.77-191.573-191.573-191.573-0.45 0-0.9 0.002-1.35 0.005l0.069-0zM744.107 554.667c-0.254-0.001-0.553-0.002-0.853-0.002-106.039 0-192 85.961-192 192s85.961 192 192 192c106.038 0 191.999-85.96 192-191.998l-0 0c0.001-0.253 0.002-0.553 0.002-0.853 0-105.567-85.579-191.147-191.147-191.147-0.001 0-0.001 0-0.002 0l0-0z","M744.107 682.667h-3.413l-29.44-29.44c-24.843-24.411-42.028-56.542-47.666-92.503l-0.121-0.937c-2.037-14.483-3.2-31.212-3.2-48.213s1.163-33.731 3.414-50.114l-0.214 1.901c5.759-36.898 22.944-69.029 47.763-93.417l0.024-0.023 29.44-28.587h3.413c0.764 0.033 1.66 0.051 2.56 0.051 35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.328 0-63.971 28.625-64 63.946l-0 0.003v3.413l-29.013 29.44c-24.769 25.335-57.555 42.74-94.25 48.106l-0.896 0.108c-14.419 2.038-31.073 3.202-48 3.202s-33.581-1.164-49.889-3.415l1.889 0.214c-36.815-5.846-68.818-23.187-92.969-48.167l-0.044-0.046-28.16-29.44s0 0 0-3.413c-0.003-35.344-28.656-63.994-64-63.994-35.346 0-64 28.654-64 64 0 35.046 28.169 63.513 63.101 63.994l0.045 0h3.413l29.44 29.44c24.978 24.383 42.301 56.506 48.087 92.487l0.126 0.953c2.037 14.483 3.2 31.212 3.2 48.213s-1.163 33.731-3.414 50.114l0.214-1.901c-5.913 36.934-23.236 69.057-48.18 93.408l-0.033 0.032-29.44 28.587h-3.413c-34.977 0.481-63.147 28.948-63.147 63.994 0 35.346 28.654 64 64 64 35.344 0 63.997-28.651 64-63.994l0-0s0-2.133 0-3.413l29.44-29.44c24.195-25.027 56.199-42.367 92.077-48.090l0.936-0.123c14.355-2.037 30.935-3.2 47.787-3.2s33.432 1.163 49.664 3.413l-1.877-0.213c36.959 5.817 69.107 23.161 93.401 48.174l0.039 0.040 29.013 29.44v3.413c0.013 35.336 28.662 63.977 64 63.977 35.346 0 64-28.654 64-64s-28.654-64-64-64c-0.6 0-1.198 0.008-1.795 0.025l0.088-0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["technology-2"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6325,"id":66,"name":"technology-2","prevSize":32,"code":61153,"codes":[61153,61154]},"setIdx":0,"setId":0,"iconIdx":506},{"icon":{"paths":["M472.32 717.227c-43.229-83.769-119.491-145.366-211.101-168.065l-2.232-0.468c-3.599-0.831-7.731-1.308-11.975-1.308-30.633 0-55.467 24.833-55.467 55.467 0 4.244 0.477 8.376 1.379 12.347l-0.071-0.372c32.311 133.181 143.148 233.217 279.656 249.030l1.517 0.143z","M760.32 548.693c-94.648 22.71-171.711 84.402-214.612 166.732l-0.854 1.802v-177.493c0-20.030-16.237-36.267-36.267-36.267s-36.267 16.237-36.267 36.267v-0 362.667c0 20.030 16.237 36.267 36.267 36.267s36.267-16.237 36.267-36.267v0-38.4c138.148-15.908 249.122-115.939 281.138-246.935l0.462-2.239c0.831-3.599 1.308-7.731 1.308-11.975 0-30.633-24.833-55.467-55.467-55.467-4.244 0-8.376 0.477-12.347 1.379l0.372-0.071z","M690.773 267.52c0 100.619-81.568 182.187-182.187 182.187s-182.187-81.568-182.187-182.187c0-100.619 81.568-182.187 182.187-182.187s182.187 81.568 182.187 182.187z","M590.933 564.907l-64.427 32.427c-5.16 2.629-11.253 4.17-17.707 4.17s-12.547-1.541-17.933-4.274l0.226 0.104-64.427-32.427c-12.991-6.462-21.76-19.644-21.76-34.875 0-0.039 0-0.079 0-0.118l-0 0.006v-73.387c0.241-21.73 17.913-39.253 39.678-39.253 0.001 0 0.002 0 0.002 0l128-0c0.001-0 0.001-0 0.002-0 21.765 0 39.437 17.523 39.678 39.231l0 0.023v73.387c0.003 0.174 0.004 0.38 0.004 0.585 0 14.991-8.591 27.976-21.118 34.301l-0.22 0.101z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["technology-3"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6326,"id":65,"name":"technology-3","prevSize":32,"code":61155,"codes":[61155,61156,61157,61158]},"setIdx":0,"setId":0,"iconIdx":507},{"icon":{"paths":["M830.293 829.867c-7.993-0.012-15.307-2.915-20.953-7.718l0.046 0.038-134.827-114.347h-139.093c-0.899 0.014-1.96 0.022-3.022 0.022-112.237 0-203.474-89.911-205.615-201.635l-0.003-0.2c1.908-112.111 93.239-202.262 205.625-202.262 1.060 0 2.118 0.008 3.175 0.024l-0.16-0.002h128l155.733-128c5.481-4.478 12.557-7.192 20.267-7.192 17.757 0 32.152 14.395 32.152 32.152 0 10.047-4.609 19.018-11.827 24.914l-0.058 0.046-166.4 134.827c-5.367 4.512-12.354 7.253-19.981 7.253-0.026 0-0.051-0-0.077-0l0.004 0h-137.813c-0.901-0.021-1.963-0.032-3.027-0.032-77.044 0-139.722 61.507-141.61 138.097l-0.003 0.175c2.124 76.578 64.708 137.846 141.602 137.846 1.068 0 2.134-0.012 3.196-0.035l-0.158 0.003h151.040c7.852 0.041 15.019 2.942 20.519 7.713l143.748 121.993c6.585 5.887 10.711 14.407 10.711 23.891 0 8.211-3.093 15.7-8.177 21.366l0.026-0.030c-5.674 6.487-13.83 10.681-22.97 11.091l-0.070 0.002z","M564.48 187.733v-102.4h-72.533c-0.258-0.004-0.562-0.007-0.868-0.007-31.128 0-56.446 24.877-57.158 55.834l-0.001 0.066v48.64c-28.62 7.637-53.58 17.696-76.929 30.35l1.836-0.91-35.413-34.133c-10.734-10.094-25.229-16.297-41.173-16.297s-30.439 6.202-41.205 16.326l0.031-0.029-52.053 49.92c-10.423 10.030-16.897 24.099-16.897 39.68s6.474 29.65 16.879 39.663l0.018 0.017 35.413 34.133c-11.938 20.641-22.377 44.535-30.067 69.631l-0.653 2.476h-49.92c-0.385-0.009-0.839-0.015-1.294-0.015-31.131 0-56.451 24.881-57.158 55.842l-0.001 0.066v70.827c0.709 31.027 26.028 55.908 57.159 55.908 0.455 0 0.909-0.005 1.361-0.016l-0.067 0.001h49.92c8.343 27.572 18.782 51.466 31.62 73.806l-0.9-1.7-35.413 34.133c-10.423 10.030-16.897 24.099-16.897 39.68s6.474 29.65 16.879 39.663l0.018 0.017 52.053 49.92c10.734 10.094 25.229 16.297 41.173 16.297s30.439-6.202 41.205-16.326l-0.031 0.029 35.413-34.133c21.513 11.744 46.474 21.803 72.659 28.88l2.435 0.56v48.64c0.713 31.023 26.031 55.9 57.159 55.9 0.305 0 0.61-0.002 0.913-0.007l-0.046 0.001h72.533v-99.413z","M938.667 184.32c0 39.352-33.047 71.253-73.813 71.253s-73.813-31.901-73.813-71.253c0-39.352 33.047-71.253 73.813-71.253s73.813 31.901 73.813 71.253z","M938.667 498.347c0 36.289-30.564 65.707-68.267 65.707s-68.267-29.418-68.267-65.707c0-36.289 30.564-65.707 68.267-65.707s68.267 29.418 68.267 65.707z","M632.747 506.453c0 36.289-30.564 65.707-68.267 65.707s-68.267-29.418-68.267-65.707c0-36.289 30.564-65.707 68.267-65.707s68.267 29.418 68.267 65.707z","M938.667 809.813c0 39.352-33.047 71.253-73.813 71.253s-73.813-31.901-73.813-71.253c0-39.352 33.047-71.253 73.813-71.253s73.813 31.901 73.813 71.253z","M808.107 538.453h-218.027c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h218.027c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["technology-4"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6327,"id":64,"name":"technology-4","prevSize":32,"code":61159,"codes":[61159,61160,61161,61162,61163,61164,61165]},"setIdx":0,"setId":0,"iconIdx":508},{"icon":{"paths":["M689.067 213.333h-354.56c-0.005-0-0.012-0-0.018-0-68.057 0-123.369 54.57-124.567 122.341l-0.002 0.112v354.56c0 68.807 55.779 124.587 124.587 124.587v0h354.56c68.807 0 124.587-55.779 124.587-124.587v-354.56c-1.199-67.883-56.511-122.453-124.568-122.453-0.006 0-0.013 0-0.019 0l0.001-0zM661.76 604.16c-1.18 34.183-29.175 61.446-63.538 61.446-0.313 0-0.625-0.002-0.936-0.007l0.047 0.001h-179.627c-35.111 0-63.573-28.463-63.573-63.573v-180.48c0-35.111 28.463-63.573 63.573-63.573h179.627c35.111 0 63.573 28.463 63.573 63.573h-0z","M118.187 456.96h194.133v-66.133h-194.133c-18.144 0-32.853 14.709-32.853 32.853h0c-0 0.001-0 0.002-0 0.003 0 18.23 14.658 33.037 32.831 33.277l0.023 0z","M456.96 298.667v-180.48c-0.241-18.196-15.047-32.853-33.277-32.853-0.001 0-0.002 0-0.003 0l0-0c-0.001-0-0.002-0-0.003-0-18.144 0-32.853 14.709-32.853 32.853 0 0.15 0.001 0.3 0.003 0.449l-0-0.023v180.053z","M632.747 298.667v-180.48c0-18.144-14.709-32.853-32.853-32.853s-32.853 14.709-32.853 32.853l0 0v180.48z","M722.773 456.96h183.040c18.196-0.241 32.853-15.047 32.853-33.277 0-0.001-0-0.002-0-0.003l0 0c0-18.144-14.709-32.853-32.853-32.853v0h-183.040z","M905.813 567.040h-183.040v65.707h183.040c18.144 0 32.853-14.709 32.853-32.853s-14.709-32.853-32.853-32.853h0z","M312.32 567.040h-194.133c-18.144 0-32.853 14.709-32.853 32.853s14.709 32.853 32.853 32.853h194.133z","M567.040 728.747v177.067c0 18.144 14.709 32.853 32.853 32.853s32.853-14.709 32.853-32.853v-177.067z","M390.827 728.747v177.067c0 18.144 14.709 32.853 32.853 32.853v0c0.001 0 0.002 0 0.003 0 18.23 0 33.037-14.658 33.277-32.831l0-0.023v-177.067z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["technology"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6328,"id":63,"name":"technology","prevSize":32,"code":61166,"codes":[61166,61167,61168,61169,61170,61171,61172,61173,61174]},"setIdx":0,"setId":0,"iconIdx":509},{"icon":{"paths":["M469.333 106.667h85.333v42.667c0 23.564-19.103 42.667-42.667 42.667v0 0c-23.564 0-42.667-19.103-42.667-42.667v0-42.667z","M768 224v576c0 64.801-52.532 117.333-117.333 117.333v0h-277.333c-64.801 0-117.333-52.532-117.333-117.333v0-576c0-64.801 52.532-117.333 117.333-117.333v0h277.333c64.801 0 117.333 52.532 117.333 117.333v0zM682.667 490.667c0-0.026 0-0.056 0-0.086 0-94.257-76.41-170.667-170.667-170.667-14.234 0-28.062 1.743-41.281 5.026l1.174-0.247c-74.842 19.17-129.28 86.014-129.28 165.573 0 44.044 16.684 84.192 44.077 114.467l-0.13-0.146 95.573 107.52c7.834 8.596 19.076 13.969 31.573 13.969s23.74-5.373 31.543-13.935l0.030-0.034 94.72-107.52c26.493-29.928 42.67-69.519 42.67-112.889 0-0.363-0.001-0.725-0.003-1.087l0 0.056z","M576 490.667c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["telephone-geolocation"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6329,"id":62,"name":"telephone-geolocation","prevSize":32,"code":61175,"codes":[61175,61176,61177]},"setIdx":0,"setId":0,"iconIdx":510},{"icon":{"paths":["M469.333 128c0 23.564-19.103 42.667-42.667 42.667v0 213.333h-256v-213.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h256c23.564 0 42.667 19.103 42.667 42.667v0zM853.333 85.333h-256c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0 426.667h256v-426.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z","M426.667 384v426.667c0 70.692-57.308 128-128 128s-128-57.308-128-128v0-426.667zM597.333 597.333v213.333c0 70.692 57.308 128 128 128s128-57.308 128-128v0-213.333z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["test-tubes"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6330,"id":61,"name":"test-tubes","prevSize":32,"code":61178,"codes":[61178,61179]},"setIdx":0,"setId":0,"iconIdx":511},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M715.947 437.333h-407.893c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h407.893c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M885.333 650.667h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M715.947 864h-407.893c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h407.893c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["text-align-center"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6331,"id":60,"name":"text-align-center","prevSize":32,"code":61180,"codes":[61180,61181,61182,61183]},"setIdx":0,"setId":0,"iconIdx":512},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M885.333 437.333h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M885.333 650.667h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M546.133 864h-407.467c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h407.467c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["text-align-justify-center"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6332,"id":59,"name":"text-align-justify-center","prevSize":32,"code":61184,"codes":[61184,61185,61186,61187]},"setIdx":0,"setId":0,"iconIdx":513},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M546.133 437.333h-407.467c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h407.467c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M885.333 650.667h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M546.133 864h-407.467c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h407.467c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["text-align-left"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6333,"id":58,"name":"text-align-left","prevSize":32,"code":61188,"codes":[61188,61189,61190,61191]},"setIdx":0,"setId":0,"iconIdx":514},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M885.333 437.333h-407.467c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h407.467c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M885.333 650.667h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M885.333 864h-407.467c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h407.467c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["text-align-right"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6334,"id":57,"name":"text-align-right","prevSize":32,"code":61192,"codes":[61192,61193,61194,61195]},"setIdx":0,"setId":0,"iconIdx":515},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M545.707 531.2h-204.373c-17.673 0-32-14.327-32-32v0-192.853c0-17.673 14.327-32 32-32v0h203.52c70.692 0 128 57.308 128 128s-57.308 128-128 128v0zM375.040 467.2h170.667c32.253-3.839 57.024-31.027 57.024-64s-24.771-60.161-56.719-63.97l-0.306-0.030h-170.667z","M572.587 749.653h-231.253c-17.673 0-32-14.327-32-32v0-218.453c0.929-16.689 14.689-29.87 31.527-29.87 0.166 0 0.332 0.001 0.498 0.004l-0.025-0h230.4c77.997 0 141.227 63.229 141.227 141.227s-63.229 141.227-141.227 141.227h0zM374.187 685.653h198.4c42.651 0 77.227-34.576 77.227-77.227s-34.576-77.227-77.227-77.227v0h-198.4z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["text-bold"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6335,"id":56,"name":"text-bold","prevSize":32,"code":61196,"codes":[61196,61197,61198]},"setIdx":0,"setId":0,"iconIdx":516},{"icon":{"paths":["M878.933 251.733h-485.12c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h485.12c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M658.773 465.067h-264.96c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h264.96c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M878.933 678.4h-485.12c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h485.12c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M658.773 891.733h-264.96c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h264.96c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M256 219.733c0 30.633-24.833 55.467-55.467 55.467s-55.467-24.833-55.467-55.467c0-30.633 24.833-55.467 55.467-55.467s55.467 24.833 55.467 55.467z","M256 646.4c0 30.633-24.833 55.467-55.467 55.467s-55.467-24.833-55.467-55.467c0-30.633 24.833-55.467 55.467-55.467s55.467 24.833 55.467 55.467z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["text-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6336,"id":55,"name":"text-circle","prevSize":32,"code":61199,"codes":[61199,61200,61201,61202,61203,61204]},"setIdx":0,"setId":0,"iconIdx":517},{"icon":{"paths":["M339.2 72.533h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M478.293 749.653h-5.12c-15.36-2.745-26.869-16.002-26.869-31.947 0-1.827 0.151-3.618 0.441-5.362l-0.026 0.189 67.413-410.88c2.645-15.243 15.773-26.687 31.573-26.687 17.684 0 32.021 14.336 32.021 32.021 0 1.884-0.163 3.73-0.475 5.525l0.028-0.191-65.28 410.453c-2.72 15.389-15.991 26.927-31.957 26.927-0.616 0-1.227-0.017-1.834-0.051l0.084 0.004z","M651.093 338.347h-210.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h210.773c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M590.507 749.653h-210.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h210.773c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["text-italic"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6337,"id":54,"name":"text-italic","prevSize":32,"code":61205,"codes":[61205,61206,61207,61208]},"setIdx":0,"setId":0,"iconIdx":518},{"icon":{"paths":["M875.947 275.627h-485.12c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h485.12c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M655.36 488.96h-264.533c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h264.533c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M875.947 702.293h-485.12c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h485.12c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M655.36 915.627h-264.533c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h264.533c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M220.16 378.453c-17.673 0-32-14.327-32-32v0-113.067l-14.933 18.773c-5.82 5.977-13.945 9.685-22.936 9.685-17.673 0-32-14.327-32-32 0-6.1 1.707-11.801 4.669-16.652l-0.080 0.141 72.107-92.587c5.911-7.533 15.015-12.327 25.239-12.327 3.641 0 7.139 0.608 10.4 1.728l-0.225-0.067c12.675 4.508 21.614 16.338 21.76 30.276l0 0.018v206.080c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M260.693 803.413h-99.413c-0.023 0-0.050 0-0.078 0-11.939 0-22.371-6.452-28-16.060l-0.083-0.153c-2.695-4.59-4.287-10.109-4.287-16s1.592-11.41 4.369-16.151l-0.082 0.151 85.333-141.653c-2.571-7.507-9.567-12.808-17.8-12.808-0.192 0-0.384 0.003-0.574 0.009l0.028-0.001c-10.654 0.239-19.2 8.933-19.2 19.622 0 0.002 0 0.003 0 0.005l-0-0c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c-1.221-5.41-1.92-11.623-1.92-18 0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333c0 6.377-0.699 12.59-2.026 18.567l0.106-0.567c-0.114 6.008-1.845 11.588-4.774 16.354l0.080-0.141-61.867 102.827h42.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["text-number"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6338,"id":53,"name":"text-number","prevSize":32,"code":61209,"codes":[61209,61210,61211,61212,61213,61214]},"setIdx":0,"setId":0,"iconIdx":519},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M524.8 736.427h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h128c2.222 0.272 4.794 0.427 7.402 0.427 35.582 0 64.427-28.845 64.427-64.427s-28.845-64.427-64.427-64.427c-2.608 0-5.181 0.155-7.708 0.456l0.306-0.030h-69.973c-70.692 0-128-57.308-128-128s57.308-128 128-128v0h128c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-128c-2.222-0.272-4.794-0.427-7.402-0.427-35.582 0-64.427 28.845-64.427 64.427s28.845 64.427 64.427 64.427c2.608 0 5.181-0.155 7.708-0.456l-0.306 0.030h69.973c70.692 0 128 57.308 128 128s-57.308 128-128 128v0z","M759.040 576h-494.080c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h494.080c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["text-strikethrough"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6339,"id":52,"name":"text-strikethrough","prevSize":32,"code":61215,"codes":[61215,61216,61217]},"setIdx":0,"setId":0,"iconIdx":520},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M663.040 792.32h-302.080c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h302.080c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M512 669.44c-101.878-3.497-183.138-86.927-183.138-189.335 0-2.137 0.035-4.266 0.106-6.387l-0.008 0.309v-210.347c0-17.673 14.327-32 32-32s32 14.327 32 32v-0 210.347c-0.035 1.109-0.054 2.414-0.054 3.724 0 67.559 52.339 122.893 118.681 127.666l0.413 0.024c66.755-4.797 119.094-60.131 119.094-127.69 0-1.309-0.020-2.614-0.059-3.914l0.005 0.191v-210.347c0-17.673 14.327-32 32-32s32 14.327 32 32v0 210.347c0.062 1.811 0.098 3.941 0.098 6.078 0 102.408-81.26 185.838-182.818 189.326l-0.32 0.009z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["text-underline"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6340,"id":51,"name":"text-underline","prevSize":32,"code":61218,"codes":[61218,61219,61220]},"setIdx":0,"setId":0,"iconIdx":521},{"icon":{"paths":["M781.653 225.707h-184.32v609.28c0.251 2.799 0.394 6.055 0.394 9.344 0 26.064-8.989 50.029-24.036 68.963l0.175-0.228c-14.343 15.812-34.969 25.701-57.904 25.701-1.394 0-2.779-0.037-4.155-0.109l0.192 0.008c-0.844 0.032-1.835 0.050-2.83 0.050-23.145 0-43.988-9.855-58.562-25.598l-0.048-0.052c-15.085-18.989-24.201-43.309-24.201-69.759 0-2.928 0.112-5.83 0.331-8.702l-0.023 0.382v-609.28h-185.173c-2.228 0.187-4.821 0.294-7.44 0.294-21.704 0-41.695-7.333-57.631-19.656l0.217 0.162c-13.155-12.056-21.373-29.317-21.373-48.496 0-0.801 0.014-1.598 0.043-2.392l-0.003 0.115c-0.027-0.704-0.042-1.531-0.042-2.361 0-19.584 8.568-37.167 22.16-49.205l0.069-0.060c15.841-11.863 35.821-18.995 57.467-18.995 2.299 0 4.579 0.080 6.837 0.239l-0.304-0.017h540.16c2.353-0.213 5.089-0.334 7.854-0.334 21.779 0 41.803 7.52 57.614 20.105l-0.189-0.145c13.401 11.863 21.807 29.107 21.807 48.315 0 0.865-0.017 1.725-0.051 2.581l0.004-0.123c0.030 0.733 0.047 1.594 0.047 2.458 0 19.208-8.406 36.452-21.739 48.256l-0.068 0.059c-15.914 12.157-36.087 19.479-57.97 19.479-2.573 0-5.122-0.101-7.644-0.3l0.333 0.021z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text"]},"attrs":[{}],"properties":{"order":6341,"id":50,"name":"text","prevSize":32,"code":61221},"setIdx":0,"setId":0,"iconIdx":522},{"icon":{"paths":["M912.213 353.28l-186.88 186.88c-25.835 25.847-55.141 48.221-87.16 66.364l-2.013 1.050-173.653 96.427c-34.147 19.324-63.578 41.687-89.64 67.452l0.040-0.039-141.227 141.653c-15.467 15.59-36.9 25.241-60.587 25.241s-45.12-9.651-60.581-25.236l-0.006-0.006c-15.59-15.467-25.241-36.9-25.241-60.587s9.651-45.12 25.236-60.581l0.006-0.006 141.653-141.653c25.735-25.894 48.096-55.186 66.34-87.133l1.073-2.040 96.427-173.653c19.087-33.912 41.469-63.090 67.377-88.711l0.036-0.036 187.307-187.733c15.593-16.491 37.624-26.756 62.052-26.756 15.981 0 30.937 4.393 43.724 12.038l-0.389-0.216c62.377 37.782 113.15 88.827 149.518 149.496l1.095 1.97c7.625 12.523 12.138 27.667 12.138 43.866 0 24.374-10.219 46.362-26.607 61.912l-0.038 0.035zM624.64 519.68l121.6-121.173c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-61.013-60.587c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002-121.173 121.173c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003 60.587 60.587c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002z","M322.133 822.187l-90.453 90.88c-15.505 15.505-36.926 25.096-60.587 25.096-47.321 0-85.682-38.361-85.682-85.682 0-23.661 9.59-45.081 25.096-60.587l90.88-90.88zM926.72 247.467c-37.464-62.639-88.236-113.685-148.686-150.38l-1.927-1.086c-12.398-7.429-27.353-11.822-43.335-11.822-24.428 0-46.459 10.264-62.014 26.715l-0.038 0.040-15.36 17.067 240.64 240.213 14.933-14.933c16.914-15.641 27.469-37.946 27.469-62.717 0-15.884-4.34-30.754-11.899-43.49l0.217 0.394z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["thermometer"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6342,"id":49,"name":"thermometer","prevSize":32,"code":61222,"codes":[61222,61223]},"setIdx":0,"setId":0,"iconIdx":523},{"icon":{"paths":["M645.547 256h-267.093c-44.065 0-79.787 35.722-79.787 79.787l-0-0v352.427c0 44.065 35.722 79.787 79.787 79.787h267.093c44.065 0 79.787-35.722 79.787-79.787h0v-352.427c0-44.065-35.722-79.787-79.787-79.787v0zM597.333 592.213h-53.333v87.893c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-87.893h-53.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h170.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM597.333 464.213h-170.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h53.76v-56.32c0-17.673 14.327-32 32-32s32 14.327 32 32v0 56.32h52.907c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M685.653 85.333h-347.307c-140.095 1.687-253.013 115.648-253.013 255.983 0 0.006 0 0.012 0 0.018l-0-0.001v341.333c0 141.385 114.615 256 256 256v0h347.307c141.385 0 256-114.615 256-256v0-341.333c0-0.005 0-0.011 0-0.017 0-141.385-114.615-256-256-256-1.050 0-2.099 0.006-3.146 0.019l0.159-0.002zM597.333 592.213h-53.333v87.893c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-87.893h-53.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h170.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM597.333 464.213h-170.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h53.76v-56.32c0-17.673 14.327-32 32-32s32 14.327 32 32v0 56.32h52.907c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["theta"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6343,"id":48,"name":"theta","prevSize":32,"code":61224,"codes":[61224,61225]},"setIdx":0,"setId":0,"iconIdx":524},{"icon":{"paths":["M260.693 861.44v0c-69.987-47.194-115.403-126.178-115.403-215.769 0-131.911 98.457-240.826 225.892-257.267l1.298-0.137c3.318-0.233 7.19-0.366 11.093-0.366s7.775 0.133 11.612 0.395l-0.519-0.028c0.256-0.006 0.558-0.009 0.86-0.009 20.547 0 37.701 14.523 41.758 33.864l0.049 0.278c-3.382-0.239-7.328-0.375-11.307-0.375s-7.925 0.136-11.835 0.404l0.529-0.029c-80.678 9.706-148.925 55.688-188.802 120.905l-0.638 1.122c-24.071 38.475-38.479 85.146-38.826 135.159l-0.001 0.095c-0.003 0.44-0.004 0.96-0.004 1.48 0 70.325 28.357 134.028 74.261 180.296l-0.016-0.017zM794.88 285.44c17.655 11.162 38.184 19.849 60.1 24.913l1.34 0.261c-5.147-16.756-18.895-29.368-35.964-32.802l-0.303-0.051c-23.844-4.807-45.008-13.399-63.954-25.216l0.807 0.469c11.118 12.238 23.581 22.939 37.243 31.973l0.73 0.454zM390.827 785.067c15.096 7.436 32.861 11.785 51.641 11.785 65.087 0 117.974-52.236 119.024-117.073l0.001-0.099v-517.547c0-23.564 19.103-42.667 42.667-42.667v0h59.733c-5.99-19.254-23.222-33.166-43.839-34.129l-0.107-0.004h-55.467c-23.564 0-42.667 19.103-42.667 42.667v0 517.547c-0.484 65.14-53.402 117.76-118.61 117.76-0.001 0-0.002-0-0.003-0l0 0c-0.285 0.003-0.622 0.004-0.959 0.004-18.948 0-36.828-4.575-52.595-12.68l0.647 0.302c10.803 14.146 24.335 25.632 39.876 33.818l0.658 0.316zM753.92 251.307h2.987c-23.724-25.278-40.944-56.933-48.818-92.117l-0.249-1.323c-3.696-21.173-21.041-37.355-42.487-39.241l-0.179-0.013s0 2.987 0 5.12c11.194 54.206 43.586 99.304 87.93 127.096l0.817 0.478zM439.040 484.693c0 0.016 0 0.035 0 0.053 0 22.814-17.905 41.446-40.43 42.609l-0.104 0.004c-62.873 3.657-112.639 54.908-113.918 118.063l-0.002 0.124c0.224 45.84 26.416 85.511 64.611 105.075l0.669 0.311c-15.324-19.586-24.618-44.535-24.747-71.651l-0-0.029c1.281-63.278 51.047-114.53 113.594-118.172l0.326-0.015c23.564 0 42.667-19.103 42.667-42.667v0-54.613c0-23.564-19.103-42.667-42.667-42.667v0c0.192 1.282 0.302 2.762 0.302 4.267s-0.11 2.985-0.322 4.431l0.020-0.164zM861.013 314.027h-4.693c1.127 3.646 1.89 7.872 2.127 12.237l0.006 0.136v55.467c-1.333 22.486-19.894 40.216-42.596 40.216-1.076 0-2.142-0.040-3.198-0.118l0.141 0.008c-56.878-7.566-107.733-28.673-150.7-59.959l0.94 0.652v276.907c-0.038 136.402-102.81 248.789-235.145 263.992l-1.228 0.115c-6.643 0.613-14.366 0.962-22.171 0.962-53.325 0-102.843-16.304-143.839-44.2l0.89 0.571c11.069 13.014 23.239 24.507 36.548 34.572l0.572 0.415c40.138 27.386 89.71 43.729 143.098 43.729 8.204 0 16.318-0.386 24.325-1.141l-1.023 0.078c133.959-14.7 237.251-127.233 237.251-263.891 0-1.276-0.009-2.55-0.027-3.822l0.002 0.193v-277.76c42.403 30.759 93.712 51.886 149.381 59.13l1.659 0.176c1.667 0.245 3.591 0.386 5.549 0.386 22.15 0 40.107-17.956 40.107-40.107 0-0.136-0.001-0.271-0.002-0.406l0 0.021v-55.467c-0.068-22.528-16.292-41.247-37.69-45.183l-0.283-0.043z","M663.040 636.16v-276.907c42.027 30.634 92.882 51.74 148.080 59.123l1.68 0.184c0.915 0.070 1.981 0.11 3.057 0.11 22.702 0 41.263-17.73 42.591-40.099l0.006-0.117v-55.467c-0.244-4.501-1.007-8.727-2.232-12.751l0.099 0.378c-23.256-5.325-43.785-14.012-62.262-25.657l0.822 0.484c-14.392-9.487-26.855-20.188-37.829-32.266l-0.144-0.161h-2.987c-43.462-28.492-74.533-72.821-85.118-124.608l-0.215-1.259s0-3.413 0-5.12h-59.733c-23.564 0-42.667 19.103-42.667 42.667v0 514.987c-1.052 64.935-53.938 117.171-119.025 117.171-18.781 0-36.546-4.349-52.343-12.095l0.701 0.311c-16.199-8.501-29.73-19.988-40.32-33.843l-0.213-0.291c-38.988-19.94-65.227-59.806-65.28-105.806l-0-0.007c1.281-63.278 51.047-114.53 113.594-118.172l0.326-0.015c22.628-1.168 40.533-19.8 40.533-42.613 0-0.019-0-0.037-0-0.056l0 0.003v-54.613c0.192-1.282 0.302-2.762 0.302-4.267s-0.11-2.985-0.322-4.431l0.020 0.164c-3.382-0.239-7.328-0.375-11.307-0.375s-7.925 0.136-11.835 0.404l0.529-0.029c-80.678 9.706-148.925 55.688-188.802 120.905l-0.638 1.122c-24.071 38.475-38.479 85.146-38.826 135.159l-0.001 0.095c-0 0.060-0 0.132-0 0.203 0 70.96 28.871 135.177 75.508 181.545l0.012 0.012c40.106 27.324 89.623 43.629 142.949 43.629 7.805 0 15.529-0.349 23.156-1.033l-0.985 0.071c130.181-18.645 229.142-129.402 229.142-263.272 0-1.194-0.008-2.386-0.024-3.575l0.002 0.18z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tiktok"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6344,"id":47,"name":"tiktok","prevSize":32,"code":61226,"codes":[61226,61227]},"setIdx":0,"setId":0,"iconIdx":525},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z","M693.333 544h-181.333c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-256c0-17.673 14.327-32 32-32s32 14.327 32 32v0 224.853h149.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["time"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6345,"id":46,"name":"time","prevSize":32,"code":61228,"codes":[61228,61229]},"setIdx":0,"setId":0,"iconIdx":526},{"icon":{"paths":["M864.853 579.84c0 198.174-160.652 358.827-358.827 358.827s-358.827-160.652-358.827-358.827c0-198.174 160.652-358.827 358.827-358.827s358.827 160.652 358.827 358.827z","M512 578.133c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-182.187c0-17.673 14.327-32 32-32s32 14.327 32 32v0 182.187c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0z","M614.827 150.613h-217.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h217.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["timer"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6346,"id":45,"name":"timer","prevSize":32,"code":61230,"codes":[61230,61231,61232]},"setIdx":0,"setId":0,"iconIdx":527},{"icon":{"paths":["M336.213 426.667l291.413-157.44c10.469-5.84 22.967-9.278 36.267-9.278 41.709 0 75.52 33.811 75.52 75.52 0 0.112-0 0.224-0.001 0.336l0-0.017v354.987c0 0.095 0.001 0.206 0.001 0.318 0 41.709-33.811 75.52-75.52 75.52-13.301 0-25.798-3.438-36.652-9.475l0.385 0.197-291.413-160c-29.88-17.201-49.673-48.956-49.673-85.333s19.794-68.132 49.198-85.081l0.475-0.253z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["to-left"]},"attrs":[{}],"properties":{"order":6347,"id":44,"name":"to-left","prevSize":32,"code":61233},"setIdx":0,"setId":0,"iconIdx":528},{"icon":{"paths":["M682.667 426.667l-278.187-158.72c-10.648-6.253-23.453-9.946-37.12-9.946-41.002 0-74.24 33.238-74.24 74.24 0 0.047 0 0.094 0 0.14l-0-0.007v359.253c-0 0.039-0 0.086-0 0.133 0 41.002 33.238 74.24 74.24 74.24 13.667 0 26.472-3.693 37.47-10.136l-0.35 0.19 278.187-158.72c30.872-16.492 51.523-48.501 51.523-85.333s-20.651-68.842-51.006-85.081l-0.517-0.253z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["to-right"]},"attrs":[{}],"properties":{"order":6348,"id":43,"name":"to-right","prevSize":32,"code":61234},"setIdx":0,"setId":0,"iconIdx":529},{"icon":{"paths":["M434.773 162.56h154.453c192.99 0 349.44 156.45 349.44 349.44v0.427c0 192.99-156.45 349.44-349.44 349.44h-154.453c-192.99 0-349.44-156.45-349.44-349.44v-0.427c0-192.99 156.45-349.44 349.44-349.44z","M621.227 509.867c0 104.154-84.433 188.587-188.587 188.587s-188.587-84.433-188.587-188.587c0-104.154 84.433-188.587 188.587-188.587s188.587 84.433 188.587 188.587z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["toggle-off-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6349,"id":42,"name":"toggle-off-circle","prevSize":32,"code":61235,"codes":[61235,61236]},"setIdx":0,"setId":0,"iconIdx":530},{"icon":{"paths":["M263.253 162.56h497.493c98.263 0 177.92 79.657 177.92 177.92v343.467c0 98.263-79.657 177.92-177.92 177.92h-497.493c-98.263 0-177.92-79.657-177.92-177.92v-343.467c0-98.263 79.657-177.92 177.92-177.92z","M331.093 321.28h163.413c58.91 0 106.667 47.756 106.667 106.667v153.6c0 58.91-47.756 106.667-106.667 106.667h-163.413c-58.91 0-106.667-47.756-106.667-106.667v-153.6c0-58.91 47.756-106.667 106.667-106.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["toggle-off"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6350,"id":41,"name":"toggle-off","prevSize":32,"code":61237,"codes":[61237,61238]},"setIdx":0,"setId":0,"iconIdx":531},{"icon":{"paths":["M589.227 861.44h-154.453c-192.99 0-349.44-156.45-349.44-349.44v-0.427c-0-192.99 156.45-349.44 349.44-349.44h154.453c192.99 0 349.44 156.45 349.44 349.44v0.427c0 192.99-156.45 349.44-349.44 349.44z","M779.947 509.867c0 104.154-84.433 188.587-188.587 188.587s-188.587-84.433-188.587-188.587c0-104.154 84.433-188.587 188.587-188.587s188.587 84.433 188.587 188.587z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["toggle-on-circle"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6351,"id":40,"name":"toggle-on-circle","prevSize":32,"code":61239,"codes":[61239,61240]},"setIdx":0,"setId":0,"iconIdx":532},{"icon":{"paths":["M760.747 861.44h-497.493c-98.263 0-177.92-79.657-177.92-177.92l0-343.467c0-98.263 79.657-177.92 177.92-177.92l497.493 0c98.263 0 177.92 79.657 177.92 177.92l-0 343.467c0 98.263-79.657 177.92-177.92 177.92z","M692.907 688.213h-163.413c-58.91-0-106.667-47.756-106.667-106.667v-153.6c0-58.91 47.756-106.667 106.667-106.667l163.413 0c58.91 0 106.667 47.756 106.667 106.667v153.6c0 58.91-47.756 106.667-106.667 106.667z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["toggle-on"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6352,"id":39,"name":"toggle-on","prevSize":32,"code":61241,"codes":[61241,61242]},"setIdx":0,"setId":0,"iconIdx":533},{"icon":{"paths":["M238.933 360.107h149.333c17.909 0 32.427 14.518 32.427 32.427v94.293c0 17.909-14.518 32.427-32.427 32.427h-149.333c-17.909 0-32.427-14.518-32.427-32.427v-94.293c0-17.909 14.518-32.427 32.427-32.427z","M511.573 360.107h85.76c17.909 0 32.427 14.518 32.427 32.427v231.253c0 17.909-14.518 32.427-32.427 32.427h-85.76c-17.909 0-32.427-14.518-32.427-32.427v-231.253c0-17.909 14.518-32.427 32.427-32.427z","M395.52 739.84c0 36.053-29.227 65.28-65.28 65.28s-65.28-29.227-65.28-65.28c0-36.053 29.227-65.28 65.28-65.28s65.28 29.227 65.28 65.28z","M780.8 707.84h-347.307c3.197 9.498 5.201 20.455 5.543 31.83l0.004 0.17c-0.266 11.525-2.276 22.492-5.774 32.769l0.227-0.769h347.307c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z","M776.96 571.307l-54.613-256c-11.199-51.854-56.551-90.185-110.904-90.453l-373.363-1.28c-0.228-0.002-0.497-0.003-0.767-0.003-58.492 0-106.726 43.918-113.526 100.578l-0.053 0.545-30.72 256c-0.521 4.099-0.818 8.842-0.818 13.654 0 63.152 51.195 114.347 114.347 114.347 0.138 0 0.275-0 0.413-0.001l-0.021 0h21.76c13.623-44.578 54.397-76.442 102.613-76.442s88.991 31.864 102.413 75.684l0.2 0.759h231.253c63.060-0.122 114.132-51.27 114.132-114.346 0-8.157-0.854-16.114-2.478-23.787l0.132 0.747z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["trailer"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6353,"id":38,"name":"trailer","prevSize":32,"code":61243,"codes":[61243,61244,61245,61246,61247]},"setIdx":0,"setId":0,"iconIdx":534},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M605.013 750.933h-181.333c-1.202 0.088-2.605 0.138-4.019 0.138-29.321 0-53.6-21.589-57.808-49.738l-0.039-0.321-17.493-217.6c0.207-13.508 11.206-24.379 24.744-24.379 0.601 0 1.198 0.021 1.789 0.064l-0.079-0.005h282.453c0.511-0.038 1.108-0.059 1.709-0.059 13.538 0 24.537 10.871 24.744 24.36l0 0.019-14.080 213.333c-2.269 30.414-27.503 54.231-58.301 54.231-0.804 0-1.604-0.016-2.4-0.048l0.114 0.004z","M709.973 410.027h-4.693c-57.684-8.418-124.281-13.225-192-13.225s-134.318 4.807-199.47 14.099l7.47-0.874c-2.073 0.472-4.454 0.742-6.897 0.742-15.909 0-29.143-11.457-31.899-26.57l-0.030-0.198c-0.303-1.643-0.476-3.533-0.476-5.463 0-15.799 11.604-28.887 26.754-31.208l0.176-0.022c60.958-9.074 131.314-14.257 202.88-14.257s141.923 5.182 210.714 15.192l-7.834-0.936c15.53 2.596 27.221 15.936 27.221 32.006 0 1.654-0.124 3.279-0.363 4.866l0.022-0.179c-2.727 14.892-15.605 26.030-31.083 26.030-0.172 0-0.345-0.001-0.516-0.004l0.026 0z","M608.853 363.947h-193.707l11.52-65.28c2.043-22.695 19.972-40.623 42.485-42.653l0.181-0.013h85.333c22.695 2.043 40.623 19.972 42.653 42.485l0.013 0.181z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["trash-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6354,"id":37,"name":"trash-square","prevSize":32,"code":61248,"codes":[61248,61249,61250,61251]},"setIdx":0,"setId":0,"iconIdx":535},{"icon":{"paths":["M677.12 934.827l-322.133 3.84c-0.461 0.007-1.005 0.011-1.55 0.011-57.626 0-104.828-44.625-108.936-101.203l-0.021-0.355-31.147-445.44c-0.080-1.025-0.125-2.219-0.125-3.424 0-25.921 21.013-46.933 46.933-46.933 0.344 0 0.687 0.004 1.029 0.011l-0.051-0.001h501.76c0.282-0.006 0.615-0.010 0.949-0.010 25.921 0 46.933 21.013 46.933 46.933 0 1.054-0.035 2.1-0.103 3.137l0.007-0.141-25.173 440.32c-3.243 57.46-50.444 102.876-108.336 103.253l-0.037 0z","M607.147 580.267h-190.293c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h190.293c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M573.867 738.133h-123.733c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h123.733c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M864 305.493h-4.693c-104.276-15.118-224.677-23.751-347.093-23.751s-242.817 8.633-360.626 25.323l13.533-1.572c-1.255 0.174-2.705 0.274-4.178 0.274-17.673 0-32-14.327-32-32 0-15.529 11.061-28.474 25.735-31.387l0.204-0.034c107.235-15.913 231.010-25.001 356.907-25.001s249.671 9.088 370.703 26.644l-13.796-1.642c15.303 2.582 26.815 15.735 26.815 31.577 0 17.5-14.048 31.719-31.482 31.996l-0.026 0z","M682.667 249.173h-341.333l19.2-98.987c7.164-36.664 38.67-64.074 76.717-64.852l0.083-0.001h150.613c38.893 0.152 71.247 27.961 78.424 64.774l0.082 0.506z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["trash"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6355,"id":36,"name":"trash","prevSize":32,"code":61252,"codes":[61252,61253,61254,61255,61256]},"setIdx":0,"setId":0,"iconIdx":536},{"icon":{"paths":["M476.587 119.467l-187.733 261.12c-5.75 7.206-9.226 16.446-9.226 26.499 0 23.564 19.103 42.667 42.667 42.667 0.694 0 1.384-0.017 2.070-0.049l-0.097 0.004h375.467c0.589 0.029 1.279 0.046 1.973 0.046 23.564 0 42.667-19.103 42.667-42.667 0-10.053-3.476-19.293-9.293-26.585l0.066 0.086-187.733-261.12c-7.771-11.447-20.725-18.869-35.413-18.869s-27.643 7.422-35.318 18.72l-0.095 0.149z","M807.68 694.187l-176.213-244.48h-238.933l-176.213 244.48c-6.808 9.341-10.892 21.047-10.892 33.707 0 31.812 25.788 57.6 57.6 57.6 0.079 0 0.159-0 0.238-0l-0.012 0h497.493c0.067 0 0.146 0 0.226 0 31.812 0 57.6-25.788 57.6-57.6 0-12.66-4.084-24.366-11.007-33.872l0.114 0.165z","M512 954.453c-17.673 0-32-14.327-32-32v0-136.96c0-17.673 14.327-32 32-32s32 14.327 32 32v0 136.96c0 17.673-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["tree"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6356,"id":35,"name":"tree","prevSize":32,"code":61257,"codes":[61257,61258,61259]},"setIdx":0,"setId":0,"iconIdx":537},{"icon":{"paths":["M336.243 86.061l347.302-1.879c140.44-0.76 254.906 112.473 255.665 252.914l1.865 344.742c0.76 140.44-112.473 254.906-252.914 255.665l-347.302 1.879c-140.44 0.76-254.906-112.473-255.665-252.914l-1.865-344.742c-0.76-140.44 112.473-254.906 252.914-255.665z","M633.717 260.243l82.772-0.448c34.874-0.189 63.299 27.93 63.487 62.804l1.013 187.304c0.189 34.874-27.93 63.299-62.804 63.487l-82.772 0.448c-34.874 0.189-63.299-27.93-63.487-62.804l-1.013-187.304c-0.189-34.874 27.93-63.299 62.804-63.487z","M302.201 259.902l90.452-0.489c32.754-0.177 59.449 26.231 59.627 58.985l2.085 385.274c0.177 32.754-26.231 59.449-58.985 59.627l-90.452 0.489c-32.754 0.177-59.449-26.231-59.627-58.985l-2.085-385.274c-0.177-32.754 26.231-59.449 58.985-59.627z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["trello"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6357,"id":34,"name":"trello","prevSize":32,"code":61260,"codes":[61260,61261,61262]},"setIdx":0,"setId":0,"iconIdx":538},{"icon":{"paths":["M512 124.16c-0.111-0-0.243-0.001-0.374-0.001-50.373 0-94.354 27.365-117.89 68.039l-0.35 0.655-289.707 501.333c-11.224 19.396-17.846 42.669-17.846 67.489 0 35.331 13.42 67.528 35.44 91.771l-0.101-0.113 390.827-272.64z","M901.973 855.467c22.747-24.265 36.719-56.996 36.719-92.99 0-25.153-6.823-48.712-18.719-68.928l0.347 0.638-289.707-501.333c-23.885-41.329-67.867-68.694-118.239-68.694-0.131 0-0.263 0-0.394 0.001l0.020-0v456.533z","M121.173 853.333c24.663 27.798 60.479 45.229 100.366 45.229 0.265 0 0.53-0.001 0.795-0.002l-0.041 0h578.987c0.782 0.016 1.704 0.026 2.629 0.026 38.683 0 73.536-16.394 97.992-42.613l0.073-0.079-389.973-275.2z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["triangle"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6358,"id":33,"name":"triangle","prevSize":32,"code":61263,"codes":[61263,61264,61265]},"setIdx":0,"setId":0,"iconIdx":539},{"icon":{"paths":["M374.613 747.52c0 40.766-33.047 73.813-73.813 73.813s-73.813-33.047-73.813-73.813c0-40.766 33.047-73.813 73.813-73.813s73.813 33.047 73.813 73.813z","M834.56 747.52c0 40.766-33.047 73.813-73.813 73.813s-73.813-33.047-73.813-73.813c0-40.766 33.047-73.813 73.813-73.813s73.813 33.047 73.813 73.813z","M85.333 531.627v143.787c0 30.162 24.451 54.613 54.613 54.613v0h46.080c8.663-56.275 56.745-98.864 114.773-98.864s106.11 42.589 114.691 98.215l0.082 0.649h108.8c0.127 0.001 0.277 0.002 0.427 0.002 30.162 0 54.613-24.451 54.613-54.613 0-0.001-0-0.001-0-0.002l0 0v-143.787z","M524.373 202.667h-384c-0.001-0-0.001-0-0.002-0-30.398 0-55.040 24.642-55.040 55.040 0 0.15 0.001 0.3 0.002 0.45l-0-0.023v279.040h494.080v-279.040c0-0 0-0.001 0-0.002 0-30.483-24.591-55.223-55.017-55.465l-0.023-0z","M927.147 486.827l-100.693-130.987c-10.393-13.543-26.586-22.187-44.798-22.187-0.001 0-0.001 0-0.002 0l-110.933-0c-31.105 0-56.32 25.215-56.32 56.32v0 283.733c-0.002 0.186-0.003 0.405-0.003 0.625 0 22.43 13.112 41.798 32.090 50.856l0.34 0.146c10.854-53.749 57.702-93.651 113.871-93.651 58.147 0 106.306 42.763 114.743 98.556l0.080 0.641h6.827c0.002 0 0.004 0 0.006 0 31.105 0 56.32-25.215 56.32-56.32 0-0.3-0.002-0.599-0.007-0.898l0.001 0.045v-152.32c-0.097-13.022-4.407-25.019-11.631-34.716l0.111 0.156zM849.92 529.493c0 0.001 0 0.002 0 0.003 0 14.695-11.793 26.636-26.431 26.876l-0.023 0h-88.32c-14.845 0-26.88-12.035-26.88-26.88v-82.773c0.24-14.661 12.181-26.453 26.877-26.453 0.001 0 0.002 0 0.004 0l52.48-0c0.071-0.001 0.155-0.001 0.24-0.001 8.716 0 16.415 4.356 21.038 11.010l0.055 0.084 35.84 49.493c3.195 4.127 5.122 9.376 5.122 15.075 0 0.1-0.001 0.2-0.002 0.3l0-0.015z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["truck"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6359,"id":32,"name":"truck","prevSize":32,"code":61266,"codes":[61266,61267,61268,61269,61270]},"setIdx":0,"setId":0,"iconIdx":540},{"icon":{"paths":["M270.964 86.415l477.86-2.585c104.388-0.565 189.468 83.6 190.033 187.988l2.572 475.3c0.565 104.388-83.6 189.468-187.988 190.033l-477.86 2.585c-104.388 0.565-189.468-83.6-190.033-187.988l-2.572-475.3c-0.565-104.388 83.6-189.468 187.988-190.033z","M605.867 495.36h-207.36c-11.782 0-21.333 9.551-21.333 21.333v0 30.72c0 11.782 9.551 21.333 21.333 21.333v0h64v227.84c0 11.782 9.551 21.333 21.333 21.333v0h36.267c11.782 0 21.333-9.551 21.333-21.333v0-227.84h64.427c11.782 0 21.333-9.551 21.333-21.333v0-30.72c-0.234-11.687-9.647-21.099-21.311-21.333l-0.022-0z","M768 618.24c-39.253-15.36-42.667-23.467-42.667-34.133s8.533-20.48 31.573-20.48c0.206-0.002 0.45-0.003 0.694-0.003 15.385 0 29.847 3.953 42.425 10.899l-0.453-0.229c2.617 1.302 5.699 2.064 8.96 2.064s6.343-0.762 9.080-2.118l-0.12 0.054c5.766-2.352 10.21-6.936 12.325-12.649l0.049-0.151 9.813-29.44c0.725-2.076 1.144-4.47 1.144-6.962 0-7.869-4.177-14.763-10.435-18.584l-0.096-0.054c-19.987-10.515-43.674-16.686-68.802-16.686-1.312 0-2.62 0.017-3.924 0.050l0.193-0.004c-2.963-0.306-6.403-0.48-9.884-0.48-54.987 0-99.808 43.521-101.897 97.997l-0.006 0.19c0 67.84 66.133 91.733 87.467 98.987 39.253 14.933 39.253 26.027 39.253 35.84 0 23.040-23.467 26.453-37.547 26.453-19.375-0.057-37.481-5.443-52.944-14.766l0.464 0.26c-2.756-1.288-5.983-2.040-9.387-2.040s-6.631 0.752-9.526 2.098l0.139-0.058c-6.258 2.406-10.986 7.555-12.765 13.933l-0.035 0.147-9.387 30.293c-0.535 1.798-0.844 3.863-0.844 6 0 7.386 3.68 13.913 9.307 17.846l0.070 0.047c23.407 13.448 51.465 21.381 81.375 21.381 1.392 0 2.78-0.017 4.163-0.051l-0.205 0.004c82.773 0 119.467-51.2 119.467-101.973-1.422-51.178-37.974-93.422-86.332-103.556l-0.708-0.124z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["ts"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6360,"id":31,"name":"ts","prevSize":32,"code":61271,"codes":[61271,61272,61273]},"setIdx":0,"setId":0,"iconIdx":541},{"icon":{"paths":["M917.333 574.293v-442.88c-0.241-25.501-20.97-46.080-46.505-46.080-0.001 0-0.001 0-0.002 0l-652.8-0c-16.153-0-30.383 8.235-38.72 20.737l-0.107 0.17-64.427 96.853c-4.958 7.171-7.97 16.021-8.106 25.566l-0 0.034v532.053c0 25.685 20.822 46.507 46.507 46.507v0h74.24c0.001-0 0.001-0 0.002-0 25.535 0 46.263 20.579 46.505 46.057l0 0.023v38.827c0 25.685 20.822 46.507 46.507 46.507v0h56.747c0.084 0.001 0.184 0.001 0.284 0.001 15.973 0 30.066-8.053 38.439-20.321l0.103-0.16 61.013-90.88c8.568-12.434 22.728-20.48 38.768-20.48 0.021 0 0.041 0 0.062 0l-0.003-0h166.827c12.827-0.068 24.425-5.271 32.855-13.655l-0.002 0.002 186.88-186.453c8.618-8.258 14.197-19.627 14.927-32.297l0.006-0.13z","M394.24 277.333h34.133c17.437 0 31.573 14.136 31.573 31.573v231.68c0 17.437-14.136 31.573-31.573 31.573h-34.133c-17.437 0-31.573-14.136-31.573-31.573v-231.68c0-17.437 14.136-31.573 31.573-31.573z","M637.867 278.613h34.133c17.437 0 31.573 14.136 31.573 31.573v231.68c0 17.437-14.136 31.573-31.573 31.573h-34.133c-17.437 0-31.573-14.136-31.573-31.573v-231.68c0-17.437 14.136-31.573 31.573-31.573z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["twitch"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6361,"id":30,"name":"twitch","prevSize":32,"code":61274,"codes":[61274,61275,61276]},"setIdx":0,"setId":0,"iconIdx":542},{"icon":{"paths":["M810.667 202.667c-33.821-36.234-81.863-58.819-135.18-58.819-75.802 0-140.941 45.652-169.424 110.962l-0.463 1.191c-33.707 75.52 2.56 166.827-26.453 244.053-45.852 129.384-143.082 230.653-266.514 280.897l-3.139 1.13c-22.68 6.726-49.263 11.715-76.618 13.982l-1.462 0.098c-10.889 1.757-19.105 11.089-19.105 22.34 0 8.883 5.122 16.57 12.573 20.268l0.132 0.059c61.215 26.969 132.587 42.667 207.626 42.667 0.206 0 0.413-0 0.619-0l-0.032 0c0.896 0.006 1.956 0.009 3.016 0.009 289.603 0 524.373-234.77 524.373-524.373 0-1.953-0.011-3.904-0.032-5.852l0.003 0.297c0-8.107 0-16.213 0-23.893 28.089-23.294 52.319-49.829 72.539-79.33l0.848-1.31c3.532-5.027 5.645-11.275 5.645-18.016 0-16.571-12.766-30.16-29-31.47l-0.112-0.007c-9.626-0.937-20.81-1.472-32.119-1.472-23.96 0-47.36 2.4-69.972 6.972l2.252-0.38z","M490.667 371.627c-138.12-7.721-260.769-68.221-349.223-161.476l-0.217-0.231c-5.238-5.175-12.44-8.372-20.389-8.372-12.603 0-23.329 8.036-27.334 19.263l-0.063 0.203c-4.619 15.525-7.277 33.362-7.277 51.821 0 63.322 31.28 119.339 79.231 153.441l0.579 0.391c-17.79-0.256-34.77-3.361-50.623-8.875l1.129 0.342c-1.899-0.627-4.085-0.989-6.355-0.989-11.546 0-20.907 9.36-20.907 20.907 0 1.406 0.139 2.781 0.404 4.109l-0.022-0.133c13.71 73.125 69.287 130.278 140.432 146.118l1.221 0.228c-13.988 3.75-30.114 6.064-46.726 6.397l-0.207 0.003c-11.734 0.645-21.005 10.318-21.005 22.155 0 4.449 1.309 8.592 3.564 12.064l-0.052-0.086c30.954 54.766 88.602 91.245 154.811 91.733l0.069 0c9.434 1.126 20.36 1.768 31.436 1.768 46.622 0 90.585-11.381 129.263-31.517l-1.553 0.736c65.601-38.031 109.71-106.781 112.628-186.051l0.012-0.402c-1.707-61.867-34.987-130.133-102.827-133.547z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["twitter"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6362,"id":29,"name":"twitter","prevSize":32,"code":61277,"codes":[61277,61278]},"setIdx":0,"setId":0,"iconIdx":543},{"icon":{"paths":["M85.333 460.373h694.187v83.2h-694.187v-83.2z","M192.853 337.92h479.147c59.382 0 107.52 48.138 107.52 107.52v270.933c0 59.382-48.138 107.52-107.52 107.52h-479.147c-59.382 0-107.52-48.138-107.52-107.52v-270.933c0-59.382 48.138-107.52 107.52-107.52z","M831.147 200.107h-479.147c-59.382-0-107.52 48.138-107.52 107.52v0 30.293h426.667c59.382 0 107.52 48.138 107.52 107.52h-0v240.64h51.627c0.254 0.002 0.553 0.003 0.853 0.003 59.382 0 107.52-48.138 107.52-107.52 0-0.001-0-0.002-0-0.004l0 0v-270.933c0-59.382-48.138-107.52-107.52-107.52v0z","M669.867 695.893h-51.627c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h51.627c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M317.867 695.893h-122.88c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h122.88c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["two-credit-cart"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6363,"id":28,"name":"two-credit-cart","prevSize":32,"code":61279,"codes":[61279,61280,61281,61282,61283]},"setIdx":0,"setId":0,"iconIdx":544},{"icon":{"paths":["M690.773 938.667l-357.547 0c-136.908 0-247.893-110.986-247.893-247.893l-0-357.547c0-136.908 110.986-247.893 247.893-247.893l357.547-0c136.908 0 247.893 110.986 247.893 247.893v357.547c0 136.908-110.986 247.893-247.893 247.893z","M298.667 678.827c-6.543-0.136-12.581-2.189-17.605-5.619l0.112 0.072c-8.242-5.867-13.553-15.387-13.553-26.148 0-6.103 1.708-11.807 4.673-16.659l-0.080 0.14 107.947-161.28-107.52-166.827c-2.807-4.663-4.468-10.292-4.468-16.309 0-10.89 5.439-20.509 13.749-26.289l0.105-0.069c4.593-2.645 10.1-4.206 15.971-4.206 11.026 0 20.767 5.503 26.626 13.913l0.070 0.106 119.040 184.32c3.298 4.994 5.261 11.121 5.261 17.707s-1.963 12.713-5.337 17.828l0.075-0.122-117.76 174.933c-5.799 8.79-15.63 14.511-26.798 14.511-0.179 0-0.357-0.001-0.536-0.004l0.027 0z","M725.333 770.56h-251.733c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h251.733c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["underlining"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6364,"id":27,"name":"underlining","prevSize":32,"code":61284,"codes":[61284,61285,61286]},"setIdx":0,"setId":0,"iconIdx":545},{"icon":{"paths":["M512 925.013c-17.673 0-32-14.327-32-32v0l-1.28-762.027c-0-0.008-0-0.017-0-0.026 0-17.673 14.327-32 32-32 0.45 0 0.898 0.009 1.344 0.028l-0.064-0.002c0.258-0.008 0.561-0.012 0.865-0.012 17.202 0 31.147 13.945 31.147 31.147 0 0.304-0.004 0.608-0.013 0.91l0.001-0.044 2.56 762.027c0 17.673-14.327 32-32 32v0z","M512 938.667c-0.102 0.001-0.223 0.002-0.345 0.002-8.94 0-17-3.767-22.681-9.799l-0.015-0.016-125.44-128c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 103.253 104.533 102.4-104.96c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-125.44 128c-5.494 6.127-13.365 10.027-22.149 10.239l-0.037 0.001z","M634.453 278.187c-0.118 0.002-0.257 0.002-0.396 0.002-8.845 0-16.851-3.588-22.644-9.389l-0-0-102.4-104.96-102.827 104.96c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 125.44-128c5.902-5.708 13.954-9.225 22.827-9.225s16.924 3.517 22.836 9.234l-0.009-0.009 125.44 128c5.891 5.741 9.545 13.753 9.545 22.619 0 17.437-14.136 31.573-31.573 31.573-0.206 0-0.411-0.002-0.615-0.006l0.031 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["up-down"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6365,"id":26,"name":"up-down","prevSize":32,"code":61287,"codes":[61287,61288,61289]},"setIdx":0,"setId":0,"iconIdx":546},{"icon":{"paths":["M938.667 333.227v357.547c0 136.908-110.986 247.893-247.893 247.893h-357.547c-136.908 0-247.893-110.986-247.893-247.893v-357.547c0-136.908 110.986-247.893 247.893-247.893l357.547-0c136.908 0 247.893 110.986 247.893 247.893z","M706.987 583.253c-0.047 11.445-4.593 21.818-11.959 29.453l0.012-0.013c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-122.88-118.187-119.467 124.587c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 145.493-154.027c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002 155.733 150.187c7.637 7.261 12.583 17.29 13.222 28.473l0.005 0.113z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["up-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6366,"id":25,"name":"up-square","prevSize":32,"code":61290,"codes":[61290,61291]},"setIdx":0,"setId":0,"iconIdx":547},{"icon":{"paths":["M256 615.253c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 256-256c7.709-7.861 18.426-12.749 30.284-12.8l0.010-0c11.868 0.051 22.584 4.939 30.287 12.793l0.007 0.007 256 256c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002c-7.733 7.795-18.45 12.621-30.293 12.621s-22.56-4.826-30.291-12.618l-0.003-0.003-225.707-224-224 224c-7.713 7.673-18.347 12.416-30.089 12.416-0.672 0-1.341-0.016-2.005-0.046l0.094 0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["up"]},"attrs":[{}],"properties":{"order":6367,"id":24,"name":"up","prevSize":32,"code":61292},"setIdx":0,"setId":0,"iconIdx":548},{"icon":{"paths":["M938.667 512h-200.533c-113.765-2.203-205.144-94.945-205.144-209.030 0-4.216 0.125-8.402 0.371-12.556l-0.027 0.573v-205.653h-209.067c-132.272 1.442-238.943 109.003-238.943 241.48 0 0.755 0.003 1.509 0.010 2.262l-0.001-0.115v366.080c-0.006 0.638-0.010 1.392-0.010 2.147 0 132.476 106.671 240.038 238.807 241.479l0.136 0.001h375.467c132.272-1.442 238.943-109.003 238.943-241.48 0-0.755-0.003-1.509-0.010-2.262l0.001 0.115v-183.040z","M935.68 445.013h-198.827c-77.786-2.669-139.83-66.369-139.83-144.56 0-3.331 0.113-6.635 0.334-9.91l-0.024 0.443v-205.653l113.493 119.467z","M399.787 565.333c-4.393-12.223-15.884-20.806-29.38-20.806-3.532 0-6.927 0.588-10.092 1.671l0.219-0.065-19.2 8.533c17.548-30.206 49.75-50.192 86.621-50.192 17.86 0 34.624 4.689 49.129 12.904l-0.496-0.259c4.421 2.61 9.742 4.152 15.423 4.152 11.778 0 22.008-6.628 27.163-16.359l0.081-0.167c2.415-4.357 3.836-9.555 3.836-15.084 0-11.796-6.469-22.081-16.052-27.501l-0.157-0.082c-22.488-12.856-49.424-20.436-78.131-20.436-16.417 0-32.255 2.479-47.16 7.083l1.131-0.301c-42.511 12.784-76.865 41.441-96.857 78.918l-0.423 0.869s0 3.413 0 5.547l-9.387-26.027c-4.395-11.939-15.67-20.301-28.899-20.301-3.873 0-7.579 0.717-10.991 2.025l0.21-0.071c-12.198 4.555-20.727 16.107-20.727 29.652 0 4.717 1.034 9.192 2.888 13.211l-0.081-0.196 34.133 91.307c4.195 11.993 15.399 20.447 28.583 20.48l0.004 0c1.537 0.196 3.315 0.308 5.12 0.308s3.583-0.112 5.328-0.329l-0.208 0.021 93.867-33.707c11.091-5.186 18.636-16.25 18.636-29.076 0-5.779-1.532-11.201-4.212-15.88l0.083 0.156z","M597.333 642.56c-3.831-12.908-15.587-22.163-29.504-22.163-4.783 0-9.31 1.093-13.346 3.043l0.184-0.080-89.6 35.84c-11.812 4.746-20 16.105-20 29.376 0 4.823 1.082 9.394 3.015 13.483l-0.082-0.192c4.425 11.595 15.455 19.682 28.374 19.682 4.074 0 7.96-0.804 11.508-2.262l-0.202 0.073 18.773-7.68c-17.548 30.206-49.75 50.192-86.621 50.192-17.86 0-34.624-4.689-49.129-12.904l0.496 0.259c-4.381-2.55-9.641-4.055-15.254-4.055-11.908 0-22.234 6.776-27.332 16.682l-0.081 0.172c-2.415 4.357-3.836 9.555-3.836 15.084 0 11.796 6.469 22.081 16.052 27.501l0.157 0.082c22.176 12.879 48.8 20.481 77.198 20.481 0.16 0 0.32-0 0.48-0.001l-0.025 0c61.138-0.277 114.254-34.349 141.656-84.487l0.424-0.847 6.4 20.053c3.946 12.46 15.406 21.333 28.938 21.333 0.026 0 0.053-0 0.079-0l-0.004 0c1.474 0.198 3.177 0.311 4.907 0.311s3.433-0.113 5.103-0.332l-0.196 0.021c12.45-4.421 21.205-16.099 21.205-29.822 0-3.525-0.578-6.915-1.643-10.080l0.065 0.223z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["update-file"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6368,"id":23,"name":"update-file","prevSize":32,"code":61293,"codes":[61293,61294,61295,61296]},"setIdx":0,"setId":0,"iconIdx":549},{"icon":{"paths":["M482.987 193.28c16.855 41.115 56.569 69.547 102.924 69.547 0.116 0 0.231-0 0.347-0.001l-0.018 0h128c83.858 0.804 156.675 47.302 194.827 115.761l0.586 1.146c-7.855-123.068-109.486-219.939-233.791-220.16l-0.022-0h-206.507z","M713.387 260.693h-128c-0.143 0.001-0.312 0.001-0.48 0.001-46.201 0-85.755-28.462-102.082-68.809l-0.264-0.738-13.227-35.84c-16.81-41.188-56.455-69.734-102.796-69.973l-0.030-0h-85.333c-0.127-0-0.277-0-0.427-0-107.924 0-195.413 87.49-195.413 195.413 0 0 0 0 0 0l0 0v432.64c-0 0.127-0 0.277-0 0.427 0 124.183 100.67 224.853 224.853 224.853 0.15 0 0.3-0 0.45-0l-0.023 0h402.773c0.127 0 0.277 0 0.427 0 124.183 0 224.853-100.67 224.853-224.853 0-0.15-0-0.3-0-0.45l0 0.023v-227.413c0-124.419-100.861-225.28-225.28-225.28v0zM363.52 608.853c-12.952-0.026-24.019-8.063-28.514-19.419l-0.073-0.208-33.707-88.32c-1.216-3.177-1.92-6.851-1.92-10.69 0-12.895 7.945-23.934 19.207-28.49l0.206-0.074c3.243-1.293 7.001-2.042 10.934-2.042 12.864 0 23.855 8.018 28.248 19.329l0.071 0.207 9.813 25.173c-0.176-0.769-0.278-1.653-0.278-2.56s0.101-1.791 0.293-2.64l-0.015 0.080c27.59-50.444 80.288-84.084 140.843-84.084 28.49 0 55.24 7.446 78.412 20.499l-0.801-0.415c10.792 4.793 18.182 15.417 18.182 27.767 0 16.731-13.563 30.293-30.293 30.293-6.304 0-12.159-1.926-17.008-5.221l0.106 0.068c-13.812-7.73-30.307-12.282-47.866-12.282-10.166 0-19.975 1.526-29.212 4.361l0.704-0.186c-23.211 8.219-42.031 24-53.929 44.324l-0.257 0.476 21.333-7.68c2.987-1.074 6.435-1.695 10.027-1.695 16.842 0 30.495 13.653 30.495 30.495 0 13.25-8.45 24.526-20.256 28.734l-0.213 0.066-93.013 32.427c-2.768 1.139-5.981 1.8-9.349 1.8-0.764 0-1.521-0.034-2.267-0.101l0.096 0.007zM690.773 742.827c-1.41 0.212-3.038 0.333-4.693 0.333s-3.283-0.121-4.874-0.354l0.181 0.022c-0.334 0.013-0.727 0.021-1.121 0.021-12.092 0-22.53-7.085-27.387-17.33l-0.078-0.184-6.4-19.2c-28.185 49.017-80.257 81.493-139.913 81.493-0.012 0-0.023-0-0.035-0l0.002 0c-0.132 0-0.289 0.001-0.446 0.001-28.207 0-54.677-7.438-77.556-20.46l0.775 0.406c-10.792-4.793-18.182-15.417-18.182-27.767 0-16.731 13.563-30.293 30.293-30.293 6.304 0 12.159 1.926 17.008 5.221l-0.106-0.068c13.803 7.574 30.245 12.030 47.728 12.030 36.412 0 68.309-19.327 85.994-48.281l0.251-0.442-18.773 7.253c-3.347 1.409-7.238 2.228-11.32 2.228-12.696 0-23.541-7.921-27.864-19.091l-0.069-0.204c-1.251-3.219-1.976-6.944-1.976-10.839 0-12.755 7.773-23.694 18.84-28.339l0.202-0.075 88.747-37.12c3.529-1.506 7.636-2.382 11.947-2.382s8.417 0.876 12.151 2.459l-0.204-0.077c7.492 3.56 13.165 9.928 15.726 17.709l0.060 0.211 30.72 93.867c1.063 2.984 1.677 6.426 1.677 10.012 0 13.601-8.839 25.138-21.087 29.179l-0.217 0.062z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["update-folder"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6369,"id":22,"name":"update-folder","prevSize":32,"code":61297,"codes":[61297,61298]},"setIdx":0,"setId":0,"iconIdx":550},{"icon":{"paths":["M715.52 296.96c0 116.878-94.748 211.627-211.627 211.627s-211.627-94.748-211.627-211.627c0-116.878 94.748-211.627 211.627-211.627s211.627 94.748 211.627 211.627z","M832.427 938.667c0.823 0.050 1.785 0.078 2.754 0.078 26.863 0 48.64-21.777 48.64-48.64 0-1.53-0.071-3.043-0.209-4.536l0.014 0.192c-27.307-160.427-186.88-283.733-379.733-283.733s-352.427 123.307-379.733 283.733c-0.153 1.44-0.24 3.11-0.24 4.801 0 26.627 21.586 48.213 48.213 48.213 1.135 0 2.261-0.039 3.377-0.116l-0.151 0.008z","M717.227 841.813l-61.44 8.533c-1.197 0.17-2.579 0.267-3.985 0.267-16.495 0-29.867-13.372-29.867-29.867 0-2.057 0.208-4.066 0.604-6.006l-0.033 0.192 12.8-61.013c2.053-9.103 6.562-16.943 12.791-23.032l0.009-0.008 145.493-136.107c8.18-7.312 19.036-11.782 30.936-11.782 13.809 0 26.212 6.018 34.73 15.575l0.040 0.046 27.733 29.867c8.397 8.413 13.59 20.027 13.59 32.853s-5.193 24.44-13.59 32.854l0.001-0.001-145.493 136.107c-6.549 5.948-14.859 10.066-24.060 11.487l-0.26 0.033z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["user-edit"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6370,"id":21,"name":"user-edit","prevSize":32,"code":61299,"codes":[61299,61300,61301]},"setIdx":0,"setId":0,"iconIdx":551},{"icon":{"paths":["M336.243 86.061l347.302-1.879c140.44-0.76 254.906 112.473 255.665 252.914l1.865 344.742c0.76 140.44-112.473 254.906-252.914 255.665l-347.302 1.879c-140.44 0.76-254.906-112.473-255.665-252.914l-1.865-344.742c-0.76-140.44 112.473-254.906 252.914-255.665z","M674.133 508.16c0 89.544-72.59 162.133-162.133 162.133s-162.133-72.59-162.133-162.133c0-89.544 72.59-162.133 162.133-162.133s162.133 72.59 162.133 162.133z","M789.333 916.053c-41.437-115.412-149.919-196.472-277.333-196.472s-235.896 81.059-276.689 194.422l-0.644 2.050c30.539 14.289 66.31 22.627 104.029 22.627 0.927 0 1.853-0.005 2.778-0.015l-0.141 0.001h346.88c36.765-0.718 71.424-8.973 102.741-23.277l-1.621 0.663z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["user-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6371,"id":20,"name":"user-square","prevSize":32,"code":61302,"codes":[61302,61303,61304]},"setIdx":0,"setId":0,"iconIdx":552},{"icon":{"paths":["M701.44 299.093c0 116.643-94.557 211.2-211.2 211.2s-211.2-94.557-211.2-211.2c0-116.643 94.557-211.2 211.2-211.2s211.2 94.557 211.2 211.2z","M743.68 554.667c-94.251 0.008-170.653 76.415-170.653 170.667 0 94.257 76.41 170.667 170.667 170.667s170.667-76.41 170.667-170.667c0-0.75-0.005-1.499-0.014-2.247l0.001 0.113c-1.204-93.335-77.147-168.533-170.653-168.533-0.005 0-0.009 0-0.014 0l0.001-0zM834.133 701.44l-72.107 92.16c-5.91 7.217-14.778 11.821-24.726 11.946l-0.021 0c-0.032 0-0.070 0-0.109 0-10.181 0-19.237-4.819-25.010-12.3l-0.054-0.073-51.627-67.84c-3.678-5.096-5.883-11.468-5.883-18.354 0-9.757 4.425-18.48 11.379-24.271l0.051-0.041c5.096-3.678 11.468-5.883 18.354-5.883 9.757 0 18.48 4.425 24.271 11.379l0.041 0.051 26.88 34.133 46.933-59.733c5.84-7.459 14.846-12.208 24.96-12.208 17.464 0 31.621 14.157 31.621 31.621 0 7.349-2.507 14.113-6.713 19.482l0.052-0.069z","M868.693 886.187c-10.193-55.705-34.145-104.607-68.202-144.649l0.362 0.436-38.827 49.493c-5.91 7.217-14.778 11.821-24.726 11.946l-0.021 0c-0.032 0-0.070 0-0.109 0-10.181 0-19.237-4.819-25.010-12.3l-0.054-0.073-51.627-65.707c-4.009-5.139-6.428-11.69-6.428-18.805 0-4.465 0.953-8.708 2.666-12.537l-0.078 0.195c-1.578-3.576-2.496-7.746-2.496-12.13 0-16.966 13.754-30.72 30.72-30.72 1.18 0 2.344 0.067 3.49 0.196l-0.14-0.013c-56.971-30.113-124.525-47.79-196.207-47.79-0.621 0-1.242 0.001-1.862 0.004l0.096-0c-191.573-0.427-351.147 121.6-378.453 282.453-0.127 1.31-0.199 2.833-0.199 4.372 0 26.627 21.586 48.213 48.213 48.213 1.121 0 2.233-0.038 3.334-0.113l-0.149 0.008h654.933c0.824 0.050 1.787 0.079 2.756 0.079 26.627 0 48.213-21.586 48.213-48.213 0-1.53-0.071-3.043-0.211-4.537l0.014 0.191z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["user-tick"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6372,"id":19,"name":"user-tick","prevSize":32,"code":61305,"codes":[61305,61306,61307]},"setIdx":0,"setId":0,"iconIdx":553},{"icon":{"paths":["M723.627 296.96c0 116.878-94.748 211.627-211.627 211.627s-211.627-94.748-211.627-211.627c0-116.878 94.748-211.627 211.627-211.627s211.627 94.748 211.627 211.627z","M840.533 938.667c0.823 0.050 1.785 0.078 2.754 0.078 26.863 0 48.64-21.777 48.64-48.64 0-1.53-0.071-3.043-0.209-4.536l0.014 0.192c-27.307-160.427-186.88-283.733-379.733-283.733s-352.427 123.307-379.733 283.733c-0.124 1.302-0.194 2.815-0.194 4.345 0 26.863 21.777 48.64 48.64 48.64 0.969 0 1.931-0.028 2.886-0.084l-0.132 0.006z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["user"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6373,"id":18,"name":"user","prevSize":32,"code":61308,"codes":[61308,61309]},"setIdx":0,"setId":0,"iconIdx":554},{"icon":{"paths":["M912.64 449.28l-59.307-60.16c-7.905-7.75-12.805-18.541-12.805-30.475 0-0.236 0.002-0.472 0.006-0.707l-0 0.036v-85.333c-0.24-48.831-39.881-88.324-88.746-88.324-0.3 0-0.6 0.001-0.9 0.004l0.046-0h-85.333c-0.2 0.003-0.435 0.005-0.671 0.005-11.935 0-22.725-4.9-30.468-12.798l-0.007-0.007-59.733-60.16c-16.057-16.040-38.23-25.96-62.72-25.96s-46.663 9.92-62.721 25.961l0.001-0.001-60.16 59.307c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0h-85.333c-48.831 0.24-88.324 39.881-88.324 88.746 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v85.333c0.003 0.2 0.005 0.435 0.005 0.671 0 11.935-4.9 22.725-12.798 30.468l-0.007 0.007-60.16 59.733c-16.040 16.057-25.96 38.23-25.96 62.72s9.92 46.663 25.961 62.721l-0.001-0.001 59.307 60.16c7.905 7.75 12.805 18.541 12.805 30.475 0 0.236-0.002 0.472-0.006 0.707l0-0.036v85.333c0.24 48.831 39.881 88.324 88.746 88.324 0.3 0 0.6-0.001 0.9-0.004l-0.046 0h85.333c0.2-0.003 0.435-0.005 0.671-0.005 11.935 0 22.725 4.9 30.468 12.798l0.007 0.007 60.16 60.16c16.057 16.040 38.23 25.96 62.72 25.96s46.663-9.92 62.721-25.961l-0.001 0.001 59.733-59.307c7.75-7.905 18.541-12.805 30.475-12.805 0.236 0 0.472 0.002 0.707 0.006l-0.036-0h85.333c49.013-0 88.747-39.733 88.747-88.747v0-85.333c-0.003-0.2-0.005-0.435-0.005-0.671 0-11.935 4.9-22.725 12.798-30.468l0.007-0.007 60.16-60.16c16.041-16.057 25.961-38.23 25.961-62.721 0-24.702-10.092-47.047-26.379-63.137l-0.009-0.009z","M458.24 648.96c-8.89-0.129-16.884-3.863-22.604-9.803l-0.010-0.010-101.12-102.4c-6.126-5.84-9.935-14.063-9.935-23.176 0-17.673 14.327-32 32-32 9.325 0 17.719 3.989 23.568 10.353l0.021 0.023 78.507 79.787 186.88-182.613c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-209.92 205.653c-5.684 5.545-13.462 8.965-22.040 8.965-0.202 0-0.403-0.002-0.604-0.006l0.030 0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["verify"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6374,"id":17,"name":"verify","prevSize":32,"code":61310,"codes":[61310,61311]},"setIdx":0,"setId":0,"iconIdx":555},{"icon":{"paths":["M390.4 341.333c-3.139-3.799-5.042-8.718-5.042-14.083 0-12.253 9.933-22.187 22.187-22.187 0.123 0 0.245 0.001 0.368 0.003l-0.018-0h210.773c12.443 0.060 22.507 10.161 22.507 22.613 0 5.154-1.724 9.905-4.627 13.708l0.040-0.055-103.253 139.093c-4.175 5.387-10.647 8.821-17.92 8.821s-13.745-3.434-17.882-8.769l-0.038-0.052zM741.12 371.627c-5.203-3.812-11.731-6.1-18.794-6.1-10.675 0-20.128 5.227-25.942 13.26l-0.064 0.093-184.32 253.013-184.747-252.587c-5.72-9.242-15.802-15.306-27.3-15.306-17.673 0-32 14.327-32 32 0 8.185 3.073 15.652 8.128 21.31l-0.027-0.031 213.333 287.573c5.866 7.922 15.116 13.048 25.572 13.226l0.028 0c0.163 0.003 0.355 0.005 0.548 0.005 10.491 0 19.77-5.186 25.414-13.135l0.065-0.096 209.067-287.573c3.472-5.042 5.546-11.282 5.546-18.005 0-11.165-5.718-20.995-14.386-26.721l-0.12-0.074z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["vibe"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6375,"id":16,"name":"vibe","prevSize":32,"code":61312,"codes":[61312,61313]},"setIdx":0,"setId":0,"iconIdx":556},{"icon":{"paths":["M891.307 633.6c-5.986-3.399-13.15-5.403-20.781-5.403-14.767 0-27.782 7.502-35.442 18.903l-0.097 0.153-42.667-24.32h-5.12c12.698-32.579 20.056-70.293 20.056-109.726 0-0.425-0.001-0.849-0.003-1.273l0 0.066c-0.018-39.116-7.375-76.509-20.768-110.884l0.715 2.084h5.12l42.667-24.32c7.848 10.702 20.375 17.572 34.506 17.572 23.564 0 42.667-19.103 42.667-42.667 0-6.368-1.395-12.409-3.896-17.837l0.109 0.265-42.667-70.827c-7.813-11.092-20.565-18.25-34.99-18.25-23.564 0-42.667 19.103-42.667 42.667 0 5.649 1.098 11.042 3.092 15.976l-0.102-0.286-42.667 24.747h-2.56c-44.409-60.668-110.364-103.29-186.397-116.65l-1.763-0.257v-45.653c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0h-82.773c-0.381-0.012-0.83-0.019-1.28-0.019-23.575 0-42.686 19.111-42.686 42.686 0 23.125 18.388 41.954 41.34 42.665l0.065 0.002v45.653c-79.607 11.219-147.737 53.142-193.176 113.188l-0.531 0.732-3.413-2.987-37.12-21.333c4.177-6.48 6.66-14.395 6.66-22.89 0-23.564-19.103-42.667-42.667-42.667-16.334 0-30.524 9.178-37.694 22.659l-0.112 0.23-42.667 73.813c-3.594 6.12-5.717 13.479-5.717 21.334 0 23.474 18.957 42.52 42.396 42.666l0.014 0c0.050 0 0.11 0 0.169 0 15.71 0 29.436-8.49 36.842-21.132l0.109-0.201 37.12 21.333 5.12 2.133c-13.175 33.153-20.842 71.565-20.907 111.76l-0 0.026c0.102 40.373 7.765 78.926 21.647 114.359l-0.74-2.146h-5.12l-37.12 21.333c-7.282-13.711-21.472-22.89-37.806-22.89-23.564 0-42.667 19.103-42.667 42.667 0 8.495 2.482 16.409 6.761 23.059l-0.102-0.169 42.667 73.813c7.514 12.844 21.241 21.334 36.951 21.334 0.060 0 0.119-0 0.179-0l-0.009 0c7.69-0.024 14.895-2.079 21.114-5.657l-0.207 0.11c12.956-7.488 21.534-21.275 21.534-37.066 0-7.877-2.134-15.255-5.856-21.588l0.109 0.2 37.12-21.333 3.413-2.987c45.862 61.46 114.163 103.983 192.549 115.437l1.585 0.19s0 0 0 2.133v42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h85.333c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0-42.667s0 0 0-2.987c78.377-12.868 145.009-55.307 189.303-115.255l0.563-0.799h2.56l42.667 24.32c-3.58 6.123-5.694 13.481-5.694 21.333 0 23.645 19.168 42.814 42.814 42.814 15.793 0 29.589-8.552 37.010-21.277l0.11-0.203 42.667-70.827c2.653-5.4 4.204-11.753 4.204-18.468 0-16.369-9.218-30.585-22.745-37.74l-0.232-0.112z","M687.787 570.88c0 17.437-14.136 31.573-31.573 31.573s-31.573-14.136-31.573-31.573c0-17.437 14.136-31.573 31.573-31.573s31.573 14.136 31.573 31.573z","M676.267 402.773c0 28.513-23.114 51.627-51.627 51.627s-51.627-23.114-51.627-51.627c0-28.513 23.114-51.627 51.627-51.627s51.627 23.114 51.627 51.627z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["virus"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6376,"id":15,"name":"virus","prevSize":32,"code":61314,"codes":[61314,61315,61316]},"setIdx":0,"setId":0,"iconIdx":557},{"icon":{"paths":["M561.493 864.427c-9.777 16.662-27.603 27.672-48 27.672s-38.223-11.010-47.858-27.411l-0.142-0.261-187.307-324.693-187.307-326.4c-4.089-7.54-6.492-16.509-6.492-26.039 0-30.216 24.161-54.788 54.217-55.453l0.062-0.001h742.4c32.945 0.059 59.629 26.78 59.629 59.733 0 10.997-2.972 21.299-8.155 30.149l0.153-0.282-183.893 318.293z","M554.667 546.987c-9.777 16.662-27.603 27.672-48 27.672s-38.223-11.010-47.858-27.411l-0.142-0.261-94.72-165.973-143.787-249.173h575.573l-144.213 249.173z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["vue"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6377,"id":14,"name":"vue","prevSize":32,"code":61317,"codes":[61317,61318]},"setIdx":0,"setId":0,"iconIdx":558},{"icon":{"paths":["M514.133 938.667v0c-0.050 0-0.109 0-0.169 0-10.919 0-20.543-5.543-26.213-13.968l-0.072-0.113-379.307-569.6c-2.885-4.712-4.593-10.416-4.593-16.519 0-10.761 5.311-20.281 13.455-26.082l0.098-0.066c4.728-2.975 10.477-4.74 16.639-4.74 10.757 0 20.258 5.38 25.959 13.596l0.068 0.104 352.427 529.493 349.867-524.373c5.819-8.672 15.585-14.303 26.667-14.303 17.679 0 32.010 14.331 32.010 32.010 0 6.597-1.996 12.728-5.416 17.822l0.073-0.115-375.040 562.773c-5.648 8.532-15.204 14.083-26.056 14.083-0.14 0-0.279-0.001-0.418-0.003l0.021 0z","M750.933 180.907l-216.32 324.267c-4.991 7.833-13.631 12.953-23.467 12.953s-18.476-5.12-23.4-12.841l-0.067-0.112-216.32-324.267c-5.203-6.304-13.018-10.291-21.765-10.291-0.599 0-1.193 0.019-1.783 0.056l0.081-0.004h-56.32c-15.448 0.137-27.918 12.692-27.918 28.159 0 5.359 1.497 10.368 4.095 14.632l-0.070-0.124 320.427 500.053c5.057 8.013 13.863 13.257 23.893 13.257s18.837-5.245 23.825-13.141l0.068-0.116 324.693-500.053c2.528-4.14 4.025-9.149 4.025-14.508 0-15.467-12.47-28.022-27.905-28.159l-0.013-0h-62.293c-0.509-0.033-1.103-0.051-1.702-0.051-8.746 0-16.561 3.987-21.726 10.244l-0.038 0.048z","M675.84 128l-139.093 209.067c-5.583 8.329-14.96 13.739-25.6 13.739s-20.017-5.409-25.53-13.628l-0.070-0.111-139.093-209.067 115.627 42.667v-56.747c-0-0.001-0-0.002-0-0.003 0-15.788 12.799-28.587 28.587-28.587 0.15 0 0.3 0.001 0.449 0.003l-0.023-0h42.667c0.001-0 0.002-0 0.003-0 15.874 0 28.77 12.748 29.010 28.564l0 0.023v56.747z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["vuesax"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6378,"id":13,"name":"vuesax","prevSize":32,"code":61319,"codes":[61319,61320,61321]},"setIdx":0,"setId":0,"iconIdx":559},{"icon":{"paths":["M243.627 262.4h452.693c87.423 0 158.293 70.87 158.293 158.293v323.413c0 87.423-70.87 158.293-158.293 158.293h-452.693c-87.423 0-158.293-70.87-158.293-158.293v-323.413c0-87.423 70.87-158.293 158.293-158.293z","M808.107 669.867h90.88c21.915 0 39.68-17.765 39.68-39.68v0-95.573c0-21.915-17.765-39.68-39.68-39.68v0h-90.88c-0.008-0-0.017-0-0.027-0-47.128 0-85.333 38.205-85.333 85.333 0 0.75 0.010 1.498 0.029 2.244l-0.002-0.11c-0.017 0.635-0.027 1.383-0.027 2.133 0 47.128 38.205 85.333 85.333 85.333 0.009 0 0.019-0 0.028-0l-0.002 0z","M85.333 420.267c0.243-87.239 71.020-157.867 158.293-157.867 0 0 0 0 0.001 0l396.373-0c-1.674-78.116-65.394-140.801-143.756-140.801-0.161 0-0.322 0-0.483 0.001l0.025-0h-265.813c-0.127-0-0.277-0.001-0.427-0.001-79.647 0-144.213 64.567-144.213 144.213 0 0 0 0.001 0 0.001l-0-0v154.453z","M507.307 483.413h-262.827c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h262.827c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["wallet"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6379,"id":12,"name":"wallet","prevSize":32,"code":61322,"codes":[61322,61323,61324,61325]},"setIdx":0,"setId":0,"iconIdx":560},{"icon":{"paths":["M400.213 154.88h232.96c23.15 0.3 43.322 12.764 54.451 31.282l0.162 0.291 247.467 426.667c2.312 3.772 3.682 8.34 3.682 13.227s-1.369 9.454-3.745 13.339l0.064-0.112-141.653 204.373c-4.344 6.468-11.631 10.667-19.899 10.667-0.054 0-0.109-0-0.163-0.001l0.008 0h-248.747c-0.114 0.002-0.248 0.003-0.383 0.003-8.201 0-15.42-4.207-19.616-10.581l-0.055-0.088-128-184.747c-2.752-3.932-4.397-8.815-4.397-14.082 0-13.563 10.911-24.578 24.435-24.745l0.016-0h190.293c13.441-0.292 24.225-11.257 24.225-24.741 0-4.558-1.232-8.828-3.382-12.496l0.063 0.117-229.12-390.827c-2.241-3.65-3.568-8.070-3.568-12.8 0-13.667 11.079-24.747 24.747-24.747 0.054 0 0.109 0 0.163 0.001l-0.008-0z","M232.107 401.92l-141.653 206.933c-3.386 4.822-5.412 10.815-5.412 17.28s2.025 12.458 5.476 17.377l-0.065-0.097 122.88 170.667c5.583 7.429 14.378 12.183 24.284 12.183 11.335 0 21.217-6.226 26.411-15.445l0.079-0.152 218.88-372.48c2.887-4.752 4.596-10.497 4.596-16.642 0-17.909-14.518-32.427-32.427-32.427-0.116 0-0.232 0.001-0.347 0.002l0.018-0h-198.827c-9.874 0.212-18.543 5.183-23.83 12.705l-0.063 0.095z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["wanchain"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6380,"id":11,"name":"wanchain","prevSize":32,"code":61326,"codes":[61326,61327]},"setIdx":0,"setId":0,"iconIdx":561},{"icon":{"paths":["M833.28 198.827v-14.080c0-54.904-44.509-99.413-99.413-99.413h-444.16c-54.904 0-99.413 44.509-99.413 99.413v0 14.080c1.070 67.843 30.925 128.507 77.855 170.469l0.225 0.198 115.627 105.387c9.801 8.789 15.938 21.491 15.938 35.627s-6.138 26.838-15.894 35.587l-0.045 0.040-115.627 104.107c-47.155 42.16-77.010 102.824-78.078 170.478l-0.002 0.189v19.2c0.483 54.537 44.805 98.561 99.41 98.561 0.151 0 0.303-0 0.454-0.001l-0.023 0h444.16c0.007 0 0.015 0 0.023 0 54.904 0 99.413-44.509 99.413-99.413 0-0.75-0.008-1.498-0.025-2.244l0.002 0.111v-14.933c-1.070-67.843-30.925-128.507-77.855-170.469l-0.225-0.198-115.627-105.387c-9.801-8.789-15.938-21.491-15.938-35.627s6.138-26.838 15.894-35.587l0.045-0.040 115.2-104.107c47.461-42.44 77.393-103.631 78.079-171.825l0.001-0.122z","M362.667 782.933l101.12-104.533c12.708-13.433 30.657-21.793 50.56-21.793s37.852 8.36 50.529 21.76l0.031 0.033 101.12 104.533c3.57 3.619 5.775 8.592 5.775 14.081 0 11.006-8.866 19.94-19.845 20.052l-0.011 0h-275.627c-10.807-0.343-19.437-9.185-19.437-20.044 0-5.493 2.208-10.47 5.786-14.092l-0.002 0.002z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["watch"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6381,"id":10,"name":"watch","prevSize":32,"code":61328,"codes":[61328,61329]},"setIdx":0,"setId":0,"iconIdx":562},{"icon":{"paths":["M938.667 486.827c-13.208-224.965-198.871-402.4-425.976-402.4-212.011 0-387.905 154.633-421.051 357.268l-0.333 2.466c-3.424 20.446-5.38 44.003-5.38 68.018 0 78.365 20.835 151.864 57.268 215.26l-1.115-2.104-37.973 141.227c-0.863 3.205-1.358 6.884-1.358 10.679 0 8.375 2.413 16.186 6.581 22.777l-0.103-0.175c3.526 6.069 8.437 10.98 14.32 14.406l0.187 0.101c6.157 3.65 13.572 5.808 21.491 5.808 4.044 0 7.956-0.563 11.663-1.614l-0.301 0.073 139.52-38.4c61.726 36.738 136.104 58.453 215.554 58.453 0.119 0 0.239-0 0.358-0l-0.019 0c236.585-3.378 427.076-195.956 427.076-433.025 0-6.617-0.148-13.2-0.442-19.745l0.033 0.93z","M331.52 317.867c-40.107 36.693-47.36 89.173-5.547 170.667 46.462 82.98 111.628 150.469 190.072 198.344l2.355 1.336c69.547 39.68 116.907 49.92 165.547 21.76 25.294-11.441 42.576-36.455 42.576-65.505 0-4.597-0.433-9.092-1.26-13.448l0.071 0.447c-3.695-5.070-7.616-9.534-11.906-13.615l-0.041-0.039-85.333-58.88c-4.128-2.293-9.053-3.642-14.293-3.642s-10.165 1.35-14.447 3.72l0.153-0.078c-11.533 9.161-21.828 18.374-31.562 28.148l-0.012 0.012c-2.404 2.46-5.756 3.986-9.463 3.986-1.819 0-3.553-0.367-5.13-1.032l0.087 0.033c-47.465-31.475-86.99-70.864-117.664-116.68l-0.95-1.507c-0.826-1.514-1.312-3.317-1.312-5.233 0-3.362 1.495-6.374 3.857-8.409l0.014-0.012c6.827-7.253 28.16-32.427 28.16-32.427 2.307-3.918 3.718-8.608 3.839-13.619l0.001-0.035c-0.614-4.95-1.662-9.422-3.128-13.701l0.141 0.474-57.6-85.333c-6.751-9.181-17.511-15.074-29.648-15.074-1.129 0-2.245 0.051-3.348 0.151l0.142-0.010c-17.394 0.473-33.007 7.724-44.368 19.195l-0.005 0.005z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["whatsapp"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.4},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6382,"id":9,"name":"whatsapp","prevSize":32,"code":61330,"codes":[61330,61331]},"setIdx":0,"setId":0,"iconIdx":563},{"icon":{"paths":["M737.28 930.56h-465.92c-0.165 0.001-0.361 0.001-0.557 0.001-75.99 0-138.647-57.084-147.428-130.71l-0.068-0.704-37.973-320c-0.637-5.156-1-11.124-1-17.177 0-47.808 22.66-90.323 57.825-117.392l0.348-0.257 284.16-221.013c24.784-19.233 56.329-30.832 90.583-30.832 36.643 0 70.186 13.274 96.082 35.275l-0.212-0.176 271.36 227.84c34.222 27.518 55.939 69.382 55.939 116.319 0 8.039-0.637 15.929-1.863 23.622l0.111-0.848-53.333 312.747c-12.261 70.444-72.942 123.321-145.973 123.321-0.731 0-1.462-0.005-2.191-0.016l0.11 0.001z","M553.813 702.72c0 23.329-18.911 42.24-42.24 42.24s-42.24-18.911-42.24-42.24c0-23.329 18.911-42.24 42.24-42.24s42.24 18.911 42.24 42.24z","M597.333 648.107c-8.801-0.197-16.738-3.738-22.624-9.397l0.011 0.011c-16.513-17.96-40.12-29.175-66.347-29.175s-49.834 11.215-66.288 29.11l-0.059 0.065c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c27.933-29.7 67.487-48.198 111.36-48.198s83.427 18.497 111.286 48.119l0.074 0.079c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.773 5.556-13.541 9.076-22.127 9.385l-0.059 0.002z","M686.080 545.28c-7.993-0.012-15.307-2.915-20.953-7.718l0.046 0.038c-41.247-37.948-96.52-61.21-157.227-61.21s-115.98 23.263-157.392 61.36l0.165-0.15c-5.909 6.993-14.685 11.403-24.49 11.403-17.673 0-32-14.327-32-32 0-10.877 5.426-20.486 13.72-26.268l0.104-0.069s196.267-177.067 399.787 0c6.87 5.904 11.194 14.603 11.194 24.312 0 8.014-2.946 15.34-7.814 20.954l0.034-0.040c-5.865 5.85-13.959 9.467-22.898 9.467-0.801 0-1.594-0.029-2.38-0.086l0.105 0.006z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["wifi-home"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6383,"id":8,"name":"wifi-home","prevSize":32,"code":61332,"codes":[61332,61333,61334,61335]},"setIdx":0,"setId":0,"iconIdx":564},{"icon":{"paths":["M339.2 85.333h345.6c140.207 0 253.867 113.66 253.867 253.867v345.6c0 140.207-113.66 253.867-253.867 253.867h-345.6c-140.207 0-253.867-113.66-253.867-253.867v-345.6c0-140.207 113.66-253.867 253.867-253.867z","M606.293 700.16c-7.030-0.083-13.525-2.306-18.883-6.046l0.109 0.072c-20.237-14.905-45.66-23.854-73.173-23.854s-52.936 8.949-73.517 24.095l0.343-0.241c-5.401 4.288-12.318 6.879-19.84 6.879-17.702 0-32.052-14.35-32.052-32.052 0-10.18 4.746-19.251 12.146-25.123l0.066-0.051c30.781-22.955 69.566-36.753 111.573-36.753s80.793 13.797 112.071 37.107l-0.497-0.354c7.813 5.815 12.82 15.023 12.82 25.4 0 6.423-1.918 12.399-5.213 17.384l0.073-0.118c-5.825 8.249-15.296 13.587-26.016 13.653l-0.010 0z","M702.72 573.013c-7.097-0.033-13.627-2.435-18.846-6.454l0.073 0.054c-46.675-38.24-106.976-61.416-172.69-61.416-61.814 0-118.839 20.507-164.642 55.089l0.691-0.5c-5.688 4.925-13.16 7.926-21.333 7.926-18.045 0-32.673-14.628-32.673-32.673 0-9.872 4.378-18.721 11.298-24.712l0.041-0.035c56.281-42.487 127.41-68.050 204.51-68.050 79.814 0 153.229 27.394 211.357 73.292l-0.721-0.549c7.24 5.914 11.826 14.841 11.826 24.839 0 6.648-2.027 12.823-5.497 17.939l0.072-0.112c-4.955 8.329-13.426 14.123-23.313 15.345l-0.153 0.015z","M765.013 434.773c-6.889-0.090-13.241-2.314-18.445-6.040l0.098 0.067c-64.169-49.928-145.901-80.047-234.667-80.047s-170.497 30.119-235.532 80.694l0.865-0.648c-5.688 4.925-13.16 7.926-21.333 7.926-18.045 0-32.673-14.628-32.673-32.673 0-9.872 4.378-18.721 11.298-24.712l0.041-0.035c75.019-56.673 169.847-90.773 272.64-90.773s197.621 34.1 273.79 91.605l-1.15-0.832c7.648 5.824 12.534 14.935 12.534 25.187 0 6.513-1.972 12.566-5.352 17.593l0.072-0.113c-5.092 7.107-13.001 11.917-22.062 12.79l-0.125 0.010z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["wifi-square"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6384,"id":7,"name":"wifi-square","prevSize":32,"code":61336,"codes":[61336,61337,61338,61339]},"setIdx":0,"setId":0,"iconIdx":565},{"icon":{"paths":["M597.333 853.333c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333z","M366.080 630.187l37.12 56.747c30.594-20.569 68.265-32.831 108.8-32.831s78.206 12.262 109.507 33.278l-0.707-0.447 37.12-56.747c4.403-6.605 7.025-14.724 7.025-23.455 0-16.807-9.718-31.345-23.842-38.3l-0.25-0.111c-37.629-17.278-81.638-27.353-128-27.353s-90.371 10.074-129.957 28.153l1.957-0.801c-15.090 6.796-25.406 21.703-25.406 39.019 0 8.477 2.472 16.377 6.735 23.017l-0.102-0.17z","M116.48 247.467l37.973 58.453c100.752-66.878 224.498-106.707 357.547-106.707s256.794 39.829 359.964 108.214l-2.417-1.506 37.973-58.453c4.409-6.608 7.035-14.732 7.035-23.47 0-16.137-8.958-30.182-22.173-37.432l-0.222-0.111c-109.162-63.599-240.277-101.143-380.16-101.143s-270.997 37.544-383.816 103.104l3.656-1.961c-13.437 7.362-22.395 21.406-22.395 37.543 0 8.738 2.626 16.862 7.133 23.626l-0.098-0.156z","M241.067 438.613l37.973 57.6c65.702-43.384 146.315-69.212 232.96-69.212s167.259 25.827 234.561 70.203l-1.601-0.992 37.973-57.6c4.607-6.712 7.358-15.011 7.358-23.953 0-16.096-8.912-30.109-22.072-37.376l-0.22-0.111c-73.987-40.836-162.187-64.866-256-64.866s-182.013 24.029-258.782 66.269l2.782-1.403c-13.379 7.378-22.291 21.392-22.291 37.487 0 8.942 2.751 17.241 7.452 24.098l-0.094-0.145z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["wifi"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6385,"id":6,"name":"wifi","prevSize":32,"code":61340,"codes":[61340,61341,61342,61343]},"setIdx":0,"setId":0,"iconIdx":566},{"icon":{"paths":["M938.667 369.493c0.039 1.776 0.061 3.869 0.061 5.967 0 160.001-129.706 289.707-289.707 289.707-14.623 0-28.993-1.083-43.034-3.174l1.586 0.194c-4.912-0.668-10.59-1.049-16.357-1.049-36.102 0-68.713 14.946-91.983 38.988l-0.034 0.035-203.093 202.667c-22.491 22.606-53.624 36.596-88.024 36.596-36.67 0-69.627-15.897-92.356-41.176l-0.1-0.114c-19.086-22.223-30.706-51.342-30.706-83.174 0-36.622 15.38-69.652 40.033-92.984l0.059-0.056 198.4-197.973c23.851-23.271 38.644-55.733 38.644-91.649 0-5.897-0.399-11.701-1.171-17.387l0.074 0.662c-1.819-12.197-2.858-26.273-2.858-40.592 0-160.001 129.706-289.707 289.707-289.707 2.055 0 4.105 0.021 6.15 0.064l-0.306-0.005c24.607 0.775 44.26 20.908 44.26 45.632 0 12.478-5.006 23.786-13.119 32.027l0.006-0.006-122.453 122.027c-12.368 11.964-20.046 28.71-20.046 47.249 0 10.275 2.359 20 6.564 28.662l-0.171-0.391c23.921 50.475 63.557 90.249 112.495 113.731l1.425 0.616c8.232 3.924 17.891 6.215 28.084 6.215 18.565 0 35.355-7.601 47.427-19.86l0.008-0.008 122.88-122.88c8.235-8.107 19.543-13.113 32.021-13.113 24.724 0 44.857 19.653 45.63 44.189l0.002 0.071z","M177.92 845.227c-7.174-7.616-11.582-17.907-11.582-29.227s4.408-21.611 11.602-29.248l-0.020 0.022 235.947-235.947c7.616-7.174 17.907-11.582 29.227-11.582s21.611 4.408 29.248 11.602l-0.022-0.020c7.295 7.642 11.784 18.017 11.784 29.44s-4.489 21.798-11.8 29.457l0.016-0.017-235.52 235.52c-7.642 7.295-18.017 11.784-29.44 11.784s-21.798-4.489-29.457-11.8l0.017 0.016z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["wrench"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6386,"id":5,"name":"wrench","prevSize":32,"code":61344,"codes":[61344,61345]},"setIdx":0,"setId":0,"iconIdx":567},{"icon":{"paths":["M702.72 665.6c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-243.2c0-17.673 14.327-32 32-32s32 14.327 32 32v0 243.2c0 17.673-14.327 32-32 32v-0zM612.693 633.6v-128c0.006-0.512 0.010-1.117 0.010-1.722 0-79.607-63.935-144.282-143.258-145.477l-0.112-0.001h-148.053c-17.673 0-32 14.327-32 32v0 243.2c0 17.673 14.327 32 32 32s32-14.327 32-32v-211.2h116.053c44.91 0.241 81.253 36.583 81.493 81.47l0 0.023v128c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM580.693 633.6h-97.707v-121.6c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 121.6c0 17.673 14.327 32 32 32s32-14.327 32-32v0z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["xaomi"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6387,"id":4,"name":"xaomi","prevSize":32,"code":61346,"codes":[61346,61347]},"setIdx":0,"setId":0,"iconIdx":568},{"icon":{"paths":["M336.243 86.061l347.302-1.879c140.44-0.76 254.906 112.473 255.665 252.914l1.865 344.742c0.76 140.44-112.473 254.906-252.914 255.665l-347.302 1.879c-140.44 0.76-254.906-112.473-255.665-252.914l-1.865-344.742c-0.76-140.44 112.473-254.906 252.914-255.665z","M512 336.64c-5.475-4.516-12.562-7.254-20.289-7.254-10.053 0-19.024 4.636-24.891 11.887l-0.047 0.060-90.453 117.333-90.453-117.333c-5.881-6.516-14.357-10.593-23.785-10.593-17.673 0-32 14.327-32 32 0 6.656 2.032 12.838 5.51 17.958l-0.072-0.112 100.267 128-100.267 131.413c-4.194 5.36-6.726 12.198-6.726 19.627 0 17.638 14.269 31.942 31.894 32l0.005 0c10.207-0.033 19.284-4.84 25.12-12.303l0.053-0.070 90.453-116.053 90.453 116.48c5.991 7.564 15.175 12.374 25.483 12.374 0.041 0 0.083-0 0.124-0l-0.006 0c0.005 0 0.012 0 0.019 0 7.438 0 14.276-2.572 19.672-6.876l-0.064 0.049c6.842-5.977 11.14-14.717 11.14-24.461 0-6.796-2.091-13.104-5.664-18.316l0.072 0.11-100.693-130.56 100.693-128c4.863-5.638 7.824-13.035 7.824-21.123 0-10.747-5.228-20.273-13.28-26.173l-0.091-0.064z","M764.587 329.813c-0.128-0.002-0.279-0.003-0.43-0.003-17.437 0-31.573 14.136-31.573 31.573 0 0.151 0.001 0.302 0.003 0.452l-0-0.023v116.907h-42.667c-58.91-0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667h74.667c17.673 0 32-14.327 32-32v0-298.667c-0.241-17.489-14.474-31.573-31.997-31.573-0.001 0-0.002 0-0.003 0l0-0zM647.253 585.813c0-23.564 19.103-42.667 42.667-42.667v0h42.667v85.333h-42.667c-0.001 0-0.001 0-0.002 0-23.564 0-42.667-19.103-42.667-42.667 0-0.15 0.001-0.3 0.002-0.449l-0 0.023z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["xd"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6388,"id":3,"name":"xd","prevSize":32,"code":61348,"codes":[61348,61349,61350]},"setIdx":0,"setId":0,"iconIdx":569},{"icon":{"paths":["M744.96 646.827c-17.673 0-32-14.327-32-32v0-148.48l-115.627 66.133v82.347c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-100.693c0.039-11.829 6.49-22.143 16.058-27.651l0.155-0.082 179.2-102.4c4.557-2.823 10.083-4.496 16-4.496s11.443 1.673 16.132 4.572l-0.132-0.076c9.723 5.59 16.175 15.904 16.213 27.728l0 0.006v203.947c-0.7 17.211-14.713 30.926-31.979 31.146l-0.021 0zM488.96 613.12v-101.12c-0.039-11.829-6.49-22.143-16.058-27.651l-0.155-0.082-177.493-100.267c-4.557-2.823-10.083-4.496-16-4.496s-11.443 1.673-16.132 4.572l0.132-0.076c-9.604 5.52-16.014 15.643-16.213 27.279l-0 0.028v203.947c0 17.673 14.327 32 32 32s32-14.327 32-32v0-150.613l115.627 66.56v81.92c0 17.673 14.327 32 32 32s32-14.327 32-32v0z","M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667s426.667 191.025 426.667 426.667z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["xmr"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6389,"id":2,"name":"xmr","prevSize":32,"code":61351,"codes":[61351,61352]},"setIdx":0,"setId":0,"iconIdx":570},{"icon":{"paths":["M124.587 164.267c39.819-16.312 86.032-25.78 134.457-25.78 77.377 0 149.108 24.176 208.052 65.385l-1.175-0.778c135.163 103.766 225.181 260.534 238.806 438.675l0.127 2.071s-53.333-101.12-236.8-145.493-359.68-102.827-343.467-334.080z","M413.44 938.667c-6.046-22.216-9.52-47.723-9.52-74.042 0-72.731 26.528-139.266 70.436-190.458l-0.329 0.393c105.813-133.12 133.973-201.387 142.933-305.067 46.061 78.54 76.655 171.431 85.165 270.63l0.168 2.437c12.373 155.307-147.627 299.947-288.853 296.107z","M817.067 85.333c-85.393 8.45-154.725 68.574-176.73 148.331l-0.336 1.429c-31.147 128 52.907 124.587 73.387 341.333 0.758 16.126 14.016 28.914 30.262 28.914 9.945 0 18.771-4.793 24.294-12.194l0.057-0.080c94.72-105.813 276.053-353.28 49.067-507.733z"],"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["yii"]},"attrs":[{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)","opacity":0.3},{"fill":"rgb(0, 0, 0)"}],"properties":{"order":6390,"id":1,"name":"yii","prevSize":32,"code":61353,"codes":[61353,61354,61355]},"setIdx":0,"setId":0,"iconIdx":571},{"icon":{"paths":["M400.213 591.787v-159.573c-0.005-0.255-0.008-0.557-0.008-0.858 0-24.978 20.249-45.227 45.227-45.227 8.854 0 17.114 2.544 24.088 6.942l-0.187-0.11 133.12 80.213c13.288 8.038 22.033 22.411 22.033 38.827s-8.745 30.788-21.831 38.713l-0.202 0.113-133.12 80.213c-6.788 4.287-15.047 6.832-23.901 6.832-24.978 0-45.227-20.249-45.227-45.227 0-0.302 0.003-0.603 0.009-0.903l-0.001 0.045z","M295.68 170.667h432.64c116.171 0 210.347 94.175 210.347 210.347v261.973c0 116.171-94.175 210.347-210.347 210.347h-432.64c-116.171 0-210.347-94.175-210.347-210.347v-261.973c0-116.171 94.175-210.347 210.347-210.347z"],"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"isMulticolor":true,"isMulticolor2":true,"grid":0,"tags":["youtube"]},"attrs":[{"fill":"rgb(0, 0, 0)"},{"fill":"rgb(0, 0, 0)","opacity":0.3}],"properties":{"order":6391,"id":0,"name":"youtube","prevSize":32,"code":61356,"codes":[61356,61357]},"setIdx":0,"setId":0,"iconIdx":572}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon","name":"icomoon"},"historySize":50,"showCodes":true,"gridSize":16}} \ No newline at end of file diff --git a/src/_metronic/assets/keenicons/duotone/style.css b/src/_metronic/assets/keenicons/duotone/style.css new file mode 100644 index 0000000..83ec6f2 --- /dev/null +++ b/src/_metronic/assets/keenicons/duotone/style.css @@ -0,0 +1,8678 @@ +@font-face { + font-family: 'keenicons-duotone'; + src: url('fonts/keenicons-duotone.eot?eut7fk'); + src: url('fonts/keenicons-duotone.eot?eut7fk#iefix') format('embedded-opentype'), + url('fonts/keenicons-duotone.ttf?eut7fk') format('truetype'), + url('fonts/keenicons-duotone.woff?eut7fk') format('woff'), + url('fonts/keenicons-duotone.svg?eut7fk#keenicons-duotone') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +.ki-duotone { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'keenicons-duotone' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + +/* Better Font Rendering =========== */ + display: inline-flex; + direction: ltr; + position: relative; + display: inline-flex; + direction: ltr; + position: relative; + display: inline-flex; + direction: ltr; + position: relative; + display: inline-flex; + direction: ltr; + position: relative; + display: inline-flex; + direction: ltr; + position: relative; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ki-abstract-1 .path1:before { + content: "\e900"; + + opacity: 0.3; +} +.ki-abstract-1 .path2:before { + content: "\e901"; + position: absolute; left: 0; + +} +.ki-abstract-2 .path1:before { + content: "\e902"; + + opacity: 0.3; +} +.ki-abstract-2 .path2:before { + content: "\e903"; + position: absolute; left: 0; + +} +.ki-abstract-3 .path1:before { + content: "\e904"; + + opacity: 0.3; +} +.ki-abstract-3 .path2:before { + content: "\e905"; + position: absolute; left: 0; + +} +.ki-abstract-4 .path1:before { + content: "\e906"; + + opacity: 0.3; +} +.ki-abstract-4 .path2:before { + content: "\e907"; + position: absolute; left: 0; + +} +.ki-abstract-5 .path1:before { + content: "\e908"; + + opacity: 0.3; +} +.ki-abstract-5 .path2:before { + content: "\e909"; + position: absolute; left: 0; + +} +.ki-abstract-6:before { + content: "\e90a"; +} +.ki-abstract-7 .path1:before { + content: "\e90b"; + + opacity: 0.3; +} +.ki-abstract-7 .path2:before { + content: "\e90c"; + position: absolute; left: 0; + +} +.ki-abstract-8 .path1:before { + content: "\e90d"; + + opacity: 0.3; +} +.ki-abstract-8 .path2:before { + content: "\e90e"; + position: absolute; left: 0; + +} +.ki-abstract-9 .path1:before { + content: "\e90f"; + + opacity: 0.3; +} +.ki-abstract-9 .path2:before { + content: "\e910"; + position: absolute; left: 0; + +} +.ki-abstract-10 .path1:before { + content: "\e911"; + + opacity: 0.3; +} +.ki-abstract-10 .path2:before { + content: "\e912"; + position: absolute; left: 0; + +} +.ki-abstract-11 .path1:before { + content: "\e913"; + + opacity: 0.3; +} +.ki-abstract-11 .path2:before { + content: "\e914"; + position: absolute; left: 0; + +} +.ki-abstract-12 .path1:before { + content: "\e915"; + + opacity: 0.3; +} +.ki-abstract-12 .path2:before { + content: "\e916"; + position: absolute; left: 0; + +} +.ki-abstract-13 .path1:before { + content: "\e917"; + + opacity: 0.3; +} +.ki-abstract-13 .path2:before { + content: "\e918"; + position: absolute; left: 0; + +} +.ki-abstract-14 .path1:before { + content: "\e919"; + +} +.ki-abstract-14 .path2:before { + content: "\e91a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-15 .path1:before { + content: "\e91b"; + + opacity: 0.3; +} +.ki-abstract-15 .path2:before { + content: "\e91c"; + position: absolute; left: 0; + +} +.ki-abstract-16 .path1:before { + content: "\e91d"; + + opacity: 0.3; +} +.ki-abstract-16 .path2:before { + content: "\e91e"; + position: absolute; left: 0; + +} +.ki-abstract-17 .path1:before { + content: "\e91f"; + +} +.ki-abstract-17 .path2:before { + content: "\e920"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-18 .path1:before { + content: "\e921"; + +} +.ki-abstract-18 .path2:before { + content: "\e922"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-19 .path1:before { + content: "\e923"; + +} +.ki-abstract-19 .path2:before { + content: "\e924"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-20 .path1:before { + content: "\e925"; + +} +.ki-abstract-20 .path2:before { + content: "\e926"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-21 .path1:before { + content: "\e927"; + + opacity: 0.3; +} +.ki-abstract-21 .path2:before { + content: "\e928"; + position: absolute; left: 0; + +} +.ki-abstract-22 .path1:before { + content: "\e929"; + + opacity: 0.3; +} +.ki-abstract-22 .path2:before { + content: "\e92a"; + position: absolute; left: 0; + +} +.ki-abstract-23 .path1:before { + content: "\e92b"; + + opacity: 0.3; +} +.ki-abstract-23 .path2:before { + content: "\e92c"; + position: absolute; left: 0; + +} +.ki-abstract-24 .path1:before { + content: "\e92d"; + +} +.ki-abstract-24 .path2:before { + content: "\e92e"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-25 .path1:before { + content: "\e92f"; + + opacity: 0.3; +} +.ki-abstract-25 .path2:before { + content: "\e930"; + position: absolute; left: 0; + +} +.ki-abstract-26 .path1:before { + content: "\e931"; + + opacity: 0.3; +} +.ki-abstract-26 .path2:before { + content: "\e932"; + position: absolute; left: 0; + +} +.ki-abstract-27 .path1:before { + content: "\e933"; + +} +.ki-abstract-27 .path2:before { + content: "\e934"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-28 .path1:before { + content: "\e935"; + +} +.ki-abstract-28 .path2:before { + content: "\e936"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-29 .path1:before { + content: "\e937"; + +} +.ki-abstract-29 .path2:before { + content: "\e938"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-30 .path1:before { + content: "\e939"; + +} +.ki-abstract-30 .path2:before { + content: "\e93a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-31 .path1:before { + content: "\e93b"; + +} +.ki-abstract-31 .path2:before { + content: "\e93c"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-32 .path1:before { + content: "\e93d"; + +} +.ki-abstract-32 .path2:before { + content: "\e93e"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-33 .path1:before { + content: "\e93f"; + + opacity: 0.3; +} +.ki-abstract-33 .path2:before { + content: "\e940"; + position: absolute; left: 0; + +} +.ki-abstract-34 .path1:before { + content: "\e941"; + + opacity: 0.3; +} +.ki-abstract-34 .path2:before { + content: "\e942"; + position: absolute; left: 0; + +} +.ki-abstract-35 .path1:before { + content: "\e943"; + +} +.ki-abstract-35 .path2:before { + content: "\e944"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-36 .path1:before { + content: "\e945"; + +} +.ki-abstract-36 .path2:before { + content: "\e946"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-37 .path1:before { + content: "\e947"; + + opacity: 0.3; +} +.ki-abstract-37 .path2:before { + content: "\e948"; + position: absolute; left: 0; + +} +.ki-abstract-38 .path1:before { + content: "\e949"; + +} +.ki-abstract-38 .path2:before { + content: "\e94a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-39 .path1:before { + content: "\e94b"; + + opacity: 0.3; +} +.ki-abstract-39 .path2:before { + content: "\e94c"; + position: absolute; left: 0; + +} +.ki-abstract-40 .path1:before { + content: "\e94d"; + +} +.ki-abstract-40 .path2:before { + content: "\e94e"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-41 .path1:before { + content: "\e94f"; + +} +.ki-abstract-41 .path2:before { + content: "\e950"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-42 .path1:before { + content: "\e951"; + + opacity: 0.3; +} +.ki-abstract-42 .path2:before { + content: "\e952"; + position: absolute; left: 0; + +} +.ki-abstract-43 .path1:before { + content: "\e953"; + + opacity: 0.3; +} +.ki-abstract-43 .path2:before { + content: "\e954"; + position: absolute; left: 0; + +} +.ki-abstract-44 .path1:before { + content: "\e955"; + +} +.ki-abstract-44 .path2:before { + content: "\e956"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-45 .path1:before { + content: "\e957"; + +} +.ki-abstract-45 .path2:before { + content: "\e958"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-46 .path1:before { + content: "\e959"; + + opacity: 0.3; +} +.ki-abstract-46 .path2:before { + content: "\e95a"; + position: absolute; left: 0; + +} +.ki-abstract-47 .path1:before { + content: "\e95b"; + + opacity: 0.3; +} +.ki-abstract-47 .path2:before { + content: "\e95c"; + position: absolute; left: 0; + +} +.ki-abstract-48 .path1:before { + content: "\e95d"; + + opacity: 0.3; +} +.ki-abstract-48 .path2:before { + content: "\e95e"; + position: absolute; left: 0; + +} +.ki-abstract-48 .path3:before { + content: "\e95f"; + position: absolute; left: 0; + +} +.ki-abstract-49 .path1:before { + content: "\e960"; + + opacity: 0.3; +} +.ki-abstract-49 .path2:before { + content: "\e961"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-abstract-49 .path3:before { + content: "\e962"; + position: absolute; left: 0; + +} +.ki-abstract .path1:before { + content: "\e963"; + + opacity: 0.3; +} +.ki-abstract .path2:before { + content: "\e964"; + position: absolute; left: 0; + +} +.ki-add-files .path1:before { + content: "\e965"; + +} +.ki-add-files .path2:before { + content: "\e966"; + position: absolute; left: 0; + +} +.ki-add-files .path3:before { + content: "\e967"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-add-folder .path1:before { + content: "\e968"; + + opacity: 0.3; +} +.ki-add-folder .path2:before { + content: "\e969"; + position: absolute; left: 0; + +} +.ki-add-item .path1:before { + content: "\e96a"; + + opacity: 0.3; +} +.ki-add-item .path2:before { + content: "\e96b"; + position: absolute; left: 0; + +} +.ki-add-item .path3:before { + content: "\e96c"; + position: absolute; left: 0; + +} +.ki-add-notepad .path1:before { + content: "\e96d"; + + opacity: 0.3; +} +.ki-add-notepad .path2:before { + content: "\e96e"; + position: absolute; left: 0; + +} +.ki-add-notepad .path3:before { + content: "\e96f"; + position: absolute; left: 0; + +} +.ki-add-notepad .path4:before { + content: "\e970"; + position: absolute; left: 0; + +} +.ki-address-book .path1:before { + content: "\e971"; + +} +.ki-address-book .path2:before { + content: "\e972"; + position: absolute; left: 0; + +} +.ki-address-book .path3:before { + content: "\e973"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-airplane-square .path1:before { + content: "\e974"; + + opacity: 0.3; +} +.ki-airplane-square .path2:before { + content: "\e975"; + position: absolute; left: 0; + +} +.ki-airplane .path1:before { + content: "\e976"; + + opacity: 0.3; +} +.ki-airplane .path2:before { + content: "\e977"; + position: absolute; left: 0; + +} +.ki-airpod .path1:before { + content: "\e978"; + + opacity: 0.3; +} +.ki-airpod .path2:before { + content: "\e979"; + position: absolute; left: 0; + +} +.ki-airpod .path3:before { + content: "\e97a"; + position: absolute; left: 0; + +} +.ki-android .path1:before { + content: "\e97b"; + + opacity: 0.3; +} +.ki-android .path2:before { + content: "\e97c"; + position: absolute; left: 0; + +} +.ki-android .path3:before { + content: "\e97d"; + position: absolute; left: 0; + +} +.ki-android .path4:before { + content: "\e97e"; + position: absolute; left: 0; + +} +.ki-android .path5:before { + content: "\e97f"; + position: absolute; left: 0; + +} +.ki-android .path6:before { + content: "\e980"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-angular .path1:before { + content: "\e981"; + + opacity: 0.3; +} +.ki-angular .path2:before { + content: "\e982"; + position: absolute; left: 0; + +} +.ki-angular .path3:before { + content: "\e983"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-apple .path1:before { + content: "\e984"; + +} +.ki-apple .path2:before { + content: "\e985"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-archive-tick .path1:before { + content: "\e986"; + + opacity: 0.3; +} +.ki-archive-tick .path2:before { + content: "\e987"; + position: absolute; left: 0; + +} +.ki-archive .path1:before { + content: "\e988"; + + opacity: 0.3; +} +.ki-archive .path2:before { + content: "\e989"; + position: absolute; left: 0; + +} +.ki-archive .path3:before { + content: "\e98a"; + position: absolute; left: 0; + +} +.ki-arrow-circle-left .path1:before { + content: "\e98b"; + + opacity: 0.3; +} +.ki-arrow-circle-left .path2:before { + content: "\e98c"; + position: absolute; left: 0; + +} +.ki-arrow-circle-right .path1:before { + content: "\e98d"; + + opacity: 0.3; +} +.ki-arrow-circle-right .path2:before { + content: "\e98e"; + position: absolute; left: 0; + +} +.ki-arrow-diagonal .path1:before { + content: "\e98f"; + + opacity: 0.3; +} +.ki-arrow-diagonal .path2:before { + content: "\e990"; + position: absolute; left: 0; + +} +.ki-arrow-diagonal .path3:before { + content: "\e991"; + position: absolute; left: 0; + +} +.ki-arrow-down-left .path1:before { + content: "\e992"; + +} +.ki-arrow-down-left .path2:before { + content: "\e993"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-arrow-down-refraction .path1:before { + content: "\e994"; + + opacity: 0.3; +} +.ki-arrow-down-refraction .path2:before { + content: "\e995"; + position: absolute; left: 0; + +} +.ki-arrow-down-right .path1:before { + content: "\e996"; + +} +.ki-arrow-down-right .path2:before { + content: "\e997"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-arrow-down .path1:before { + content: "\e998"; + +} +.ki-arrow-down .path2:before { + content: "\e999"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-arrow-left .path1:before { + content: "\e99a"; + +} +.ki-arrow-left .path2:before { + content: "\e99b"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-arrow-mix .path1:before { + content: "\e99c"; + +} +.ki-arrow-mix .path2:before { + content: "\e99d"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-arrow-right-left .path1:before { + content: "\e99e"; + + opacity: 0.3; +} +.ki-arrow-right-left .path2:before { + content: "\e99f"; + position: absolute; left: 0; + +} +.ki-arrow-right .path1:before { + content: "\e9a0"; + +} +.ki-arrow-right .path2:before { + content: "\e9a1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-arrow-two-diagonals .path1:before { + content: "\e9a2"; + + opacity: 0.3; +} +.ki-arrow-two-diagonals .path2:before { + content: "\e9a3"; + position: absolute; left: 0; + +} +.ki-arrow-two-diagonals .path3:before { + content: "\e9a4"; + position: absolute; left: 0; + +} +.ki-arrow-two-diagonals .path4:before { + content: "\e9a5"; + position: absolute; left: 0; + +} +.ki-arrow-two-diagonals .path5:before { + content: "\e9a6"; + position: absolute; left: 0; + +} +.ki-arrow-up-down .path1:before { + content: "\e9a7"; + + opacity: 0.3; +} +.ki-arrow-up-down .path2:before { + content: "\e9a8"; + position: absolute; left: 0; + +} +.ki-arrow-up-left .path1:before { + content: "\e9a9"; + +} +.ki-arrow-up-left .path2:before { + content: "\e9aa"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-arrow-up-refraction .path1:before { + content: "\e9ab"; + + opacity: 0.3; +} +.ki-arrow-up-refraction .path2:before { + content: "\e9ac"; + position: absolute; left: 0; + +} +.ki-arrow-up-right .path1:before { + content: "\e9ad"; + +} +.ki-arrow-up-right .path2:before { + content: "\e9ae"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-arrow-up .path1:before { + content: "\e9af"; + +} +.ki-arrow-up .path2:before { + content: "\e9b0"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-arrow-zigzag .path1:before { + content: "\e9b1"; + +} +.ki-arrow-zigzag .path2:before { + content: "\e9b2"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-arrows-circle .path1:before { + content: "\e9b3"; + + opacity: 0.3; +} +.ki-arrows-circle .path2:before { + content: "\e9b4"; + position: absolute; left: 0; + +} +.ki-arrows-loop .path1:before { + content: "\e9b5"; + + opacity: 0.3; +} +.ki-arrows-loop .path2:before { + content: "\e9b6"; + position: absolute; left: 0; + +} +.ki-artificial-intelligence .path1:before { + content: "\e9b7"; + + opacity: 0.3; +} +.ki-artificial-intelligence .path2:before { + content: "\e9b8"; + position: absolute; left: 0; + +} +.ki-artificial-intelligence .path3:before { + content: "\e9b9"; + position: absolute; left: 0; + +} +.ki-artificial-intelligence .path4:before { + content: "\e9ba"; + position: absolute; left: 0; + +} +.ki-artificial-intelligence .path5:before { + content: "\e9bb"; + position: absolute; left: 0; + +} +.ki-artificial-intelligence .path6:before { + content: "\e9bc"; + position: absolute; left: 0; + +} +.ki-artificial-intelligence .path7:before { + content: "\e9bd"; + position: absolute; left: 0; + +} +.ki-artificial-intelligence .path8:before { + content: "\e9be"; + position: absolute; left: 0; + +} +.ki-auto-brightness .path1:before { + content: "\e9bf"; + + opacity: 0.3; +} +.ki-auto-brightness .path2:before { + content: "\e9c0"; + position: absolute; left: 0; + +} +.ki-auto-brightness .path3:before { + content: "\e9c1"; + position: absolute; left: 0; + +} +.ki-avalanche .path1:before { + content: "\e9c2"; + + opacity: 0.3; +} +.ki-avalanche .path2:before { + content: "\e9c3"; + position: absolute; left: 0; + +} +.ki-award .path1:before { + content: "\e9c4"; + + opacity: 0.3; +} +.ki-award .path2:before { + content: "\e9c5"; + position: absolute; left: 0; + +} +.ki-award .path3:before { + content: "\e9c6"; + position: absolute; left: 0; + +} +.ki-badge .path1:before { + content: "\e9c7"; + + opacity: 0.3; +} +.ki-badge .path2:before { + content: "\e9c8"; + position: absolute; left: 0; + +} +.ki-badge .path3:before { + content: "\e9c9"; + position: absolute; left: 0; + +} +.ki-badge .path4:before { + content: "\e9ca"; + position: absolute; left: 0; + +} +.ki-badge .path5:before { + content: "\e9cb"; + position: absolute; left: 0; + +} +.ki-bandage .path1:before { + content: "\e9cc"; + + opacity: 0.3; +} +.ki-bandage .path2:before { + content: "\e9cd"; + position: absolute; left: 0; + +} +.ki-bank .path1:before { + content: "\e9ce"; + + opacity: 0.3; +} +.ki-bank .path2:before { + content: "\e9cf"; + position: absolute; left: 0; + +} +.ki-barcode .path1:before { + content: "\e9d0"; + +} +.ki-barcode .path2:before { + content: "\e9d1"; + position: absolute; left: 0; + +} +.ki-barcode .path3:before { + content: "\e9d2"; + position: absolute; left: 0; + +} +.ki-barcode .path4:before { + content: "\e9d3"; + position: absolute; left: 0; + +} +.ki-barcode .path5:before { + content: "\e9d4"; + position: absolute; left: 0; + +} +.ki-barcode .path6:before { + content: "\e9d5"; + position: absolute; left: 0; + +} +.ki-barcode .path7:before { + content: "\e9d6"; + position: absolute; left: 0; + +} +.ki-barcode .path8:before { + content: "\e9d7"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-basket-ok .path1:before { + content: "\e9d8"; + + opacity: 0.3; +} +.ki-basket-ok .path2:before { + content: "\e9d9"; + position: absolute; left: 0; + +} +.ki-basket-ok .path3:before { + content: "\e9da"; + position: absolute; left: 0; + +} +.ki-basket-ok .path4:before { + content: "\e9db"; + position: absolute; left: 0; + +} +.ki-basket .path1:before { + content: "\e9dc"; + + opacity: 0.3; +} +.ki-basket .path2:before { + content: "\e9dd"; + position: absolute; left: 0; + +} +.ki-basket .path3:before { + content: "\e9de"; + position: absolute; left: 0; + +} +.ki-basket .path4:before { + content: "\e9df"; + position: absolute; left: 0; + +} +.ki-behance .path1:before { + content: "\e9e0"; + +} +.ki-behance .path2:before { + content: "\e9e1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-bill .path1:before { + content: "\e9e2"; + + opacity: 0.3; +} +.ki-bill .path2:before { + content: "\e9e3"; + position: absolute; left: 0; + +} +.ki-bill .path3:before { + content: "\e9e4"; + position: absolute; left: 0; + +} +.ki-bill .path4:before { + content: "\e9e5"; + position: absolute; left: 0; + +} +.ki-bill .path5:before { + content: "\e9e6"; + position: absolute; left: 0; + +} +.ki-bill .path6:before { + content: "\e9e7"; + position: absolute; left: 0; + +} +.ki-binance-usd .path1:before { + content: "\e9e8"; + +} +.ki-binance-usd .path2:before { + content: "\e9e9"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-binance-usd .path3:before { + content: "\e9ea"; + position: absolute; left: 0; + +} +.ki-binance-usd .path4:before { + content: "\e9eb"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-binance .path1:before { + content: "\e9ec"; + + opacity: 0.3; +} +.ki-binance .path2:before { + content: "\e9ed"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-binance .path3:before { + content: "\e9ee"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-binance .path4:before { + content: "\e9ef"; + position: absolute; left: 0; + +} +.ki-binance .path5:before { + content: "\e9f0"; + position: absolute; left: 0; + +} +.ki-bitcoin .path1:before { + content: "\e9f1"; + + opacity: 0.3; +} +.ki-bitcoin .path2:before { + content: "\e9f2"; + position: absolute; left: 0; + +} +.ki-black-down:before { + content: "\e9f3"; +} +.ki-black-left-line .path1:before { + content: "\e9f4"; + +} +.ki-black-left-line .path2:before { + content: "\e9f5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-black-left:before { + content: "\e9f6"; +} +.ki-black-right-line .path1:before { + content: "\e9f7"; + +} +.ki-black-right-line .path2:before { + content: "\e9f8"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-black-right:before { + content: "\e9f9"; +} +.ki-black-up:before { + content: "\e9fa"; +} +.ki-bluetooth .path1:before { + content: "\e9fb"; + +} +.ki-bluetooth .path2:before { + content: "\e9fc"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-book-open .path1:before { + content: "\e9fd"; + + opacity: 0.3; +} +.ki-book-open .path2:before { + content: "\e9fe"; + position: absolute; left: 0; + +} +.ki-book-open .path3:before { + content: "\e9ff"; + position: absolute; left: 0; + +} +.ki-book-open .path4:before { + content: "\ea00"; + position: absolute; left: 0; + +} +.ki-book-square .path1:before { + content: "\ea01"; + + opacity: 0.3; +} +.ki-book-square .path2:before { + content: "\ea02"; + position: absolute; left: 0; + +} +.ki-book-square .path3:before { + content: "\ea03"; + position: absolute; left: 0; + +} +.ki-book .path1:before { + content: "\ea04"; + + opacity: 0.3; +} +.ki-book .path2:before { + content: "\ea05"; + position: absolute; left: 0; + +} +.ki-book .path3:before { + content: "\ea06"; + position: absolute; left: 0; + +} +.ki-book .path4:before { + content: "\ea07"; + position: absolute; left: 0; + +} +.ki-bookmark-2 .path1:before { + content: "\ea08"; + + opacity: 0.3; +} +.ki-bookmark-2 .path2:before { + content: "\ea09"; + position: absolute; left: 0; + +} +.ki-bookmark .path1:before { + content: "\ea0a"; + + opacity: 0.3; +} +.ki-bookmark .path2:before { + content: "\ea0b"; + position: absolute; left: 0; + +} +.ki-bootstrap .path1:before { + content: "\ea0c"; + + opacity: 0.3; +} +.ki-bootstrap .path2:before { + content: "\ea0d"; + position: absolute; left: 0; + +} +.ki-bootstrap .path3:before { + content: "\ea0e"; + position: absolute; left: 0; + +} +.ki-briefcase .path1:before { + content: "\ea0f"; + + opacity: 0.3; +} +.ki-briefcase .path2:before { + content: "\ea10"; + position: absolute; left: 0; + +} +.ki-brifecase-cros .path1:before { + content: "\ea11"; + + opacity: 0.3; +} +.ki-brifecase-cros .path2:before { + content: "\ea12"; + position: absolute; left: 0; + +} +.ki-brifecase-cros .path3:before { + content: "\ea13"; + position: absolute; left: 0; + +} +.ki-brifecase-tick .path1:before { + content: "\ea14"; + + opacity: 0.3; +} +.ki-brifecase-tick .path2:before { + content: "\ea15"; + position: absolute; left: 0; + +} +.ki-brifecase-tick .path3:before { + content: "\ea16"; + position: absolute; left: 0; + +} +.ki-brifecase-timer .path1:before { + content: "\ea17"; + + opacity: 0.3; +} +.ki-brifecase-timer .path2:before { + content: "\ea18"; + position: absolute; left: 0; + +} +.ki-brifecase-timer .path3:before { + content: "\ea19"; + position: absolute; left: 0; + +} +.ki-brush .path1:before { + content: "\ea1a"; + + opacity: 0.3; +} +.ki-brush .path2:before { + content: "\ea1b"; + position: absolute; left: 0; + +} +.ki-bucket-square .path1:before { + content: "\ea1c"; + + opacity: 0.3; +} +.ki-bucket-square .path2:before { + content: "\ea1d"; + position: absolute; left: 0; + +} +.ki-bucket-square .path3:before { + content: "\ea1e"; + position: absolute; left: 0; + +} +.ki-bucket .path1:before { + content: "\ea1f"; + + opacity: 0.3; +} +.ki-bucket .path2:before { + content: "\ea20"; + position: absolute; left: 0; + +} +.ki-bucket .path3:before { + content: "\ea21"; + position: absolute; left: 0; + +} +.ki-bucket .path4:before { + content: "\ea22"; + position: absolute; left: 0; + +} +.ki-burger-menu-1 .path1:before { + content: "\ea23"; + + opacity: 0.3; +} +.ki-burger-menu-1 .path2:before { + content: "\ea24"; + position: absolute; left: 0; + +} +.ki-burger-menu-1 .path3:before { + content: "\ea25"; + position: absolute; left: 0; + +} +.ki-burger-menu-1 .path4:before { + content: "\ea26"; + position: absolute; left: 0; + +} +.ki-burger-menu-2 .path1:before { + content: "\ea27"; + + opacity: 0.3; +} +.ki-burger-menu-2 .path2:before { + content: "\ea28"; + position: absolute; left: 0; + +} +.ki-burger-menu-2 .path3:before { + content: "\ea29"; + position: absolute; left: 0; + +} +.ki-burger-menu-2 .path4:before { + content: "\ea2a"; + position: absolute; left: 0; + +} +.ki-burger-menu-2 .path5:before { + content: "\ea2b"; + position: absolute; left: 0; + +} +.ki-burger-menu-2 .path6:before { + content: "\ea2c"; + position: absolute; left: 0; + +} +.ki-burger-menu-2 .path7:before { + content: "\ea2d"; + position: absolute; left: 0; + +} +.ki-burger-menu-2 .path8:before { + content: "\ea2e"; + position: absolute; left: 0; + +} +.ki-burger-menu-2 .path9:before { + content: "\ea2f"; + position: absolute; left: 0; + +} +.ki-burger-menu-2 .path10:before { + content: "\ea30"; + position: absolute; left: 0; + +} +.ki-burger-menu-3 .path1:before { + content: "\ea31"; + + opacity: 0.3; +} +.ki-burger-menu-3 .path2:before { + content: "\ea32"; + position: absolute; left: 0; + +} +.ki-burger-menu-3 .path3:before { + content: "\ea33"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-burger-menu-3 .path4:before { + content: "\ea34"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-burger-menu-3 .path5:before { + content: "\ea35"; + position: absolute; left: 0; + +} +.ki-burger-menu-3 .path6:before { + content: "\ea36"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-burger-menu-3 .path7:before { + content: "\ea37"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-burger-menu-3 .path8:before { + content: "\ea38"; + position: absolute; left: 0; + +} +.ki-burger-menu-3 .path9:before { + content: "\ea39"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-burger-menu-4:before { + content: "\ea3a"; +} +.ki-burger-menu-5:before { + content: "\ea3b"; +} +.ki-burger-menu-6:before { + content: "\ea3c"; +} +.ki-burger-menu .path1:before { + content: "\ea3d"; + + opacity: 0.3; +} +.ki-burger-menu .path2:before { + content: "\ea3e"; + position: absolute; left: 0; + +} +.ki-burger-menu .path3:before { + content: "\ea3f"; + position: absolute; left: 0; + +} +.ki-burger-menu .path4:before { + content: "\ea40"; + position: absolute; left: 0; + +} +.ki-bus .path1:before { + content: "\ea41"; + + opacity: 0.3; +} +.ki-bus .path2:before { + content: "\ea42"; + position: absolute; left: 0; + +} +.ki-bus .path3:before { + content: "\ea43"; + position: absolute; left: 0; + +} +.ki-bus .path4:before { + content: "\ea44"; + position: absolute; left: 0; + +} +.ki-bus .path5:before { + content: "\ea45"; + position: absolute; left: 0; + +} +.ki-calculator .path1:before { + content: "\ea46"; + + opacity: 0.3; +} +.ki-calculator .path2:before { + content: "\ea47"; + position: absolute; left: 0; + +} +.ki-calculator .path3:before { + content: "\ea48"; + position: absolute; left: 0; + +} +.ki-calculator .path4:before { + content: "\ea49"; + position: absolute; left: 0; + +} +.ki-calculator .path5:before { + content: "\ea4a"; + position: absolute; left: 0; + +} +.ki-calculator .path6:before { + content: "\ea4b"; + position: absolute; left: 0; + +} +.ki-calendar-2 .path1:before { + content: "\ea4c"; + + opacity: 0.3; +} +.ki-calendar-2 .path2:before { + content: "\ea4d"; + position: absolute; left: 0; + +} +.ki-calendar-2 .path3:before { + content: "\ea4e"; + position: absolute; left: 0; + +} +.ki-calendar-2 .path4:before { + content: "\ea4f"; + position: absolute; left: 0; + +} +.ki-calendar-2 .path5:before { + content: "\ea50"; + position: absolute; left: 0; + +} +.ki-calendar-8 .path1:before { + content: "\ea51"; + + opacity: 0.3; +} +.ki-calendar-8 .path2:before { + content: "\ea52"; + position: absolute; left: 0; + +} +.ki-calendar-8 .path3:before { + content: "\ea53"; + position: absolute; left: 0; + +} +.ki-calendar-8 .path4:before { + content: "\ea54"; + position: absolute; left: 0; + +} +.ki-calendar-8 .path5:before { + content: "\ea55"; + position: absolute; left: 0; + +} +.ki-calendar-8 .path6:before { + content: "\ea56"; + position: absolute; left: 0; + +} +.ki-calendar-add .path1:before { + content: "\ea57"; + + opacity: 0.3; +} +.ki-calendar-add .path2:before { + content: "\ea58"; + position: absolute; left: 0; + +} +.ki-calendar-add .path3:before { + content: "\ea59"; + position: absolute; left: 0; + +} +.ki-calendar-add .path4:before { + content: "\ea5a"; + position: absolute; left: 0; + +} +.ki-calendar-add .path5:before { + content: "\ea5b"; + position: absolute; left: 0; + +} +.ki-calendar-add .path6:before { + content: "\ea5c"; + position: absolute; left: 0; + +} +.ki-calendar-edit .path1:before { + content: "\ea5d"; + + opacity: 0.3; +} +.ki-calendar-edit .path2:before { + content: "\ea5e"; + position: absolute; left: 0; + +} +.ki-calendar-edit .path3:before { + content: "\ea5f"; + position: absolute; left: 0; + +} +.ki-calendar-remove .path1:before { + content: "\ea60"; + + opacity: 0.3; +} +.ki-calendar-remove .path2:before { + content: "\ea61"; + position: absolute; left: 0; + +} +.ki-calendar-remove .path3:before { + content: "\ea62"; + position: absolute; left: 0; + +} +.ki-calendar-remove .path4:before { + content: "\ea63"; + position: absolute; left: 0; + +} +.ki-calendar-remove .path5:before { + content: "\ea64"; + position: absolute; left: 0; + +} +.ki-calendar-remove .path6:before { + content: "\ea65"; + position: absolute; left: 0; + +} +.ki-calendar-search .path1:before { + content: "\ea66"; + + opacity: 0.3; +} +.ki-calendar-search .path2:before { + content: "\ea67"; + position: absolute; left: 0; + +} +.ki-calendar-search .path3:before { + content: "\ea68"; + position: absolute; left: 0; + +} +.ki-calendar-search .path4:before { + content: "\ea69"; + position: absolute; left: 0; + +} +.ki-calendar-tick .path1:before { + content: "\ea6a"; + + opacity: 0.3; +} +.ki-calendar-tick .path2:before { + content: "\ea6b"; + position: absolute; left: 0; + +} +.ki-calendar-tick .path3:before { + content: "\ea6c"; + position: absolute; left: 0; + +} +.ki-calendar-tick .path4:before { + content: "\ea6d"; + position: absolute; left: 0; + +} +.ki-calendar-tick .path5:before { + content: "\ea6e"; + position: absolute; left: 0; + +} +.ki-calendar-tick .path6:before { + content: "\ea6f"; + position: absolute; left: 0; + +} +.ki-calendar .path1:before { + content: "\ea70"; + + opacity: 0.3; +} +.ki-calendar .path2:before { + content: "\ea71"; + position: absolute; left: 0; + +} +.ki-call .path1:before { + content: "\ea72"; + + opacity: 0.3; +} +.ki-call .path2:before { + content: "\ea73"; + position: absolute; left: 0; + +} +.ki-call .path3:before { + content: "\ea74"; + position: absolute; left: 0; + +} +.ki-call .path4:before { + content: "\ea75"; + position: absolute; left: 0; + +} +.ki-call .path5:before { + content: "\ea76"; + position: absolute; left: 0; + +} +.ki-call .path6:before { + content: "\ea77"; + position: absolute; left: 0; + +} +.ki-call .path7:before { + content: "\ea78"; + position: absolute; left: 0; + +} +.ki-call .path8:before { + content: "\ea79"; + position: absolute; left: 0; + +} +.ki-capsule .path1:before { + content: "\ea7a"; + + opacity: 0.3; +} +.ki-capsule .path2:before { + content: "\ea7b"; + position: absolute; left: 0; + +} +.ki-car-2 .path1:before { + content: "\ea7c"; + +} +.ki-car-2 .path2:before { + content: "\ea7d"; + position: absolute; left: 0; + +} +.ki-car-2 .path3:before { + content: "\ea7e"; + position: absolute; left: 0; + +} +.ki-car-2 .path4:before { + content: "\ea7f"; + position: absolute; left: 0; + +} +.ki-car-2 .path5:before { + content: "\ea80"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-car-2 .path6:before { + content: "\ea81"; + position: absolute; left: 0; + +} +.ki-car-3 .path1:before { + content: "\ea82"; + +} +.ki-car-3 .path2:before { + content: "\ea83"; + position: absolute; left: 0; + +} +.ki-car-3 .path3:before { + content: "\ea84"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-car .path1:before { + content: "\ea85"; + + opacity: 0.3; +} +.ki-car .path2:before { + content: "\ea86"; + position: absolute; left: 0; + +} +.ki-car .path3:before { + content: "\ea87"; + position: absolute; left: 0; + +} +.ki-car .path4:before { + content: "\ea88"; + position: absolute; left: 0; + +} +.ki-car .path5:before { + content: "\ea89"; + position: absolute; left: 0; + +} +.ki-category .path1:before { + content: "\ea8a"; + +} +.ki-category .path2:before { + content: "\ea8b"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-category .path3:before { + content: "\ea8c"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-category .path4:before { + content: "\ea8d"; + position: absolute; left: 0; + +} +.ki-cd .path1:before { + content: "\ea8e"; + +} +.ki-cd .path2:before { + content: "\ea8f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-celsius .path1:before { + content: "\ea90"; + +} +.ki-celsius .path2:before { + content: "\ea91"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-line-down-2 .path1:before { + content: "\ea92"; + + opacity: 0.3; +} +.ki-chart-line-down-2 .path2:before { + content: "\ea93"; + position: absolute; left: 0; + +} +.ki-chart-line-down-2 .path3:before { + content: "\ea94"; + position: absolute; left: 0; + +} +.ki-chart-line-down .path1:before { + content: "\ea95"; + + opacity: 0.3; +} +.ki-chart-line-down .path2:before { + content: "\ea96"; + position: absolute; left: 0; + +} +.ki-chart-line-star .path1:before { + content: "\ea97"; + +} +.ki-chart-line-star .path2:before { + content: "\ea98"; + position: absolute; left: 0; + +} +.ki-chart-line-star .path3:before { + content: "\ea99"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-line-up-2 .path1:before { + content: "\ea9a"; + +} +.ki-chart-line-up-2 .path2:before { + content: "\ea9b"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-line-up .path1:before { + content: "\ea9c"; + +} +.ki-chart-line-up .path2:before { + content: "\ea9d"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-line .path1:before { + content: "\ea9e"; + + opacity: 0.3; +} +.ki-chart-line .path2:before { + content: "\ea9f"; + position: absolute; left: 0; + +} +.ki-chart-pie-3 .path1:before { + content: "\eaa0"; + +} +.ki-chart-pie-3 .path2:before { + content: "\eaa1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-pie-3 .path3:before { + content: "\eaa2"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-pie-4 .path1:before { + content: "\eaa3"; + +} +.ki-chart-pie-4 .path2:before { + content: "\eaa4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-pie-4 .path3:before { + content: "\eaa5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-pie-simple .path1:before { + content: "\eaa6"; + +} +.ki-chart-pie-simple .path2:before { + content: "\eaa7"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-pie-too .path1:before { + content: "\eaa8"; + + opacity: 0.3; +} +.ki-chart-pie-too .path2:before { + content: "\eaa9"; + position: absolute; left: 0; + +} +.ki-chart-simple-2 .path1:before { + content: "\eaaa"; + + opacity: 0.3; +} +.ki-chart-simple-2 .path2:before { + content: "\eaab"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-simple-2 .path3:before { + content: "\eaac"; + position: absolute; left: 0; + +} +.ki-chart-simple-2 .path4:before { + content: "\eaad"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-simple-3 .path1:before { + content: "\eaae"; + + opacity: 0.3; +} +.ki-chart-simple-3 .path2:before { + content: "\eaaf"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-simple-3 .path3:before { + content: "\eab0"; + position: absolute; left: 0; + +} +.ki-chart-simple-3 .path4:before { + content: "\eab1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-simple .path1:before { + content: "\eab2"; + + opacity: 0.3; +} +.ki-chart-simple .path2:before { + content: "\eab3"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart-simple .path3:before { + content: "\eab4"; + position: absolute; left: 0; + +} +.ki-chart-simple .path4:before { + content: "\eab5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-chart .path1:before { + content: "\eab6"; + +} +.ki-chart .path2:before { + content: "\eab7"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-check-circle .path1:before { + content: "\eab8"; + + opacity: 0.3; +} +.ki-check-circle .path2:before { + content: "\eab9"; + position: absolute; left: 0; + +} +.ki-check-square .path1:before { + content: "\eaba"; + + opacity: 0.3; +} +.ki-check-square .path2:before { + content: "\eabb"; + position: absolute; left: 0; + +} +.ki-check:before { + content: "\eabc"; +} +.ki-cheque .path1:before { + content: "\eabd"; + +} +.ki-cheque .path2:before { + content: "\eabe"; + position: absolute; left: 0; + +} +.ki-cheque .path3:before { + content: "\eabf"; + position: absolute; left: 0; + +} +.ki-cheque .path4:before { + content: "\eac0"; + position: absolute; left: 0; + +} +.ki-cheque .path5:before { + content: "\eac1"; + position: absolute; left: 0; + +} +.ki-cheque .path6:before { + content: "\eac2"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-cheque .path7:before { + content: "\eac3"; + position: absolute; left: 0; + +} +.ki-chrome .path1:before { + content: "\eac4"; + + opacity: 0.3; +} +.ki-chrome .path2:before { + content: "\eac5"; + position: absolute; left: 0; + +} +.ki-classmates .path1:before { + content: "\eac6"; + +} +.ki-classmates .path2:before { + content: "\eac7"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-click .path1:before { + content: "\eac8"; + +} +.ki-click .path2:before { + content: "\eac9"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-click .path3:before { + content: "\eaca"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-click .path4:before { + content: "\eacb"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-click .path5:before { + content: "\eacc"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-clipboard .path1:before { + content: "\eacd"; + + opacity: 0.3; +} +.ki-clipboard .path2:before { + content: "\eace"; + position: absolute; left: 0; + +} +.ki-clipboard .path3:before { + content: "\eacf"; + position: absolute; left: 0; + +} +.ki-cloud-add .path1:before { + content: "\ead0"; + +} +.ki-cloud-add .path2:before { + content: "\ead1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-cloud-change .path1:before { + content: "\ead2"; + +} +.ki-cloud-change .path2:before { + content: "\ead3"; + position: absolute; left: 0; + +} +.ki-cloud-change .path3:before { + content: "\ead4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-cloud-download .path1:before { + content: "\ead5"; + + opacity: 0.3; +} +.ki-cloud-download .path2:before { + content: "\ead6"; + position: absolute; left: 0; + +} +.ki-cloud:before { + content: "\ead7"; +} +.ki-code .path1:before { + content: "\ead8"; + + opacity: 0.3; +} +.ki-code .path2:before { + content: "\ead9"; + position: absolute; left: 0; + +} +.ki-code .path3:before { + content: "\eada"; + position: absolute; left: 0; + +} +.ki-code .path4:before { + content: "\eadb"; + position: absolute; left: 0; + +} +.ki-coffee .path1:before { + content: "\eadc"; + + opacity: 0.3; +} +.ki-coffee .path2:before { + content: "\eadd"; + position: absolute; left: 0; + +} +.ki-coffee .path3:before { + content: "\eade"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-coffee .path4:before { + content: "\eadf"; + position: absolute; left: 0; + +} +.ki-coffee .path5:before { + content: "\eae0"; + position: absolute; left: 0; + +} +.ki-coffee .path6:before { + content: "\eae1"; + position: absolute; left: 0; + +} +.ki-color-swatch .path1:before { + content: "\eae2"; + + opacity: 0.3; +} +.ki-color-swatch .path2:before { + content: "\eae3"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path3:before { + content: "\eae4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path4:before { + content: "\eae5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path5:before { + content: "\eae6"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path6:before { + content: "\eae7"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path7:before { + content: "\eae8"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path8:before { + content: "\eae9"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path9:before { + content: "\eaea"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path10:before { + content: "\eaeb"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path11:before { + content: "\eaec"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path12:before { + content: "\eaed"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path13:before { + content: "\eaee"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path14:before { + content: "\eaef"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path15:before { + content: "\eaf0"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path16:before { + content: "\eaf1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path17:before { + content: "\eaf2"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path18:before { + content: "\eaf3"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path19:before { + content: "\eaf4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path20:before { + content: "\eaf5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-color-swatch .path21:before { + content: "\eaf6"; + position: absolute; left: 0; + +} +.ki-colors-square .path1:before { + content: "\eaf7"; + + opacity: 0.3; +} +.ki-colors-square .path2:before { + content: "\eaf8"; + position: absolute; left: 0; + +} +.ki-colors-square .path3:before { + content: "\eaf9"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-colors-square .path4:before { + content: "\eafa"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-compass .path1:before { + content: "\eafb"; + +} +.ki-compass .path2:before { + content: "\eafc"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-copy-success .path1:before { + content: "\eafd"; + +} +.ki-copy-success .path2:before { + content: "\eafe"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-copy:before { + content: "\eaff"; +} +.ki-courier-express .path1:before { + content: "\eb00"; + +} +.ki-courier-express .path2:before { + content: "\eb01"; + position: absolute; left: 0; + +} +.ki-courier-express .path3:before { + content: "\eb02"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-courier-express .path4:before { + content: "\eb03"; + position: absolute; left: 0; + +} +.ki-courier-express .path5:before { + content: "\eb04"; + position: absolute; left: 0; + +} +.ki-courier-express .path6:before { + content: "\eb05"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-courier-express .path7:before { + content: "\eb06"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-courier .path1:before { + content: "\eb07"; + +} +.ki-courier .path2:before { + content: "\eb08"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-courier .path3:before { + content: "\eb09"; + position: absolute; left: 0; + +} +.ki-credit-cart .path1:before { + content: "\eb0a"; + + opacity: 0.3; +} +.ki-credit-cart .path2:before { + content: "\eb0b"; + position: absolute; left: 0; + +} +.ki-cross-circle .path1:before { + content: "\eb0c"; + + opacity: 0.3; +} +.ki-cross-circle .path2:before { + content: "\eb0d"; + position: absolute; left: 0; + +} +.ki-cross-square .path1:before { + content: "\eb0e"; + + opacity: 0.3; +} +.ki-cross-square .path2:before { + content: "\eb0f"; + position: absolute; left: 0; + +} +.ki-cross .path1:before { + content: "\eb10"; + +} +.ki-cross .path2:before { + content: "\eb11"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-crown-2 .path1:before { + content: "\eb12"; + + opacity: 0.3; +} +.ki-crown-2 .path2:before { + content: "\eb13"; + position: absolute; left: 0; + +} +.ki-crown-2 .path3:before { + content: "\eb14"; + position: absolute; left: 0; + +} +.ki-crown .path1:before { + content: "\eb15"; + + opacity: 0.3; +} +.ki-crown .path2:before { + content: "\eb16"; + position: absolute; left: 0; + +} +.ki-css .path1:before { + content: "\eb17"; + + opacity: 0.3; +} +.ki-css .path2:before { + content: "\eb18"; + position: absolute; left: 0; + +} +.ki-cube-2 .path1:before { + content: "\eb19"; + + opacity: 0.3; +} +.ki-cube-2 .path2:before { + content: "\eb1a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-cube-2 .path3:before { + content: "\eb1b"; + position: absolute; left: 0; + +} +.ki-cube-3 .path1:before { + content: "\eb1c"; + + opacity: 0.3; +} +.ki-cube-3 .path2:before { + content: "\eb1d"; + position: absolute; left: 0; + +} +.ki-cup .path1:before { + content: "\eb1e"; + + opacity: 0.3; +} +.ki-cup .path2:before { + content: "\eb1f"; + position: absolute; left: 0; + +} +.ki-dash .path1:before { + content: "\eb20"; + + opacity: 0.3; +} +.ki-dash .path2:before { + content: "\eb21"; + position: absolute; left: 0; + +} +.ki-data .path1:before { + content: "\eb22"; + +} +.ki-data .path2:before { + content: "\eb23"; + position: absolute; left: 0; + +} +.ki-data .path3:before { + content: "\eb24"; + position: absolute; left: 0; + +} +.ki-data .path4:before { + content: "\eb25"; + position: absolute; left: 0; + +} +.ki-data .path5:before { + content: "\eb26"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-delete-files .path1:before { + content: "\eb27"; + +} +.ki-delete-files .path2:before { + content: "\eb28"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-delete-folder .path1:before { + content: "\eb29"; + + opacity: 0.3; +} +.ki-delete-folder .path2:before { + content: "\eb2a"; + position: absolute; left: 0; + +} +.ki-delivery-2 .path1:before { + content: "\eb2b"; + + opacity: 0.3; +} +.ki-delivery-2 .path2:before { + content: "\eb2c"; + position: absolute; left: 0; + +} +.ki-delivery-2 .path3:before { + content: "\eb2d"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-delivery-2 .path4:before { + content: "\eb2e"; + position: absolute; left: 0; + +} +.ki-delivery-2 .path5:before { + content: "\eb2f"; + position: absolute; left: 0; + +} +.ki-delivery-2 .path6:before { + content: "\eb30"; + position: absolute; left: 0; + +} +.ki-delivery-2 .path7:before { + content: "\eb31"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-delivery-2 .path8:before { + content: "\eb32"; + position: absolute; left: 0; + +} +.ki-delivery-2 .path9:before { + content: "\eb33"; + position: absolute; left: 0; + +} +.ki-delivery-3 .path1:before { + content: "\eb34"; + + opacity: 0.3; +} +.ki-delivery-3 .path2:before { + content: "\eb35"; + position: absolute; left: 0; + +} +.ki-delivery-3 .path3:before { + content: "\eb36"; + position: absolute; left: 0; + +} +.ki-delivery-24 .path1:before { + content: "\eb37"; + +} +.ki-delivery-24 .path2:before { + content: "\eb38"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-delivery-24 .path3:before { + content: "\eb39"; + position: absolute; left: 0; + +} +.ki-delivery-24 .path4:before { + content: "\eb3a"; + position: absolute; left: 0; + +} +.ki-delivery-door .path1:before { + content: "\eb3b"; + + opacity: 0.3; +} +.ki-delivery-door .path2:before { + content: "\eb3c"; + position: absolute; left: 0; + +} +.ki-delivery-door .path3:before { + content: "\eb3d"; + position: absolute; left: 0; + +} +.ki-delivery-door .path4:before { + content: "\eb3e"; + position: absolute; left: 0; + +} +.ki-delivery-geolocation .path1:before { + content: "\eb3f"; + +} +.ki-delivery-geolocation .path2:before { + content: "\eb40"; + position: absolute; left: 0; + +} +.ki-delivery-geolocation .path3:before { + content: "\eb41"; + position: absolute; left: 0; + +} +.ki-delivery-geolocation .path4:before { + content: "\eb42"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-delivery-geolocation .path5:before { + content: "\eb43"; + position: absolute; left: 0; + +} +.ki-delivery-time .path1:before { + content: "\eb44"; + +} +.ki-delivery-time .path2:before { + content: "\eb45"; + position: absolute; left: 0; + +} +.ki-delivery-time .path3:before { + content: "\eb46"; + position: absolute; left: 0; + +} +.ki-delivery-time .path4:before { + content: "\eb47"; + position: absolute; left: 0; + +} +.ki-delivery-time .path5:before { + content: "\eb48"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-delivery .path1:before { + content: "\eb49"; + +} +.ki-delivery .path2:before { + content: "\eb4a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-delivery .path3:before { + content: "\eb4b"; + position: absolute; left: 0; + +} +.ki-delivery .path4:before { + content: "\eb4c"; + position: absolute; left: 0; + +} +.ki-delivery .path5:before { + content: "\eb4d"; + position: absolute; left: 0; + +} +.ki-design-2 .path1:before { + content: "\eb4e"; + + opacity: 0.3; +} +.ki-design-2 .path2:before { + content: "\eb4f"; + position: absolute; left: 0; + +} +.ki-design-frame .path1:before { + content: "\eb50"; + + opacity: 0.3; +} +.ki-design-frame .path2:before { + content: "\eb51"; + position: absolute; left: 0; + +} +.ki-design-mask .path1:before { + content: "\eb52"; + + opacity: 0.3; +} +.ki-design-mask .path2:before { + content: "\eb53"; + position: absolute; left: 0; + +} +.ki-design .path1:before { + content: "\eb54"; + + opacity: 0.3; +} +.ki-design .path2:before { + content: "\eb55"; + position: absolute; left: 0; + +} +.ki-devices-2 .path1:before { + content: "\eb56"; + + opacity: 0.3; +} +.ki-devices-2 .path2:before { + content: "\eb57"; + position: absolute; left: 0; + +} +.ki-devices-2 .path3:before { + content: "\eb58"; + position: absolute; left: 0; + +} +.ki-devices .path1:before { + content: "\eb59"; + + opacity: 0.3; +} +.ki-devices .path2:before { + content: "\eb5a"; + position: absolute; left: 0; + +} +.ki-devices .path3:before { + content: "\eb5b"; + position: absolute; left: 0; + +} +.ki-devices .path4:before { + content: "\eb5c"; + position: absolute; left: 0; + +} +.ki-devices .path5:before { + content: "\eb5d"; + position: absolute; left: 0; + +} +.ki-diamonds .path1:before { + content: "\eb5e"; + +} +.ki-diamonds .path2:before { + content: "\eb5f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-directbox-default .path1:before { + content: "\eb60"; + +} +.ki-directbox-default .path2:before { + content: "\eb61"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-directbox-default .path3:before { + content: "\eb62"; + position: absolute; left: 0; + +} +.ki-directbox-default .path4:before { + content: "\eb63"; + position: absolute; left: 0; + +} +.ki-disconnect .path1:before { + content: "\eb64"; + +} +.ki-disconnect .path2:before { + content: "\eb65"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-disconnect .path3:before { + content: "\eb66"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-disconnect .path4:before { + content: "\eb67"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-disconnect .path5:before { + content: "\eb68"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-discount .path1:before { + content: "\eb69"; + + opacity: 0.3; +} +.ki-discount .path2:before { + content: "\eb6a"; + position: absolute; left: 0; + +} +.ki-disk .path1:before { + content: "\eb6b"; + + opacity: 0.3; +} +.ki-disk .path2:before { + content: "\eb6c"; + position: absolute; left: 0; + +} +.ki-dislike .path1:before { + content: "\eb6d"; + +} +.ki-dislike .path2:before { + content: "\eb6e"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-dj:before { + content: "\eb6f"; +} +.ki-document .path1:before { + content: "\eb70"; + + opacity: 0.3; +} +.ki-document .path2:before { + content: "\eb71"; + position: absolute; left: 0; + +} +.ki-dollar .path1:before { + content: "\eb72"; + + opacity: 0.3; +} +.ki-dollar .path2:before { + content: "\eb73"; + position: absolute; left: 0; + +} +.ki-dollar .path3:before { + content: "\eb74"; + position: absolute; left: 0; + +} +.ki-dots-circle-vertical .path1:before { + content: "\eb75"; + + opacity: 0.3; +} +.ki-dots-circle-vertical .path2:before { + content: "\eb76"; + position: absolute; left: 0; + +} +.ki-dots-circle-vertical .path3:before { + content: "\eb77"; + position: absolute; left: 0; + +} +.ki-dots-circle-vertical .path4:before { + content: "\eb78"; + position: absolute; left: 0; + +} +.ki-dots-circle .path1:before { + content: "\eb79"; + + opacity: 0.3; +} +.ki-dots-circle .path2:before { + content: "\eb7a"; + position: absolute; left: 0; + +} +.ki-dots-circle .path3:before { + content: "\eb7b"; + position: absolute; left: 0; + +} +.ki-dots-circle .path4:before { + content: "\eb7c"; + position: absolute; left: 0; + +} +.ki-dots-horizontal .path1:before { + content: "\eb7d"; + +} +.ki-dots-horizontal .path2:before { + content: "\eb7e"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-dots-horizontal .path3:before { + content: "\eb7f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-dots-square-vertical .path1:before { + content: "\eb80"; + + opacity: 0.3; +} +.ki-dots-square-vertical .path2:before { + content: "\eb81"; + position: absolute; left: 0; + +} +.ki-dots-square-vertical .path3:before { + content: "\eb82"; + position: absolute; left: 0; + +} +.ki-dots-square-vertical .path4:before { + content: "\eb83"; + position: absolute; left: 0; + +} +.ki-dots-square .path1:before { + content: "\eb84"; + + opacity: 0.3; +} +.ki-dots-square .path2:before { + content: "\eb85"; + position: absolute; left: 0; + +} +.ki-dots-square .path3:before { + content: "\eb86"; + position: absolute; left: 0; + +} +.ki-dots-square .path4:before { + content: "\eb87"; + position: absolute; left: 0; + +} +.ki-dots-vertical .path1:before { + content: "\eb88"; + +} +.ki-dots-vertical .path2:before { + content: "\eb89"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-dots-vertical .path3:before { + content: "\eb8a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-double-check-circle .path1:before { + content: "\eb8b"; + + opacity: 0.3; +} +.ki-double-check-circle .path2:before { + content: "\eb8c"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-double-check-circle .path3:before { + content: "\eb8d"; + position: absolute; left: 0; + +} +.ki-double-check .path1:before { + content: "\eb8e"; + +} +.ki-double-check .path2:before { + content: "\eb8f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-double-down .path1:before { + content: "\eb90"; + +} +.ki-double-down .path2:before { + content: "\eb91"; + position: absolute; left: 0; + +} +.ki-double-down .path3:before { + content: "\eb92"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-double-left-arrow .path1:before { + content: "\eb93"; + + opacity: 0.3; +} +.ki-double-left-arrow .path2:before { + content: "\eb94"; + position: absolute; left: 0; + +} +.ki-double-left .path1:before { + content: "\eb95"; + +} +.ki-double-left .path2:before { + content: "\eb96"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-double-right-arrow .path1:before { + content: "\eb97"; + + opacity: 0.3; +} +.ki-double-right-arrow .path2:before { + content: "\eb98"; + position: absolute; left: 0; + +} +.ki-double-right .path1:before { + content: "\eb99"; + +} +.ki-double-right .path2:before { + content: "\eb9a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-double-up .path1:before { + content: "\eb9b"; + +} +.ki-double-up .path2:before { + content: "\eb9c"; + position: absolute; left: 0; + +} +.ki-double-up .path3:before { + content: "\eb9d"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-down-square .path1:before { + content: "\eb9e"; + + opacity: 0.3; +} +.ki-down-square .path2:before { + content: "\eb9f"; + position: absolute; left: 0; + +} +.ki-down:before { + content: "\eba0"; +} +.ki-dribbble .path1:before { + content: "\eba1"; + +} +.ki-dribbble .path2:before { + content: "\eba2"; + position: absolute; left: 0; + +} +.ki-dribbble .path3:before { + content: "\eba3"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-dribbble .path4:before { + content: "\eba4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-dribbble .path5:before { + content: "\eba5"; + position: absolute; left: 0; + +} +.ki-dribbble .path6:before { + content: "\eba6"; + position: absolute; left: 0; + +} +.ki-drop .path1:before { + content: "\eba7"; + +} +.ki-drop .path2:before { + content: "\eba8"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-dropbox .path1:before { + content: "\eba9"; + + opacity: 0.4; +} +.ki-dropbox .path2:before { + content: "\ebaa"; + position: absolute; left: 0; + + opacity: 0.4; +} +.ki-dropbox .path3:before { + content: "\ebab"; + position: absolute; left: 0; + + opacity: 0.4; +} +.ki-dropbox .path4:before { + content: "\ebac"; + position: absolute; left: 0; + + opacity: 0.4; +} +.ki-dropbox .path5:before { + content: "\ebad"; + position: absolute; left: 0; + +} +.ki-educare .path1:before { + content: "\ebae"; + + opacity: 0.3; +} +.ki-educare .path2:before { + content: "\ebaf"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-educare .path3:before { + content: "\ebb0"; + position: absolute; left: 0; + +} +.ki-educare .path4:before { + content: "\ebb1"; + position: absolute; left: 0; + +} +.ki-electricity .path1:before { + content: "\ebb2"; + +} +.ki-electricity .path2:before { + content: "\ebb3"; + position: absolute; left: 0; + +} +.ki-electricity .path3:before { + content: "\ebb4"; + position: absolute; left: 0; + +} +.ki-electricity .path4:before { + content: "\ebb5"; + position: absolute; left: 0; + +} +.ki-electricity .path5:before { + content: "\ebb6"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-electricity .path6:before { + content: "\ebb7"; + position: absolute; left: 0; + +} +.ki-electricity .path7:before { + content: "\ebb8"; + position: absolute; left: 0; + +} +.ki-electricity .path8:before { + content: "\ebb9"; + position: absolute; left: 0; + +} +.ki-electricity .path9:before { + content: "\ebba"; + position: absolute; left: 0; + +} +.ki-electricity .path10:before { + content: "\ebbb"; + position: absolute; left: 0; + +} +.ki-electronic-clock .path1:before { + content: "\ebbc"; + + opacity: 0.3; +} +.ki-electronic-clock .path2:before { + content: "\ebbd"; + position: absolute; left: 0; + +} +.ki-electronic-clock .path3:before { + content: "\ebbe"; + position: absolute; left: 0; + +} +.ki-electronic-clock .path4:before { + content: "\ebbf"; + position: absolute; left: 0; + +} +.ki-element-1 .path1:before { + content: "\ebc0"; + +} +.ki-element-1 .path2:before { + content: "\ebc1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-1 .path3:before { + content: "\ebc2"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-1 .path4:before { + content: "\ebc3"; + position: absolute; left: 0; + +} +.ki-element-2 .path1:before { + content: "\ebc4"; + +} +.ki-element-2 .path2:before { + content: "\ebc5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-3 .path1:before { + content: "\ebc6"; + + opacity: 0.3; +} +.ki-element-3 .path2:before { + content: "\ebc7"; + position: absolute; left: 0; + +} +.ki-element-4 .path1:before { + content: "\ebc8"; + +} +.ki-element-4 .path2:before { + content: "\ebc9"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-5 .path1:before { + content: "\ebca"; + +} +.ki-element-5 .path2:before { + content: "\ebcb"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-6 .path1:before { + content: "\ebcc"; + + opacity: 0.3; +} +.ki-element-6 .path2:before { + content: "\ebcd"; + position: absolute; left: 0; + +} +.ki-element-7 .path1:before { + content: "\ebce"; + +} +.ki-element-7 .path2:before { + content: "\ebcf"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-8 .path1:before { + content: "\ebd0"; + + opacity: 0.3; +} +.ki-element-8 .path2:before { + content: "\ebd1"; + position: absolute; left: 0; + +} +.ki-element-9 .path1:before { + content: "\ebd2"; + + opacity: 0.3; +} +.ki-element-9 .path2:before { + content: "\ebd3"; + position: absolute; left: 0; + +} +.ki-element-10 .path1:before { + content: "\ebd4"; + +} +.ki-element-10 .path2:before { + content: "\ebd5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-10 .path3:before { + content: "\ebd6"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-11 .path1:before { + content: "\ebd7"; + +} +.ki-element-11 .path2:before { + content: "\ebd8"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-11 .path3:before { + content: "\ebd9"; + position: absolute; left: 0; + +} +.ki-element-11 .path4:before { + content: "\ebda"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-12 .path1:before { + content: "\ebdb"; + + opacity: 0.3; +} +.ki-element-12 .path2:before { + content: "\ebdc"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-12 .path3:before { + content: "\ebdd"; + position: absolute; left: 0; + +} +.ki-element-equal .path1:before { + content: "\ebde"; + +} +.ki-element-equal .path2:before { + content: "\ebdf"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-equal .path3:before { + content: "\ebe0"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-equal .path4:before { + content: "\ebe1"; + position: absolute; left: 0; + +} +.ki-element-equal .path5:before { + content: "\ebe2"; + position: absolute; left: 0; + +} +.ki-element-plus .path1:before { + content: "\ebe3"; + +} +.ki-element-plus .path2:before { + content: "\ebe4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-plus .path3:before { + content: "\ebe5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-element-plus .path4:before { + content: "\ebe6"; + position: absolute; left: 0; + +} +.ki-element-plus .path5:before { + content: "\ebe7"; + position: absolute; left: 0; + +} +.ki-emoji-happy .path1:before { + content: "\ebe8"; + + opacity: 0.3; +} +.ki-emoji-happy .path2:before { + content: "\ebe9"; + position: absolute; left: 0; + +} +.ki-emoji-happy .path3:before { + content: "\ebea"; + position: absolute; left: 0; + +} +.ki-emoji-happy .path4:before { + content: "\ebeb"; + position: absolute; left: 0; + +} +.ki-enjin-coin .path1:before { + content: "\ebec"; + +} +.ki-enjin-coin .path2:before { + content: "\ebed"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-entrance-left .path1:before { + content: "\ebee"; + +} +.ki-entrance-left .path2:before { + content: "\ebef"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-entrance-right .path1:before { + content: "\ebf0"; + + opacity: 0.3; +} +.ki-entrance-right .path2:before { + content: "\ebf1"; + position: absolute; left: 0; + +} +.ki-eraser .path1:before { + content: "\ebf2"; + + opacity: 0.3; +} +.ki-eraser .path2:before { + content: "\ebf3"; + position: absolute; left: 0; + +} +.ki-eraser .path3:before { + content: "\ebf4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-euro .path1:before { + content: "\ebf5"; + + opacity: 0.3; +} +.ki-euro .path2:before { + content: "\ebf6"; + position: absolute; left: 0; + +} +.ki-euro .path3:before { + content: "\ebf7"; + position: absolute; left: 0; + +} +.ki-exit-down .path1:before { + content: "\ebf8"; + + opacity: 0.3; +} +.ki-exit-down .path2:before { + content: "\ebf9"; + position: absolute; left: 0; + +} +.ki-exit-left .path1:before { + content: "\ebfa"; + + opacity: 0.3; +} +.ki-exit-left .path2:before { + content: "\ebfb"; + position: absolute; left: 0; + +} +.ki-exit-right-corner .path1:before { + content: "\ebfc"; + + opacity: 0.3; +} +.ki-exit-right-corner .path2:before { + content: "\ebfd"; + position: absolute; left: 0; + +} +.ki-exit-right .path1:before { + content: "\ebfe"; + + opacity: 0.3; +} +.ki-exit-right .path2:before { + content: "\ebff"; + position: absolute; left: 0; + +} +.ki-exit-up .path1:before { + content: "\ec00"; + + opacity: 0.3; +} +.ki-exit-up .path2:before { + content: "\ec01"; + position: absolute; left: 0; + +} +.ki-external-drive .path1:before { + content: "\ec02"; + +} +.ki-external-drive .path2:before { + content: "\ec03"; + position: absolute; left: 0; + +} +.ki-external-drive .path3:before { + content: "\ec04"; + position: absolute; left: 0; + +} +.ki-external-drive .path4:before { + content: "\ec05"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-external-drive .path5:before { + content: "\ec06"; + position: absolute; left: 0; + +} +.ki-eye-slash .path1:before { + content: "\ec07"; + +} +.ki-eye-slash .path2:before { + content: "\ec08"; + position: absolute; left: 0; + +} +.ki-eye-slash .path3:before { + content: "\ec09"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-eye-slash .path4:before { + content: "\ec0a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-eye .path1:before { + content: "\ec0b"; + +} +.ki-eye .path2:before { + content: "\ec0c"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-eye .path3:before { + content: "\ec0d"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-facebook .path1:before { + content: "\ec0e"; + + opacity: 0.3; +} +.ki-facebook .path2:before { + content: "\ec0f"; + position: absolute; left: 0; + +} +.ki-faceid .path1:before { + content: "\ec10"; + + opacity: 0.3; +} +.ki-faceid .path2:before { + content: "\ec11"; + position: absolute; left: 0; + +} +.ki-faceid .path3:before { + content: "\ec12"; + position: absolute; left: 0; + +} +.ki-faceid .path4:before { + content: "\ec13"; + position: absolute; left: 0; + +} +.ki-faceid .path5:before { + content: "\ec14"; + position: absolute; left: 0; + +} +.ki-faceid .path6:before { + content: "\ec15"; + position: absolute; left: 0; + +} +.ki-fasten .path1:before { + content: "\ec16"; + + opacity: 0.3; +} +.ki-fasten .path2:before { + content: "\ec17"; + position: absolute; left: 0; + +} +.ki-fat-rows .path1:before { + content: "\ec18"; + +} +.ki-fat-rows .path2:before { + content: "\ec19"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-feather .path1:before { + content: "\ec1a"; + + opacity: 0.3; +} +.ki-feather .path2:before { + content: "\ec1b"; + position: absolute; left: 0; + +} +.ki-figma .path1:before { + content: "\ec1c"; + + opacity: 0.4; +} +.ki-figma .path2:before { + content: "\ec1d"; + position: absolute; left: 0; + + opacity: 0.4; +} +.ki-figma .path3:before { + content: "\ec1e"; + position: absolute; left: 0; + +} +.ki-figma .path4:before { + content: "\ec1f"; + position: absolute; left: 0; + +} +.ki-figma .path5:before { + content: "\ec20"; + position: absolute; left: 0; + +} +.ki-file-added .path1:before { + content: "\ec21"; + +} +.ki-file-added .path2:before { + content: "\ec22"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-file-deleted .path1:before { + content: "\ec23"; + +} +.ki-file-deleted .path2:before { + content: "\ec24"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-file-down .path1:before { + content: "\ec25"; + + opacity: 0.3; +} +.ki-file-down .path2:before { + content: "\ec26"; + position: absolute; left: 0; + +} +.ki-file-left .path1:before { + content: "\ec27"; + + opacity: 0.3; +} +.ki-file-left .path2:before { + content: "\ec28"; + position: absolute; left: 0; + +} +.ki-file-right .path1:before { + content: "\ec29"; + + opacity: 0.3; +} +.ki-file-right .path2:before { + content: "\ec2a"; + position: absolute; left: 0; + +} +.ki-file-sheet .path1:before { + content: "\ec2b"; + +} +.ki-file-sheet .path2:before { + content: "\ec2c"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-file-up .path1:before { + content: "\ec2d"; + + opacity: 0.3; +} +.ki-file-up .path2:before { + content: "\ec2e"; + position: absolute; left: 0; + +} +.ki-file .path1:before { + content: "\ec2f"; + +} +.ki-file .path2:before { + content: "\ec30"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-files-tablet .path1:before { + content: "\ec31"; + +} +.ki-files-tablet .path2:before { + content: "\ec32"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-filter-edit .path1:before { + content: "\ec33"; + + opacity: 0.3; +} +.ki-filter-edit .path2:before { + content: "\ec34"; + position: absolute; left: 0; + +} +.ki-filter-search .path1:before { + content: "\ec35"; + + opacity: 0.3; +} +.ki-filter-search .path2:before { + content: "\ec36"; + position: absolute; left: 0; + +} +.ki-filter-search .path3:before { + content: "\ec37"; + position: absolute; left: 0; + +} +.ki-filter-square .path1:before { + content: "\ec38"; + +} +.ki-filter-square .path2:before { + content: "\ec39"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-filter-tablet .path1:before { + content: "\ec3a"; + + opacity: 0.3; +} +.ki-filter-tablet .path2:before { + content: "\ec3b"; + position: absolute; left: 0; + +} +.ki-filter-tick .path1:before { + content: "\ec3c"; + + opacity: 0.3; +} +.ki-filter-tick .path2:before { + content: "\ec3d"; + position: absolute; left: 0; + +} +.ki-filter .path1:before { + content: "\ec3e"; + +} +.ki-filter .path2:before { + content: "\ec3f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-finance-calculator .path1:before { + content: "\ec40"; + + opacity: 0.3; +} +.ki-finance-calculator .path2:before { + content: "\ec41"; + position: absolute; left: 0; + +} +.ki-finance-calculator .path3:before { + content: "\ec42"; + position: absolute; left: 0; + +} +.ki-finance-calculator .path4:before { + content: "\ec43"; + position: absolute; left: 0; + +} +.ki-finance-calculator .path5:before { + content: "\ec44"; + position: absolute; left: 0; + +} +.ki-finance-calculator .path6:before { + content: "\ec45"; + position: absolute; left: 0; + +} +.ki-finance-calculator .path7:before { + content: "\ec46"; + position: absolute; left: 0; + +} +.ki-financial-schedule .path1:before { + content: "\ec47"; + + opacity: 0.3; +} +.ki-financial-schedule .path2:before { + content: "\ec48"; + position: absolute; left: 0; + +} +.ki-financial-schedule .path3:before { + content: "\ec49"; + position: absolute; left: 0; + +} +.ki-financial-schedule .path4:before { + content: "\ec4a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-fingerprint-scanning .path1:before { + content: "\ec4b"; + +} +.ki-fingerprint-scanning .path2:before { + content: "\ec4c"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-fingerprint-scanning .path3:before { + content: "\ec4d"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-fingerprint-scanning .path4:before { + content: "\ec4e"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-fingerprint-scanning .path5:before { + content: "\ec4f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-flag .path1:before { + content: "\ec50"; + + opacity: 0.3; +} +.ki-flag .path2:before { + content: "\ec51"; + position: absolute; left: 0; + +} +.ki-flash-circle .path1:before { + content: "\ec52"; + + opacity: 0.3; +} +.ki-flash-circle .path2:before { + content: "\ec53"; + position: absolute; left: 0; + +} +.ki-flask .path1:before { + content: "\ec54"; + + opacity: 0.3; +} +.ki-flask .path2:before { + content: "\ec55"; + position: absolute; left: 0; + +} +.ki-focus .path1:before { + content: "\ec56"; + + opacity: 0.3; +} +.ki-focus .path2:before { + content: "\ec57"; + position: absolute; left: 0; + +} +.ki-folder-added .path1:before { + content: "\ec58"; + + opacity: 0.3; +} +.ki-folder-added .path2:before { + content: "\ec59"; + position: absolute; left: 0; + +} +.ki-folder-down .path1:before { + content: "\ec5a"; + + opacity: 0.3; +} +.ki-folder-down .path2:before { + content: "\ec5b"; + position: absolute; left: 0; + +} +.ki-folder-up .path1:before { + content: "\ec5c"; + + opacity: 0.3; +} +.ki-folder-up .path2:before { + content: "\ec5d"; + position: absolute; left: 0; + +} +.ki-folder .path1:before { + content: "\ec5e"; + + opacity: 0.3; +} +.ki-folder .path2:before { + content: "\ec5f"; + position: absolute; left: 0; + +} +.ki-frame .path1:before { + content: "\ec60"; + +} +.ki-frame .path2:before { + content: "\ec61"; + position: absolute; left: 0; + +} +.ki-frame .path3:before { + content: "\ec62"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-frame .path4:before { + content: "\ec63"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-gear .path1:before { + content: "\ec64"; + + opacity: 0.3; +} +.ki-gear .path2:before { + content: "\ec65"; + position: absolute; left: 0; + +} +.ki-general-mouse .path1:before { + content: "\ec66"; + + opacity: 0.3; +} +.ki-general-mouse .path2:before { + content: "\ec67"; + position: absolute; left: 0; + +} +.ki-geolocation-home .path1:before { + content: "\ec68"; + + opacity: 0.3; +} +.ki-geolocation-home .path2:before { + content: "\ec69"; + position: absolute; left: 0; + +} +.ki-geolocation .path1:before { + content: "\ec6a"; + + opacity: 0.3; +} +.ki-geolocation .path2:before { + content: "\ec6b"; + position: absolute; left: 0; + +} +.ki-ghost .path1:before { + content: "\ec6c"; + +} +.ki-ghost .path2:before { + content: "\ec6d"; + position: absolute; left: 0; + +} +.ki-ghost .path3:before { + content: "\ec6e"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-gift .path1:before { + content: "\ec6f"; + + opacity: 0.3; +} +.ki-gift .path2:before { + content: "\ec70"; + position: absolute; left: 0; + +} +.ki-gift .path3:before { + content: "\ec71"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-gift .path4:before { + content: "\ec72"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-github .path1:before { + content: "\ec73"; + + opacity: 0.3; +} +.ki-github .path2:before { + content: "\ec74"; + position: absolute; left: 0; + +} +.ki-glass .path1:before { + content: "\ec75"; + +} +.ki-glass .path2:before { + content: "\ec76"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-glass .path3:before { + content: "\ec77"; + position: absolute; left: 0; + +} +.ki-google-play .path1:before { + content: "\ec78"; + + opacity: 0.3; +} +.ki-google-play .path2:before { + content: "\ec79"; + position: absolute; left: 0; + +} +.ki-google .path1:before { + content: "\ec7a"; + + opacity: 0.3; +} +.ki-google .path2:before { + content: "\ec7b"; + position: absolute; left: 0; + +} +.ki-graph-2 .path1:before { + content: "\ec7c"; + + opacity: 0.3; +} +.ki-graph-2 .path2:before { + content: "\ec7d"; + position: absolute; left: 0; + +} +.ki-graph-2 .path3:before { + content: "\ec7e"; + position: absolute; left: 0; + +} +.ki-graph-3 .path1:before { + content: "\ec7f"; + + opacity: 0.3; +} +.ki-graph-3 .path2:before { + content: "\ec80"; + position: absolute; left: 0; + +} +.ki-graph-4 .path1:before { + content: "\ec81"; + +} +.ki-graph-4 .path2:before { + content: "\ec82"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-graph-up .path1:before { + content: "\ec83"; + + opacity: 0.3; +} +.ki-graph-up .path2:before { + content: "\ec84"; + position: absolute; left: 0; + +} +.ki-graph-up .path3:before { + content: "\ec85"; + position: absolute; left: 0; + +} +.ki-graph-up .path4:before { + content: "\ec86"; + position: absolute; left: 0; + +} +.ki-graph-up .path5:before { + content: "\ec87"; + position: absolute; left: 0; + +} +.ki-graph-up .path6:before { + content: "\ec88"; + position: absolute; left: 0; + +} +.ki-graph .path1:before { + content: "\ec89"; + + opacity: 0.3; +} +.ki-graph .path2:before { + content: "\ec8a"; + position: absolute; left: 0; + +} +.ki-graph .path3:before { + content: "\ec8b"; + position: absolute; left: 0; + +} +.ki-graph .path4:before { + content: "\ec8c"; + position: absolute; left: 0; + +} +.ki-grid-2 .path1:before { + content: "\ec8d"; + + opacity: 0.3; +} +.ki-grid-2 .path2:before { + content: "\ec8e"; + position: absolute; left: 0; + +} +.ki-grid-frame .path1:before { + content: "\ec8f"; + +} +.ki-grid-frame .path2:before { + content: "\ec90"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-grid-frame .path3:before { + content: "\ec91"; + position: absolute; left: 0; + +} +.ki-grid .path1:before { + content: "\ec92"; + + opacity: 0.3; +} +.ki-grid .path2:before { + content: "\ec93"; + position: absolute; left: 0; + +} +.ki-handcart:before { + content: "\ec94"; +} +.ki-happy-emoji .path1:before { + content: "\ec95"; + + opacity: 0.3; +} +.ki-happy-emoji .path2:before { + content: "\ec96"; + position: absolute; left: 0; + +} +.ki-heart-circle .path1:before { + content: "\ec97"; + + opacity: 0.3; +} +.ki-heart-circle .path2:before { + content: "\ec98"; + position: absolute; left: 0; + +} +.ki-heart .path1:before { + content: "\ec99"; + + opacity: 0.3; +} +.ki-heart .path2:before { + content: "\ec9a"; + position: absolute; left: 0; + +} +.ki-home-1 .path1:before { + content: "\ec9b"; + + opacity: 0.3; +} +.ki-home-1 .path2:before { + content: "\ec9c"; + position: absolute; left: 0; + +} +.ki-home-2 .path1:before { + content: "\ec9d"; + + opacity: 0.3; +} +.ki-home-2 .path2:before { + content: "\ec9e"; + position: absolute; left: 0; + +} +.ki-home-3 .path1:before { + content: "\ec9f"; + + opacity: 0.3; +} +.ki-home-3 .path2:before { + content: "\eca0"; + position: absolute; left: 0; + +} +.ki-home:before { + content: "\eca1"; +} +.ki-html .path1:before { + content: "\eca2"; + + opacity: 0.3; +} +.ki-html .path2:before { + content: "\eca3"; + position: absolute; left: 0; + +} +.ki-icon .path1:before { + content: "\eca4"; + + opacity: 0.3; +} +.ki-icon .path2:before { + content: "\eca5"; + position: absolute; left: 0; + +} +.ki-icon .path3:before { + content: "\eca6"; + position: absolute; left: 0; + +} +.ki-illustrator .path1:before { + content: "\eca7"; + + opacity: 0.3; +} +.ki-illustrator .path2:before { + content: "\eca8"; + position: absolute; left: 0; + +} +.ki-illustrator .path3:before { + content: "\eca9"; + position: absolute; left: 0; + +} +.ki-illustrator .path4:before { + content: "\ecaa"; + position: absolute; left: 0; + +} +.ki-information-2 .path1:before { + content: "\ecab"; + + opacity: 0.3; +} +.ki-information-2 .path2:before { + content: "\ecac"; + position: absolute; left: 0; + +} +.ki-information-2 .path3:before { + content: "\ecad"; + position: absolute; left: 0; + +} +.ki-information-3 .path1:before { + content: "\ecae"; + + opacity: 0.3; +} +.ki-information-3 .path2:before { + content: "\ecaf"; + position: absolute; left: 0; + +} +.ki-information-3 .path3:before { + content: "\ecb0"; + position: absolute; left: 0; + +} +.ki-information-4 .path1:before { + content: "\ecb1"; + + opacity: 0.3; +} +.ki-information-4 .path2:before { + content: "\ecb2"; + position: absolute; left: 0; + +} +.ki-information-4 .path3:before { + content: "\ecb3"; + position: absolute; left: 0; + +} +.ki-information-5 .path1:before { + content: "\ecb4"; + + opacity: 0.3; +} +.ki-information-5 .path2:before { + content: "\ecb5"; + position: absolute; left: 0; + +} +.ki-information-5 .path3:before { + content: "\ecb6"; + position: absolute; left: 0; + +} +.ki-information .path1:before { + content: "\ecb7"; + + opacity: 0.3; +} +.ki-information .path2:before { + content: "\ecb8"; + position: absolute; left: 0; + +} +.ki-information .path3:before { + content: "\ecb9"; + position: absolute; left: 0; + +} +.ki-instagram .path1:before { + content: "\ecba"; + + opacity: 0.3; +} +.ki-instagram .path2:before { + content: "\ecbb"; + position: absolute; left: 0; + +} +.ki-joystick .path1:before { + content: "\ecbc"; + +} +.ki-joystick .path2:before { + content: "\ecbd"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-joystick .path3:before { + content: "\ecbe"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-joystick .path4:before { + content: "\ecbf"; + position: absolute; left: 0; + +} +.ki-js-2 .path1:before { + content: "\ecc0"; + +} +.ki-js-2 .path2:before { + content: "\ecc1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-js .path1:before { + content: "\ecc2"; + +} +.ki-js .path2:before { + content: "\ecc3"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-kanban .path1:before { + content: "\ecc4"; + +} +.ki-kanban .path2:before { + content: "\ecc5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-key-square .path1:before { + content: "\ecc6"; + + opacity: 0.3; +} +.ki-key-square .path2:before { + content: "\ecc7"; + position: absolute; left: 0; + +} +.ki-key .path1:before { + content: "\ecc8"; + + opacity: 0.3; +} +.ki-key .path2:before { + content: "\ecc9"; + position: absolute; left: 0; + +} +.ki-keyboard .path1:before { + content: "\ecca"; + +} +.ki-keyboard .path2:before { + content: "\eccb"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-laptop .path1:before { + content: "\eccc"; + + opacity: 0.3; +} +.ki-laptop .path2:before { + content: "\eccd"; + position: absolute; left: 0; + +} +.ki-laravel .path1:before { + content: "\ecce"; + + opacity: 0.3; +} +.ki-laravel .path2:before { + content: "\eccf"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-laravel .path3:before { + content: "\ecd0"; + position: absolute; left: 0; + +} +.ki-laravel .path4:before { + content: "\ecd1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-laravel .path5:before { + content: "\ecd2"; + position: absolute; left: 0; + +} +.ki-laravel .path6:before { + content: "\ecd3"; + position: absolute; left: 0; + +} +.ki-laravel .path7:before { + content: "\ecd4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-left-square .path1:before { + content: "\ecd5"; + + opacity: 0.3; +} +.ki-left-square .path2:before { + content: "\ecd6"; + position: absolute; left: 0; + +} +.ki-left:before { + content: "\ecd7"; +} +.ki-like-2 .path1:before { + content: "\ecd8"; + + opacity: 0.3; +} +.ki-like-2 .path2:before { + content: "\ecd9"; + position: absolute; left: 0; + +} +.ki-like-folder .path1:before { + content: "\ecda"; + + opacity: 0.3; +} +.ki-like-folder .path2:before { + content: "\ecdb"; + position: absolute; left: 0; + +} +.ki-like-shapes .path1:before { + content: "\ecdc"; + + opacity: 0.3; +} +.ki-like-shapes .path2:before { + content: "\ecdd"; + position: absolute; left: 0; + +} +.ki-like-tag .path1:before { + content: "\ecde"; + + opacity: 0.3; +} +.ki-like-tag .path2:before { + content: "\ecdf"; + position: absolute; left: 0; + +} +.ki-like .path1:before { + content: "\ece0"; + +} +.ki-like .path2:before { + content: "\ece1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-loading .path1:before { + content: "\ece2"; + +} +.ki-loading .path2:before { + content: "\ece3"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-lock-2 .path1:before { + content: "\ece4"; + +} +.ki-lock-2 .path2:before { + content: "\ece5"; + position: absolute; left: 0; + +} +.ki-lock-2 .path3:before { + content: "\ece6"; + position: absolute; left: 0; + +} +.ki-lock-2 .path4:before { + content: "\ece7"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-lock-2 .path5:before { + content: "\ece8"; + position: absolute; left: 0; + +} +.ki-lock-3 .path1:before { + content: "\ece9"; + + opacity: 0.3; +} +.ki-lock-3 .path2:before { + content: "\ecea"; + position: absolute; left: 0; + +} +.ki-lock-3 .path3:before { + content: "\eceb"; + position: absolute; left: 0; + +} +.ki-lock .path1:before { + content: "\ecec"; + + opacity: 0.3; +} +.ki-lock .path2:before { + content: "\eced"; + position: absolute; left: 0; + +} +.ki-lock .path3:before { + content: "\ecee"; + position: absolute; left: 0; + +} +.ki-logistic .path1:before { + content: "\ecef"; + + opacity: 0.3; +} +.ki-logistic .path2:before { + content: "\ecf0"; + position: absolute; left: 0; + +} +.ki-logistic .path3:before { + content: "\ecf1"; + position: absolute; left: 0; + +} +.ki-logistic .path4:before { + content: "\ecf2"; + position: absolute; left: 0; + +} +.ki-logistic .path5:before { + content: "\ecf3"; + position: absolute; left: 0; + +} +.ki-logistic .path6:before { + content: "\ecf4"; + position: absolute; left: 0; + +} +.ki-logistic .path7:before { + content: "\ecf5"; + position: absolute; left: 0; + +} +.ki-lots-shopping .path1:before { + content: "\ecf6"; + + opacity: 0.3; +} +.ki-lots-shopping .path2:before { + content: "\ecf7"; + position: absolute; left: 0; + +} +.ki-lots-shopping .path3:before { + content: "\ecf8"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-lots-shopping .path4:before { + content: "\ecf9"; + position: absolute; left: 0; + +} +.ki-lots-shopping .path5:before { + content: "\ecfa"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-lots-shopping .path6:before { + content: "\ecfb"; + position: absolute; left: 0; + +} +.ki-lots-shopping .path7:before { + content: "\ecfc"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-lots-shopping .path8:before { + content: "\ecfd"; + position: absolute; left: 0; + +} +.ki-lovely .path1:before { + content: "\ecfe"; + + opacity: 0.3; +} +.ki-lovely .path2:before { + content: "\ecff"; + position: absolute; left: 0; + +} +.ki-lts .path1:before { + content: "\ed00"; + +} +.ki-lts .path2:before { + content: "\ed01"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-magnifier .path1:before { + content: "\ed02"; + + opacity: 0.3; +} +.ki-magnifier .path2:before { + content: "\ed03"; + position: absolute; left: 0; + +} +.ki-map .path1:before { + content: "\ed04"; + + opacity: 0.3; +} +.ki-map .path2:before { + content: "\ed05"; + position: absolute; left: 0; + +} +.ki-map .path3:before { + content: "\ed06"; + position: absolute; left: 0; + +} +.ki-mask .path1:before { + content: "\ed07"; + + opacity: 0.3; +} +.ki-mask .path2:before { + content: "\ed08"; + position: absolute; left: 0; + +} +.ki-mask .path3:before { + content: "\ed09"; + position: absolute; left: 0; + +} +.ki-maximize .path1:before { + content: "\ed0a"; + + opacity: 0.3; +} +.ki-maximize .path2:before { + content: "\ed0b"; + position: absolute; left: 0; + +} +.ki-maximize .path3:before { + content: "\ed0c"; + position: absolute; left: 0; + +} +.ki-maximize .path4:before { + content: "\ed0d"; + position: absolute; left: 0; + +} +.ki-maximize .path5:before { + content: "\ed0e"; + position: absolute; left: 0; + +} +.ki-medal-star .path1:before { + content: "\ed0f"; + +} +.ki-medal-star .path2:before { + content: "\ed10"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-medal-star .path3:before { + content: "\ed11"; + position: absolute; left: 0; + +} +.ki-medal-star .path4:before { + content: "\ed12"; + position: absolute; left: 0; + +} +.ki-menu .path1:before { + content: "\ed13"; + + opacity: 0.3; +} +.ki-menu .path2:before { + content: "\ed14"; + position: absolute; left: 0; + +} +.ki-menu .path3:before { + content: "\ed15"; + position: absolute; left: 0; + +} +.ki-menu .path4:before { + content: "\ed16"; + position: absolute; left: 0; + +} +.ki-message-add .path1:before { + content: "\ed17"; + + opacity: 0.3; +} +.ki-message-add .path2:before { + content: "\ed18"; + position: absolute; left: 0; + +} +.ki-message-add .path3:before { + content: "\ed19"; + position: absolute; left: 0; + +} +.ki-message-edit .path1:before { + content: "\ed1a"; + + opacity: 0.3; +} +.ki-message-edit .path2:before { + content: "\ed1b"; + position: absolute; left: 0; + +} +.ki-message-minus .path1:before { + content: "\ed1c"; + + opacity: 0.3; +} +.ki-message-minus .path2:before { + content: "\ed1d"; + position: absolute; left: 0; + +} +.ki-message-notif .path1:before { + content: "\ed1e"; + +} +.ki-message-notif .path2:before { + content: "\ed1f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-message-notif .path3:before { + content: "\ed20"; + position: absolute; left: 0; + +} +.ki-message-notif .path4:before { + content: "\ed21"; + position: absolute; left: 0; + +} +.ki-message-notif .path5:before { + content: "\ed22"; + position: absolute; left: 0; + +} +.ki-message-programming .path1:before { + content: "\ed23"; + + opacity: 0.3; +} +.ki-message-programming .path2:before { + content: "\ed24"; + position: absolute; left: 0; + +} +.ki-message-programming .path3:before { + content: "\ed25"; + position: absolute; left: 0; + +} +.ki-message-programming .path4:before { + content: "\ed26"; + position: absolute; left: 0; + +} +.ki-message-question .path1:before { + content: "\ed27"; + + opacity: 0.3; +} +.ki-message-question .path2:before { + content: "\ed28"; + position: absolute; left: 0; + +} +.ki-message-question .path3:before { + content: "\ed29"; + position: absolute; left: 0; + +} +.ki-message-text-2 .path1:before { + content: "\ed2a"; + + opacity: 0.3; +} +.ki-message-text-2 .path2:before { + content: "\ed2b"; + position: absolute; left: 0; + +} +.ki-message-text-2 .path3:before { + content: "\ed2c"; + position: absolute; left: 0; + +} +.ki-message-text .path1:before { + content: "\ed2d"; + + opacity: 0.3; +} +.ki-message-text .path2:before { + content: "\ed2e"; + position: absolute; left: 0; + +} +.ki-message-text .path3:before { + content: "\ed2f"; + position: absolute; left: 0; + +} +.ki-messages .path1:before { + content: "\ed30"; + +} +.ki-messages .path2:before { + content: "\ed31"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-messages .path3:before { + content: "\ed32"; + position: absolute; left: 0; + +} +.ki-messages .path4:before { + content: "\ed33"; + position: absolute; left: 0; + +} +.ki-messages .path5:before { + content: "\ed34"; + position: absolute; left: 0; + +} +.ki-microsoft .path1:before { + content: "\ed35"; + + opacity: 0.3; +} +.ki-microsoft .path2:before { + content: "\ed36"; + position: absolute; left: 0; + +} +.ki-microsoft .path3:before { + content: "\ed37"; + position: absolute; left: 0; + +} +.ki-microsoft .path4:before { + content: "\ed38"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-milk .path1:before { + content: "\ed39"; + + opacity: 0.3; +} +.ki-milk .path2:before { + content: "\ed3a"; + position: absolute; left: 0; + +} +.ki-milk .path3:before { + content: "\ed3b"; + position: absolute; left: 0; + +} +.ki-minus-circle .path1:before { + content: "\ed3c"; + + opacity: 0.3; +} +.ki-minus-circle .path2:before { + content: "\ed3d"; + position: absolute; left: 0; + +} +.ki-minus-folder .path1:before { + content: "\ed3e"; + + opacity: 0.3; +} +.ki-minus-folder .path2:before { + content: "\ed3f"; + position: absolute; left: 0; + +} +.ki-minus-square .path1:before { + content: "\ed40"; + + opacity: 0.3; +} +.ki-minus-square .path2:before { + content: "\ed41"; + position: absolute; left: 0; + +} +.ki-minus:before { + content: "\ed42"; +} +.ki-monitor-mobile .path1:before { + content: "\ed43"; + + opacity: 0.3; +} +.ki-monitor-mobile .path2:before { + content: "\ed44"; + position: absolute; left: 0; + +} +.ki-moon .path1:before { + content: "\ed45"; + +} +.ki-moon .path2:before { + content: "\ed46"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-more-2 .path1:before { + content: "\ed47"; + + opacity: 0.3; +} +.ki-more-2 .path2:before { + content: "\ed48"; + position: absolute; left: 0; + +} +.ki-more-2 .path3:before { + content: "\ed49"; + position: absolute; left: 0; + +} +.ki-more-2 .path4:before { + content: "\ed4a"; + position: absolute; left: 0; + +} +.ki-mouse-circle .path1:before { + content: "\ed4b"; + +} +.ki-mouse-circle .path2:before { + content: "\ed4c"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-mouse-square .path1:before { + content: "\ed4d"; + + opacity: 0.3; +} +.ki-mouse-square .path2:before { + content: "\ed4e"; + position: absolute; left: 0; + +} +.ki-mouse .path1:before { + content: "\ed4f"; + + opacity: 0.3; +} +.ki-mouse .path2:before { + content: "\ed50"; + position: absolute; left: 0; + +} +.ki-nexo .path1:before { + content: "\ed51"; + + opacity: 0.3; +} +.ki-nexo .path2:before { + content: "\ed52"; + position: absolute; left: 0; + +} +.ki-night-day .path1:before { + content: "\ed53"; + +} +.ki-night-day .path2:before { + content: "\ed54"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-night-day .path3:before { + content: "\ed55"; + position: absolute; left: 0; + +} +.ki-night-day .path4:before { + content: "\ed56"; + position: absolute; left: 0; + +} +.ki-night-day .path5:before { + content: "\ed57"; + position: absolute; left: 0; + +} +.ki-night-day .path6:before { + content: "\ed58"; + position: absolute; left: 0; + +} +.ki-night-day .path7:before { + content: "\ed59"; + position: absolute; left: 0; + +} +.ki-night-day .path8:before { + content: "\ed5a"; + position: absolute; left: 0; + +} +.ki-night-day .path9:before { + content: "\ed5b"; + position: absolute; left: 0; + +} +.ki-night-day .path10:before { + content: "\ed5c"; + position: absolute; left: 0; + +} +.ki-note-2 .path1:before { + content: "\ed5d"; + + opacity: 0.3; +} +.ki-note-2 .path2:before { + content: "\ed5e"; + position: absolute; left: 0; + +} +.ki-note-2 .path3:before { + content: "\ed5f"; + position: absolute; left: 0; + +} +.ki-note-2 .path4:before { + content: "\ed60"; + position: absolute; left: 0; + +} +.ki-note .path1:before { + content: "\ed61"; + + opacity: 0.3; +} +.ki-note .path2:before { + content: "\ed62"; + position: absolute; left: 0; + +} +.ki-notepad-bookmark .path1:before { + content: "\ed63"; + +} +.ki-notepad-bookmark .path2:before { + content: "\ed64"; + position: absolute; left: 0; + +} +.ki-notepad-bookmark .path3:before { + content: "\ed65"; + position: absolute; left: 0; + +} +.ki-notepad-bookmark .path4:before { + content: "\ed66"; + position: absolute; left: 0; + +} +.ki-notepad-bookmark .path5:before { + content: "\ed67"; + position: absolute; left: 0; + +} +.ki-notepad-bookmark .path6:before { + content: "\ed68"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-notepad-edit .path1:before { + content: "\ed69"; + + opacity: 0.3; +} +.ki-notepad-edit .path2:before { + content: "\ed6a"; + position: absolute; left: 0; + +} +.ki-notepad .path1:before { + content: "\ed6b"; + +} +.ki-notepad .path2:before { + content: "\ed6c"; + position: absolute; left: 0; + +} +.ki-notepad .path3:before { + content: "\ed6d"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-notepad .path4:before { + content: "\ed6e"; + position: absolute; left: 0; + +} +.ki-notepad .path5:before { + content: "\ed6f"; + position: absolute; left: 0; + +} +.ki-notification-2 .path1:before { + content: "\ed70"; + +} +.ki-notification-2 .path2:before { + content: "\ed71"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-notification-bing .path1:before { + content: "\ed72"; + +} +.ki-notification-bing .path2:before { + content: "\ed73"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-notification-bing .path3:before { + content: "\ed74"; + position: absolute; left: 0; + +} +.ki-notification-circle .path1:before { + content: "\ed75"; + +} +.ki-notification-circle .path2:before { + content: "\ed76"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-notification-favorite .path1:before { + content: "\ed77"; + +} +.ki-notification-favorite .path2:before { + content: "\ed78"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-notification-favorite .path3:before { + content: "\ed79"; + position: absolute; left: 0; + +} +.ki-notification-on .path1:before { + content: "\ed7a"; + + opacity: 0.3; +} +.ki-notification-on .path2:before { + content: "\ed7b"; + position: absolute; left: 0; + +} +.ki-notification-on .path3:before { + content: "\ed7c"; + position: absolute; left: 0; + +} +.ki-notification-on .path4:before { + content: "\ed7d"; + position: absolute; left: 0; + +} +.ki-notification-on .path5:before { + content: "\ed7e"; + position: absolute; left: 0; + +} +.ki-notification-status .path1:before { + content: "\ed7f"; + +} +.ki-notification-status .path2:before { + content: "\ed80"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-notification-status .path3:before { + content: "\ed81"; + position: absolute; left: 0; + +} +.ki-notification-status .path4:before { + content: "\ed82"; + position: absolute; left: 0; + +} +.ki-notification .path1:before { + content: "\ed83"; + + opacity: 0.3; +} +.ki-notification .path2:before { + content: "\ed84"; + position: absolute; left: 0; + +} +.ki-notification .path3:before { + content: "\ed85"; + position: absolute; left: 0; + +} +.ki-ocean .path1:before { + content: "\ed86"; + +} +.ki-ocean .path2:before { + content: "\ed87"; + position: absolute; left: 0; + +} +.ki-ocean .path3:before { + content: "\ed88"; + position: absolute; left: 0; + +} +.ki-ocean .path4:before { + content: "\ed89"; + position: absolute; left: 0; + +} +.ki-ocean .path5:before { + content: "\ed8a"; + position: absolute; left: 0; + +} +.ki-ocean .path6:before { + content: "\ed8b"; + position: absolute; left: 0; + +} +.ki-ocean .path7:before { + content: "\ed8c"; + position: absolute; left: 0; + +} +.ki-ocean .path8:before { + content: "\ed8d"; + position: absolute; left: 0; + +} +.ki-ocean .path9:before { + content: "\ed8e"; + position: absolute; left: 0; + +} +.ki-ocean .path10:before { + content: "\ed8f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ocean .path11:before { + content: "\ed90"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ocean .path12:before { + content: "\ed91"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ocean .path13:before { + content: "\ed92"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ocean .path14:before { + content: "\ed93"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ocean .path15:before { + content: "\ed94"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ocean .path16:before { + content: "\ed95"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ocean .path17:before { + content: "\ed96"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ocean .path18:before { + content: "\ed97"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ocean .path19:before { + content: "\ed98"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-office-bag .path1:before { + content: "\ed99"; + + opacity: 0.3; +} +.ki-office-bag .path2:before { + content: "\ed9a"; + position: absolute; left: 0; + +} +.ki-office-bag .path3:before { + content: "\ed9b"; + position: absolute; left: 0; + +} +.ki-office-bag .path4:before { + content: "\ed9c"; + position: absolute; left: 0; + +} +.ki-package .path1:before { + content: "\ed9d"; + + opacity: 0.3; +} +.ki-package .path2:before { + content: "\ed9e"; + position: absolute; left: 0; + +} +.ki-package .path3:before { + content: "\ed9f"; + position: absolute; left: 0; + +} +.ki-pails .path1:before { + content: "\eda0"; + + opacity: 0.3; +} +.ki-pails .path2:before { + content: "\eda1"; + position: absolute; left: 0; + +} +.ki-pails .path3:before { + content: "\eda2"; + position: absolute; left: 0; + +} +.ki-pails .path4:before { + content: "\eda3"; + position: absolute; left: 0; + +} +.ki-pails .path5:before { + content: "\eda4"; + position: absolute; left: 0; + +} +.ki-pails .path6:before { + content: "\eda5"; + position: absolute; left: 0; + +} +.ki-pails .path7:before { + content: "\eda6"; + position: absolute; left: 0; + +} +.ki-pails .path8:before { + content: "\eda7"; + position: absolute; left: 0; + +} +.ki-pails .path9:before { + content: "\eda8"; + position: absolute; left: 0; + +} +.ki-paintbucket .path1:before { + content: "\eda9"; + + opacity: 0.3; +} +.ki-paintbucket .path2:before { + content: "\edaa"; + position: absolute; left: 0; + +} +.ki-paintbucket .path3:before { + content: "\edab"; + position: absolute; left: 0; + +} +.ki-paper-clip:before { + content: "\edac"; +} +.ki-parcel-tracking .path1:before { + content: "\edad"; + +} +.ki-parcel-tracking .path2:before { + content: "\edae"; + position: absolute; left: 0; + +} +.ki-parcel-tracking .path3:before { + content: "\edaf"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-parcel .path1:before { + content: "\edb0"; + + opacity: 0.3; +} +.ki-parcel .path2:before { + content: "\edb1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-parcel .path3:before { + content: "\edb2"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-parcel .path4:before { + content: "\edb3"; + position: absolute; left: 0; + +} +.ki-parcel .path5:before { + content: "\edb4"; + position: absolute; left: 0; + +} +.ki-password-check .path1:before { + content: "\edb5"; + +} +.ki-password-check .path2:before { + content: "\edb6"; + position: absolute; left: 0; + +} +.ki-password-check .path3:before { + content: "\edb7"; + position: absolute; left: 0; + +} +.ki-password-check .path4:before { + content: "\edb8"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-password-check .path5:before { + content: "\edb9"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-paypal .path1:before { + content: "\edba"; + +} +.ki-paypal .path2:before { + content: "\edbb"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-pencil .path1:before { + content: "\edbc"; + + opacity: 0.3; +} +.ki-pencil .path2:before { + content: "\edbd"; + position: absolute; left: 0; + +} +.ki-people .path1:before { + content: "\edbe"; + +} +.ki-people .path2:before { + content: "\edbf"; + position: absolute; left: 0; + +} +.ki-people .path3:before { + content: "\edc0"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-people .path4:before { + content: "\edc1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-people .path5:before { + content: "\edc2"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-percentage .path1:before { + content: "\edc3"; + +} +.ki-percentage .path2:before { + content: "\edc4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-phone .path1:before { + content: "\edc5"; + + opacity: 0.3; +} +.ki-phone .path2:before { + content: "\edc6"; + position: absolute; left: 0; + +} +.ki-photoshop .path1:before { + content: "\edc7"; + + opacity: 0.3; +} +.ki-photoshop .path2:before { + content: "\edc8"; + position: absolute; left: 0; + +} +.ki-picture .path1:before { + content: "\edc9"; + + opacity: 0.3; +} +.ki-picture .path2:before { + content: "\edca"; + position: absolute; left: 0; + +} +.ki-pill:before { + content: "\edcb"; +} +.ki-pin .path1:before { + content: "\edcc"; + + opacity: 0.3; +} +.ki-pin .path2:before { + content: "\edcd"; + position: absolute; left: 0; + +} +.ki-plus-circle .path1:before { + content: "\edce"; + + opacity: 0.3; +} +.ki-plus-circle .path2:before { + content: "\edcf"; + position: absolute; left: 0; + +} +.ki-plus-square .path1:before { + content: "\edd0"; + + opacity: 0.3; +} +.ki-plus-square .path2:before { + content: "\edd1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-plus-square .path3:before { + content: "\edd2"; + position: absolute; left: 0; + +} +.ki-plus:before { + content: "\edd3"; +} +.ki-pointers .path1:before { + content: "\edd4"; + + opacity: 0.3; +} +.ki-pointers .path2:before { + content: "\edd5"; + position: absolute; left: 0; + +} +.ki-pointers .path3:before { + content: "\edd6"; + position: absolute; left: 0; + +} +.ki-price-tag .path1:before { + content: "\edd7"; + + opacity: 0.3; +} +.ki-price-tag .path2:before { + content: "\edd8"; + position: absolute; left: 0; + +} +.ki-price-tag .path3:before { + content: "\edd9"; + position: absolute; left: 0; + +} +.ki-printer .path1:before { + content: "\edda"; + + opacity: 0.3; +} +.ki-printer .path2:before { + content: "\eddb"; + position: absolute; left: 0; + +} +.ki-printer .path3:before { + content: "\eddc"; + position: absolute; left: 0; + +} +.ki-printer .path4:before { + content: "\eddd"; + position: absolute; left: 0; + +} +.ki-printer .path5:before { + content: "\edde"; + position: absolute; left: 0; + +} +.ki-profile-circle .path1:before { + content: "\eddf"; + + opacity: 0.3; +} +.ki-profile-circle .path2:before { + content: "\ede0"; + position: absolute; left: 0; + +} +.ki-profile-circle .path3:before { + content: "\ede1"; + position: absolute; left: 0; + +} +.ki-profile-user .path1:before { + content: "\ede2"; + + opacity: 0.3; +} +.ki-profile-user .path2:before { + content: "\ede3"; + position: absolute; left: 0; + +} +.ki-profile-user .path3:before { + content: "\ede4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-profile-user .path4:before { + content: "\ede5"; + position: absolute; left: 0; + +} +.ki-pulse .path1:before { + content: "\ede6"; + + opacity: 0.3; +} +.ki-pulse .path2:before { + content: "\ede7"; + position: absolute; left: 0; + +} +.ki-purchase .path1:before { + content: "\ede8"; + + opacity: 0.3; +} +.ki-purchase .path2:before { + content: "\ede9"; + position: absolute; left: 0; + +} +.ki-python .path1:before { + content: "\edea"; + + opacity: 0.3; +} +.ki-python .path2:before { + content: "\edeb"; + position: absolute; left: 0; + +} +.ki-question-2 .path1:before { + content: "\edec"; + + opacity: 0.3; +} +.ki-question-2 .path2:before { + content: "\eded"; + position: absolute; left: 0; + +} +.ki-question-2 .path3:before { + content: "\edee"; + position: absolute; left: 0; + +} +.ki-question .path1:before { + content: "\edef"; + + opacity: 0.3; +} +.ki-question .path2:before { + content: "\edf0"; + position: absolute; left: 0; + +} +.ki-question .path3:before { + content: "\edf1"; + position: absolute; left: 0; + +} +.ki-questionnaire-tablet .path1:before { + content: "\edf2"; + + opacity: 0.3; +} +.ki-questionnaire-tablet .path2:before { + content: "\edf3"; + position: absolute; left: 0; + +} +.ki-ranking .path1:before { + content: "\edf4"; + + opacity: 0.3; +} +.ki-ranking .path2:before { + content: "\edf5"; + position: absolute; left: 0; + +} +.ki-ranking .path3:before { + content: "\edf6"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ranking .path4:before { + content: "\edf7"; + position: absolute; left: 0; + +} +.ki-react .path1:before { + content: "\edf8"; + + opacity: 0.3; +} +.ki-react .path2:before { + content: "\edf9"; + position: absolute; left: 0; + +} +.ki-receipt-square .path1:before { + content: "\edfa"; + + opacity: 0.3; +} +.ki-receipt-square .path2:before { + content: "\edfb"; + position: absolute; left: 0; + +} +.ki-rescue .path1:before { + content: "\edfc"; + + opacity: 0.3; +} +.ki-rescue .path2:before { + content: "\edfd"; + position: absolute; left: 0; + +} +.ki-right-left .path1:before { + content: "\edfe"; + +} +.ki-right-left .path2:before { + content: "\edff"; + position: absolute; left: 0; + +} +.ki-right-left .path3:before { + content: "\ee00"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-right-square .path1:before { + content: "\ee01"; + + opacity: 0.3; +} +.ki-right-square .path2:before { + content: "\ee02"; + position: absolute; left: 0; + +} +.ki-right:before { + content: "\ee03"; +} +.ki-rocket .path1:before { + content: "\ee04"; + + opacity: 0.3; +} +.ki-rocket .path2:before { + content: "\ee05"; + position: absolute; left: 0; + +} +.ki-route .path1:before { + content: "\ee06"; + +} +.ki-route .path2:before { + content: "\ee07"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-route .path3:before { + content: "\ee08"; + position: absolute; left: 0; + +} +.ki-route .path4:before { + content: "\ee09"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-router .path1:before { + content: "\ee0a"; + + opacity: 0.3; +} +.ki-router .path2:before { + content: "\ee0b"; + position: absolute; left: 0; + +} +.ki-row-horizontal .path1:before { + content: "\ee0c"; + +} +.ki-row-horizontal .path2:before { + content: "\ee0d"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-row-vertical .path1:before { + content: "\ee0e"; + +} +.ki-row-vertical .path2:before { + content: "\ee0f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-safe-home .path1:before { + content: "\ee10"; + + opacity: 0.3; +} +.ki-safe-home .path2:before { + content: "\ee11"; + position: absolute; left: 0; + +} +.ki-satellite .path1:before { + content: "\ee12"; + + opacity: 0.3; +} +.ki-satellite .path2:before { + content: "\ee13"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-satellite .path3:before { + content: "\ee14"; + position: absolute; left: 0; + +} +.ki-satellite .path4:before { + content: "\ee15"; + position: absolute; left: 0; + +} +.ki-satellite .path5:before { + content: "\ee16"; + position: absolute; left: 0; + +} +.ki-satellite .path6:before { + content: "\ee17"; + position: absolute; left: 0; + +} +.ki-save-2 .path1:before { + content: "\ee18"; + + opacity: 0.3; +} +.ki-save-2 .path2:before { + content: "\ee19"; + position: absolute; left: 0; + +} +.ki-save-deposit .path1:before { + content: "\ee1a"; + +} +.ki-save-deposit .path2:before { + content: "\ee1b"; + position: absolute; left: 0; + +} +.ki-save-deposit .path3:before { + content: "\ee1c"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-save-deposit .path4:before { + content: "\ee1d"; + position: absolute; left: 0; + +} +.ki-scan-barcode .path1:before { + content: "\ee1e"; + +} +.ki-scan-barcode .path2:before { + content: "\ee1f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-scan-barcode .path3:before { + content: "\ee20"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-scan-barcode .path4:before { + content: "\ee21"; + position: absolute; left: 0; + +} +.ki-scan-barcode .path5:before { + content: "\ee22"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-scan-barcode .path6:before { + content: "\ee23"; + position: absolute; left: 0; + +} +.ki-scan-barcode .path7:before { + content: "\ee24"; + position: absolute; left: 0; + +} +.ki-scan-barcode .path8:before { + content: "\ee25"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-scooter-2:before { + content: "\ee26"; +} +.ki-scooter .path1:before { + content: "\ee27"; + +} +.ki-scooter .path2:before { + content: "\ee28"; + position: absolute; left: 0; + +} +.ki-scooter .path3:before { + content: "\ee29"; + position: absolute; left: 0; + +} +.ki-scooter .path4:before { + content: "\ee2a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-scooter .path5:before { + content: "\ee2b"; + position: absolute; left: 0; + +} +.ki-scooter .path6:before { + content: "\ee2c"; + position: absolute; left: 0; + +} +.ki-scooter .path7:before { + content: "\ee2d"; + position: absolute; left: 0; + +} +.ki-screen .path1:before { + content: "\ee2e"; + + opacity: 0.3; +} +.ki-screen .path2:before { + content: "\ee2f"; + position: absolute; left: 0; + +} +.ki-screen .path3:before { + content: "\ee30"; + position: absolute; left: 0; + +} +.ki-screen .path4:before { + content: "\ee31"; + position: absolute; left: 0; + +} +.ki-scroll .path1:before { + content: "\ee32"; + + opacity: 0.3; +} +.ki-scroll .path2:before { + content: "\ee33"; + position: absolute; left: 0; + +} +.ki-scroll .path3:before { + content: "\ee34"; + position: absolute; left: 0; + +} +.ki-search-list .path1:before { + content: "\ee35"; + + opacity: 0.3; +} +.ki-search-list .path2:before { + content: "\ee36"; + position: absolute; left: 0; + +} +.ki-search-list .path3:before { + content: "\ee37"; + position: absolute; left: 0; + +} +.ki-security-check .path1:before { + content: "\ee38"; + +} +.ki-security-check .path2:before { + content: "\ee39"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-security-check .path3:before { + content: "\ee3a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-security-check .path4:before { + content: "\ee3b"; + position: absolute; left: 0; + +} +.ki-security-user .path1:before { + content: "\ee3c"; + + opacity: 0.3; +} +.ki-security-user .path2:before { + content: "\ee3d"; + position: absolute; left: 0; + +} +.ki-send .path1:before { + content: "\ee3e"; + +} +.ki-send .path2:before { + content: "\ee3f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-setting-2 .path1:before { + content: "\ee40"; + + opacity: 0.3; +} +.ki-setting-2 .path2:before { + content: "\ee41"; + position: absolute; left: 0; + +} +.ki-setting-3 .path1:before { + content: "\ee42"; + + opacity: 0.3; +} +.ki-setting-3 .path2:before { + content: "\ee43"; + position: absolute; left: 0; + +} +.ki-setting-3 .path3:before { + content: "\ee44"; + position: absolute; left: 0; + +} +.ki-setting-3 .path4:before { + content: "\ee45"; + position: absolute; left: 0; + +} +.ki-setting-3 .path5:before { + content: "\ee46"; + position: absolute; left: 0; + +} +.ki-setting-4:before { + content: "\ee47"; +} +.ki-setting .path1:before { + content: "\ee48"; + + opacity: 0.3; +} +.ki-setting .path2:before { + content: "\ee49"; + position: absolute; left: 0; + +} +.ki-share .path1:before { + content: "\ee4a"; + + opacity: 0.3; +} +.ki-share .path2:before { + content: "\ee4b"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-share .path3:before { + content: "\ee4c"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-share .path4:before { + content: "\ee4d"; + position: absolute; left: 0; + +} +.ki-share .path5:before { + content: "\ee4e"; + position: absolute; left: 0; + +} +.ki-share .path6:before { + content: "\ee4f"; + position: absolute; left: 0; + +} +.ki-shield-cross .path1:before { + content: "\ee50"; + + opacity: 0.3; +} +.ki-shield-cross .path2:before { + content: "\ee51"; + position: absolute; left: 0; + +} +.ki-shield-cross .path3:before { + content: "\ee52"; + position: absolute; left: 0; + +} +.ki-shield-search .path1:before { + content: "\ee53"; + + opacity: 0.3; +} +.ki-shield-search .path2:before { + content: "\ee54"; + position: absolute; left: 0; + +} +.ki-shield-search .path3:before { + content: "\ee55"; + position: absolute; left: 0; + +} +.ki-shield-slash .path1:before { + content: "\ee56"; + +} +.ki-shield-slash .path2:before { + content: "\ee57"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-shield-slash .path3:before { + content: "\ee58"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-shield-tick .path1:before { + content: "\ee59"; + + opacity: 0.3; +} +.ki-shield-tick .path2:before { + content: "\ee5a"; + position: absolute; left: 0; + +} +.ki-shield .path1:before { + content: "\ee5b"; + + opacity: 0.3; +} +.ki-shield .path2:before { + content: "\ee5c"; + position: absolute; left: 0; + +} +.ki-ship .path1:before { + content: "\ee5d"; + + opacity: 0.3; +} +.ki-ship .path2:before { + content: "\ee5e"; + position: absolute; left: 0; + +} +.ki-ship .path3:before { + content: "\ee5f"; + position: absolute; left: 0; + +} +.ki-shop .path1:before { + content: "\ee60"; + +} +.ki-shop .path2:before { + content: "\ee61"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-shop .path3:before { + content: "\ee62"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-shop .path4:before { + content: "\ee63"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-shop .path5:before { + content: "\ee64"; + position: absolute; left: 0; + +} +.ki-simcard-2 .path1:before { + content: "\ee65"; + + opacity: 0.3; +} +.ki-simcard-2 .path2:before { + content: "\ee66"; + position: absolute; left: 0; + +} +.ki-simcard .path1:before { + content: "\ee67"; + + opacity: 0.3; +} +.ki-simcard .path2:before { + content: "\ee68"; + position: absolute; left: 0; + +} +.ki-simcard .path3:before { + content: "\ee69"; + position: absolute; left: 0; + +} +.ki-simcard .path4:before { + content: "\ee6a"; + position: absolute; left: 0; + +} +.ki-simcard .path5:before { + content: "\ee6b"; + position: absolute; left: 0; + +} +.ki-size .path1:before { + content: "\ee6c"; + + opacity: 0.3; +} +.ki-size .path2:before { + content: "\ee6d"; + position: absolute; left: 0; + +} +.ki-slack .path1:before { + content: "\ee6e"; + +} +.ki-slack .path2:before { + content: "\ee6f"; + position: absolute; left: 0; + +} +.ki-slack .path3:before { + content: "\ee70"; + position: absolute; left: 0; + +} +.ki-slack .path4:before { + content: "\ee71"; + position: absolute; left: 0; + +} +.ki-slack .path5:before { + content: "\ee72"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-slack .path6:before { + content: "\ee73"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-slack .path7:before { + content: "\ee74"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-slack .path8:before { + content: "\ee75"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-slider-horizontal-2 .path1:before { + content: "\ee76"; + +} +.ki-slider-horizontal-2 .path2:before { + content: "\ee77"; + position: absolute; left: 0; + +} +.ki-slider-horizontal-2 .path3:before { + content: "\ee78"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-slider-horizontal .path1:before { + content: "\ee79"; + + opacity: 0.3; +} +.ki-slider-horizontal .path2:before { + content: "\ee7a"; + position: absolute; left: 0; + +} +.ki-slider-horizontal .path3:before { + content: "\ee7b"; + position: absolute; left: 0; + +} +.ki-slider-vertical-2 .path1:before { + content: "\ee7c"; + + opacity: 0.3; +} +.ki-slider-vertical-2 .path2:before { + content: "\ee7d"; + position: absolute; left: 0; + +} +.ki-slider-vertical-2 .path3:before { + content: "\ee7e"; + position: absolute; left: 0; + +} +.ki-slider-vertical .path1:before { + content: "\ee7f"; + +} +.ki-slider-vertical .path2:before { + content: "\ee80"; + position: absolute; left: 0; + +} +.ki-slider-vertical .path3:before { + content: "\ee81"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-slider .path1:before { + content: "\ee82"; + + opacity: 0.3; +} +.ki-slider .path2:before { + content: "\ee83"; + position: absolute; left: 0; + +} +.ki-slider .path3:before { + content: "\ee84"; + position: absolute; left: 0; + +} +.ki-slider .path4:before { + content: "\ee85"; + position: absolute; left: 0; + +} +.ki-sms .path1:before { + content: "\ee86"; + + opacity: 0.3; +} +.ki-sms .path2:before { + content: "\ee87"; + position: absolute; left: 0; + +} +.ki-snapchat .path1:before { + content: "\ee88"; + +} +.ki-snapchat .path2:before { + content: "\ee89"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-social-media .path1:before { + content: "\ee8a"; + +} +.ki-social-media .path2:before { + content: "\ee8b"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-soft-2 .path1:before { + content: "\ee8c"; + + opacity: 0.3; +} +.ki-soft-2 .path2:before { + content: "\ee8d"; + position: absolute; left: 0; + +} +.ki-soft-3 .path1:before { + content: "\ee8e"; + +} +.ki-soft-3 .path2:before { + content: "\ee8f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-soft .path1:before { + content: "\ee90"; + + opacity: 0.3; +} +.ki-soft .path2:before { + content: "\ee91"; + position: absolute; left: 0; + +} +.ki-soft .path3:before { + content: "\ee92"; + position: absolute; left: 0; + +} +.ki-soft .path4:before { + content: "\ee93"; + position: absolute; left: 0; + +} +.ki-soft .path5:before { + content: "\ee94"; + position: absolute; left: 0; + +} +.ki-soft .path6:before { + content: "\ee95"; + position: absolute; left: 0; + +} +.ki-some-files .path1:before { + content: "\ee96"; + + opacity: 0.3; +} +.ki-some-files .path2:before { + content: "\ee97"; + position: absolute; left: 0; + +} +.ki-sort .path1:before { + content: "\ee98"; + + opacity: 0.3; +} +.ki-sort .path2:before { + content: "\ee99"; + position: absolute; left: 0; + +} +.ki-sort .path3:before { + content: "\ee9a"; + position: absolute; left: 0; + +} +.ki-sort .path4:before { + content: "\ee9b"; + position: absolute; left: 0; + +} +.ki-speaker .path1:before { + content: "\ee9c"; + + opacity: 0.3; +} +.ki-speaker .path2:before { + content: "\ee9d"; + position: absolute; left: 0; + +} +.ki-speaker .path3:before { + content: "\ee9e"; + position: absolute; left: 0; + +} +.ki-spotify .path1:before { + content: "\ee9f"; + +} +.ki-spotify .path2:before { + content: "\eea0"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-spring-framework:before { + content: "\eea1"; +} +.ki-square-brackets .path1:before { + content: "\eea2"; + + opacity: 0.3; +} +.ki-square-brackets .path2:before { + content: "\eea3"; + position: absolute; left: 0; + +} +.ki-square-brackets .path3:before { + content: "\eea4"; + position: absolute; left: 0; + +} +.ki-square-brackets .path4:before { + content: "\eea5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-star:before { + content: "\eea6"; +} +.ki-status .path1:before { + content: "\eea7"; + + opacity: 0.3; +} +.ki-status .path2:before { + content: "\eea8"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-status .path3:before { + content: "\eea9"; + position: absolute; left: 0; + +} +.ki-subtitle .path1:before { + content: "\eeaa"; + + opacity: 0.3; +} +.ki-subtitle .path2:before { + content: "\eeab"; + position: absolute; left: 0; + +} +.ki-subtitle .path3:before { + content: "\eeac"; + position: absolute; left: 0; + +} +.ki-subtitle .path4:before { + content: "\eead"; + position: absolute; left: 0; + +} +.ki-subtitle .path5:before { + content: "\eeae"; + position: absolute; left: 0; + +} +.ki-sun .path1:before { + content: "\eeaf"; + +} +.ki-sun .path2:before { + content: "\eeb0"; + position: absolute; left: 0; + +} +.ki-sun .path3:before { + content: "\eeb1"; + position: absolute; left: 0; + +} +.ki-sun .path4:before { + content: "\eeb2"; + position: absolute; left: 0; + +} +.ki-sun .path5:before { + content: "\eeb3"; + position: absolute; left: 0; + +} +.ki-sun .path6:before { + content: "\eeb4"; + position: absolute; left: 0; + +} +.ki-sun .path7:before { + content: "\eeb5"; + position: absolute; left: 0; + +} +.ki-sun .path8:before { + content: "\eeb6"; + position: absolute; left: 0; + +} +.ki-sun .path9:before { + content: "\eeb7"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-support-24 .path1:before { + content: "\eeb8"; + + opacity: 0.3; +} +.ki-support-24 .path2:before { + content: "\eeb9"; + position: absolute; left: 0; + +} +.ki-support-24 .path3:before { + content: "\eeba"; + position: absolute; left: 0; + +} +.ki-switch .path1:before { + content: "\eebb"; + +} +.ki-switch .path2:before { + content: "\eebc"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-syringe .path1:before { + content: "\eebd"; + + opacity: 0.3; +} +.ki-syringe .path2:before { + content: "\eebe"; + position: absolute; left: 0; + +} +.ki-syringe .path3:before { + content: "\eebf"; + position: absolute; left: 0; + +} +.ki-tablet-book .path1:before { + content: "\eec0"; + + opacity: 0.3; +} +.ki-tablet-book .path2:before { + content: "\eec1"; + position: absolute; left: 0; + +} +.ki-tablet-delete .path1:before { + content: "\eec2"; + +} +.ki-tablet-delete .path2:before { + content: "\eec3"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-tablet-delete .path3:before { + content: "\eec4"; + position: absolute; left: 0; + +} +.ki-tablet-down .path1:before { + content: "\eec5"; + + opacity: 0.3; +} +.ki-tablet-down .path2:before { + content: "\eec6"; + position: absolute; left: 0; + +} +.ki-tablet-down .path3:before { + content: "\eec7"; + position: absolute; left: 0; + +} +.ki-tablet-ok .path1:before { + content: "\eec8"; + +} +.ki-tablet-ok .path2:before { + content: "\eec9"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-tablet-ok .path3:before { + content: "\eeca"; + position: absolute; left: 0; + +} +.ki-tablet-text-down .path1:before { + content: "\eecb"; + +} +.ki-tablet-text-down .path2:before { + content: "\eecc"; + position: absolute; left: 0; + +} +.ki-tablet-text-down .path3:before { + content: "\eecd"; + position: absolute; left: 0; + +} +.ki-tablet-text-down .path4:before { + content: "\eece"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-tablet-text-up .path1:before { + content: "\eecf"; + +} +.ki-tablet-text-up .path2:before { + content: "\eed0"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-tablet-up .path1:before { + content: "\eed1"; + + opacity: 0.3; +} +.ki-tablet-up .path2:before { + content: "\eed2"; + position: absolute; left: 0; + +} +.ki-tablet-up .path3:before { + content: "\eed3"; + position: absolute; left: 0; + +} +.ki-tablet .path1:before { + content: "\eed4"; + + opacity: 0.3; +} +.ki-tablet .path2:before { + content: "\eed5"; + position: absolute; left: 0; + +} +.ki-tablet .path3:before { + content: "\eed6"; + position: absolute; left: 0; + +} +.ki-tag-cross .path1:before { + content: "\eed7"; + + opacity: 0.3; +} +.ki-tag-cross .path2:before { + content: "\eed8"; + position: absolute; left: 0; + +} +.ki-tag-cross .path3:before { + content: "\eed9"; + position: absolute; left: 0; + +} +.ki-tag .path1:before { + content: "\eeda"; + + opacity: 0.3; +} +.ki-tag .path2:before { + content: "\eedb"; + position: absolute; left: 0; + +} +.ki-tag .path3:before { + content: "\eedc"; + position: absolute; left: 0; + +} +.ki-teacher .path1:before { + content: "\eedd"; + + opacity: 0.3; +} +.ki-teacher .path2:before { + content: "\eede"; + position: absolute; left: 0; + +} +.ki-tech-wifi .path1:before { + content: "\eedf"; + + opacity: 0.3; +} +.ki-tech-wifi .path2:before { + content: "\eee0"; + position: absolute; left: 0; + +} +.ki-technology-2 .path1:before { + content: "\eee1"; + + opacity: 0.3; +} +.ki-technology-2 .path2:before { + content: "\eee2"; + position: absolute; left: 0; + +} +.ki-technology-3 .path1:before { + content: "\eee3"; + +} +.ki-technology-3 .path2:before { + content: "\eee4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-technology-3 .path3:before { + content: "\eee5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-technology-3 .path4:before { + content: "\eee6"; + position: absolute; left: 0; + +} +.ki-technology-4 .path1:before { + content: "\eee7"; + +} +.ki-technology-4 .path2:before { + content: "\eee8"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-technology-4 .path3:before { + content: "\eee9"; + position: absolute; left: 0; + +} +.ki-technology-4 .path4:before { + content: "\eeea"; + position: absolute; left: 0; + +} +.ki-technology-4 .path5:before { + content: "\eeeb"; + position: absolute; left: 0; + +} +.ki-technology-4 .path6:before { + content: "\eeec"; + position: absolute; left: 0; + +} +.ki-technology-4 .path7:before { + content: "\eeed"; + position: absolute; left: 0; + +} +.ki-technology .path1:before { + content: "\eeee"; + +} +.ki-technology .path2:before { + content: "\eeef"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-technology .path3:before { + content: "\eef0"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-technology .path4:before { + content: "\eef1"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-technology .path5:before { + content: "\eef2"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-technology .path6:before { + content: "\eef3"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-technology .path7:before { + content: "\eef4"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-technology .path8:before { + content: "\eef5"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-technology .path9:before { + content: "\eef6"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-telephone-geolocation .path1:before { + content: "\eef7"; + +} +.ki-telephone-geolocation .path2:before { + content: "\eef8"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-telephone-geolocation .path3:before { + content: "\eef9"; + position: absolute; left: 0; + +} +.ki-test-tubes .path1:before { + content: "\eefa"; + + opacity: 0.3; +} +.ki-test-tubes .path2:before { + content: "\eefb"; + position: absolute; left: 0; + +} +.ki-text-align-center .path1:before { + content: "\eefc"; + +} +.ki-text-align-center .path2:before { + content: "\eefd"; + position: absolute; left: 0; + +} +.ki-text-align-center .path3:before { + content: "\eefe"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-align-center .path4:before { + content: "\eeff"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-align-justify-center .path1:before { + content: "\ef00"; + +} +.ki-text-align-justify-center .path2:before { + content: "\ef01"; + position: absolute; left: 0; + +} +.ki-text-align-justify-center .path3:before { + content: "\ef02"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-align-justify-center .path4:before { + content: "\ef03"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-align-left .path1:before { + content: "\ef04"; + +} +.ki-text-align-left .path2:before { + content: "\ef05"; + position: absolute; left: 0; + +} +.ki-text-align-left .path3:before { + content: "\ef06"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-align-left .path4:before { + content: "\ef07"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-align-right .path1:before { + content: "\ef08"; + +} +.ki-text-align-right .path2:before { + content: "\ef09"; + position: absolute; left: 0; + +} +.ki-text-align-right .path3:before { + content: "\ef0a"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-align-right .path4:before { + content: "\ef0b"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-bold .path1:before { + content: "\ef0c"; + + opacity: 0.3; +} +.ki-text-bold .path2:before { + content: "\ef0d"; + position: absolute; left: 0; + +} +.ki-text-bold .path3:before { + content: "\ef0e"; + position: absolute; left: 0; + +} +.ki-text-circle .path1:before { + content: "\ef0f"; + +} +.ki-text-circle .path2:before { + content: "\ef10"; + position: absolute; left: 0; + +} +.ki-text-circle .path3:before { + content: "\ef11"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-circle .path4:before { + content: "\ef12"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-circle .path5:before { + content: "\ef13"; + position: absolute; left: 0; + +} +.ki-text-circle .path6:before { + content: "\ef14"; + position: absolute; left: 0; + +} +.ki-text-italic .path1:before { + content: "\ef15"; + + opacity: 0.3; +} +.ki-text-italic .path2:before { + content: "\ef16"; + position: absolute; left: 0; + +} +.ki-text-italic .path3:before { + content: "\ef17"; + position: absolute; left: 0; + +} +.ki-text-italic .path4:before { + content: "\ef18"; + position: absolute; left: 0; + +} +.ki-text-number .path1:before { + content: "\ef19"; + +} +.ki-text-number .path2:before { + content: "\ef1a"; + position: absolute; left: 0; + +} +.ki-text-number .path3:before { + content: "\ef1b"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-number .path4:before { + content: "\ef1c"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-number .path5:before { + content: "\ef1d"; + position: absolute; left: 0; + +} +.ki-text-number .path6:before { + content: "\ef1e"; + position: absolute; left: 0; + +} +.ki-text-strikethrough .path1:before { + content: "\ef1f"; + + opacity: 0.3; +} +.ki-text-strikethrough .path2:before { + content: "\ef20"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-text-strikethrough .path3:before { + content: "\ef21"; + position: absolute; left: 0; + +} +.ki-text-underline .path1:before { + content: "\ef22"; + + opacity: 0.3; +} +.ki-text-underline .path2:before { + content: "\ef23"; + position: absolute; left: 0; + +} +.ki-text-underline .path3:before { + content: "\ef24"; + position: absolute; left: 0; + +} +.ki-text:before { + content: "\ef25"; +} +.ki-thermometer .path1:before { + content: "\ef26"; + + opacity: 0.3; +} +.ki-thermometer .path2:before { + content: "\ef27"; + position: absolute; left: 0; + +} +.ki-theta .path1:before { + content: "\ef28"; + +} +.ki-theta .path2:before { + content: "\ef29"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-tiktok .path1:before { + content: "\ef2a"; + + opacity: 0.3; +} +.ki-tiktok .path2:before { + content: "\ef2b"; + position: absolute; left: 0; + +} +.ki-time .path1:before { + content: "\ef2c"; + + opacity: 0.3; +} +.ki-time .path2:before { + content: "\ef2d"; + position: absolute; left: 0; + +} +.ki-timer .path1:before { + content: "\ef2e"; + + opacity: 0.3; +} +.ki-timer .path2:before { + content: "\ef2f"; + position: absolute; left: 0; + +} +.ki-timer .path3:before { + content: "\ef30"; + position: absolute; left: 0; + +} +.ki-to-left:before { + content: "\ef31"; +} +.ki-to-right:before { + content: "\ef32"; +} +.ki-toggle-off-circle .path1:before { + content: "\ef33"; + + opacity: 0.3; +} +.ki-toggle-off-circle .path2:before { + content: "\ef34"; + position: absolute; left: 0; + +} +.ki-toggle-off .path1:before { + content: "\ef35"; + + opacity: 0.3; +} +.ki-toggle-off .path2:before { + content: "\ef36"; + position: absolute; left: 0; + +} +.ki-toggle-on-circle .path1:before { + content: "\ef37"; + + opacity: 0.3; +} +.ki-toggle-on-circle .path2:before { + content: "\ef38"; + position: absolute; left: 0; + +} +.ki-toggle-on .path1:before { + content: "\ef39"; + + opacity: 0.3; +} +.ki-toggle-on .path2:before { + content: "\ef3a"; + position: absolute; left: 0; + +} +.ki-trailer .path1:before { + content: "\ef3b"; + +} +.ki-trailer .path2:before { + content: "\ef3c"; + position: absolute; left: 0; + +} +.ki-trailer .path3:before { + content: "\ef3d"; + position: absolute; left: 0; + +} +.ki-trailer .path4:before { + content: "\ef3e"; + position: absolute; left: 0; + +} +.ki-trailer .path5:before { + content: "\ef3f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-trash-square .path1:before { + content: "\ef40"; + + opacity: 0.3; +} +.ki-trash-square .path2:before { + content: "\ef41"; + position: absolute; left: 0; + +} +.ki-trash-square .path3:before { + content: "\ef42"; + position: absolute; left: 0; + +} +.ki-trash-square .path4:before { + content: "\ef43"; + position: absolute; left: 0; + +} +.ki-trash .path1:before { + content: "\ef44"; + + opacity: 0.3; +} +.ki-trash .path2:before { + content: "\ef45"; + position: absolute; left: 0; + +} +.ki-trash .path3:before { + content: "\ef46"; + position: absolute; left: 0; + +} +.ki-trash .path4:before { + content: "\ef47"; + position: absolute; left: 0; + +} +.ki-trash .path5:before { + content: "\ef48"; + position: absolute; left: 0; + +} +.ki-tree .path1:before { + content: "\ef49"; + + opacity: 0.3; +} +.ki-tree .path2:before { + content: "\ef4a"; + position: absolute; left: 0; + +} +.ki-tree .path3:before { + content: "\ef4b"; + position: absolute; left: 0; + +} +.ki-trello .path1:before { + content: "\ef4c"; + + opacity: 0.3; +} +.ki-trello .path2:before { + content: "\ef4d"; + position: absolute; left: 0; + +} +.ki-trello .path3:before { + content: "\ef4e"; + position: absolute; left: 0; + +} +.ki-triangle .path1:before { + content: "\ef4f"; + +} +.ki-triangle .path2:before { + content: "\ef50"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-triangle .path3:before { + content: "\ef51"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-truck .path1:before { + content: "\ef52"; + +} +.ki-truck .path2:before { + content: "\ef53"; + position: absolute; left: 0; + +} +.ki-truck .path3:before { + content: "\ef54"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-truck .path4:before { + content: "\ef55"; + position: absolute; left: 0; + +} +.ki-truck .path5:before { + content: "\ef56"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-ts .path1:before { + content: "\ef57"; + + opacity: 0.3; +} +.ki-ts .path2:before { + content: "\ef58"; + position: absolute; left: 0; + +} +.ki-ts .path3:before { + content: "\ef59"; + position: absolute; left: 0; + +} +.ki-twitch .path1:before { + content: "\ef5a"; + + opacity: 0.3; +} +.ki-twitch .path2:before { + content: "\ef5b"; + position: absolute; left: 0; + +} +.ki-twitch .path3:before { + content: "\ef5c"; + position: absolute; left: 0; + +} +.ki-twitter .path1:before { + content: "\ef5d"; + + opacity: 0.3; +} +.ki-twitter .path2:before { + content: "\ef5e"; + position: absolute; left: 0; + +} +.ki-two-credit-cart .path1:before { + content: "\ef5f"; + +} +.ki-two-credit-cart .path2:before { + content: "\ef60"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-two-credit-cart .path3:before { + content: "\ef61"; + position: absolute; left: 0; + +} +.ki-two-credit-cart .path4:before { + content: "\ef62"; + position: absolute; left: 0; + +} +.ki-two-credit-cart .path5:before { + content: "\ef63"; + position: absolute; left: 0; + +} +.ki-underlining .path1:before { + content: "\ef64"; + + opacity: 0.3; +} +.ki-underlining .path2:before { + content: "\ef65"; + position: absolute; left: 0; + +} +.ki-underlining .path3:before { + content: "\ef66"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-up-down .path1:before { + content: "\ef67"; + + opacity: 0.3; +} +.ki-up-down .path2:before { + content: "\ef68"; + position: absolute; left: 0; + +} +.ki-up-down .path3:before { + content: "\ef69"; + position: absolute; left: 0; + +} +.ki-up-square .path1:before { + content: "\ef6a"; + + opacity: 0.3; +} +.ki-up-square .path2:before { + content: "\ef6b"; + position: absolute; left: 0; + +} +.ki-up:before { + content: "\ef6c"; +} +.ki-update-file .path1:before { + content: "\ef6d"; + + opacity: 0.3; +} +.ki-update-file .path2:before { + content: "\ef6e"; + position: absolute; left: 0; + +} +.ki-update-file .path3:before { + content: "\ef6f"; + position: absolute; left: 0; + +} +.ki-update-file .path4:before { + content: "\ef70"; + position: absolute; left: 0; + +} +.ki-update-folder .path1:before { + content: "\ef71"; + + opacity: 0.3; +} +.ki-update-folder .path2:before { + content: "\ef72"; + position: absolute; left: 0; + +} +.ki-user-edit .path1:before { + content: "\ef73"; + +} +.ki-user-edit .path2:before { + content: "\ef74"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-user-edit .path3:before { + content: "\ef75"; + position: absolute; left: 0; + +} +.ki-user-square .path1:before { + content: "\ef76"; + + opacity: 0.3; +} +.ki-user-square .path2:before { + content: "\ef77"; + position: absolute; left: 0; + +} +.ki-user-square .path3:before { + content: "\ef78"; + position: absolute; left: 0; + +} +.ki-user-tick .path1:before { + content: "\ef79"; + +} +.ki-user-tick .path2:before { + content: "\ef7a"; + position: absolute; left: 0; + +} +.ki-user-tick .path3:before { + content: "\ef7b"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-user .path1:before { + content: "\ef7c"; + + opacity: 0.3; +} +.ki-user .path2:before { + content: "\ef7d"; + position: absolute; left: 0; + +} +.ki-verify .path1:before { + content: "\ef7e"; + + opacity: 0.3; +} +.ki-verify .path2:before { + content: "\ef7f"; + position: absolute; left: 0; + +} +.ki-vibe .path1:before { + content: "\ef80"; + +} +.ki-vibe .path2:before { + content: "\ef81"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-virus .path1:before { + content: "\ef82"; + + opacity: 0.3; +} +.ki-virus .path2:before { + content: "\ef83"; + position: absolute; left: 0; + +} +.ki-virus .path3:before { + content: "\ef84"; + position: absolute; left: 0; + +} +.ki-vue .path1:before { + content: "\ef85"; + + opacity: 0.3; +} +.ki-vue .path2:before { + content: "\ef86"; + position: absolute; left: 0; + +} +.ki-vuesax .path1:before { + content: "\ef87"; + +} +.ki-vuesax .path2:before { + content: "\ef88"; + position: absolute; left: 0; + + opacity: 0.4; +} +.ki-vuesax .path3:before { + content: "\ef89"; + position: absolute; left: 0; + +} +.ki-wallet .path1:before { + content: "\ef8a"; + + opacity: 0.3; +} +.ki-wallet .path2:before { + content: "\ef8b"; + position: absolute; left: 0; + +} +.ki-wallet .path3:before { + content: "\ef8c"; + position: absolute; left: 0; + +} +.ki-wallet .path4:before { + content: "\ef8d"; + position: absolute; left: 0; + +} +.ki-wanchain .path1:before { + content: "\ef8e"; + +} +.ki-wanchain .path2:before { + content: "\ef8f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-watch .path1:before { + content: "\ef90"; + + opacity: 0.3; +} +.ki-watch .path2:before { + content: "\ef91"; + position: absolute; left: 0; + +} +.ki-whatsapp .path1:before { + content: "\ef92"; + + opacity: 0.4; +} +.ki-whatsapp .path2:before { + content: "\ef93"; + position: absolute; left: 0; + +} +.ki-wifi-home .path1:before { + content: "\ef94"; + + opacity: 0.3; +} +.ki-wifi-home .path2:before { + content: "\ef95"; + position: absolute; left: 0; + +} +.ki-wifi-home .path3:before { + content: "\ef96"; + position: absolute; left: 0; + +} +.ki-wifi-home .path4:before { + content: "\ef97"; + position: absolute; left: 0; + +} +.ki-wifi-square .path1:before { + content: "\ef98"; + + opacity: 0.3; +} +.ki-wifi-square .path2:before { + content: "\ef99"; + position: absolute; left: 0; + +} +.ki-wifi-square .path3:before { + content: "\ef9a"; + position: absolute; left: 0; + +} +.ki-wifi-square .path4:before { + content: "\ef9b"; + position: absolute; left: 0; + +} +.ki-wifi .path1:before { + content: "\ef9c"; + +} +.ki-wifi .path2:before { + content: "\ef9d"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-wifi .path3:before { + content: "\ef9e"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-wifi .path4:before { + content: "\ef9f"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-wrench .path1:before { + content: "\efa0"; + + opacity: 0.3; +} +.ki-wrench .path2:before { + content: "\efa1"; + position: absolute; left: 0; + +} +.ki-xaomi .path1:before { + content: "\efa2"; + +} +.ki-xaomi .path2:before { + content: "\efa3"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-xd .path1:before { + content: "\efa4"; + + opacity: 0.3; +} +.ki-xd .path2:before { + content: "\efa5"; + position: absolute; left: 0; + +} +.ki-xd .path3:before { + content: "\efa6"; + position: absolute; left: 0; + +} +.ki-xmr .path1:before { + content: "\efa7"; + +} +.ki-xmr .path2:before { + content: "\efa8"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-yii .path1:before { + content: "\efa9"; + + opacity: 0.3; +} +.ki-yii .path2:before { + content: "\efaa"; + position: absolute; left: 0; + + opacity: 0.3; +} +.ki-yii .path3:before { + content: "\efab"; + position: absolute; left: 0; + +} +.ki-youtube .path1:before { + content: "\efac"; + +} +.ki-youtube .path2:before { + content: "\efad"; + position: absolute; left: 0; + + opacity: 0.3; +} + +.ki-duotone i { +font-style: normal; +} \ No newline at end of file diff --git a/src/_metronic/assets/keenicons/outline/Read Me.txt b/src/_metronic/assets/keenicons/outline/Read Me.txt new file mode 100644 index 0000000..8491652 --- /dev/null +++ b/src/_metronic/assets/keenicons/outline/Read Me.txt @@ -0,0 +1,7 @@ +Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. + +To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts + +You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. + +You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection. diff --git a/src/_metronic/assets/keenicons/outline/demo-files/demo.css b/src/_metronic/assets/keenicons/outline/demo-files/demo.css new file mode 100644 index 0000000..39b8991 --- /dev/null +++ b/src/_metronic/assets/keenicons/outline/demo-files/demo.css @@ -0,0 +1,152 @@ +body { + padding: 0; + margin: 0; + font-family: sans-serif; + font-size: 1em; + line-height: 1.5; + color: #555; + background: #fff; +} +h1 { + font-size: 1.5em; + font-weight: normal; +} +small { + font-size: .66666667em; +} +a { + color: #e74c3c; + text-decoration: none; +} +a:hover, a:focus { + box-shadow: 0 1px #e74c3c; +} +.bshadow0, input { + box-shadow: inset 0 -2px #e7e7e7; +} +input:hover { + box-shadow: inset 0 -2px #ccc; +} +input, fieldset { + font-family: sans-serif; + font-size: 1em; + margin: 0; + padding: 0; + border: 0; +} +input { + color: inherit; + line-height: 1.5; + height: 1.5em; + padding: .25em 0; +} +input:focus { + outline: none; + box-shadow: inset 0 -2px #449fdb; +} +.glyph { + font-size: 16px; + width: 15em; + padding-bottom: 1em; + margin-right: 4em; + margin-bottom: 1em; + float: left; + overflow: hidden; +} +.liga { + width: 80%; + width: calc(100% - 2.5em); +} +.talign-right { + text-align: right; +} +.talign-center { + text-align: center; +} +.bgc1 { + background: #f1f1f1; +} +.fgc1 { + color: #999; +} +.fgc0 { + color: #000; +} +p { + margin-top: 1em; + margin-bottom: 1em; +} +.mvm { + margin-top: .75em; + margin-bottom: .75em; +} +.mtn { + margin-top: 0; +} +.mtl, .mal { + margin-top: 1.5em; +} +.mbl, .mal { + margin-bottom: 1.5em; +} +.mal, .mhl { + margin-left: 1.5em; + margin-right: 1.5em; +} +.mhmm { + margin-left: 1em; + margin-right: 1em; +} +.mls { + margin-left: .25em; +} +.ptl { + padding-top: 1.5em; +} +.pbs, .pvs { + padding-bottom: .25em; +} +.pvs, .pts { + padding-top: .25em; +} +.unit { + float: left; +} +.unitRight { + float: right; +} +.size1of2 { + width: 50%; +} +.size1of1 { + width: 100%; +} +.clearfix:before, .clearfix:after { + content: " "; + display: table; +} +.clearfix:after { + clear: both; +} +.hidden-true { + display: none; +} +.textbox0 { + width: 3em; + background: #f1f1f1; + padding: .25em .5em; + line-height: 1.5; + height: 1.5em; +} +#testDrive { + display: block; + padding-top: 24px; + line-height: 1.5; +} +.fs0 { + font-size: 16px; +} +.fs1 { + font-size: 32px; +} + diff --git a/src/_metronic/assets/keenicons/outline/demo-files/demo.js b/src/_metronic/assets/keenicons/outline/demo-files/demo.js new file mode 100644 index 0000000..6f45f1c --- /dev/null +++ b/src/_metronic/assets/keenicons/outline/demo-files/demo.js @@ -0,0 +1,30 @@ +if (!('boxShadow' in document.body.style)) { + document.body.setAttribute('class', 'noBoxShadow'); +} + +document.body.addEventListener("click", function(e) { + var target = e.target; + if (target.tagName === "INPUT" && + target.getAttribute('class').indexOf('liga') === -1) { + target.select(); + } +}); + +(function() { + var fontSize = document.getElementById('fontSize'), + testDrive = document.getElementById('testDrive'), + testText = document.getElementById('testText'); + function updateTest() { + testDrive.innerHTML = testText.value || String.fromCharCode(160); + if (window.icomoonLiga) { + window.icomoonLiga(testDrive); + } + } + function updateSize() { + testDrive.style.fontSize = fontSize.value + 'px'; + } + fontSize.addEventListener('change', updateSize, false); + testText.addEventListener('input', updateTest, false); + testText.addEventListener('change', updateTest, false); + updateSize(); +}()); diff --git a/src/_metronic/assets/keenicons/outline/demo.html b/src/_metronic/assets/keenicons/outline/demo.html new file mode 100644 index 0000000..502511d --- /dev/null +++ b/src/_metronic/assets/keenicons/outline/demo.html @@ -0,0 +1,8060 @@ + + + + + IcoMoon Demo + + + + + +
+

Font Name: KeenIcons (Glyphs: 573)

+
+
+

Grid Size: 24

+
+
+ + ki-outline ki-abstract-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-7 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-8 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-9 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-10 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-11 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-12 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-13 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-14 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-15 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-16 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-17 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-18 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-19 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-20 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-21 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-22 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-23 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-24 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-25 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-26 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-27 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-28 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-29 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-30 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-31 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-32 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-33 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-34 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-35 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-36 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-37 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-38 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-39 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-40 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-41 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-42 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-43 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-44 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-45 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-46 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-47 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-48 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract-49 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-abstract +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-add-files +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-add-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-add-item +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-add-notepad +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-address-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-airplane-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-airplane +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-airpod +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-android +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-angular +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-apple +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-archive-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-archive +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-circle-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-circle-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-diagonal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-down-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-down-refraction +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-down-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-mix +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-right-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-two-diagonals +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-up-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-up-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-up-refraction +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-up-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrow-zigzag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrows-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-arrows-loop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-artificial-intelligence +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-auto-brightness +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-avalanche +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-award +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-badge +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bandage +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bank +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-barcode +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-basket-ok +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-basket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-behance +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bill +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-binance-usd +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-binance +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bitcoin +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-black-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-black-left-line +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-black-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-black-right-line +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-black-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-black-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bluetooth +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-book-open +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-book-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bookmark-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bootstrap +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-briefcase +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-brifecase-cros +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-brifecase-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-brifecase-timer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-brush +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bucket-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bucket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-burger-menu-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-burger-menu-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-burger-menu-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-burger-menu-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-burger-menu-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-burger-menu-6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-burger-menu +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-bus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-calendar-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-calendar-8 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-calendar-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-calendar-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-calendar-remove +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-calendar-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-calendar-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-call +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-capsule +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-car-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-car-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-car +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-category +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cd +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-celsius +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-line-down-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-line-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-line-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-line-up-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-line-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-line +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-pie-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-pie-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-pie-simple +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-pie-too +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-simple-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-simple-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart-simple +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-check-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-check-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cheque +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-chrome +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-classmates +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-click +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-clipboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cloud-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cloud-change +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cloud-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-code +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-coffee +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-color-swatch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-colors-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-compass +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-copy-success +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-copy +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-courier-express +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-courier +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-credit-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cross-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cross-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cross +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-crown-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-crown +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-css +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cube-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cube-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-cup +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-data +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-delete-files +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-delete-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-delivery-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-delivery-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-delivery-24 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-delivery-door +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-delivery-geolocation +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-delivery-time +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-delivery +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-design-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-design-frame +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-design-mask +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-design +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-devices-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-devices +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-diamonds +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-directbox-default +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-disconnect +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-discount +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-disk +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dislike +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dj +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-document +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dollar +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dots-circle-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dots-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dots-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dots-square-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dots-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dots-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-double-check-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-double-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-double-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-double-left-arrow +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-double-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-double-right-arrow +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-double-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-double-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-down-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dribbble +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-drop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-dropbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-educare +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-electricity +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-electronic-clock +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-7 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-8 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-9 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-10 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-11 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-12 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-equal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-element-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-emoji-happy +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-enjin-coin +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-entrance-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-entrance-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-eraser +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-euro +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-exit-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-exit-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-exit-right-corner +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-exit-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-exit-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-external-drive +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-eye-slash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-eye +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-facebook +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-faceid +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-fasten +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-fat-rows +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-feather +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-figma +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-file-added +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-file-deleted +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-file-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-file-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-file-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-file-sheet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-file-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-file +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-files-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-filter-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-filter-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-filter-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-filter-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-filter-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-filter +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-finance-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-financial-schedule +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-fingerprint-scanning +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-flag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-flash-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-flask +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-focus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-folder-added +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-folder-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-folder-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-frame +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-gear +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-general-mouse +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-geolocation-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-geolocation +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-ghost +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-gift +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-github +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-glass +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-google-play +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-google +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-graph-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-graph-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-graph-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-graph-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-graph +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-grid-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-grid-frame +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-grid +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-handcart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-happy-emoji +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-heart-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-heart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-home-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-home-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-home-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-html +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-icon +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-illustrator +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-information-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-information-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-information-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-information-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-information +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-instagram +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-joystick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-js-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-js +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-kanban +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-key-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-key +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-keyboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-laptop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-laravel +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-left-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-like-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-like-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-like-shapes +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-like-tag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-like +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-loading +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-lock-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-lock-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-lock +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-logistic +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-lots-shopping +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-lovely +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-lts +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-magnifier +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-map +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-mask +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-maximize +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-medal-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-menu +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-message-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-message-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-message-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-message-notif +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-message-programming +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-message-question +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-message-text-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-message-text +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-messages +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-microsoft +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-milk +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-minus-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-minus-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-minus-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-monitor-mobile +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-moon +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-more-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-mouse-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-mouse-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-mouse +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-nexo +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-night-day +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-note-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-note +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-notepad-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-notepad-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-notepad +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-notification-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-notification-bing +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-notification-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-notification-favorite +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-notification-on +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-notification-status +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-notification +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-ocean +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-office-bag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-package +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-pails +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-paintbucket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-paper-clip +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-parcel-tracking +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-parcel +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-password-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-paypal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-pencil +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-people +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-percentage +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-phone +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-photoshop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-picture +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-pill +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-plus-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-plus-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-pointers +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-price-tag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-printer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-profile-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-profile-user +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-pulse +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-purchase +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-python +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-question-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-question +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-questionnaire-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-ranking +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-react +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-receipt-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-rescue +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-right-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-right-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-rocket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-route +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-router +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-row-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-row-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-safe-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-satellite +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-save-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-save-deposit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-scan-barcode +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-scooter-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-scooter +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-screen +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-scroll +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-search-list +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-security-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-security-user +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-send +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-setting-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-setting-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-setting-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-setting +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-share +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-shield-cross +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-shield-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-shield-slash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-shield-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-shield +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-ship +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-shop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-simcard-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-simcard +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-size +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-slack +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-slider-horizontal-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-slider-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-slider-vertical-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-slider-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-slider +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-sms +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-snapchat +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-social-media +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-soft-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-soft-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-soft +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-some-files +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-sort +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-speaker +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-spotify +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-spring-framework +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-square-brackets +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-status +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-subtitle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-sun +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-support-24 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-switch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-syringe +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tablet-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tablet-delete +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tablet-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tablet-ok +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tablet-text-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tablet-text-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tablet-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tag-cross +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-teacher +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tech-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-technology-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-technology-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-technology-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-technology +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-telephone-geolocation +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-test-tubes +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text-align-center +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text-align-justify-center +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text-align-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text-align-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text-bold +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text-italic +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text-number +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text-strikethrough +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text-underline +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-text +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-thermometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-theta +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tiktok +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-time +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-timer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-to-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-to-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-toggle-off-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-toggle-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-toggle-on-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-toggle-on +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-trailer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-trash-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-trash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-tree +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-trello +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-triangle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-truck +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-ts +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-twitch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-twitter +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-two-credit-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-underlining +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-up-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-up-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-update-file +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-update-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-user-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-user-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-user-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-user +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-verify +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-vibe +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-virus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-vue +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-vuesax +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-wallet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-wanchain +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-watch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-whatsapp +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-wifi-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-wifi-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-wrench +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-xaomi +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-xd +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-xmr +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-yii +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-outline ki-youtube +
+
+ + +
+
+ liga: + +
+
+
+ + +
+

Font Test Drive

+ + +
  +
+
+ +
+

Generated by IcoMoon

+
+ + + + diff --git a/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.eot b/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.eot new file mode 100644 index 0000000..af602cc Binary files /dev/null and b/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.eot differ diff --git a/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.svg b/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.svg new file mode 100644 index 0000000..b802c40 --- /dev/null +++ b/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.svg @@ -0,0 +1,583 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.ttf b/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.ttf new file mode 100644 index 0000000..5c252b5 Binary files /dev/null and b/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.ttf differ diff --git a/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.woff b/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.woff new file mode 100644 index 0000000..cd9f2f5 Binary files /dev/null and b/src/_metronic/assets/keenicons/outline/fonts/keenicons-outline.woff differ diff --git a/src/_metronic/assets/keenicons/outline/selection.json b/src/_metronic/assets/keenicons/outline/selection.json new file mode 100644 index 0000000..df8b989 --- /dev/null +++ b/src/_metronic/assets/keenicons/outline/selection.json @@ -0,0 +1 @@ +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M544 963.413c-32.717-0.143-61.483-16.925-78.289-42.316l-0.218-0.351-145.92-218.027c-11.244-16.595-17.951-37.061-17.951-59.093s6.707-42.498 18.19-59.468l-0.239 0.374 136.107-204.373-96.427-145.067c-10.235-14.815-16.348-33.16-16.348-52.932 0-32.137 16.15-60.502 40.777-77.421l0.318-0.207 42.667-28.16c14.484-10.013 32.421-15.995 51.756-15.995 6.601 0 13.040 0.697 19.245 2.022l-0.601-0.108c25.258 4.998 46.425 19.605 59.947 39.77l0.213 0.337 145.92 218.88c11.244 16.595 17.951 37.061 17.951 59.093s-6.707 42.498-18.19 59.468l0.239-0.374-136.107 204.373 96.427 145.067c10.013 14.484 15.995 32.421 15.995 51.756 0 6.601-0.697 13.040-2.022 19.245l0.108-0.601c-4.352 24.911-18.051 46.016-37.277 59.973l-0.27 0.187-42.667 28.16c-14.555 9.895-32.517 15.798-51.859 15.798-0.518 0-1.036-0.004-1.552-0.013l0.078 0.001zM518.827 886.187c5.585 8.318 14.955 13.719 25.587 13.719 6.368 0 12.283-1.937 17.188-5.255l-0.108 0.069 42.667-28.587c8.318-5.585 13.719-14.955 13.719-25.587 0-6.368-1.937-12.283-5.255-17.188l0.069 0.108-100.693-151.893c-5.412-7.819-8.645-17.505-8.645-27.947s3.233-20.127 8.753-28.112l-0.108 0.165 141.227-213.333c4.407-6.607 7.033-14.73 7.033-23.467s-2.626-16.859-7.131-23.623l0.098 0.156-148.053-217.6c-4.481-6.443-11.192-11.065-18.994-12.762l-0.206-0.038c-1.863-0.413-4.002-0.65-6.197-0.65-6.111 0-11.794 1.835-16.526 4.985l0.11-0.069-42.667 28.587c-8.408 5.476-13.889 14.832-13.889 25.467 0 6.431 2.004 12.394 5.421 17.298l-0.065-0.099 101.973 152.747c5.412 7.819 8.645 17.505 8.645 27.947s-3.233 20.127-8.753 28.112l0.108-0.165-141.227 213.333c-4.407 6.607-7.033 14.73-7.033 23.467s2.626 16.859 7.131 23.623l-0.098-0.156z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-1"]},"attrs":[{}],"properties":{"order":6392,"id":572,"name":"abstract-1","prevSize":32,"code":59648},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M512 970.667c-253.217-0.243-458.424-205.45-458.667-458.644l-0-0.023v-384c0-41.237 33.429-74.667 74.667-74.667v0h768c41.14 0.241 74.426 33.526 74.667 74.644l0 0.023v384c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM128 117.333c-5.891 0-10.667 4.776-10.667 10.667v0 384c0 217.968 176.698 394.667 394.667 394.667s394.667-176.698 394.667-394.667v0-384c0-5.891-4.776-10.667-10.667-10.667v0zM512 800c-158.96-0.243-287.757-129.040-288-287.977l-0-0.023v-256c0.237-17.577 14.423-31.763 31.977-32l0.023-0h512c17.577 0.237 31.763 14.423 32 31.977l0 0.023v256c-0.243 158.96-129.040 287.757-287.977 288l-0.023 0zM288 288v224c0 123.712 100.288 224 224 224s224-100.288 224-224v0-224z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-2"]},"attrs":[{}],"properties":{"order":6393,"id":571,"name":"abstract-2","prevSize":32,"code":59649},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M512 970.667c-0.117 0.001-0.256 0.001-0.394 0.001-20.509 0-39.076-8.316-52.512-21.761l-384-384c-13.475-13.57-21.803-32.266-21.803-52.907s8.328-39.337 21.807-52.911l-0.004 0.004 384-384c13.745-13.082 32.386-21.13 52.907-21.13s39.162 8.048 52.939 21.16l-0.032-0.030 384 384c13.475 13.57 21.803 32.266 21.803 52.907s-8.328 39.337-21.807 52.911l0.004-0.004-384 384c-13.436 13.445-32.003 21.761-52.512 21.761-0.139 0-0.277-0-0.416-0.001l0.021 0zM512 117.333c-2.962 0.016-5.658 1.147-7.689 2.995l0.009-0.008-384 384c-1.82 2.029-2.933 4.724-2.933 7.68s1.113 5.651 2.943 7.691l-0.009-0.011 384 384c1.732 2.257 4.431 3.698 7.467 3.698s5.734-1.441 7.45-3.676l0.016-0.022 384-384c1.82-2.029 2.933-4.724 2.933-7.68s-1.113-5.651-2.943-7.691l0.009 0.011-384-384c-1.918-1.75-4.445-2.862-7.229-2.986l-0.025-0.001zM512 747.093c-8.801-0.197-16.738-3.738-22.624-9.397l0.011 0.011-117.76-117.76c-5.68-5.897-9.179-13.929-9.179-22.779 0-4.398 0.864-8.594 2.432-12.427l-0.079 0.219c4.958-11.605 16.262-19.596 29.436-19.627l0.004-0h235.52c17.661 0.016 31.972 14.337 31.972 32 0 8.83-3.576 16.824-9.359 22.614l0-0-117.76 117.76c-5.875 5.648-13.812 9.189-22.575 9.386l-0.038 0.001zM471.467 629.333l40.533 40.533 40.107-40.533zM629.76 458.667h-235.52c-13.178-0.030-24.482-8.021-29.361-19.418l-0.079-0.209c-1.488-3.614-2.352-7.81-2.352-12.208 0-8.85 3.499-16.882 9.189-22.789l-0.010 0.010 117.76-117.76c5.878-5.585 13.844-9.021 22.613-9.021s16.736 3.436 22.627 9.034l-0.014-0.013 117.76 117.76c5.782 5.789 9.359 13.784 9.359 22.613 0 17.663-14.311 31.984-31.97 32l-0.002 0zM471.467 394.667h83.2l-42.667-40.533z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-3"]},"attrs":[{}],"properties":{"order":6394,"id":570,"name":"abstract-3","prevSize":32,"code":59650},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M512 970.667c-0.117 0.001-0.256 0.001-0.394 0.001-20.509 0-39.076-8.316-52.512-21.761l-384-384c-13.475-13.57-21.803-32.266-21.803-52.907s8.328-39.337 21.807-52.911l-0.004 0.004 384-384c13.745-13.082 32.386-21.13 52.907-21.13s39.162 8.048 52.939 21.16l-0.032-0.030 384 384c13.475 13.57 21.803 32.266 21.803 52.907s-8.328 39.337-21.807 52.911l0.004-0.004-384 384c-13.436 13.445-32.003 21.761-52.512 21.761-0.139 0-0.277-0-0.416-0.001l0.021 0zM512 117.333c-2.962 0.016-5.658 1.147-7.689 2.995l0.009-0.008-384 384c-1.82 2.029-2.933 4.724-2.933 7.68s1.113 5.651 2.943 7.691l-0.009-0.011 384 384c1.732 2.257 4.431 3.698 7.467 3.698s5.734-1.441 7.45-3.676l0.016-0.022 384-384c1.82-2.029 2.933-4.724 2.933-7.68s-1.113-5.651-2.943-7.691l0.009 0.011-384-384c-1.918-1.75-4.445-2.862-7.229-2.986l-0.025-0.001zM512 747.093c-8.801-0.197-16.738-3.738-22.624-9.397l0.011 0.011-203.093-203.093c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 203.093-203.093c5.878-5.585 13.844-9.021 22.613-9.021s16.736 3.436 22.627 9.034l-0.014-0.013 203.093 203.093c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-203.093 203.093c-5.875 5.648-13.812 9.189-22.575 9.386l-0.038 0.001zM354.133 512l157.867 157.867 157.867-157.867-157.867-157.867z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-4"]},"attrs":[{}],"properties":{"order":6395,"id":569,"name":"abstract-4","prevSize":32,"code":59651},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM640 714.667h-256c-41.237 0-74.667-33.429-74.667-74.667v0-256c0-41.237 33.429-74.667 74.667-74.667v0h256c41.14 0.241 74.426 33.526 74.667 74.644l0 0.023v256c0 41.237-33.429 74.667-74.667 74.667v0zM384 373.333c-5.891 0-10.667 4.776-10.667 10.667v0 256c0 5.891 4.776 10.667 10.667 10.667v0h256c5.891 0 10.667-4.776 10.667-10.667v0-256c0-5.891-4.776-10.667-10.667-10.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-5"]},"attrs":[{}],"properties":{"order":6396,"id":568,"name":"abstract-5","prevSize":32,"code":59652},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M600.747 915.627c-0.34 0.006-0.741 0.009-1.143 0.009-18.946 0-36.145-7.484-48.799-19.658l0.023 0.022-180.053-181.333h-157.44c-0.242 0.001-0.528 0.002-0.814 0.002-88.366 0-160-71.634-160-160 0-77.483 55.077-142.102 128.216-156.843l1.025-0.172c0-4.267 0-8.96 0-13.653-0-0.043-0-0.094-0-0.146 0-135.023 109.457-244.48 244.48-244.48 79.36 0 149.888 37.812 194.551 96.403l0.436 0.596c18.15-7.757 39.268-12.267 61.44-12.267 88.328 0 159.939 71.574 160 159.887l0 0.006c0 4.693 0 8.96 0 13.653 74.171 14.908 129.255 79.53 129.255 157.018 0 88.366-71.634 160-160 160-0.441 0-0.882-0.002-1.322-0.005l0.067 0h-138.667v130.133c0.001 0.17 0.002 0.371 0.002 0.572 0 28.859-17.365 53.663-42.216 64.532l-0.453 0.177c-7.852 3.523-17.019 5.574-26.664 5.574-0.676 0-1.35-0.010-2.021-0.030l0.098 0.002zM213.333 458.667c-53.019 0-96 42.981-96 96s42.981 96 96 96v0h170.667c8.833 0.008 16.828 3.594 22.613 9.386l0 0 190.72 189.44c1.090 0.69 2.417 1.1 3.84 1.1s2.75-0.41 3.87-1.117l-0.030 0.018c2.512-0.902 4.277-3.264 4.277-6.038 0-0.127-0.004-0.254-0.011-0.38l0.001 0.017v-160.427c0.237-17.577 14.423-31.763 31.977-32l0.023-0h170.667c53.019 0 96-42.981 96-96s-42.981-96-96-96v0h-6.4c-0.501 0.027-1.087 0.043-1.677 0.043-10.58 0-19.991-5.001-26-12.767l-0.056-0.076c-3.935-5.256-6.301-11.885-6.301-19.067 0-4.033 0.746-7.892 2.108-11.446l-0.074 0.219c3.246-9.354 5.12-20.135 5.12-31.354 0-0.077-0-0.154-0-0.231l0 0.012c0-53.019-42.981-96-96-96v0c-0.198-0.002-0.432-0.002-0.666-0.002-19.867 0-38.28 6.229-53.391 16.84l0.297-0.198c-4.963 3.492-11.133 5.581-17.791 5.581-2.621 0-5.166-0.324-7.597-0.933l0.215 0.046c-8.858-2.086-16.128-7.682-20.398-15.204l-0.082-0.156c-31.782-54.791-90.163-91.051-157.013-91.051-99.912 0-180.907 80.995-180.907 180.907 0 0.060 0 0.12 0 0.18l-0-0.009c-0 0.045-0 0.098-0 0.151 0 12.942 1.399 25.558 4.053 37.704l-0.213-1.162c0.329 1.767 0.516 3.8 0.516 5.878 0 7.972-2.768 15.298-7.395 21.069l0.051-0.066c-5.911 7.070-14.735 11.536-24.601 11.536-0.351 0-0.701-0.006-1.050-0.017l0.051 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-6"]},"attrs":[{}],"properties":{"order":6397,"id":567,"name":"abstract-6","prevSize":32,"code":59653},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M512 970.667c-0.138 0.001-0.301 0.001-0.464 0.001-19.027 0-36.831-5.233-52.052-14.338l0.463 0.257-307.2-177.493c-31.302-18.117-52.029-51.435-52.053-89.597l-0-0.003v-354.987c0.025-38.165 20.752-71.483 51.558-89.335l0.496-0.265 307.627-177.493c14.891-8.653 32.769-13.76 51.84-13.76s36.949 5.107 52.342 14.028l-0.502-0.268 307.2 177.493c31.302 18.117 52.029 51.435 52.053 89.597l0 0.003v354.987c-0.025 38.165-20.752 71.483-51.558 89.335l-0.496 0.265-307.627 177.493c-14.527 8.846-32.097 14.083-50.889 14.083-0.259 0-0.519-0.001-0.777-0.003l0.040 0zM512 117.333c-0.039-0-0.084-0-0.13-0-7.166 0-13.888 1.9-19.691 5.223l0.194-0.102-307.627 176.213c-12.024 7.035-19.988 19.86-20.053 34.551l-0 0.009v354.987c0.066 14.7 8.030 27.525 19.864 34.458l0.189 0.102 307.627 177.493c5.65 3.227 12.416 5.13 19.627 5.13s13.977-1.903 19.824-5.234l-0.198 0.104 307.627-174.933c12.024-7.035 19.988-19.86 20.053-34.551l0-0.009v-356.267c0.010-0.327 0.015-0.712 0.015-1.098 0-14.773-7.987-27.68-19.879-34.64l-0.19-0.103-307.627-176.213c-5.609-3.221-12.331-5.12-19.497-5.12-0.046 0-0.091 0-0.137 0l0.007-0zM512 784.64c-0.073 0.001-0.16 0.001-0.247 0.001-5.877 0-11.384-1.584-16.118-4.349l0.152 0.082-208.213-120.32c-9.723-5.59-16.175-15.904-16.213-27.728l-0-0.006v-240.64c0.039-11.829 6.49-22.143 16.058-27.651l0.155-0.082 208.213-120.32c4.557-2.823 10.083-4.496 16-4.496s11.443 1.673 16.132 4.572l-0.132-0.076 208.64 120.32c9.723 5.59 16.175 15.904 16.213 27.728l0 0.006v240.64c-0.039 11.829-6.49 22.143-16.058 27.651l-0.155 0.082-208.64 120.32c-4.353 2.682-9.627 4.271-15.272 4.271-0.181 0-0.361-0.002-0.541-0.005l0.027 0zM335.36 613.973l176.64 101.547 176.64-101.547v-203.947l-176.64-101.973-176.64 101.973z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-7"]},"attrs":[{}],"properties":{"order":6398,"id":566,"name":"abstract-7","prevSize":32,"code":59654},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM512 800c-159.058 0-288-128.942-288-288s128.942-288 288-288c159.058 0 288 128.942 288 288v0c-0.243 158.96-129.040 287.757-287.977 288l-0.023 0zM512 288c-123.712 0-224 100.288-224 224s100.288 224 224 224c123.712 0 224-100.288 224-224v0c-0.242-123.614-100.386-223.758-223.977-224l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-8"]},"attrs":[{}],"properties":{"order":6399,"id":565,"name":"abstract-8","prevSize":32,"code":59655},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M853.333 928h-682.667c-41.237 0-74.667-33.429-74.667-74.667v0-682.667c0-41.237 33.429-74.667 74.667-74.667v0h682.667c41.14 0.241 74.426 33.526 74.667 74.644l0 0.023v682.667c0 41.237-33.429 74.667-74.667 74.667v0zM170.667 160c-5.891 0-10.667 4.776-10.667 10.667v0 682.667c0 5.891 4.776 10.667 10.667 10.667v0h682.667c5.891 0 10.667-4.776 10.667-10.667v0-682.667c0-5.891-4.776-10.667-10.667-10.667v0zM725.333 757.333h-426.667c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-426.667c0.237-17.577 14.423-31.763 31.977-32l0.023-0h426.667c17.577 0.237 31.763 14.423 32 31.977l0 0.023v426.667c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0zM330.667 693.333h362.667v-362.667h-362.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-9"]},"attrs":[{}],"properties":{"order":6400,"id":564,"name":"abstract-9","prevSize":32,"code":59656},"setIdx":0,"setId":0,"iconIdx":8},{"icon":{"paths":["M853.333 394.667h-224v-224c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0h-85.333c-41.237 0-74.667 33.429-74.667 74.667v0 224h-224c-41.237 0-74.667 33.429-74.667 74.667v0 85.333c0 41.237 33.429 74.667 74.667 74.667v0h224v224c0 41.237 33.429 74.667 74.667 74.667v0h85.333c41.237 0 74.667-33.429 74.667-74.667v0-224h224c41.237 0 74.667-33.429 74.667-74.667v0-85.333c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0zM864 554.667c0 5.891-4.776 10.667-10.667 10.667v0h-288v288c0 5.891-4.776 10.667-10.667 10.667v0h-85.333c-5.891 0-10.667-4.776-10.667-10.667v0-288h-288c-5.891 0-10.667-4.776-10.667-10.667v0-85.333c0-5.891 4.776-10.667 10.667-10.667v0h288v-288c0-5.891 4.776-10.667 10.667-10.667v0h85.333c5.891 0 10.667 4.776 10.667 10.667v0 288h288c5.891 0 10.667 4.776 10.667 10.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-10"]},"attrs":[{}],"properties":{"order":6401,"id":563,"name":"abstract-10","prevSize":32,"code":59657},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M677.973 512l158.293-158.293c13.475-13.57 21.803-32.266 21.803-52.907s-8.328-39.337-21.807-52.911l0.004 0.004-60.16-60.16c-13.57-13.475-32.266-21.803-52.907-21.803s-39.337 8.328-52.911 21.807l0.004-0.004-158.293 158.293-158.293-158.293c-13.57-13.475-32.266-21.803-52.907-21.803s-39.337 8.328-52.911 21.807l0.004-0.004-60.16 60.16c-13.475 13.57-21.803 32.266-21.803 52.907s8.328 39.337 21.807 52.911l-0.004-0.004 158.293 158.293-158.293 158.293c-13.475 13.57-21.803 32.266-21.803 52.907s8.328 39.337 21.807 52.911l-0.004-0.004 60.16 60.16c13.57 13.475 32.266 21.803 52.907 21.803s39.337-8.328 52.911-21.807l-0.004 0.004 158.293-158.293 158.293 158.293c13.57 13.475 32.266 21.803 52.907 21.803s39.337-8.328 52.911-21.807l-0.004 0.004 60.16-60.16c13.475-13.57 21.803-32.266 21.803-52.907s-8.328-39.337-21.807-52.911l0.004 0.004zM791.040 730.88l-60.16 60.16c-1.943 2.014-4.665 3.264-7.68 3.264s-5.737-1.251-7.677-3.261l-0.003-0.003-203.52-203.52-203.52 203.52c-1.943 2.014-4.665 3.264-7.68 3.264s-5.737-1.251-7.677-3.261l-0.003-0.003-60.16-60.16c-2.014-1.943-3.264-4.665-3.264-7.68s1.251-5.737 3.261-7.677l0.003-0.003 203.52-203.52-203.52-203.52c-2.014-1.943-3.264-4.665-3.264-7.68s1.251-5.737 3.261-7.677l0.003-0.003 60.16-60.16c2.029-1.82 4.724-2.933 7.68-2.933s5.651 1.113 7.691 2.943l-0.011-0.009 203.52 203.52 203.52-203.52c2.029-1.82 4.724-2.933 7.68-2.933s5.651 1.113 7.691 2.943l-0.011-0.009 60.16 60.16c2.014 1.943 3.264 4.665 3.264 7.68s-1.251 5.737-3.261 7.677l-0.003 0.003-203.52 203.52 203.52 203.52c2.014 1.943 3.264 4.665 3.264 7.68s-1.251 5.737-3.261 7.677l-0.003 0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-11"]},"attrs":[{}],"properties":{"order":6402,"id":562,"name":"abstract-11","prevSize":32,"code":59658},"setIdx":0,"setId":0,"iconIdx":10},{"icon":{"paths":["M554.667 970.667h-85.333c-41.237 0-74.667-33.429-74.667-74.667v0-128c0-41.237 33.429-74.667 74.667-74.667v0h85.333c41.14 0.241 74.426 33.526 74.667 74.644l0 0.023v128c0 41.237-33.429 74.667-74.667 74.667v0zM469.333 757.333c-5.891 0-10.667 4.776-10.667 10.667v0 128c0 5.891 4.776 10.667 10.667 10.667v0h85.333c5.891 0 10.667-4.776 10.667-10.667v0-128c0-5.891-4.776-10.667-10.667-10.667v0zM755.2 495.787c-6.983-0.014-13.742-0.947-20.17-2.685l0.544 0.125c-19.554-5.23-35.521-17.857-45.038-34.625l-0.189-0.362-42.667-74.24c-6.191-10.68-9.845-23.499-9.845-37.17 0-27.488 14.769-51.526 36.805-64.612l0.346-0.19 110.933-64c10.803-6.374 23.804-10.14 37.684-10.14 6.777 0 13.344 0.898 19.588 2.58l-0.526-0.121c19.554 5.23 35.521 17.857 45.038 34.625l0.189 0.362 42.667 73.813c6.191 10.68 9.845 23.499 9.845 37.17 0 27.488-14.769 51.526-36.805 64.612l-0.346 0.19-110.933 64c-10.571 6.57-23.369 10.52-37.080 10.666l-0.040 0zM823.040 272.213c-0.766-0.237-1.647-0.373-2.56-0.373s-1.794 0.136-2.623 0.39l0.063-0.017-110.933 64c-3.168 1.888-5.258 5.297-5.258 9.193 0 1.956 0.526 3.788 1.445 5.364l-0.027-0.051 42.667 73.813c1.291 2.533 3.579 4.401 6.332 5.105l0.068 0.015c1.19 0.553 2.584 0.876 4.053 0.876s2.863-0.323 4.114-0.901l-0.061 0.025 110.933-64c3.168-1.888 5.258-5.297 5.258-9.193 0-1.956-0.526-3.788-1.445-5.364l0.027 0.051-42.667-73.813c-1.291-2.533-3.579-4.401-6.332-5.105l-0.068-0.015zM268.373 495.787c-13.703-0.007-26.516-3.813-37.444-10.422l0.324 0.182-110.933-64c-22.382-13.277-37.151-37.315-37.151-64.803 0-13.672 3.654-26.49 10.038-37.532l-0.193 0.362 42.667-73.813c13.154-22.46 37.167-37.306 64.647-37.306 13.743 0 26.618 3.713 37.679 10.19l-0.353-0.191 110.933 64c22.461 13.259 37.291 37.34 37.291 64.885 0 13.467-3.545 26.105-9.752 37.034l0.194-0.372-42.667 73.813c-9.706 17.129-25.673 29.757-44.716 34.87l-0.51 0.117c-5.842 1.741-12.575 2.821-19.535 2.985l-0.092 0.002zM200.96 272.213h-2.987c-2.821 0.719-5.109 2.587-6.374 5.065l-0.026 0.055-42.667 73.813c-0.553 1.19-0.876 2.584-0.876 4.053s0.323 2.863 0.901 4.114l-0.025-0.061c0.719 2.821 2.587 5.109 5.065 6.374l0.055 0.026 110.933 64c1.19 0.553 2.584 0.876 4.053 0.876s2.863-0.323 4.114-0.901l-0.061 0.025c2.044-0.47 3.793-1.526 5.113-2.979l0.007-0.008 42.667-73.813c0.891-1.525 1.418-3.358 1.418-5.313 0-3.896-2.089-7.305-5.209-9.166l-0.049-0.027-110.933-64c-1.381-1.191-3.146-1.97-5.088-2.131l-0.032-0.002zM823.040 815.787c-13.703-0.007-26.516-3.813-37.444-10.422l0.324 0.182-110.933-64c-17.066-9.779-29.664-25.715-34.866-44.709l-0.121-0.518c-1.495-5.614-2.353-12.060-2.353-18.706 0-13.843 3.725-26.817 10.227-37.973l-0.193 0.359 42.667-73.813c9.706-17.129 25.673-29.757 44.716-34.87l0.51-0.117c5.719-1.562 12.286-2.46 19.063-2.46 13.88 0 26.88 3.766 38.035 10.331l-0.352-0.191 110.933 64c22.382 13.277 37.151 37.315 37.151 64.803 0 13.672-3.654 26.49-10.038 37.532l0.193-0.362-42.667 73.813c-9.706 17.129-25.673 29.757-44.716 34.87l-0.51 0.117c-5.447 1.365-11.7 2.148-18.136 2.148-0.524 0-1.047-0.005-1.568-0.016l0.078 0.001zM755.2 592.213h-2.987c-2.821 0.719-5.109 2.587-6.374 5.065l-0.026 0.055-42.667 73.813c-0.449 1.206-0.709 2.599-0.709 4.053s0.26 2.847 0.735 4.136l-0.027-0.083c0.897 2.735 2.71 4.962 5.067 6.371l0.053 0.029 110.933 64c1.19 0.553 2.584 0.876 4.053 0.876s2.863-0.323 4.114-0.901l-0.061 0.025c2.821-0.719 5.109-2.587 6.374-5.065l0.026-0.055 42.667-73.813c0.891-1.525 1.418-3.358 1.418-5.313 0-3.896-2.089-7.305-5.209-9.166l-0.049-0.027-110.933-64c-0.95-0.374-2.049-0.591-3.2-0.591s-2.25 0.217-3.261 0.612l0.061-0.021zM200.533 815.787c-0.020 0-0.044 0-0.067 0-27.578 0-51.664-14.951-64.595-37.19l-0.191-0.357-42.667-73.813c-6.191-10.68-9.845-23.499-9.845-37.17 0-27.488 14.769-51.526 36.805-64.612l0.346-0.19 110.933-64c10.735-6.384 23.668-10.157 37.482-10.157 27.474 0 51.462 14.924 64.3 37.107l0.191 0.357 42.667 73.813c6.539 10.949 10.406 24.15 10.406 38.254 0 6.569-0.839 12.941-2.415 19.017l0.116-0.525c-5.221 19.449-17.665 35.371-34.21 45.038l-0.35 0.189-110.933 64c-10.615 6.434-23.442 10.241-37.159 10.241-0.136 0-0.273-0-0.409-0.001l0.021 0zM268.8 592.213c-0.766-0.237-1.647-0.373-2.56-0.373s-1.794 0.136-2.623 0.39l0.063-0.017-110.933 64c-3.168 1.888-5.258 5.297-5.258 9.193 0 1.956 0.526 3.788 1.445 5.364l-0.027-0.051 42.667 73.813c1.888 3.168 5.297 5.258 9.193 5.258 1.956 0 3.788-0.526 5.364-1.445l-0.051 0.027 110.933-64c2.41-1.438 4.223-3.665 5.097-6.319l0.023-0.081c0.553-1.19 0.876-2.584 0.876-4.053s-0.323-2.863-0.901-4.114l0.025 0.061-43.947-72.533c-1.291-2.533-3.579-4.401-6.332-5.105l-0.068-0.015zM554.667 330.667h-85.333c-41.237 0-74.667-33.429-74.667-74.667v0-128c0-41.237 33.429-74.667 74.667-74.667v0h85.333c41.14 0.241 74.426 33.526 74.667 74.644l0 0.023v128c0 41.237-33.429 74.667-74.667 74.667v0zM469.333 117.333c-5.891 0-10.667 4.776-10.667 10.667v0 128c0 5.891 4.776 10.667 10.667 10.667v0h85.333c5.891 0 10.667-4.776 10.667-10.667v0-128c0-5.891-4.776-10.667-10.667-10.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-12"]},"attrs":[{}],"properties":{"order":6403,"id":561,"name":"abstract-12","prevSize":32,"code":59659},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M512 970.667c-0.138 0.001-0.301 0.001-0.464 0.001-19.027 0-36.831-5.233-52.052-14.338l0.463 0.257-307.2-177.493c-31.302-18.117-52.029-51.435-52.053-89.597l-0-0.003v-354.987c0.025-38.165 20.752-71.483 51.558-89.335l0.496-0.265 307.627-177.493c14.849-8.538 32.65-13.575 51.627-13.575s36.778 5.036 52.139 13.845l-0.512-0.271 307.627 177.92c31.302 18.117 52.029 51.435 52.053 89.597l0 0.003v354.987c-0.025 38.165-20.752 71.483-51.558 89.335l-0.496 0.265-307.627 177.493c-14.362 8.587-31.68 13.664-50.183 13.664-0.507 0-1.014-0.004-1.52-0.011l0.076 0.001zM512 117.333c-0.051-0-0.112-0-0.173-0-7.347 0-14.213 2.063-20.048 5.643l0.167-0.095-307.2 175.787c-12.024 7.035-19.988 19.86-20.053 34.551l-0 0.009v354.987c0.066 14.7 8.030 27.525 19.864 34.458l0.189 0.102 307.627 177.493c5.65 3.227 12.416 5.13 19.627 5.13s13.977-1.903 19.824-5.234l-0.198 0.104 307.627-174.933c12.024-7.035 19.988-19.86 20.053-34.551l0-0.009v-356.267c0.010-0.327 0.015-0.712 0.015-1.098 0-14.773-7.987-27.68-19.879-34.64l-0.19-0.103-307.627-176.213c-5.609-3.221-12.331-5.12-19.497-5.12-0.046 0-0.091 0-0.137 0l0.007-0zM512 834.133c-5.958-0.165-11.517-1.725-16.408-4.363l0.195 0.096-250.88-145.067c-9.663-5.653-16.082-15.929-16.213-27.715l-0-0.019v-290.133c0.887-10.974 7.117-20.321 16.058-25.517l0.155-0.083 250.88-145.067c4.609-2.617 10.124-4.159 16-4.159s11.391 1.542 16.163 4.245l-0.163-0.085 251.307 145.067c9.663 5.653 16.082 15.929 16.213 27.715l0 0.019v290.133c-0.132 11.804-6.55 22.081-16.060 27.65l-0.153 0.083-251.307 145.067c-3.64 1.466-7.86 2.316-12.279 2.316-1.235 0-2.455-0.066-3.656-0.196l0.149 0.013zM292.693 640l219.307 128 219.307-128v-256l-219.307-125.013-219.307 125.013zM512 615.253c-57.025 0-103.253-46.228-103.253-103.253s46.228-103.253 103.253-103.253c57.025 0 103.253 46.228 103.253 103.253v0c0 57.025-46.228 103.253-103.253 103.253v0zM512 472.747c-21.679 0-39.253 17.574-39.253 39.253s17.574 39.253 39.253 39.253c21.679 0 39.253-17.574 39.253-39.253v0c0-21.679-17.574-39.253-39.253-39.253v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-13"]},"attrs":[{}],"properties":{"order":6404,"id":560,"name":"abstract-13","prevSize":32,"code":59660},"setIdx":0,"setId":0,"iconIdx":12},{"icon":{"paths":["M896 330.667h-768c-41.237 0-74.667-33.429-74.667-74.667v0-85.333c0-41.237 33.429-74.667 74.667-74.667v0h768c41.14 0.241 74.426 33.526 74.667 74.644l0 0.023v85.333c0 41.237-33.429 74.667-74.667 74.667v0zM128 160c-5.891 0-10.667 4.776-10.667 10.667v0 85.333c0 5.891 4.776 10.667 10.667 10.667v0h768c5.891 0 10.667-4.776 10.667-10.667v0-85.333c0-5.891-4.776-10.667-10.667-10.667v0zM896 928h-768c-41.237 0-74.667-33.429-74.667-74.667v0-85.333c0-41.237 33.429-74.667 74.667-74.667v0h768c41.14 0.241 74.426 33.526 74.667 74.644l0 0.023v85.333c0 41.237-33.429 74.667-74.667 74.667v0zM128 757.333c-5.891 0-10.667 4.776-10.667 10.667v0 85.333c0 5.891 4.776 10.667 10.667 10.667v0h768c5.891 0 10.667-4.776 10.667-10.667v0-85.333c0-5.891-4.776-10.667-10.667-10.667v0zM896 629.333h-768c-41.237 0-74.667-33.429-74.667-74.667v0-85.333c0-41.237 33.429-74.667 74.667-74.667v0h768c41.14 0.241 74.426 33.526 74.667 74.644l0 0.023v85.333c0 41.237-33.429 74.667-74.667 74.667v0zM128 458.667c-5.891 0-10.667 4.776-10.667 10.667v0 85.333c0 5.891 4.776 10.667 10.667 10.667v0h768c5.891 0 10.667-4.776 10.667-10.667v0-85.333c0-5.891-4.776-10.667-10.667-10.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-14"]},"attrs":[{}],"properties":{"order":6405,"id":559,"name":"abstract-14","prevSize":32,"code":59661},"setIdx":0,"setId":0,"iconIdx":13},{"icon":{"paths":["M826.88 970.667c-10.675-0.026-20.794-2.381-29.884-6.584l0.444 0.184-75.52-33.707c-26.713-11.369-45.102-37.396-45.102-67.717 0-10.371 2.151-20.24 6.032-29.184l-0.183 0.474 17.067-37.973c16.858-34.851 26.711-75.795 26.711-119.040s-9.852-84.189-27.435-120.709l0.724 1.669c-29.391-62.066-46.551-134.842-46.551-211.627s17.16-149.561 47.854-214.704l-1.303 3.077 16.64-37.973c8.566-18.093 23.65-31.929 42.147-38.661l0.519-0.165c8.254-3.541 17.86-5.6 27.947-5.6s19.693 2.059 28.421 5.78l-0.474-0.18 75.52 33.707c18.239 8.362 32.151 23.524 38.672 42.158l0.155 0.509c3.531 8.323 5.583 18.002 5.583 28.16s-2.052 19.837-5.764 28.645l0.182-0.485-16.64 37.547c-16.775 34.867-26.576 75.809-26.576 119.040s9.801 84.173 27.302 120.725l-0.726-1.685c29.499 62.046 46.725 134.825 46.725 211.627s-17.226 149.58-48.025 214.682l1.3-3.056-16.64 37.973c-8.566 18.093-23.65 31.929-42.147 38.661l-0.519 0.165c-7.7 2.706-16.577 4.269-25.82 4.269-0.223 0-0.445-0.001-0.668-0.003l0.034 0zM784.213 117.333h-3.413c-2.305 1.012-4.108 2.815-5.095 5.057l-0.025 0.063-16.64 37.547c-25.863 54.553-40.964 118.526-40.964 186.027s15.101 131.474 42.109 188.726l-1.145-2.699c20.364 42.437 32.261 92.256 32.261 144.853s-11.897 102.416-33.146 146.913l0.885-2.059-17.067 37.547c-0.395 1.023-0.624 2.206-0.624 3.443 0 3.944 2.327 7.345 5.683 8.905l0.061 0.025 75.52 33.707c1.014 0.388 2.188 0.613 3.413 0.613s2.399-0.225 3.481-0.635l-0.067 0.022c2.305-1.012 4.108-2.815 5.095-5.057l0.025-0.063 17.067-37.973c25.855-54.487 40.952-118.387 40.952-185.813s-15.097-131.327-42.095-188.506l1.143 2.693c-20.364-42.437-32.261-92.256-32.261-144.853s11.897-102.416 33.146-146.913l-0.885 2.059 16.64-37.547c0.386-1.081 0.61-2.328 0.61-3.627s-0.223-2.546-0.634-3.704l0.024 0.078c-1.134-2.223-2.897-3.986-5.055-5.090l-0.065-0.030-75.52-33.707zM532.053 970.667c-10.821-0.030-21.085-2.384-30.329-6.588l0.463 0.188-75.52-33.707c-17.838-7.775-31.56-22.193-38.241-40.047l-0.159-0.486c-3.643-8.305-5.763-17.985-5.763-28.16s2.12-19.855 5.943-28.622l-0.18 0.462 17.067-37.547c16.665-34.888 26.398-75.827 26.398-119.040s-9.734-84.152-27.128-120.746l0.73 1.706c-29.499-62.046-46.725-134.825-46.725-211.627s17.226-149.58 48.025-214.682l-1.3 3.056 17.067-37.973c8.362-18.239 23.524-32.151 42.158-38.672l0.509-0.155c8.323-3.531 18.002-5.583 28.16-5.583s19.837 2.052 28.645 5.764l-0.485-0.182 75.947 35.413c25.889 11.587 43.601 37.121 43.601 66.792 0 10.894-2.388 21.23-6.668 30.514l0.187-0.453-16.64 37.547c-16.775 34.867-26.576 75.809-26.576 119.040s9.801 84.173 27.302 120.725l-0.726-1.685c29.499 62.046 46.725 134.825 46.725 211.627s-17.226 149.58-48.025 214.682l1.3-3.056-17.067 37.973c-8.362 18.239-23.524 32.151-42.158 38.672l-0.509 0.155c-7.464 2.767-16.085 4.469-25.073 4.691l-0.1 0.002zM528.213 905.813c1.062 0.511 2.31 0.809 3.627 0.809s2.564-0.298 3.678-0.831l-0.051 0.022c2.374-0.679 4.244-2.409 5.102-4.641l0.018-0.053 16.64-37.973c25.963-54.466 41.127-118.369 41.127-185.813s-15.163-131.347-42.267-188.485l1.14 2.672c-20.364-42.437-32.261-92.256-32.261-144.853s11.897-102.416 33.146-146.913l-0.885 2.059 17.067-37.547c0.515-1.125 0.815-2.44 0.815-3.825 0-3.778-2.232-7.035-5.45-8.524l-0.058-0.024-74.667-33.707c-1.081-0.386-2.328-0.61-3.627-0.61s-2.546 0.223-3.704 0.634l0.078-0.024c-2.305 1.012-4.108 2.815-5.095 5.057l-0.025 0.063-16.64 37.547c-25.971 54.533-41.138 118.508-41.138 186.027s15.167 131.493 42.28 188.705l-1.142-2.678c20.364 42.437 32.261 92.256 32.261 144.853s-11.897 102.416-33.146 146.913l0.885-2.059-17.067 37.547c-0.511 1.062-0.809 2.31-0.809 3.627s0.298 2.564 0.831 3.678l-0.022-0.051c0.679 2.374 2.409 4.244 4.641 5.102l0.053 0.018zM238.933 970.667c-0.050 0-0.109 0-0.168 0-10.762 0-20.974-2.358-30.147-6.585l0.448 0.185-75.52-33.707c-25.889-11.587-43.601-37.121-43.601-66.792 0-10.894 2.388-21.23 6.668-30.514l-0.187 0.453 16.64-37.547c16.775-34.867 26.576-75.809 26.576-119.040s-9.801-84.173-27.302-120.725l0.726 1.685c-29.499-62.046-46.725-134.825-46.725-211.627s17.226-149.58 48.025-214.682l-1.3 3.056 14.933-37.973c8.566-18.093 23.65-31.929 42.147-38.661l0.519-0.165c8.254-3.541 17.86-5.6 27.947-5.6s19.693 2.059 28.421 5.78l-0.474-0.18 75.52 33.707c18.239 8.362 32.151 23.524 38.672 42.158l0.155 0.509c3.515 8.358 5.557 18.074 5.557 28.267 0 9.789-1.884 19.137-5.308 27.703l0.178-0.503-17.067 37.973c-16.858 34.851-26.711 75.795-26.711 119.040s9.852 84.189 27.435 120.709l-0.724-1.669c29.391 62.066 46.551 134.842 46.551 211.627s-17.16 149.561-47.854 214.704l1.303-3.077-16.64 37.973c-8.566 18.093-23.65 31.929-42.147 38.661l-0.519 0.165c-7.732 2.9-16.667 4.614-25.992 4.693l-0.035 0zM235.093 905.813c1.062 0.511 2.31 0.809 3.627 0.809s2.564-0.298 3.678-0.831l-0.051 0.022c2.374-0.679 4.244-2.409 5.102-4.641l0.018-0.053 16.64-37.973c25.855-54.487 40.952-118.387 40.952-185.813s-15.097-131.327-42.095-188.506l1.143 2.693c-20.364-42.437-32.261-92.256-32.261-144.853s11.897-102.416 33.146-146.913l-0.885 2.059 17.067-37.973c0.427-1.009 0.676-2.182 0.676-3.413s-0.248-2.404-0.698-3.472l0.022 0.059c-0.975-2.204-2.604-3.97-4.638-5.092l-0.055-0.028-75.947-33.707c-1.014-0.388-2.188-0.613-3.413-0.613s-2.399 0.225-3.481 0.635l0.067-0.022c-2.305 1.012-4.108 2.815-5.095 5.057l-0.025 0.063-17.92 37.547c-25.855 54.487-40.952 118.387-40.952 185.813s15.097 131.327 42.095 188.506l-1.143-2.693c20.364 42.437 32.261 92.256 32.261 144.853s-11.897 102.416-33.146 146.913l0.885-2.059-16.64 37.547c-0.515 1.125-0.815 2.44-0.815 3.825 0 3.778 2.232 7.035 5.45 8.524l0.058 0.024z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-15"]},"attrs":[{}],"properties":{"order":6406,"id":558,"name":"abstract-15","prevSize":32,"code":59662},"setIdx":0,"setId":0,"iconIdx":14},{"icon":{"paths":["M346.027 957.44c-76.655-0.411-149.215-17.506-214.373-47.833l3.173 1.326-37.973-14.933c-18.093-8.566-31.929-23.65-38.661-42.147l-0.165-0.519c-3.541-8.254-5.6-17.86-5.6-27.947s2.059-19.693 5.78-28.421l-0.18 0.474 33.707-75.52c11.050-27.116 37.208-45.881 67.749-45.881 11.019 0 21.467 2.443 30.833 6.816l-0.448-0.188 37.973 17.067c34.867 16.775 75.809 26.576 119.040 26.576s84.173-9.801 120.725-27.302l-1.685 0.726c62.066-29.391 134.842-46.551 211.627-46.551s149.561 17.16 214.704 47.854l-3.077-1.303 37.973 16.64c18.036 8.491 31.775 23.619 38.245 42.155l0.155 0.512c3.643 8.305 5.763 17.985 5.763 28.16s-2.12 19.855-5.943 28.622l0.18-0.462-33.707 75.52c-7.894 17.869-22.254 31.674-40.041 38.656l-0.493 0.17c-8.323 3.531-18.002 5.583-28.16 5.583s-19.837-2.052-28.645-5.764l0.485 0.182-37.547-16.64c-34.867-16.775-75.809-26.576-119.040-26.576s-84.173 9.801-120.725 27.302l1.685-0.726c-61.861 28.042-134.138 44.383-210.232 44.383-1.090 0-2.18-0.003-3.268-0.010l0.167 0.001zM160.427 744.107c-0.16-0.011-0.346-0.017-0.534-0.017-3.646 0-6.758 2.287-7.98 5.505l-0.020 0.059-33.707 73.813c-0.537 0.988-0.853 2.164-0.853 3.413s0.316 2.425 0.872 3.452l-0.019-0.038c0.679 2.374 2.409 4.244 4.641 5.102l0.053 0.018 37.973 17.067c54.487 25.855 118.387 40.952 185.813 40.952s131.327-15.097 188.506-42.095l-2.693 1.143c42.437-20.364 92.256-32.261 144.853-32.261s102.416 11.897 146.913 33.146l-2.059-0.885 37.547 16.64c1.081 0.386 2.328 0.61 3.627 0.61s2.546-0.223 3.704-0.634l-0.078 0.024c2.305-1.012 4.108-2.815 5.095-5.057l0.025-0.063 33.707-75.52c0.511-1.062 0.809-2.31 0.809-3.627s-0.298-2.564-0.831-3.678l0.022 0.051c-0.679-2.374-2.409-4.244-4.641-5.102l-0.053-0.018-37.973-16.64c-54.487-25.855-118.387-40.952-185.813-40.952s-131.327 15.097-188.506 42.095l2.693-1.143c-42.437 20.364-92.256 32.261-144.853 32.261s-102.416-11.897-146.913-33.146l2.059 0.885-37.547-16.64c-0.763-0.347-1.655-0.549-2.594-0.549-0.441 0-0.872 0.045-1.287 0.13l0.041-0.007zM346.027 665.173c-76.655-0.411-149.215-17.506-214.373-47.833l3.173 1.326-37.973-17.067c-25.828-11.741-43.463-37.315-43.463-67.009 0-10.806 2.336-21.067 6.53-30.305l-0.187 0.461 33.707-78.080c11.741-25.828 37.315-43.463 67.009-43.463 10.806 0 21.067 2.336 30.305 6.53l-0.461-0.187 37.547 17.067c34.888 16.665 75.827 26.398 119.040 26.398s84.152-9.734 120.746-27.128l-1.706 0.73c62.081-29.31 134.856-46.421 211.627-46.421s149.546 17.111 214.719 47.726l-3.093-1.306 37.973 17.067c18.22 8.235 32.056 23.462 38.257 42.17l0.143 0.497c3.643 8.305 5.763 17.985 5.763 28.16s-2.12 19.855-5.943 28.622l0.18-0.462-34.987 74.667c-7.775 17.838-22.193 31.56-40.047 38.241l-0.486 0.159c-8.305 3.643-17.985 5.763-28.16 5.763s-19.855-2.12-28.622-5.943l0.462 0.18-37.547-16.64c-34.867-16.775-75.809-26.576-119.040-26.576s-84.173 9.801-120.725 27.302l1.685-0.726c-61.858 28.038-134.13 44.377-210.219 44.377-0.645 0-1.29-0.001-1.934-0.004l0.099 0zM118.187 529.067c-0.515 1.125-0.815 2.44-0.815 3.825 0 3.778 2.232 7.035 5.45 8.524l0.058 0.024 37.973 17.067c54.487 25.855 118.387 40.952 185.813 40.952s131.327-15.097 188.506-42.095l-2.693 1.143c42.437-20.364 92.256-32.261 144.853-32.261s102.416 11.897 146.913 33.146l-2.059-0.885 37.547 16.64c1.062 0.511 2.31 0.809 3.627 0.809s2.564-0.298 3.678-0.831l-0.051 0.022c2.374-0.679 4.244-2.409 5.102-4.641l0.018-0.053 33.707-75.52c0.511-1.062 0.809-2.31 0.809-3.627s-0.298-2.564-0.831-3.678l0.022 0.051c-0.679-2.374-2.409-4.244-4.641-5.102l-0.053-0.018-37.973-16.64c-54.487-25.855-118.387-40.952-185.813-40.952s-131.327 15.097-188.506 42.095l2.693-1.143c-42.437 20.364-92.256 32.261-144.853 32.261s-102.416-11.897-146.913-33.146l2.059 0.885-37.547-17.067c-1.062-0.511-2.31-0.809-3.627-0.809s-2.564 0.298-3.678 0.831l0.051-0.022c-2.374 0.679-4.244 2.409-5.102 4.641l-0.018 0.053zM346.027 369.493c-76.705-0.571-149.243-17.809-214.364-48.262l3.164 1.329-37.973-16.64c-25.828-11.741-43.463-37.315-43.463-67.009 0-10.806 2.336-21.067 6.53-30.305l-0.187 0.461 33.707-75.52c11.467-25.864 36.917-43.58 66.504-43.58 10.845 0 21.133 2.38 30.372 6.646l-0.45-0.186 37.973 16.64c34.867 16.775 75.809 26.576 119.040 26.576s84.173-9.801 120.725-27.302l-1.685 0.726c62.046-29.499 134.825-46.725 211.627-46.725s149.58 17.226 214.682 48.025l-3.056-1.3 37.973 16.64c25.767 11.892 43.328 37.507 43.328 67.224 0 10.72-2.285 20.906-6.395 30.098l0.187-0.468-33.28 75.52c-8.566 18.093-23.65 31.929-42.147 38.661l-0.519 0.165c-8.254 3.541-17.86 5.6-27.947 5.6s-19.693-2.059-28.421-5.78l0.474 0.18-37.973-17.067c-34.867-16.775-75.809-26.576-119.040-26.576s-84.173 9.801-120.725 27.302l1.685-0.726c-61.831 28.261-134.052 45.008-210.114 45.652l-0.232 0.002zM118.187 235.093c-0.515 1.125-0.815 2.44-0.815 3.825 0 3.778 2.232 7.035 5.45 8.524l0.058 0.024 37.973 16.64c54.487 25.855 118.387 40.952 185.813 40.952s131.327-15.097 188.506-42.095l-2.693 1.143c42.437-20.364 92.256-32.261 144.853-32.261s102.416 11.897 146.913 33.146l-2.059-0.885 37.547 17.067c1.077 0.42 2.323 0.664 3.627 0.664s2.55-0.244 3.697-0.688l-0.070 0.024c2.388-0.882 4.238-2.732 5.101-5.061l0.019-0.059 33.707-75.52c0.501-1.083 0.794-2.351 0.794-3.687 0-3.695-2.236-6.867-5.429-8.237l-0.058-0.022-37.973-17.92c-54.487-25.855-118.387-40.952-185.813-40.952s-131.327 15.097-188.506 42.095l2.693-1.143c-42.437 20.364-92.256 32.261-144.853 32.261s-102.416-11.897-146.913-33.146l2.059 0.885-37.547-16.64c-1.125-0.515-2.44-0.815-3.825-0.815-3.778 0-7.035 2.232-8.524 5.45l-0.024 0.058z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-16"]},"attrs":[{}],"properties":{"order":6407,"id":557,"name":"abstract-16","prevSize":32,"code":59663},"setIdx":0,"setId":0,"iconIdx":15},{"icon":{"paths":["M222.293 850.347h-66.987c-0.006 0-0.013 0-0.021 0-19.129 0-36.386-8.018-48.592-20.877l-0.028-0.029c-11.404-11.614-18.443-27.548-18.443-45.125 0-1.236 0.035-2.465 0.104-3.684l-0.008 0.169c20.183-374.048 318.432-672.297 690.63-692.4l1.85-0.080c0.764-0.031 1.66-0.049 2.56-0.049 36.996 0 66.987 29.991 66.987 66.987 0 0.017-0 0.034-0 0.052l0-0.003v66.987c0.001 0.166 0.002 0.362 0.002 0.558 0 36.909-28.752 67.103-65.081 69.406l-0.202 0.010c-264.721 17.749-475.051 228.079-492.714 491.192l-0.086 1.608c-2.533 36.572-32.822 65.28-69.816 65.28-0.055 0-0.111-0-0.166-0l0.009 0zM786.347 155.307c-172.332 5.728-326.772 77.881-439.421 191.527l-0.046 0.047c-113.067 112.632-185.754 265.729-194.494 435.725l-0.066 1.608 69.973 2.133c0.018 0 0.040 0 0.061 0 2.998 0 5.48-2.209 5.908-5.088l0.004-0.033c9.32-149.252 72.746-282.115 170.694-380.614l-0.027 0.027c98.472-97.921 231.335-161.347 378.891-170.582l1.695-0.085c2.882-0.22 5.138-2.612 5.138-5.532 0-0.155-0.006-0.309-0.019-0.462l0.001 0.020zM729.6 935.68h-68.267c-20.053-0.124-38.012-8.985-50.281-22.964l-0.066-0.076c-9.121-11.243-14.644-25.728-14.644-41.503 0-4.030 0.36-7.975 1.051-11.806l-0.060 0.402c8.951-69.487 39.843-130.496 85.392-177.127l-0.058 0.060c46.57-45.491 107.58-76.383 175.521-85.17l1.545-0.163c2.907-0.462 6.26-0.726 9.674-0.726 16.638 0 31.813 6.265 43.294 16.566l-0.061-0.054c14.055 12.334 22.916 30.293 23.040 50.325l0 0.022v68.267c-0.27 33.835-24.082 62.032-55.848 69.033l-0.472 0.087c-40.295 9.188-71.452 40.345-80.503 79.927l-0.137 0.713c-7.922 31.334-35.852 54.158-69.117 54.187l-0.003 0zM729.6 728.747c-37.013 36.525-62.421 84.728-70.243 138.629l-0.157 1.318 71.253 2.987c3.84 0 5.973-4.267 6.827-6.827 7.57-32.593 23.603-60.69 45.655-82.775l-0.002 0.002c21.997-22.185 50.133-38.251 81.648-45.438l1.125-0.216c2.987 0 6.827-3.413 6.827-6.827v-68.267c-56.696 4.57-106.829 29.494-143.74 67.365l-0.047 0.048zM476.16 893.013h-68.267c-0.053 0-0.117 0-0.18 0-19.161 0-36.406-8.202-48.417-21.286l-0.043-0.048c-11.217-12.127-18.096-28.408-18.096-46.296 0-1.726 0.064-3.437 0.19-5.13l-0.013 0.226c20.435-255.985 223.161-458.711 477.316-479.029l1.83-0.118c1.421-0.105 3.079-0.164 4.751-0.164 17.935 0 34.264 6.873 46.498 18.129l-0.049-0.044c13.132 12.054 21.334 29.299 21.334 48.46 0 0.063-0 0.126-0 0.19l0-0.010v67.413c0.002 0.215 0.004 0.469 0.004 0.723 0 35.922-27.402 65.443-62.444 68.802l-0.28 0.022c-76.265 7.431-143.518 41.089-193.684 91.71l-0.023 0.023c-50.644 50.189-84.302 117.442-91.631 192.415l-0.102 1.292c-3.38 35.321-32.902 62.724-68.823 62.724-0.254 0-0.508-0.001-0.762-0.004l0.039 0zM825.173 405.333c-224.37 17.75-402.090 195.47-419.739 418.25l-0.101 1.59 2.56 3.84h67.413c0.041 0.001 0.090 0.002 0.138 0.002 2.846 0 5.227-1.99 5.827-4.655l0.008-0.040c8.778-91.711 49.194-172.618 110.052-232.933l0.028-0.027c60.285-60.975 141.224-101.417 231.452-109.965l1.508-0.115c2.56 0 4.693-2.987 4.693-5.973v-67.413zM613.973 613.973v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-17"]},"attrs":[{}],"properties":{"order":6408,"id":556,"name":"abstract-17","prevSize":32,"code":59664},"setIdx":0,"setId":0,"iconIdx":16},{"icon":{"paths":["M768 970.667h-512c-40.026-0.656-72.22-33.257-72.22-73.377 0-16.57 5.492-31.858 14.755-44.142l-0.135 0.186 221.013-275.627c21.92-27.21 55.237-44.473 92.587-44.473s70.667 17.263 92.409 44.245l0.178 0.228 221.013 275.627c9.128 12.098 14.62 27.385 14.62 43.956 0 40.12-32.195 72.721-72.159 73.377l-0.062 0.001zM512 597.333c-17.197 0.055-32.53 7.988-42.586 20.378l-0.080 0.102-221.013 274.347c-0.791 1.346-1.258 2.965-1.258 4.693s0.467 3.347 1.282 4.738l-0.024-0.044c1.35 3.042 4.343 5.125 7.823 5.125 0.1 0 0.199-0.002 0.298-0.005l-0.014 0h511.573c0.085 0.003 0.184 0.005 0.284 0.005 3.48 0 6.473-2.083 7.801-5.070l0.022-0.054c0.833-1.335 1.328-2.957 1.328-4.693s-0.494-3.358-1.35-4.731l0.022 0.038-221.44-275.627c-10.154-11.789-25.1-19.207-41.778-19.207-0.312 0-0.624 0.003-0.935 0.008l0.047-0.001zM512 493.227c-0.495 0.007-1.080 0.012-1.666 0.012-36.474 0-69.088-16.522-90.768-42.49l-0.153-0.188-221.013-279.893c-9.128-12.098-14.62-27.385-14.62-43.956 0-40.12 32.195-72.721 72.159-73.377l0.062-0.001h512c40.026 0.656 72.22 33.257 72.22 73.377 0 16.57-5.492 31.858-14.755 44.142l0.135-0.186-221.013 275.627c-21.682 27.708-55.042 45.415-92.548 45.653l-0.039 0zM256 117.333c-0.085-0.003-0.184-0.005-0.284-0.005-3.48 0-6.473 2.083-7.801 5.070l-0.022 0.054c-0.833 1.335-1.328 2.957-1.328 4.693s0.494 3.358 1.35 4.731l-0.022-0.038 221.44 275.627c10.387 12.006 25.645 19.557 42.667 19.557s32.279-7.551 42.607-19.486l0.060-0.071 220.587-275.627c0.833-1.335 1.328-2.957 1.328-4.693s-0.494-3.358-1.35-4.731l0.022 0.038c-1.269-2.875-4.001-4.893-7.226-5.118l-0.027-0.002zM800.853 151.893v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-18"]},"attrs":[{}],"properties":{"order":6409,"id":555,"name":"abstract-18","prevSize":32,"code":59665},"setIdx":0,"setId":0,"iconIdx":17},{"icon":{"paths":["M961.707 826.88l-193.707-338.773-197.547-338.773c-11.856-20.362-33.582-33.831-58.453-33.831s-46.597 13.469-58.281 33.51l-0.173 0.321-195.413 338.773-195.84 338.773c-5.678 9.669-9.032 21.296-9.032 33.707 0 37.231 30.182 67.413 67.413 67.413 0.025 0 0.050-0 0.076-0l782.503 0c0.021 0 0.047 0 0.072 0 37.231 0 67.413-30.182 67.413-67.413 0-12.41-3.354-24.038-9.204-34.025l0.172 0.318zM515.84 182.187l166.827 289.707h-341.333l167.253-289.707c0.765-1.22 2.103-2.019 3.627-2.019s2.862 0.799 3.616 2.001l0.010 0.018zM682.667 535.893l-170.667 296.107-170.667-296.107zM120.747 864l-2.987-5.12 168.107-290.987 170.667 296.107zM903.253 864h-335.787l170.667-296.107 168.107 290.987z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-19"]},"attrs":[{}],"properties":{"order":6410,"id":554,"name":"abstract-19","prevSize":32,"code":59666},"setIdx":0,"setId":0,"iconIdx":18},{"icon":{"paths":["M968.96 476.16c-19.565-237.124-216.552-422.237-456.901-422.827l-0.059-0c-608.427 25.173-608.427 892.16 0 917.333 240.409-0.59 437.396-185.704 456.85-421.17l0.11-1.657c1.087-10.744 1.707-23.22 1.707-35.84s-0.62-25.096-1.831-37.397l0.124 1.557zM512 906.667c-217.87-0.243-394.424-176.796-394.667-394.643l-0-0.024c-5.973-298.667 343.893-497.493 597.333-338.773-28.022-7.961-60.204-12.538-93.455-12.538-194.676 0-352.707 156.895-354.544 351.137l-0.001 0.174c1.903 194.366 159.909 351.195 354.544 351.195 33.096 0 65.133-4.535 95.524-13.016l-2.494 0.594c-57.706 35.11-127.484 55.893-202.117 55.893-0.043 0-0.086-0-0.13-0l0.007 0zM512 330.667c100.148 0 181.333 81.186 181.333 181.333s-81.186 181.333-181.333 181.333v0c-100.148 0-181.333-81.186-181.333-181.333s81.186-181.333 181.333-181.333v0zM459.093 751.787c15.883 3.661 34.121 5.76 52.849 5.76 135.494 0 245.333-109.839 245.333-245.333s-109.839-245.333-245.333-245.333c-18.728 0-36.967 2.099-54.492 6.073l1.643-0.313c44.729-30.073 99.806-48 159.069-48 158.822 0 287.573 128.751 287.573 287.573s-128.751 287.573-287.573 287.573c-59.264 0-114.34-17.927-160.103-48.654l1.034 0.654z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-20"]},"attrs":[{}],"properties":{"order":6411,"id":553,"name":"abstract-20","prevSize":32,"code":59667},"setIdx":0,"setId":0,"iconIdx":19},{"icon":{"paths":["M989.44 426.667c0.042-2.058 0.065-4.484 0.065-6.915 0-198.882-158.965-360.635-356.767-365.131l-0.418-0.008c-130.73 1.063-244.528 72.543-305.432 178.33l-0.915 1.724c-71.755 15.958-133.689 50.965-182.189 99.416l0.003-0.003c-67.427 67.427-109.131 160.577-109.131 263.467 0 205.78 166.818 372.598 372.598 372.598 102.89 0 196.040-41.704 263.467-109.131h0c22.799-22.675 42.605-48.323 58.796-76.323l0.937-1.757c151.393-48.8 258.999-188.439 258.999-353.212 0-1.074-0.005-2.147-0.014-3.22l0.001 0.164zM632.32 734.293c-163.012-4.012-293.626-137.11-293.626-300.714 0-2.43 0.029-4.854 0.086-7.271l-0.007 0.359c0-5.973 0-11.52 0-17.067 0.029-0.51 0.045-1.106 0.045-1.707 0-17.698-14.347-32.045-32.045-32.045-17.098 0-31.068 13.39-31.996 30.256l-0.004 0.082c0 6.827 0 13.653 0 20.48-0.037 1.928-0.057 4.201-0.057 6.48 0 199.029 159.201 360.875 357.207 365.14l0.397 0.007h7.68c-5.342 6.903-10.65 13.022-16.272 18.835l0.059-0.061c-55.638 54.753-132.031 88.558-216.32 88.558-170.369 0-308.48-138.111-308.48-308.48s138.111-308.48 308.48-308.48c170.369 0 308.48 138.111 308.48 308.48 0 0.066-0 0.133-0 0.199l0-0.010c0 17.673 14.327 32 32 32s32-14.327 32-32v0c0-0.002 0-0.004 0-0.006 0-204.729-165.36-370.837-369.805-372.047l-0.115-0.001c52.927-65.073 132.669-106.572 222.134-107.519l0.159-0.001c162.883 4.467 293.221 137.573 293.221 301.12 0 2.738-0.037 5.467-0.109 8.188l0.008-0.401c0.039 1.807 0.061 3.936 0.061 6.070 0 163.448-130.364 296.448-292.788 300.695l-0.393 0.008z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-21"]},"attrs":[{}],"properties":{"order":6412,"id":552,"name":"abstract-21","prevSize":32,"code":59668},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M844.373 431.787c-12.762-22.324-36.429-37.125-63.553-37.125-0.307 0-0.614 0.002-0.92 0.006l0.046-0h-235.947v-240.64c-0.159-40.175-32.763-72.681-72.959-72.681-26.836 0-50.289 14.489-62.961 36.071l-0.186 0.343-228.693 400.213c-6.063 10.555-9.638 23.207-9.638 36.694 0 41.176 33.33 74.567 74.482 74.666l0.010 0h235.947v240.64c0.544 32.985 23.155 60.541 53.684 68.581l0.502 0.112c5.755 1.614 12.366 2.548 19.193 2.56l0.007 0c26.773-0.035 50.123-14.655 62.534-36.34l0.186-0.353 228.693-400.213c5.898-10.332 9.376-22.706 9.376-35.891 0-13.489-3.639-26.128-9.99-36.989l0.188 0.347zM244.053 565.333c-0.012 0-0.025 0-0.039 0-3.909 0-7.346-2.022-9.322-5.077l-0.026-0.043c-0.825-1.547-1.309-3.384-1.309-5.333s0.484-3.786 1.339-5.396l-0.030 0.062 228.693-399.787c1.152-2.386 3.315-4.128 5.917-4.683l0.056-0.010h2.56c3.901 0.632 6.844 3.976 6.844 8.008 0 0.185-0.006 0.368-0.018 0.55l0.001-0.025v411.307zM789.333 474.453l-228.693 399.787c-1.594 2.627-4.438 4.356-7.686 4.356-4.83 0-8.767-3.821-8.953-8.605l-0.001-0.017v-411.307h235.947c0.012-0 0.025-0 0.039-0 3.909 0 7.346 2.022 9.322 5.077l0.026 0.043c0.825 1.547 1.309 3.384 1.309 5.333s-0.484 3.786-1.339 5.396l0.030-0.062z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-22"]},"attrs":[{}],"properties":{"order":6413,"id":551,"name":"abstract-22","prevSize":32,"code":59669},"setIdx":0,"setId":0,"iconIdx":21},{"icon":{"paths":["M966.827 402.347c-10.268-31.683-39.518-54.189-74.024-54.189-0.226 0-0.452 0.001-0.678 0.003l0.035-0h-233.387l-72.107-220.16c-10.543-31.756-39.978-54.254-74.667-54.254s-64.123 22.499-74.507 53.7l-0.16 0.554-72.107 220.16h-233.387c-0.133-0.001-0.289-0.001-0.446-0.001-43.358 0-78.507 35.149-78.507 78.507 0 26.052 12.689 49.139 32.224 63.42l0.222 0.155 189.013 136.96-72.107 221.867c-3.052 8.052-4.819 17.361-4.819 27.083 0 43.358 35.149 78.507 78.507 78.507 17.931 0 34.457-6.011 47.675-16.128l-0.188 0.138 188.587-139.093 188.587 139.093c12.876 9.608 29.102 15.383 46.677 15.383 43.358 0 78.507-35.149 78.507-78.507 0-8.86-1.468-17.378-4.174-25.323l0.164 0.553-72.107-221.867 189.013-138.667c19.637-14.271 32.257-37.163 32.257-63.002 0-8.909-1.5-17.467-4.262-25.437l0.164 0.545zM497.493 146.347v0c1.591-6.162 7.099-10.64 13.653-10.64s12.063 4.479 13.632 10.542l0.021 0.098 65.707 202.24h-157.867zM412.16 412.587h200.533l61.867 190.72-162.56 117.333-162.133-117.76zM123.733 438.613c-3.476-2.678-5.694-6.841-5.694-11.523 0-7.913 6.336-14.347 14.212-14.504l0.015-0h213.333l-50.347 150.613zM285.867 884.907v0c-2.351 1.972-5.409 3.17-8.747 3.17s-6.396-1.198-8.768-3.187l0.021 0.017c-3.656-2.488-6.026-6.629-6.026-11.324 0-1.758 0.332-3.439 0.938-4.982l-0.032 0.093 65.707-201.813 128 93.44zM760.747 868.693c0.511 1.42 0.806 3.059 0.806 4.767 0 8.012-6.495 14.507-14.507 14.507-3.374 0-6.48-1.152-8.944-3.084l0.032 0.024-170.667-124.587 128-93.44zM900.693 438.187l-170.667 125.013-50.347-151.040h213.333c7.891 0.157 14.227 6.591 14.227 14.504 0 4.682-2.218 8.845-5.66 11.498l-0.034 0.025z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-23"]},"attrs":[{}],"properties":{"order":6414,"id":550,"name":"abstract-23","prevSize":32,"code":59670},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M737.707 378.453c9.435-5.806 15.662-16.029 15.787-27.715l0-0.018v-174.080c0-0.011 0-0.024 0-0.037 0-39.352-31.901-71.253-71.253-71.253-13.031 0-25.245 3.498-35.754 9.606l0.34-0.183-134.827 77.653-134.827-77.653c-10.169-5.925-22.382-9.423-35.413-9.423-39.352 0-71.253 31.901-71.253 71.253 0 0.013 0 0.026 0 0.039l-0-0.002v174.080c0.125 11.704 6.352 21.927 15.645 27.652l0.142 0.081 209.493 120.747c4.582 2.683 10.089 4.268 15.966 4.268 0.087 0 0.174-0 0.261-0.001l-0.013 0c0.153 0.003 0.334 0.004 0.514 0.004 5.645 0 10.92-1.589 15.4-4.344l-0.128 0.073zM678.827 170.667c1.040-0.611 2.291-0.972 3.627-0.972s2.586 0.361 3.661 0.99l-0.034-0.019c2.068 1.089 3.454 3.223 3.454 5.682 0 0.253-0.015 0.503-0.043 0.748l0.003-0.030v154.88l-145.493 85.333v-169.387zM334.507 177.067c-0.026-0.216-0.040-0.465-0.040-0.718 0-2.458 1.386-4.593 3.419-5.665l0.035-0.017c1.040-0.611 2.291-0.972 3.627-0.972s2.586 0.361 3.661 0.99l-0.034-0.019 134.827 77.653v170.667l-145.493-85.333zM934.827 490.667l-150.613-85.333c-4.557-2.823-10.083-4.496-16-4.496s-11.443 1.673-16.132 4.572l0.132-0.076-209.493 119.467c-9.735 5.394-16.216 15.608-16.216 27.335 0 0.14 0.001 0.28 0.003 0.42l-0-0.021v241.92c-0.002 0.119-0.003 0.258-0.003 0.399 0 11.727 6.481 21.94 16.057 27.254l0.159 0.081 150.613 85.333c10.177 6.168 22.476 9.818 35.627 9.818s25.45-3.65 35.938-9.993l-0.311 0.175c21.559-12.416 35.841-35.332 35.841-61.582 0-0.1-0-0.2-0.001-0.3l0 0.015v-153.6l134.4-78.080c21.63-12.399 35.966-35.352 35.966-61.653s-14.336-49.254-35.621-61.471l-0.345-0.183zM732.587 853.333c-1.040 0.611-2.291 0.972-3.627 0.972s-2.586-0.361-3.661-0.99l0.034 0.019-134.827-77.653v-170.667l145.92 85.333v155.307c0.066 0.368 0.104 0.793 0.104 1.225 0 2.798-1.584 5.226-3.904 6.435l-0.040 0.019zM903.253 558.080l-135.253 78.507-145.92-85.333 145.92-81.92 134.4 78.080c2.302 1.246 3.84 3.644 3.84 6.4h-0c-0.401 2.035-1.661 3.716-3.379 4.676l-0.035 0.018zM481.707 524.373l-209.92-120.747c-4.557-2.823-10.083-4.496-16-4.496s-11.443 1.673-16.132 4.572l0.132-0.076-151.040 85.333c-21.396 12.561-35.534 35.456-35.534 61.653s14.137 49.092 35.199 61.472l0.334 0.182 134.827 78.080v155.307c-0 0.084-0.001 0.184-0.001 0.284 0 26.251 14.281 49.166 35.498 61.4l0.343 0.182c10.177 6.168 22.476 9.818 35.627 9.818s25.45-3.65 35.938-9.993l-0.311 0.175 150.613-85.333c9.735-5.394 16.216-15.608 16.216-27.335 0-0.14-0.001-0.28-0.003-0.42l0 0.021v-239.787c0.063-0.743 0.099-1.607 0.099-2.48 0-11.766-6.524-22.007-16.151-27.306l-0.161-0.081zM117.333 554.667c-0.011-0.143-0.017-0.31-0.017-0.478 0-2.52 1.366-4.722 3.398-5.904l0.033-0.017 135.253-78.933 145.92 85.333-145.92 81.92-135.253-78.080c-1.618-0.757-2.845-2.123-3.4-3.795l-0.013-0.045zM298.667 853.333c-1.040 0.611-2.291 0.972-3.627 0.972s-2.586-0.361-3.661-0.99l0.034 0.019c-2.302-1.246-3.84-3.644-3.84-6.4v0-154.88l145.92-85.333v170.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-24"]},"attrs":[{}],"properties":{"order":6415,"id":549,"name":"abstract-24","prevSize":32,"code":59671},"setIdx":0,"setId":0,"iconIdx":23},{"icon":{"paths":["M298.667 896c-21.535-0.084-41.685-5.935-59.009-16.087l0.555 0.301-128-73.813c-35.035-20.886-58.199-58.483-58.453-101.51l-0-0.037v-150.187c0.163-43.088 23.359-80.721 57.908-101.247l0.545-0.3 90.453-50.773c4.371-2.387 9.575-3.791 15.107-3.791 11.675 0 21.89 6.252 27.479 15.591l0.081 0.146c2.542 4.448 4.041 9.777 4.041 15.455 0 11.533-6.184 21.622-15.417 27.132l-0.144 0.080-90.027 55.040c-14.967 8.884-25.154 24.458-26.443 42.494l-0.010 0.172v148.053c0.086 19.532 10.575 36.596 26.208 45.944l0.245 0.136 128 73.813c7.669 4.413 16.864 7.016 26.667 7.016s18.997-2.603 26.931-7.156l-0.264 0.14 96-54.613c4.59-2.694 10.109-4.284 16-4.284 17.683 0 32.018 14.335 32.018 32.018 0 11.792-6.375 22.096-15.867 27.652l-0.151 0.082-96 55.467c-16.674 10.28-36.78 16.563-58.316 17.064l-0.138 0.003zM844.8 899.413v0c-9.771 5.832-21.549 9.28-34.133 9.28s-24.363-3.448-34.443-9.451l0.31 0.171c-20.481-11.983-34.042-33.838-34.133-58.867l-0-0.013c0.091-25.042 13.652-46.897 33.811-58.706l0.322-0.174c9.771-5.832 21.549-9.28 34.133-9.28s24.363 3.448 34.443 9.451l-0.31-0.171c20.481 11.983 34.042 33.838 34.133 58.867l0 0.013c-0.252 24.878-13.772 46.541-33.811 58.279l-0.322 0.174zM698.453 778.667l213.333-123.307c35.085-20.525 58.394-57.833 58.879-100.624l0.001-0.069v-247.467c-0.097-43.33-23.496-81.173-58.326-101.672l-0.554-0.301-213.333-122.88c-16.839-9.843-37.074-15.654-58.667-15.654s-41.828 5.811-59.227 15.955l0.56-0.301-213.333 122.88c-35.154 20.958-58.359 58.745-58.453 101.96l-0 0.014v247.467c0.163 43.088 23.359 80.721 57.908 101.247l0.545 0.3 213.333 123.307c16.333 8.883 35.767 14.105 56.421 14.105 0.865 0 1.727-0.009 2.588-0.027l-0.128 0.002c0.123 0 0.268 0.001 0.413 0.001 21.347 0 41.362-5.701 58.606-15.662l-0.566 0.302zM666.453 138.667l213.333 122.88c16.168 9.46 26.861 26.732 26.88 46.504l0 0.003v246.613c-0.088 19.634-10.771 36.754-26.624 45.943l-0.256 0.137-213.333 123.307c-7.669 4.413-16.864 7.016-26.667 7.016s-18.997-2.603-26.931-7.156l0.264 0.14-213.333-123.307c-15.879-9.484-26.368-26.548-26.453-46.068l-0-0.012v-247.467c0.107-19.65 10.574-36.831 26.213-46.37l0.24-0.136 213.333-122.88c7.722-4.491 16.979-7.173 26.857-7.253l0.023-0c9.759 0.032 18.883 2.723 26.693 7.386l-0.24-0.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-25"]},"attrs":[{}],"properties":{"order":6416,"id":548,"name":"abstract-25","prevSize":32,"code":59672},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M512 970.667c-0.138 0-0.302 0.001-0.466 0.001-19.966 0-39.016-3.918-56.425-11.028l0.997 0.36-350.293-140.373c-30.881-12.621-52.244-42.429-52.244-77.227s21.363-64.606 51.689-77.026l0.555-0.201c3.763-1.681 8.154-2.66 12.774-2.66 13.567 0 25.163 8.443 29.818 20.362l0.075 0.218c1.475 3.522 2.331 7.614 2.331 11.907 0 14.316-9.528 26.406-22.588 30.276l-0.223 0.057c-7.068 2.939-11.947 9.789-11.947 17.777 0 0.050 0 0.1 0.001 0.15l-0-0.008c-0.003 0.128-0.005 0.279-0.005 0.43 0 7.914 4.896 14.683 11.825 17.445l0.127 0.045 350.72 139.947c9.468 3.939 20.467 6.227 32 6.227s22.532-2.288 32.567-6.435l-0.567 0.207 353.28-140.8c7.055-2.807 11.952-9.577 11.952-17.49 0-0.151-0.002-0.302-0.005-0.452l0 0.022c-0.296-7.706-5.091-14.222-11.82-17.020l-0.127-0.047c-12.198-4.555-20.727-16.107-20.727-29.652 0-4.717 1.034-9.192 2.888-13.211l-0.081 0.196c4.73-12.137 16.325-20.58 29.893-20.58 4.62 0 9.011 0.979 12.978 2.741l-0.204-0.081c30.881 12.621 52.244 42.429 52.244 77.227s-21.363 64.606-51.689 77.026l-0.555 0.201-352.853 140.8c-16.411 6.749-35.462 10.667-55.427 10.667-0.164 0-0.328-0-0.491-0.001l0.025 0zM512 740.267c-20.174-0.105-39.369-4.172-56.887-11.46l0.994 0.367-350.293-139.947c-30.881-12.621-52.244-42.429-52.244-77.227s21.363-64.606 51.689-77.026l0.555-0.201 42.667-16.64c3.801-1.72 8.241-2.722 12.916-2.722 13.43 0 24.927 8.273 29.674 20.001l0.077 0.215c1.594 3.702 2.521 8.011 2.521 12.536 0 13.592-8.363 25.231-20.224 30.052l-0.217 0.078-42.667 16.64c-7.055 2.807-11.952 9.577-11.952 17.49 0 0.151 0.002 0.302 0.005 0.452l-0-0.022c-0 0.042-0.001 0.092-0.001 0.143 0 7.989 4.879 14.838 11.82 17.731l0.127 0.047 350.72 139.947c9.468 3.939 20.467 6.227 32 6.227s22.532-2.288 32.567-6.435l-0.567 0.207 350.72-140.8c7.068-2.939 11.947-9.789 11.947-17.777 0-0.050-0-0.1-0.001-0.15l0 0.008c0.003-0.128 0.005-0.279 0.005-0.43 0-7.914-4.896-14.683-11.825-17.445l-0.127-0.045-42.667-16.64c-12.020-4.816-20.355-16.368-20.355-29.867 0-17.722 14.367-32.089 32.089-32.089 4.223 0 8.256 0.816 11.949 2.299l-0.216-0.077 42.667 17.067c30.881 12.621 52.244 42.429 52.244 77.227s-21.363 64.606-51.689 77.026l-0.555 0.201-350.293 139.947c-16.756 7.018-36.227 11.094-56.651 11.094-0.184 0-0.367-0-0.551-0.001l0.028 0zM512 512c-20.174-0.105-39.369-4.172-56.887-11.46l0.994 0.367-350.293-142.080c-30.881-12.621-52.244-42.429-52.244-77.227s21.363-64.606 51.689-77.026l0.555-0.201 350.293-140.373c16.552-6.784 35.763-10.722 55.893-10.722s39.341 3.938 56.904 11.086l-1.010-0.364 350.293 140.373c30.881 12.621 52.244 42.429 52.244 77.227s-21.363 64.606-51.689 77.026l-0.555 0.201-350.293 139.947c-16.384 7.6-35.479 12.387-55.594 13.217l-0.299 0.010zM480 441.6c9.468 3.939 20.467 6.227 32 6.227s22.532-2.288 32.567-6.435l-0.567 0.207 352-142.933c7.068-2.939 11.947-9.789 11.947-17.777 0-0.050-0-0.1-0.001-0.15l0 0.008c-0.18-7.743-5.022-14.312-11.82-17.022l-0.127-0.045-352-140.373c-9.468-3.939-20.467-6.227-32-6.227s-22.532 2.288-32.567 6.435l0.567-0.207-352 140.373c-7.055 2.807-11.952 9.577-11.952 17.49 0 0.151 0.002 0.302 0.005 0.452l-0-0.022c0.296 7.706 5.091 14.222 11.82 17.020l0.127 0.047z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-26"]},"attrs":[{}],"properties":{"order":6417,"id":547,"name":"abstract-26","prevSize":32,"code":59673},"setIdx":0,"setId":0,"iconIdx":25},{"icon":{"paths":["M930.987 459.093l-366.080-366.080c-13.475-13.682-32.201-22.159-52.907-22.159s-39.432 8.477-52.897 22.149l-0.009 0.009-366.080 366.080c-13.475 13.57-21.803 32.266-21.803 52.907s8.328 39.337 21.807 52.911l-0.004-0.004 366.080 366.080c13.495 13.654 32.206 22.128 52.895 22.187l0.011 0c20.701-0.059 39.411-8.533 52.9-22.179l0.007-0.007 366.080-366.080c13.682-13.475 22.159-32.201 22.159-52.907s-8.477-39.432-22.149-52.897l-0.009-0.009zM504.32 138.24c1.943-2.014 4.665-3.264 7.68-3.264s5.737 1.251 7.677 3.261l0.003 0.003 117.76 117.76-210.773 210.773-125.44-125.44zM512 552.107l-40.107-40.107 40.107-40.107 40.107 40.107zM138.24 504.32l117.76-117.76 210.773 210.773-125.44 125.44-203.093-203.093c-2.014-1.943-3.264-4.665-3.264-7.68s1.251-5.737 3.261-7.677l0.003-0.003zM519.68 885.76c-1.595 2.621-4.436 4.345-7.68 4.345s-6.085-1.724-7.658-4.305l-0.022-0.040-117.76-117.76 210.773-210.773 125.44 125.44zM885.76 519.68l-117.76 117.76-210.773-210.773 125.44-125.44 203.093 203.093c2.014 1.943 3.264 4.665 3.264 7.68s-1.251 5.737-3.261 7.677l-0.003 0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-27"]},"attrs":[{}],"properties":{"order":6418,"id":546,"name":"abstract-27","prevSize":32,"code":59674},"setIdx":0,"setId":0,"iconIdx":26},{"icon":{"paths":["M277.333 501.333c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224v0c-0.242 123.614-100.386 223.758-223.977 224l-0.023 0zM277.333 117.333c-88.366 0-160 71.634-160 160s71.634 160 160 160c88.366 0 160-71.634 160-160v0c0-88.366-71.634-160-160-160v0zM746.667 970.667c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224v0c-0.242 123.614-100.386 223.758-223.977 224l-0.023 0zM746.667 586.667c-88.366 0-160 71.634-160 160s71.634 160 160 160c88.366 0 160-71.634 160-160v0c0-88.366-71.634-160-160-160v0zM277.333 970.667c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224v0c-0.242 123.614-100.386 223.758-223.977 224l-0.023 0zM277.333 586.667c-88.366 0-160 71.634-160 160s71.634 160 160 160c88.366 0 160-71.634 160-160v0c0-88.366-71.634-160-160-160v0zM746.667 501.333c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224v0c-0.242 123.614-100.386 223.758-223.977 224l-0.023 0zM746.667 117.333c-88.366 0-160 71.634-160 160s71.634 160 160 160c88.366 0 160-71.634 160-160v0c0-88.366-71.634-160-160-160v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-28"]},"attrs":[{}],"properties":{"order":6419,"id":545,"name":"abstract-28","prevSize":32,"code":59675},"setIdx":0,"setId":0,"iconIdx":27},{"icon":{"paths":["M213.333 352c-76.583 0-138.667-62.083-138.667-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667v0c-0.242 76.486-62.181 138.425-138.643 138.667l-0.023 0zM213.333 138.667c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667c41.237 0 74.667-33.429 74.667-74.667v0c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0zM810.667 949.333c-76.583 0-138.667-62.083-138.667-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667v0c-0.242 76.486-62.181 138.425-138.643 138.667l-0.023 0zM810.667 736c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667c41.237 0 74.667-33.429 74.667-74.667v0c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0zM512 949.333c-76.583 0-138.667-62.083-138.667-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667v0c-0.242 76.486-62.181 138.425-138.643 138.667l-0.023 0zM512 736c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667c41.237 0 74.667-33.429 74.667-74.667v0c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0zM213.333 949.333c-76.583 0-138.667-62.083-138.667-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667v0c-0.242 76.486-62.181 138.425-138.643 138.667l-0.023 0zM213.333 736c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667c41.237 0 74.667-33.429 74.667-74.667v0c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0zM810.667 650.667c-76.583 0-138.667-62.083-138.667-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667v0c-0.242 76.486-62.181 138.425-138.643 138.667l-0.023 0zM810.667 437.333c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667c41.237 0 74.667-33.429 74.667-74.667v0c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0zM512 650.667c-76.583 0-138.667-62.083-138.667-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667v0c-0.242 76.486-62.181 138.425-138.643 138.667l-0.023 0zM512 437.333c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667c41.237 0 74.667-33.429 74.667-74.667v0c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0zM213.333 650.667c-76.583 0-138.667-62.083-138.667-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667v0c-0.242 76.486-62.181 138.425-138.643 138.667l-0.023 0zM213.333 437.333c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667c41.237 0 74.667-33.429 74.667-74.667v0c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0zM810.667 352c-76.583 0-138.667-62.083-138.667-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667v0c-0.242 76.486-62.181 138.425-138.643 138.667l-0.023 0zM810.667 138.667c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667c41.237 0 74.667-33.429 74.667-74.667v0c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0zM512 352c-76.583 0-138.667-62.083-138.667-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667v0c-0.242 76.486-62.181 138.425-138.643 138.667l-0.023 0zM512 138.667c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667c41.237 0 74.667-33.429 74.667-74.667v0c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-29"]},"attrs":[{}],"properties":{"order":6420,"id":544,"name":"abstract-29","prevSize":32,"code":59676},"setIdx":0,"setId":0,"iconIdx":28},{"icon":{"paths":["M170.667 288c-64.801 0-117.333-52.532-117.333-117.333s52.532-117.333 117.333-117.333c64.801 0 117.333 52.532 117.333 117.333v0c0 64.801-52.532 117.333-117.333 117.333v0zM170.667 117.333c-29.455 0-53.333 23.878-53.333 53.333s23.878 53.333 53.333 53.333c29.455 0 53.333-23.878 53.333-53.333v0c0-29.455-23.878-53.333-53.333-53.333v0zM853.333 970.667c-64.801 0-117.333-52.532-117.333-117.333s52.532-117.333 117.333-117.333c64.801 0 117.333 52.532 117.333 117.333v0c0 64.801-52.532 117.333-117.333 117.333v0zM853.333 800c-29.455 0-53.333 23.878-53.333 53.333s23.878 53.333 53.333 53.333c29.455 0 53.333-23.878 53.333-53.333v0c0-29.455-23.878-53.333-53.333-53.333v0zM512 970.667c-64.801 0-117.333-52.532-117.333-117.333s52.532-117.333 117.333-117.333c64.801 0 117.333 52.532 117.333 117.333v0c0 64.801-52.532 117.333-117.333 117.333v0zM512 800c-29.455 0-53.333 23.878-53.333 53.333s23.878 53.333 53.333 53.333c29.455 0 53.333-23.878 53.333-53.333v0c0-29.455-23.878-53.333-53.333-53.333v0zM170.667 970.667c-64.801 0-117.333-52.532-117.333-117.333s52.532-117.333 117.333-117.333c64.801 0 117.333 52.532 117.333 117.333v0c0 64.801-52.532 117.333-117.333 117.333v0zM170.667 800c-29.455 0-53.333 23.878-53.333 53.333s23.878 53.333 53.333 53.333c29.455 0 53.333-23.878 53.333-53.333v0c0-29.455-23.878-53.333-53.333-53.333v0zM853.333 629.333c-64.801 0-117.333-52.532-117.333-117.333s52.532-117.333 117.333-117.333c64.801 0 117.333 52.532 117.333 117.333v0c0 64.801-52.532 117.333-117.333 117.333v0zM853.333 458.667c-29.455 0-53.333 23.878-53.333 53.333s23.878 53.333 53.333 53.333c29.455 0 53.333-23.878 53.333-53.333v0c0-29.455-23.878-53.333-53.333-53.333v0zM512 629.333c-64.801 0-117.333-52.532-117.333-117.333s52.532-117.333 117.333-117.333c64.801 0 117.333 52.532 117.333 117.333v0c0 64.801-52.532 117.333-117.333 117.333v0zM512 458.667c-29.455 0-53.333 23.878-53.333 53.333s23.878 53.333 53.333 53.333c29.455 0 53.333-23.878 53.333-53.333v0c0-29.455-23.878-53.333-53.333-53.333v0zM170.667 629.333c-64.801 0-117.333-52.532-117.333-117.333s52.532-117.333 117.333-117.333c64.801 0 117.333 52.532 117.333 117.333v0c0 64.801-52.532 117.333-117.333 117.333v0zM170.667 458.667c-29.455 0-53.333 23.878-53.333 53.333s23.878 53.333 53.333 53.333c29.455 0 53.333-23.878 53.333-53.333v0c0-29.455-23.878-53.333-53.333-53.333v0zM853.333 288c-64.801 0-117.333-52.532-117.333-117.333s52.532-117.333 117.333-117.333c64.801 0 117.333 52.532 117.333 117.333v0c0 64.801-52.532 117.333-117.333 117.333v0zM853.333 117.333c-29.455 0-53.333 23.878-53.333 53.333s23.878 53.333 53.333 53.333c29.455 0 53.333-23.878 53.333-53.333v0c0-29.455-23.878-53.333-53.333-53.333v0zM512 288c-64.801 0-117.333-52.532-117.333-117.333s52.532-117.333 117.333-117.333c64.801 0 117.333 52.532 117.333 117.333v0c0 64.801-52.532 117.333-117.333 117.333v0zM512 117.333c-29.455 0-53.333 23.878-53.333 53.333s23.878 53.333 53.333 53.333c29.455 0 53.333-23.878 53.333-53.333v0c0-29.455-23.878-53.333-53.333-53.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-30"]},"attrs":[{}],"properties":{"order":6421,"id":543,"name":"abstract-30","prevSize":32,"code":59677},"setIdx":0,"setId":0,"iconIdx":29},{"icon":{"paths":["M955.307 629.76c9.452-34.772 14.882-74.696 14.882-115.888 0-253.315-205.352-458.667-458.667-458.667s-458.667 205.352-458.667 458.667c0 93.621 28.049 180.69 76.203 253.263l-1.058-1.696c5.999 8.535 15.792 14.052 26.876 14.080l0.004 0c0.153 0.003 0.334 0.004 0.514 0.004 5.645 0 10.92-1.589 15.4-4.344l-0.128 0.073 240.64-138.667c9.435-5.806 15.662-16.029 15.787-27.715l0-0.018v-236.8l243.627 139.947-475.733 274.773c-8.285 5.002-14.057 13.449-15.343 23.305l-0.017 0.161c-0.175 1.266-0.275 2.73-0.275 4.216 0 8.823 3.524 16.823 9.241 22.67l-0.006-0.006c82.999 83.374 197.862 134.967 324.774 134.967 211.722 0 389.907-143.587 442.49-338.694l0.736-3.206zM512 117.333c0.252-0.001 0.55-0.001 0.849-0.001 217.497 0 393.813 176.316 393.813 393.813 0 21.387-1.705 42.376-4.986 62.839l0.298-2.251-151.040-87.467-485.547-280.32c66.408-53.946 151.993-86.616 245.209-86.616 0.494 0 0.987 0.001 1.481 0.003l-0.076-0zM364.8 590.080l-197.12 114.347c-31.664-55.418-50.334-121.794-50.334-192.53 0-100.748 37.873-192.65 100.158-262.246l-0.331 0.376 147.627 85.333zM512 906.667c-0.888 0.007-1.937 0.011-2.988 0.011-92.502 0-177.49-32.171-244.385-85.935l0.76 0.59 469.333-270.933 151.467 87.467c-53.891 157.546-200.675 268.801-373.444 268.801-0.261 0-0.522-0-0.783-0.001l0.041 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-31"]},"attrs":[{}],"properties":{"order":6422,"id":542,"name":"abstract-31","prevSize":32,"code":59678},"setIdx":0,"setId":0,"iconIdx":30},{"icon":{"paths":["M938.667 344.747v0c-23.973-61.304-58.736-113.609-102.378-156.991l-0.022-0.022c-82.803-82.961-197.278-134.284-323.74-134.284-60.401 0-118.068 11.708-170.854 32.978l3.073-1.094c-61.318 23.936-113.629 58.704-156.987 102.374l-0.026 0.026c-82.879 82.918-134.139 197.447-134.139 323.948 0 60.317 11.654 117.912 32.832 170.656l-1.094-3.084c23.936 61.318 58.704 113.629 102.374 156.987l0.026 0.026c82.687 83.043 197.108 134.431 323.531 134.431 60.485 0 118.223-11.763 171.051-33.125l-3.063 1.094c61.153-23.988 113.316-58.748 156.555-102.368l0.032-0.032c82.981-83.063 134.3-197.77 134.3-324.463 0-60.116-11.555-117.534-32.565-170.153l1.091 3.096zM791.040 232.96c32.847 32.585 59.821 71.031 79.232 113.648l0.981 2.405-117.76 117.76-218.88-218.453-118.613-120.32c28.601-7.431 61.436-11.697 95.267-11.697 109.399 0 208.379 44.608 279.744 116.627l0.029 0.029zM315.733 512l196.267-196.267 196.267 196.267-196.267 196.267zM232.96 232.96c32.585-32.847 71.031-59.821 113.648-79.232l2.405-0.981 117.76 117.76-218.88 218.88-119.893 118.613c-7.431-28.601-11.697-61.436-11.697-95.267 0-109.399 44.608-208.379 116.627-279.744l0.029-0.029zM232.96 791.040c-32.847-32.585-59.821-71.031-79.232-113.648l-0.981-2.405 117.76-117.76 337.493 338.773c-28.562 7.402-61.352 11.651-95.134 11.651-109.432 0-208.451-44.587-279.88-116.585l-0.026-0.026zM674.987 871.253l-117.76-117.76 218.88-218.88 119.893-118.613c7.592 28.903 11.952 62.085 11.952 96.285 0 108.891-44.195 207.46-115.626 278.748l-0.006 0.006c-32.877 33.039-71.776 60.049-114.917 79.253l-2.416 0.96z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-32"]},"attrs":[{}],"properties":{"order":6423,"id":541,"name":"abstract-32","prevSize":32,"code":59679},"setIdx":0,"setId":0,"iconIdx":31},{"icon":{"paths":["M909.227 282.453c-80.903-138.443-228.802-229.975-398.080-229.975-253.786 0-459.52 205.734-459.52 459.52s205.734 459.52 459.52 459.52c253.785 0 459.519-205.733 459.52-459.518l0-0c-0.065-84.507-22.867-163.674-62.619-231.732l1.179 2.185zM616.533 693.333h-209.493l-104.533-181.333 104.96-181.333h209.493l104.533 181.333zM117.333 512c-0-0.090-0-0.197-0-0.304 0-52.134 10.186-101.89 28.676-147.384l-0.942 2.622 188.16 326.4h-170.667c-28.011-52.613-44.68-114.966-45.226-181.162l-0.001-0.171zM906.667 512c0 0.090 0 0.197 0 0.304 0 52.134-10.186 101.89-28.676 147.384l0.942-2.622-188.16-326.4h170.667c28.011 52.613 44.68 114.966 45.226 181.162l0.001 0.171zM821.333 266.667h-377.173l85.333-148.907c118.127 5.647 221.991 62.239 290.808 148.125l0.606 0.782zM454.4 121.6l-93.44 161.28-95.147 165.12-86.187-149.333c61.218-93.634 158.74-159.182 272.118-176.782l2.229-0.285zM203.093 757.333h376.747l-85.333 148.907c-118.17-5.47-222.093-62.111-290.804-148.117l-0.61-0.79zM570.027 902.4l188.16-325.547 85.333 148.907c-61.116 93.28-158.284 158.62-271.25 176.35l-2.243 0.29z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-33"]},"attrs":[{}],"properties":{"order":6424,"id":540,"name":"abstract-33","prevSize":32,"code":59680},"setIdx":0,"setId":0,"iconIdx":32},{"icon":{"paths":["M741.547 114.773c-66.024-37.955-145.171-60.343-229.547-60.343s-163.523 22.388-231.825 61.546l2.278-1.204c-137.845 80.938-228.925 228.446-228.925 397.227s91.080 316.289 226.77 396.056l2.154 1.171c65.715 38.637 144.752 61.459 229.12 61.459s163.406-22.821 231.277-62.628l-2.157 1.169c137.845-80.938 228.925-228.446 228.925-397.227s-91.080-316.289-226.77-396.056l-2.154-1.171zM905.387 480h-128l-104.96-181.333 64-111.36c94.511 66.509 158.293 171.208 168.853 291.184l0.107 1.509zM616.96 693.333h-209.92l-104.533-181.333 104.533-181.333h209.92l104.107 181.333zM682.667 155.307l-64 111.36h-211.627l-65.707-111.36c49.97-24.147 108.671-38.259 170.667-38.259s120.697 14.112 173.064 39.298l-2.398-1.039zM289.28 187.307l62.293 111.36-104.107 181.333h-128c10.455-121.357 73.93-226.035 166.867-291.86l1.24-0.834zM118.613 544h128l104.96 181.333-64 111.36c-94.511-66.509-158.293-171.208-168.853-291.184l-0.107-1.509zM341.333 868.693l64-111.36h209.92l67.413 111.36c-49.97 24.147-108.671 38.259-170.667 38.259s-120.697-14.112-173.064-39.298l2.398 1.039zM734.72 836.693l-62.293-111.36 104.107-181.333h128c-10.455 121.357-73.93 226.035-166.867 291.86l-1.24 0.834z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-34"]},"attrs":[{}],"properties":{"order":6425,"id":539,"name":"abstract-34","prevSize":32,"code":59681},"setIdx":0,"setId":0,"iconIdx":33},{"icon":{"paths":["M969.387 544.427c0-10.667 0-21.333 0-32.427-0.52-241.819-187.747-439.744-425.151-457.297l-1.515-0.090c-10.667 0-21.333 0-32.427 0-241.819 0.52-439.744 187.747-457.297 425.151l-0.090 1.515c0 10.667 0 21.333 0 32.427 0.52 241.819 187.747 439.744 425.151 457.297l1.515 0.090h2.987c9.813 0 20.053 0 30.293 0 241.819-0.52 439.744-187.747 457.297-425.151l0.090-1.515zM903.68 462.933l-50.347-49.067c-5.786-5.793-13.78-9.379-22.612-9.387l-0.002-0c-7.893 0.688-14.87 4.146-20.050 9.384l-0.003 0.003-57.173 55.467c-17.382-99.379-93.13-177.136-189.996-197.272l-1.577-0.274-80.213-79.787 72.96-72.107c181.857 20.62 325.231 161.954 348.798 341.036l0.216 2.004zM483.84 690.773v0c-87.208-13.533-153.175-88.081-153.175-178.036 0-0.259 0.001-0.518 0.002-0.777l-0 0.040c-0.003-0.334-0.004-0.73-0.004-1.125 0-9.562 0.933-18.906 2.714-27.946l-0.15 0.912c13.533-87.208 88.081-153.175 178.036-153.175 0.259 0 0.518 0.001 0.777 0.002l-0.040-0c0.415-0.004 0.906-0.007 1.397-0.007 9.467 0 18.716 0.934 27.66 2.716l-0.897-0.149c87.208 13.533 153.175 88.081 153.175 178.036 0 0.259-0.001 0.518-0.002 0.777l0-0.040c0.004 0.415 0.007 0.906 0.007 1.397 0 9.467-0.934 18.716-2.716 27.66l0.149-0.897c-13.533 87.208-88.081 153.175-178.036 153.175-0.259 0-0.518-0.001-0.777-0.002l0.040 0c-0.334 0.003-0.73 0.004-1.125 0.004-9.562 0-18.906-0.933-27.946-2.714l0.912 0.15zM462.933 120.32l-49.067 50.347c-5.057 5.635-8.149 13.123-8.149 21.333s3.092 15.698 8.175 21.363l-0.026-0.030 55.467 57.173c-99.489 17.44-177.293 93.378-197.276 190.429l-0.27 1.571-79.787 79.787-72.107-72.96c20.62-181.857 161.954-325.231 341.036-348.798l2.004-0.216zM121.6 561.067l49.067 49.067c5.786 5.793 13.78 9.379 22.612 9.387l0.002 0c7.893-0.688 14.87-4.146 20.050-9.384l0.003-0.003 56.747-55.467c17.671 99.376 93.497 177.067 190.415 197.27l1.585 0.276 80.213 79.787-72.96 72.107c-181.857-20.62-325.231-161.954-348.798-341.036l-0.216-2.004zM562.347 902.4l47.787-49.067c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-55.467-54.187c99.485-17.729 177.223-93.745 197.274-190.848l0.273-1.579 79.787-79.787 72.107 72.96c-20.62 181.857-161.954 325.231-341.036 348.798l-2.004 0.216z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-35"]},"attrs":[{}],"properties":{"order":6426,"id":538,"name":"abstract-35","prevSize":32,"code":59682},"setIdx":0,"setId":0,"iconIdx":34},{"icon":{"paths":["M947.2 426.667c-28.35-47.554-77.507-80.159-134.582-85.285l-0.672-0.049c9.408-20.699 14.891-44.888 14.891-70.357 0-95.906-77.747-173.653-173.653-173.653-57.196 0-107.933 27.652-139.573 70.316l-0.331 0.468c-31.78-46.112-84.299-75.952-143.787-75.952-95.994 0-173.84 77.698-174.079 173.636l-0 0.023c0.52 26.678 7.083 51.706 18.368 73.932l-0.448-0.972c-90.526 6.55-161.488 81.602-161.488 173.227s70.962 166.677 160.925 173.194l0.563 0.033c-10.422 21.341-16.552 46.424-16.64 72.93l-0 0.030c0.851 95.493 78.46 172.577 174.074 172.577 57.925 0 109.241-28.291 140.886-71.81l0.347-0.501c31.622 45.112 83.377 74.24 141.936 74.24 0.051 0 0.101-0 0.152-0l-0.008 0c16.119-0.106 31.685-2.279 46.507-6.267l-1.281 0.293c74.968-20.857 129.067-88.518 129.067-168.813 0-15.827-2.102-31.163-6.042-45.745l0.282 1.225c-3.008-10.852-6.644-20.203-11.084-29.083l0.418 0.923c88.94-8.025 158.106-82.218 158.106-172.565 0-31.639-8.482-61.297-23.297-86.824l0.444 0.83zM597.333 170.667c15.789-9.27 34.775-14.744 55.040-14.744 60.809 0 110.104 49.295 110.104 110.104 0 40.544-21.914 75.97-54.544 95.079l-0.52 0.281-163.413 95.147v-190.72c-0.001-0.172-0.002-0.375-0.002-0.579 0-39.904 21.15-74.868 52.852-94.293l0.483-0.275zM369.92 155.307c60.847 0.242 110.080 49.625 110.080 110.506 0 0-0 0.001-0 0.001l-0 0v190.72l-165.12-95.573c-33.375-19.33-55.466-54.874-55.466-95.577 0-60.796 49.284-110.080 110.080-110.080 0.3 0 0.599 0.001 0.898 0.004l-0.046-0zM132.267 456.96c19.276-34.020 55.235-56.602 96.468-56.602 19.724 0 38.24 5.167 54.27 14.222l-0.551-0.286 165.547 97.707-165.547 95.573c-15.772 9.247-34.734 14.708-54.971 14.708-60.796 0-110.080-49.284-110.080-110.080 0-20.347 5.52-39.405 15.145-55.757l-0.281 0.515zM369.92 868.693c-0.253 0.002-0.553 0.003-0.852 0.003-60.796 0-110.080-49.284-110.080-110.080 0-40.703 22.091-76.246 54.938-95.294l0.528-0.282 165.12-95.573v190.72c0 0.001 0 0.002 0 0.003 0 60.731-48.99 110.020-109.608 110.503l-0.046 0zM749.653 813.227c-14.475 25.238-38.090 43.846-66.225 51.451l-0.762 0.175c-8.574 2.398-18.42 3.777-28.587 3.777-60.796 0-110.080-49.284-110.080-110.080 0-0.128 0-0.256 0.001-0.383l-0 0.020v-190.72l165.12 95.573c33.351 19.123 55.456 54.517 55.456 95.075 0 20.311-5.544 39.327-15.201 55.617l0.277-0.506zM853.333 607.573c-15.86 9.268-34.918 14.739-55.253 14.739s-39.393-5.472-55.781-15.023l0.528 0.284-166.827-95.573 165.12-95.573c16.061-9.585 35.422-15.252 56.107-15.252 61.207 0 110.825 49.618 110.825 110.825 0 40.522-21.748 75.965-54.209 95.293l-0.509 0.281z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-36"]},"attrs":[{}],"properties":{"order":6427,"id":537,"name":"abstract-36","prevSize":32,"code":59683},"setIdx":0,"setId":0,"iconIdx":35},{"icon":{"paths":["M970.667 512c0-0.111 0-0.242 0-0.373 0-84.384-42.826-158.765-107.929-202.594l-0.871-0.553c-6.121-82.755-52.588-153.461-119.61-193.085l-1.136-0.622c-34.96-20.771-77.075-33.048-122.057-33.048-22.918 0-45.091 3.187-66.101 9.141l1.705-0.413c-16.416 4.671-30.575 10.338-43.982 17.257l1.316-0.617c-31.157-15.342-67.823-24.316-106.585-24.316-44.585 0-86.397 11.872-122.447 32.628l1.192-0.633c-55.558 32.446-96.447 84.88-113.108 147.213l-0.385 1.693c-3.842 13.722-6.716 29.861-8.047 46.436l-0.060 0.924c-65.569 44.344-108.103 118.431-108.103 202.453s42.534 158.109 107.245 201.906l0.858 0.548c8.97 126.726 113.977 226.134 242.202 226.134 0.201 0 0.401-0 0.602-0.001l-0.031 0c38.894-0.524 75.509-9.758 108.149-25.833l-1.482 0.66c31.052 15.4 67.62 24.41 106.292 24.41 129.179 0 234.876-100.539 243.11-227.637l0.037-0.72c65.444-43.996 108.192-117.376 109.225-200.803l0.002-0.157zM906.667 512c0 0.066 0 0.144 0 0.222 0 48.357-19.2 92.23-50.392 124.411l0.045-0.046c-2.917-11.524-6.129-21.192-9.941-30.551l0.554 1.538s0-3.413-2.133-5.547c-10.183-24.408-23.391-45.419-39.485-63.844l0.232 0.271-2.987-3.84c-9.24-10.206-19.143-19.433-29.777-27.77l-0.516-0.39-5.12-4.267c-9.936-7.36-21.235-14.57-33.024-20.994l-1.536-0.766-7.253-2.987c-10.904-5.502-23.785-10.584-37.159-14.513l-1.668-0.42c-11.575-39.098-34.824-71.745-65.659-94.807l-0.474-0.339c4.132-3.154 8.865-6.391 13.76-9.389l0.746-0.425 5.12-3.413c25.456-14.676 55.983-23.333 88.533-23.333s63.078 8.658 89.406 23.796l-0.873-0.463c53.988 32.074 89.606 90.088 89.606 156.422 0 0.508-0.002 1.015-0.006 1.522l0.001-0.078zM469.333 621.227v0c-38.104-15.245-65.879-48.969-72.445-89.786l-0.088-0.667c-1.3-5.62-2.075-12.090-2.133-18.732l-0-0.041c0.082-36.311 16.586-68.752 42.476-90.299l0.191-0.154c19.735-17.025 45.629-27.395 73.944-27.395 15.654 0 30.567 3.169 44.134 8.901l-0.745-0.28c38.735 14.746 67.092 48.633 73.725 89.79l0.088 0.663c1.3 5.62 2.075 12.090 2.133 18.732l0 0.041c0 0.103 0.001 0.225 0.001 0.346 0 36.223-16.534 68.584-42.467 89.947l-0.2 0.16c-19.798 17.243-45.853 27.755-74.362 27.755-15.982 0-31.193-3.304-44.987-9.265l0.736 0.283zM570.453 151.893c14.188-3.698 30.497-5.871 47.296-5.973l0.064-0c0.199-0.001 0.435-0.001 0.67-0.001 33.428 0 64.709 9.197 91.449 25.198l-0.812-0.451c40.040 23.010 69.733 60.204 82.468 104.569l0.306 1.244c-9.813-2.56-19.627-4.693-29.867-6.4h-2.56c-10.051-1.416-21.869-2.339-33.858-2.556l-0.275-0.004c-43.305 0.162-83.881 11.696-118.941 31.77l1.181-0.623c-18.991 10.623-35.376 22.794-50.012 36.781l0.092-0.088c-13.187-3.518-28.326-5.538-43.937-5.538-26.115 0-50.909 5.653-73.226 15.803l1.11-0.452c-0.509-4.989-0.799-10.78-0.799-16.64s0.29-11.651 0.857-17.362l-0.058 0.722v-9.387c1.194-9.555 2.989-18.081 5.413-26.338l-0.293 1.164 2.56-9.813c3.955-12.104 8.723-22.546 14.492-32.328l-0.412 0.755c5.571-9.242 11.203-17.183 17.354-24.681l-0.287 0.361 9.387-10.24 6.827-6.4c9.357-8.855 19.686-16.877 30.75-23.836l0.824-0.484c12.497-7.46 26.928-13.848 42.146-18.419l1.374-0.355zM229.12 279.893c21.238-77.759 91.247-133.974 174.385-133.974 0.193 0 0.385 0 0.578 0.001l-0.030-0c15.275 0.283 29.945 2.289 44.004 5.832l-1.337-0.285-5.547 5.973c-4.267 4.693-8.533 8.96-12.373 13.653-8.66 9.916-16.563 20.946-23.356 32.699l-0.537 1.008c-6.651 11.298-12.707 24.405-17.452 38.124l-0.468 1.556c-0.084 0.704-0.132 1.52-0.132 2.347s0.048 1.642 0.141 2.444l-0.009-0.098c-4.247 11.59-7.541 25.148-9.293 39.184l-0.094 0.922v6.827c-0.614 6.076-0.965 13.13-0.965 20.267s0.35 14.191 1.035 21.147l-0.070-0.881c-0.098 1.086-0.154 2.35-0.154 3.627s0.056 2.54 0.166 3.788l-0.011-0.162c0.857 15.572 3.142 30.169 6.741 44.239l-0.341-1.572v2.133c-26.733 27.613-44.721 63.837-49.414 104.12l-0.080 0.84c-11.134-4.941-20.661-10.358-29.579-16.588l0.566 0.374c-2.987 0-5.12-3.84-7.68-5.547-7.225-5.48-13.628-11.072-19.628-17.068l0.001 0.001-6.827-7.253c-7.353-8.206-14.112-17.273-20.017-26.92l-0.463-0.814c-4.312-7.519-8.477-16.379-11.944-25.581l-0.429-1.299c0-4.267-2.987-8.533-4.267-13.227s0-6.4 0-9.813c-2.989-12.238-4.704-26.288-4.704-40.739 0-0.678 0.004-1.355 0.011-2.031l-0.001 0.103c-0.763-6.108-1.199-13.176-1.199-20.347 0-9.385 0.746-18.596 2.183-27.576l-0.13 0.989zM117.333 512c-0.001-0.168-0.001-0.368-0.001-0.567 0-48.248 19.205-92.010 50.387-124.060l-0.039 0.040 2.987 7.253c0 5.973 3.413 11.947 5.547 17.92 5.262 14.605 11.015 26.99 17.707 38.772l-0.64-1.225c7.793 13.227 16.111 24.669 25.395 35.244l-0.221-0.257 3.413 4.267c9.208 10.113 18.965 19.329 29.373 27.772l0.494 0.388 5.973 4.267c9.918 7.632 21.099 14.721 32.905 20.762l1.229 0.571 6.4 3.413c10.904 5.502 23.785 10.584 37.159 14.513l1.668 0.42c11.575 39.098 34.824 71.745 65.659 94.807l0.474 0.339c-3.923 3.052-8.377 6.147-12.992 9.005l-0.661 0.381-5.547 3.84c-25.385 14.679-55.841 23.34-88.32 23.34s-62.935-8.661-89.185-23.8l0.865 0.46c-54.205-31.71-90.037-89.639-90.037-155.937 0-0.679 0.004-1.356 0.011-2.033l-0.001 0.103zM452.267 872.107c-13.909 3.837-29.879 6.042-46.365 6.042-33.709 0-65.264-9.219-92.282-25.274l0.834 0.459c-39.9-23.051-69.453-60.244-82.046-104.574l-0.301-1.239c9.813 2.56 20.053 4.693 30.293 6.4v0c10.198 1.434 22.166 2.358 34.309 2.557l0.251 0.003c0.247 0.001 0.54 0.001 0.833 0.001 43.602 0 84.505-11.555 119.814-31.771l-1.181 0.623c18.868-10.494 35.127-22.674 49.54-36.738l-0.046 0.045c13.086 3.525 28.111 5.551 43.608 5.551 26.271 0 51.182-5.819 73.516-16.239l-1.071 0.448c0.507 5.052 0.796 10.919 0.796 16.853s-0.289 11.801-0.854 17.587l0.058-0.734v9.387c-0.988 9.534-2.792 18.221-5.377 26.564l0.257-0.964-2.56 9.387c-4.072 12.319-8.837 22.898-14.539 32.872l0.459-0.872c-5.735 9.109-11.357 16.904-17.413 24.331l0.346-0.438-9.387 10.24-6.827 6.4c-9.759 9.227-20.668 17.418-32.438 24.293l-0.842 0.454c-11.872 7.159-25.576 13.386-40.012 17.97l-1.375 0.377zM708.267 853.76c-25.663 15.203-56.564 24.187-89.564 24.187-15.471 0-30.481-1.975-44.792-5.686l1.236 0.272c1.805-2.157 3.618-4.105 5.526-5.954l0.020-0.019c4.267-4.693 8.533-8.96 12.373-13.653 8.33-9.819 16.212-20.688 23.24-32.137l0.653-1.143c6.529-11.356 12.582-24.601 17.408-38.422l0.512-1.685c0.084-0.704 0.132-1.52 0.132-2.347s-0.048-1.642-0.141-2.444l0.009 0.098c4.247-11.59 7.541-25.148 9.293-39.184l0.094-0.922v-6.827c0.614-6.076 0.965-13.13 0.965-20.267s-0.35-14.191-1.035-21.147l0.070 0.881c0.098-1.086 0.154-2.35 0.154-3.627s-0.056-2.54-0.166-3.788l0.011 0.162c-0.857-15.572-3.142-30.169-6.741-44.239l0.341 1.572v-2.133c26.813-27.564 44.823-63.815 49.417-104.139l0.076-0.821c11.134 4.941 20.661 10.358 29.579 16.588l-0.566-0.374c2.987 0 5.12 3.84 7.68 5.547 7.255 5.446 13.669 11.183 19.558 17.42l0.068 0.073 6.827 6.827c7.465 8.297 14.236 17.513 20.045 27.363l0.435 0.797c4.134 7.481 8.297 16.479 11.858 25.775l0.516 1.532c1.098 2.938 2.269 6.785 3.243 10.71l0.17 0.81c0 4.267 2.133 8.96 3.413 13.227 2.267 11.199 3.656 24.151 3.838 37.395l0.002 0.151c0.063 1.785 0.099 3.882 0.099 5.987 0 64.305-33.63 120.755-84.262 152.721l-0.744 0.438z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-37"]},"attrs":[{}],"properties":{"order":6428,"id":536,"name":"abstract-37","prevSize":32,"code":59684},"setIdx":0,"setId":0,"iconIdx":36},{"icon":{"paths":["M959.573 651.093c-5.394-9.735-15.608-16.216-27.335-16.216-0.14 0-0.28 0.001-0.42 0.003l0.021-0h-547.84l123.307-213.333 99.84 175.787c5.56 9.505 15.719 15.789 27.345 15.789 0.137 0 0.273-0.001 0.409-0.003l-0.021 0h247.893c17.629-0.058 31.899-14.362 31.899-32 0-5.805-1.546-11.248-4.248-15.942l0.082 0.155-227.84-394.667c-20.97-35.673-59.139-59.253-102.819-59.307l-198.408-0c-11.935 0.033-22.31 6.684-27.651 16.475l-0.083 0.165-277.76 479.573c-10.067 17.064-16.015 37.597-16.015 59.52s5.947 42.456 16.317 60.075l-0.302-0.555 98.56 170.667c5.502 9.743 15.788 16.214 27.585 16.214 0.052 0 0.104-0 0.156-0l-0.008 0h554.667c0.046 0 0.099 0 0.153 0 44.23 0 82.866-23.951 103.647-59.59l0.307-0.57 98.56-170.667c2.832-4.483 4.513-9.938 4.513-15.787s-1.681-11.304-4.586-15.91l0.073 0.123zM626.347 201.813l200.96 347.733h-174.080l-216.32-375.040h142.080c20.061 0.249 37.549 11.028 47.22 27.056l0.14 0.251zM131.413 640l250.027-433.493 85.333 150.613-261.12 453.547-3.413 5.547-70.827-121.6c-4.56-7.843-7.251-17.261-7.251-27.307s2.691-19.464 7.393-27.571l-0.141 0.264zM805.547 822.187c-9.727 16.626-27.46 27.639-47.773 27.733l-0.013 0h-501.76l85.333-150.613h535.040z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-38"]},"attrs":[{}],"properties":{"order":6429,"id":535,"name":"abstract-38","prevSize":32,"code":59685},"setIdx":0,"setId":0,"iconIdx":37},{"icon":{"paths":["M970.667 512c-0.102-30.24-3.048-59.726-8.584-88.288l0.477 2.955c-12.933-66.471-38.706-125.307-74.767-176.356l0.954 1.423c-42.25-60.621-97.078-109.583-160.96-143.864l-2.454-1.203c-61.969-33.483-135.644-53.162-213.914-53.162-154.575 0-291.223 76.749-373.918 194.219l-0.968 1.45c-35.754 50.297-61.862 110.039-74.217 174.664l-0.45 2.83c-5.059 25.607-8.005 55.093-8.106 85.249l-0 0.084c0.242 253.067 205.206 458.181 458.193 458.667l0.047 0c20.071-0.207 39.598-1.596 58.774-4.102l-2.454 0.262c227.611-29.359 401.759-221.666 402.347-454.766l0-0.061zM117.333 512c0.144-16.096 1.225-31.783 3.192-47.193l-0.205 1.966c86.722 17.963 161.088 62.16 216.422 123.792l0.325 0.368c5.912 7.105 14.756 11.594 24.65 11.594 8.667 0 16.529-3.446 22.292-9.042l-0.008 0.008c5.758-5.721 9.322-13.644 9.322-22.4s-3.564-16.679-9.32-22.398l-0.002-0.002c-64.278-72.39-150.588-123.937-248.361-144.131l-2.945-0.509c10.719-37.809 25.274-70.82 43.689-101.232l-1.023 1.819c100.11 24.684 186.598 73.221 256.248 139.327l-0.248-0.233c5.632 5.289 13.233 8.539 21.594 8.539 0.208 0 0.416-0.002 0.624-0.006l-0.031 0c0.267 0.009 0.58 0.013 0.895 0.013 8.771 0 16.659-3.781 22.123-9.802l0.022-0.025c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-70.213-66.775-156.087-117.767-251.506-146.874l-4.494-1.179c72.234-81.061 176.927-131.863 293.485-131.863 42.389 0 83.209 6.719 121.452 19.15l-2.777-0.781c-80.499 38.514-149.511 86.928-209.27 144.836l0.203-0.196c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.9 5.935 14.021 9.656 23.010 9.813l0.030 0c0.222 0.006 0.482 0.009 0.744 0.009 8.524 0 16.249-3.424 21.873-8.972l-0.003 0.003c67.093-65.364 146.901-118.057 235.312-153.973l4.901-1.76c36.821 22.089 68.423 48.123 95.692 78.162l0.308 0.345c-263.827 79.126-452.893 319.475-453.547 604.084l-0 0.076c0 6.4 0 12.8 0 19.627-139.316-63.134-234.51-200.911-234.667-360.939l-0-0.021zM416 896c0-14.080 0-28.16 0-42.667 0.691-264.172 182.057-485.79 427.018-547.853l3.916-0.841c17.584 28.602 32.154 61.633 42.001 96.643l0.666 2.77c-210.826 43.993-366.933 228.292-366.933 449.051 0 0.080 0 0.161 0 0.241l-0-0.012c0.081 18.583 1.319 36.793 3.645 54.661l-0.232-2.181h-14.080c-2.292 0.049-4.994 0.077-7.702 0.077-30.71 0-60.577-3.605-89.203-10.415l2.611 0.524zM586.667 900.267c-0.421-7.012-0.661-15.211-0.661-23.467s0.24-16.454 0.713-24.59l-0.052 1.124c0.021-190.386 134.992-349.242 314.468-386.123l2.545-0.437c1.917 14.538 3.010 31.349 3.010 48.416 0 189.747-135.22 347.911-314.554 383.388l-2.483 0.41z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-39"]},"attrs":[{}],"properties":{"order":6430,"id":534,"name":"abstract-39","prevSize":32,"code":59686},"setIdx":0,"setId":0,"iconIdx":38},{"icon":{"paths":["M958.72 768l-357.973-622.507-13.227-23.467c-14.593-27.325-42.922-45.603-75.52-45.603s-60.927 18.278-75.296 45.145l-0.224 0.458-351.147 612.267-17.92 30.72c-8.309 12.934-13.246 28.722-13.246 45.663 0 47.128 38.205 85.333 85.333 85.333 0.457 0 0.913-0.004 1.367-0.011l-0.069 0.001h301.227c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-301.227c-0.030 0-0.065 0-0.1 0-12.725 0-23.040-10.315-23.040-23.040 0-4.242 1.146-8.216 3.146-11.629l-0.059 0.109 17.493-29.44c9.813-16.213 20.053-32.853 31.147-49.493 75.52-117.333 177.92-236.373 320.853-256h21.76c51.238 0.146 95.943 27.973 119.963 69.309l0.357 0.665c11.533 19.343 18.351 42.657 18.351 67.563 0 0.397-0.002 0.794-0.005 1.191l0-0.061c-0.013 11.364-1.413 22.394-4.038 32.94l0.198-0.94s0 3.413 0 5.12c-3.050 11.367-7.132 21.294-12.291 30.538l0.344-0.671c-24.228 42.105-68.968 69.999-120.222 69.999-0.934 0-1.867-0.009-2.797-0.028l0.139 0.002c-0.785 0.017-1.71 0.026-2.637 0.026-31.41 0-60.262-10.949-82.95-29.237l0.254 0.198c-5.15-3.601-11.544-5.753-18.44-5.753-9.619 0-18.261 4.189-24.199 10.842l-0.028 0.032c-4.211 5.466-6.749 12.411-6.749 19.948 0 10.141 4.595 19.21 11.817 25.236l0.052 0.043c33.927 26.639 77.244 42.721 124.317 42.721 76.034 0 142.268-41.959 176.81-103.985l0.526-1.030c6.923-12.774 13.026-27.64 17.521-43.188l0.399-1.612v-2.987c3.161-9.706 6.407-22.319 8.989-35.173l0.398-2.374c0-3.84 0-7.68 0-11.52s2.987-17.493 3.84-26.453 0-8.96 0-13.227 0-16.64 0-25.173v-13.227c0.208-3.886 0.327-8.436 0.327-13.013s-0.119-9.127-0.353-13.646l0.026 0.633c0.107-1.214 0.168-2.627 0.168-4.053s-0.061-2.839-0.18-4.235l0.013 0.182 179.627 311.040c1.941 3.305 3.087 7.279 3.087 11.52 0 12.725-10.315 23.040-23.040 23.040-0.035 0-0.070-0-0.106-0l0.005 0c-4.272 0.046-9.321 0.072-14.376 0.072-57.779 0-114.755-3.437-170.736-10.116l6.765 0.657c-1.217-0.164-2.624-0.257-4.053-0.257-17.697 0-32.044 14.347-32.044 32.044 0 16.268 12.123 29.705 27.828 31.769l0.162 0.017c47.468 5.353 102.493 8.407 158.231 8.407 10.524 0 21.022-0.109 31.494-0.326l-1.565 0.026c0.484 0.010 1.056 0.016 1.628 0.016 47.128 0 85.333-38.205 85.333-85.333 0-15.716-4.248-30.439-11.659-43.085l0.218 0.402zM512 396.8v0c-10.689 0.575-20.524 1.64-30.194 3.201l1.608-0.214c-16.318 1.973-30.79 4.818-44.873 8.613l2.206-0.506-14.080 2.987c-9.813 2.987-19.627 5.973-29.44 9.813l-11.093 4.267c-14.623 5.907-26.552 11.633-38.088 17.986l1.821-0.919q-17.067 9.387-33.28 20.48l-4.267 2.56 179.627-311.040c3.854-7.284 11.384-12.162 20.053-12.162s16.199 4.878 19.994 12.039l0.059 0.123 12.8 22.187 14.507 26.453c1.38 2.327 2.808 5.129 4.068 8.022l0.199 0.512c3.84 6.827 7.68 14.080 11.093 21.333s2.987 5.547 4.693 8.533l13.227 26.88c-0.077 0.577-0.12 1.243-0.12 1.92s0.044 1.343 0.129 1.997l-0.008-0.077c10.24 22.187 20.48 45.653 29.44 69.547v0c12.257 31.645 23.036 69.434 30.475 108.407l0.672 4.233c-36.541-35.29-86.33-57.068-141.206-57.173l-0.021-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-40"]},"attrs":[{}],"properties":{"order":6431,"id":533,"name":"abstract-40","prevSize":32,"code":59687},"setIdx":0,"setId":0,"iconIdx":39},{"icon":{"paths":["M957.44 259.413v0c1.665-3.662 2.635-7.942 2.635-12.449 0-9.12-3.974-17.312-10.285-22.938l-0.030-0.027-113.92-115.2c-17.829-18.204-42.661-29.489-70.129-29.489-10.77 0-21.135 1.735-30.831 4.941l0.693-0.199c-120.32 42.667-422.4 27.307-469.333-11.093-1.836-1.394-3.954-2.55-6.236-3.362l-0.164-0.051c-3.693-1.639-8.002-2.594-12.533-2.594-9.218 0-17.513 3.95-23.286 10.25l-0.021 0.024-119.467 113.493c-18.138 17.95-29.37 42.848-29.37 70.369 0 10.679 1.691 20.962 4.82 30.598l-0.197-0.7c16.965 59.139 26.721 127.065 26.721 197.269 0 6.999-0.097 13.976-0.29 20.928l0.022-1.024c0 163.413-30.293 241.92-36.267 250.027-1.394 1.836-2.55 3.954-3.362 6.236l-0.051 0.164s0 0 0 0c-1.639 3.693-2.594 8.002-2.594 12.533 0 9.218 3.95 17.513 10.25 23.286l0.024 0.021 114.773 115.2c17.82 18.142 42.61 29.385 70.027 29.385 10.65 0 20.905-1.697 30.507-4.834l-0.694 0.196c120.32-42.667 422.4-27.307 469.333 11.093 5.314 4.515 12.253 7.26 19.833 7.26 0.227 0 0.454-0.002 0.681-0.007l-0.034 0.001c0.001 0 0.003 0 0.004 0 9.26 0 17.601-3.933 23.445-10.22l0.018-0.020c0.749-0.989 1.457-2.107 2.071-3.281l0.063-0.132 113.92-112.64c18.204-17.829 29.489-42.661 29.489-70.129 0-10.77-1.735-21.135-4.941-30.831l0.199 0.693c-42.667-120.32-27.307-422.4 11.093-469.333 1.263-1.031 2.382-2.15 3.38-3.371l0.033-0.042zM755.2 141.653c2.925-0.919 6.288-1.448 9.775-1.448 9.571 0 18.211 3.989 24.347 10.396l0.012 0.012 91.307 92.587-4.693 3.413-16.213 9.387-12.373 6.4-10.24 4.267c-45.39 19.489-98.158 34.418-153.207 42.271l-3.38 0.395h-2.987c-45.776 6.294-98.674 9.886-152.411 9.886-4.619 0-9.231-0.027-13.838-0.079l0.702 0.006c-0.035 0-0.078 0-0.12 0-50.493 0-100.226-3.256-149.001-9.569l5.761 0.609c0-2.56 0-5.12 0-7.68-3.413-19.627-7.253-38.4-12.373-57.173 0-7.68-3.413-14.933-5.547-22.187s-6.4-15.36-9.387-22.613-6.4-19.2-10.24-29.867-4.267-10.667-6.827-16.213v0c55.127 9.77 118.594 15.355 183.365 15.355 87.793 0 173.189-10.262 255.055-29.651l-7.486 1.495zM648.107 648.107c-40.696-4.484-87.89-7.041-135.68-7.041s-94.982 2.558-141.447 7.543l5.767-0.502c4.621-41.219 7.258-89.004 7.258-137.405 0-1.193-0.002-2.386-0.005-3.579l0 0.184c-0.046-46.643-2.524-92.649-7.315-137.965l0.488 5.698c39.704 4.997 86.454 8.232 133.814 8.948l1.013 0.012c0.564 0.001 1.231 0.001 1.898 0.001 47.28 0 93.943-2.635 139.853-7.767l-5.644 0.513c-4.555 40.701-7.154 87.887-7.154 135.68s2.599 94.979 7.662 141.424l-0.508-5.744zM149.333 235.947l94.293-93.013 2.56 3.84c4.267 6.4 8.533 13.653 12.373 20.907 1.094 2.486 2.235 4.587 3.524 6.583l-0.111-0.183c9.488 19.089 18.344 41.736 25.257 65.216l0.77 3.051c0 2.987 0 6.4 0 9.387 2.987 9.813 5.12 19.627 7.68 30.293s0 9.387 2.987 14.080l5.12 28.587 4.693 16.64c7.070 47.805 11.107 102.985 11.107 159.108 0 1.963-0.005 3.926-0.015 5.887l0.001-0.302c0.027 3.017 0.042 6.584 0.042 10.154 0 49.645-2.961 98.599-8.715 146.695l0.566-5.809c-26.88 4.693-52.907 10.24-77.653 17.067h-2.133c-12.373 3.413-23.893 7.253-35.413 11.093h-5.547c-11.947 4.267-23.467 8.96-34.133 13.653h-2.987c10.889-54.291 17.12-116.705 17.12-180.574 0-3.567-0.019-7.13-0.058-10.688l0.005 0.542c0.147-5.711 0.23-12.437 0.23-19.181 0-77.337-10.992-152.107-31.498-222.833l1.401 5.641c-0.987-3.163-1.555-6.8-1.555-10.57 0-9.801 3.842-18.704 10.103-25.286l-0.015 0.015zM268.8 882.347c-2.853 0.849-6.13 1.338-9.522 1.338-9.63 0-18.341-3.939-24.608-10.294l-0.004-0.004-91.733-92.587 5.547-3.413 10.667-6.4 11.52-2.987 14.080-6.4 8.533-3.84 17.493-6.4h5.973c9.813-3.413 20.053-6.827 31.147-9.813l21.333-5.973h8.107l26.88-10.24h3.84l36.693-6.4c49.718-7.485 107.091-11.76 165.463-11.76 51.619 0 102.458 3.343 152.311 9.824l-5.881-0.625c7.585 43.781 17.505 81.951 30.184 118.839l-1.597-5.346c-0.088 0.768-0.138 1.658-0.138 2.56s0.050 1.792 0.147 2.668l-0.010-0.108c4.019 12.098 7.918 21.836 12.294 31.309l-0.774-1.869 2.56 6.827c-56.329-10.186-121.162-16.011-187.355-16.011-86.198 0-170.088 9.877-250.602 28.56l7.451-1.456zM872.96 789.333l-92.16 91.733-3.84-5.973c0-2.987-3.84-5.973-5.547-9.387l-6.4-12.8c-1.465-2.601-3.038-5.826-4.441-9.142l-0.252-0.672c-2.56-5.547-5.12-11.52-7.253-17.493l-2.987-7.68c-14.182-38.654-25.796-84.252-32.803-131.353l-0.477-3.901c-7.632-50.332-11.991-108.408-11.991-167.503 0-51.198 3.272-101.632 9.618-151.104l-0.614 5.86c44.304-7.403 83.212-17.484 120.716-30.558l-5.090 1.544h2.56c12.373-4.267 25.173-8.96 36.693-14.080-9.627 54.766-15.13 117.823-15.13 182.166 0 88.839 10.491 175.227 30.302 257.994l-1.519-7.52c0.384 1.886 0.604 4.054 0.604 6.273 0 9.254-3.826 17.614-9.983 23.586l-0.008 0.008z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-41"]},"attrs":[{}],"properties":{"order":6432,"id":532,"name":"abstract-41","prevSize":32,"code":59688},"setIdx":0,"setId":0,"iconIdx":40},{"icon":{"paths":["M970.24 341.333c0.191-1.154 0.3-2.484 0.3-3.84s-0.109-2.686-0.319-3.982l0.019 0.142c0.116-0.96 0.182-2.072 0.182-3.2s-0.066-2.24-0.195-3.333l0.013 0.133-68.267-130.987c-17.186-33.89-51.479-56.873-91.21-57.599l-0.097-0.001h-290.987l-164.267-81.92c-0.897-0.115-1.934-0.181-2.987-0.181s-2.090 0.066-3.108 0.193l0.121-0.012c-1.218-0.171-2.624-0.269-4.053-0.269s-2.836 0.098-4.213 0.287l0.16-0.018c-1.086-0.098-2.35-0.154-3.627-0.154s-2.54 0.056-3.788 0.166l0.162-0.011c-1.086-0.098-2.35-0.154-3.627-0.154s-2.54 0.056-3.788 0.166l0.162-0.011-130.56 65.28c-34.422 17.464-57.6 52.596-57.6 93.142 0 0.105 0 0.21 0 0.315l-0-0.016v288.853l-81.92 164.267s0 4.267 0 6.4c-1.064 2.253-1.685 4.894-1.685 7.68s0.621 5.427 1.732 7.792l-0.047-0.112c-0.195 1.026-0.306 2.207-0.306 3.413s0.111 2.387 0.324 3.532l-0.018-0.119 65.28 130.56c17.464 34.422 52.596 57.6 93.142 57.6 0.105 0 0.21-0 0.315-0l-0.016 0h288.853l163.84 81.92c3.735 1.877 8.139 2.976 12.8 2.976s9.065-1.099 12.968-3.052l-0.168 0.076 130.987-65.28c35.103-16.411 59.268-50.886 60.582-91.139l0.004-0.167v-290.987l81.92-163.84c0.097-1.023 0.152-2.212 0.152-3.413s-0.055-2.391-0.163-3.564l0.011 0.151c1.343-2.21 2.377-4.781 2.958-7.518l0.029-0.162zM844.8 224.853l42.667 85.333h-469.333l106.667-106.667h285.867c14.615 1.016 27.106 9.25 34.024 21.13l0.109 0.203zM375.467 373.333h277.333v277.333h-279.467zM375.467 264.107v-128l85.333 42.667zM204.8 215.467c0.442-15.601 9.194-29.062 21.969-36.156l0.218-0.111 85.333-42.667v468.48l-106.667-106.667zM179.2 566.187l85.333 85.333h-128zM179.2 799.147v0l-42.667-85.333h469.333l-106.667 106.667h-283.733c-15.445-0.257-28.867-8.681-36.158-21.132l-0.109-0.201zM650.667 759.893v128l-85.333-42.667zM821.333 808.533c-0.442 15.601-9.194 29.062-21.969 36.156l-0.218 0.111-85.333 42.667v-468.907l106.667 106.667zM844.373 457.813l-85.333-85.333h128z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-42"]},"attrs":[{}],"properties":{"order":6433,"id":531,"name":"abstract-42","prevSize":32,"code":59689},"setIdx":0,"setId":0,"iconIdx":41},{"icon":{"paths":["M970.24 341.333c0.19-1.218 0.298-2.623 0.298-4.053s-0.108-2.835-0.317-4.207l0.019 0.154c0.026-0.446 0.041-0.968 0.041-1.493s-0.015-1.047-0.044-1.565l0.003 0.072c-1.731-3.603-3.871-6.698-6.418-9.406l0.018 0.019-238.507-238.933c-17.678-17.663-42.093-28.587-69.058-28.587-0.022 0-0.044 0-0.065 0l-314.877-0c-1.218-0.19-2.623-0.298-4.053-0.298s-2.835 0.108-4.207 0.317l0.154-0.019h-3.413c-3.467 1.515-6.434 3.525-8.968 5.981l0.008-0.008-238.933 239.36c-17.663 17.678-28.587 42.093-28.587 69.058 0 0.022 0 0.044 0 0.065l-0-0.003v314.88s0 0 0 2.133c-0.19 1.218-0.298 2.623-0.298 4.053s0.108 2.835 0.317 4.207l-0.019-0.154s0 2.133 0 3.413c1.843 3.412 3.969 6.354 6.423 8.985l-0.023-0.025 238.933 236.8c17.786 17.527 42.165 28.407 69.085 28.586l0.035 0h314.88c0.028 0 0.062 0 0.096 0 4.441 0 8.662-0.942 12.473-2.638l-0.196 0.078c3.968-1.712 7.363-4.012 10.246-6.833l-0.006 0.006 236.8-235.947c17.527-17.786 28.407-42.165 28.586-69.085l0-0.035v-314.88s-0.427 0-0.427 0zM679.253 128l182.187 182.187h-488.107v-192.853h282.027c9.436 0.207 17.886 4.26 23.876 10.648l0.017 0.018zM650.667 651.52h-277.333v-278.187h277.333zM117.333 368.64c0.207-9.436 4.26-17.886 10.648-23.876l0.018-0.017 181.333-182.187v488.107h-192zM344.747 896l-182.187-181.333h488.107v192h-282.027c-9.436-0.207-17.886-4.26-23.876-10.648l-0.017-0.018zM906.667 654.507c-0.157 9.289-3.867 17.683-9.826 23.906l0.012-0.013-182.187 182.187v-487.253h192z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-43"]},"attrs":[{}],"properties":{"order":6434,"id":530,"name":"abstract-43","prevSize":32,"code":59690},"setIdx":0,"setId":0,"iconIdx":42},{"icon":{"paths":["M970.667 293.547v-148.48c-0.088-44.705-36.349-80.912-81.067-80.912-5.586 0-11.041 0.565-16.309 1.641l0.522-0.089-745.813 149.76c-41.61 8.287-72.534 44.512-72.534 87.96 0 0.127 0 0.253 0.001 0.38l-0-0.020v208.213s0 0 0 2.133c0.284 3.599 1.042 6.935 2.217 10.066l-0.083-0.253s0 2.133 0 3.413c1.722 2.924 3.701 5.446 5.968 7.675l0.005 0.005 5.547 2.987 3.84 2.133 221.44 67.84-166.4 34.133c-41.61 8.287-72.534 44.512-72.534 87.96 0 0.127 0 0.253 0.001 0.38l-0-0.020v148.48c0.241 44.675 36.392 80.826 81.044 81.067l0.023 0c2.37 0.301 5.111 0.473 7.893 0.473s5.524-0.172 8.215-0.505l-0.322 0.033 745.813-149.333c41.638-8.466 72.533-44.78 72.533-88.311 0-0.003-0-0.007-0-0.010l0 0.001v-210.347s0 0 0-2.133c0.21-1.474 0.33-3.176 0.33-4.907s-0.12-3.433-0.351-5.099l0.022 0.193v-3.413c-1.722-2.924-3.701-5.446-5.968-7.675l-0.005-0.005s0 0 0 0v0c-2.942-2.236-6.328-4.109-9.968-5.458l-0.272-0.088-224.853-67.413 168.533-32c41.651-8.456 72.559-44.776 72.559-88.316 0-0.752-0.009-1.501-0.028-2.248l0.002 0.111zM906.667 720.213c0 0.024 0 0.053 0 0.082 0 12.562-8.9 23.046-20.738 25.489l-0.168 0.029-747.947 150.187c-0.989 0.198-2.125 0.312-3.289 0.312-4.089 0-7.85-1.403-10.828-3.753l0.037 0.028c-3.891-3.134-6.369-7.888-6.4-13.221l-0-0.005v-148.907c-0-0.024-0-0.053-0-0.082 0-12.562 8.9-23.046 20.738-25.489l0.168-0.029 768-153.6zM597.333 442.453l210.773 63.147-78.933 16.213-298.667 59.733-212.907-63.147 38.4-6.4zM887.467 319.147l-768 154.027v-170.667c-0-0.024-0-0.053-0-0.082 0-12.562 8.9-23.046 20.738-25.489l0.168-0.029 749.227-148.907c4.054 0.099 7.755 1.529 10.704 3.868l-0.037-0.028c3.891 3.134 6.369 7.888 6.4 13.221l0 0.005v148.48c0 0.024 0 0.053 0 0.082 0 12.562-8.9 23.046-20.738 25.489l-0.168 0.029z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-44"]},"attrs":[{}],"properties":{"order":6435,"id":529,"name":"abstract-44","prevSize":32,"code":59691},"setIdx":0,"setId":0,"iconIdx":43},{"icon":{"paths":["M341.333 938.667c-23.564 0-42.667-19.103-42.667-42.667v0-512c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 512c0 23.564-19.103 42.667-42.667 42.667v0zM213.333 597.333v-341.333c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 341.333c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0zM512 853.333c-23.564 0-42.667-19.103-42.667-42.667v0-682.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 682.667c0 23.564-19.103 42.667-42.667 42.667v0zM682.667 725.333c-23.564 0-42.667-19.103-42.667-42.667v0-469.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 469.333c0 23.564-19.103 42.667-42.667 42.667v0zM853.333 810.667c-23.564 0-42.667-19.103-42.667-42.667v0-341.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 341.333c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-45"]},"attrs":[{}],"properties":{"order":6436,"id":528,"name":"abstract-45","prevSize":32,"code":59692},"setIdx":0,"setId":0,"iconIdx":44},{"icon":{"paths":["M832 796.16c3.413-4.693 6.827-8.96 9.813-13.653l8.107-12.373 8.533-14.507 6.827-12.8c2.56-5.12 5.12-10.667 7.253-16.213l5.12-11.947c7.186-16.398 13.501-35.787 17.948-55.879l0.399-2.148c-0.087-0.513-0.137-1.104-0.137-1.707s0.050-1.194 0.146-1.769l-0.009 0.062c0-2.56 0-5.12 0-8.107 1.978-15.378 3.108-33.168 3.108-51.222 0-69.884-16.92-135.816-46.886-193.924l1.112 2.372-2.987-5.547c-3.84-7.68-7.253-14.933-11.52-22.187s-5.547-9.813-8.107-14.507-8.533-14.933-13.227-22.187-5.973-9.387-9.387-14.080-9.387-14.507-14.933-21.76-7.253-9.813-10.667-14.507-10.24-14.080-16.213-20.907v0c-48.695-58.436-102.594-109.763-161.821-154.395l-2.446-1.765-11.093-8.533c-19.2-14.080-38.827-27.733-59.733-42.667-4.65-3.521-10.531-5.64-16.907-5.64-0.807 0-1.606 0.034-2.396 0.101l0.103-0.007c-5.479 0.009-10.624 1.431-15.092 3.921l0.158-0.081c-69.391 43.99-129.63 92.565-183.835 147.141l-0.058 0.059-5.547 5.973c-53.28 54.128-98.305 116.595-132.899 185.221l-1.928 4.219h-2.133v6.4c-5.12 11.52-9.813 23.040-14.507 34.133l-3.84 10.24c-4.267 12.373-8.107 25.173-11.52 37.547v5.547c-8.408 29.982-13.242 64.412-13.242 99.971 0 22.104 1.868 43.772 5.454 64.855l-0.319-2.267c28.16 155.733 161.28 267.093 375.040 313.173h13.653c14.507-2.987 29.013-6.4 42.667-10.24l11.52-3.413 29.013-8.96 38.4-14.080 12.373-5.12 23.467-10.667 11.52-5.547 23.040-12.8 9.387-5.12c9.387-5.547 17.92-11.52 26.453-17.067l3.413-2.56 27.307-20.907 7.253-6.4 16.64-15.787 9.387-9.813 12.373-14.080zM816.64 694.187c-35.721 78.587-99.518 139.195-178.272 169.909l-2.208 0.758-8.533 3.413 196.267-196.267c0 4.267-2.133 8.96-3.413 13.227-1.346 2.494-2.644 5.454-3.708 8.523l-0.132 0.437zM287.573 332.8l192.427 192.427v122.88l-240.213-240.213c15.472-28.796 31.309-53.355 48.847-76.557l-1.060 1.464zM546.133 147.627c13.653 9.813 27.307 20.48 40.533 31.147l-42.667 42.667v-75.52zM696.32 282.453l-152.32 152.32v-122.88l91.307-91.307c21.524 19.698 41.439 39.884 60.289 61.039l0.724 0.827zM834.133 571.307l-290.133 290.133v-122.88l266.667-269.227c12.047 29.895 20.39 64.526 23.38 100.676l0.086 1.298zM544 648.107v-122.88l192.427-192.427c16.162 21.759 31.862 46.456 45.76 72.268l1.6 3.252zM437.333 178.773c13.653-11.093 27.733-21.76 42.667-32.427v75.093zM480 312.32v122.88l-151.893-152.32c19.382-22.302 39.169-42.63 60.039-61.797l0.548-0.497zM189.867 571.733c3.3-37.658 11.626-72.412 24.349-104.962l-0.882 2.562 267.52 267.52v122.88zM200.533 672.853l196.693 196.693c-92.464-32.921-163.966-104.563-196.002-194.885l-0.691-2.235z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-46"]},"attrs":[{}],"properties":{"order":6437,"id":527,"name":"abstract-46","prevSize":32,"code":59693},"setIdx":0,"setId":0,"iconIdx":45},{"icon":{"paths":["M858.453 896h-213.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h213.333c0.177 0.003 0.385 0.004 0.594 0.004 15.711 0 29.439-8.492 36.844-21.136l0.109-0.201c3.594-6.12 5.716-13.479 5.716-21.333s-2.123-15.214-5.825-21.535l0.109 0.201-320-554.667c-8.279-12.502-22.283-20.633-38.187-20.633s-29.907 8.132-38.081 20.464l-0.105 0.169-96.853 166.827c-5.148 11.191-16.263 18.821-29.16 18.821-17.673 0-32-14.327-32-32 0-7.074 2.296-13.613 6.183-18.911l-0.063 0.089 96.427-167.68c18.86-32.683 53.622-54.327 93.44-54.327s74.58 21.644 93.164 53.808l0.276 0.519 320.853 554.667c9.257 15.441 14.731 34.068 14.731 53.973s-5.474 38.533-15 54.458l0.268-0.484c-19.046 31.887-53.377 52.91-92.619 52.91-0.289 0-0.577-0.001-0.865-0.003l0.044 0zM517.12 841.813c9.257-15.441 14.731-34.068 14.731-53.973s-5.474-38.533-15-54.458l0.268 0.484-129.707-221.867c-18.86-32.683-53.622-54.327-93.44-54.327s-74.58 21.644-93.164 53.808l-0.276 0.519-128 222.293c-9.257 15.441-14.731 34.068-14.731 53.973s5.474 38.533 15 54.458l-0.268-0.484c18.92 32.336 53.465 53.721 93.008 53.76l256.006 0c0.714 0.017 1.556 0.027 2.399 0.027 38.937 0 73.002-20.863 91.624-52.020l0.27-0.487zM256 545.28c8.183-12.51 22.126-20.661 37.973-20.661s29.791 8.151 37.867 20.488l0.106 0.173 128 222.293c3.594 6.12 5.716 13.479 5.716 21.333s-2.123 15.214-5.825 21.535l0.109-0.201c-7.393 13.322-21.377 22.19-37.432 22.19-0.19 0-0.38-0.001-0.57-0.004l0.029 0h-256c-0.231 0.004-0.503 0.007-0.776 0.007-15.885 0-29.742-8.681-37.087-21.557l-0.11-0.21c-3.594-6.12-5.716-13.479-5.716-21.333s2.123-15.214 5.825-21.535l-0.109 0.201 128-222.293z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-47"]},"attrs":[{}],"properties":{"order":6438,"id":526,"name":"abstract-47","prevSize":32,"code":59694},"setIdx":0,"setId":0,"iconIdx":46},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM841.813 512c-0.243-182.053-147.76-329.571-329.79-329.813l-0.023-0c-17.673 0-32 14.327-32 32s14.327 32 32 32v0c146.805 0 265.813 119.009 265.813 265.813s-119.009 265.813-265.813 265.813c-146.805 0-265.813-119.009-265.813-265.813v0c0-17.673-14.327-32-32-32s-32 14.327-32 32v0c0 182.151 147.662 329.813 329.813 329.813s329.813-147.662 329.813-329.813v0zM718.507 512c0-114.050-92.456-206.507-206.507-206.507v0c-17.673 0-32 14.327-32 32s14.327 32 32 32v0c78.704 0 142.507 63.802 142.507 142.507s-63.802 142.507-142.507 142.507v0c-17.673 0-32 14.327-32 32s14.327 32 32 32v0c114.050 0 206.507-92.456 206.507-206.507v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-48"]},"attrs":[{}],"properties":{"order":6439,"id":525,"name":"abstract-48","prevSize":32,"code":59695},"setIdx":0,"setId":0,"iconIdx":47},{"icon":{"paths":["M704 245.333h-106.667c-42.18-0-76.373 34.194-76.373 76.373v158.293h-21.333v-158.293c0-0.023 0-0.050 0-0.076 0-40.979-32.275-74.42-72.792-76.291l-0.168-0.006h-106.667c-147.276 0-266.667 119.391-266.667 266.667s119.391 266.667 266.667 266.667v0h106.667c42.18 0 76.373-34.194 76.373-76.373v0-158.293h21.333v158.293c-0 0.023-0 0.050-0 0.076 0 40.979 32.275 74.42 72.792 76.291l0.168 0.006h106.667c147.276 0 266.667-119.391 266.667-266.667s-119.391-266.667-266.667-266.667v0zM437.333 702.293c0 6.834-5.54 12.373-12.373 12.373v0h-104.96c-111.93 0-202.667-90.737-202.667-202.667s90.737-202.667 202.667-202.667v0h106.667c6.834-0 12.373 5.54 12.373 12.373v158.293h-95.147c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h93.44zM704 714.667h-106.667c-6.834 0-12.373-5.54-12.373-12.373v0-158.293h99.413c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-97.707v-158.293c-0-0.035-0.001-0.077-0.001-0.118 0-6.232 4.607-11.388 10.601-12.247l0.066-0.008h106.667c111.93 0 202.667 90.737 202.667 202.667s-90.737 202.667-202.667 202.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-49"]},"attrs":[{}],"properties":{"order":6440,"id":524,"name":"abstract-49","prevSize":32,"code":59696},"setIdx":0,"setId":0,"iconIdx":48},{"icon":{"paths":["M494.507 957.44c-0.109 0-0.238 0.001-0.367 0.001-29.352 0-55.925-11.904-75.153-31.147l-0.001-0.001-290.987-291.84c-20.989-20.87-33.978-49.766-33.978-81.695 0-15.939 3.237-31.121 9.089-44.926l-0.284 0.755 17.92-42.667c17.739-42.177 58.718-71.253 106.488-71.253 0.063 0 0.125 0 0.188 0l-0.010-0h343.467l-131.84-130.987c-19.244-19.229-31.147-45.801-31.147-75.153 0-0.129 0-0.258 0.001-0.387l-0 0.020c0.046-29.46 11.932-56.135 31.154-75.528l-0.008 0.008 15.36-14.933c19.291-19.232 45.91-31.124 75.307-31.124s56.016 11.892 75.309 31.127l-0.003-0.003 290.987 291.84c21.032 20.812 34.056 49.682 34.056 81.594 0 15.98-3.266 31.198-9.167 45.022l0.284-0.749-17.92 42.667c-17.739 42.177-58.718 71.253-106.488 71.253-0.063 0-0.125-0-0.188-0l0.010 0h-341.333l130.987 130.987c19.156 19.405 30.987 46.081 30.987 75.52s-11.831 56.115-30.998 75.532l0.011-0.012-15.36 14.933c-19.165 19.246-45.684 31.156-74.985 31.156-0.488 0-0.976-0.003-1.462-0.010l0.074 0.001zM226.56 458.667c-0.063-0-0.139-0-0.214-0-21.272 0-39.538 12.865-47.445 31.238l-0.128 0.336-17.493 42.667c-2.945 6.236-4.664 13.546-4.664 21.257 0 13.608 5.353 25.966 14.069 35.082l-0.018-0.019 291.84 291.413c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002 15.36-14.933c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002-183.893-185.6c-5.782-5.789-9.359-13.784-9.359-22.613 0-17.663 14.311-31.984 31.97-32l420.695-0c0.063 0 0.139 0 0.214 0 21.272 0 39.538-12.865 47.445-31.238l0.128-0.336 17.493-42.667c2.894-6.218 4.583-13.498 4.583-21.173 0-13.621-5.319-25.999-13.992-35.171l0.023 0.024-293.547-291.84c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002-14.933 15.36c-7.763 7.612-12.628 18.155-12.8 29.835l-0 0.032c0.051 11.868 4.939 22.584 12.793 30.287l0.007 0.007 185.173 185.6c5.782 5.789 9.359 13.784 9.359 22.613 0 17.663-14.311 31.984-31.97 32l-0.002 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract"]},"attrs":[{}],"properties":{"order":6441,"id":523,"name":"abstract","prevSize":32,"code":59697},"setIdx":0,"setId":0,"iconIdx":49},{"icon":{"paths":["M969.387 447.573c0.115-0.897 0.181-1.934 0.181-2.987s-0.066-2.090-0.193-3.108l0.012 0.121c0.663-2.45 1.045-5.262 1.045-8.164 0-8.563-3.319-16.351-8.742-22.147l0.017 0.018-336.213-341.333c-2.554-2.539-5.51-4.677-8.763-6.311l-0.197-0.089h-2.987c-1.218-0.19-2.623-0.298-4.053-0.298s-2.835 0.108-4.207 0.317l0.154-0.019h-272.64c-150.357 5.049-271.338 124.1-279.435 273.185l-0.032 0.735v208.64c0 17.437 14.136 31.573 31.573 31.573s31.573-14.136 31.573-31.573v0-204.8c4.717-117.613 98.748-211.793 215.862-216.731l0.458-0.015h237.653v170.667c0 94.257 76.41 170.667 170.667 170.667v0h166.827v225.707c0.005 0.509 0.007 1.111 0.007 1.714 0 113.217-91.299 205.11-204.289 206.072l-0.092 0.001h-276.907c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h274.773c148.058-1.445 267.525-121.805 267.525-270.068 0-0.604-0.002-1.208-0.006-1.811l0 0.093zM739.84 401.92c-58.829-0.722-106.241-48.58-106.241-107.512 0-0.153 0-0.305 0.001-0.458l-0 0.024v-123.307l228.267 231.253zM313.173 797.867c0 0.001 0 0.002 0 0.003 0 17.287-13.894 31.33-31.124 31.57l-0.023 0h-52.48v51.627c0 0.001 0 0.002 0 0.003 0 17.523-14.085 31.757-31.551 31.997l-0.023 0c-17.254-0.239-31.15-14.282-31.15-31.57 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-52.907h-51.627c-16.664-0.68-29.915-14.354-29.915-31.122 0-0.609 0.017-1.214 0.052-1.814l-0.004 0.083c0.462-17.248 14.325-31.111 31.53-31.572l0.043-0.001h51.2v-51.2c0.895-16.27 13.982-29.208 30.232-29.865l0.062-0.002c17.254 0.239 31.15 14.282 31.15 31.57 0 0.151-0.001 0.302-0.003 0.452l0-0.023v52.053h51.627c17.013 0.462 30.685 14.134 31.146 31.103l0.001 0.043z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-files"]},"attrs":[{}],"properties":{"order":6442,"id":522,"name":"add-files","prevSize":32,"code":59698},"setIdx":0,"setId":0,"iconIdx":50},{"icon":{"paths":["M640 578.56c-0.241 17.96-14.856 32.427-32.851 32.427-0.001 0-0.002-0-0.003-0l-70.4 0v70.4c0.016 0.385 0.026 0.837 0.026 1.291 0 17.618-14.050 31.954-31.556 32.415l-0.043 0.001c-0.003 0-0.007 0-0.011 0-17.609 0-31.939-14.036-32.414-31.529l-0.001-0.044-3.413-73.813h-72.96c-17.96-0.241-32.427-14.856-32.427-32.851 0-0.001 0-0.002 0-0.003l-0 0c0.476-18.009 15.189-32.427 33.269-32.427 0.004 0 0.008 0 0.012 0l70.399-0v-70.4c-0.007-0.261-0.012-0.569-0.012-0.878 0-17.698 13.995-32.128 31.522-32.827l0.063-0.002c0.639-0.046 1.385-0.072 2.137-0.072 17.437 0 31.573 14.136 31.573 31.573 0 0.175-0.001 0.351-0.004 0.525l0-0.026v72.533h73.387c0.258-0.007 0.561-0.011 0.865-0.011 18.144 0 32.853 14.709 32.853 32.853 0 0.304-0.004 0.607-0.012 0.909l0.001-0.045zM941.653 372.907c-7.994-150.86-130.439-270.631-281.671-274.34l-0.356-0.007h-210.347c-21.716-27.593-55.093-45.166-92.577-45.227l-0.010-0h-91.733c-115.752 0.243-209.494 94.134-209.494 209.92 0 0.15 0 0.3 0 0.45l-0-0.023v464.64c-0.001 0.255-0.002 0.557-0.002 0.859 0 133.373 108.12 241.493 241.493 241.493 0.601 0 1.201-0.002 1.8-0.007l-0.092 0.001h430.933c133.19-0.242 241.068-108.269 241.068-241.493 0-0.3-0.001-0.6-0.002-0.9l0 0.047v-244.053c-0.853-40.939-11.657-79.172-30.077-112.622l0.637 1.262zM842.24 271.36c-33.053-18.528-72.537-29.44-114.57-29.44-0.071 0-0.143 0-0.214 0l-135.242-0c-0.009 0-0.019 0-0.030 0-49.764 0-92.344-30.756-109.769-74.297l-0.281-0.796v-2.987h178.347c77.547 1.312 144.881 43.802 181.212 106.496l0.548 1.024zM903.253 728.32c0 0.127 0.001 0.278 0.001 0.429 0 97.256-78.599 176.154-175.741 176.638l-0.046 0h-428.8c-97.188-0.484-175.787-79.382-175.787-176.638 0-0.151 0-0.301 0.001-0.452l-0 0.023v-464.64c-0-0.127-0.001-0.277-0.001-0.427 0-79.733 64.515-144.397 144.191-144.639l0.023-0h89.6c22.575 0.056 41.876 14.018 49.792 33.771l0.128 0.362 15.36 38.4c27.085 68.491 92.722 116.057 169.469 116.057 0.421 0 0.842-0.001 1.262-0.004l-0.065 0h135.253c97.188 0.484 175.787 79.382 175.787 176.638 0 0.151-0 0.301-0.001 0.452l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-folder"]},"attrs":[{}],"properties":{"order":6443,"id":521,"name":"add-folder","prevSize":32,"code":59699},"setIdx":0,"setId":0,"iconIdx":51},{"icon":{"paths":["M810.667 309.333h-232.96c-87.712 0.241-158.722 71.401-158.722 159.146 0 0.3 0.001 0.6 0.002 0.9l-0-0.046v341.333c0.242 87.561 71.159 158.478 158.697 158.72l0.023 0h232.96c0.254 0.001 0.554 0.002 0.854 0.002 87.745 0 158.905-71.011 159.146-158.699l0-0.023v-341.333c0.001-0.254 0.002-0.555 0.002-0.856 0-87.894-71.252-159.147-159.147-159.147-0.301 0-0.602 0.001-0.902 0.003l0.046-0zM906.667 810.667c0.002 0.255 0.004 0.556 0.004 0.857 0 52.548-42.599 95.147-95.147 95.147-0.301 0-0.602-0.001-0.903-0.004l0.046 0h-232.96c-52.366-0.24-94.724-42.746-94.724-95.146 0-0.3 0.001-0.6 0.004-0.9l-0 0.046v-341.333c0.241-52.215 42.505-94.479 94.697-94.72l0.023-0h232.96c0.254-0.002 0.554-0.004 0.854-0.004 52.399 0 94.906 42.358 95.146 94.701l0 0.023zM355.413 682.667c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0h-110.080c-0.254 0.001-0.555 0.002-0.856 0.002-87.894 0-159.147-71.252-159.147-159.147 0-0.301 0.001-0.602 0.003-0.902l-0 0.046v-341.333c-0.001-0.254-0.002-0.555-0.002-0.856 0-87.894 71.252-159.147 159.147-159.147 0.301 0 0.602 0.001 0.902 0.003l-0.046-0h234.24c87.158 0.963 157.442 71.843 157.442 159.138 0 0.303-0.001 0.606-0.003 0.909l0-0.047c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c-0.241-52.215-42.505-94.479-94.697-94.72l-0.023-0h-232.96c-0.254-0.002-0.554-0.004-0.854-0.004-52.399 0-94.906 42.358-95.146 94.701l-0 0.023v341.333c-0.002 0.255-0.004 0.556-0.004 0.857 0 52.548 42.599 95.147 95.147 95.147 0.301 0 0.602-0.001 0.903-0.004l-0.046 0h110.080c17.577 0.237 31.763 14.423 32 31.977l0 0.023zM805.547 640c0 17.673-14.327 32-32 32v0h-37.547v37.547c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-37.547h-37.547c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h37.547v-37.547c0-17.673 14.327-32 32-32s32 14.327 32 32v0 37.547h37.547c17.673 0 32 14.327 32 32l-0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-item"]},"attrs":[{}],"properties":{"order":6444,"id":520,"name":"add-item","prevSize":32,"code":59700},"setIdx":0,"setId":0,"iconIdx":52},{"icon":{"paths":["M858.453 184.747c-41.349-41.298-96.282-69.004-157.52-75.838l-1.2-0.109v-5.12c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 3.84h-247.467v-3.84c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 5.12c-133.182 15.298-235.685 127.265-235.947 263.227l-0 0.027v315.733c0.242 146 118.533 264.291 264.51 264.533l0.023 0h318.293c146-0.242 264.291-118.533 264.533-264.51l0-0.023v-315.733c0-0.15 0-0.328 0-0.507 0-72.923-29.507-138.954-77.233-186.806l0.006 0.006zM871.68 687.787c-0.242 110.654-89.879 200.291-200.51 200.533l-0.023 0h-318.293c-110.654-0.242-200.291-89.879-200.533-200.51l-0-0.023v-315.733c0.355-100.008 73.705-182.777 169.532-197.827l1.135-0.147v7.68c0 17.673 14.327 32 32 32s32-14.327 32-32v0-11.093h247.467v10.24c0 17.673 14.327 32 32 32s32-14.327 32-32v0-6.827c96.996 14.076 170.672 96.66 170.672 196.453 0 0.535-0.002 1.069-0.006 1.602l0.001-0.082zM640 532.907c0 0.001 0 0.002 0 0.003 0 16.495-13.372 29.867-29.867 29.867-0.15 0-0.3-0.001-0.449-0.003l0.023 0h-66.56v65.28c0.008 0.262 0.013 0.57 0.013 0.879 0 16.52-13.041 29.995-29.39 30.692l-0.063 0.002c-16.489-0.23-29.823-13.415-30.292-29.823l-0.001-0.044v-67.84h-69.12c-15.34-1.87-27.106-14.814-27.106-30.507s11.766-28.637 26.958-30.492l0.148-0.015h65.707v-65.707c-0.008-0.258-0.012-0.561-0.012-0.865 0-16.435 13.088-29.813 29.409-30.281l0.043-0.001c0.51-0.032 1.106-0.050 1.707-0.050 16.259 0 29.44 13.181 29.44 29.44 0 0.017-0 0.035-0 0.052l0-0.003v67.84h68.267c0.262-0.008 0.571-0.013 0.881-0.013 16.731 0 30.293 13.563 30.293 30.293 0 0.455-0.010 0.907-0.030 1.357l0.002-0.064z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-notepad"]},"attrs":[{}],"properties":{"order":6445,"id":519,"name":"add-notepad","prevSize":32,"code":59701},"setIdx":0,"setId":0,"iconIdx":53},{"icon":{"paths":["M874.667 416c41.14-0.241 74.426-33.526 74.667-74.644l0-0.023v-85.333c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0h-55.893c-13.238-73.134-76.368-127.894-152.309-128l-0.011-0h-436.907c-85.44 0.242-154.638 69.44-154.88 154.857l-0 0.023v607.573c0.242 85.44 69.44 154.638 154.857 154.88l0.023 0h436.907c85.44-0.242 154.638-69.44 154.88-154.857l0-0.023v-143.787h53.333c41.14-0.241 74.426-33.526 74.667-74.644l0-0.023v-85.333c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0h-53.333v-21.333zM885.333 256v85.333c0 5.891-4.776 10.667-10.667 10.667v0h-53.333v-106.667h53.333c5.891 0 10.667 4.776 10.667 10.667v0zM874.667 501.333c5.891 0 10.667 4.776 10.667 10.667v0 85.333c0 5.891-4.776 10.667-10.667 10.667v0h-53.333v-106.667zM757.333 437.333v378.453c0 50.192-40.688 90.88-90.88 90.88v0h-436.907c-50.192-0-90.88-40.688-90.88-90.88l0 0v-607.573c-0-50.192 40.688-90.88 90.88-90.88h436.907c50.094 0.241 90.639 40.786 90.88 90.857l0 0.023v229.12zM448 491.093c64.801 0 117.333-52.532 117.333-117.333s-52.532-117.333-117.333-117.333c-64.801 0-117.333 52.532-117.333 117.333v0c0 64.801 52.532 117.333 117.333 117.333v0zM448 320.427c29.455 0 53.333 23.878 53.333 53.333s-23.878 53.333-53.333 53.333c-29.455 0-53.333-23.878-53.333-53.333v0c0-29.455 23.878-53.333 53.333-53.333v0zM448 522.667c-1.58-0.040-3.44-0.063-5.306-0.063-90.91 0-169.195 54.053-204.469 131.774l-0.572 1.409c-3.257 7.582-5.151 16.407-5.151 25.674 0 13.995 4.319 26.98 11.697 37.697l-0.146-0.224c18.842 23.688 47.663 38.74 80.001 38.74 2.928 0 5.828-0.123 8.694-0.365l-0.374 0.025h256c0.036 0 0.079 0 0.122 0 25.663 0 48.402-12.517 62.445-31.78l0.153-0.22c7.872-11.517 12.57-25.746 12.57-41.073 0-9.473-1.795-18.526-5.063-26.839l0.173 0.498c-35.629-80.299-114.656-135.293-206.527-135.293-1.493 0-2.983 0.015-4.469 0.043l0.223-0.003zM597.333 687.787c-2.527 3.208-6.329 5.313-10.63 5.545l-0.037 0.002h-256c-22.613 0-32.853-6.4-35.413-13.653 26.069-55.423 81.443-93.105 145.618-93.105 1.907 0 3.806 0.033 5.697 0.099l-0.274-0.008c1.617-0.058 3.516-0.092 5.422-0.092 64.175 0 119.549 37.682 145.203 92.126l0.415 0.979c0.683 1.163 1.086 2.561 1.086 4.053s-0.403 2.891-1.107 4.092l0.021-0.038z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["address-book"]},"attrs":[{}],"properties":{"order":6446,"id":518,"name":"address-book","prevSize":32,"code":59702},"setIdx":0,"setId":0,"iconIdx":54},{"icon":{"paths":["M341.333 971.52c-0.509 0.003-1.112 0.005-1.715 0.005-157.603 0-285.506-127.159-286.711-284.477l-0.001-0.115-1.707-345.6c-0.001-0.255-0.001-0.557-0.001-0.858 0-157.516 127.208-285.321 284.496-286.288l0.092-0h347.307c0.513-0.003 1.12-0.005 1.727-0.005 156.917 0 284.349 126.242 286.271 282.704l0.002 0.182v344.747c0.003 0.508 0.005 1.11 0.005 1.712 0 157.517-127.21 285.323-284.499 286.288l-345.266 1.707zM686.933 118.187v0h-347.307c-0.507-0.004-1.107-0.007-1.707-0.007-123.005 0-222.72 99.715-222.72 222.72 0 0.152 0 0.304 0 0.457l-0-0.023v344.747c0.711 122.464 100.152 221.466 222.716 221.466 1.201 0 2.4-0.010 3.597-0.028l-0.18 0.002h347.307c121.903-1.44 220.17-100.597 220.17-222.705 0-0.755-0.004-1.51-0.011-2.263l0.001 0.115v-344.747c-0.966-122.122-100.069-220.776-222.271-221.013l-0.023-0zM640 864.427c-14.321-0.115-27.42-5.252-37.645-13.733l0.099 0.080-90.453-73.387-90.88 73.387c-10.138 8.341-23.252 13.399-37.547 13.399-32.754 0-59.307-26.552-59.307-59.307 0-0.061 0-0.121 0-0.182l-0 0.009v-63.573c-0.002-0.177-0.003-0.387-0.003-0.596 0-18.461 8.435-34.951 21.66-45.828l0.103-0.082 70.4-57.6v-79.36l-142.080 61.867c-7.275 3.338-15.784 5.284-24.747 5.284-33.461 0-60.587-27.126-60.587-60.587 0-0.058 0-0.116 0-0.173l-0 0.009v-67.413c-0-0.021-0-0.047-0-0.072 0-24.75 14.945-46.009 36.304-55.244l0.39-0.15 190.72-83.2v-95.573c-0-0.020-0-0.044-0-0.068 0-23.441 9.452-44.675 24.752-60.097l-0.006 0.006 19.627-20.053c13.683-13.399 32.436-21.668 53.12-21.668s39.437 8.269 53.133 21.681l-0.013-0.013 19.627 20.053c15.295 15.417 24.747 36.651 24.747 60.092 0 0.024-0 0.048-0 0.072l0-0.004v97.28l186.453 81.493c21.748 9.386 36.693 30.645 36.693 55.394 0 0.025-0 0.051-0 0.076l0-0.004v67.413c0 0.049 0 0.107 0 0.164 0 33.461-27.126 60.587-60.587 60.587-8.963 0-17.471-1.946-25.126-5.439l0.379 0.155-138.24-60.16v80.64l64.853 52.907c13.338 11.19 21.759 27.865 21.76 46.506l0 0v63.573c0.001 0.099 0.001 0.216 0.001 0.332 0 23.539-13.813 43.852-33.776 53.275l-0.359 0.152c-6.757 3.952-14.705 6.679-23.187 7.654l-0.28 0.026zM388.267 804.267v0zM430.933 487.253c0.009-0 0.019-0 0.029-0 10.628 0 20.513 3.185 28.75 8.653l-0.192-0.12c13.938 9.276 23.006 24.909 23.040 42.662l0 0.005v104.107c0 0.084 0.001 0.183 0.001 0.282 0 15.992-7.272 30.286-18.689 39.756l-0.085 0.069-77.227 61.867v50.773l85.333-69.973c10.039-8.204 22.999-13.175 37.12-13.175s27.081 4.971 37.226 13.259l-0.106-0.084 85.333 69.973v-54.187l-67.84-53.333c-11.503-9.538-18.774-23.833-18.774-39.825 0-0.099 0-0.198 0.001-0.297l-0 0.015v-107.093c0.034-17.758 9.102-33.39 22.852-42.549l0.188-0.118c8.010-5.361 17.864-8.556 28.464-8.556 7.451 0 14.534 1.579 20.932 4.42l-0.329-0.13 151.040 65.707v-60.587l-192.427-85.333c-18.248-8.228-30.72-26.26-30.72-47.204 0-0.055 0-0.11 0-0.164l-0 0.009v-103.68c0.001-0.090 0.002-0.197 0.002-0.303 0-5.911-2.453-11.248-6.396-15.051l-0.006-0.006-19.627-20.053c-5.12-5.547-9.387-5.547-14.933 0l-19.627 20.053c-3.868 3.974-6.289 9.374-6.4 15.339l-0 0.021v103.68c0 0.046 0 0.101 0 0.156 0 20.945-12.472 38.976-30.395 47.073l-0.325 0.131-198.4 85.333 2.133 59.307 154.88-67.413c5.536-2.278 11.963-3.601 18.698-3.601 1.528 0 3.041 0.068 4.535 0.201l-0.193-0.014z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airplane-square"]},"attrs":[{}],"properties":{"order":6447,"id":517,"name":"airplane-square","prevSize":32,"code":59703},"setIdx":0,"setId":0,"iconIdx":55},{"icon":{"paths":["M682.667 976.213c-16.328-0.055-31.252-6.018-42.757-15.862l0.090 0.075-128-102.4c-0.676-0.607-1.575-0.978-2.56-0.978s-1.884 0.371-2.564 0.981l0.004-0.003-122.88 102.4c-11.818 9.892-27.182 15.899-43.949 15.899-37.938 0-68.693-30.755-68.693-68.693 0-0.189 0.001-0.379 0.002-0.568l-0 0.029v-85.333c-0.019-0.605-0.030-1.316-0.030-2.030 0-20.595 9.063-39.073 23.418-51.663l0.078-0.067 99.413-81.067v-128l-207.36 88.32c-7.921 3.327-17.128 5.261-26.787 5.261-15.030 0-28.967-4.682-40.432-12.667l0.231 0.153c-19.368-12.562-32.001-34.076-32.001-58.541 0-0.119 0-0.238 0.001-0.357l-0 0.018v-90.027c0.118-28.747 17.448-53.418 42.214-64.25l0.453-0.177 263.68-115.2v-136.533c0.007-28.427 11.406-54.191 29.881-72.974l-0.014 0.014 26.453-27.307c16.076-16.587 38.56-26.882 63.449-26.882 0.194 0 0.387 0.001 0.581 0.002l-0.030-0c0.164-0.001 0.357-0.002 0.551-0.002 24.889 0 47.373 10.295 63.427 26.859l0.022 0.023 26.453 27.307c18.461 18.769 29.86 44.533 29.867 72.959l0 0.001v138.667l261.12 113.067c25.218 11.009 42.548 35.679 42.667 64.411l0 0.015v91.307c-0.922 24.551-14.435 45.751-34.235 57.423l-0.325 0.177c-10.985 7.347-24.496 11.724-39.030 11.724-10.104 0-19.715-2.116-28.412-5.929l0.455 0.178-202.24-87.040v133.547l90.453 75.52c15.42 12.693 25.176 31.783 25.176 53.151 0 0.214-0.001 0.428-0.003 0.642l0-0.033v85.333c0.001 0.148 0.002 0.323 0.002 0.498 0 27.167-15.869 50.628-38.844 61.618l-0.411 0.177c-8.352 4.114-18.152 6.61-28.514 6.825l-0.073 0.001zM399.787 489.813c0.030-0 0.066-0 0.102-0 11.91 0 22.963 3.669 32.090 9.938l-0.193-0.125c16.013 10.408 26.454 28.211 26.454 48.453 0 0.066-0 0.132-0 0.197l0-0.010v140.373c0.001 0.148 0.002 0.323 0.002 0.497 0 18.143-8.266 34.355-21.237 45.077l-0.098 0.079-101.547 82.773c-0.288 0.559-0.456 1.22-0.456 1.92s0.169 1.361 0.468 1.944l-0.011-0.024v85.333c-0 0.007-0 0.015-0 0.024 0 2.828 2.292 5.12 5.12 5.12 1.314 0 2.512-0.495 3.418-1.308l-0.005 0.004 125.44-99.413c11.576-9.33 26.462-14.976 42.667-14.976s31.091 5.646 42.798 15.078l-0.131-0.102 125.44 102.4c0.902 0.809 2.1 1.304 3.413 1.304 2.828 0 5.12-2.292 5.12-5.12 0-0.008-0-0.017-0-0.025l0 0.001v-85.333c0.288-0.559 0.456-1.22 0.456-1.92s-0.169-1.361-0.468-1.944l0.011 0.024-93.867-76.373c-13.073-10.878-21.334-27.152-21.334-45.356 0-0.105 0-0.209 0.001-0.314l-0 0.016v-147.2c-0.030-0.694-0.047-1.507-0.047-2.325 0-19.172 9.367-36.157 23.774-46.627l0.166-0.115c8.961-6.11 20.027-9.756 31.944-9.756 8.524 0 16.611 1.865 23.878 5.21l-0.355-0.147 209.92 91.307c0.868 0.468 1.899 0.744 2.995 0.744 3.535 0 6.4-2.865 6.4-6.4 0-0.112-0.003-0.222-0.008-0.333l0.001 0.015v-91.307c-0.147-2.706-1.848-4.98-4.221-5.957l-0.045-0.017-261.973-113.92c-20.772-9.271-34.987-29.743-34.987-53.536 0-0.079 0-0.157 0-0.236l-0 0.012v-142.507c-0.268-10.926-4.602-20.791-11.541-28.183l0.021 0.023-26.88-27.307c-4.614-4.525-10.941-7.318-17.92-7.318s-13.306 2.793-17.924 7.322l0.004-0.004-27.307 27.307c-7.362 7.136-11.935 17.113-11.947 28.158l-0 0.002v140.373c0 0.023 0 0.050 0 0.077 0 23.717-14.229 44.111-34.615 53.11l-0.371 0.146-266.667 116.48c-2.184 1.177-3.68 3.384-3.839 5.953l-0.001 0.021v91.307c-0.005 0.095-0.008 0.206-0.008 0.317 0 3.535 2.865 6.4 6.4 6.4 1.096 0 2.127-0.275 3.029-0.761l-0.034 0.017 213.333-93.44c7.040-3.242 15.275-5.133 23.952-5.133 0.429 0 0.858 0.005 1.285 0.014l-0.064-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airplane"]},"attrs":[{}],"properties":{"order":6448,"id":516,"name":"airplane","prevSize":32,"code":59704},"setIdx":0,"setId":0,"iconIdx":56},{"icon":{"paths":["M733.013 53.333h-442.027c-119.47 0-216.32 96.85-216.32 216.32v0 484.693c0 119.47 96.85 216.32 216.32 216.32v0h442.027c119.47 0 216.32-96.85 216.32-216.32v0-484.693c0-119.47-96.85-216.32-216.32-216.32v0zM290.987 117.333h442.027c84.124 0 152.32 68.196 152.32 152.32v0 66.133h-114.773c-14.833-59.437-67.57-102.843-130.514-103.253l-0.046-0h-256c-62.99 0.41-115.728 43.816-130.363 102.322l-0.197 0.932h-114.773v-66.133c0-84.124 68.196-152.32 152.32-152.32v-0zM710.827 367.787c0 0 0 0.001 0 0.001 0 39.202-31.658 71.010-70.804 71.252l-0.023 0h-256c-33.718-6.061-58.97-35.175-58.97-70.187s25.252-64.126 58.537-70.122l0.433-0.065h256c38.433 0.22 69.644 30.834 70.824 69.011l0.003 0.109zM733.013 906.667h-442.027c-84.124 0-152.32-68.196-152.32-152.32v0-354.56h114.773c14.833 59.437 67.57 102.843 130.514 103.253l0.046 0h256c63.165-0.206 116.118-43.678 130.789-102.321l0.197-0.932h114.773v354.56c0 0 0 0 0 0.001 0 84.124-68.196 152.32-152.32 152.32-0.15 0-0.3-0-0.45-0.001l0.023 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airpod"]},"attrs":[{}],"properties":{"order":6449,"id":515,"name":"airpod","prevSize":32,"code":59705},"setIdx":0,"setId":0,"iconIdx":57},{"icon":{"paths":["M631.467 396.373h-238.933c-64.94 0.242-117.519 52.82-117.76 117.737l-0 0.023v239.787c0.295 61.804 48.154 112.336 108.834 116.883l0.393 0.024v55.893c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-55.040h85.333v55.040c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-55.893c60.523-5.212 107.708-55.512 107.947-116.883l0-0.024v-239.787c-0.233-64.495-52.090-116.801-116.39-117.759l-0.090-0.001zM682.667 753.92c0 28.748-23.305 52.053-52.053 52.053h-238.080c-28.379-0.48-51.2-23.598-51.2-52.046 0-0.002 0-0.005 0-0.007l-0 0v-239.787c-0-0.002-0-0.005-0-0.007 0-28.448 22.821-51.566 51.155-52.046l0.045-0.001h238.933c28.379 0.48 51.2 23.598 51.2 52.046 0 0.002-0 0.005-0 0.007l0-0zM205.227 516.267v175.787c0 24.271-19.676 43.947-43.947 43.947s-43.947-19.676-43.947-43.947h0v-175.787c-0-24.271 19.676-43.947 43.947-43.947s43.947 19.676 43.947 43.947v0zM906.667 516.267v175.787c0 24.271-19.676 43.947-43.947 43.947s-43.947-19.676-43.947-43.947h0v-175.787c-0-24.271 19.676-43.947 43.947-43.947s43.947 19.676 43.947 43.947v0zM410.027 348.16h177.067c0.517 0.009 1.126 0.014 1.737 0.014 57.78 0 104.786-46.125 106.207-103.562l0.003-0.132c-5.027-104.618-91.071-187.535-196.48-187.535s-191.453 82.918-196.463 187.086l-0.017 0.449c1.184 57.524 48.096 103.702 105.792 103.702 0.758 0 1.513-0.008 2.267-0.024l-0.113 0.002zM498.347 119.040c0.889-0.022 1.936-0.035 2.987-0.035 70.692 0 128 57.308 128 128 0 0.012-0 0.025-0 0.037l0-0.002c-2.643 21.258-20.598 37.548-42.358 37.548-0.108 0-0.217-0-0.325-0.001l0.017 0h-176.64c-0.077 0.001-0.168 0.001-0.259 0.001-21.911 0-39.964-16.516-42.39-37.778l-0.018-0.196c0.223-70.524 57.445-127.608 127.999-127.608 1.050 0 2.098 0.013 3.142 0.038l-0.155-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["android"]},"attrs":[{}],"properties":{"order":6450,"id":514,"name":"android","prevSize":32,"code":59706},"setIdx":0,"setId":0,"iconIdx":58},{"icon":{"paths":["M507.307 970.667c-0.023 0-0.050 0-0.078 0-32.859 0-63.608-9.038-89.895-24.763l0.799 0.443-193.707-113.067c-47.733-28.923-80.352-78.662-85.288-136.305l-0.045-0.655-33.28-364.373c-0.405-4.497-0.636-9.727-0.636-15.011 0-74.924 46.424-139.006 112.075-165.049l1.2-0.42 225.707-85.333c18.99-7.5 40.987-11.848 64-11.848s45.010 4.348 65.215 12.268l-1.215-0.419 225.707 85.333c65.972 26.881 111.626 90.519 111.626 164.819 0 5.514-0.251 10.968-0.743 16.354l0.051-0.693-32.427 364.373c-5.054 58.276-37.649 107.987-84.55 136.517l-0.784 0.443-193.707 113.067c-25.489 15.284-56.239 24.322-89.1 24.322-0.326 0-0.652-0.001-0.977-0.003l0.050 0zM507.307 117.333c-14.414 0.055-28.192 2.71-40.911 7.52l0.804-0.267-225.707 88.747c-42.033 17.258-71.094 57.873-71.094 105.276 0 2.741 0.097 5.46 0.288 8.152l-0.021-0.362 32.427 364.373c3.894 36.519 24.796 67.446 54.52 85.048l0.52 0.285 193.707 113.493c16.258 9.641 35.837 15.338 56.747 15.338s40.489-5.698 57.27-15.625l-0.523 0.286 193.707-113.493c30.151-17.986 51.006-48.861 54.994-84.824l0.046-0.51 32-364.373c0.175-2.346 0.274-5.082 0.274-7.841 0-47.977-30.109-88.922-72.463-104.969l-0.772-0.257-225.707-85.333c-11.704-5.624-25.322-9.428-39.679-10.638l-0.428-0.029zM735.573 676.267l-199.253-420.267c-5.214-11.017-16.24-18.501-29.013-18.501s-23.799 7.484-28.93 18.307l-0.083 0.194-191.573 420.693c-1.847 3.921-2.925 8.517-2.925 13.365 0 13.019 7.775 24.223 18.935 29.22l0.203 0.081c3.711 1.886 8.091 2.991 12.73 2.991 0.175 0 0.349-0.002 0.523-0.005l-0.026 0c12.83-0.052 23.873-7.646 28.931-18.575l0.082-0.198 52.48-115.2h225.28l55.040 115.627c4.638 12.32 16.325 20.926 30.023 20.926 17.673 0 32-14.327 32-32 0-5.986-1.643-11.587-4.504-16.379l0.081 0.146zM426.667 523.947l81.067-178.347 85.333 178.347z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["angular"]},"attrs":[{}],"properties":{"order":6451,"id":513,"name":"angular","prevSize":32,"code":59707},"setIdx":0,"setId":0,"iconIdx":59},{"icon":{"paths":["M551.68 313.6c-0.077 0-0.168 0.001-0.258 0.001-16.252 0-31.108-5.978-42.488-15.855l0.080 0.068c-13.268-11.188-21.638-27.821-21.638-46.409 0-2.138 0.111-4.251 0.327-6.332l-0.022 0.26c6.060-45.234 24.561-85.309 51.905-117.672l-0.279 0.338c26.516-31.333 60.406-55.616 99.033-70.274l1.66-0.553c6.47-2.469 13.953-3.899 21.77-3.899 15.101 0 28.955 5.337 39.78 14.227l-0.109-0.087c15.072 11.902 24.658 30.176 24.658 50.688 0 3.494-0.278 6.923-0.814 10.267l0.049-0.368c-6.547 42.484-23.503 80.142-48.17 111.438l0.384-0.505c-27.567 34.984-65.231 60.901-108.573 73.44l-1.507 0.373c-3.278 0.678-7.045 1.065-10.903 1.065-1.719 0-3.42-0.077-5.1-0.228l0.217 0.016zM662.613 117.333c-29.592 11.655-54.424 29.905-73.572 53.033l-0.241 0.3c-19.294 22.562-32.568 50.811-37.018 81.907l-0.102 0.867c30.644-11.036 56.329-29.573 75.698-53.443l0.249-0.317c18.076-22.792 30.545-50.808 34.882-81.441l0.105-0.906zM396.373 970.667v0c-73.813 0-128-66.987-163.413-124.587-95.573-146.773-115.2-331.093-46.080-438.187 40.534-66.523 111.028-111.312 192.26-115.602l0.593-0.025c34.232 1.021 66.493 8.295 96.061 20.712l-1.768-0.659c17.006 7.672 36.76 12.72 57.526 14.054l0.501 0.026c23.896-1.514 46.121-7.018 66.569-15.856l-1.289 0.496c27.75-11.894 60.044-18.809 93.953-18.809 1.47 0 2.937 0.013 4.401 0.039l-0.22-0.003c46.43 4.24 88.038 22.054 121.58 49.388l-0.407-0.321c17.267 13.44 28.52 33.905 29.435 57.028l0.005 0.146c0.064 1.14 0.101 2.473 0.101 3.815 0 20.898-8.89 39.719-23.095 52.889l-0.046 0.042c-26.784 25.742-43.423 61.868-43.423 101.88 0 5.143 0.275 10.221 0.811 15.221l-0.054-0.621c3.722 46.224 28.163 86.063 63.923 110.607l0.503 0.326c20.807 13.387 34.393 36.427 34.393 62.64 0 11.497-2.614 22.384-7.279 32.099l0.193-0.446c-12.215 24.962-24.421 45.921-37.923 65.934l1.229-1.934c-42.667 64.427-94.293 130.133-165.973 130.987-0.57 0.008-1.243 0.013-1.917 0.013-25.893 0-50.119-7.141-70.814-19.561l0.625 0.348c-18.49-8.891-40.2-14.086-63.123-14.086-0.458 0-0.916 0.002-1.374 0.006l0.070-0c-0.372-0.003-0.812-0.005-1.253-0.005-23.847 0-46.329 5.84-66.096 16.167l0.789-0.375c-20.046 10.226-43.721 16.218-68.796 16.218-0.414 0-0.827-0.002-1.24-0.005l0.063 0zM379.733 356.267c-59.721 3.538-111.028 36.534-139.933 84.545l-0.44 0.788c-46.933 72.533-46.507 226.56 45.653 368.213 29.013 42.667 67.413 95.147 110.507 95.573 1.113 0.047 2.419 0.074 3.732 0.074 14.945 0 29.074-3.493 41.616-9.706l-0.548 0.245c26.367-13.721 57.575-21.769 90.664-21.769 0.676 0 1.352 0.003 2.026 0.010l-0.103-0.001c0.62-0.007 1.352-0.011 2.085-0.011 32.601 0 63.32 8.053 90.278 22.279l-1.056-0.508c12.403 6.398 26.903 10.67 42.257 11.92l0.409 0.027c42.667 0 82.347-54.613 113.067-101.973 11.264-16.305 22.201-35.038 31.718-54.589l1.135-2.584c0.547-1.125 0.867-2.448 0.867-3.845 0-3.558-2.074-6.632-5.080-8.079l-0.054-0.023c-52.826-35.349-88.682-92.519-94.659-158.318l-0.061-0.829c-0.683-6.279-1.073-13.562-1.073-20.936 0-59.042 24.984-112.248 64.956-149.623l0.116-0.108c1.63-1.34 2.662-3.357 2.662-5.615 0-0.428-0.037-0.847-0.108-1.255l0.006 0.043c0-0.012 0-0.025 0-0.039 0-3.726-1.647-7.067-4.252-9.335l-0.015-0.013c-23.425-18.912-52.645-31.543-84.623-34.926l-0.71-0.061c-26.274 0.231-51.173 5.861-73.725 15.83l1.192-0.47c-25.121 10.568-54.245 17.332-84.765 18.752l-0.568 0.021c-29.067-1.16-56.325-7.639-81.244-18.485l1.457 0.565c-21.622-9.298-46.735-15.030-73.096-15.78l-0.29-0.007z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["apple"]},"attrs":[{}],"properties":{"order":6452,"id":512,"name":"apple","prevSize":32,"code":59708},"setIdx":0,"setId":0,"iconIdx":60},{"icon":{"paths":["M805.973 977.92c-19.998-0.114-38.679-5.649-54.68-15.206l0.493 0.273-217.6-125.013c-6.12-3.594-13.479-5.716-21.333-5.716s-15.214 2.123-21.535 5.825l0.201-0.109-217.6 125.013c-15.544 9.128-34.236 14.519-54.187 14.519-59.853 0-108.373-48.52-108.373-108.373 0-0.004 0-0.009 0-0.013l-0 0.001v-601.173c0.242-122.436 99.431-221.624 221.844-221.867l0.023-0h360.96c122.522 0.241 221.809 99.378 222.293 221.82l0 0.047v601.173c-0.713 59.799-49.001 108.087-108.732 108.799l-0.068 0.001zM512 768c0.176-0.001 0.385-0.002 0.593-0.002 19.751 0 38.243 5.39 54.085 14.778l-0.492-0.27 217.6 125.013c6.375 3.699 14.027 5.881 22.19 5.881 24.56 0 44.504-19.763 44.797-44.254l0-0.028v-601.173c-0.243-87.239-71.020-157.867-158.293-157.867-0 0-0 0-0.001 0l-360.96-0c-87.187-0-157.867 70.679-157.867 157.867v601.173c-0.073 0.936-0.115 2.028-0.115 3.129 0 23.564 19.103 42.667 42.667 42.667 8.965 0 17.285-2.765 24.152-7.489l-0.144 0.094 217.6-125.013c15.351-9.119 33.843-14.508 53.593-14.508 0.209 0 0.417 0.001 0.625 0.002l-0.032-0zM495.36 566.613l170.667-170.667c9.475-5.672 15.72-15.881 15.72-27.549 0-17.673-14.327-32-32-32-10.907 0-20.54 5.457-26.317 13.79l-0.069 0.106-149.333 148.053-44.8-42.667c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-6.587 5.887-10.714 14.408-10.714 23.893s4.127 18.006 10.683 23.866l0.031 0.027 67.413 63.573c5.596 5.516 13.277 8.932 21.755 8.96l0.005 0c8.687-0.079 16.523-3.654 22.184-9.384l0.003-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-tick"]},"attrs":[{}],"properties":{"order":6453,"id":511,"name":"archive-tick","prevSize":32,"code":59709},"setIdx":0,"setId":0,"iconIdx":61},{"icon":{"paths":["M829.013 51.2h-634.027c-78.233-0-141.653 63.42-141.653 141.653h-0v128c0.152 65.91 45.159 121.265 106.105 137.168l0.988 0.219v386.56c0 70.692 57.308 128 128 128v0h446.293c70.692 0 128-57.308 128-128v0-387.413c62.295-15.799 107.691-71.256 107.947-137.358l0-0.029v-128c-0.484-77.865-63.718-140.8-141.651-140.8-0.001 0-0.002 0-0.003 0l0-0zM734.72 908.8h-445.44c-35.818-0-64.853-29.036-64.853-64.853v0-384h575.147v384c-0 35.818-29.036 64.853-64.853 64.853l0 0zM905.387 320c-0.077 38.386-27.842 70.265-64.383 76.731l-0.471 0.069h-658.347c-37.011-6.535-64.776-38.414-64.853-76.792l-0-0.008v-128c0.717-42.423 35.159-76.566 77.631-76.8l0.023-0h634.027c42.79 0.241 77.413 34.864 77.653 77.63l0 0.023zM606.72 632.747h-153.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h153.173c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive"]},"attrs":[{}],"properties":{"order":6454,"id":510,"name":"archive","prevSize":32,"code":59710},"setIdx":0,"setId":0,"iconIdx":62},{"icon":{"paths":["M755.627 141.653h-368.213c-100.986 1.667-182.211 83.923-182.211 185.15 0 1.058 0.009 2.115 0.027 3.169l-0.002-0.159v213.333l-66.987-69.12c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 123.307 128c5.695 6.049 13.755 9.815 22.695 9.815 0.121 0 0.242-0.001 0.363-0.002l-0.018 0c0.048 0 0.105 0 0.162 0 8.997 0 17.115-3.763 22.866-9.801l0.012-0.013 122.88-128c5.682-5.835 9.186-13.815 9.186-22.613s-3.504-16.778-9.193-22.62l0.007 0.007c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0-72.96 73.813v-218.027c-0.008-0.513-0.012-1.118-0.012-1.725 0-66.883 53.622-121.242 120.22-122.433l0.112-0.002h368.213c66.524 1.428 119.906 55.694 119.906 122.427 0 0.609-0.004 1.218-0.013 1.825l0.001-0.092v380.16c0.008 0.513 0.012 1.119 0.012 1.725 0 66.648-53.431 120.816-119.794 122.007l-0.112 0.002h-368.213c-51.234-0.137-94.9-32.389-111.941-77.68l-0.273-0.826c-4.458-11.818-15.673-20.070-28.815-20.070-4.065 0-7.946 0.79-11.498 2.224l0.206-0.074c-11.883 4.988-20.077 16.529-20.077 29.983 0 4.582 0.95 8.942 2.665 12.894l-0.081-0.21c26.158 70.057 92.508 119.040 170.298 119.040 0.13 0 0.259-0 0.389-0l-0.020 0h368.213c100.993-1.658 182.227-83.917 182.227-185.15 0-1.358-0.015-2.714-0.044-4.065l0.003 0.202v-380.16c0.011-0.766 0.018-1.671 0.018-2.577 0-101.61-81.653-184.149-182.923-185.581l-0.135-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-circle-left"]},"attrs":[{}],"properties":{"order":6455,"id":509,"name":"arrow-circle-left","prevSize":32,"code":59711},"setIdx":0,"setId":0,"iconIdx":63},{"icon":{"paths":["M884.053 474.027l-66.987 69.973v-213.333c0.012-0.771 0.018-1.68 0.018-2.591 0-101.31-81.172-183.662-182.027-185.566l-0.178-0.003h-368.213c-100.609 2.146-181.346 84.211-181.346 185.134 0 0.764 0.005 1.527 0.014 2.289l-0.001-0.116v380.16c-0.001 0.265-0.002 0.579-0.002 0.893 0 100.919 80.732 182.982 181.135 185.13l0.2 0.003h368.213c0.11 0 0.239 0 0.369 0 77.79 0 144.14-48.983 169.887-117.789l0.411-1.252c1.633-3.742 2.584-8.102 2.584-12.684 0-13.454-8.194-24.995-19.863-29.903l-0.213-0.080c-3.345-1.361-7.226-2.15-11.292-2.15-13.142 0-24.357 8.253-28.745 19.859l-0.070 0.211c-17.263 45.986-60.723 78.182-111.747 78.506l-0.040 0h-369.493c-66.661-0.955-120.332-55.217-120.332-122.015 0-0.604 0.004-1.207 0.013-1.81l-0.001 0.091v-377.173c-0.008-0.513-0.012-1.118-0.012-1.725 0-66.883 53.622-121.242 120.22-122.433l0.112-0.002h368.213c66.524 1.428 119.906 55.694 119.906 122.427 0 0.609-0.004 1.218-0.013 1.825l0.001-0.092v218.027l-72.107-73.813c-5.214-3.837-11.763-6.141-18.849-6.141-17.673 0-32 14.327-32 32 0 6.222 1.776 12.029 4.848 16.942l-0.078-0.134 122.88 128c5.695 6.049 13.755 9.815 22.695 9.815 0.121 0 0.242-0.001 0.363-0.002l-0.018 0c0.048 0 0.105 0 0.162 0 8.997 0 17.115-3.763 22.866-9.801l0.012-0.013 122.88-128c5.682-5.835 9.186-13.815 9.186-22.613s-3.504-16.778-9.193-22.62l0.007 0.007c-5.566-4.806-12.871-7.734-20.861-7.734-9.286 0-17.648 3.955-23.493 10.273l-0.019 0.021z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-circle-right"]},"attrs":[{}],"properties":{"order":6456,"id":508,"name":"arrow-circle-right","prevSize":32,"code":59712},"setIdx":0,"setId":0,"iconIdx":64},{"icon":{"paths":["M784.213 200.96h-179.2c-17.673 0-32 14.327-32 32s14.327 32 32 32v0 0h103.253l-446.72 451.413v-104.533c0-0.001 0-0.002 0-0.003 0-17.759-14.276-32.183-31.977-32.424l-0.023-0c-0.525-0.033-1.139-0.051-1.758-0.051-16.731 0-30.293 13.563-30.293 30.293 0 0.618 0.019 1.232 0.055 1.842l-0.004-0.084v179.2c0.082 8.956 3.644 17.064 9.397 23.051l-0.011-0.011c5.786 5.793 13.78 9.379 22.612 9.387l4.268 0 175.36-2.133c0.003 0 0.007 0 0.012 0 17.437 0 31.573-14.136 31.573-31.573 0-0.3-0.004-0.599-0.013-0.897l0.001 0.044c-0.241-17.489-14.474-31.573-31.997-31.573-0.001 0-0.002 0-0.003 0l-97.707-0 440.747-443.307v98.56c-0 0.003-0 0.007-0 0.011 0 17.609 14.036 31.939 31.529 32.414l0.044 0.001c17.577-0.237 31.763-14.423 32-31.977l0-0.023v-179.2c0.002-0.118 0.002-0.257 0.002-0.396 0-8.845-3.588-16.851-9.389-22.644l-0-0c-5.806-5.235-13.325-8.671-21.623-9.377l-0.137-0.009z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-diagonal"]},"attrs":[{}],"properties":{"order":6457,"id":507,"name":"arrow-diagonal","prevSize":32,"code":59713},"setIdx":0,"setId":0,"iconIdx":65},{"icon":{"paths":["M761.6 691.2c0 23.564-19.103 42.667-42.667 42.667v0h-358.4c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h256l-285.867-285.44c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002 285.44 285.013v-256c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-left"]},"attrs":[{}],"properties":{"order":6458,"id":506,"name":"arrow-down-left","prevSize":32,"code":59714},"setIdx":0,"setId":0,"iconIdx":66},{"icon":{"paths":["M898.56 480c-17.538 0.476-31.573 14.807-31.573 32.415 0 0.004 0 0.008 0 0.012l-0-0.001v92.587l-226.987-221.013c-6.036-5.76-14.231-9.305-23.253-9.305s-17.217 3.545-23.267 9.318l0.013-0.013-166.827 154.88-263.68-261.12c-6.016-5.983-14.309-9.682-23.467-9.682s-17.451 3.699-23.468 9.683l0.001-0.001c-6.008 6.084-9.719 14.449-9.719 23.68s3.711 17.596 9.723 23.683l-0.003-0.003 288 283.733c6.036 5.76 14.231 9.305 23.253 9.305s17.217-3.545 23.267-9.318l-0.013 0.013 164.693-157.44 220.16 213.333h-121.173c-17.187 1.031-30.93 14.48-32.417 31.443l-0.009 0.131c-0.002 0.128-0.003 0.278-0.003 0.429 0 17.524 14.086 31.758 31.554 31.997l187.329 2.134c8.833-0.008 16.828-3.594 22.613-9.386l0-0c5.8-5.529 9.407-13.314 9.407-21.942 0-0.386-0.007-0.771-0.022-1.154l0.002 0.055v-186.88c-0.451-17.558-14.792-31.619-32.417-31.619-0.604 0-1.204 0.017-1.8 0.049l0.083-0.004z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-refraction"]},"attrs":[{}],"properties":{"order":6459,"id":505,"name":"arrow-down-refraction","prevSize":32,"code":59715},"setIdx":0,"setId":0,"iconIdx":67},{"icon":{"paths":["M740.267 704.427c0 23.564-19.103 42.667-42.667 42.667v0h-356.267c-5.873-0.073-11.435-1.322-16.489-3.52l0.275 0.107c-11.841-3.648-21.287-11.98-26.343-22.778l-0.11-0.262c-0.494-2.437-0.777-5.239-0.777-8.107s0.283-5.669 0.822-8.378l-0.045 0.272v-358.4c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 256l283.307-286.293c7.753-7.753 18.463-12.548 30.293-12.548 23.661 0 42.841 19.181 42.841 42.841 0 11.83-4.795 22.541-12.548 30.293l-285.44 285.44h256c23.194 0.479 41.813 19.394 41.813 42.658 0 0.003-0 0.006-0 0.009l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-right"]},"attrs":[{}],"properties":{"order":6460,"id":504,"name":"arrow-down-right","prevSize":32,"code":59716},"setIdx":0,"setId":0,"iconIdx":68},{"icon":{"paths":["M730.453 484.267l-180.48 180.48v-403.627c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 403.627l-180.48-180.48c-7.753-7.753-18.463-12.548-30.293-12.548-23.661 0-42.841 19.181-42.841 42.841 0 11.83 4.795 22.541 12.548 30.293l0 0 253.44 253.013c3.804 3.896 8.336 7.062 13.38 9.279l0.274 0.107c4.822 1.892 10.406 2.988 16.246 2.988 0.139 0 0.277-0.001 0.415-0.002l-0.021 0c0.155 0.002 0.339 0.003 0.523 0.003 5.649 0 11.042-1.098 15.977-3.092l-0.286 0.102c5.317-2.325 9.849-5.491 13.645-9.378l0.008-0.008 253.44-253.013c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down"]},"attrs":[{}],"properties":{"order":6461,"id":503,"name":"arrow-down","prevSize":32,"code":59717},"setIdx":0,"setId":0,"iconIdx":69},{"icon":{"paths":["M760.32 469.333h-403.627l180.48-180.48c4.464-6.637 7.124-14.81 7.124-23.605 0-23.564-19.103-42.667-42.667-42.667-9.226 0-17.768 2.928-24.748 7.907l0.13-0.088-253.44 253.44c-6.366 7.409-10.242 17.118-10.242 27.733 0 0.15 0.001 0.3 0.002 0.45l-0-0.023c0.012 6.014 1.266 11.732 3.52 16.916l-0.107-0.276c2.2 5.299 5.227 9.831 8.968 13.662l-0.008-0.008 253.44 253.44c7.715 7.662 18.344 12.397 30.080 12.397 23.577 0 42.691-19.113 42.691-42.691 0-11.842-4.821-22.557-12.608-30.291l-0.002-0.002-182.613-180.48h403.627c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-left"]},"attrs":[{}],"properties":{"order":6462,"id":502,"name":"arrow-left","prevSize":32,"code":59718},"setIdx":0,"setId":0,"iconIdx":70},{"icon":{"paths":["M927.573 243.627c5.585 5.878 9.021 13.844 9.021 22.613s-3.436 16.736-9.034 22.627l0.013-0.014-112.64 116.907c-5.71 5.659-13.517 9.211-22.153 9.386l-0.033 0.001c-8.531-0.198-16.195-3.75-21.757-9.383l-0.003-0.003c-5.585-5.878-9.021-13.844-9.021-22.613s3.436-16.736 9.034-22.627l-0.013 0.014 56.32-58.453h-113.92l-469.333 482.133c-5.459 5.785-13.179 9.387-21.739 9.387-0.007 0-0.015-0-0.022-0l-108.799 0c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h95.573l210.773-217.6-210.773-216.32h-95.573c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h108.373c0.006-0 0.014-0 0.021-0 8.561 0 16.28 3.602 21.725 9.372l0.014 0.015 220.16 228.267 213.333-221.013c5.732-5.624 13.525-9.165 22.144-9.386l0.042-0.001h132.267l-56.32-62.72c-5.585-5.878-9.021-13.844-9.021-22.613s3.436-16.736 9.034-22.627l-0.013 0.014c5.473-5.43 13.011-8.786 21.333-8.786s15.86 3.356 21.335 8.788l-0.002-0.002zM818.347 618.24c-5.518-5.331-13.042-8.616-21.333-8.616s-15.816 3.285-21.342 8.624l0.009-0.008c-5.585 5.878-9.021 13.844-9.021 22.613s3.436 16.736 9.034 22.627l-0.013-0.014 56.32 58.453h-101.973l-106.667-109.653c-5.473-5.43-13.011-8.786-21.333-8.786s-15.86 3.356-21.335 8.788l0.002-0.002c-5.682 5.835-9.186 13.815-9.186 22.613s3.504 16.778 9.193 22.62l-0.007-0.007 116.053 119.040c5.313 5.771 12.901 9.376 21.331 9.387l113.495 0-59.733 61.867c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.321 5.78 12.924 9.389 21.37 9.389 0.137 0 0.274-0.001 0.411-0.003l-0.021 0c0.006 0 0.014 0 0.021 0 8.561 0 16.28-3.602 21.725-9.372l0.014-0.015 112.64-116.907c5.585-5.878 9.021-13.844 9.021-22.613s-3.436-16.736-9.034-22.627l0.013 0.014z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-mix"]},"attrs":[{}],"properties":{"order":6463,"id":501,"name":"arrow-mix","prevSize":32,"code":59719},"setIdx":0,"setId":0,"iconIdx":71},{"icon":{"paths":["M935.68 733.44c0 0.001 0 0.002 0 0.003 0 17.523-14.085 31.757-31.551 31.997l-0.023 0-713.813 2.56 68.693 73.387c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.663 5.068-13.101 8.256-21.277 8.532l-0.056 0.001c-9.795-0.319-18.466-4.878-24.276-11.892l-0.044-0.055-118.187-128c-5.057-5.635-8.149-13.123-8.149-21.333s3.092-15.698 8.175-21.363l-0.026 0.030 115.2-115.2c5.902-5.708 13.954-9.225 22.827-9.225s16.924 3.517 22.836 9.234l-0.009-0.009c5.144 5.599 8.298 13.098 8.298 21.333s-3.153 15.735-8.318 21.356l0.021-0.023-61.44 62.293h709.12c0.003-0 0.007-0 0.011-0 17.373 0 31.513 13.845 31.988 31.103l0.001 0.044zM807.68 186.027c-5.518-5.331-13.042-8.616-21.333-8.616s-15.816 3.285-21.342 8.624l0.009-0.008c-5.057 5.635-8.149 13.123-8.149 21.333s3.092 15.698 8.175 21.363l-0.026-0.030 63.147 64h-711.68c-16.014 1.912-28.311 15.413-28.311 31.787s12.297 29.874 28.159 31.772l0.152 0.015h715.093l-63.573 66.56c-6.289 5.79-10.215 14.063-10.215 23.253s3.926 17.463 10.193 23.233l0.022 0.020c5.526 6.009 13.413 9.773 22.179 9.813l0.007 0c8.153-0.478 15.363-4.157 20.457-9.788l0.023-0.026 114.347-114.773c5.793-5.786 9.379-13.78 9.387-22.612l0-0.002c-0.131-8.874-3.507-16.936-8.99-23.075l0.030 0.035z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-right-left"]},"attrs":[{}],"properties":{"order":6464,"id":500,"name":"arrow-right-left","prevSize":32,"code":59720},"setIdx":0,"setId":0,"iconIdx":72},{"icon":{"paths":["M800 530.347c2.080-4.852 3.289-10.498 3.289-16.427s-1.209-11.575-3.394-16.706l0.106 0.279c-2.511-5.251-5.652-9.756-9.404-13.672l0.018 0.018-253.44-253.44c-7.412-6.377-17.129-10.259-27.753-10.259-23.564 0-42.667 19.103-42.667 42.667 0 10.624 3.883 20.341 10.307 27.809l-0.047-0.056 180.48 178.773h-401.493c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h403.627l-180.48 180.48c-7.789 7.736-12.611 18.452-12.611 30.293 0 23.577 19.113 42.691 42.691 42.691 11.736 0 22.365-4.735 30.082-12.4l-0.002 0.002 253.44-253.44c2.817-3.45 5.246-7.384 7.123-11.617l0.13-0.329z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-right"]},"attrs":[{}],"properties":{"order":6465,"id":499,"name":"arrow-right","prevSize":32,"code":59721},"setIdx":0,"setId":0,"iconIdx":73},{"icon":{"paths":["M795.307 444.587v0c17.673 0 32-14.327 32-32v0l2.133-179.2c-0.008-8.833-3.594-16.828-9.386-22.613l-0-0c-5.182-5.814-12.691-9.457-21.052-9.457-0.7 0-1.393 0.026-2.080 0.076l0.092-0.005h-179.2c-0.003-0-0.007-0-0.012-0-17.437 0-31.573 14.136-31.573 31.573 0 0.3 0.004 0.599 0.013 0.897l-0.001-0.044c0.241 17.489 14.474 31.573 31.997 31.573 0.001 0 0.002-0 0.003-0l90.453 0-196.693 197.973-195.84-197.12h89.6c0.001 0 0.002 0 0.003 0 17.523 0 31.757-14.085 31.997-31.551l0-0.023c0.007-0.254 0.012-0.553 0.012-0.853 0-17.437-14.136-31.573-31.573-31.573-0.004 0-0.008 0-0.012 0l-179.199-0c-0.381-0.017-0.827-0.027-1.275-0.027-8.574 0-16.304 3.613-21.751 9.399l-0.014 0.015c-5.742 5.976-9.305 14.084-9.387 23.024l-0 0.016 2.133 179.2c0 17.673 14.327 32 32 32v0 0c17.724-0.241 32-14.665 32-32.424 0-0.001-0-0.002-0-0.003l0 0-1.28-114.773 209.92 210.347-206.080 205.653v-102.827c0.002-0.128 0.003-0.278 0.003-0.429 0-17.524-14.086-31.758-31.554-31.997l-0.023-0c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023v179.2c0.082 8.956 3.644 17.064 9.397 23.051l-0.011-0.011c5.786 5.793 13.78 9.379 22.612 9.387l0.002 0 179.2-2.133c0.003 0 0.007 0 0.012 0 17.437 0 31.573-14.136 31.573-31.573 0-0.3-0.004-0.599-0.013-0.897l0.001 0.044c-0.476-17.538-14.807-31.573-32.415-31.573-0.004 0-0.008 0-0.012 0l-98.986-0 200.96-202.24 202.667 203.947h-100.267c-17.576 0.452-31.736 14.463-32.425 31.936l-0.002 0.064c-0.002 0.127-0.003 0.277-0.003 0.427 0 17.437 14.136 31.573 31.573 31.573 0.001 0 0.002-0 0.003-0l-0 0 179.2 2.133c8.833-0.008 16.828-3.594 22.613-9.386l0-0c5.742-5.976 9.305-14.084 9.387-23.024l0-0.016v-179.2c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 101.547l-203.093-204.373 206.933-208.213v111.36c0.66 16.782 13.979 30.25 30.639 31.143l0.081 0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-two-diagonals"]},"attrs":[{}],"properties":{"order":6466,"id":498,"name":"arrow-two-diagonals","prevSize":32,"code":59722},"setIdx":0,"setId":0,"iconIdx":74},{"icon":{"paths":["M849.067 787.2c0.020 0.417 0.031 0.907 0.031 1.399 0 8.803-3.603 16.765-9.414 22.491l-0.004 0.004-120.32 119.040c-5.374 5.643-12.944 9.152-21.333 9.152s-15.959-3.509-21.322-9.14l-110.091-116.492c-5.585-5.878-9.021-13.844-9.021-22.613s3.436-16.736 9.034-22.627l-0.013 0.014c5.259-5.877 12.866-9.558 21.333-9.558s16.075 3.681 21.309 9.531l0.024 0.027 58.453 61.44v-711.68c-0.008-0.262-0.012-0.57-0.012-0.879 0-16.756 13.231-30.422 29.816-31.119l0.063-0.002c17.066 0.476 30.72 14.424 30.72 31.562 0 0.004-0 0.008-0 0.012l0-0.001v715.947l69.547-69.12c5.318-5.757 12.906-9.35 21.333-9.35s16.015 3.593 21.315 9.33l0.018 0.020c5.297 5.573 8.555 13.127 8.555 21.442 0 0.412-0.008 0.822-0.024 1.23l0.002-0.059zM336.213 94.72c-5.313-5.771-12.901-9.376-21.331-9.387l-0.002-0c-8.549 0.099-16.244 3.676-21.751 9.378l-0.009 0.009-115.2 120.747c-5.057 5.635-8.149 13.123-8.149 21.333s3.092 15.698 8.175 21.363l-0.026-0.030c5.425 5.531 12.977 8.96 21.329 8.96 0.002 0 0.003-0 0.005-0l-0 0c0.102 0.001 0.222 0.002 0.342 0.002 8.328 0 15.812-3.615 20.968-9.362l0.023-0.026 60.587-61.44v711.253c0 16.731 13.563 30.293 30.293 30.293s30.293-13.563 30.293-30.293v0-717.653l60.587 63.573c5.425 5.534 12.979 8.964 21.333 8.964s15.908-3.43 21.329-8.959l0.005-0.005c4.972-5.669 8.006-13.147 8.006-21.333s-3.033-15.664-8.038-21.37l0.032 0.037z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-down"]},"attrs":[{}],"properties":{"order":6467,"id":497,"name":"arrow-up-down","prevSize":32,"code":59723},"setIdx":0,"setId":0,"iconIdx":75},{"icon":{"paths":["M730.88 332.8c0-23.564-19.103-42.667-42.667-42.667v0h-357.973c-6.014 0.012-11.732 1.266-16.916 3.52l0.276-0.107c-10.46 4.422-18.618 12.58-22.935 22.76l-0.105 0.28c-1.892 4.648-2.99 10.041-2.99 15.691 0 0.184 0.001 0.367 0.003 0.551l-0-0.028v358.4c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-256l285.013 285.013c7.736 7.789 18.452 12.611 30.293 12.611 23.577 0 42.691-19.113 42.691-42.691 0-11.736-4.735-22.365-12.4-30.082l0.002 0.002-285.44-284.587h256c23.194-0.479 41.813-19.394 41.813-42.658 0-0.003-0-0.006-0-0.009l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-left"]},"attrs":[{}],"properties":{"order":6468,"id":496,"name":"arrow-up-left","prevSize":32,"code":59724},"setIdx":0,"setId":0,"iconIdx":76},{"icon":{"paths":["M904.107 271.787h-189.44c-17.49 0.239-31.576 14.473-31.576 31.997 0 0.151 0.001 0.302 0.003 0.452l-0-0.023c-0.008 0.269-0.013 0.584-0.013 0.902 0 16.966 13.754 30.72 30.72 30.72 0.605 0 1.206-0.017 1.802-0.052l-0.082 0.004h101.973l-217.6 213.333-166.827-159.573c-6.016-5.983-14.309-9.682-23.467-9.682s-17.451 3.699-23.468 9.683l0.001-0.001-291.84 288c-6.162 6.174-9.972 14.698-9.972 24.111 0 9.199 3.639 17.548 9.556 23.686l-0.010-0.010c6.311 6.041 14.876 9.772 24.312 9.813l0.008 0c0.174 0.003 0.379 0.005 0.584 0.005 8.999 0 17.119-3.765 22.87-9.806l0.012-0.013 268.373-264.107 166.827 159.147c6.061 5.883 14.34 9.51 23.467 9.51s17.406-3.627 23.475-9.519l-0.008 0.008 247.893-241.067v114.347c-0 0.001-0 0.002-0 0.003 0 17.523 14.085 31.757 31.551 31.997l0.023 0c0.001 0 0.002 0 0.003 0 17.523 0 31.757-14.085 31.997-31.551l0-0.023 3.413-189.867c-0.082-8.956-3.644-17.064-9.397-23.051l0.011 0.011c-5.471-5.891-13.26-9.566-21.907-9.566-1.151 0-2.287 0.065-3.404 0.192l0.137-0.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-refraction"]},"attrs":[{}],"properties":{"order":6469,"id":495,"name":"arrow-up-refraction","prevSize":32,"code":59725},"setIdx":0,"setId":0,"iconIdx":77},{"icon":{"paths":["M704.427 293.547c-4.778-2.092-10.34-3.34-16.186-3.413l-0.027-0h-357.973c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h256l-287.573 285.44c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002 285.44-285.013v256c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-359.253c-0.091-17.632-10.863-32.726-26.172-39.149l-0.281-0.105z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-right"]},"attrs":[{}],"properties":{"order":6470,"id":494,"name":"arrow-up-right","prevSize":32,"code":59726},"setIdx":0,"setId":0,"iconIdx":78},{"icon":{"paths":["M790.613 484.267l-253.44-253.013c-3.714-4.030-8.274-7.221-13.404-9.298l-0.249-0.089c-4.778-2.092-10.34-3.34-16.186-3.413l-0.027-0c-6.014 0.012-11.732 1.266-16.916 3.52l0.276-0.107c-5.379 2.166-9.939 5.356-13.63 9.361l-0.023 0.026-253.44 253.013c-7.753 7.753-12.548 18.463-12.548 30.293 0 23.661 19.181 42.841 42.841 42.841 11.83 0 22.541-4.795 30.293-12.548l180.48-180.48v403.627c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-403.627l180.48 180.48c7.667 7.606 18.211 12.323 29.857 12.373l0.010 0c0.073 0 0.16 0.001 0.247 0.001 11.721 0 22.338-4.726 30.049-12.377l-0.003 0.003c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up"]},"attrs":[{}],"properties":{"order":6471,"id":493,"name":"arrow-up","prevSize":32,"code":59727},"setIdx":0,"setId":0,"iconIdx":79},{"icon":{"paths":["M741.547 630.187c-5.951-5.951-14.172-9.632-23.253-9.632-18.162 0-32.885 14.723-32.885 32.885 0 9.081 3.681 17.302 9.632 23.253l72.533 72.533h-456.96c-1.947 0.136-4.219 0.213-6.509 0.213-54.904 0-99.413-44.509-99.413-99.413s44.509-99.413 99.413-99.413c2.29 0 4.563 0.077 6.814 0.23l-0.305-0.017h409.6c90.005-1.56 162.37-74.889 162.37-165.12 0-91.206-73.937-165.143-165.143-165.143-0.975 0-1.948 0.008-2.919 0.025l0.146-0.002h-458.667l72.533-72.533c6.042-5.989 9.783-14.291 9.783-23.467 0-18.245-14.791-33.036-33.036-33.036-9.070 0-17.286 3.655-23.256 9.572l0.002-0.002-128 128c-5.922 6.067-9.632 14.317-9.813 23.432l-0.001 0.035c0.271 9.134 3.96 17.358 9.825 23.479l-0.012-0.013 128 128c5.899 6.064 14.137 9.826 23.253 9.826s17.355-3.762 23.246-9.819l0.007-0.007c6.064-5.899 9.826-14.137 9.826-23.253s-3.762-17.355-9.819-23.246l-0.007-0.007-72.533-71.68h458.667c54.904-0 99.413 44.509 99.413 99.413s-44.509 99.413-99.413 99.413h-409.6c-90.005 1.56-162.37 74.889-162.37 165.12 0 91.206 73.937 165.143 165.143 165.143 0.975 0 1.948-0.008 2.919-0.025l-0.146 0.002h457.387l-72.533 72.533c-5.959 5.948-9.645 14.17-9.645 23.253s3.686 17.306 9.645 23.253l0.001 0.001c5.999 6.032 14.292 9.776 23.46 9.813l0.007 0c9.037-0.058 17.188-3.804 23.033-9.806l0.007-0.007 128-128c5.959-5.948 9.645-14.17 9.645-23.253s-3.686-17.306-9.645-23.253l-0.001-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-zigzag"]},"attrs":[{}],"properties":{"order":6472,"id":492,"name":"arrow-zigzag","prevSize":32,"code":59728},"setIdx":0,"setId":0,"iconIdx":80},{"icon":{"paths":["M201.813 451.84c-3.187 14.656-15.829 25.549-31.096 26.025l-0.051 0.001h-7.253c-14.942-3.291-25.957-16.42-25.957-32.121 0-2.528 0.285-4.989 0.826-7.353l-0.042 0.221c41.695-181.188 201.6-314.256 392.585-314.256 113.907 0 216.759 47.335 289.958 123.407l0.124 0.129v-117.333c-0.002-0.128-0.003-0.278-0.003-0.429 0-17.995 14.468-32.611 32.407-32.85l0.023-0c18.38 0 33.28 14.9 33.28 33.28v-0 198.4c-0.241 18.196-15.047 32.853-33.277 32.853-0.001 0-0.002-0-0.003-0l-201.813 0c-1.129 0.136-2.437 0.213-3.762 0.213-18.38 0-33.28-14.9-33.28-33.28s14.9-33.28 33.28-33.28c1.326 0 2.633 0.078 3.918 0.228l-0.156-0.015h123.307c-61.48-65.334-148.515-106.020-245.052-106.020-159.441 0-292.96 110.984-327.518 259.912l-0.443 2.268zM898.56 567.893c-2.096-0.482-4.502-0.759-6.973-0.759-15.763 0-28.898 11.247-31.82 26.153l-0.034 0.205c-32.464 154.452-167.572 268.75-329.375 268.75-98.457 0-187.030-42.321-248.519-109.764l-0.239-0.266h128c18.38 0 33.28-14.9 33.28-33.28h0c0-0.001 0-0.002 0-0.003 0-18.144-14.709-32.853-32.853-32.853-0.15 0-0.3 0.001-0.449 0.003l0.023-0h-185.173c-0.127-0.002-0.277-0.003-0.427-0.003-18.144 0-32.853 14.709-32.853 32.853 0 0.001 0 0.002 0 0.003l-0-0v192c-0.136 1.129-0.213 2.437-0.213 3.762 0 18.38 14.9 33.28 33.28 33.28s33.28-14.9 33.28-33.28c0-1.326-0.078-2.633-0.228-3.918l0.015 0.156v-89.6c71.49 66.437 167.626 107.208 273.285 107.208 193.163 0 354.499-136.265 393.127-317.911l0.468-2.63c0.669-2.46 1.053-5.284 1.053-8.198 0-15.868-11.398-29.074-26.453-31.878l-0.2-0.031z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrows-circle"]},"attrs":[{}],"properties":{"order":6473,"id":491,"name":"arrows-circle","prevSize":32,"code":59729},"setIdx":0,"setId":0,"iconIdx":81},{"icon":{"paths":["M853.333 535.040v109.653c0.013 0.778 0.021 1.696 0.021 2.615 0 88.758-70.762 160.988-158.949 163.354l-0.219 0.005h-421.12l59.733 68.267c5.585 5.878 9.021 13.844 9.021 22.613s-3.436 16.736-9.034 22.627l0.013-0.014c-5.189 5.272-12.402 8.538-20.378 8.538-0.186 0-0.371-0.002-0.557-0.005l0.028 0c-8.991-0.028-17.056-3.969-22.586-10.208l-0.028-0.032-113.067-128c-4.891-5.702-7.869-13.17-7.869-21.333s2.977-15.632 7.906-21.377l-0.037 0.044 113.067-115.2c5.425-5.534 12.979-8.964 21.333-8.964s15.908 3.43 21.329 8.959l0.005 0.005c5.585 5.878 9.021 13.844 9.021 22.613s-3.436 16.736-9.034 22.627l0.013-0.014-65.707 65.28h426.667c54.693-1.187 98.575-45.805 98.575-100.671 0-0.608-0.005-1.215-0.016-1.82l0.001 0.091v-109.653c0-16.966 13.754-30.72 30.72-30.72s30.72 13.754 30.72 30.72v0zM725.333 100.267c-5.473-5.43-13.011-8.786-21.333-8.786s-15.86 3.356-21.335 8.788l0.002-0.002c-5.682 5.835-9.186 13.815-9.186 22.613s3.504 16.778 9.193 22.62l-0.007-0.007 62.293 64.427h-418.133c-89.015 1.902-160.447 74.512-160.447 163.805 0 0.913 0.007 1.823 0.022 2.732l-0.002-0.137v103.253c-0.136 1.092-0.213 2.357-0.213 3.639 0 17.202 13.945 31.147 31.147 31.147s31.147-13.945 31.147-31.147c0-1.282-0.078-2.547-0.228-3.789l0.015 0.149v-103.253c-0.015-0.639-0.023-1.392-0.023-2.147 0-54.784 43.936-99.306 98.494-100.251l0.089-0.001h426.667l-62.72 64c-5.682 5.835-9.186 13.815-9.186 22.613s3.504 16.778 9.193 22.62l-0.007-0.007c5.459 5.787 13.18 9.39 21.742 9.39 0.156 0 0.312-0.001 0.468-0.004l-0.024 0c0.105 0.001 0.229 0.002 0.354 0.002 8.031 0 15.299-3.263 20.552-8.535l0.001-0.001 113.067-115.2c5.545-5.684 8.965-13.462 8.965-22.040 0-0.202-0.002-0.403-0.006-0.604l0 0.030c0.004-0.195 0.007-0.424 0.007-0.654 0-8.687-3.416-16.577-8.978-22.398l0.012 0.012z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrows-loop"]},"attrs":[{}],"properties":{"order":6474,"id":490,"name":"arrows-loop","prevSize":32,"code":59730},"setIdx":0,"setId":0,"iconIdx":82},{"icon":{"paths":["M963.84 503.467v-16.213c-2.388-61.348-22.31-117.605-54.854-164.428l0.668 1.015c-5.849-8.415-15.468-13.854-26.358-13.854-6.017 0-11.646 1.661-16.454 4.548l0.145-0.081c-8.831 5.499-14.622 15.156-14.622 26.164 0 6.125 1.793 11.832 4.882 16.624l-0.073-0.121c24.682 35.998 40.288 79.962 42.643 127.414l0.023 0.586v16.64c0 57.173 0 106.667-40.533 139.52-7.735 7.046-16.984 12.581-27.186 16.052l-0.547 0.162c-1.474 0.212-3.176 0.333-4.907 0.333s-3.433-0.121-5.099-0.356l0.192 0.022h-18.773c-45.639-3.914-86.739-10.103-126.955-18.678l6.635 1.185-47.36-9.387c-16.496-3.659-35.444-5.755-54.88-5.755-39.65 0-77.262 8.723-111.023 24.355l1.636-0.68-8.96 5.547c-3.23 2.125-7.005 4.257-10.921 6.141l-0.599 0.259h-2.56c-4.87 1.891-10.507 2.987-16.399 2.987-0.085 0-0.169-0-0.254-0.001l0.013 0c-1.009 0.038-2.195 0.059-3.386 0.059-28.795 0-54.668-12.511-72.48-32.393l-0.081-0.092c-10.97-15.027-17.552-33.866-17.552-54.242 0-8.944 1.268-17.591 3.634-25.772l-0.162 0.654c0.654-2.416 1.030-5.191 1.030-8.053 0-17.673-14.327-32-32-32-1.719 0-3.406 0.136-5.052 0.396l0.182-0.024c-7.789 1.358-16.758 2.135-25.908 2.135-20.13 0-39.382-3.757-57.093-10.609l1.081 0.368c-28.113-8.197-52.149-22.987-71.215-42.627l-0.038-0.040c-51.2-67.84-9.813-150.187 50.347-197.547 31.282-24.215 67.222-44.64 105.886-59.595l2.914-0.991c12.040-4.489 20.46-15.889 20.46-29.256 0-4.057-0.776-7.933-2.187-11.488l0.074 0.211c-4.899-12.078-16.538-20.441-30.13-20.441-4.526 0-8.835 0.927-12.748 2.602l0.211-0.080c-47.633 19.025-88.762 43.15-125.59 72.45l1.003-0.77c-85.333 67.84-134.827 187.307-61.867 284.16 26.576 29.583 61.019 51.598 100.041 62.778l1.505 0.369c21.368 8.040 46.059 12.989 71.817 13.647l0.29 0.006c-0.144 2.401-0.226 5.208-0.226 8.035 0 33.697 11.661 64.671 31.167 89.106l-0.221-0.287c29.713 33.813 73.050 55.040 121.344 55.040 0.090 0 0.18-0 0.27-0l-0.014 0h10.667c10.075 20.467 24.545 37.397 42.265 50.074l0.401 0.273c9.387 6.4 19.627 12.373 29.44 18.347 29.578 14.751 54.451 34.715 74.357 58.918l0.31 0.388c7.253 11.52 13.227 23.467 19.2 35.413s8.96 17.067 13.653 25.173c9.424 19.671 24.077 35.559 42.171 46.236l0.495 0.27c8.756 4.573 19.123 7.256 30.118 7.256 0.212 0 0.423-0.001 0.634-0.003l-0.032 0c0.441 0.011 0.961 0.018 1.482 0.018 21.506 0 40.414-11.127 51.279-27.939l0.145-0.239c5.24-9.779 8.318-21.393 8.318-33.726 0-1.945-0.077-3.873-0.227-5.78l0.016 0.252v-11.093c0-24.747-3.413-53.333 10.24-65.707 5.696-4.597 12.095-9.232 18.73-13.535l0.897-0.545c20.457-11.183 37.068-27.111 48.746-46.364l0.321-0.569c7.089-12.905 13.334-27.907 17.94-43.609l0.407-1.617c18.878-6.127 35.212-15.298 49.298-27.068l-0.232 0.188c68.693-54.187 66.987-126.293 66.133-190.72zM775.253 736.853c-7.132 9.54-16.111 17.292-26.453 22.831l-0.427 0.209c-10.65 6.22-19.868 12.993-28.307 20.611l0.147-0.131c-21.050 23.388-33.925 54.497-33.925 88.614 0 9.564 1.012 18.893 2.935 27.883l-0.156-0.87v10.24c-6.582-5.411-11.904-12.097-15.633-19.706l-0.154-0.347-12.373-23.040c-7.683-16.886-15.229-30.879-23.572-44.326l0.959 1.659c-25.327-32.709-56.934-59.271-93.164-78.193l-1.556-0.74-26.88-16.213c-7.37-5.301-13.489-11.829-18.18-19.341l-0.166-0.286 3.84-2.56c22.63-9.512 48.934-15.038 76.528-15.038 15.52 0 30.632 1.748 45.149 5.058l-1.357-0.26 46.080 8.96 58.88 11.093 17.92 2.987c12.373 0 24.32 3.84 36.693 5.12zM322.987 271.787l75.093-77.653v-102.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0 115.627c-0.123 8.467-3.516 16.119-8.969 21.769l0.009-0.009-79.787 81.92c7.493 12.16 11.937 26.894 11.947 42.664l0 0.003c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c8.303 0.238 16.196 1.625 23.644 4.007l-0.604-0.167zM515.413 394.24c9.335 0.107 18.271 1.66 26.644 4.445l-0.618-0.178 27.307-30.293v-276.907c0-17.673 14.327-32 32-32s32 14.327 32 32v0 288.853c-0.014 8.065-3.091 15.408-8.129 20.931l-34.111 37.949c6.396 11.314 10.186 24.835 10.24 39.237l0 0.016c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0zM686.080 520.107c0.617-35.017 22.234-64.835 52.766-77.446l0.567-0.207v-351.147c0-17.673 14.327-32 32-32s32 14.327 32 32v0 351.147c31.1 12.819 52.716 42.636 53.332 77.577l0.001 0.077c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["artificial-intelligence"]},"attrs":[{}],"properties":{"order":6475,"id":489,"name":"artificial-intelligence","prevSize":32,"code":59731},"setIdx":0,"setId":0,"iconIdx":83},{"icon":{"paths":["M512 970.667c-33.332-0.027-63.5-13.556-85.332-35.412l-0.001-0.001-60.16-60.16c-2.153-2.111-5.105-3.415-8.362-3.415-0.060 0-0.12 0-0.18 0.001l0.009-0h-85.333c-66.503-0.243-120.32-54.209-120.32-120.746 0-0 0-0.001 0-0.001l-0 0v-85.333c0.001-0.051 0.001-0.111 0.001-0.171 0-3.257-1.303-6.209-3.416-8.364l0.002 0.002-60.16-59.733c-21.72-21.893-35.143-52.045-35.143-85.333s13.423-63.441 35.151-85.341l-0.008 0.008 60.16-60.16c2.111-2.153 3.415-5.105 3.415-8.362 0-0.060-0-0.12-0.001-0.18l0 0.009v-85.333c0.243-66.503 54.209-120.32 120.746-120.32 0 0 0.001 0 0.001 0l85.333-0c0.051 0.001 0.111 0.001 0.171 0.001 3.257 0 6.209-1.303 8.364-3.416l-0.002 0.002 59.733-60.16c21.893-21.72 52.045-35.143 85.333-35.143s63.441 13.423 85.341 35.151l-0.008-0.008 60.16 60.16c2.153 2.111 5.105 3.415 8.362 3.415 0.060 0 0.12-0 0.18-0.001l-0.009 0h85.333c66.503 0.243 120.32 54.209 120.32 120.746 0 0-0 0.001-0 0.001l0-0v85.333c-0.001 0.051-0.001 0.111-0.001 0.171 0 3.257 1.303 6.209 3.416 8.364l-0.002-0.002 60.16 59.733c21.72 21.893 35.143 52.045 35.143 85.333s-13.423 63.441-35.151 85.341l0.008-0.008-60.16 60.16c-2.111 2.153-3.415 5.105-3.415 8.362 0 0.060 0 0.12 0.001 0.18l-0-0.009v85.333c-0 66.687-54.060 120.747-120.747 120.747v0h-85.333c-0.051-0.001-0.111-0.001-0.171-0.001-3.257 0-6.209 1.303-8.364 3.416l0.002-0.002-59.733 59.733c-21.834 21.857-52.001 35.386-85.328 35.413l-0.005 0zM273.067 216.32c-31.243 0.24-56.507 25.503-56.747 56.724l-0 0.023v85.333c0.003 0.244 0.005 0.533 0.005 0.821 0 20.722-8.49 39.461-22.181 52.929l-0.010 0.010-60.16 59.733c-10.258 10.267-16.601 24.446-16.601 40.107s6.344 29.839 16.602 40.107l-0-0 60.16 60.16c13.703 13.543 22.189 32.338 22.189 53.115 0 0.227-0.001 0.453-0.003 0.679l0-0.035v85.333c0.477 31.060 25.651 56.084 56.724 56.32l0.023 0h85.333c0.244-0.003 0.533-0.005 0.821-0.005 20.722 0 39.461 8.49 52.929 22.181l0.010 0.010 60.16 60.16c10.267 10.258 24.446 16.601 40.107 16.601s29.839-6.344 40.107-16.602l-0 0 60.16-60.16c13.543-13.703 32.338-22.189 53.115-22.189 0.227 0 0.453 0.001 0.679 0.003l-0.035-0h85.333c31.243-0.24 56.507-25.503 56.747-56.724l0-0.023v-85.333c-0.003-0.244-0.005-0.533-0.005-0.821 0-20.722 8.49-39.461 22.181-52.929l0.010-0.010 60.16-60.16c10.258-10.267 16.601-24.446 16.601-40.107s-6.344-29.839-16.602-40.107l0 0-61.013-59.733c-13.66-13.812-22.12-32.792-22.187-53.747l-0-0.013v-85.333c-0.477-31.060-25.651-56.084-56.724-56.32l-0.023-0h-85.333c-0.192 0.002-0.418 0.003-0.645 0.003-20.777 0-39.572-8.486-53.108-22.182l-0.007-0.007-59.733-60.16c-10.267-10.258-24.446-16.601-40.107-16.601s-29.839 6.344-40.107 16.602l0-0-60.16 60.16c-13.478 13.701-32.217 22.191-52.939 22.191-0.289 0-0.577-0.002-0.865-0.005l0.044 0zM690.773 658.773l-149.76-320.853c-5.815-10.207-16.624-16.977-29.013-16.977s-23.198 6.77-28.927 16.813l-0.086 0.164-149.76 320.853c-1.926 3.999-3.052 8.695-3.052 13.653 0 17.709 14.356 32.065 32.065 32.065 12.75 0 23.763-7.442 28.93-18.219l0.083-0.193 44.8-96.427h151.893l44.8 96.427c5.335 10.886 16.303 18.267 29.003 18.347l0.011 0c0.157 0.003 0.342 0.005 0.528 0.005 4.773 0 9.288-1.104 13.304-3.070l-0.179 0.079c10.98-5.228 18.434-16.235 18.434-28.982 0-4.972-1.134-9.679-3.157-13.876l0.083 0.192zM465.92 525.653l46.080-98.987 46.080 98.56z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["auto-brightness"]},"attrs":[{}],"properties":{"order":6476,"id":488,"name":"auto-brightness","prevSize":32,"code":59732},"setIdx":0,"setId":0,"iconIdx":84},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM742.4 774.827h-148.053c-32.632-0.161-59.023-26.651-59.023-59.306 0-10.832 2.904-20.985 7.976-29.725l-0.152 0.284 74.24-128c11.043-16.852 29.839-27.829 51.2-27.829s40.157 10.977 51.057 27.597l0.143 0.232 73.813 128c4.92 8.455 7.823 18.609 7.823 29.441 0 32.655-26.391 59.145-59.008 59.306l-0.015 0zM602.88 710.827h130.987l-65.28-113.493zM389.547 764.587h-117.333c-27.25-0.111-49.298-22.227-49.298-49.493 0-9.112 2.462-17.648 6.758-24.981l-0.126 0.234 237.653-411.307c11.139-16.844 29.997-27.802 51.413-27.802s40.274 10.958 51.271 27.573l0.142 0.229 50.347 87.893c10.051 17.348 15.982 38.168 15.982 60.373s-5.931 43.025-16.295 60.962l0.314-0.588-125.013 216.747c-21.564 36.19-60.463 60.077-104.948 60.16l-0.012 0zM298.667 700.587h91.733c0.068 0 0.148 0 0.228 0 20.877 0 39.141-11.19 49.12-27.899l0.145-0.261 125.013-216.747c4.82-8.129 7.669-17.918 7.669-28.373s-2.849-20.245-7.812-28.635l0.143 0.262-46.933-81.067z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["avalanche"]},"attrs":[{}],"properties":{"order":6477,"id":487,"name":"avalanche","prevSize":32,"code":59733},"setIdx":0,"setId":0,"iconIdx":85},{"icon":{"paths":["M879.787 445.44c-0.603-57.996-32.219-108.474-79.029-135.7l-0.758-0.407-8.107-4.693v-95.147c0-86.952-70.488-157.44-157.44-157.44v0h-244.907c-86.952 0-157.44 70.488-157.44 157.44h0v97.28l-12.373 7.253c-46.819 28.17-77.656 78.713-77.656 136.458 0 0.327 0.001 0.653 0.003 0.979l-0-0.050v243.627c0.603 57.996 32.219 108.474 79.029 135.7l0.758 0.407 213.333 120.32c22.714 13.293 50.014 21.142 79.147 21.142s56.433-7.849 79.9-21.548l-0.753 0.406 209.493-123.733c47.051-28.016 78.083-78.617 78.083-136.466 0-0.324-0.001-0.647-0.003-0.97l0 0.050zM296.107 209.493c-0-51.605 41.835-93.44 93.44-93.44h244.907c51.605 0 93.44 41.835 93.44 93.44v0 58.88l-139.947-79.36c-5.016-2.833-11.189-5.837-17.539-8.501l-1.235-0.459c-16.020-6.036-34.537-9.53-53.87-9.53-2.362 0-4.712 0.052-7.049 0.155l0.333-0.012c-0.236-0.001-0.516-0.002-0.795-0.002-14.153 0-27.832 2.027-40.763 5.806l1.025-0.257c-14.583 3.945-27.35 9.489-39.069 16.59l0.669-0.376-133.547 76.8zM771.413 771.413l-209.92 124.587c-13.248 7.643-29.137 12.152-46.080 12.152s-32.832-4.509-46.534-12.393l0.454 0.241-213.333-120.32c-28.301-16.46-47.089-46.539-47.36-81.028l-0-0.039v-243.627c-0.016-0.648-0.025-1.411-0.025-2.177 0-33.414 17.38-62.768 43.593-79.517l0.379-0.226 209.493-123.307c13.544-7.862 29.804-12.502 47.147-12.502s33.602 4.64 47.604 12.747l-0.457-0.244 213.333 119.893c28.301 16.46 47.089 46.539 47.36 81.028l0 0.039 2.133 243.627c-0.271 34.631-19.255 64.768-47.327 80.824l-0.46 0.242z","M571.307 735.573c-12.544-0.044-24.304-3.361-34.482-9.142l0.348 0.182-22.187-11.52c-1.198-0.506-2.591-0.8-4.053-0.8s-2.855 0.294-4.124 0.826l0.070-0.026-22.187 11.947c-9.628 5.006-21.022 7.942-33.102 7.942-40.295 0-72.96-32.665-72.96-72.96 0-4.465 0.401-8.836 1.169-13.080l-0.067 0.445 4.267-24.747c0.609-1.111 0.967-2.433 0.967-3.84s-0.358-2.729-0.988-3.882l0.021 0.042-20.053-19.627c-13.446-12.912-21.801-31.038-21.801-51.117 0-8.282 1.421-16.232 4.034-23.619l-0.153 0.496c8.693-26.045 31.139-45.211 58.501-49.023l0.379-0.043 25.173-3.413c2.802-0.505 5.114-2.255 6.376-4.645l0.024-0.049 11.093-22.613c12.311-22.773 36.012-37.983 63.265-37.983 0.408 0 0.816 0.003 1.222 0.010l-0.061-0.001c0.167-0.001 0.364-0.002 0.561-0.002 28.186 0 52.549 16.366 64.106 40.113l0.186 0.423 11.093 22.613c1.244 2.57 3.552 4.459 6.337 5.108l0.063 0.012 24.747 3.413c35.119 5.463 61.679 35.488 61.679 71.717 0 20.61-8.596 39.213-22.399 52.418l-0.027 0.026-18.347 17.493c-1.656 1.56-2.687 3.767-2.687 6.216 0 0.517 0.046 1.024 0.134 1.516l-0.008-0.052 4.267 24.747c0.672 3.72 1.057 8.002 1.057 12.374 0 40.216-32.538 72.833-72.725 72.96l-0.012 0zM510.72 650.24c12.495 0.037 24.245 3.192 34.524 8.726l-0.391-0.192 22.187 11.947c1.335 0.833 2.957 1.328 4.693 1.328s3.358-0.494 4.731-1.35l-0.038 0.022c2.138-1.735 3.494-4.362 3.494-7.306 0-0.433-0.029-0.858-0.086-1.275l0.005 0.049-4.267-24.747c-0.585-3.47-0.919-7.467-0.919-11.542 0-20.583 8.523-39.174 22.232-52.439l0.020-0.019 18.347-17.493c1.547-1.669 2.496-3.911 2.496-6.374 0-0.921-0.133-1.811-0.38-2.652l0.017 0.066c-0.998-2.996-3.616-5.186-6.79-5.543l-0.037-0.003-25.173-3.84c-23.946-3.966-43.685-19.057-53.995-39.682l-0.192-0.424-11.093-22.613c0-4.267-5.973-6.4-7.68-4.693-0.178-0.015-0.385-0.023-0.595-0.023-3.172 0-5.895 1.923-7.066 4.666l-0.019 0.050-11.093 22.187c-10.625 21.096-30.792 36.035-54.674 39.214l-0.366 0.040-24.747 3.413c-3.394 0.481-6.145 2.805-7.234 5.911l-0.019 0.063c-0.201 0.742-0.317 1.594-0.317 2.473 0 2.492 0.929 4.767 2.459 6.498l-0.009-0.010 17.92 17.493c13.346 13.161 21.613 31.443 21.613 51.655 0 4.514-0.412 8.932-1.201 13.217l0.068-0.446-4.267 24.747c-0.073 0.421-0.115 0.905-0.115 1.399 0 4.713 3.821 8.533 8.533 8.533 1.446 0 2.808-0.36 4.002-0.994l-0.046 0.022 22.187-11.52c9.996-5.484 21.874-8.781 34.506-8.959l0.054-0.001z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["award"]},"attrs":[{},{}],"properties":{"order":6478,"id":486,"name":"award","prevSize":32,"code":59734},"setIdx":0,"setId":0,"iconIdx":86},{"icon":{"paths":["M685.227 91.733h-346.453c-157.547 0.243-285.198 127.894-285.44 285.417l-0 0.023v269.653c0.243 157.547 127.894 285.198 285.417 285.44l0.023 0h346.453c157.547-0.243 285.198-127.894 285.44-285.417l0-0.023v-269.653c-0.243-157.547-127.894-285.198-285.417-285.44l-0.023-0zM910.933 646.4c0 124.654-101.052 225.707-225.707 225.707v0h-346.453c-124.654 0-225.707-101.052-225.707-225.707h0v-269.227c-0-124.654 101.052-225.707 225.707-225.707h346.453c124.654 0 225.707 101.052 225.707 225.707v0zM432.64 518.4c36.815-24.086 60.8-65.123 60.8-111.762 0-73.52-59.6-133.12-133.12-133.12s-133.12 59.6-133.12 133.12c0 46.639 23.985 87.677 60.293 111.45l0.507 0.312c-59.646 11.317-105 60.445-110.469 121.076l-0.038 0.524c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0c0-33.28 50.347-70.4 122.88-70.4s123.307 37.12 123.307 70.4c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867l0-0c-5.465-61.271-50.807-110.531-109.651-121.889l-0.855-0.137zM360.107 333.653c0.126-0.001 0.276-0.001 0.425-0.001 40.53 0 73.387 32.856 73.387 73.387s-32.856 73.387-73.387 73.387c-40.53 0-73.387-32.856-73.387-73.387 0-0.15 0-0.299 0.001-0.448l-0 0.023c0.241-40.198 32.762-72.72 72.937-72.96l0.023-0zM802.133 597.333c0 16.495-13.372 29.867-29.867 29.867v0h-139.093c-16.495 0-29.867-13.372-29.867-29.867s13.372-29.867 29.867-29.867l139.093-0c16.495 0 29.867 13.372 29.867 29.867v0zM817.493 444.587c0 16.495-13.372 29.867-29.867 29.867v0h-213.333c-16.495-0-29.867-13.372-29.867-29.867s13.372-29.867 29.867-29.867h213.333c16.399 0.237 29.63 13.468 29.866 29.844l0 0.022z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["badge"]},"attrs":[{}],"properties":{"order":6479,"id":485,"name":"badge","prevSize":32,"code":59735},"setIdx":0,"setId":0,"iconIdx":87},{"icon":{"paths":["M331.52 970.667c-0.164 0.001-0.357 0.002-0.551 0.002-17.020 0-33.005-4.429-46.866-12.198l0.484 0.249c-92.738-51.806-167.145-126.624-217.013-216.891l-1.44-2.842c-8.067-13.831-12.83-30.446-12.83-48.173 0-26.657 10.769-50.798 28.194-68.311l-0.004 0.004 541.013-541.013c17.524-17.51 41.726-28.339 68.457-28.339 18.713 0 36.186 5.307 50.996 14.497l-0.413-0.239c88.925 53.184 161.489 125.067 213.922 210.622l1.545 2.711c8.555 14.151 13.617 31.244 13.617 49.52 0 26.624-10.742 50.738-28.129 68.246l0.005-0.006-542.72 544c-17.441 17.4-41.515 28.16-68.101 28.16-0.058 0-0.116-0-0.174-0l0.009 0zM315.307 902.4c4.465 2.42 9.776 3.843 15.418 3.843 9.377 0 17.836-3.928 23.822-10.229l0.013-0.014 541.44-541.44c5.847-5.928 9.459-14.075 9.459-23.066 0-6.299-1.773-12.184-4.847-17.184l0.082 0.143c-48.377-79.534-113.648-144.259-191.176-190.598l-2.531-1.402c-5.254-3.722-11.795-5.95-18.856-5.95-9.364 0-17.813 3.918-23.798 10.203l-0.013 0.014-536.32 541.013c-5.827 6.112-9.412 14.405-9.412 23.536 0 6.083 1.591 11.795 4.381 16.741l-0.089-0.171c45.487 82.483 111.47 148.741 191.23 193.29l2.477 1.27zM679.68 495.787c-7.686 7.52-18.216 12.16-29.829 12.16-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c11.614 0 22.144 4.64 29.837 12.168l-0.008-0.008c7.924 7.753 12.837 18.556 12.837 30.507s-4.913 22.753-12.83 30.499l-0.008 0.008zM588.373 343.467c-7.686-7.52-18.216-12.16-29.829-12.16-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c11.614 0 22.144-4.64 29.837-12.168l-0.008 0.008c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-0.008-0.008zM588.373 526.080c-7.686-7.52-18.216-12.16-29.829-12.16-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c11.614 0 22.144-4.64 29.837-12.168l-0.008 0.008c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-0.008-0.008zM497.067 434.773c-7.686-7.52-18.216-12.16-29.829-12.16-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c11.614 0 22.144-4.64 29.837-12.168l-0.008 0.008c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-0.008-0.008zM497.067 617.387c-7.686-7.52-18.216-12.16-29.829-12.16-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c11.614 0 22.144-4.64 29.837-12.168l-0.008 0.008c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-0.008-0.008zM405.76 526.080c-7.686-7.52-18.216-12.16-29.829-12.16-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c11.614 0 22.144-4.64 29.837-12.168l-0.008 0.008c7.924-7.753 12.837-18.556 12.837-30.507s-4.913-22.753-12.83-30.499l-0.008-0.008z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bandage"]},"attrs":[{}],"properties":{"order":6480,"id":484,"name":"bandage","prevSize":32,"code":59736},"setIdx":0,"setId":0,"iconIdx":88},{"icon":{"paths":["M752.026 835.584h-62.669c-36.697-0.232-66.355-30.034-66.355-66.764 0-0 0-0.001 0-0.001l-0 0v-334.234h-33.997v334.234c0.001 0.122 0.001 0.266 0.001 0.41 0 36.647-29.708 66.355-66.355 66.355-0 0-0.001-0-0.001-0l-62.259 0c-0 0-0.001 0-0.001 0-36.647 0-66.355-29.708-66.355-66.355 0-0.144 0-0.288 0.001-0.432l-0 0.022v-334.234h-38.912v334.234c0 0.006 0 0.013 0 0.020 0 36.873-29.892 66.765-66.765 66.765-0.576 0-1.15-0.007-1.723-0.022l0.085 0.002h-60.621c-0 0-0.001 0-0.001 0-36.647 0-66.355-29.708-66.355-66.355 0-0.144 0-0.288 0.001-0.432l-0 0.022v-334.234h-20.070c-1.13 0.053-2.455 0.083-3.787 0.083-38.019 0-70.277-24.666-81.644-58.868l-0.175-0.607c-1.42-5.394-2.236-11.586-2.236-17.968 0-27.32 14.942-51.149 37.1-63.763l0.362-0.19 316.621-197.427c24.365-15.158 53.936-24.144 85.606-24.144s61.242 8.986 86.304 24.547l-0.698-0.404 316.621 195.379c22.784 12.734 37.936 36.705 37.936 64.216 0 7.032-0.99 13.832-2.838 20.269l0.127-0.517c-11.542 34.809-43.8 59.475-81.819 59.475-1.332 0-2.657-0.030-3.974-0.090l0.187 0.007h-24.166v334.234c0 0 0 0.001 0 0.001 0 36.873-29.892 66.765-66.765 66.765-0.144 0-0.288-0-0.432-0.001l0.022 0zM558.285 373.146h97.075c0.123-0.002 0.267-0.003 0.412-0.003 16.74 0 30.31 13.57 30.31 30.31 0 0.145-0.001 0.29-0.003 0.434l0-0.022v364.954c-0 0.005-0 0.010-0 0.016 0 2.797 2.156 5.090 4.897 5.308l0.019 0.001h62.669c0.005 0 0.011 0 0.017 0 2.715 0 4.915-2.201 4.915-4.915 0-0.144-0.006-0.287-0.018-0.428l0.001 0.018v-364.954c0-16.966 13.754-30.72 30.72-30.72v0h55.706c15.565 0 24.576-7.373 26.624-14.746s0-10.65-8.602-15.155l-318.259-194.97c-15.096-9.641-33.504-15.366-53.248-15.366s-38.152 5.726-53.652 15.607l0.404-0.241-315.392 194.97c-7.373 4.506-10.24 9.421-8.602 15.155s11.059 14.746 26.624 14.746h49.562c16.966 0 30.72 13.754 30.72 30.72v0 364.954c-0.011 0.123-0.017 0.265-0.017 0.41 0 2.715 2.201 4.915 4.915 4.915 0.006 0 0.012-0 0.018-0l-0.001 0h60.621c2.941 0 5.325-2.384 5.325-5.325h0v-364.954c-0.002-0.123-0.003-0.267-0.003-0.412 0-16.74 13.57-30.31 30.31-30.31 0.145 0 0.29 0.001 0.434 0.003l-0.022-0h100.352c16.966 0 30.72 13.754 30.72 30.72v0 364.954c-0.011 0.123-0.017 0.265-0.017 0.41 0 2.715 2.201 4.915 4.915 4.915 0.006 0 0.012-0 0.018-0l-0.001 0h62.259c0.005 0 0.011 0 0.017 0 2.715 0 4.915-2.201 4.915-4.915 0-0.144-0.006-0.287-0.018-0.428l0.001 0.018v-364.954c-0-0.013-0-0.028-0-0.044 0-16.966 13.754-30.72 30.72-30.72 0.576 0 1.149 0.016 1.717 0.047l-0.079-0.003zM901.12 922.419c0-16.966-13.754-30.72-30.72-30.72v0h-772.506c-16.966 0-30.72 13.754-30.72 30.72s13.754 30.72 30.72 30.72v0h772.096c0.001 0 0.002 0 0.003 0 17.048 0 30.896-13.705 31.127-30.698l0-0.022z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bank"]},"attrs":[{}],"properties":{"order":6481,"id":483,"name":"bank","prevSize":32,"code":59737},"setIdx":0,"setId":0,"iconIdx":89},{"icon":{"paths":["M269.227 700.587c-0.127 0.002-0.277 0.003-0.427 0.003-17.673 0-32-14.327-32-32 0-0.001 0-0.002 0-0.003l-0 0v-327.253c-0.136-1.115-0.213-2.405-0.213-3.713 0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427c0 1.309-0.078 2.599-0.228 3.867l0.015-0.153v328.533c-0.706 17.114-14.751 30.72-31.974 30.72-0.009 0-0.018-0-0.027-0l0.001 0zM429.653 396.373v-55.040c0.136-1.115 0.213-2.405 0.213-3.713 0-17.909-14.518-32.427-32.427-32.427s-32.427 14.518-32.427 32.427c0 1.309 0.078 2.599 0.228 3.867l-0.015-0.153v55.040c1.926 16.239 15.613 28.713 32.213 28.713s30.287-12.474 32.198-28.56l0.015-0.153zM429.653 668.587v-164.267c0.136-1.115 0.213-2.405 0.213-3.713 0-17.909-14.518-32.427-32.427-32.427s-32.427 14.518-32.427 32.427c0 1.309 0.078 2.599 0.228 3.867l-0.015-0.153v164.267c1.926 16.239 15.613 28.713 32.213 28.713s30.287-12.474 32.198-28.56l0.015-0.153zM685.653 659.2v-56.747c-1.926-16.239-15.613-28.713-32.213-28.713s-30.287 12.474-32.198 28.56l-0.015 0.153v56.747c1.926 16.239 15.613 28.713 32.213 28.713s30.287-12.474 32.198-28.56l0.015-0.153zM685.653 494.933v-164.693c-1.926-16.239-15.613-28.713-32.213-28.713s-30.287 12.474-32.198 28.56l-0.015 0.153v164.693c1.926 16.239 15.613 28.713 32.213 28.713s30.287-12.474 32.198-28.56l0.015-0.153zM557.653 668.587v-327.253c0.136-1.115 0.213-2.405 0.213-3.713 0-17.909-14.518-32.427-32.427-32.427s-32.427 14.518-32.427 32.427c0 1.309 0.078 2.599 0.228 3.867l-0.015-0.153v328.533c1.926 16.239 15.613 28.713 32.213 28.713s30.287-12.474 32.198-28.56l0.015-0.153zM813.653 668.587v-327.253c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 328.533c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM969.813 629.76v-235.52c-0.242-144.115-117.005-260.878-261.097-261.12l-0.023-0h-395.093c-144.115 0.242-260.878 117.005-261.12 261.097l-0 0.023v235.52c0.242 144.115 117.005 260.878 261.097 261.12l0.023 0h395.947c144.115-0.242 260.878-117.005 261.12-261.097l0-0.023zM709.547 197.547c108.533 0.242 196.451 88.16 196.693 196.67l0 0.023v235.52c-0.242 108.533-88.16 196.451-196.67 196.693l-0.023 0h-395.947c-108.533-0.242-196.451-88.16-196.693-196.67l-0-0.023v-235.52c0.242-108.533 88.16-196.451 196.67-196.693l0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["barcode"]},"attrs":[{}],"properties":{"order":6482,"id":482,"name":"barcode","prevSize":32,"code":59738},"setIdx":0,"setId":0,"iconIdx":90},{"icon":{"paths":["M970.667 298.667c0.018-0.798 0.029-1.739 0.029-2.681 0-67.338-53.059-122.283-119.649-125.309l-0.273-0.010h-82.773l-59.733-98.56c-5.695-8.842-15.489-14.615-26.632-14.615-5.913 0-11.447 1.626-16.178 4.454l0.144-0.080c-8.984 6.418-14.77 16.81-14.77 28.555 0 6.628 1.843 12.825 5.045 18.108l-0.088-0.156 37.973 62.293h-363.52l37.547-61.44c3.114-5.127 4.957-11.324 4.957-17.952 0-11.744-5.787-22.137-14.664-28.482l-0.106-0.072c-4.629-2.943-10.268-4.69-16.315-4.69-11.136 0-20.887 5.925-26.275 14.794l-0.077 0.136-59.307 94.293h-82.773c-66.916 2.972-120.041 57.944-120.041 125.324 0 2.142 0.054 4.271 0.16 6.387l-0.012-0.297c-0.065 1.519-0.101 3.3-0.101 5.091 0 57.958 38.52 106.918 91.355 122.678l0.906 0.232 60.587 394.24c12.137 85.103 83.486 150.131 170.445 152.316l0.222 0.004h276.053c88.015-2.194 159.867-68.597 170.578-154.015l0.088-0.865 55.467-394.24c53.484-16.154 91.761-64.989 91.761-122.763 0-0.941-0.010-1.88-0.030-2.817l0.002 0.14zM757.333 805.973c-6.57 54.304-51.111 96.348-105.985 98.977l-0.255 0.010h-276.053c-54.873-2.574-99.281-44.193-106.181-97.571l-0.059-0.562-58.027-380.16h602.453zM849.067 362.24h-675.84c-31.386-2.242-55.999-28.255-55.999-60.016 0-1.251 0.038-2.494 0.114-3.727l-0.008 0.169c-0.103-1.319-0.162-2.856-0.162-4.407 0-31.781 24.644-57.806 55.864-60.009l0.191-0.011h677.547c31.411 2.214 56.055 28.239 56.055 60.020 0 1.551-0.059 3.088-0.174 4.609l0.012-0.202c0.028 0.681 0.043 1.479 0.043 2.282 0 31.739-24.579 57.738-55.741 60l-0.195 0.011zM402.347 676.267c-5.723-6.209-9.232-14.535-9.232-23.68s3.509-17.471 9.254-23.704l-0.022 0.024c5.633-6.112 13.678-9.927 22.613-9.927s16.98 3.815 22.594 9.906l0.019 0.021 52.053 53.76 132.693-128c5.592-5.391 13.211-8.712 21.605-8.712 9.427 0 17.876 4.188 23.587 10.805l0.034 0.040c5.227 6.078 8.41 14.044 8.41 22.755 0 9.808-4.036 18.673-10.537 25.026l-0.007 0.007-155.307 148.48c-5.75 5.188-13.367 8.404-21.734 8.533l-0.026 0c-8.89-0.129-16.884-3.863-22.604-9.803l-0.010-0.010z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["basket-ok"]},"attrs":[{}],"properties":{"order":6483,"id":481,"name":"basket-ok","prevSize":32,"code":59739},"setIdx":0,"setId":0,"iconIdx":91},{"icon":{"paths":["M970.667 298.667c0.018-0.798 0.029-1.739 0.029-2.681 0-67.338-53.059-122.283-119.649-125.309l-0.273-0.010h-82.773l-59.733-98.56c-5.695-8.842-15.489-14.615-26.632-14.615-5.913 0-11.447 1.626-16.178 4.454l0.144-0.080c-8.984 6.418-14.77 16.81-14.77 28.555 0 6.628 1.843 12.825 5.045 18.108l-0.088-0.156 37.973 62.293h-363.947l37.973-61.44c4.153-5.682 6.645-12.807 6.645-20.513 0-12.279-6.326-23.081-15.897-29.324l-0.135-0.082c-4.653-2.917-10.308-4.647-16.367-4.647-11.010 0-20.686 5.713-26.225 14.336l-0.074 0.124-62.293 98.133h-80.213c-66.916 2.972-120.041 57.944-120.041 125.324 0 2.142 0.054 4.271 0.16 6.387l-0.012-0.297c-0.065 1.519-0.101 3.3-0.101 5.091 0 57.958 38.52 106.918 91.355 122.678l0.906 0.232 60.587 394.24c12.137 85.103 83.486 150.131 170.445 152.316l0.222 0.004h276.053c88.015-2.194 159.867-68.597 170.578-154.015l0.088-0.865 56.32-391.68c53.091-16.4 90.997-65.041 90.997-122.535 0-1.922-0.042-3.835-0.126-5.736l0.009 0.271zM757.333 806.4c-6.593 54.206-51.166 96.133-106.004 98.552l-0.236 0.008h-276.053c-54.873-2.574-99.281-44.193-106.181-97.571l-0.059-0.562-58.027-380.16h602.453zM850.773 360.96h-677.547c-31.358-2.274-55.937-28.272-55.937-60.012 0-0.802 0.016-1.601 0.047-2.396l-0.004 0.114c-0.103-1.319-0.162-2.856-0.162-4.407 0-31.781 24.644-57.806 55.864-60.009l0.191-0.011h677.547c31.411 2.214 56.055 28.239 56.055 60.020 0 1.551-0.059 3.088-0.174 4.609l0.012-0.202c0.028 0.681 0.043 1.479 0.043 2.282 0 31.739-24.579 57.738-55.741 60l-0.195 0.011zM381.44 729.6v-161.707c0-17.673 14.327-32 32-32s32 14.327 32 32v0 161.707c0 17.673-14.327 32-32 32s-32-14.327-32-32v0zM579.84 729.6v-161.707c0-17.673 14.327-32 32-32s32 14.327 32 32v0 161.707c0 17.673-14.327 32-32 32s-32-14.327-32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["basket"]},"attrs":[{}],"properties":{"order":6484,"id":480,"name":"basket","prevSize":32,"code":59740},"setIdx":0,"setId":0,"iconIdx":92},{"icon":{"paths":["M938.667 581.547c0-12.8-4.267-25.6-4.267-34.133-3.063-30.633-13.795-58.272-30.228-81.607l0.361 0.541c-17.5-23.92-40.503-42.817-67.202-55.030l-1.065-0.437c-23.247-10.841-50.469-17.166-79.169-17.166-2.168 0-4.327 0.036-6.477 0.108l0.313-0.008c-1.779-0.059-3.871-0.093-5.971-0.093-105.567 0-191.147 85.579-191.147 191.147 0 6.343 0.309 12.613 0.913 18.797l-0.062-0.784c-0.514 5.16-0.808 11.153-0.808 17.215 0 54.022 23.295 102.604 60.387 136.248l0.154 0.137c37.082 29.261 84.49 46.934 136.026 46.934 0.178 0 0.356-0 0.534-0.001l-0.027 0c68.161-0.499 128.455-33.74 165.996-84.758l0.404-0.575c3.204-4.371 5.127-9.856 5.127-15.79 0-14.698-11.796-26.64-26.438-26.876l-0.022-0h-25.6c-1.773-0.165-3.834-0.259-5.917-0.259-17.432 0-33.329 6.575-45.345 17.38l0.062-0.055c-17.038 15.113-39.321 24.653-63.809 25.594l-0.191 0.006c-0.577 0.010-1.258 0.016-1.94 0.016-19.531 0-37.955-4.738-54.187-13.126l0.66 0.31c-25.845-16.518-42.734-45.062-42.734-77.55 0-1.237 0.024-2.467 0.073-3.692l-0.006 0.176h238.933c0.792 0.056 1.716 0.087 2.647 0.087 22.15 0 40.107-17.956 40.107-40.107 0-0.932-0.032-1.856-0.094-2.771l0.007 0.124zM657.067 554.667c0.344-23.424 10.074-44.51 25.586-59.72l0.014-0.014c17.409-13.315 39.483-21.335 63.431-21.335 0.2 0 0.4 0.001 0.6 0.002l-0.031-0c22.667 0.626 43.369 8.554 59.96 21.503l-0.226-0.17c15.526 15.223 25.256 36.31 25.599 59.669l0.001 0.064zM439.467 507.733c15.573-6.627 28.522-16.836 38.232-29.636l0.168-0.231c15.979-20.081 25.638-45.813 25.638-73.801 0-1.055-0.014-2.106-0.041-3.154l0.003 0.155c0.088-1.736 0.138-3.769 0.138-5.815 0-28.476-9.686-54.689-25.943-75.525l0.205 0.273c-30.559-31.296-73.172-50.704-120.318-50.704-5.71 0-11.354 0.285-16.918 0.841l0.702-0.057h-213.333c-0.792-0.056-1.716-0.087-2.647-0.087-22.15 0-40.107 17.956-40.107 40.107 0 0.932 0.032 1.856 0.094 2.771l-0.007-0.124v435.2c-0.056 0.792-0.087 1.716-0.087 2.647 0 22.15 17.956 40.107 40.107 40.107 0.932 0 1.856-0.032 2.771-0.094l-0.124 0.007h196.267c25.983-0.53 50.949-3.611 75.040-9.005l-2.507 0.472c22.741-4.377 42.852-13.33 60.166-25.899l-0.433 0.299c16.001-11.020 28.951-25.334 38.083-42.034l0.317-0.632c16.013-21.523 25.636-48.627 25.636-77.979 0-1.086-0.013-2.169-0.039-3.248l0.003 0.16c0-0.141 0.001-0.308 0.001-0.474 0-28.212-7.937-54.571-21.699-76.965l0.365 0.639c-13.753-21.98-34.441-38.522-58.953-46.707l-0.78-0.226zM192 359.68h110.933c22.821 0.168 44.844 3.272 65.808 8.95l-1.808-0.417c17.683 5.476 30.305 21.682 30.305 40.837 0 2.151-0.159 4.265-0.466 6.33l0.029-0.233c0.065 0.999 0.102 2.167 0.102 3.343 0 17.688-8.344 33.428-21.31 43.497l-0.125 0.093c-14.694 8.121-32.213 12.9-50.849 12.9-1.624 0-3.24-0.036-4.846-0.108l0.228 0.008h-128zM375.467 692.48c-16.571 5.337-35.641 8.452-55.425 8.533l-0.041 0h-128v-140.8l132.267 4.267c18.338 0.025 35.938 3.148 52.316 8.873l-1.116-0.34c20.315 9.068 34.218 29.092 34.218 52.362 0 1.092-0.031 2.177-0.091 3.254l0.007-0.149c0.059 1.077 0.092 2.337 0.092 3.605 0 25.523-13.582 47.874-33.913 60.219l-0.312 0.176zM629.333 304.213c-0.002-0.128-0.003-0.278-0.003-0.429 0-18.616 15.091-33.707 33.707-33.707 0.151 0 0.302 0.001 0.452 0.003l-0.023-0h162.133c18.851-0 34.133 15.282 34.133 34.133s-15.282 34.133-34.133 34.133v0h-162.133c-17.067-0-29.867-12.8-34.133-34.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["behance"]},"attrs":[{}],"properties":{"order":6485,"id":479,"name":"behance","prevSize":32,"code":59741},"setIdx":0,"setId":0,"iconIdx":93},{"icon":{"paths":["M767.59 812.646h-552.141c-84.964-0.232-153.777-69.046-154.010-153.987l-0-0.022v-293.274c0.232-84.964 69.046-153.777 153.987-154.010l0.022-0h552.141c84.964 0.232 153.777 69.046 154.010 153.987l0 0.022v293.274c-0.232 84.964-69.046 153.777-153.987 154.010l-0.022 0zM215.45 272.794c-51.125 0-92.57 41.445-92.57 92.57v0 293.274c0 51.125 41.445 92.57 92.57 92.57v0h552.141c51.125 0 92.57-41.445 92.57-92.57v0-293.274c0-51.125-41.445-92.57-92.57-92.57v0z","M232.653 478.822c-18.323-0-33.178 14.854-33.178 33.178s14.854 33.178 33.178 33.178c18.323 0 33.178-14.854 33.178-33.178v0c0-18.323-14.854-33.178-33.178-33.178v0z","M743.424 478.822c-18.323-0-33.178 14.854-33.178 33.178s14.854 33.178 33.178 33.178c18.323 0 33.178-14.854 33.178-33.178v0c-0.228-18.231-14.947-32.95-33.156-33.177l-0.022-0z","M491.52 672.154c-82.75-4.817-148.031-73.098-148.031-156.627 0-2.537 0.060-5.060 0.179-7.567l-0.013 0.354c-0.106-2.153-0.166-4.676-0.166-7.213 0-83.529 65.282-151.811 147.608-156.608l0.423-0.020c82.933 4.604 148.44 72.977 148.44 156.65 0 2.529-0.060 5.044-0.178 7.544l0.013-0.353c0.094 2.030 0.147 4.411 0.147 6.804 0 83.749-65.455 152.21-147.998 157.017l-0.425 0.020zM491.52 404.685c-48.856 4.816-86.712 45.692-86.712 95.41 0 2.604 0.104 5.184 0.308 7.736l-0.022-0.336c-0.203 2.338-0.318 5.058-0.318 7.806 0 49.729 37.873 90.613 86.348 95.382l0.396 0.031c49.083-4.818 87.12-45.878 87.12-95.821 0-2.604-0.103-5.183-0.306-7.734l0.022 0.337c0.18-2.204 0.283-4.771 0.283-7.361 0-49.861-38.074-90.83-86.735-95.419l-0.383-0.029z"],"attrs":[{},{},{},{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bill"]},"attrs":[{},{},{},{}],"properties":{"order":6486,"id":478,"name":"bill","prevSize":32,"code":59742},"setIdx":0,"setId":0,"iconIdx":94},{"icon":{"paths":["M526.080 952.32c-0.122 0.001-0.267 0.001-0.412 0.001-18.502 0-35.252-7.501-47.374-19.628l-0-0-51.627-54.187c-12.351-12.093-20.009-28.939-20.009-47.573s7.657-35.48 19.997-47.562l0.012-0.011 366.080-366.080c12.324-11.845 29.097-19.14 47.573-19.14s35.25 7.295 47.596 19.162l-0.023-0.022 50.773 52.053c12.167 12.258 19.687 29.144 19.687 47.787s-7.52 35.529-19.691 47.791l0.004-0.004-366.080 366.080c-11.698 12.56-28.097 20.608-46.379 21.329l-0.128 0.004zM837.973 461.227c-0.306-0.18-0.674-0.286-1.067-0.286s-0.761 0.106-1.077 0.291l0.010-0.005-366.507 367.36c-0.579 0.61-0.935 1.437-0.935 2.347s0.356 1.736 0.936 2.348l-0.001-0.002 53.76 54.187c0.676 0.607 1.575 0.978 2.56 0.978s1.884-0.371 2.564-0.981l-0.004 0.003 367.787-366.080c0.607-0.676 0.978-1.575 0.978-2.56s-0.371-1.884-0.981-2.564l0.003 0.004-55.467-53.76c-0.448-0.783-1.278-1.301-2.229-1.301-0.117 0-0.231 0.008-0.344 0.023l0.013-0.001zM359.68 785.92c-0.591 0.019-1.287 0.029-1.984 0.029-17.705 0-33.816-6.825-45.845-17.988l0.043 0.039-53.76-55.893c-12.375-12.163-20.044-29.079-20.044-47.787s7.669-35.624 20.034-47.777l0.010-0.009 366.080-366.080c12.406-11.656 29.153-18.817 47.573-18.817s35.167 7.161 47.61 18.851l-0.037-0.034 54.187 54.187c12.123 12.12 19.623 28.864 19.627 47.359l0 0.001c0.004 0.28 0.007 0.609 0.007 0.94 0 18.337-7.511 34.919-19.625 46.838l-0.009 0.009-366.080 368.213c-12.046 11.123-28.208 17.944-45.964 17.944-0.641 0-1.28-0.009-1.916-0.027l0.094 0.002zM672 294.827h-2.56l-366.080 366.933c-0.607 0.676-0.978 1.575-0.978 2.56s0.371 1.884 0.981 2.564l-0.003-0.004 53.76 53.76c0.676 0.607 1.575 0.978 2.56 0.978s1.884-0.371 2.564-0.981l-0.004 0.003 366.080-366.080v-4.693l-54.187-54.187zM359.253 452.693c-0.154 0.001-0.336 0.002-0.518 0.002-18.334 0-34.915-7.509-46.834-19.62l-0.009-0.009-55.893-53.76c-12.067-12.304-19.515-29.175-19.515-47.787s7.448-35.483 19.525-47.798l-0.011 0.011 201.387-198.4c12.484-12.368 29.67-20.011 48.64-20.011s36.156 7.642 48.645 20.016l-0.005-0.005 53.76 53.76c12.27 12.211 19.863 29.112 19.863 47.787s-7.593 35.576-19.861 47.784l-0.003 0.003-201.387 198.4c-11.993 12.124-28.631 19.631-47.023 19.631-0.269 0-0.537-0.002-0.804-0.005l0.041 0zM505.173 128h-2.56l-199.68 200.96c-0.607 0.676-0.978 1.575-0.978 2.56s0.371 1.884 0.981 2.564l-0.003-0.004 54.187 53.76c0.61 0.579 1.437 0.935 2.347 0.935s1.736-0.356 2.348-0.936l-0.002 0.001 199.68-199.68c0.874-0.532 1.448-1.479 1.448-2.56s-0.575-2.028-1.435-2.553l-0.013-0.007-53.76-55.040zM193.28 619.093c-0.122 0.001-0.267 0.001-0.412 0.001-18.502 0-35.252-7.501-47.374-19.628l-53.76-53.76c-12.27-12.211-19.863-29.112-19.863-47.787s7.593-35.576 19.861-47.784l0.003-0.003 53.76-53.76c12.142-12.246 28.973-19.827 47.573-19.827s35.431 7.581 47.569 19.823l0.005 0.005 54.187 53.76c12.067 12.304 19.515 29.175 19.515 47.787s-7.448 35.483-19.525 47.798l0.011-0.011-53.76 53.76c-12.188 12.129-28.993 19.627-47.55 19.627-0.083 0-0.166-0-0.249-0l0.013 0zM190.72 441.6l-53.76 53.76c-0.874 0.532-1.448 1.479-1.448 2.56s0.575 2.028 1.435 2.553l0.013 0.007 53.76 54.187c0.676 0.607 1.575 0.978 2.56 0.978s1.884-0.371 2.564-0.981l-0.004 0.003 53.76-53.76c0.607-0.676 0.978-1.575 0.978-2.56s-0.371-1.884-0.981-2.564l0.003 0.004-54.187-54.187c-0.61-0.579-1.437-0.935-2.347-0.935s-1.736 0.356-2.348 0.936l0.002-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["binance-usd"]},"attrs":[{}],"properties":{"order":6487,"id":477,"name":"binance-usd","prevSize":32,"code":59743},"setIdx":0,"setId":0,"iconIdx":95},{"icon":{"paths":["M512 640c-16.648-0.34-31.651-7.115-42.677-17.93l0.010 0.010-67.413-67.413c-10.565-11.078-17.067-26.113-17.067-42.667s6.501-31.589 17.090-42.691l-0.023 0.025 67.413-67.84c11.197-10.289 26.195-16.595 42.667-16.595s31.47 6.306 42.712 16.636l-0.046-0.041 66.133 67.84c10.565 11.078 17.067 26.113 17.067 42.667s-6.501 31.589-17.090 42.691l0.023-0.025-66.133 67.84c-11.047 10.685-26.065 17.323-42.634 17.493l-0.033 0zM509.867 446.293l-62.293 65.707 64.427 65.28 62.293-65.28zM180.907 640c-16.729-0.319-31.773-7.276-42.659-18.338l-0.008-0.008-66.987-66.987c-10.471-11.119-16.906-26.141-16.906-42.667s6.435-31.548 16.935-42.698l-0.029 0.032 65.707-67.84c10.893-11.070 25.938-18.027 42.607-18.346l0.060-0.001c16.756 0.169 31.847 7.163 42.651 18.33l0.016 0.017 67.84 67.84c10.471 11.119 16.906 26.141 16.906 42.667s-6.435 31.548-16.935 42.698l0.029-0.032-65.707 67.413c-10.82 11.183-25.91 18.177-42.635 18.346l-0.032 0zM180.907 445.867l-64 66.133 65.707 64 61.013-64zM842.24 640c-16.695-0.508-31.682-7.42-42.669-18.349l0.003 0.003-66.987-66.987c-10.565-11.078-17.067-26.113-17.067-42.667s6.501-31.589 17.090-42.691l-0.023 0.025 66.133-68.267c11.119-10.471 26.141-16.906 42.667-16.906s31.548 6.435 42.698 16.935l-0.032-0.029 67.413 68.267c10.471 11.119 16.906 26.141 16.906 42.667s-6.435 31.548-16.935 42.698l0.029-0.032-65.707 66.56c-11.082 11.346-26.44 18.474-43.464 18.773l-0.056 0.001zM842.24 445.867l-64.427 66.133 66.133 63.573 60.587-63.573zM905.813 512v0zM336.213 443.307c-16.729-0.319-31.773-7.276-42.659-18.338l-0.008-0.008-46.933-46.933c-10.471-11.119-16.906-26.141-16.906-42.667s6.435-31.548 16.935-42.698l-0.029 0.032 213.333-215.893c13.299-13.022 31.524-21.058 51.627-21.058s38.328 8.036 51.64 21.071l-0.013-0.013 213.333 215.893c10.565 11.078 17.067 26.113 17.067 42.667s-6.501 31.589-17.090 42.691l0.023-0.025-46.507 48.64c-11.159 10.379-26.169 16.749-42.667 16.749s-31.508-6.37-42.705-16.784l0.039 0.035-132.693-135.68-132.267 135.68c-10.964 10.317-25.774 16.657-42.064 16.657-0.512 0-1.023-0.006-1.532-0.019l0.076 0.001zM512 117.333c-0.038-0.001-0.083-0.001-0.128-0.001-2.443 0-4.657 0.977-6.273 2.562l0.001-0.001-213.333 215.893 46.080 42.667 128-134.827c11.119-10.471 26.141-16.906 42.667-16.906s31.548 6.435 42.698 16.935l-0.032-0.029 136.533 136.107 42.667-46.933-213.333-213.333c-1.472-1.304-3.413-2.108-5.541-2.133l-0.005-0zM512 970.667c-0.109 0.001-0.238 0.001-0.367 0.001-20.115 0-38.284-8.335-51.24-21.741l-0.019-0.020-213.333-216.32c-10.379-11.159-16.749-26.169-16.749-42.667s6.37-31.508 16.784-42.705l-0.035 0.039 45.227-49.92c11.159-10.379 26.169-16.749 42.667-16.749s31.508 6.37 42.705 16.784l-0.039-0.035 134.4 136.96 131.413-136.96c10.82-11.183 25.91-18.177 42.635-18.346l0.032-0c16.729 0.319 31.773 7.276 42.659 18.338l46.088 46.942c10.379 11.159 16.749 26.169 16.749 42.667s-6.37 31.508-16.784 42.705l0.035-0.039-213.333 216.32c-12.245 14.027-29.665 23.269-49.252 24.732l-0.241 0.014zM333.653 643.413l-42.667 46.933 213.333 213.333c1.414 1.907 3.658 3.129 6.187 3.129s4.773-1.222 6.172-3.109l0.015-0.021 213.333-216.747-42.667-42.667-132.693 134.827c-11.119 10.471-26.141 16.906-42.667 16.906s-31.548-6.435-42.698-16.935l0.032 0.029z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["binance"]},"attrs":[{}],"properties":{"order":6488,"id":476,"name":"binance","prevSize":32,"code":59744},"setIdx":0,"setId":0,"iconIdx":96},{"icon":{"paths":["M491.52 952.32c-243.182 0-440.32-197.138-440.32-440.32s197.138-440.32 440.32-440.32c243.182 0 440.32 197.138 440.32 440.32v0c-0.233 243.088-197.232 440.087-440.298 440.32l-0.022 0zM491.52 133.12c-209.25 0-378.88 169.63-378.88 378.88s169.63 378.88 378.88 378.88c209.25 0 378.88-169.63 378.88-378.88v0c-0.233-209.156-169.724-378.647-378.857-378.88l-0.023-0zM672.563 491.52c12.263-18.054 19.601-40.318 19.661-64.292l0-0.015v-6.554c0.007-0.487 0.012-1.062 0.012-1.638 0-64.019-51.898-115.917-115.917-115.917-0.004 0-0.008 0-0.012 0l-34.406-0v-53.658c0-16.966-13.754-30.72-30.72-30.72s-30.72 13.754-30.72 30.72v0 52.429h-52.019v-54.067c0-16.966-13.754-30.72-30.72-30.72s-30.72 13.754-30.72 30.72v0 52.838h-98.304c-0.001-0-0.002-0-0.003-0-16.822 0-30.486 13.521-30.717 30.289l-0 0.022c-0 0.003-0 0.007-0 0.011 0 16.904 13.474 30.662 30.268 31.118l0.042 0.001h52.429v119.194h-52.429c-16.966 0-30.72 13.754-30.72 30.72s13.754 30.72 30.72 30.72v0h52.429v115.917h-52.429c-16.966 0-30.72 13.754-30.72 30.72s13.754 30.72 30.72 30.72v0h100.352v55.296c0 16.966 13.754 30.72 30.72 30.72s30.72-13.754 30.72-30.72v0-56.115h52.019v58.982c0 16.966 13.754 30.72 30.72 30.72s30.72-13.754 30.72-30.72v0-58.982h84.378c63.365-3.35 113.477-55.546 113.477-119.446 0-47.618-27.828-88.737-68.109-107.981l-0.721-0.31zM382.157 362.086l193.741 2.458c0-0 0.001-0 0.002-0 30.169 0 54.653 24.341 54.885 54.455l0 0.022v6.554c-0.23 30.22-24.667 54.656-54.864 54.886l-0.022 0h-193.741zM627.917 657.818h-245.76v-115.917h245.76c29.955 2.596 53.287 27.552 53.287 57.958s-23.332 55.363-53.069 57.943l-0.218 0.015z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bitcoin"]},"attrs":[{}],"properties":{"order":6489,"id":475,"name":"bitcoin","prevSize":32,"code":59745},"setIdx":0,"setId":0,"iconIdx":97},{"icon":{"paths":["M686.933 590.080h-147.2v-347.733c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 347.733h-147.627c-0.070-0.001-0.153-0.001-0.236-0.001-11.075 0-20.053 8.978-20.053 20.053 0 5.703 2.38 10.849 6.202 14.501l0.008 0.007 179.2 179.2c3.588 3.806 8.664 6.177 14.293 6.177s10.705-2.37 14.284-6.167l0.009-0.010 179.2-179.2c3.829-3.659 6.209-8.805 6.209-14.508 0-11.075-8.978-20.053-20.053-20.053-0.083 0-0.166 0.001-0.249 0.002l0.013-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-down"]},"attrs":[{}],"properties":{"order":6490,"id":474,"name":"black-down","prevSize":32,"code":59746},"setIdx":0,"setId":0,"iconIdx":98},{"icon":{"paths":["M886.613 512c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0h-348.16v138.667c0.033 0.475 0.052 1.030 0.052 1.589 0 13.432-10.888 24.32-24.32 24.32-7.336 0-13.914-3.248-18.373-8.386l-0.025-0.030-170.667-170.667c-4.324-4.388-6.994-10.415-6.994-17.067s2.67-12.679 6.997-17.070l-0.003 0.003 170.667-170.667c4.483-5.138 11.043-8.367 18.356-8.367 13.432 0 24.32 10.888 24.32 24.32 0 0.241-0.004 0.482-0.011 0.722l0.001-0.035v137.813h346.88c0.255-0.007 0.555-0.011 0.856-0.011 17.909 0 32.427 14.518 32.427 32.427 0 0.154-0.001 0.308-0.003 0.461l0-0.023zM161.28 206.507c-17.673 0-32 14.327-32 32v0 546.987c0 17.673 14.327 32 32 32s32-14.327 32-32v0-546.987c0.002-0.141 0.004-0.306 0.004-0.473 0-16.838-13.181-30.598-29.788-31.524l-0.082-0.004z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-left-line"]},"attrs":[{}],"properties":{"order":6491,"id":473,"name":"black-left-line","prevSize":32,"code":59747},"setIdx":0,"setId":0,"iconIdx":99},{"icon":{"paths":["M776.96 479.147h-347.733v-147.2c0.001-0.068 0.001-0.148 0.001-0.229 0-11.075-8.978-20.053-20.053-20.053-5.489 0-10.462 2.205-14.084 5.778l0.002-0.002-179.627 179.627c-3.57 3.619-5.774 8.592-5.774 14.080s2.205 10.461 5.777 14.082l-0.002-0.002 179.627 179.627c3.619 3.57 8.593 5.776 14.081 5.776 11.075 0 20.053-8.978 20.053-20.053 0-0.081-0-0.161-0.001-0.241l0 0.012v-147.2h347.733c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-left"]},"attrs":[{}],"properties":{"order":6492,"id":472,"name":"black-left","prevSize":32,"code":59748},"setIdx":0,"setId":0,"iconIdx":100},{"icon":{"paths":["M721.92 508.16c4.324 4.388 6.994 10.415 6.994 17.067s-2.67 12.679-6.997 17.070l0.003-0.003-170.667 170.667c-4.484 5.15-11.050 8.386-18.373 8.386-13.432 0-24.32-10.888-24.32-24.32 0-0.398 0.010-0.795 0.029-1.188l-0.002 0.056v-139.093h-345.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h348.587v-137.387c-0.017-0.338-0.026-0.734-0.026-1.133 0-13.432 10.888-24.32 24.32-24.32 7.323 0 13.889 3.236 18.348 8.357l0.025 0.029zM853.333 205.653c-0.128-0.002-0.279-0.003-0.43-0.003-17.437 0-31.573 14.136-31.573 31.573 0 0.151 0.001 0.302 0.003 0.452l-0-0.023v547.413c0 17.673 14.327 32 32 32s32-14.327 32-32v0-547.413c0-17.673-14.327-32-32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-right-line"]},"attrs":[{}],"properties":{"order":6493,"id":471,"name":"black-right-line","prevSize":32,"code":59749},"setIdx":0,"setId":0,"iconIdx":101},{"icon":{"paths":["M620.8 317.44c-3.619-3.57-8.593-5.776-14.081-5.776-11.075 0-20.053 8.978-20.053 20.053 0 0.081 0 0.161 0.001 0.241l-0-0.012v147.2h-347.733c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h347.733v147.2c-0.001 0.068-0.001 0.148-0.001 0.229 0 11.075 8.978 20.053 20.053 20.053 5.489 0 10.462-2.205 14.084-5.778l-0.002 0.002 179.627-179.627c3.57-3.619 5.774-8.592 5.774-14.080s-2.205-10.461-5.777-14.082l0.002 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-right"]},"attrs":[{}],"properties":{"order":6494,"id":470,"name":"black-right","prevSize":32,"code":59750},"setIdx":0,"setId":0,"iconIdx":102},{"icon":{"paths":["M524.373 221.013c-4.388-4.324-10.415-6.994-17.067-6.994s-12.679 2.67-17.070 6.997l0.003-0.003-168.533 170.667c-5.665 4.412-9.274 11.234-9.274 18.899 0 13.196 10.697 23.893 23.893 23.893 0.862 0 1.713-0.046 2.552-0.135l-0.104 0.009h136.96v346.027c0 17.673 14.327 32 32 32s32-14.327 32-32v0-349.44h136.96c0.588 0.051 1.272 0.081 1.963 0.081 13.196 0 23.893-10.697 23.893-23.893 0-7.639-3.585-14.441-9.164-18.815l-0.052-0.039z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-up"]},"attrs":[{}],"properties":{"order":6495,"id":469,"name":"black-up","prevSize":32,"code":59751},"setIdx":0,"setId":0,"iconIdx":103},{"icon":{"paths":["M518.4 824.32c-5.143-0.067-9.978-1.32-14.264-3.498l0.184 0.085c-10.676-5.093-17.922-15.8-17.922-28.2 0-0.136 0.001-0.272 0.003-0.407l-0 0.021v-191.573l-124.16 114.773c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 169.387-158.293v-4.267l-167.253-147.627c-6.578-5.892-10.698-14.411-10.698-23.893 0-17.69 14.341-32.031 32.031-32.031 8.208 0 15.696 3.088 21.364 8.165l-0.030-0.027 124.587 111.36v-198.827c0.057-17.63 14.362-31.899 32-31.899 7.429 0 14.266 2.531 19.697 6.779l-0.070-0.053 177.92 138.24c7.173 5.663 11.873 14.183 12.37 23.814l0.003 0.079c0.016 0.376 0.025 0.817 0.025 1.261 0 9.272-3.943 17.623-10.244 23.467l-0.020 0.019-134.4 125.44 133.973 119.893c6.57 6.097 10.668 14.779 10.668 24.419 0 0.115-0.001 0.231-0.002 0.346l0-0.018c-0.602 9.816-5.266 18.435-12.316 24.274l-0.057 0.046-177.92 137.813c-5.011 3.5-11.231 5.592-17.94 5.592-0.593 0-1.183-0.016-1.768-0.049l0.081 0.004zM550.4 568.32v157.013l96-74.667zM550.4 291.84v164.267l96.427-89.173zM715.093 974.507h-406.187c-141.385 0-256-114.615-256-256v0-409.173c0-141.385 114.615-256 256-256v0h406.187c141.385 0 256 114.615 256 256v0 405.333c0 141.385-114.615 256-256 256h0zM308.907 121.173c-105.855 0.243-191.573 86.111-191.573 192 0 0 0 0 0 0l0 0v405.333c-0 0-0 0-0 0 0 105.889 85.718 191.757 191.55 191.999l0.023 0h406.187c105.671-0.485 191.147-86.259 191.147-191.998 0-0.001-0-0.001-0-0.002l-0-0v-409.173c0-0 0-0.001 0-0.002 0-105.739-85.475-191.513-191.1-191.998l-0.046-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bluetooth"]},"attrs":[{}],"properties":{"order":6496,"id":468,"name":"bluetooth","prevSize":32,"code":59752},"setIdx":0,"setId":0,"iconIdx":104},{"icon":{"paths":["M933.12 105.387c-17.64-14.908-40.212-24.487-64.964-26.011l-0.316-0.016c-2.237-0.208-4.838-0.327-7.467-0.327s-5.229 0.119-7.797 0.351l0.331-0.024h-8.96c-117.587 20.937-222.622 60.507-317.246 115.929l4.499-2.435c-4.935 2.721-10.774 4.428-16.987 4.691l-0.080 0.003c-0.187 0.004-0.407 0.006-0.627 0.006-6.771 0-13.058-2.075-18.258-5.625l0.112 0.072c-91.241-52.127-197.854-89.632-311.286-106.086l-4.874-0.58c-5.134-0.865-11.048-1.359-17.078-1.359-26.959 0-51.61 9.883-70.527 26.223l0.138-0.117c-23.574 20.158-38.421 49.93-38.421 83.169 0 0.761 0.008 1.52 0.023 2.278l-0.002-0.113v524.8c-0.004 0.349-0.006 0.761-0.006 1.174 0 53.342 39.154 97.538 90.29 105.417l0.596 0.076c120.473 21.841 228.086 59.506 327.102 111.353l-6.249-2.98c13.025 6.268 28.32 9.931 44.47 9.931 10.145 0 19.953-1.445 29.229-4.141l-0.738 0.184c9.094-1.928 17.081-4.575 24.65-7.985l-0.757 0.305c92.619-48.545 200.12-85.29 313.588-104.49l6.412-0.897c50.766-9.244 88.75-53.121 88.75-105.869 0-0.281-0.001-0.561-0.003-0.841l0 0.043v-534.187c0-0.084 0-0.185 0-0.285 0-32.593-14.502-61.799-37.406-81.517l-0.141-0.118zM154.027 763.733c-20.855-3.031-36.695-20.789-36.695-42.247 0-0.148 0.001-0.295 0.002-0.442l-0 0.022v-530.347c0.042-13.853 6.307-26.235 16.144-34.503l0.069-0.057c7.467-6.609 17.34-10.651 28.157-10.667l0.003-0h8.96c109.803 17.24 208.368 53.291 296.669 104.977l-3.976-2.15c5.397 3.133 11.637 5.757 18.22 7.551l0.553 0.129v615.68c-94.908-48.655-205.002-86.194-320.931-106.885l-7.175-1.062zM906.667 721.067c0.003 0.184 0.005 0.402 0.005 0.62 0 21.003-15.176 38.462-35.16 42.009l-0.258 0.038c-30.293 5.12-60.16 11.52-89.6 18.773l-25.6 7.253c-20.053 5.12-40.107 10.667-59.733 17.067-10.667 3.413-20.907 7.68-31.147 11.52-17.067 5.973-33.707 11.947-50.347 18.773s-20.907 9.387-31.573 14.507-26.453 11.093-39.253 17.493v-613.12c7.058-2.491 13.114-5.37 18.808-8.79l-0.462 0.257c63.437-36 136.864-66.591 214.118-87.972l6.895-1.628c23.893-5.973 46.933-10.667 70.4-14.507 2.214-0.377 4.765-0.593 7.366-0.593 11.57 0 22.144 4.264 30.237 11.307l-0.056-0.048c9.417 7.881 15.363 19.639 15.363 32.786 0 0.174-0.001 0.347-0.003 0.52l0-0.026zM201.387 352.427c0.463-17.484 14.516-31.537 31.957-31.999l0.043-0.001h96.853c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-96.853c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023zM394.667 480.427c-0.471 17.394-14.569 31.343-31.978 31.573l-0.022 0h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h128c17.726 0.239 32.003 14.664 32.003 32.424 0 0.151-0.001 0.302-0.003 0.452l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book-open"]},"attrs":[{}],"properties":{"order":6497,"id":467,"name":"book-open","prevSize":32,"code":59753},"setIdx":0,"setId":0,"iconIdx":105},{"icon":{"paths":["M725.333 1002.24h-426.667c-135.075-0.243-244.48-109.798-244.48-244.906 0-0 0-0 0-0l-0 0v-426.667c-0-0.127-0-0.277-0-0.427 0-135.108 109.406-244.664 244.457-244.906l0.023-0h426.667c135.075 0.243 244.48 109.798 244.48 244.906 0 0-0 0-0 0l0-0v426.667c0 0.127 0 0.277 0 0.427 0 135.108-109.406 244.664-244.457 244.906l-0.023 0zM298.667 149.333c-99.912 0-180.907 80.995-180.907 180.907v0 426.667c-0.001 0.253-0.002 0.553-0.002 0.853 0 99.912 80.995 180.907 180.907 180.907 0.001 0 0.001-0 0.002-0l426.667-0c99.728-0.243 180.48-81.144 180.48-180.906 0-0-0-0-0-0l-0-0v-426.667c0.001-0.254 0.002-0.554 0.002-0.854 0-99.763-80.753-180.665-180.459-180.906l-0.023-0zM788.48 277.333c-14.602-13.679-34.294-22.081-55.948-22.081-3.893 0-7.723 0.272-11.471 0.797l0.432-0.050c-76.517 13.583-144.873 39.323-206.441 75.395l2.921-1.582c-1.698 1.298-3.851 2.080-6.187 2.080s-4.489-0.782-6.211-2.098l0.025 0.018c-58.918-34.251-127.767-59.103-201.087-70.41l-3.287-0.417c-3.728-0.607-8.026-0.955-12.404-0.955-44.772 0-81.067 36.295-81.067 81.067 0 0.786 0.011 1.569 0.033 2.349l-0.003-0.115v337.92c-0.003 0.269-0.005 0.586-0.005 0.904 0 39.615 29.026 72.45 66.971 78.399l0.448 0.058c75.961 13.919 143.777 37.783 206.169 70.575l-3.929-1.881c10.445 4.052 22.534 6.4 35.172 6.4 0.085 0 0.17-0 0.255-0l-0.013 0c0.473 0.010 1.031 0.016 1.59 0.016 12.633 0 24.566-3 35.124-8.327l-0.447 0.205c58.054-30.497 125.457-53.432 196.633-65.175l3.9-0.531c38.074-6.934 66.561-39.841 66.561-79.401 0-0.135-0-0.271-0.001-0.406l0 0.021v-341.333c0.011-0.499 0.017-1.086 0.017-1.675 0-24.392-10.888-46.242-28.069-60.954l-0.109-0.091zM285.44 693.333c-7.786-1.279-13.655-7.959-13.655-16.010 0-0.071 0-0.143 0.001-0.214l-0 0.011v-335.787c-0-0.018-0-0.040-0-0.062 0-5.24 2.304-9.942 5.954-13.148l0.020-0.017c2.751-2.388 6.367-3.844 10.324-3.844 0.12 0 0.241 0.001 0.361 0.004l-0.018-0h2.56c68.384 10.214 129.922 32.086 185.206 63.657l-2.593-1.364 6.4 2.56v366.507c-56.196-27.397-121.437-49.019-189.848-61.575l-4.712-0.718zM752.213 677.973c0.002 0.105 0.004 0.229 0.004 0.353 0 7.983-5.621 14.652-13.121 16.267l-0.109 0.020c-73.101 12.369-138.578 33.455-199.51 62.53l4.523-1.943v-366.080c2.138-0.756 3.969-1.62 5.695-2.641l-0.149 0.081c52.374-30.838 113.411-53.891 178.383-65.627l3.377-0.506c0.872-0.147 1.876-0.231 2.9-0.231 4.614 0 8.831 1.704 12.055 4.516l-0.022-0.019c3.608 2.955 5.911 7.389 5.973 12.363l0 0.011z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book-square"]},"attrs":[{}],"properties":{"order":6498,"id":466,"name":"book-square","prevSize":32,"code":59754},"setIdx":0,"setId":0,"iconIdx":106},{"icon":{"paths":["M725.333 53.333h-426.667c-0.254-0.001-0.554-0.002-0.854-0.002-99.527 0-180.238 80.562-180.479 180.032l-0 0.023v557.227c0.242 99.494 80.952 180.055 180.48 180.055 0.3 0 0.6-0.001 0.9-0.002l-0.046 0h426.667c99.343-0.242 179.811-80.71 180.053-180.030l0-0.023v-557.227c-0.242-99.343-80.71-179.811-180.030-180.053l-0.023-0zM841.387 790.613c0 64.094-51.959 116.053-116.053 116.053v0h-426.667c-64.094 0-116.053-51.959-116.053-116.053v0-25.6c0.241-51.273 41.741-92.772 92.99-93.013l0.023-0h567.040zM274.347 608c-35.18 0.397-67.49 12.367-93.382 32.272l0.368-0.272v-406.613c-0-0.002-0-0.005-0-0.007 0-64.094 51.959-116.053 116.053-116.053 0.45 0 0.899 0.003 1.348 0.008l-0.068-0.001h426.667c64.094 0 116.053 51.959 116.053 116.053v0 374.613zM707.413 298.667c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0h-327.68c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h327.68c17.577 0.237 31.763 14.423 32 31.977l0 0.023zM584.107 450.987c0 17.673-14.327 32-32 32v0h-204.373c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h204.373c17.577 0.237 31.763 14.423 32 31.977l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book"]},"attrs":[{}],"properties":{"order":6499,"id":465,"name":"book","prevSize":32,"code":59755},"setIdx":0,"setId":0,"iconIdx":107},{"icon":{"paths":["M756.48 185.173c-3.959-73.551-64.5-131.709-138.654-131.84l-0.013-0h-213.333c-73.44 1.060-133.040 58.875-136.945 131.49l-0.015 0.35c-122.674 26.205-213.335 133.676-213.335 262.322 0 0.327 0.001 0.655 0.002 0.982l-0-0.051v253.44c0.242 148.356 120.443 268.557 268.776 268.8l0.024 0h379.733c148.356-0.242 268.557-120.443 268.8-268.776l0-0.024v-253.44c0-0.173 0.001-0.377 0.001-0.582 0-129.258-91.526-237.139-213.305-262.371l-1.736-0.301zM329.813 192.853c0.241-41.761 34.151-75.521 75.945-75.521 0.15 0 0.301 0 0.451 0.001l-0.023-0h213.333c41.611 0.241 75.279 33.909 75.52 75.497l0 0.023v341.333c0 0.001 0 0.002 0 0.003 0 19.558-15.855 35.413-35.413 35.413-6.781 0-13.117-1.906-18.501-5.211l0.154 0.088-63.147-37.973c-18.273-11.115-40.368-17.695-64-17.695s-45.727 6.58-64.553 18.007l0.553-0.312-66.133 37.12c-5.14 3.019-11.322 4.802-17.92 4.802s-12.78-1.783-18.089-4.893l0.169 0.092c-10.763-5.996-17.923-17.308-17.923-30.292 0-0.151 0.001-0.301 0.003-0.451l-0 0.023zM905.813 701.867c0 113.108-91.692 204.8-204.8 204.8v-0h-378.88c-113.108 0-204.8-91.692-204.8-204.8l-0-0v-253.44c-0-0.088-0-0.193-0-0.298 0-93.279 62.491-171.962 147.891-196.468l1.442-0.354v282.027c-0.002 0.261-0.004 0.57-0.004 0.878 0 54.669 44.318 98.987 98.987 98.987 19.097 0 36.931-5.408 52.054-14.776l-0.424 0.244 63.147-37.973c9.025-5.443 19.923-8.663 31.573-8.663s22.548 3.22 31.852 8.819l-0.279-0.156 63.147 37.973c14.612 8.918 32.289 14.199 51.2 14.199 54.904 0 99.413-44.509 99.413-99.413 0-0.042-0-0.083-0-0.125l0 0.006v-282.027c86.843 24.861 149.334 103.544 149.334 196.822 0 0.105-0 0.209-0 0.314l0-0.016z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bookmark-2"]},"attrs":[{}],"properties":{"order":6500,"id":464,"name":"bookmark-2","prevSize":32,"code":59756},"setIdx":0,"setId":0,"iconIdx":108},{"icon":{"paths":["M721.493 55.893h-391.68l-31.147-1.28v2.133c-139.483 20.539-245.338 139.397-245.338 282.979 0 0.565 0.002 1.13 0.005 1.694l-0-0.087v345.6c1.446 157.013 129.065 283.738 286.282 283.738 0.604 0 1.208-0.002 1.811-0.006l-0.093 0h345.6c157.782-0.242 285.624-128.084 285.867-285.843l0-0.024v-343.467c0.002-0.384 0.003-0.838 0.003-1.292 0-145.785-108.965-266.119-249.893-284.001l-1.416-0.147zM661.333 117.333v419.413c0 0.026 0.001 0.056 0.001 0.086 0 1.814-1.029 3.387-2.535 4.169l-0.026 0.012c-1.335 0.833-2.957 1.328-4.693 1.328s-3.358-0.494-4.731-1.35l0.038 0.022-107.093-47.787c-8.917-4.014-19.326-6.367-30.281-6.4l-0.012-0c-0.050-0-0.109-0-0.168-0-10.762 0-20.974 2.358-30.147 6.585l0.448-0.185-107.52 48.64c-1.335 0.833-2.957 1.328-4.693 1.328s-3.358-0.494-4.731-1.35l0.038 0.022c-1.532-0.794-2.561-2.367-2.561-4.181 0-0.030 0-0.060 0.001-0.090l-0 0.005v-420.267zM906.667 684.8c-0.242 122.436-99.431 221.624-221.844 221.867l-0.023 0h-343.467c-122.436-0.242-221.624-99.431-221.867-221.844l-0-0.023v-343.467c-0.006-0.596-0.009-1.301-0.009-2.006 0-107.441 76.371-197.045 177.788-217.488l1.421-0.239v415.147c0.017 24.311 12.659 45.665 31.724 57.862l0.276 0.165c11.28 7.501 25.139 11.969 40.041 11.969 10.844 0 21.136-2.366 30.387-6.609l-0.454 0.187 107.52-45.653c1.111-0.609 2.433-0.967 3.84-0.967s2.729 0.358 3.882 0.988l-0.042-0.021 107.52 47.787c8.917 4.014 19.326 6.367 30.281 6.4l0.012 0c0.093 0 0.204 0.001 0.314 0.001 14.676 0 28.309-4.463 39.616-12.107l-0.25 0.16c19.371-12.367 32.031-33.751 32.031-58.092 0-0.727-0.011-1.452-0.034-2.174l0.003 0.106v-415.147c103.881 19.818 181.339 109.93 181.339 218.134 0 0.562-0.002 1.124-0.006 1.686l0.001-0.086z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bookmark"]},"attrs":[{}],"properties":{"order":6501,"id":463,"name":"bookmark","prevSize":32,"code":59757},"setIdx":0,"setId":0,"iconIdx":109},{"icon":{"paths":["M981.333 422.827c-52.686-0.241-95.332-42.887-95.573-95.55l-0-0.023v-47.36c-0-101.561-82.332-183.893-183.893-183.893l0 0h-378.453c-101.561-0-183.893 82.332-183.893 183.893v0 47.36c0 0.003 0 0.006 0 0.009 0 52.784-42.79 95.573-95.573 95.573-0.45 0-0.899-0.003-1.348-0.009l0.068 0.001c-0.128-0.002-0.279-0.003-0.43-0.003-17.437 0-31.573 14.136-31.573 31.573 0 0.151 0.001 0.302 0.003 0.452l-0-0.023v112.213c0.932 16.923 14.882 30.293 31.954 30.293 0.016 0 0.032-0 0.048-0l-0.003 0c52.784 0 95.573 42.79 95.573 95.573v49.493c-0 101.561 82.332 183.893 183.893 183.893l0 0h377.173c101.561-0 183.893-82.332 183.893-183.893v0-47.787c-0.006-0.388-0.009-0.845-0.009-1.304 0-53.019 42.981-96 96-96 0.753 0 1.505 0.009 2.254 0.026l-0.111-0.002c0.128 0.002 0.279 0.003 0.43 0.003 17.437 0 31.573-14.136 31.573-31.573 0-0.151-0.001-0.302-0.003-0.452l0 0.023v-110.507c0.002-0.128 0.003-0.279 0.003-0.43 0-17.437-14.136-31.573-31.573-31.573-0.151 0-0.302 0.001-0.452 0.003l0.023-0zM949.333 538.453c-73.353 15.365-127.699 79.373-128 156.127l-0 0.033v49.493c-0 66.215-53.678 119.893-119.893 119.893l0 0h-378.027c-66.215-0-119.893-53.678-119.893-119.893v0-49.493c-0.301-76.787-54.647-140.795-126.958-155.977l-1.042-0.183v-55.040c73.353-15.365 127.699-79.373 128-156.127l0-0.033v-47.36c0-66.215 53.678-119.893 119.893-119.893v0h377.173c66.215-0 119.893 53.678 119.893 119.893v47.36c0.301 76.787 54.647 140.795 126.958 155.977l1.042 0.183zM660.053 426.667c0-0 0-0 0-0.001 0-66.215-53.678-119.893-119.893-119.893-0.15 0-0.3 0-0.45 0.001l0.023-0h-123.733c-0.001-0-0.002-0-0.003-0-17.523 0-31.757 14.085-31.997 31.551l-0 0.023v352c0 17.673 14.327 32 32 32v0h123.733c0.127 0 0.277 0.001 0.427 0.001 66.215 0 119.893-53.678 119.893-119.893 0-0-0-0.001-0-0.001l0 0c-0.079-34.846-15.172-66.151-39.149-87.801l-0.104-0.092c23.915-21.859 38.949-53.091 39.253-87.839l0-0.055zM597.333 602.453c-0.242 30.921-25.364 55.893-56.318 55.893-0.001 0-0.001-0-0.002-0l-93.013 0v-111.787h91.733c0.509-0.017 1.107-0.026 1.707-0.026 30.869 0 55.893 25.024 55.893 55.893 0 0.009-0 0.018-0 0.027l0-0.001zM448 482.56v-112.213h91.733c1.467-0.136 3.173-0.213 4.897-0.213 31.105 0 56.32 25.215 56.32 56.32s-25.215 56.32-56.32 56.32c-1.724 0-3.43-0.077-5.115-0.229l0.217 0.016z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bootstrap"]},"attrs":[{}],"properties":{"order":6502,"id":462,"name":"bootstrap","prevSize":32,"code":59758},"setIdx":0,"setId":0,"iconIdx":110},{"icon":{"paths":["M974.080 417.707c0.561-5.751 0.881-12.431 0.881-19.187 0-109.1-83.398-198.721-189.921-208.591l-0.826-0.062c-5.12 0-10.667 0-16.213 0h-68.693v-12.8c0-63.859-51.768-115.627-115.627-115.627h-144.64c-63.317 0.233-114.668 51.135-115.626 114.256l-0.001 0.090v12.8h-65.28c-115.517 0.243-209.067 93.943-209.067 209.493 0 0.15 0 0.3 0 0.45l-0-0.023c0 7.253 0 14.507 0 21.76l8.107 74.667 29.867 281.173c11.589 105.722 100.372 187.253 208.208 187.307l437.339 0c0.24 0.001 0.524 0.002 0.808 0.002 108.77 0 198.1-83.234 207.772-189.483l0.060-0.812 26.88-288.427zM387.413 175.787c0.239-28.416 23.211-51.387 51.604-51.627l0.023-0h144.64c28.513 0 51.627 23.114 51.627 51.627v0 12.8h-247.893zM768 252.587c80.509 0.723 145.496 66.156 145.496 146.768 0 0.302-0.001 0.604-0.003 0.905l0-0.046c0.101 1.721 0.159 3.734 0.159 5.76s-0.058 4.039-0.171 6.037l0.013-0.277-3.84 42.667c-79.739 60.625-177.498 101.622-283.976 114.085l-2.744 0.261v-111.787h-231.253v109.653c-103.299-12.818-195.941-50.245-274.469-106.198l1.829 1.238-5.12-48.213c-0.612-4.549-0.961-9.807-0.961-15.147s0.349-10.598 1.026-15.753l-0.065 0.607c7.996-73.402 69.412-130.086 144.165-130.56l0.049-0zM455.68 520.96h98.987v69.547c0.002 0.127 0.003 0.277 0.003 0.427 0 14.374-11.653 26.027-26.027 26.027-0.001 0-0.002-0-0.004-0l-46.506 0c-0.131 0.002-0.286 0.004-0.441 0.004-14.075 0-25.541-11.173-26.012-25.134l-0.001-0.043v-70.827zM734.72 899.413h-438.613c-0.169 0.001-0.369 0.001-0.569 0.001-75.141 0-136.859-57.468-143.602-130.849l-0.042-0.565-23.893-224.427c79.2 45.726 172.278 77.241 271.509 88.447l3.265 0.3c14.786 29.639 44.656 49.768 79.283 50.346l0.077 0.001h47.36c0.034 0 0.074 0 0.115 0 34.189 0 63.906-19.149 79.010-47.308l0.235-0.479c108.485-11.019 207.024-45.452 293.172-98.155l-3.038 1.728-21.76 229.547c-6.574 74.144-68.39 131.843-143.682 131.843-0.337 0-0.674-0.001-1.010-0.003l0.052 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["briefcase"]},"attrs":[{}],"properties":{"order":6503,"id":461,"name":"briefcase","prevSize":32,"code":59759},"setIdx":0,"setId":0,"iconIdx":111},{"icon":{"paths":["M558.080 591.36l24.32-25.173c8.439-5.846 13.896-15.479 13.896-26.386 0-17.673-14.327-32-32-32-11.668 0-21.877 6.245-27.468 15.574l-0.081 0.145-23.467 23.893-23.467-23.893c-5.214-3.837-11.763-6.141-18.849-6.141-17.673 0-32 14.327-32 32 0 6.222 1.776 12.029 4.848 16.942l-0.078-0.134 24.747 25.173-24.747 25.173c-5.441 5.786-8.784 13.599-8.784 22.192 0 17.697 14.176 32.082 31.792 32.421l0.032 0c9.019-0.157 17.14-3.879 23.038-9.812l0.002-0.002 23.467-23.893 23.467 23.893c5.852 6.010 14.003 9.755 23.029 9.813l0.011 0c17.465-0.567 31.407-14.861 31.407-32.411 0-8.599-3.347-16.416-8.809-22.219l0.015 0.017z","M920.32 256c-38.067-41.005-92.166-66.674-152.263-66.986l-0.057-0h-68.693v-12.8c0-63.859-51.768-115.627-115.627-115.627h-144.64c-63.859 0-115.627 51.768-115.627 115.627v0 12.8h-65.28c-115.656 0.058-209.392 93.829-209.392 209.493 0 7.815 0.428 15.531 1.262 23.124l-0.084-0.937 8.107 74.667 29.867 281.173c11.589 105.722 100.372 187.253 208.208 187.307l436.485 0c0.124 0 0.271 0 0.418 0 108.855 0 198.279-83.193 208.16-189.467l0.062-0.827 26.88-288.427 5.973-66.987c0.685-6.345 1.075-13.704 1.075-21.155 0-54.424-20.838-103.982-54.972-141.128l0.137 0.151zM387.413 176.213c-0-28.513 23.114-51.627 51.627-51.627v0h144.64c28.513 0 51.627 23.114 51.627 51.627v0 12.8h-247.893zM877.227 768c-6.576 74.379-68.583 132.268-144.11 132.268-0.186 0-0.373-0-0.559-0.001l0.029 0h-436.48c-0.031 0-0.067 0-0.104 0-75.527 0-137.533-57.888-144.070-131.716l-0.039-0.551-23.893-223.573c52.12 30.166 112.472 54.39 176.35 69.492l4.557 0.908c7.123 106.588 95.327 190.349 203.093 190.349s195.97-83.76 203.060-189.731l0.033-0.618c69.83-17.207 131.276-43.303 187.169-77.571l-2.849 1.624zM370.773 597.333c0-77.761 63.039-140.799 140.8-140.799s140.8 63.038 140.8 140.8c0 77.612-62.795 140.557-140.35 140.799l-0.023 0c-0.127 0-0.277 0.001-0.427 0.001-77.762 0-140.8-63.038-140.8-140.8 0-0 0-0.001 0-0.001l-0 0zM906.667 453.12c-55.682 43.139-121.63 76.109-193.357 94.743l-3.763 0.83c-21.767-91.003-102.412-157.611-198.613-157.611s-176.847 66.608-198.332 156.222l-0.281 1.389c-73.686-17.801-138.36-48.317-194.847-89.406l1.567 1.086-5.12-46.507c-0.612-4.549-0.961-9.807-0.961-15.147s0.349-10.598 1.026-15.753l-0.065 0.607c7.613-73.587 69.257-130.493 144.206-130.56l509.874-0c80.331 0.649 145.201 65.92 145.201 146.342 0 4.508-0.204 8.968-0.603 13.372l0.041-0.567z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brifecase-cros"]},"attrs":[{},{}],"properties":{"order":6504,"id":460,"name":"brifecase-cros","prevSize":32,"code":59760},"setIdx":0,"setId":0,"iconIdx":112},{"icon":{"paths":["M423.68 627.2c-5.842-5.842-9.455-13.912-9.455-22.827 0-17.829 14.453-32.282 32.282-32.282 8.914 0 16.985 3.613 22.827 9.455l-0-0 18.347 17.92 66.987-63.147c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-92.16 85.333c-5.518 5.331-13.042 8.616-21.333 8.616s-15.816-3.285-21.342-8.624l0.009 0.008zM920.32 256c-38.067-41.005-92.166-66.674-152.263-66.986l-0.057-0h-68.693v-12.8c0-63.859-51.768-115.627-115.627-115.627h-144.64c-63.859 0-115.627 51.768-115.627 115.627v0 12.8h-65.28c-115.656 0.058-209.392 93.829-209.392 209.493 0 7.815 0.428 15.531 1.262 23.124l-0.084-0.937 8.107 74.667 29.867 281.173c11.591 105.52 100.237 186.88 207.886 186.88 0.115 0 0.23-0 0.345-0l-0.018 0h436.48c0.251 0.001 0.549 0.002 0.846 0.002 108.62 0 197.853-83.003 207.732-189.042l0.062-0.827 26.88-288.427 5.973-66.987c0.685-6.345 1.075-13.704 1.075-21.155 0-54.424-20.838-103.982-54.972-141.128l0.137 0.151zM387.413 176.213c-0-28.513 23.114-51.627 51.627-51.627v0h144.64c28.513 0 51.627 23.114 51.627 51.627v0 12.8h-247.893zM877.227 768c-6.574 74.144-68.39 131.843-143.682 131.843-0.337 0-0.674-0.001-1.010-0.003l0.052 0h-436.48c-0.158 0.001-0.346 0.001-0.534 0.001-74.019 0-135.052-55.6-143.613-127.314l-0.067-0.687-23.893-227.413c53.485 31.173 115.465 55.886 181.16 70.83l4.44 0.85c8.511 102.733 93.988 182.887 198.187 182.887s189.676-80.154 198.139-182.167l0.048-0.719c71.748-17.455 134.921-44.153 192.353-79.311l-2.913 1.658zM375.467 597.333c-0-0.127-0.001-0.276-0.001-0.426 0-75.17 60.937-136.107 136.107-136.107s136.107 60.937 136.107 136.107c0 75.019-60.694 135.863-135.656 136.106l-0.023 0c-0.127 0-0.277 0.001-0.427 0.001-75.020 0-135.864-60.694-136.106-135.658l-0-0.023zM906.667 453.547c-56.861 43.949-124.276 77.4-197.604 96.038l-3.783 0.815c-21.121-89.104-100.005-154.374-194.133-154.374s-173.013 65.27-193.862 153.020l-0.271 1.354c-75.467-17.974-141.737-49.103-199.572-91.133l1.598 1.107-5.12-46.507c-0.612-4.549-0.961-9.807-0.961-15.147s0.349-10.598 1.026-15.753l-0.065 0.607c7.613-73.587 69.257-130.493 144.206-130.56l509.874-0c80.331 0.649 145.201 65.92 145.201 146.342 0 4.508-0.204 8.968-0.603 13.372l0.041-0.567z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brifecase-tick"]},"attrs":[{}],"properties":{"order":6505,"id":459,"name":"brifecase-tick","prevSize":32,"code":59761},"setIdx":0,"setId":0,"iconIdx":113},{"icon":{"paths":["M426.667 659.2c-2.807-4.663-4.468-10.292-4.468-16.309 0-10.89 5.439-20.509 13.749-26.289l0.105-0.069 46.080-29.44v-49.067c0-17.673 14.327-32 32-32s32 14.327 32 32v0 64.853c-0.131 11.158-5.805 20.964-14.392 26.807l-0.114 0.073-62.293 38.827c-4.468 3.213-10.049 5.138-16.080 5.138-0.347 0-0.692-0.006-1.036-0.019l0.050 0.001c-10.729-0.341-20.070-5.984-25.525-14.384l-0.075-0.123z","M920.32 256c-38.067-41.005-92.166-66.674-152.263-66.986l-0.057-0h-68.693v-12.8c0-63.859-51.768-115.627-115.627-115.627h-144.64c-63.859 0-115.627 51.768-115.627 115.627v0 12.8h-65.28c-115.656 0.058-209.392 93.829-209.392 209.493 0 7.815 0.428 15.531 1.262 23.124l-0.084-0.937 8.107 74.667 29.867 281.173c11.589 105.722 100.372 187.253 208.208 187.307l436.485 0c0.124 0 0.271 0 0.418 0 108.855 0 198.279-83.193 208.16-189.467l0.062-0.827 26.88-288.427 5.973-66.987c0.685-6.345 1.075-13.704 1.075-21.155 0-54.424-20.838-103.982-54.972-141.128l0.137 0.151zM387.413 176.213c-0-28.513 23.114-51.627 51.627-51.627v0h144.64c28.513 0 51.627 23.114 51.627 51.627v0 12.8h-247.893zM877.227 768c-6.576 74.379-68.583 132.268-144.11 132.268-0.186 0-0.373-0-0.559-0.001l0.029 0h-436.48c-0.031 0-0.067 0-0.104 0-75.527 0-137.533-57.888-144.070-131.716l-0.039-0.551-23.893-223.573c53.485 31.173 115.465 55.886 181.16 70.83l4.44 0.85c8.511 102.733 93.988 182.887 198.187 182.887s189.676-80.154 198.139-182.167l0.048-0.719c71.748-17.455 134.921-44.153 192.353-79.311l-2.913 1.658zM375.467 597.333c-0-0.127-0.001-0.276-0.001-0.426 0-75.17 60.937-136.107 136.107-136.107s136.107 60.937 136.107 136.107c0 75.019-60.694 135.863-135.656 136.106l-0.023 0c-0.127 0-0.277 0.001-0.427 0.001-75.020 0-135.864-60.694-136.106-135.658l-0-0.023zM906.667 453.547c-56.861 43.949-124.276 77.4-197.604 96.038l-3.783 0.815c-21.121-89.104-100.005-154.374-194.133-154.374s-173.013 65.27-193.862 153.020l-0.271 1.354c-75.467-17.974-141.737-49.103-199.572-91.133l1.598 1.107-5.12-46.507c-0.612-4.549-0.961-9.807-0.961-15.147s0.349-10.598 1.026-15.753l-0.065 0.607c7.613-73.587 69.257-130.493 144.206-130.56l509.874-0c80.331 0.649 145.201 65.92 145.201 146.342 0 4.508-0.204 8.968-0.603 13.372l0.041-0.567z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brifecase-timer"]},"attrs":[{},{}],"properties":{"order":6506,"id":458,"name":"brifecase-timer","prevSize":32,"code":59762},"setIdx":0,"setId":0,"iconIdx":114},{"icon":{"paths":["M941.227 85.333c-18.112-18.34-43.255-29.7-71.052-29.7-19.335 0-37.387 5.496-52.678 15.012l0.423-0.246c-147.384 88.709-274.398 191.15-385.813 308.54l-0.747 0.793c-63.565 66.032-121.334 138.578-171.918 216.232l-3.442 5.634c-145.493 22.613-187.307 202.24-201.387 262.827-1.443 5.875-2.271 12.619-2.271 19.557 0 23.722 9.679 45.183 25.304 60.649l0.007 0.007c15.46 15.55 36.866 25.173 60.519 25.173 0.024 0 0.048-0 0.071-0l-0.004 0c0.541 0.014 1.177 0.022 1.816 0.022 6.323 0 12.463-0.786 18.327-2.266l-0.516 0.11c60.587-13.653 238.507-55.040 262.827-198.4 83.947-54.241 157.046-112.155 224.126-176.311l-0.552 0.525c118.854-112.143 221.846-239.163 306.518-378.544l4.522-8.016c9.004-14.743 14.336-32.581 14.336-51.665 0-27.211-10.84-51.891-28.437-69.956l0.021 0.022zM144.64 905.387c-1.544 0.384-3.316 0.604-5.14 0.604-6.166 0-11.744-2.515-15.765-6.575l-0.002-0.002c-3.993-4.075-6.458-9.661-6.458-15.823 0-1.649 0.177-3.257 0.512-4.806l-0.027 0.149c39.253-170.667 99.413-206.507 145.92-213.333l95.147 93.867c-7.68 46.933-44.8 107.093-214.187 145.92zM398.080 708.267l-81.92-81.92c44.409-66.99 90.166-125.353 140.071-179.855l-0.977 1.082 121.6 121.6c-53.378 49.264-111.761 95.038-173.659 135.92l-5.114 3.174zM901.547 173.227c-81.123 133.754-172.996 249.381-277.518 352.189l-0.242 0.237-124.587-124.587c103.295-105.203 219.532-197.138 346.28-273.379l7.853-4.381c5.206-3.118 11.485-4.962 18.195-4.962 9.471 0 18.084 3.674 24.492 9.674l-0.020-0.018c6.807 6.601 11.033 15.831 11.033 26.048 0 7.105-2.043 13.733-5.574 19.328l0.088-0.15z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brush"]},"attrs":[{}],"properties":{"order":6507,"id":457,"name":"brush","prevSize":32,"code":59763},"setIdx":0,"setId":0,"iconIdx":115},{"icon":{"paths":["M712.533 53.333h-401.067c-141.548 1.446-255.766 116.412-256 258.11l-0 0.023v401.067c0.234 141.721 114.451 256.687 255.863 258.132l0.137 0.001h401.067c141.548-1.446 255.766-116.412 256-258.11l0-0.023v-401.067c-0.234-141.721-114.451-256.687-255.863-258.132l-0.137-0.001zM906.24 712.533c0 0 0 0 0 0 0 107.067-86.673 193.89-193.683 194.133l-0.023 0h-401.067c-107.033-0.243-193.707-87.066-193.707-194.133 0-0 0-0 0-0l0-0v-401.067c-0-0-0-0-0-0 0-107.067 86.673-193.89 193.683-194.133l0.023-0h401.067c107.033 0.243 193.707 87.066 193.707 194.133 0 0-0 0-0 0l-0 0zM659.2 480.427l-159.147-159.147-73.387-72.107c-5.668-5.186-13.249-8.364-21.572-8.364-8.098 0-15.494 3.008-21.13 7.968l0.036-0.031c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 26.027 26.453-136.107 134.4c-16.29 16.42-26.357 39.034-26.357 64s10.067 47.58 26.363 64.006l-0.006-0.006 96.427 96.427c16.373 16.393 39.002 26.533 64 26.533s47.627-10.14 63.999-26.532l0.001-0.001 160-160c5.066-5.091 8.197-12.11 8.197-19.861 0-7.316-2.79-13.98-7.364-18.987l0.020 0.022zM453.973 634.453c-4.948 4.883-11.702 7.949-19.17 8.106l-0.030 0.001c-7.515-0.062-14.298-3.15-19.198-8.104l-0.002-0.002-96.427-96.427c-4.752-4.907-7.681-11.605-7.681-18.987s2.929-14.079 7.688-18.994l-0.007 0.007 134.4-134.4 130.56 130.56zM709.973 557.227c-0.033-0-0.073-0-0.112-0-20.046 0-37.881 9.469-49.275 24.178l-0.106 0.143c-27.318 30.697-45.153 70.373-48.597 114.095l-0.043 0.678c3.494 51.342 45.998 91.666 97.92 91.666s94.426-40.324 97.903-91.364l0.017-0.302c-3.556-44.459-21.203-84.227-48.416-115.437l0.203 0.237c-10.844-14.571-28.016-23.907-47.368-23.907-0.447 0-0.893 0.005-1.338 0.015l0.066-0.001zM709.973 727.893c-0.402 0.018-0.874 0.028-1.348 0.028-17.168 0-31.22-13.342-32.353-30.223l-0.005-0.099c4.244-29.060 16.111-54.78 33.486-75.776l-0.206 0.256c18.488 20.185 30.981 46.138 34.495 74.865l0.065 0.655c-2.355 15.795-15.824 27.774-32.091 27.774-0.568 0-1.133-0.015-1.694-0.043l0.079 0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bucket-square"]},"attrs":[{}],"properties":{"order":6508,"id":456,"name":"bucket-square","prevSize":32,"code":59764},"setIdx":0,"setId":0,"iconIdx":116},{"icon":{"paths":["M279.893 768c30.169 30.068 71.794 48.658 117.76 48.658s87.591-18.59 117.764-48.663l-0.004 0.004 236.8-236.8c13.225-13.207 21.406-31.461 21.406-51.627s-8.181-38.42-21.405-51.626l-0.001-0.001-274.773-275.627-8.107-5.973-66.133-66.987c-5.522-9.214-15.455-15.286-26.806-15.286-17.202 0-31.147 13.945-31.147 31.147 0 11.351 6.072 21.283 15.144 26.727l0.141 0.079 23.467 23.893-7.68 6.4-238.933 236.8c-30.274 30.075-49.013 71.729-49.013 117.76s18.739 87.685 49.004 117.751l0.009 0.009zM469.333 722.347c-18.636 18.402-44.257 29.768-72.533 29.768s-53.897-11.366-72.544-29.778l0.011 0.011-141.653-142.933c-12.602-12.547-21.855-28.446-26.308-46.248l-0.145-0.685 528.64-24.747zM419.413 197.973c1.571-1.775 3.856-2.889 6.4-2.889s4.829 1.114 6.392 2.88l0.008 0.009 246.187 246.187-518.4 25.173c5.435-13.007 13.087-24.079 22.585-33.253l0.028-0.027zM713.387 923.307c-0 17.202-13.945 31.147-31.147 31.147l0-0h-526.507c-17.202 0-31.147-13.945-31.147-31.147s13.945-31.147 31.147-31.147v0h526.933c16.87 0.237 30.483 13.85 30.72 30.698l0 0.022zM867.413 608.853c-14.257-18.417-36.371-30.16-61.227-30.16s-46.969 11.743-61.095 29.983l-0.132 0.177c-37.176 43.065-62.042 97.709-68.579 157.854l-0.114 1.293c0 71.635 58.072 129.707 129.707 129.707s129.707-58.072 129.707-129.707v0c-5.626-61.695-30.521-116.702-68.533-159.882l0.267 0.309zM805.973 829.867c-0.767 0.033-1.667 0.052-2.572 0.052-34.443 0-62.446-27.576-63.134-61.855l-0.001-0.064c6.005-47.093 26.004-88.672 55.633-121.36l-0.167 0.187c2.339-3.369 6.189-5.547 10.547-5.547 0.042 0 0.084 0 0.126 0.001l-0.006-0c0.003-0 0.006-0 0.009-0 4.3 0 8.135 1.987 10.638 5.094l0.020 0.026c29.439 32.57 49.218 74.382 54.52 120.596l0.094 1.004c-0.923 34.156-28.832 61.493-63.125 61.493-0.908 0-1.811-0.019-2.71-0.057l0.128 0.004z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bucket"]},"attrs":[{}],"properties":{"order":6509,"id":455,"name":"bucket","prevSize":32,"code":59765},"setIdx":0,"setId":0,"iconIdx":117},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM634.027 512c0-17.673-14.327-32-32-32v0h-180.053c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h180.053c17.673 0 32-14.327 32-32v0zM712.533 659.2c0-0.021 0-0.046 0-0.071 0-16.922-13.136-30.777-29.767-31.923l-0.1-0.006h-339.2c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h339.2c16.661-1.358 29.692-15.13 29.867-31.983l0-0.017zM712.533 364.8c-0.175-16.87-13.205-30.642-29.751-31.992l-0.116-0.008h-339.2c-17.673 0-32 14.327-32 32s14.327 32 32 32h339.2c16.731-1.152 29.867-15.006 29.867-31.929 0-0.025-0-0.050-0-0.075l0 0.004z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-1"]},"attrs":[{}],"properties":{"order":6510,"id":454,"name":"burger-menu-1","prevSize":32,"code":59766},"setIdx":0,"setId":0,"iconIdx":118},{"icon":{"paths":["M684.8 970.667h-343.467c-157.782-0.242-285.624-128.084-285.867-285.843l-0-0.024v-343.467c-0.003-0.507-0.005-1.107-0.005-1.707 0-157.967 127.938-286.053 285.849-286.293l0.023-0h345.6c157.013 1.446 283.738 129.065 283.738 286.282 0 0.604-0.002 1.208-0.006 1.811l0-0.093v345.6c-1.447 156.865-128.83 283.498-285.844 283.733l-0.023 0zM341.333 117.333c-0.509-0.004-1.111-0.007-1.713-0.007-122.769 0-222.293 99.524-222.293 222.293 0 0.602 0.002 1.204 0.007 1.805l-0.001-0.092v345.6c1.442 121.666 100.407 219.74 222.279 219.74 0.605 0 1.21-0.002 1.814-0.007l-0.092 0.001h345.6c122.436-0.242 221.624-99.431 221.867-221.844l0-0.023v-343.467c-0.242-122.436-99.431-221.624-221.844-221.867l-0.023-0zM329.813 279.467c-0.508-0.019-1.105-0.030-1.705-0.030-27.099 0-49.067 21.968-49.067 49.067s21.968 49.067 49.067 49.067c27.099 0 49.067-21.968 49.067-49.067 0-0.14-0.001-0.279-0.002-0.418l0 0.021c-0.24-26.915-22.115-48.642-49.065-48.642-0.151 0-0.301 0.001-0.451 0.002l0.023-0zM514.133 279.467c-26.914 0.243-48.638 22.117-48.638 49.065 0 27.099 21.968 49.067 49.067 49.067s49.067-21.968 49.067-49.067c0-0.149-0.001-0.299-0.002-0.448l0 0.023c-0.204-26.944-22.093-48.707-49.065-48.707-0.901 0-1.796 0.024-2.685 0.072l0.124-0.005zM699.733 279.467c-26.914 0.243-48.638 22.117-48.638 49.065 0 27.099 21.968 49.067 49.067 49.067s49.067-21.968 49.067-49.067c0-0.149-0.001-0.299-0.002-0.448l0 0.023c-0.204-26.944-22.093-48.707-49.065-48.707-0.901 0-1.796 0.024-2.685 0.072l0.124-0.005zM326.827 463.36c-26.914 0.243-48.638 22.117-48.638 49.065 0 27.099 21.968 49.067 49.067 49.067s49.067-21.968 49.067-49.067c0-0.149-0.001-0.299-0.002-0.448l0 0.023c-0.24-26.915-22.115-48.642-49.065-48.642-0.151 0-0.301 0.001-0.451 0.002l0.023-0zM511.147 463.36c-26.914 0.243-48.638 22.117-48.638 49.065 0 27.099 21.968 49.067 49.067 49.067s49.067-21.968 49.067-49.067c0-0.149-0.001-0.299-0.002-0.448l0 0.023c0-26.863-21.777-48.64-48.64-48.64v0zM697.173 463.36c-26.914 0.243-48.638 22.117-48.638 49.065 0 27.099 21.968 49.067 49.067 49.067s49.067-21.968 49.067-49.067c0-0.149-0.001-0.299-0.002-0.448l0 0.023c-0.24-26.915-22.115-48.642-49.065-48.642-0.151 0-0.301 0.001-0.451 0.002l0.023-0zM326.4 646.827c-26.915 0.242-48.64 22.116-48.64 49.065 0 27.099 21.968 49.067 49.067 49.067s49.066-21.967 49.067-49.065l0-0c-0.242-27.15-22.307-49.067-49.491-49.067-0.001 0-0.001 0-0.002 0l0-0zM510.72 646.827c-26.915 0.242-48.64 22.116-48.64 49.065 0 27.099 21.968 49.067 49.067 49.067s49.066-21.967 49.067-49.065l0-0c-0.228-26.709-21.578-48.357-48.147-49.065l-0.066-0.001zM696.32 646.827c-26.915 0.242-48.64 22.116-48.64 49.065 0 27.099 21.968 49.067 49.067 49.067s49.066-21.967 49.067-49.065l0-0c-0.242-27.15-22.307-49.067-49.491-49.067-0.001 0-0.001 0-0.002 0l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-2"]},"attrs":[{}],"properties":{"order":6511,"id":453,"name":"burger-menu-2","prevSize":32,"code":59767},"setIdx":0,"setId":0,"iconIdx":119},{"icon":{"paths":["M213.333 323.84c-60.81-1.201-109.646-50.781-109.646-111.766 0-61.738 50.049-111.787 111.787-111.787s111.787 50.049 111.787 111.787c0 0.443-0.003 0.885-0.008 1.327l0.001-0.067c-0.954 61.241-50.822 110.52-112.201 110.52-0.605 0-1.208-0.005-1.81-0.014l0.091 0.001zM213.333 164.693c-25.454 1.177-45.645 22.1-45.645 47.739 0 26.392 21.395 47.787 47.787 47.787 26.075 0 47.272-20.884 47.777-46.838l0.001-0.047c0.001-0.136 0.002-0.296 0.002-0.457 0-26.627-21.586-48.213-48.213-48.213-0.601 0-1.199 0.011-1.795 0.033l0.086-0.003zM512 323.84c-60.061-2.133-107.94-51.335-107.94-111.72 0-61.738 50.049-111.787 111.787-111.787s111.787 50.049 111.787 111.787c0 0.427-0.002 0.853-0.007 1.279l0.001-0.065c-0.721 61.187-50.49 110.51-111.779 110.51-0.303 0-0.605-0.001-0.907-0.004l0.046 0zM512 164.693c-24.682 2.055-43.936 22.595-43.936 47.631 0 26.392 21.395 47.787 47.787 47.787 26.037 0 47.211-20.824 47.775-46.725l0.001-0.053c0.005-0.256 0.008-0.558 0.008-0.861 0-26.392-21.395-47.787-47.787-47.787-0.303 0-0.605 0.003-0.906 0.008l0.045-0.001zM814.933 323.84c-60.061-2.133-107.94-51.335-107.94-111.72 0-61.738 50.049-111.787 111.787-111.787s111.787 50.049 111.787 111.787c0 0.427-0.002 0.853-0.007 1.279l0.001-0.065c-0.961 61.236-50.826 110.508-112.2 110.508-0.155 0-0.309-0-0.464-0.001l0.024 0zM814.933 164.693c-24.682 2.055-43.936 22.595-43.936 47.631 0 26.392 21.395 47.787 47.787 47.787 26.037 0 47.211-20.824 47.775-46.725l0.001-0.053c0.001-0.127 0.002-0.278 0.002-0.429 0-26.627-21.586-48.213-48.213-48.213-0.151 0-0.301 0.001-0.452 0.002l0.023-0zM213.333 624.213c-61.37-0.484-110.933-50.346-110.933-111.783 0-61.738 50.049-111.787 111.787-111.787 61.587 0 111.541 49.804 111.786 111.333l0 0.023c-0.242 62.026-50.58 112.213-112.639 112.213-0 0-0.001-0-0.001-0l0 0zM213.333 464.64c-26.392 0-47.787 21.395-47.787 47.787s21.395 47.787 47.787 47.787v0c26.392 0 47.787-21.395 47.787-47.787s-21.395-47.787-47.787-47.787v0zM514.133 624.213c-61.37-0.484-110.933-50.346-110.933-111.783 0-61.738 50.049-111.787 111.787-111.787 61.587 0 111.541 49.804 111.786 111.333l0 0.023c0 0 0 0.001 0 0.001 0 61.974-50.24 112.213-112.213 112.213-0.15 0-0.3-0-0.45-0.001l0.023 0zM514.133 464.64c-26.021 0.481-46.931 21.688-46.931 47.779 0 26.392 21.395 47.787 47.787 47.787s47.787-21.395 47.787-47.787c0-0.147-0.001-0.294-0.002-0.442l0 0.022c-0.714-26.307-22.21-47.36-48.623-47.36-0.006 0-0.012 0-0.018 0l0.001-0zM816.64 624.213c-61.37-0.484-110.933-50.346-110.933-111.783 0-61.738 50.049-111.787 111.787-111.787 61.587 0 111.541 49.804 111.786 111.333l0 0.023c0 0 0 0.001 0 0.001 0 61.974-50.24 112.213-112.213 112.213-0.15 0-0.3-0-0.45-0.001l0.023 0zM816.64 464.64c-26.021 0.481-46.931 21.688-46.931 47.779 0 26.392 21.395 47.787 47.787 47.787s47.787-21.395 47.787-47.787c0-0.147-0.001-0.294-0.002-0.442l0 0.022c-0.478-26.259-21.878-47.362-48.206-47.362-0.153 0-0.305 0.001-0.457 0.002l0.023-0zM213.333 923.307c-61.737-0.002-111.783-50.050-111.783-111.787 0-61.738 50.049-111.787 111.787-111.787 61.438 0 111.3 49.563 111.783 110.888l0 0.046c0.002 0.254 0.003 0.553 0.003 0.853 0 61.738-50.049 111.787-111.787 111.787-0.001 0-0.002-0-0.003-0l0 0zM213.333 764.16c-26.384 0.010-47.77 21.401-47.77 47.787 0 26.392 21.395 47.787 47.787 47.787s47.787-21.395 47.787-47.787c0-0.45-0.006-0.899-0.019-1.346l0.001 0.066c-0.94-25.746-21.929-46.287-47.765-46.507l-0.021-0zM512 923.307c-60.998-0.963-110.077-50.637-110.077-111.774 0-61.738 50.049-111.787 111.787-111.787 61.433 0 111.292 49.556 111.783 110.874l0 0.047c0.001 0.129 0.001 0.281 0.001 0.434 0 61.974-50.24 112.213-112.213 112.213-0.45 0-0.9-0.003-1.349-0.008l0.068 0.001zM512 764.16c-25.64 0.954-46.064 21.97-46.064 47.756 0 26.392 21.395 47.787 47.787 47.787s47.787-21.395 47.787-47.787c0-0.439-0.006-0.877-0.018-1.313l0.001 0.064c-0.936-25.891-22.15-46.524-48.184-46.524-0.46 0-0.919 0.006-1.377 0.019l0.067-0.001zM814.933 923.307c-60.998-0.963-110.077-50.637-110.077-111.774 0-61.738 50.049-111.787 111.787-111.787 61.433 0 111.292 49.556 111.783 110.874l0 0.047c0.002 0.254 0.003 0.555 0.003 0.857 0 61.738-50.049 111.787-111.787 111.787-0.301 0-0.602-0.001-0.903-0.004l0.046 0zM814.933 764.16c-25.64 0.954-46.064 21.97-46.064 47.756 0 26.392 21.395 47.787 47.787 47.787s47.787-21.395 47.787-47.787c0-0.439-0.006-0.877-0.018-1.313l0.001 0.064c-0.944-25.884-22.155-46.509-48.183-46.509-0.161 0-0.321 0.001-0.481 0.002l0.024-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-3"]},"attrs":[{}],"properties":{"order":6512,"id":452,"name":"burger-menu-3","prevSize":32,"code":59768},"setIdx":0,"setId":0,"iconIdx":120},{"icon":{"paths":["M847.36 607.147h-665.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h665.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM879.36 865.707c0-17.673-14.327-32-32-32v0h-665.6c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h665.6c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM876.8 272.213c-1.712-3.968-4.012-7.363-6.833-10.246l0.006 0.006-107.52-107.52c-5.699-5.321-13.376-8.588-21.815-8.588-17.673 0-32 14.327-32 32 0 8.44 3.267 16.116 8.606 21.834l-0.017-0.019 52.907 52.907h-588.373c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h588.373l-52.907 52.907c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.661 5.795 13.554 9.388 22.287 9.388 0.115 0 0.23-0.001 0.344-0.002l-0.017 0c0.044 0 0.097 0 0.149 0 8.788 0 16.737-3.59 22.461-9.384l0.003-0.003 107.52-107.52c2.69-2.42 4.962-5.236 6.741-8.368l0.086-0.165c1.861-3.875 2.948-8.424 2.948-13.227s-1.087-9.352-3.029-13.414l0.081 0.188z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-4"]},"attrs":[{}],"properties":{"order":6513,"id":451,"name":"burger-menu-4","prevSize":32,"code":59769},"setIdx":0,"setId":0,"iconIdx":121},{"icon":{"paths":["M746.667 544h-469.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h469.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM876.8 802.56c0-17.673-14.327-32-32-32v0h-665.6c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h665.6c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM876.8 221.44c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-665.6c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h665.6c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-5"]},"attrs":[{}],"properties":{"order":6514,"id":450,"name":"burger-menu-5","prevSize":32,"code":59770},"setIdx":0,"setId":0,"iconIdx":122},{"icon":{"paths":["M844.8 544h-665.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h665.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM778.667 802.56c0-17.673-14.327-32-32-32v0h-469.333c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h469.333c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM778.667 221.44c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-469.333c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h469.333c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-6"]},"attrs":[{}],"properties":{"order":6515,"id":449,"name":"burger-menu-6","prevSize":32,"code":59771},"setIdx":0,"setId":0,"iconIdx":123},{"icon":{"paths":["M684.8 970.667h-343.467c-157.782-0.242-285.624-128.084-285.867-285.843l-0-0.024v-343.467c-0.003-0.507-0.005-1.107-0.005-1.707 0-157.967 127.938-286.053 285.849-286.293l0.023-0h345.6c157.013 1.446 283.738 129.065 283.738 286.282 0 0.604-0.002 1.208-0.006 1.811l0-0.093v345.6c-1.447 156.865-128.83 283.498-285.844 283.733l-0.023 0zM341.333 117.333c-0.509-0.004-1.111-0.007-1.713-0.007-122.769 0-222.293 99.524-222.293 222.293 0 0.602 0.002 1.204 0.007 1.805l-0.001-0.092v345.6c1.442 121.666 100.407 219.74 222.279 219.74 0.605 0 1.21-0.002 1.814-0.007l-0.092 0.001h345.6c122.436-0.242 221.624-99.431 221.867-221.844l0-0.023v-343.467c-0.242-122.436-99.431-221.624-221.844-221.867l-0.023-0zM746.667 321.28c0.002-0.128 0.003-0.279 0.003-0.43 0-17.437-14.136-31.573-31.573-31.573-0.151 0-0.302 0.001-0.452 0.003l0.023-0h-145.493c-17.673 0-32 14.327-32 32s14.327 32 32 32h143.36c17.673 0 32-14.327 32-32v-0zM746.667 512c0-17.673-14.327-32-32-32v0h-363.093c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h360.96c17.673 0 32-14.327 32-32v0zM735.147 702.72c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-246.613c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h244.48c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu"]},"attrs":[{}],"properties":{"order":6516,"id":448,"name":"burger-menu","prevSize":32,"code":59772},"setIdx":0,"setId":0,"iconIdx":124},{"icon":{"paths":["M738.56 53.333h-453.12c-81.061-0-146.773 65.713-146.773 146.773l-0 0v623.787c-0 81.061 65.713 146.773 146.773 146.773v-0h453.12c81.061 0 146.773-65.713 146.773-146.773l-0-0v-623.787c0-81.061-65.713-146.773-146.773-146.773l-0 0zM202.667 373.333h618.667v149.333h-618.667zM821.333 823.893c0 45.714-37.059 82.773-82.773 82.773h-453.12c-45.714 0-82.773-37.059-82.773-82.773v0-237.227h618.667zM202.667 309.333v-109.227c0-45.714 37.059-82.773 82.773-82.773v0h453.12c45.714-0 82.773 37.059 82.773 82.773h-0v109.227zM619.947 245.333h-207.787c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h207.787c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM394.667 746.667c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333v0c29.455 0 53.333 23.878 53.333 53.333v0zM736 746.667c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333v0c29.455 0 53.333 23.878 53.333 53.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bus"]},"attrs":[{}],"properties":{"order":6517,"id":447,"name":"bus","prevSize":32,"code":59773},"setIdx":0,"setId":0,"iconIdx":125},{"icon":{"paths":["M722.347 970.667h-420.693c-113.579 0-205.653-92.074-205.653-205.653v0-506.027c0-113.579 92.074-205.653 205.653-205.653v0h420.693c113.579 0 205.653 92.074 205.653 205.653v0 506.027c0 113.579-92.074 205.653-205.653 205.653v0zM301.653 117.333c-78.233 0-141.653 63.42-141.653 141.653v0 506.027c0 78.233 63.42 141.653 141.653 141.653v0h420.693c78.233 0 141.653-63.42 141.653-141.653v0-506.027c0-78.233-63.42-141.653-141.653-141.653v0zM693.76 501.333h-363.52c-58.577-0.241-105.999-47.662-106.24-106.217l-0-0.023v-107.52c0.241-58.577 47.662-105.999 106.217-106.24l0.023-0h363.52c58.577 0.241 105.999 47.662 106.24 106.217l0 0.023v107.52c-0.241 58.577-47.662 105.999-106.217 106.24l-0.023 0zM330.24 245.333c-23.564 0-42.667 19.103-42.667 42.667v0 107.093c0 23.564 19.103 42.667 42.667 42.667v0h363.52c23.564 0 42.667-19.103 42.667-42.667v0-107.52c0-23.564-19.103-42.667-42.667-42.667v0zM704 611.413c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM618.667 703.147c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-0.001 0-0.001 0-0.002 0-23.564-19.103-42.667-42.667-42.667-0.15 0-0.3 0.001-0.449 0.002l0.023-0zM439.040 700.16l23.893-23.040c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.559-5.236-13.071-8.453-21.333-8.453s-15.774 3.217-21.349 8.468l0.016-0.015-26.453 24.747-26.453-24.747c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 23.893 23.040-23.893 22.613c-6.311 5.862-10.247 14.206-10.247 23.47 0 17.673 14.327 32 32 32 0.153 0 0.305-0.001 0.457-0.003l-0.023 0c8.494-0.507 16.004-4.345 21.309-10.213l0.024-0.027 26.453-25.173 26.453 25.173c5.596 5.516 13.277 8.932 21.755 8.96l0.005 0c0.099 0.001 0.216 0.002 0.333 0.002 9.026 0 17.13-3.947 22.68-10.21l0.028-0.032c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calculator"]},"attrs":[{}],"properties":{"order":6518,"id":446,"name":"calculator","prevSize":32,"code":59774},"setIdx":0,"setId":0,"iconIdx":126},{"icon":{"paths":["M372.48 554.667c-19.845 0.241-35.84 16.385-35.84 36.264 0 20.030 16.237 36.267 36.267 36.267s36.265-16.236 36.267-36.264l0-0c0-0.001 0-0.002 0-0.003 0-20.030-16.237-36.267-36.267-36.267-0.15 0-0.3 0.001-0.449 0.003l0.023-0zM509.44 554.667c-19.845 0.241-35.84 16.385-35.84 36.264 0 20.030 16.237 36.267 36.267 36.267s36.265-16.236 36.267-36.264l0-0c0-0.001 0-0.002 0-0.003 0-20.030-16.237-36.267-36.267-36.267-0.15 0-0.3 0.001-0.449 0.003l0.023-0zM372.053 691.2c-19.845 0.241-35.84 16.385-35.84 36.264 0 20.030 16.237 36.267 36.267 36.267s36.265-16.236 36.267-36.264l0-0c0.026-0.51 0.040-1.108 0.040-1.71 0-20.030-16.237-36.267-36.267-36.267-0.164 0-0.328 0.001-0.492 0.003l0.025-0zM748.373 146.347v-63.573c-1.841-14.89-14.414-26.303-29.653-26.303s-27.812 11.413-29.639 26.158l-0.015 0.145v54.187h-139.093v-54.187c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867l-0-0v53.333h-155.307v-53.333c-1.841-14.89-14.414-26.303-29.653-26.303s-27.812 11.413-29.639 26.158l-0.015 0.145v63.573c-110.693 32.676-190.128 133.333-190.293 252.567l-0 0.019v308.907c0.485 145.259 118.352 262.827 263.679 262.827 0.15 0 0.301-0 0.451-0l-0.023 0h326.827c144.777-0.724 261.918-118.015 262.4-262.78l0-0.046v-308.907c-0.166-119.254-79.601-219.91-188.431-252.114l-1.862-0.473zM275.627 209.067v34.56c1.841 14.89 14.414 26.303 29.653 26.303s27.812-11.413 29.639-26.158l0.015-0.145v-46.933c4.693 0 8.96 0 13.653 0h141.653v46.933c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-48.213h125.44c4.693 0 8.96 0 13.653 0v46.933c1.841 14.89 14.414 26.303 29.653 26.303s27.812-11.413 29.639-26.158l0.015-0.145v-33.28c67.479 26.764 116.623 86.539 127.853 158.853l0.147 1.147h-729.6c11.538-73.635 61.023-133.47 127.465-159.52l1.389-0.48zM880.213 707.84c-0.485 112.505-91.799 203.52-204.372 203.52-0.151 0-0.301-0-0.452-0l0.023 0h-326.827c-0.127 0-0.278 0-0.428 0-112.572 0-203.887-91.016-204.371-203.474l-0-0.046v-281.173h736.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-2"]},"attrs":[{}],"properties":{"order":6519,"id":445,"name":"calendar-2","prevSize":32,"code":59775},"setIdx":0,"setId":0,"iconIdx":127},{"icon":{"paths":["M715.52 116.053v0-30.72c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 29.44h-277.76v-29.44c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 29.44c-0.127-0-0.278-0-0.428-0-129.367 0-234.24 104.873-234.24 234.24 0 0.3 0.001 0.6 0.002 0.9l-0-0.047v386.133c0.242 128.798 104.589 233.144 233.364 233.387l0.023 0h407.040c128.798-0.242 233.144-104.589 233.387-233.364l0-0.023v-384c0.004-0.508 0.006-1.108 0.006-1.708 0-129.069-104.39-233.757-233.347-234.238l-0.046-0zM308.48 180.053v0 26.453c0 17.673 14.327 32 32 32s32-14.327 32-32v0-26.453h277.333v26.453c0 17.673 14.327 32 32 32s32-14.327 32-32v0-26.453c94.257-0 170.667 76.41 170.667 170.667v0 367.787h-745.387v-368.64c0.48-93.442 75.979-169.092 169.318-169.813l0.069-0zM715.52 905.387h-407.040c-76.745-0.908-141.237-52.333-161.83-122.527l-0.303-1.207h731.307c-20.897 71.401-85.388 122.826-162.029 123.732l-0.104 0.001zM404.907 570.027c2.101 55.84 47.876 100.312 104.037 100.312 1.075 0 2.145-0.016 3.212-0.049l-0.156 0.004c1.038 0.037 2.258 0.058 3.482 0.058 56.167 0 101.945-44.479 104.032-100.135l0.006-0.19c-0.165-28.91-12.971-54.796-33.166-72.436l-0.114-0.098c12.73-14.817 20.48-34.234 20.48-55.46 0-0.002-0-0.005-0-0.007l0 0c0-52.312-42.408-94.72-94.72-94.72s-94.72 42.408-94.72 94.72l0-0c-0 0.002-0 0.004-0 0.007 0 21.226 7.75 40.643 20.575 55.574l-0.095-0.113c-20.149 17.801-32.804 43.685-32.853 72.525l-0 0.009zM512.427 606.293c-0.143 0.002-0.313 0.003-0.482 0.003-21.306 0-38.965-15.617-42.153-36.029l-0.031-0.24c3.031-20.855 20.789-36.695 42.247-36.695 0.148 0 0.295 0.001 0.442 0.002l-0.022-0c0.125-0.001 0.272-0.002 0.42-0.002 21.458 0 39.216 15.84 42.219 36.465l0.028 0.23c-3.216 20.655-20.877 36.276-42.185 36.276-0.319 0-0.638-0.004-0.955-0.010l0.047 0.001zM512.427 416c0.555-0.038 1.202-0.059 1.855-0.059 14.993 0 27.329 11.372 28.855 25.961l0.011 0.125c-2.552 14.851-15.333 26.009-30.72 26.009s-28.168-11.158-30.694-25.824l-0.026-0.185c1.548-14.703 13.879-26.062 28.863-26.062 0.503 0 1.003 0.013 1.5 0.038l-0.070-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-8"]},"attrs":[{}],"properties":{"order":6520,"id":444,"name":"calendar-8","prevSize":32,"code":59776},"setIdx":0,"setId":0,"iconIdx":128},{"icon":{"paths":["M847.787 843.52h-32v32c0.002 0.128 0.003 0.278 0.003 0.429 0 17.524-14.086 31.758-31.554 31.997l-0.023 0c-0.001 0-0.002 0-0.003 0-17.673 0-32-14.327-32-32 0-0.15 0.001-0.3 0.003-0.449l-0 0.023v-32.427h-32c-17.539-0.475-31.576-14.806-31.576-32.416 0-0.154 0.001-0.308 0.003-0.461l-0 0.023c0.69-17.537 14.851-31.548 32.384-31.999l0.043-0.001h31.147v-32c-0-0.001-0-0.002-0-0.003 0-17.759 14.276-32.183 31.977-32.424l0.023-0c17.49 0.239 31.576 14.473 31.576 31.997 0 0.151-0.001 0.302-0.003 0.452l0-0.023v32.427h32.427c17.307 0.47 31.158 14.612 31.158 31.989 0 0.304-0.004 0.607-0.013 0.909l0.001-0.044c0.002 0.127 0.003 0.277 0.003 0.427 0 17.437-14.136 31.573-31.573 31.573-0.001 0-0.002-0-0.003-0l0 0zM394.24 584.107c0.014 0.381 0.022 0.828 0.022 1.278 0 20.736-16.81 37.547-37.547 37.547s-37.547-16.81-37.547-37.547c0-20.736 16.81-37.547 37.547-37.547 0.142 0 0.285 0.001 0.427 0.002l-0.022-0c0.128-0.002 0.278-0.003 0.429-0.003 20.116 0 36.451 16.187 36.691 36.247l0 0.023zM532.907 584.107c0.006 0.254 0.010 0.553 0.010 0.853 0 20.501-16.619 37.12-37.12 37.12s-37.12-16.619-37.12-37.12c0-20.497 16.614-37.114 37.11-37.12l0.001-0c0.128-0.002 0.278-0.003 0.429-0.003 20.116 0 36.451 16.187 36.691 36.247l0 0.023zM393.813 721.92c-2.087 18.945-18.005 33.55-37.333 33.55s-35.246-14.605-37.318-33.381l-0.015-0.169c2.087-18.945 18.005-33.55 37.333-33.55s35.246 14.605 37.318 33.381l0.015 0.169zM784.213 1009.067c-111.93 0-202.667-90.737-202.667-202.667s90.737-202.667 202.667-202.667c111.93 0 202.667 90.737 202.667 202.667v0c-0.242 111.832-90.834 202.424-202.643 202.667l-0.023 0zM784.213 667.733c-76.583 0-138.667 62.083-138.667 138.667s62.083 138.667 138.667 138.667c76.583 0 138.667-62.083 138.667-138.667v0c0-76.583-62.083-138.667-138.667-138.667h-0zM733.44 140.373v-63.573c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867v-0 53.76h-141.227v-53.76c0.136-1.070 0.213-2.308 0.213-3.563 0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867c0 1.256 0.078 2.494 0.228 3.709l-0.015-0.145v51.2h-153.173v-51.2c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867v-0 63.573c-110.915 32.331-190.667 132.867-191.146 252.104l-0 0.056v309.333c0.726 145.075 118.5 262.401 263.677 262.401 0.301 0 0.602-0.001 0.903-0.002l-0.047 0h205.653c16.259 0 29.44-13.181 29.44-29.44l0-0c-0-16.259-13.181-29.44-29.44-29.44v0h-205.653c-0.381 0.003-0.831 0.004-1.282 0.004-112.574 0-203.889-91.018-204.371-203.478l-0-0.046v-279.893h736.853v132.693c0.24 16.31 13.519 29.44 29.864 29.44 0.001 0 0.002-0 0.003-0l-0 0c0.127 0.002 0.277 0.003 0.427 0.003 16.259 0 29.44-13.181 29.44-29.44 0-0.001-0-0.002-0-0.003l0 0v-162.133c-0.48-119.293-80.232-219.829-189.286-251.694l-1.861-0.466zM131.84 363.093c11.114-73.572 60.362-133.459 126.622-159.522l1.378-0.478v34.133c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-46.933c4.693 0 8.96 0 13.653 0h141.653v46.933c-0.136 1.070-0.213 2.308-0.213 3.563 0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867c0-1.256-0.078-2.494-0.228-3.709l0.015 0.145v-48.213h141.227v46.933c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-34.133c67.638 26.541 116.886 86.428 127.86 158.877l0.14 1.123z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-add"]},"attrs":[{}],"properties":{"order":6521,"id":443,"name":"calendar-add","prevSize":32,"code":59777},"setIdx":0,"setId":0,"iconIdx":129},{"icon":{"paths":["M392.107 867.413c-38.304-0.14-69.301-31.223-69.301-69.546 0-4.222 0.376-8.355 1.097-12.369l-0.063 0.422 10.24-58.453c2.343-13.701 8.58-25.657 17.518-35.012l-0.024 0.025 179.627-194.987c13.472-14.607 32.452-23.959 53.621-24.743l0.139-0.004c0.987-0.045 2.145-0.071 3.309-0.071 20.107 0 38.43 7.642 52.221 20.181l-0.063-0.057 35.84 33.28c14.683 13.419 24.061 32.431 24.744 53.64l0.003 0.12c0.042 0.949 0.066 2.063 0.066 3.182 0 20.221-7.815 38.616-20.589 52.331l-179.584 194.94c-8.942 9.419-20.355 16.409-33.201 19.935l-0.506 0.118-57.6 14.933c-5.225 1.273-11.247 2.046-17.434 2.133l-0.059 0.001zM587.947 536.32v0c-3.659 0.389-6.897 1.941-9.396 4.275l0.009-0.009-180.053 194.987-11.52 61.44c-0.359 0.682-0.569 1.49-0.569 2.347s0.211 1.665 0.583 2.375l-0.013-0.028s2.987 0 5.12 0l57.173-14.507c0.381 0.139 0.821 0.22 1.28 0.22s0.899-0.080 1.307-0.228l-0.027 0.008 180.053-194.987c2.126-2.279 3.431-5.348 3.431-8.721 0-0.234-0.006-0.467-0.019-0.698l0.001 0.032c-0.151-3.708-1.758-7.013-4.26-9.381l-0.006-0.006-33.707-33.28c-2.39-2.373-5.683-3.84-9.319-3.84-0.024 0-0.048 0-0.072 0l0.004-0zM748.373 146.347v-63.573c-1.841-14.89-14.414-26.303-29.653-26.303s-27.812 11.413-29.639 26.158l-0.015 0.145v54.187h-139.093v-54.187c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867l-0-0v53.333h-155.307v-53.333c-1.841-14.89-14.414-26.303-29.653-26.303s-27.812 11.413-29.639 26.158l-0.015 0.145v63.573c-110.693 32.676-190.128 133.333-190.293 252.567l-0 0.019v308.907c0.485 145.259 118.352 262.827 263.679 262.827 0.15 0 0.301-0 0.451-0l-0.023 0h326.827c144.777-0.724 261.918-118.015 262.4-262.78l0-0.046v-308.907c-0.166-119.254-79.601-219.91-188.431-252.114l-1.862-0.473zM275.627 209.067v34.56c1.841 14.89 14.414 26.303 29.653 26.303s27.812-11.413 29.639-26.158l0.015-0.145v-46.933c4.693 0 8.96 0 13.653 0h141.653v46.933c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-48.213h125.44c4.693 0 8.96 0 13.653 0v46.933c1.841 14.89 14.414 26.303 29.653 26.303s27.812-11.413 29.639-26.158l0.015-0.145v-33.28c67.479 26.764 116.623 86.539 127.853 158.853l0.147 1.147h-729.6c11.538-73.635 61.023-133.47 127.465-159.52l1.389-0.48zM880.213 707.84c-0.485 112.505-91.799 203.52-204.372 203.52-0.151 0-0.301-0-0.452-0l0.023 0h-326.827c-0.127 0-0.278 0-0.428 0-112.572 0-203.887-91.016-204.371-203.474l-0-0.046v-281.173h736.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-edit"]},"attrs":[{}],"properties":{"order":6522,"id":442,"name":"calendar-edit","prevSize":32,"code":59778},"setIdx":0,"setId":0,"iconIdx":130},{"icon":{"paths":["M853.333 829.013c5.734 5.969 9.265 14.092 9.265 23.040s-3.531 17.070-9.276 23.051l0.011-0.011c-5.858 5.807-13.923 9.396-22.827 9.396s-16.969-3.588-22.829-9.398l0.002 0.002-24.747-21.76-24.747 23.040c-5.635 5.058-13.124 8.151-21.336 8.151-9.484 0-18.004-4.126-23.864-10.68l-0.027-0.031c-5.097-5.76-8.208-13.379-8.208-21.725 0-9.425 3.968-17.922 10.325-23.913l0.016-0.015 22.613-20.907-21.333-21.76c-5.734-5.969-9.265-14.092-9.265-23.040s3.531-17.070 9.276-23.051l-0.011 0.011c5.741-5.887 13.751-9.539 22.613-9.539s16.872 3.652 22.607 9.532l0.006 0.007 23.467 23.893 24.747-22.613c5.63-5.28 13.224-8.523 21.576-8.523 9.399 0 17.838 4.107 23.622 10.623l0.028 0.033c4.734 5.653 7.61 13.004 7.61 21.026 0 8.919-3.554 17.008-9.323 22.928l0.007-0.007-22.613 20.48zM394.24 584.107c0.014 0.381 0.022 0.828 0.022 1.278 0 20.736-16.81 37.547-37.547 37.547s-37.547-16.81-37.547-37.547c0-20.736 16.81-37.547 37.547-37.547 0.142 0 0.285 0.001 0.427 0.002l-0.022-0c0.128-0.002 0.278-0.003 0.429-0.003 20.116 0 36.451 16.187 36.691 36.247l0 0.023zM532.907 584.107c0.006 0.254 0.010 0.553 0.010 0.853 0 20.501-16.619 37.12-37.12 37.12s-37.12-16.619-37.12-37.12c0-20.497 16.614-37.114 37.11-37.12l0.001-0c0.128-0.002 0.278-0.003 0.429-0.003 20.116 0 36.451 16.187 36.691 36.247l0 0.023zM393.813 721.92c-2.087 18.945-18.005 33.55-37.333 33.55s-35.246-14.605-37.318-33.381l-0.015-0.169c2.087-18.945 18.005-33.55 37.333-33.55s35.246 14.605 37.318 33.381l0.015 0.169zM784.213 1009.067c-111.93 0-202.667-90.737-202.667-202.667s90.737-202.667 202.667-202.667c111.93 0 202.667 90.737 202.667 202.667v0c-0.242 111.832-90.834 202.424-202.643 202.667l-0.023 0zM784.213 667.733c-76.583 0-138.667 62.083-138.667 138.667s62.083 138.667 138.667 138.667c76.583 0 138.667-62.083 138.667-138.667v0c0-76.583-62.083-138.667-138.667-138.667h-0zM733.44 140.373v-63.573c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867v-0 53.76h-141.227v-53.76c0.136-1.070 0.213-2.308 0.213-3.563 0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867c0 1.256 0.078 2.494 0.228 3.709l-0.015-0.145v51.2h-153.173v-51.2c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867v-0 63.573c-110.915 32.331-190.667 132.867-191.146 252.104l-0 0.056v309.333c0.726 145.075 118.5 262.401 263.677 262.401 0.301 0 0.602-0.001 0.903-0.002l-0.047 0h205.653c16.259 0 29.44-13.181 29.44-29.44l0-0c-0-16.259-13.181-29.44-29.44-29.44v0h-205.653c-0.381 0.003-0.831 0.004-1.282 0.004-112.574 0-203.889-91.018-204.371-203.478l-0-0.046v-279.893h736.853v132.693c0.24 16.31 13.519 29.44 29.864 29.44 0.001 0 0.002-0 0.003-0l-0 0c0.127 0.002 0.277 0.003 0.427 0.003 16.259 0 29.44-13.181 29.44-29.44 0-0.001-0-0.002-0-0.003l0 0v-162.133c-0.48-119.293-80.232-219.829-189.286-251.694l-1.861-0.466zM131.84 363.093c11.114-73.572 60.362-133.459 126.622-159.522l1.378-0.478v34.133c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-46.933c4.693 0 8.96 0 13.653 0h141.653v46.933c-0.136 1.070-0.213 2.308-0.213 3.563 0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867c0-1.256-0.078-2.494-0.228-3.709l0.015 0.145v-48.213h141.227v46.933c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-34.133c67.638 26.541 116.886 86.428 127.86 158.877l0.14 1.123z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-remove"]},"attrs":[{}],"properties":{"order":6523,"id":441,"name":"calendar-remove","prevSize":32,"code":59779},"setIdx":0,"setId":0,"iconIdx":131},{"icon":{"paths":["M512 844.373c40.43-0.058 77.866-12.829 108.536-34.529l-0.59 0.396 23.040 23.893c5.662 5.799 13.558 9.396 22.294 9.396 0.262 0 0.524-0.003 0.785-0.010l-0.039 0.001c8.607-0.098 16.403-3.492 22.202-8.975l-0.016 0.015c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-23.467-24.32c21.539-30.148 34.439-67.754 34.439-108.373 0-103.682-84.051-187.733-187.733-187.733s-187.733 84.051-187.733 187.733c0 103.682 84.051 187.733 187.733 187.733 0.193 0 0.385-0 0.578-0.001l-0.030 0zM512 532.48c0.127-0 0.277-0.001 0.427-0.001 68.572 0 124.16 55.588 124.16 124.16s-55.588 124.16-124.16 124.16c-68.571 0-124.16-55.588-124.16-124.159l0 0c-0-0-0-0.001-0-0.001 0-68.422 55.345-123.917 123.71-124.159l0.023-0zM748.373 148.48v-65.707c-1.841-14.89-14.414-26.303-29.653-26.303s-27.812 11.413-29.639 26.158l-0.015 0.145v54.187h-139.093v-54.187c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867l-0-0v53.333h-155.307v-53.333c-1.841-14.89-14.414-26.303-29.653-26.303s-27.812 11.413-29.639 26.158l-0.015 0.145v63.573c-110.693 32.676-190.128 133.333-190.293 252.567l-0 0.019v308.907c0.485 145.259 118.352 262.827 263.679 262.827 0.15 0 0.301-0 0.451-0l-0.023 0h326.827c144.777-0.724 261.918-118.015 262.4-262.78l0-0.046v-308.907c-0.166-119.254-79.601-219.91-188.431-252.114l-1.862-0.473zM275.627 209.067v34.56c1.841 14.89 14.414 26.303 29.653 26.303s27.812-11.413 29.639-26.158l0.015-0.145v-46.933c4.693 0 8.96 0 13.653 0h141.653v46.933c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-48.213h125.44c4.693 0 8.96 0 13.653 0v46.933c1.841 14.89 14.414 26.303 29.653 26.303s27.812-11.413 29.639-26.158l0.015-0.145v-33.28c67.479 26.764 116.623 86.539 127.853 158.853l0.147 1.147h-729.6c11.538-73.635 61.023-133.47 127.465-159.52l1.389-0.48zM880.213 707.84c-0.485 112.505-91.799 203.52-204.372 203.52-0.151 0-0.301-0-0.452-0l0.023 0h-326.827c-0.127 0-0.278 0-0.428 0-112.572 0-203.887-91.016-204.371-203.474l-0-0.046v-281.173h736.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-search"]},"attrs":[{}],"properties":{"order":6524,"id":440,"name":"calendar-search","prevSize":32,"code":59780},"setIdx":0,"setId":0,"iconIdx":132},{"icon":{"paths":["M394.24 584.107c0.014 0.381 0.022 0.828 0.022 1.278 0 20.736-16.81 37.547-37.547 37.547s-37.547-16.81-37.547-37.547c0-20.736 16.81-37.547 37.547-37.547 0.142 0 0.285 0.001 0.427 0.002l-0.022-0c0.128-0.002 0.278-0.003 0.429-0.003 20.116 0 36.451 16.187 36.691 36.247l0 0.023zM532.907 584.107c0.006 0.254 0.010 0.553 0.010 0.853 0 20.501-16.619 37.12-37.12 37.12s-37.12-16.619-37.12-37.12c0-20.497 16.614-37.114 37.11-37.12l0.001-0c0.128-0.002 0.278-0.003 0.429-0.003 20.116 0 36.451 16.187 36.691 36.247l0 0.023zM393.813 721.92c-2.087 18.945-18.005 33.55-37.333 33.55s-35.246-14.605-37.318-33.381l-0.015-0.169c2.087-18.945 18.005-33.55 37.333-33.55s35.246 14.605 37.318 33.381l0.015 0.169zM784.213 1009.067c-111.93 0-202.667-90.737-202.667-202.667s90.737-202.667 202.667-202.667c111.93 0 202.667 90.737 202.667 202.667v0c-0.242 111.832-90.834 202.424-202.643 202.667l-0.023 0zM784.213 667.733c-76.583 0-138.667 62.083-138.667 138.667s62.083 138.667 138.667 138.667c76.583 0 138.667-62.083 138.667-138.667v0c0-76.583-62.083-138.667-138.667-138.667h-0zM880.64 791.467l-72.96 93.013c-5.834 7.308-14.742 11.95-24.734 11.95-0.154 0-0.308-0.001-0.462-0.003l0.023 0c-0.376 0.017-0.817 0.027-1.26 0.027-9.749 0-18.407-4.671-23.859-11.898l-0.055-0.076-52.48-67.413c-4.18-5.365-6.702-12.202-6.702-19.627 0-17.722 14.367-32.089 32.089-32.089 10.297 0 19.461 4.85 25.333 12.39l0.054 0.072 26.88 34.987 47.787-61.013c5.914-7.341 14.902-11.998 24.978-11.998 7.516 0 14.426 2.591 19.887 6.929l-0.066-0.050c7.591 5.827 12.436 14.904 12.436 25.113 0 7.474-2.597 14.341-6.938 19.749l0.048-0.062zM733.44 140.373v-63.573c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867v-0 53.76h-141.227v-53.76c0.136-1.070 0.213-2.308 0.213-3.563 0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867c0 1.256 0.078 2.494 0.228 3.709l-0.015-0.145v51.2h-153.173v-51.2c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867v-0 63.573c-110.915 32.331-190.667 132.867-191.146 252.104l-0 0.056v309.333c0.726 145.075 118.5 262.401 263.677 262.401 0.301 0 0.602-0.001 0.903-0.002l-0.047 0h205.653c16.259 0 29.44-13.181 29.44-29.44l0-0c-0-16.259-13.181-29.44-29.44-29.44v0h-205.653c-0.381 0.003-0.831 0.004-1.282 0.004-112.574 0-203.889-91.018-204.371-203.478l-0-0.046v-279.893h736.853v132.693c0.24 16.31 13.519 29.44 29.864 29.44 0.001 0 0.002-0 0.003-0l-0 0c0.127 0.002 0.277 0.003 0.427 0.003 16.259 0 29.44-13.181 29.44-29.44 0-0.001-0-0.002-0-0.003l0 0v-162.133c-0.48-119.293-80.232-219.829-189.286-251.694l-1.861-0.466zM131.84 363.093c11.114-73.572 60.362-133.459 126.622-159.522l1.378-0.478v34.133c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-46.933c4.693 0 8.96 0 13.653 0h141.653v46.933c-0.136 1.070-0.213 2.308-0.213 3.563 0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867c0-1.256-0.078-2.494-0.228-3.709l0.015 0.145v-48.213h141.227v46.933c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-34.133c67.638 26.541 116.886 86.428 127.86 158.877l0.14 1.123z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-tick"]},"attrs":[{}],"properties":{"order":6525,"id":439,"name":"calendar-tick","prevSize":32,"code":59781},"setIdx":0,"setId":0,"iconIdx":133},{"icon":{"paths":["M748.373 146.347v-63.573c-1.841-14.89-14.414-26.303-29.653-26.303s-27.812 11.413-29.639 26.158l-0.015 0.145v54.187h-139.093v-54.187c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867l-0-0v53.333h-155.307v-53.333c-1.841-14.89-14.414-26.303-29.653-26.303s-27.812 11.413-29.639 26.158l-0.015 0.145v63.573c-110.693 32.676-190.128 133.333-190.293 252.567l-0 0.019v308.907c0.485 145.259 118.352 262.827 263.679 262.827 0.15 0 0.301-0 0.451-0l-0.023 0h326.827c144.777-0.724 261.918-118.015 262.4-262.78l0-0.046v-308.907c-0.166-119.254-79.601-219.91-188.431-252.114l-1.862-0.473zM275.627 209.067v34.56c1.841 14.89 14.414 26.303 29.653 26.303s27.812-11.413 29.639-26.158l0.015-0.145v-46.933c4.693 0 8.96 0 13.653 0h141.653v46.933c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-48.213h125.44c4.693 0 8.96 0 13.653 0v46.933c1.841 14.89 14.414 26.303 29.653 26.303s27.812-11.413 29.639-26.158l0.015-0.145v-33.28c67.479 26.764 116.623 86.539 127.853 158.853l0.147 1.147h-729.6c11.538-73.635 61.023-133.47 127.465-159.52l1.389-0.48zM675.413 911.36h-326.827c-0.127 0-0.278 0-0.428 0-112.572 0-203.887-91.016-204.371-203.474l-0-0.046v-281.173h736.427v279.467c0.001 0.253 0.002 0.554 0.002 0.854 0 112.872-91.501 204.373-204.373 204.373-0.151 0-0.301-0-0.452-0l0.023 0zM409.173 590.507c0.014 0.382 0.022 0.83 0.022 1.28 0 20.501-16.619 37.12-37.12 37.12s-37.12-16.619-37.12-37.12c0-20.493 16.607-37.107 37.097-37.12l0.001-0c0.007-0 0.014-0 0.022-0 20.051 0 36.388 15.897 37.096 35.775l0.002 0.065zM548.267 590.507c0.024 0.503 0.038 1.093 0.038 1.686 0 20.736-16.81 37.547-37.547 37.547s-37.547-16.81-37.547-37.547c0-20.736 16.81-37.547 37.547-37.547 0.437 0 0.872 0.007 1.305 0.022l-0.063-0.002c19.696 0.455 35.572 16.183 36.265 35.776l0.002 0.064zM688.213 590.507c0.006 0.253 0.010 0.552 0.010 0.851 0 20.736-16.81 37.547-37.547 37.547s-37.547-16.81-37.547-37.547c0-20.736 16.81-37.547 37.547-37.547 0.147 0 0.293 0.001 0.439 0.003l-0.022-0c0.001-0 0.002-0 0.002-0 20.351 0 36.877 16.377 37.117 36.671l0 0.023zM408.747 728.32c-0.24 20.082-16.575 36.269-36.691 36.269-0.151 0-0.302-0.001-0.452-0.003l0.023 0c-20.080-0.242-36.264-16.577-36.264-36.691 0-20.265 16.428-36.693 36.693-36.693s36.693 16.428 36.693 36.693c0 0.149-0.001 0.298-0.003 0.447l0-0.023zM547.84 728.32c0.006 0.254 0.010 0.553 0.010 0.853 0 20.736-16.81 37.547-37.547 37.547s-37.547-16.81-37.547-37.547c0-20.733 16.805-37.541 37.536-37.547l0.001-0c0.254-0.006 0.553-0.010 0.853-0.010 20.265 0 36.693 16.428 36.693 36.693 0 0.003-0 0.007-0 0.010l0-0.001zM687.787 728.32c0.006 0.254 0.010 0.553 0.010 0.853 0 20.736-16.81 37.547-37.547 37.547s-37.547-16.81-37.547-37.547c0-20.733 16.805-37.541 37.536-37.547l0.001-0c0.254-0.006 0.553-0.010 0.853-0.010 20.265 0 36.693 16.428 36.693 36.693 0 0.003-0 0.007-0 0.010l0-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar"]},"attrs":[{}],"properties":{"order":6526,"id":438,"name":"calendar","prevSize":32,"code":59782},"setIdx":0,"setId":0,"iconIdx":134},{"icon":{"paths":["M544.853 52.48h-337.92c-70.692 0-128 57.308-128 128v0 662.613c0 70.692 57.308 128 128 128v0h337.92c70.692 0 128-57.308 128-128v0-662.187c0-0.127 0.001-0.277 0.001-0.427 0-70.692-57.308-128-128-128-0 0-0 0-0.001 0l-0 0zM609.28 843.093c-0.24 35.485-28.942 64.187-64.404 64.427l-0.023 0h-337.92c-35.398-0.242-64-28.993-64-64.425 0-0 0-0.001 0-0.001l0 0v-662.187c-0-0-0-0.001-0-0.001 0-35.432 28.602-64.183 63.977-64.425l0.023-0h125.013v11.52c-0 24.389 19.771 44.16 44.16 44.16s44.16-19.771 44.16-44.16v0-11.52h124.587c35.485 0.24 64.187 28.942 64.427 64.404l0 0.023zM310.613 703.147h132.267c0 36.524-29.609 66.133-66.133 66.133s-66.133-29.609-66.133-66.133l0 0zM408.747 368.64v-45.653c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 45.653c-73.637 15.932-128.001 80.522-128.001 157.809 0 0.17 0 0.34 0.001 0.51l-0-0.026v99.413c-0 0.009-0 0.019-0 0.029 0 26.734 21.197 48.518 47.7 49.461l0.086 0.002h223.147c0.127 0.001 0.277 0.002 0.427 0.002 27.334 0 49.493-22.159 49.493-49.493 0-0.001-0-0.001-0-0.002l0 0v-99.413c-0.107-77.893-55.271-142.871-128.658-158.111l-1.048-0.182zM474.453 611.84h-195.413v-85.333c0-53.726 43.554-97.28 97.28-97.28s97.28 43.554 97.28 97.28v0zM762.027 520.533c0.237-17.577 14.423-31.763 31.977-32l0.023-0h119.040c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-119.893c-17.673 0-32-14.327-32-32v0zM768 323.413c-2.118-4.192-3.359-9.137-3.359-14.373 0-12.090 6.616-22.634 16.426-28.21l0.16-0.084 114.773-63.147c4.384-2.387 9.602-3.79 15.147-3.79 17.763 0 32.163 14.4 32.163 32.163 0 12.218-6.813 22.845-16.847 28.289l-0.17 0.084-115.627 61.867c-4.458 2.364-9.737 3.777-15.34 3.84l-0.020 0c-11.717-0.383-21.823-6.924-27.223-16.478l-0.084-0.162zM938.667 810.667c-5.456 10.187-16.005 17.011-28.152 17.067l-0.008 0c-5.479-0.009-10.624-1.431-15.092-3.921l0.158 0.081-116.48-62.293c-9.917-5.637-16.497-16.13-16.497-28.16 0-17.83 14.454-32.283 32.283-32.283 5.8 0 11.242 1.529 15.946 4.207l-0.159-0.083 116.053 62.72c9.485 5.67 15.737 15.884 15.737 27.559 0 5.532-1.404 10.736-3.874 15.275l0.084-0.168z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call"]},"attrs":[{}],"properties":{"order":6527,"id":437,"name":"call","prevSize":32,"code":59783},"setIdx":0,"setId":0,"iconIdx":135},{"icon":{"paths":["M888.32 136.107c-50.994-51.166-121.533-82.825-199.467-82.825s-148.473 31.659-199.459 82.817l-0.008 0.008-353.28 353.28c-51.038 50.973-82.611 121.426-82.611 199.253s31.572 148.281 82.608 199.25l0.003 0.003c50.925 51.142 121.394 82.788 199.253 82.788s148.328-31.647 199.244-82.779l0.010-0.010 176.64-176.64 177.067-176.64c50.833-51.067 82.258-121.49 82.258-199.253s-31.425-148.187-82.269-199.264l0.011 0.011zM489.387 842.667c-39.346 39.577-93.826 64.072-154.027 64.072s-114.681-24.495-154.016-64.061l-0.010-0.010c-39.577-39.346-64.072-93.826-64.072-154.027s24.495-114.681 64.061-154.016l0.010-0.010 154.027-154.027 308.053 308.053zM842.667 489.387l-154.027 154.027-308.053-308.053 154.027-154.027c38.674-35.583 90.501-57.397 147.424-57.397 120.413 0 218.027 97.614 218.027 218.027 0 56.922-21.814 108.75-57.538 147.579l0.141-0.155z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["capsule"]},"attrs":[{}],"properties":{"order":6528,"id":436,"name":"capsule","prevSize":32,"code":59784},"setIdx":0,"setId":0,"iconIdx":136},{"icon":{"paths":["M949.76 757.76v-224.427c-0.015-25.781-5.51-50.274-15.384-72.383l0.451 1.13-17.067-40.107c12.614-7.567 20.925-21.169 20.925-36.712 0-0.444-0.007-0.886-0.020-1.326l0.002 0.064c0.001-0.127 0.002-0.277 0.002-0.427 0-25.214-20.44-45.653-45.653-45.653-0.001 0-0.001 0-0.002 0l-11.093-0-51.2-118.187c-28.27-64.236-91.327-108.29-164.682-108.373l-298.678-0c-0.661-0.009-1.443-0.014-2.225-0.014-75.327 0-139.747 46.7-165.887 112.726l-0.421 1.207-45.227 113.493h-22.613c-0.001-0-0.001-0-0.002-0-25.064 0-45.41 20.197-45.651 45.204l-0 0.023c0.444 20.338 14.247 37.334 32.962 42.59l0.318 0.076-14.933 37.12c-7.834 19.068-12.382 41.202-12.382 64.398 0 0.61 0.003 1.22 0.009 1.829l-0.001-0.093v229.12s0 0 0 2.133v45.653c0 57.261 46.419 103.68 103.68 103.68s103.68-46.419 103.68-103.68v0-13.653h444.587v13.653c0 57.261 46.419 103.68 103.68 103.68s103.68-46.419 103.68-103.68v-44.373s-0.853-2.987-0.853-4.693zM258.133 249.173c17.318-43.091 58.759-72.961 107.177-72.961 0.121 0 0.241 0 0.362 0.001l-0.019-0h298.667c0.014-0 0.030-0 0.046-0 47.119 0 87.63 28.289 105.478 68.809l0.29 0.738 104.107 241.92c6.154 13.42 9.763 29.109 9.813 45.635l0 0.018v197.12h-728.747v-199.253c-0.002-0.257-0.003-0.561-0.003-0.865 0-15.063 2.979-29.431 8.381-42.546l-0.271 0.744zM233.813 808.107c-0 21.915-17.765 39.68-39.68 39.68s-39.68-17.765-39.68-39.68l0 0v-13.653h79.36zM886.613 808.107c0 21.915-17.765 39.68-39.68 39.68s-39.68-17.765-39.68-39.68v-13.653h79.36zM725.333 462.507h-419.413c-17.507-0.286-32.944-8.896-42.561-22.035l-0.106-0.151c-7.601-10.159-12.17-22.969-12.17-36.847 0-6.023 0.861-11.845 2.466-17.35l-0.109 0.437 34.56-119.893c6.554-23.822 27.887-41.083 53.299-41.386l0.034-0h349.867c25.775 0.464 47.256 18.305 53.252 42.281l0.082 0.385 34.56 119.893c1.199 4.503 1.887 9.673 1.887 15.004 0 14.206-4.889 27.27-13.077 37.601l0.096-0.126c-9.765 13.241-25.177 21.83-42.611 22.186l-0.056 0.001zM314.027 404.48v0zM314.027 398.507h401.92l-33.28-109.227h-335.36zM238.933 617.387c-24.742 0-44.8-20.058-44.8-44.8s20.058-44.8 44.8-44.8c24.742 0 44.8 20.058 44.8 44.8v0c0.036 0.654 0.056 1.419 0.056 2.19 0 23.564-19.103 42.667-42.667 42.667-0.77 0-1.536-0.020-2.296-0.061l0.106 0.004zM793.6 617.387c-24.742 0-44.8-20.058-44.8-44.8s20.058-44.8 44.8-44.8c24.742 0 44.8 20.058 44.8 44.8v0c0.035 0.643 0.054 1.396 0.054 2.154 0 23.564-19.103 42.667-42.667 42.667-0.469 0-0.937-0.008-1.402-0.023l0.068 0.002zM674.987 692.48h-298.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h298.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["car-2"]},"attrs":[{}],"properties":{"order":6529,"id":435,"name":"car-2","prevSize":32,"code":59785},"setIdx":0,"setId":0,"iconIdx":137},{"icon":{"paths":["M890.88 456.96l-92.16-20.907c-7.012-1.502-13.093-4.806-17.936-9.402l0.016 0.015-151.893-144.64c-17.738-16.168-41.433-26.070-67.441-26.070-1.041 0-2.077 0.016-3.11 0.047l0.151-0.004h-219.733c-0.108-0-0.236-0.001-0.364-0.001-32.439 0-61.355 15.084-80.117 38.62l-0.159 0.207-80.213 100.267c-4.819 6.18-11.373 10.802-18.928 13.154l-0.272 0.073-30.72 8.533c-43.352 13.367-74.365 52.942-74.666 99.805l-0 0.035v97.28c-0 0.017-0 0.036-0 0.056 0 25.235 10.096 48.112 26.468 64.812l-0.015-0.015c15.703 15.896 37.025 26.211 60.74 27.719l0.273 0.014h20.907c13.133 37.31 48.074 63.573 89.149 63.573 0.009 0 0.017-0 0.026-0l-0.001 0c0.252 0.002 0.55 0.004 0.848 0.004 41.075 0 76.070-26.027 89.394-62.489l0.211-0.661h341.333c13.498 36.912 48.314 62.783 89.173 62.783s75.675-25.871 88.962-62.125l0.211-0.658h22.187c49.645-1.888 89.175-42.59 89.175-92.524 0-0.172-0-0.344-0.001-0.516l0 0.027v-57.173c-0.199-48.985-34.762-89.84-80.821-99.719l-0.672-0.121zM250.88 706.133c-17.201-0.002-31.144-13.946-31.144-31.147 0-17.202 13.945-31.147 31.147-31.147s31.147 13.945 31.147 31.147c0 0.15-0.001 0.3-0.003 0.449l0-0.023c-0.241 17.017-14.092 30.72-31.144 30.72-0.001 0-0.002-0-0.003-0l0 0zM770.133 706.133c-0.126 0.002-0.275 0.003-0.424 0.003-17.202 0-31.147-13.945-31.147-31.147s13.945-31.147 31.147-31.147c17.202 0 31.147 13.945 31.147 31.147 0 0.149-0.001 0.298-0.003 0.446l0-0.022c-0 16.966-13.754 30.72-30.72 30.72h0zM906.667 613.547c-0.083 9.065-4.192 17.154-10.622 22.577l-0.045 0.037c-4.312 3.822-9.967 6.216-16.176 6.399l-0.037 0.001h-20.907c-13.288-37.025-48.087-63.031-88.96-63.031s-75.672 26.006-88.754 62.373l-0.206 0.657h-339.627c-13.498-36.912-48.314-62.783-89.173-62.783s-75.675 25.871-88.962 62.125l-0.211 0.658h-18.773c-7.188-0.739-13.537-3.856-18.354-8.54l0.007 0.007c-5.269-5.189-8.534-12.4-8.534-20.373 0-0.038 0-0.075 0-0.113l-0 0.006v-96.853c0.812-17.763 12.369-32.629 28.289-38.307l0.298-0.093 30.72-8.533c21.019-6.506 38.633-18.877 51.458-35.19l0.169-0.223 80.213-101.973c7.016-8.869 17.777-14.509 29.856-14.509 0.154 0 0.307 0.001 0.46 0.003l-0.023-0h219.733c0.152-0.002 0.331-0.003 0.511-0.003 10.042 0 19.173 3.898 25.964 10.263l-0.021-0.019 151.893 144.64c12.813 12.446 29.035 21.449 47.131 25.477l0.656 0.123 92.16 21.333c17.204 3.856 29.867 18.998 29.867 37.098 0 0.008-0 0.016-0 0.023l0-0.001zM634.453 414.72l-42.667-49.067c-11.698-13.115-28.645-21.334-47.512-21.334-0.097 0-0.193 0-0.29 0.001l0.015-0h-179.627c-0.040-0-0.088-0-0.136-0-22.466 0-42.265 11.424-53.903 28.78l-0.148 0.234-33.28 48.64c-6.777 10.128-10.816 22.586-10.816 35.988 0 11.357 2.9 22.036 8 31.338l-0.17-0.339c10.997 20.702 32.423 34.56 57.086 34.56 0.031 0 0.062-0 0.092-0l-0.005 0h256c35.863-0.251 64.838-29.381 64.838-65.279 0-16.75-6.308-32.026-16.678-43.582l0.054 0.061zM330.24 457.387l34.133-50.347h57.173v50.347zM586.24 457.387h-100.693v-49.067h57.173l42.667 50.773z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["car-3"]},"attrs":[{}],"properties":{"order":6530,"id":434,"name":"car-3","prevSize":32,"code":59786},"setIdx":0,"setId":0,"iconIdx":138},{"icon":{"paths":["M400.64 566.613c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0h-138.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h138.667c17.673 0 32 14.327 32 32v0zM795.307 534.613h-138.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h138.667c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM996.693 869.973c0.191 2.3 0.3 4.978 0.3 7.682 0 54.239-43.812 98.244-97.977 98.558l-0.030 0h-179.627c-0.007 0-0.015 0-0.023 0-50.892 0-92.736-38.74-97.651-88.339l-0.033-0.407v-8.533c-1.792-17.325-16.313-30.72-33.962-30.72-0.060 0-0.12 0-0.18 0l0.009-0h-166.4c-18.045 0.179-32.769 14.161-34.126 31.883l-0.007 0.117c-1.651 53.088-44.86 95.551-98.090 96l-0.043 0h-163.84c-28.478-0.001-54.122-12.132-72.047-31.508l-0.059-0.065c-16.057-17.652-25.889-41.216-25.889-67.077 0-2.671 0.105-5.318 0.311-7.936l-0.022 0.346 28.587-357.973c4.266-45.628 28.967-84.724 64.741-108.464l0.539-0.336 10.24-55.893h-7.68c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h19.2l18.347-104.107c13.657-74.928 78.421-130.987 156.278-130.987 0.108 0 0.217 0 0.325 0l-0.017-0h378.027c0.345-0.003 0.753-0.004 1.161-0.004 77.859 0 142.624 56.061 156.132 130.019l0.147 0.972 18.773 104.107h8.533c17.673 0 32 14.327 32 32v0c-0.192 16.536-13.067 30.005-29.341 31.141l-0.099 0.006 8.96 50.347c42.129 23.1 71.292 65.294 75.903 114.621l0.044 0.579zM190.72 378.88h632.32l-5.547-31.573-11.52-64-16.64-93.013c-8.187-44.672-46.816-78.080-93.247-78.080-0.068 0-0.136 0-0.204 0l0.011-0h-155.733v24.747h29.867c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h33.28v-24.747h-157.44c-0.057-0-0.125-0-0.193-0-46.431 0-85.060 33.409-93.158 77.499l-0.089 0.582-16.64 93.013-11.52 64zM933.12 875.093l-28.587-356.693c-2.792-31.539-22.899-57.779-50.653-69.344l-0.547-0.202h-2.987c-3.4-1.397-7.408-2.58-11.559-3.353l-0.388-0.060c-2.173-0.197-4.7-0.309-7.253-0.309s-5.080 0.112-7.577 0.332l0.323-0.023h-622.507c-0.033-0-0.071-0-0.11-0-42.171 0-76.939 31.7-81.773 72.572l-0.037 0.388-28.587 356.693c-0.061 0.767-0.095 1.66-0.095 2.562 0 18.97 15.285 34.371 34.211 34.558l0.018 0h163.84c0.013 0 0.028 0 0.043 0 18.251 0 33.156-14.324 34.087-32.344l0.003-0.083c1.657-53 44.913-95.361 98.113-95.573l0.021-0h165.973c0.134-0.001 0.293-0.001 0.452-0.001 50.657 0 92.31 38.55 97.222 87.914l0.033 0.407v8.533c1.575 17.421 16.032 30.989 33.691 31.147l0.016 0h179.627c18.944-0.188 34.228-15.588 34.228-34.558 0-0.901-0.035-1.795-0.102-2.679l0.007 0.117z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["car"]},"attrs":[{}],"properties":{"order":6531,"id":433,"name":"car","prevSize":32,"code":59787},"setIdx":0,"setId":0,"iconIdx":139},{"icon":{"paths":["M329.813 481.707h-123.733c-84.262-0.242-152.505-68.484-152.747-152.723l-0-0.023v-124.16c0.243-84.176 68.536-152.32 152.746-152.32 0 0 0 0 0.001 0l123.733 0c0-0 0-0 0.001-0 84.21 0 152.503 68.144 152.746 152.297l0 0.023v124.16c-0.242 84.262-68.484 152.505-152.723 152.747l-0.023 0zM206.080 116.48c-0-0-0.001-0-0.001-0-48.863 0-88.503 39.49-88.746 88.297l-0 0.023v124.16c0 49.013 39.733 88.747 88.747 88.747v0h123.733c49.013 0 88.747-39.733 88.747-88.747h0v-124.16c-0.242-48.83-39.882-88.32-88.746-88.32-0 0-0.001 0-0.001 0l0-0zM817.92 482.987h-123.733c-84.36 0-152.747-68.387-152.747-152.747v-123.733c0.242-84.262 68.484-152.505 152.723-152.747l0.023-0h123.733c84.262 0.242 152.505 68.484 152.747 152.723l0 0.023v123.733c0 84.36-68.387 152.747-152.747 152.747v0zM694.187 117.76c-49.013 0-88.747 39.733-88.747 88.747v0 123.733c0 49.013 39.733 88.747 88.747 88.747v0h123.733c49.013 0 88.747-39.733 88.747-88.747v-123.733c0-49.013-39.733-88.747-88.747-88.747v0zM329.813 971.093h-123.733c-84.262-0.242-152.505-68.484-152.747-152.723l-0-0.023v-123.733c0-84.36 68.387-152.747 152.747-152.747v0h123.733c84.36 0 152.747 68.387 152.747 152.747h0v123.733c-0.723 83.895-68.782 151.655-152.724 151.893l-0.023 0zM206.080 605.867c-49.013 0-88.747 39.733-88.747 88.747v0 123.733c0 49.013 39.733 88.747 88.747 88.747v0h123.733c49.013 0 88.747-39.733 88.747-88.747h0v-123.733c-0-49.013-39.733-88.747-88.747-88.747h0zM817.92 972.373h-123.733c-0 0-0 0-0.001 0-84.21 0-152.503-68.144-152.746-152.297l-0-0.023v-125.013c0.242-84.262 68.484-152.505 152.723-152.747l0.023-0h123.733c84.262 0.242 152.505 68.484 152.747 152.723l0 0.023v124.16c-0.243 84.176-68.536 152.32-152.746 152.32-0 0-0-0-0.001-0l-0-0zM694.187 607.147c-49.013 0-88.747 39.733-88.747 88.747v0 123.307c0.242 48.83 39.882 88.32 88.746 88.32 0 0 0.001-0 0.001-0l123.733 0c0 0 0.001 0 0.001 0 48.863 0 88.503-39.49 88.746-88.297l0-0.023v-124.16c0-49.013-39.733-88.747-88.747-88.747v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["category"]},"attrs":[{}],"properties":{"order":6532,"id":432,"name":"category","prevSize":32,"code":59788},"setIdx":0,"setId":0,"iconIdx":140},{"icon":{"paths":["M512 650.667c-76.583 0-138.667-62.083-138.667-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667v0c-0.242 76.486-62.181 138.425-138.643 138.667l-0.023 0zM512 437.333c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667c41.237 0 74.667-33.429 74.667-74.667v0c0-41.237-33.429-74.667-74.667-74.667v0zM512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cd"]},"attrs":[{}],"properties":{"order":6533,"id":431,"name":"cd","prevSize":32,"code":59789},"setIdx":0,"setId":0,"iconIdx":141},{"icon":{"paths":["M478.822 762.675c-138.444 0-250.675-112.231-250.675-250.675s112.231-250.675 250.675-250.675v0c0.404-0.002 0.883-0.004 1.361-0.004 50.61 0 97.648 15.298 136.74 41.523l-0.885-0.559c8.078 5.615 13.3 14.85 13.3 25.304 0 5.776-1.594 11.18-4.366 15.795l0.077-0.139c-5.633 7.912-14.772 13.011-25.102 13.011-5.859 0-11.334-1.64-15.993-4.486l0.135 0.077c-29.154-19.268-64.931-30.739-103.387-30.739-104.512 0-189.235 84.723-189.235 189.235s84.723 189.235 189.235 189.235c59.538 0 112.653-27.495 147.342-70.481l0.282-0.361c5.677-6.902 14.217-11.269 23.778-11.269 7.306 0 14.016 2.55 19.289 6.809l-0.058-0.046c6.417 5.728 10.438 14.023 10.438 23.258 0 6.62-2.067 12.758-5.59 17.803l0.067-0.101c-45.973 59.428-117.258 97.356-197.406 97.485l-0.021 0zM706.97 389.12c-26.467 0-47.923 21.456-47.923 47.923s21.456 47.923 47.923 47.923c26.467 0 47.923-21.456 47.923-47.923v0c0-26.467-21.456-47.923-47.923-47.923h0zM491.52 952.32c-243.182 0-440.32-197.138-440.32-440.32s197.138-440.32 440.32-440.32c243.182 0 440.32 197.138 440.32 440.32v0c-0.233 243.088-197.232 440.087-440.298 440.32l-0.022 0zM491.52 133.12c-209.25 0-378.88 169.63-378.88 378.88s169.63 378.88 378.88 378.88c209.25 0 378.88-169.63 378.88-378.88v0c-0.233-209.156-169.724-378.647-378.857-378.88l-0.023-0z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["celsius"]},"attrs":[{}],"properties":{"order":6534,"id":430,"name":"celsius","prevSize":32,"code":59790},"setIdx":0,"setId":0,"iconIdx":142},{"icon":{"paths":["M675.84 113.92c130.1 1.202 235.103 106.947 235.103 237.217 0 0.753-0.004 1.506-0.011 2.258l0.001-0.115v317.44c0.006 0.637 0.010 1.389 0.010 2.143 0 130.27-105.003 236.015-234.989 237.216l-0.114 0.001h-327.68c-130.1-1.202-235.103-106.947-235.103-237.217 0-0.753 0.004-1.506 0.011-2.258l-0.001 0.115v-317.44c-0.006-0.637-0.010-1.389-0.010-2.143 0-130.27 105.003-236.015 234.989-237.216l0.114-0.001h327.68zM444.587 556.8c15.226-0.059 29.203-5.355 40.236-14.18l-0.129 0.1 61.44-49.92c0.375-0.182 0.815-0.288 1.28-0.288s0.905 0.106 1.298 0.296l-0.018-0.008c0.506-0.203 1.093-0.321 1.707-0.321s1.201 0.118 1.738 0.332l-0.032-0.011 97.28 106.24h-47.36c-15.34 1.87-27.106 14.814-27.106 30.507s11.766 28.637 26.958 30.492l0.148 0.015h115.627c16.547-0.239 29.87-13.709 29.87-30.29 0-0.151-0.001-0.302-0.003-0.452l0 0.023v-117.333c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867v42.667l-90.453-102.827c-11.664-12.774-28.351-20.791-46.913-20.907l-0.021-0c-0.055-0-0.121-0-0.186-0-15.103 0-28.924 5.488-39.579 14.578l0.085-0.071-61.867 49.92h-2.56c-0.446 0.155-0.959 0.244-1.493 0.244s-1.048-0.089-1.526-0.254l0.033 0.010-97.28-99.84c-5.313-5.771-12.901-9.376-21.331-9.387l-0.002-0c-8.198 0.12-15.578 3.526-20.902 8.955l-0.005 0.005c-5.331 5.518-8.616 13.042-8.616 21.333s3.285 15.816 8.624 21.342l95.565 99.405c11.321 12.093 27.383 19.628 45.204 19.628 0.158 0 0.316-0.001 0.473-0.002l-0.024 0zM676.267 53.333h-328.107c-163.289 2.167-294.827 135.043-294.827 298.642 0 0.009 0 0.018 0 0.026l-0-0.002v317.44c-0 0.007-0 0.016-0 0.025 0 163.599 131.538 296.476 294.623 298.64l0.204 0.002h327.68c163.289-2.167 294.827-135.043 294.827-298.642 0-0.009-0-0.018-0-0.026l0 0.002v-316.16c0-0.007 0-0.016 0-0.025 0-163.599-131.538-296.476-294.623-298.64l-0.204-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line-down-2"]},"attrs":[{}],"properties":{"order":6535,"id":429,"name":"chart-line-down-2","prevSize":32,"code":59791},"setIdx":0,"setId":0,"iconIdx":143},{"icon":{"paths":["M929.28 972.8h-605.44c-149.351-0.485-270.265-121.548-270.507-270.91l-0-0.023v-607.147c0-19.087 15.473-34.56 34.56-34.56s34.56 15.473 34.56 34.56v0 607.147c-0 0-0 0-0 0 0 111.308 90.112 201.57 201.364 201.813l0.023 0h605.44c19.087 0 34.56 15.473 34.56 34.56s-15.473 34.56-34.56 34.56h-0zM951.893 711.253c7.437-6.452 12.113-15.917 12.113-26.474 0-8.636-3.129-16.54-8.314-22.643l0.041 0.050-165.547-192.853c-22.995-26.95-56.991-43.928-94.953-43.928-30.73 0-58.862 11.126-80.587 29.569l0.179-0.148-46.933 39.68c-9.521 8.092-21.956 13.013-35.541 13.013-16.175 0-30.721-6.977-40.791-18.087l-0.041-0.046-190.293-210.347c-6.35-6.972-15.466-11.331-25.6-11.331-19.1 0-34.584 15.484-34.584 34.584 0 8.967 3.412 17.136 9.009 23.281l-0.025-0.028 190.293 209.067c22.766 24.701 55.28 40.12 91.395 40.12 30.231 0 57.938-10.804 79.471-28.762l-0.199 0.161 46.933-39.68c9.558-8.036 22.001-12.918 35.584-12.918 16.79 0 31.838 7.46 42.009 19.247l0.060 0.071 165.973 194.56c6.411 7.223 15.67 11.796 26 11.946l0.026 0c0.645 0.043 1.397 0.068 2.156 0.068 8.481 0 16.24-3.093 22.21-8.213l-0.046 0.038z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line-down"]},"attrs":[{}],"properties":{"order":6536,"id":428,"name":"chart-line-down","prevSize":32,"code":59792},"setIdx":0,"setId":0,"iconIdx":144},{"icon":{"paths":["M977.493 732.16c-11.872-38.336-44.737-66.623-84.834-71.629l-0.499-0.051h-15.787l-3.84-8.533c-16.938-38.979-54.38-66.103-98.347-67.833l-0.213-0.007h-2.56c-43.2 0.48-80.142 26.775-96.164 64.164l-0.263 0.689-3.84 8.533h-15.36c-40.603 5.343-73.407 33.715-85.138 71.378l-0.195 0.728c-3.119 9.61-4.917 20.667-4.917 32.144 0 31.090 13.196 59.098 34.292 78.729l0.066 0.060 11.947 10.667-4.693 18.347c-1.256 6.105-1.975 13.121-1.975 20.305 0 24.64 8.456 47.305 22.624 65.251l-0.17-0.223c18.437 25.795 48.21 42.462 81.888 42.667l0.032 0c19.435-0.359 37.399-6.363 52.403-16.435l-0.35 0.221 13.653-8.107 13.653 8.107c14.488 8.844 32.016 14.081 50.768 14.081 0.152 0 0.304-0 0.456-0.001l-0.023 0c32.142-1.414 60.176-17.819 77.442-42.35l0.211-0.317c13.775-17.689 22.085-40.224 22.085-64.699 0-7.302-0.74-14.431-2.148-21.316l0.117 0.682v-14.080l11.52-10.667c20.582-19.488 33.391-47.005 33.391-77.514 0-11.793-1.914-23.14-5.448-33.746l0.217 0.753zM904.533 794.453l-22.613 20.907c-7.807 7.735-12.64 18.459-12.64 30.312 0 2.708 0.252 5.357 0.735 7.926l-0.041-0.265 6.4 30.293c0.624 2.637 0.982 5.664 0.982 8.775 0 18.629-12.838 34.26-30.15 38.528l-0.272 0.057h-8.533c-7.256-0.137-14.008-2.181-19.81-5.648l0.183 0.101-26.027-15.36c-5.65-3.227-12.416-5.13-19.627-5.13s-13.977 1.903-19.824 5.234l0.198-0.104-26.027 15.787c-5.428 3.481-12.051 5.55-19.157 5.55-0.165 0-0.33-0.001-0.494-0.003l0.025 0c-21.549-0.473-38.836-18.053-38.836-39.671 0-0.303 0.003-0.606 0.010-0.907l-0.001 0.045v-7.253l6.4-30.72c0.562-2.504 0.884-5.379 0.884-8.33 0-11.546-4.931-21.94-12.803-29.192l-0.028-0.025-23.467-20.907c-7.789-7.732-12.611-18.445-12.611-30.284 0-10.036 3.465-19.263 9.265-26.55l-0.067 0.087c5.946-6.587 14.089-11.090 23.267-12.351l30.493-3.436c14.367-1.301 26.299-10.522 31.483-23.216l0.091-0.251 9.387-22.187c6.597-14.86 21.031-25.134 37.915-25.599l0.059-0.001c17.112 0.293 31.743 10.615 38.292 25.328l0.108 0.272 9.387 21.76c4.49 13.772 16.447 23.871 30.972 25.583l0.175 0.017 30.293 2.987c19.786 2.676 34.877 19.458 34.877 39.764 0 1.775-0.115 3.524-0.339 5.238l0.022-0.202c-0.564 8.748-3.683 16.671-8.61 23.145l0.076-0.105z","M688.213 357.547c-9.251 0.054-17.577 3.973-23.451 10.223l-0.016 0.017-110.080 123.307h-6.4l-66.133-54.187c-11.499-9.567-26.422-15.374-42.7-15.374-19.342 0-36.769 8.197-48.997 21.308l-0.036 0.039-103.253 108.8c-5.959 5.948-9.645 14.17-9.645 23.253s3.686 17.306 9.645 23.253l0.001 0.001c5.248 5.752 12.776 9.347 21.143 9.347 10.070 0 18.924-5.207 24.016-13.075l0.068-0.112 101.973-107.093h5.973l66.133 55.893c11.349 8.726 25.759 13.984 41.397 13.984 19.461 0 37.021-8.144 49.456-21.209l0.027-0.028 111.787-123.733c5.734-5.969 9.265-14.092 9.265-23.040s-3.531-17.070-9.276-23.051l0.011 0.011c-5.383-5.279-12.764-8.536-20.905-8.536-0.15 0-0.301 0.001-0.451 0.003l0.023-0z","M381.44 944.64h-66.56c-150.495-0.727-272.213-122.894-272.213-273.49 0-0.001 0-0.002 0-0.004l-0 0.001v-372.48c0.723-150.047 122.166-271.49 272.144-272.213l0.070-0h371.2c150.501 0.239 272.526 121.815 273.493 272.121l0 0.093v136.96c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-136.96c0-115.7-93.793-209.493-209.493-209.493v0h-371.2c-115.7 0-209.493 93.793-209.493 209.493h0v371.2c0 115.7 93.793 209.493 209.493 209.493v0h66.56c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line-star"]},"attrs":[{},{},{}],"properties":{"order":6537,"id":427,"name":"chart-line-star","prevSize":32,"code":59793},"setIdx":0,"setId":0,"iconIdx":145},{"icon":{"paths":["M675.84 113.92c130.1 1.202 235.103 106.947 235.103 237.217 0 0.753-0.004 1.506-0.011 2.258l0.001-0.115v317.44c0.006 0.637 0.010 1.389 0.010 2.143 0 130.27-105.003 236.015-234.989 237.216l-0.114 0.001h-327.68c-130.1-1.202-235.103-106.947-235.103-237.217 0-0.753 0.004-1.506 0.011-2.258l-0.001 0.115v-317.44c-0.006-0.637-0.010-1.389-0.010-2.143 0-130.27 105.003-236.015 234.989-237.216l0.114-0.001h327.68zM602.027 426.667h47.36l-97.28 106.24c-0.506 0.203-1.093 0.321-1.707 0.321s-1.201-0.118-1.738-0.332l0.032 0.011c-0.375 0.182-0.815 0.288-1.28 0.288s-0.905-0.106-1.298-0.296l0.018 0.008-61.44-49.92c-10.903-8.725-24.881-14.021-40.093-14.080l-0.013-0c-0.133-0.001-0.291-0.002-0.449-0.002-17.821 0-33.883 7.535-45.172 19.594l-0.032 0.034-95.573 97.707c-5.331 5.518-8.616 13.042-8.616 21.333s3.285 15.816 8.624 21.342l-0.008-0.009c5.318 5.757 12.906 9.35 21.333 9.35s16.015-3.593 21.315-9.33l0.018-0.020 95.573-99.413c0.446-0.155 0.959-0.244 1.493-0.244s1.048 0.089 1.526 0.254l-0.033-0.010h2.56l61.867 49.92c10.57 9.019 24.391 14.507 39.494 14.507 0.065 0 0.131-0 0.196-0l-0.010 0c18.582-0.115 35.27-8.133 46.889-20.857l0.045-0.050 92.16-103.68v42.667c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v-117.76c0.002-0.128 0.003-0.279 0.003-0.43 0-16.582-13.322-30.052-29.847-30.29l-0.022-0h-115.627c-15.34 1.87-27.106 14.814-27.106 30.507s11.766 28.637 26.958 30.492l0.148 0.015zM675.84 53.333h-327.68c-163.289 2.167-294.827 135.043-294.827 298.642 0 0.009 0 0.018 0 0.026l-0-0.002v317.44c-0 0.007-0 0.016-0 0.025 0 163.599 131.538 296.476 294.623 298.64l0.204 0.002h327.68c163.289-2.167 294.827-135.043 294.827-298.642 0-0.009-0-0.018-0-0.026l0 0.002v-316.16c0-0.007 0-0.016 0-0.025 0-163.599-131.538-296.476-294.623-298.64l-0.204-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line-up-2"]},"attrs":[{}],"properties":{"order":6538,"id":426,"name":"chart-line-up-2","prevSize":32,"code":59794},"setIdx":0,"setId":0,"iconIdx":146},{"icon":{"paths":["M970.667 938.667c0 19.323-15.664 34.987-34.987 34.987v0h-609.707c-150.478-0.243-272.398-122.163-272.64-272.617l-0-0.023v-612.693c0-19.323 15.664-34.987 34.987-34.987v0c19.138 0.241 34.56 15.811 34.56 34.984 0 0.001-0 0.002-0 0.003l0-0v611.84c0.243 111.982 91.078 202.667 203.093 202.667 0 0 0-0 0.001-0l609.706 0c0.003-0 0.007-0 0.010-0 19.323 0 34.987 15.664 34.987 34.987 0 0.3-0.004 0.599-0.011 0.897l0.001-0.044zM276.907 717.653c10.709-0.123 20.286-4.87 26.845-12.333l0.035-0.041 165.547-195.84c10.242-12.105 25.443-19.738 42.427-19.738 13.811 0 26.444 5.048 36.153 13.4l-0.073-0.061 47.36 40.107c21.675 18.363 49.957 29.528 80.846 29.528 36.732 0 69.777-15.788 92.718-40.949l0.089-0.099 191.573-210.773c4.606-5.868 7.387-13.36 7.387-21.501 0-19.323-15.664-34.987-34.987-34.987-9.312 0-17.774 3.638-24.043 9.57l0.016-0.015-191.573 210.773c-10.257 11.209-24.952 18.212-41.281 18.212-13.728 0-26.3-4.949-36.029-13.16l0.083 0.069-47.36-40.107c-21.669-18.342-49.935-29.493-80.805-29.493-38.116 0-72.261 17-95.267 43.831l-0.141 0.169-165.973 195.84c-4.724 5.912-7.581 13.497-7.581 21.749 0 11.021 5.096 20.852 13.060 27.265l0.067 0.053c5.645 4.818 12.863 7.945 20.788 8.526l0.119 0.007z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line-up"]},"attrs":[{}],"properties":{"order":6539,"id":425,"name":"chart-line-up","prevSize":32,"code":59795},"setIdx":0,"setId":0,"iconIdx":147},{"icon":{"paths":["M559.36 521.813s0 0-2.56 0l-61.867-52.48c-10.57-9.019-24.391-14.507-39.494-14.507-0.065 0-0.131 0-0.196 0l0.010-0c-17.946 0.083-34.124 7.589-45.632 19.604l-0.022 0.023-95.573 101.547c-5.43 5.473-8.786 13.011-8.786 21.333s3.356 15.86 8.788 21.335l-0.002-0.002c5.224 5.523 12.603 8.96 20.785 8.96 0.043 0 0.086-0 0.129-0l-0.007 0c8.393-0.22 15.915-3.773 21.325-9.378l0.009-0.009 95.573-99.413c0.441-0.191 0.954-0.302 1.493-0.302s1.053 0.111 1.518 0.312l-0.025-0.010h2.56l61.44 49.92c10.651 8.767 24.429 14.083 39.45 14.083 0.231 0 0.462-0.001 0.692-0.004l-0.035 0c0.002 0 0.005 0 0.008 0 18.52 0 35.203-7.866 46.889-20.44l0.036-0.040 104.533-114.347c5.331-5.518 8.616-13.042 8.616-21.333s-3.285-15.816-8.624-21.342l0.008 0.009c-5.261-5.218-12.485-8.464-20.467-8.533l-0.013-0c-8.617 0.166-16.329 3.905-21.74 9.792l-0.020 0.022-105.813 113.92c-0.441 0.191-0.954 0.302-1.493 0.302s-1.053-0.111-1.518-0.312l0.025 0.010z","M690.347 117.333c119.47 0 216.32 96.85 216.32 216.32v0 356.693c0 119.47-96.85 216.32-216.32 216.32v0h-356.693c-119.47 0-216.32-96.85-216.32-216.32v0-356.693c0-119.47 96.85-216.32 216.32-216.32v0h356.693zM690.347 53.333h-356.693c-154.816 0-280.32 125.504-280.32 280.32v0 356.693c0 154.816 125.504 280.32 280.32 280.32v0h356.693c154.816 0 280.32-125.504 280.32-280.32v0-356.693c0-154.816-125.504-280.32-280.32-280.32v0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line"]},"attrs":[{},{}],"properties":{"order":6540,"id":424,"name":"chart-line","prevSize":32,"code":59796},"setIdx":0,"setId":0,"iconIdx":148},{"icon":{"paths":["M653.227 954.88c-47.128 0-85.333-38.205-85.333-85.333v0-189.44c-0.002-0.254-0.003-0.555-0.003-0.856 0-68.508 55.296-124.102 123.69-124.584l0.046-0h188.16c0.212-0.002 0.463-0.003 0.715-0.003 26.681 0 50.502 12.245 66.15 31.422l0.122 0.154c12.238 14.665 19.668 33.713 19.668 54.496 0 6.083-0.637 12.018-1.847 17.741l0.099-0.557c-15.258 75.649-51.53 141.123-102.401 192.001l0.001-0.001c-50.686 51.169-116.25 87.516-189.666 102.016l-2.334 0.384c-5.061 1.43-10.91 2.351-16.942 2.557l-0.125 0.003zM691.627 616.533c-35.111 0-63.573 28.463-63.573 63.573v0 188.587c0.121 7.883 3.729 14.9 9.345 19.593l0.041 0.034c4.471 3.441 10.149 5.516 16.312 5.516 1.623 0 3.213-0.144 4.757-0.42l-0.163 0.024c124.768-25.143 221.47-121.845 246.275-244.608l0.338-2.005c0.225-1.284 0.353-2.763 0.353-4.271 0-14.198-11.369-25.741-25.5-26.021l-0.026-0zM418.133 952.747c-2.618 0.211-5.668 0.331-8.747 0.331s-6.128-0.12-9.146-0.356l0.399 0.025c-196.512-38.983-342.604-210.004-342.604-415.147s146.092-376.164 339.913-414.7l2.691-0.446c5.176-1.008 11.129-1.585 17.216-1.585 22.677 0 43.484 8.005 59.75 21.344l-0.166-0.132c20.833 16.998 34.145 42.53 34.559 71.184l0.001 0.069v647.253c-0.086 28.402-12.947 53.782-33.136 70.709l-0.144 0.117c-16.232 13.284-37.195 21.335-60.039 21.335-0.192 0-0.385-0.001-0.577-0.002l0.030 0zM418.133 180.48h-6.4c-168.376 32.972-293.676 179.347-293.676 354.987s125.299 322.014 291.387 354.612l2.288 0.374c1.929 0.413 4.145 0.65 6.416 0.65 7.613 0 14.605-2.658 20.098-7.097l-0.061 0.047c6.934-5.731 11.364-14.279 11.52-23.867l0-0.026v-646.827c-0.033-9.511-4.507-17.97-11.455-23.418l-0.065-0.049c-5.026-5.475-12.094-9.007-19.987-9.384l-0.066-0.003zM879.787 506.88h-188.16c-0.003 0-0.008 0-0.012 0-68.207 0-123.613-54.811-124.574-122.789l-0.001-0.091v-189.867c-0.014-0.568-0.021-1.237-0.021-1.907 0-47.128 38.205-85.333 85.333-85.333 6.356 0 12.549 0.695 18.508 2.013l-0.567-0.105c148.89 30.121 264.279 145.509 293.993 292l0.407 2.4c1.111 5.166 1.748 11.1 1.748 17.184 0 20.783-7.43 39.831-19.779 54.633l0.111-0.136c-15.77 19.579-39.741 32.001-66.614 32.001-0.131 0-0.262-0-0.393-0.001l0.020 0zM653.227 170.667c-6.054 0.086-11.567 2.332-15.819 6l0.032-0.027c-5.737 4.492-9.39 11.418-9.39 19.198 0 0.151 0.001 0.301 0.004 0.451l-0-0.023v187.733c0 35.111 28.463 63.573 63.573 63.573v-0h188.16c0.127 0.002 0.278 0.004 0.428 0.004 7.78 0 14.706-3.653 19.158-9.337l0.040-0.053c3.769-4.206 6.074-9.792 6.074-15.917 0-1.767-0.192-3.49-0.556-5.148l0.029 0.158c-12.746-63.52-43.128-118.518-85.768-161.288l0.008 0.008c-42.784-42.259-97.581-72.447-158.81-84.984l-2.044-0.35z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-3"]},"attrs":[{}],"properties":{"order":6541,"id":423,"name":"chart-pie-3","prevSize":32,"code":59797},"setIdx":0,"setId":0,"iconIdx":149},{"icon":{"paths":["M449.28 970.667c-101.636-1.439-193.108-43.789-258.912-111.283l-0.075-0.077c-82.609-83.653-134.423-197.886-136.952-324.21l-0.008-0.483c-4.693-217.6 128-406.613 315.733-449.28 5.554-1.287 11.931-2.025 18.48-2.025 21.168 0 40.535 7.707 55.45 20.469l-0.116-0.097c22.273 19.353 36.274 47.724 36.274 79.366 0 0.448-0.003 0.896-0.008 1.342l0.001-0.068v284.16c0.95 60.025 25.187 114.211 64.047 154.075l-0.047-0.048 118.613 134.4c16.315 18.638 26.267 43.206 26.267 70.098 0 5.375-0.398 10.657-1.165 15.819l0.071-0.583c-3.263 29.845-19.249 55.405-42.339 71.464l-0.327 0.216c-51.798 34.042-114.641 55.429-182.264 58.426l-0.776 0.027zM387.84 145.067l-3.84 0.853c-159.573 36.693-272.213 199.68-267.947 386.987 1.923 109.438 46.519 208.1 117.806 280.366l-0.046-0.046c55.849 57.689 133.997 93.5 220.509 93.5 2.128 0 4.25-0.022 6.367-0.065l-0.316 0.005c57.237-2.069 109.913-19.932 154.281-49.33l-1.108 0.69c8.324-5.97 13.945-15.256 14.923-25.886l0.010-0.141c0.268-1.798 0.422-3.872 0.422-5.983 0-10.61-3.873-20.316-10.283-27.781l0.048 0.057-118.187-134.4c-49.834-50.901-81.004-120.244-82.343-196.862l-0.004-0.258v-284.16c0.019-0.448 0.029-0.974 0.029-1.503 0-11.629-5.112-22.064-13.212-29.179l-0.044-0.038c-4.51-4.091-10.473-6.652-17.032-6.826l-0.035-0.001zM836.693 837.547c-21.957-0.041-41.77-9.189-55.868-23.867l-0.025-0.026-153.173-158.72c-12.416-12.87-20.065-30.411-20.065-49.739 0-9.595 1.885-18.749 5.305-27.113l-0.173 0.478c9.791-24.96 33.545-42.37 61.403-42.666l0.037-0h216.32c24.803 0.258 46.86 11.794 61.321 29.714l0.119 0.152c11.683 14.477 18.754 33.101 18.754 53.376 0 4.199-0.303 8.327-0.889 12.364l0.055-0.46c-10.068 64.555-33.525 122.202-67.494 172.121l0.934-1.455c-13.61 19.33-34.648 32.644-58.878 35.794l-0.429 0.046zM674.133 597.333c-0.048-0.002-0.105-0.003-0.162-0.003-2.374 0-4.37 1.615-4.95 3.807l-0.008 0.036c-0.732 0.931-1.175 2.121-1.175 3.413s0.442 2.482 1.184 3.425l-0.009-0.012 154.453 160c3.276 3.479 7.913 5.645 13.056 5.645 0.661 0 1.314-0.036 1.957-0.106l-0.080 0.007c6.454-0.689 11.962-4.224 15.311-9.308l0.049-0.079c27.753-40.981 47.453-89.693 55.637-142.217l0.256-1.996c0.091-0.662 0.143-1.427 0.143-2.205 0-4.412-1.674-8.434-4.422-11.463l0.013 0.014c-3.414-4.624-8.818-7.609-14.922-7.68l-0.011-0zM898.56 486.4h-215.893c-71.004-1.427-128.018-59.323-128.018-130.535 0-0.759 0.006-1.516 0.019-2.272l-0.002 0.114v-225.707c-0-0.067-0-0.147-0-0.226 0-22.189 9.516-42.156 24.689-56.042l0.058-0.052c12.128-11.491 28.549-18.557 46.62-18.557 3.271 0 6.487 0.231 9.634 0.679l-0.361-0.042c89.142 13.303 166.619 55.553 224.247 116.714l0.18 0.192c58.837 62.279 98.772 142.984 110.288 232.585l0.218 2.082c0.338 2.707 0.531 5.841 0.531 9.019 0 18.882-6.814 36.173-18.118 49.547l0.094-0.114c-13.054 14.939-32.142 24.324-53.422 24.324-0.269 0-0.537-0.001-0.805-0.004l0.041 0zM625.92 115.2c-2.547 0.083-4.813 1.216-6.393 2.978l-0.007 0.008c-2.357 1.97-3.845 4.912-3.845 8.2 0 0.117 0.002 0.234 0.006 0.35l-0-0.017v228.693c-0.055 1.021-0.086 2.216-0.086 3.418 0 37.197 29.937 67.402 67.032 67.835l0.041 0h216.747c3.478 0 6.567-1.664 8.514-4.24l0.019-0.027c1.661-1.692 2.686-4.013 2.686-6.574 0-0.541-0.046-1.072-0.134-1.589l0.008 0.055c-9.303-78.547-43.35-147.796-94.008-201.11l0.142 0.15c-48.973-50.963-114.428-85.764-187.769-95.813l-1.671-0.187z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-4"]},"attrs":[{}],"properties":{"order":6542,"id":422,"name":"chart-pie-4","prevSize":32,"code":59798},"setIdx":0,"setId":0,"iconIdx":150},{"icon":{"paths":["M471.467 965.973c-227.451-1.166-411.386-185.821-411.386-413.435 0-196.61 137.238-361.166 321.145-403.1l2.774-0.532c2.026-0.456 4.352-0.718 6.74-0.718 15.206 0 27.934 10.605 31.192 24.823l0.041 0.215c0.799 2.643 1.259 5.681 1.259 8.826 0 15.925-11.79 29.097-27.118 31.261l-0.167 0.019c-157.884 35.814-273.98 174.947-273.98 341.195 0 192.99 156.45 349.44 349.44 349.44 168.018 0 308.34-118.581 341.841-276.618l0.405-2.284c3.082-14.714 15.949-25.606 31.36-25.606 17.677 0 32.006 14.33 32.006 32.006 0 2.265-0.235 4.476-0.683 6.608l0.037-0.208c-41.472 188.532-206.876 327.608-404.851 328.107l-0.056 0zM866.133 499.2h-191.573c-82.71 0-149.76-67.050-149.76-149.76v-0-191.573c-0-0.053-0-0.115-0-0.177 0-31.234 14.404-59.104 36.933-77.33l0.187-0.147c16.504-13.623 37.872-21.886 61.17-21.886 7.353 0 14.514 0.823 21.396 2.382l-0.646-0.123c160.68 34.517 285.057 158.893 319.083 316.857l0.49 2.716c1.436 6.236 2.259 13.397 2.259 20.75 0 23.298-8.263 44.666-22.017 61.334l0.131-0.164c-18.372 22.716-46.242 37.12-77.476 37.12-0.062 0-0.125-0-0.187-0l0.010 0zM623.36 122.027c-8.112 0.165-15.524 3.032-21.404 7.735l0.071-0.055c-8.005 6.835-13.088 16.89-13.226 28.136l-0 0.024v191.573c0 47.128 38.205 85.333 85.333 85.333v0h192c0.477 0.022 1.037 0.034 1.599 0.034 11.253 0 21.349-4.95 28.231-12.791l0.037-0.043c4.741-5.762 7.615-13.215 7.615-21.339 0-2.568-0.287-5.069-0.831-7.473l0.043 0.226c-30.298-135.444-135.063-240.208-268.144-270.061l-2.363-0.445z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-simple"]},"attrs":[{}],"properties":{"order":6543,"id":421,"name":"chart-pie-simple","prevSize":32,"code":59799},"setIdx":0,"setId":0,"iconIdx":151},{"icon":{"paths":["M653.653 117.333c1.154-0.194 2.484-0.305 3.84-0.305s2.686 0.111 3.981 0.324l-0.141-0.019c141.595 37.107 244.942 162.402 248.313 312.372l0.007 0.374c-3.482 150.412-106.749 275.768-246.010 312.653l-2.31 0.52h-7.68c-0.436 0.028-0.946 0.044-1.459 0.044-12.394 0-22.623-9.272-24.129-21.258l-0.012-0.12v-583.253c1.518-12.105 11.747-21.377 24.141-21.377 0.513 0 1.023 0.016 1.528 0.047l-0.069-0.003zM370.773 278.613c0.422-0.027 0.916-0.042 1.413-0.042 12.309 0 22.444 9.308 23.751 21.269l0.009 0.107v585.387c-2.11 12.192-12.608 21.347-25.244 21.347-2.874 0-5.637-0.474-8.216-1.347l0.18 0.053c-141.595-37.107-244.942-162.402-248.313-312.372l-0.007-0.374c3.482-150.412 106.749-275.768 246.010-312.653l2.31-0.52h8.107zM653.653 54.187c-0.519-0.011-1.13-0.017-1.743-0.017-47.648 0-86.441 37.915-87.853 85.22l-0.003 0.13v585.813c1.416 47.436 40.209 85.351 87.857 85.351 0.613 0 1.225-0.006 1.835-0.019l-0.091 0.001c0.249 0.003 0.544 0.004 0.839 0.004 8.52 0 16.748-1.249 24.512-3.573l-0.604 0.155c169.093-44.598 292.259-194.815 295.249-374.278l0.004-0.335c-2.396-180.322-125.752-331.178-292.509-375.276l-2.744-0.617c-7.39-2.050-15.897-3.288-24.673-3.413l-0.074-0.001zM370.347 213.333c-0.249-0.003-0.544-0.004-0.839-0.004-8.52 0-16.748 1.249-24.512 3.573l0.604-0.155c-169.093 44.598-292.259 194.815-295.249 374.278l-0.004 0.335c2.396 180.322 125.752 331.178 292.509 375.276l2.744 0.617c7.39 2.050 15.897 3.288 24.673 3.413l0.074 0.001c0.519 0.011 1.13 0.017 1.743 0.017 47.648 0 86.441-37.915 87.853-85.22l0.003-0.13v-586.667c-1.416-47.436-40.209-85.351-87.857-85.351-0.613 0-1.225 0.006-1.835 0.019l0.091-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-too"]},"attrs":[{}],"properties":{"order":6544,"id":420,"name":"chart-pie-too","prevSize":32,"code":59800},"setIdx":0,"setId":0,"iconIdx":152},{"icon":{"paths":["M886.613 970.667h-749.227c-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427h749.227c17.909 0 32.427 14.518 32.427 32.427s-14.518 32.427-32.427 32.427l0-0zM512 840.533h-42.667c-45.111-0.482-81.494-37.163-81.494-82.342 0-0.152 0-0.303 0.001-0.455l-0 0.023v-438.613c-0.001-0.128-0.001-0.28-0.001-0.431 0-45.179 36.384-81.861 81.449-82.342l0.045-0h42.667c45.111 0.482 81.494 37.163 81.494 82.342 0 0.152-0 0.303-0.001 0.455l0-0.023v438.613c0.001 0.128 0.001 0.28 0.001 0.431 0 45.179-36.384 81.861-81.449 82.342l-0.045 0zM469.333 301.653c-9.566 0.232-17.261 7.927-17.493 17.471l-0 0.022v438.613c-0 0.002-0 0.003-0 0.005 0 9.747 7.782 17.676 17.471 17.914l0.022 0h42.667c0.002 0 0.003 0 0.005 0 9.661 0 17.493-7.832 17.493-17.493 0-0.15-0.002-0.3-0.006-0.449l0 0.022v-438.613c0-9.661-7.832-17.493-17.493-17.493v0zM768 840.533h-32.853c-0.011 0-0.025 0-0.038 0-47.128 0-85.333-38.205-85.333-85.333 0-0.9 0.014-1.797 0.042-2.691l-0.003 0.131v-608.427c-0.024-0.763-0.038-1.66-0.038-2.56 0-47.128 38.205-85.333 85.333-85.333 0.014 0 0.027 0 0.041 0l32.851-0c0.011-0 0.025-0 0.038-0 47.128 0 85.333 38.205 85.333 85.333 0 0.9-0.014 1.797-0.042 2.691l0.003-0.131v608.427c0.024 0.763 0.038 1.66 0.038 2.56 0 47.128-38.205 85.333-85.333 85.333-0.014 0-0.027-0-0.041-0l0.002 0zM736 121.173c-12.306 0.237-22.191 10.269-22.191 22.609 0 0.151 0.001 0.302 0.004 0.453l-0-0.023v608.427c-0.003 0.128-0.004 0.279-0.004 0.431 0 12.34 9.885 22.372 22.169 22.609l0.022 0h32c12.306-0.237 22.191-10.269 22.191-22.609 0-0.151-0.001-0.302-0.004-0.453l0 0.023v-608.427c0.003-0.128 0.004-0.279 0.004-0.431 0-12.34-9.885-22.372-22.169-22.609l-0.022-0zM256 840.533h-42.667c-45.061-0.24-81.498-36.824-81.498-81.919 0-0.3 0.002-0.6 0.005-0.9l-0 0.046v-231.253c-0.003-0.254-0.004-0.554-0.004-0.854 0-45.095 36.437-81.679 81.475-81.919l0.023-0h42.667c45.061 0.24 81.498 36.824 81.498 81.919 0 0.3-0.002 0.6-0.005 0.9l0-0.046v231.253c0.003 0.254 0.004 0.554 0.004 0.854 0 45.095-36.437 81.679-81.475 81.919l-0.023 0zM213.333 509.013c-9.661 0-17.493 7.832-17.493 17.493v0 231.253c-0.003 0.127-0.005 0.277-0.005 0.427 0 9.661 7.832 17.493 17.493 17.493 0.002 0 0.004-0 0.005-0l42.666 0c0.002 0 0.003 0 0.005 0 9.661 0 17.493-7.832 17.493-17.493 0-0.15-0.002-0.3-0.006-0.449l0 0.022v-231.253c0-9.661-7.832-17.493-17.493-17.493v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-simple-2"]},"attrs":[{}],"properties":{"order":6545,"id":419,"name":"chart-simple-2","prevSize":32,"code":59801},"setIdx":0,"setId":0,"iconIdx":153},{"icon":{"paths":["M886.613 975.787h-749.227c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h749.227c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM512.853 847.787h-40.533c-44.505-0.207-80.698-35.505-82.342-79.637l-0.004-0.15v-452.693c0-45.479 36.868-82.347 82.347-82.347v0h39.68c0.891-0.035 1.936-0.054 2.987-0.054 45.479 0 82.347 36.868 82.347 82.347 0 0.019-0 0.038-0 0.057l0-0.003v452.693c-1.169 44.805-37.768 80.68-82.747 80.68-0.91 0-1.816-0.015-2.718-0.044l0.132 0.003zM472.32 298.667c-10.133 0-18.347 8.214-18.347 18.347v0 450.987c0 10.133 8.214 18.347 18.347 18.347v0h39.68c0.001 0 0.003 0 0.005 0 10.218 0 18.53-8.164 18.768-18.325l0-0.022v-452.693c-1.107-9.41-9.035-16.64-18.652-16.64-0.043 0-0.085 0-0.128 0l0.007-0zM266.667 848.64h-30.72c-48.307 0-87.467-39.16-87.467-87.467v-625.493c0-48.307 39.16-87.467 87.467-87.467h30.72c48.307 0 87.467 39.16 87.467 87.467v625.493c0 48.307-39.16 87.467-87.467 87.467l-0-0zM235.947 112.213c-12.588 0.472-22.613 10.791-22.613 23.451 0 0.005 0 0.011 0 0.016l-0-0.001v625.493c0 12.96 10.506 23.467 23.467 23.467l-0-0h30.72c12.96 0 23.467-10.506 23.467-23.467v-625.493c0-12.96-10.506-23.467-23.467-23.467v0zM753.92 848.64h-42.667c-43.88-1.386-79.067-36.721-80.211-80.532l-0.002-0.108v-238.933c0.241-45.382 36.965-82.106 82.324-82.347l0.023-0h42.667c0-0 0.001-0 0.001-0 45.564 0 82.53 36.816 82.772 82.323l0 0.023v238.933c-1.176 44.8-37.772 80.668-82.747 80.668-0.76 0-1.517-0.010-2.271-0.031l0.111 0.002zM711.253 507.307c-10.133 0-18.347 8.214-18.347 18.347v0 242.347c0 10.133 8.214 18.347 18.347 18.347v0h42.667c0.001 0 0.003 0 0.005 0 10.218 0 18.53-8.164 18.768-18.325l0-0.022v-238.933c-0.239-10.183-8.55-18.347-18.768-18.347-0.002 0-0.003 0-0.005 0l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-simple-3"]},"attrs":[{}],"properties":{"order":6546,"id":418,"name":"chart-simple-3","prevSize":32,"code":59802},"setIdx":0,"setId":0,"iconIdx":154},{"icon":{"paths":["M886.613 970.667h-749.227c-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427h749.227c17.909 0 32.427 14.518 32.427 32.427s-14.518 32.427-32.427 32.427l0-0zM780.373 842.667h-42.667c-45.111-0.482-81.494-37.163-81.494-82.342 0-0.152 0-0.303 0.001-0.455l-0 0.023v-439.467c-0.001-0.128-0.001-0.28-0.001-0.431 0-45.179 36.384-81.861 81.449-82.342l0.045-0h42.667c45.111 0.482 81.494 37.163 81.494 82.342 0 0.152-0 0.303-0.001 0.455l0-0.023v437.76c0.001 0.128 0.001 0.28 0.001 0.431 0 45.179-36.384 81.861-81.449 82.342l-0.045 0zM737.707 304.213c-9.712 0.239-17.493 8.168-17.493 17.915 0 0.002 0 0.004 0 0.005l-0-0v436.053c0 9.661 7.832 17.493 17.493 17.493v-0h42.667c9.661 0 17.493-7.832 17.493-17.493v-437.76c0.003-0.127 0.005-0.277 0.005-0.427 0-9.661-7.832-17.493-17.493-17.493-0.002 0-0.004 0-0.005 0l0-0zM508.587 840.96h-32.853c-47.38-1.192-85.335-39.884-85.335-87.441 0-0.159 0-0.318 0.001-0.477l-0 0.024v-607.573c-0.024-0.763-0.038-1.66-0.038-2.56 0-47.128 38.205-85.333 85.333-85.333 0.014 0 0.027 0 0.041 0l32.851-0c0.011-0 0.025-0 0.038-0 47.128 0 85.333 38.205 85.333 85.333 0 0.9-0.014 1.797-0.042 2.691l0.003-0.131v607.573c0.024 0.763 0.038 1.66 0.038 2.56 0 47.128-38.205 85.333-85.333 85.333-0.014 0-0.027-0-0.041-0l0.002 0zM475.733 122.88c-12.489 0-22.613 10.124-22.613 22.613l-0 0v607.573c0 12.489 10.124 22.613 22.613 22.613h32.853c0.001 0 0.003 0 0.004 0 12.253 0 22.187-9.933 22.187-22.187 0-0.15-0.001-0.3-0.004-0.449l0 0.022v-607.573c0.003-0.127 0.004-0.277 0.004-0.427 0-12.253-9.933-22.187-22.187-22.187-0.001 0-0.003 0-0.004 0l0-0zM256 840.96h-42.667c-44.877-0.48-81.071-36.971-81.071-81.916 0-0.302 0.002-0.603 0.005-0.904l-0 0.046v-230.827c-0.003-0.255-0.004-0.556-0.004-0.858 0-44.945 36.195-81.436 81.026-81.915l0.045-0h42.667c45.061 0.24 81.498 36.824 81.498 81.919 0 0.3-0.002 0.6-0.005 0.9l0-0.046v230.827c0.003 0.254 0.004 0.554 0.004 0.854 0 45.095-36.437 81.679-81.475 81.919l-0.023 0zM213.333 512c-0.002-0-0.003-0-0.005-0-9.426 0-17.067 7.641-17.067 17.067 0 0.15 0.002 0.3 0.006 0.449l-0-0.022v230.827c-0.003 0.127-0.005 0.277-0.005 0.427 0 9.426 7.641 17.067 17.067 17.067 0.002 0 0.004-0 0.006-0l42.666 0c9.661 0 17.493-7.832 17.493-17.493v0-232.96c-1.099-8.7-8.453-15.36-17.363-15.36-0.046 0-0.092 0-0.138 0.001l0.007-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-simple"]},"attrs":[{}],"properties":{"order":6547,"id":417,"name":"chart-simple","prevSize":32,"code":59803},"setIdx":0,"setId":0,"iconIdx":155},{"icon":{"paths":["M512 968.533c-0.296 0.001-0.645 0.001-0.995 0.001-129.157 0-245.833-53.434-329.129-139.401l-0.116-0.12c-14.237-14.78-23.008-34.914-23.008-57.095 0-4.091 0.298-8.113 0.875-12.045l-0.054 0.446c4.083-26.712 20.055-49.012 42.246-61.646l0.421-0.221 69.973-42.667c10-6.011 22.069-9.567 34.968-9.567 18.382 0 35.077 7.22 47.405 18.979l-0.027-0.026c40.711 40.071 96.613 64.813 158.293 64.813s117.583-24.742 158.323-64.842l-0.029 0.029c12.301-11.733 28.996-18.953 47.378-18.953 12.899 0 24.968 3.555 35.28 9.74l-0.312-0.173 69.973 42.667c22.612 12.854 38.584 35.155 42.607 61.391l0.060 0.475c0.522 3.485 0.821 7.507 0.821 11.598 0 22.181-8.77 42.314-23.032 57.121l0.025-0.026c-83.412 86.091-200.091 139.528-329.251 139.528-0.948 0-1.895-0.003-2.841-0.009l0.146 0.001zM306.347 712.533c-0.444-0.171-0.957-0.27-1.493-0.27s-1.050 0.099-1.523 0.28l0.029-0.010-69.973 40.107c-5.773 3.225-9.812 8.957-10.656 15.684l-0.010 0.103c-0.141 0.834-0.222 1.796-0.222 2.776 0 4.726 1.874 9.014 4.92 12.162l-0.005-0.005c72.183 74.23 173.007 120.285 284.587 120.285s212.404-46.055 284.498-120.193l0.089-0.092c3.041-3.143 4.915-7.431 4.915-12.157 0-0.98-0.081-1.941-0.236-2.878l0.014 0.102c-0.854-6.829-4.894-12.562-10.561-15.732l-0.106-0.054-69.973-40.107c-0.784-0.512-1.743-0.816-2.773-0.816s-1.99 0.304-2.793 0.828l0.020-0.012c-52.2 51.484-123.934 83.28-203.093 83.28s-150.893-31.796-203.126-83.312l0.033 0.032zM875.947 690.347c-0.175 0.001-0.382 0.002-0.589 0.002-15.471 0-29.98-4.117-42.492-11.315l0.414 0.22-69.547-39.253c-20.975-12.239-34.846-34.635-34.846-60.271 0-5.868 0.727-11.566 2.095-17.009l-0.102 0.48c4.582-16.953 7.213-36.418 7.213-56.497 0-103.222-69.554-190.2-164.352-216.62l-1.581-0.376c-28.995-9.783-49.501-36.733-49.501-68.472 0-2.784 0.158-5.531 0.465-8.232l-0.031 0.331v-72.96c-0.005-0.338-0.008-0.738-0.008-1.138 0-26.683 12.247-50.506 31.427-66.154l0.154-0.122c13.763-10.845 31.352-17.394 50.471-17.394 7.078 0 13.946 0.898 20.497 2.585l-0.568-0.124c201.454 52.557 347.734 232.884 347.734 447.377 0 0.219-0 0.438-0 0.657l0-0.034c-0.034 43.269-5.95 85.142-16.991 124.881l0.778-3.281c-7.313 24.984-25.066 44.833-48.088 54.827l-0.552 0.213c-9.372 4.402-20.302 7.18-31.824 7.674l-0.176 0.006zM606.293 119.467c-4.255 0.128-8.116 1.72-11.118 4.287l0.025-0.021c-4.949 3.778-8.109 9.681-8.109 16.322 0 0.112 0.001 0.224 0.003 0.335l-0-0.017v72.96c-0.037 0.573-0.058 1.243-0.058 1.918 0 4.553 0.964 8.88 2.698 12.79l-0.080-0.201c123.808 34.645 213.135 146.384 213.333 279.017l0 0.023c0.001 0.2 0.001 0.436 0.001 0.673 0 25.404-3.426 50.007-9.842 73.374l0.454-1.94c-0.013 0.137-0.020 0.296-0.020 0.456 0 2.062 1.219 3.839 2.975 4.651l0.032 0.013 69.973 40.533c2.622 1.273 5.704 2.017 8.96 2.017s6.338-0.744 9.085-2.072l-0.125 0.054c6.045-2.566 10.585-7.666 12.337-13.93l0.036-0.15c8.947-31.477 14.091-67.626 14.091-104.978 0-184.84-125.979-340.257-296.76-385.071l-2.772-0.618zM148.053 690.347c-11.698-0.5-22.628-3.278-32.524-7.9l0.524 0.22c-24.441-10.249-42.792-30.84-49.779-56.147l-0.141-0.599c-10.263-36.458-16.179-78.331-16.213-121.581l-0-0.019c0.519-214.049 146.631-393.828 344.521-445.58l3.213-0.714c6.042-1.528 12.978-2.406 20.119-2.406 19.466 0 37.409 6.518 51.767 17.49l-0.206-0.151c20.076 15.762 32.853 40.033 32.853 67.288 0 0.044-0 0.088-0 0.132l0-0.007v81.493c0.002 0.217 0.004 0.473 0.004 0.729 0 30.942-20.457 57.105-48.584 65.703l-0.487 0.128c-96.379 26.797-165.933 113.774-165.933 216.996 0 20.079 2.632 39.544 7.57 58.068l-0.356-1.571c1.387 5.174 2.184 11.113 2.184 17.239 0 26.157-14.529 48.921-35.958 60.66l-0.36 0.181-69.973 40.533c-11.535 6.203-25.24 9.848-39.797 9.848-0.859 0-1.715-0.013-2.568-0.038l0.125 0.003zM417.707 119.467h-4.267c-173.663 45.355-299.75 200.825-299.75 385.745 0 37.642 5.225 74.064 14.988 108.581l-0.678-2.805c1.788 6.414 6.328 11.514 12.234 14.027l0.139 0.053c2.622 1.273 5.704 2.017 8.96 2.017s6.338-0.744 9.085-2.072l-0.125 0.054 69.973-40.533c1.788-0.825 3.007-2.602 3.007-4.664 0-0.161-0.007-0.32-0.022-0.476l0.002 0.020c-5.962-21.341-9.388-45.848-9.388-71.156 0-0.334 0.001-0.668 0.002-1.002l-0 0.051c0.455-132.676 89.634-244.399 211.281-278.968l2.052-0.499s2.133 0 2.133-4.693v-82.773c0-0.033 0-0.071 0-0.11 0-6.703-3.155-12.67-8.060-16.496l-0.047-0.035c-3.084-2.634-7.112-4.245-11.515-4.267l-0.005-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart"]},"attrs":[{}],"properties":{"order":6548,"id":416,"name":"chart","prevSize":32,"code":59804},"setIdx":0,"setId":0,"iconIdx":156},{"icon":{"paths":["M512 113.067c220.325 0 398.933 178.609 398.933 398.933s-178.609 398.933-398.933 398.933c-220.325 0-398.933-178.609-398.933-398.933h-0c0-220.325 178.609-398.933 398.933-398.933v-0zM472.32 575.147l-130.987-131.413c-7.369-6.918-17.234-11.252-28.107-11.519l-0.053-0.001c-21.979 0.224-39.711 18.094-39.711 40.105 0 10.977 4.41 20.924 11.555 28.166l-0.004-0.004 159.147 159.573c7.503 6.704 17.46 10.801 28.373 10.801s20.87-4.097 28.415-10.838l-0.042 0.036 238.933-239.36c7.141-7.238 11.551-17.185 11.551-28.162 0-22.011-17.731-39.881-39.689-40.105l-0.021-0c-10.926 0.268-20.791 4.602-28.183 11.541l0.023-0.021-210.773 213.333zM512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c-0.243-253.217-205.45-458.424-458.644-458.667l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-circle"]},"attrs":[{}],"properties":{"order":6549,"id":415,"name":"check-circle","prevSize":32,"code":59805},"setIdx":0,"setId":0,"iconIdx":157},{"icon":{"paths":["M679.253 113.067c127.953 0 231.68 103.727 231.68 231.68v0 334.507c0 127.953-103.727 231.68-231.68 231.68v0h-334.507c-127.953 0-231.68-103.727-231.68-231.68v0-334.507c0-127.953 103.727-231.68 231.68-231.68v-0h334.507zM472.32 575.147l-130.987-131.413c-7.369-6.918-17.234-11.252-28.107-11.519l-0.053-0.001c-21.979 0.224-39.711 18.094-39.711 40.105 0 10.977 4.41 20.924 11.555 28.166l-0.004-0.004 159.147 159.573c7.503 6.704 17.46 10.801 28.373 10.801s20.87-4.097 28.415-10.838l-0.042 0.036 238.933-239.36c7.141-7.238 11.551-17.185 11.551-28.162 0-22.011-17.731-39.881-39.689-40.105l-0.021-0c-10.926 0.268-20.791 4.602-28.183 11.541l0.023-0.021-210.773 213.333zM679.253 53.333h-334.507c-160.943 0-291.413 130.47-291.413 291.413v0 334.507c0 160.943 130.47 291.413 291.413 291.413v0h334.507c160.943 0 291.413-130.47 291.413-291.413v-334.507c0-160.943-130.47-291.413-291.413-291.413v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-square"]},"attrs":[{}],"properties":{"order":6550,"id":414,"name":"check-square","prevSize":32,"code":59806},"setIdx":0,"setId":0,"iconIdx":158},{"icon":{"paths":["M732.587 334.933l-285.013 285.013-165.547-165.547c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002 195.84 195.84c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002 314.88-314.88c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check"]},"attrs":[{}],"properties":{"order":6551,"id":413,"name":"check","prevSize":32,"code":59807},"setIdx":0,"setId":0,"iconIdx":159},{"icon":{"paths":["M366.080 370.773c0 17.673-14.327 32-32 32v0h-95.147c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h95.147c17.577 0.237 31.763 14.423 32 31.977l0 0.023zM509.013 618.667h-95.147c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h95.147c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM334.080 478.72h-95.147c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h95.147c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM509.013 338.773h-58.027c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h58.027c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM935.68 709.973v98.133c0 0.127 0.001 0.277 0.001 0.427 0 89.544-72.59 162.133-162.133 162.133-0 0-0-0-0.001-0l-523.52 0c-89.831-0.243-162.56-73.121-162.56-162.986 0-0 0-0 0-0.001l-0 0v-660.053c-0.001-0.162-0.002-0.353-0.002-0.545 0-26.719 15.067-49.919 37.169-61.566l0.38-0.183c9.4-4.968 20.546-7.885 32.373-7.885 15.026 0 28.953 4.708 40.385 12.728l-0.225-0.15 53.333 37.973c0.734 0.431 1.617 0.686 2.56 0.686s1.826-0.255 2.584-0.699l-0.024 0.013 85.333-62.72c11.633-8.946 26.405-14.336 42.436-14.336 14.209 0 27.429 4.235 38.467 11.512l-0.263-0.163 85.333 57.173c0.968 0.619 2.148 0.986 3.413 0.986s2.446-0.367 3.439-1.002l-0.026 0.015 52.053-34.133c10.738-6.974 23.872-11.12 37.974-11.12 38.74 0 70.172 31.292 70.399 69.979l0 0.022v417.28h142.080c0.766-0.018 1.668-0.028 2.573-0.028 65.98 0 119.467 53.487 119.467 119.467 0 0.61-0.005 1.219-0.014 1.826l0.001-0.092zM644.267 907.093c-20.769-27.119-33.28-61.518-33.28-98.84 0-0.052 0-0.103 0-0.155l-0 0.008v-663.467c0.007-0.11 0.011-0.238 0.011-0.367 0-2.204-1.194-4.129-2.97-5.164l-0.028-0.015c-0.927-0.502-2.029-0.796-3.2-0.796s-2.273 0.295-3.236 0.814l0.036-0.018-51.2 33.707c-10.861 7.044-24.141 11.233-38.4 11.233s-27.539-4.188-38.678-11.402l0.278 0.169-85.333-57.6c-1.040-0.611-2.291-0.972-3.627-0.972s-2.586 0.361-3.661 0.99l0.034-0.019-82.347 63.573c-11.825 9.449-26.994 15.163-43.498 15.163-15.766 0-30.314-5.214-42.014-14.012l0.18 0.129-52.48-37.547c-0.51-0.171-1.097-0.269-1.707-0.269s-1.197 0.098-1.746 0.28l0.039-0.011h-2.987c-1.804 1.051-2.998 2.976-2.998 5.18 0 0.129 0.004 0.257 0.012 0.384l-0.001-0.017v660.053c-0 0-0 0.001-0 0.001 0 54.519 44.075 98.743 98.537 98.986l0.023 0zM872.533 682.667c0-0 0-0.001 0-0.002 0-30.719-24.782-55.65-55.444-55.892l-0.023-0h-142.080v177.493c-0 0.119-0.001 0.26-0.001 0.401 0 36.485 18.466 68.658 46.562 87.681l0.372 0.238 7.253 4.267 6.827 3.413c6.66 2.682 14.428 4.771 22.502 5.911l0.538 0.062c4.749 0.822 10.219 1.291 15.798 1.291 23.57 0 45.182-8.382 62.017-22.328l-0.162 0.13c21.963-18.287 35.84-45.637 35.84-76.229 0-0.051-0-0.101-0-0.152l0 0.008v-126.293zM509.013 479.573h-58.027c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h58.027c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cheque"]},"attrs":[{}],"properties":{"order":6552,"id":412,"name":"cheque","prevSize":32,"code":59808},"setIdx":0,"setId":0,"iconIdx":160},{"icon":{"paths":["M535.040 49.067c-255.906-0-463.36 207.453-463.36 463.36s207.453 463.36 463.36 463.36c255.907 0 463.36-207.453 463.36-463.36 0-0.15-0-0.3-0-0.449l0 0.023c-0.243-255.723-207.603-462.933-463.36-462.933-0 0-0.001 0-0.001 0l0.001-0zM535.040 113.067c0.188-0 0.411-0.001 0.634-0.001 136.996 0 257.847 69.129 329.572 174.407l0.888 1.381c-36.292-3.801-78.41-5.969-121.033-5.969-83.832 0-165.704 8.386-244.826 24.365l7.885-1.329c-92.345 13.465-164.806 84.481-180.301 174.949l-0.179 1.264c-41.547-61.416-77.937-131.811-105.69-206.409l-2.257-6.924c73.387-94.961 187.252-155.566 315.279-155.733l0.028-0zM682.667 516.693c-0 82.239-66.668 148.907-148.907 148.907s-148.907-66.668-148.907-148.907c0-82.239 66.668-148.907 148.907-148.907h0c82.239 0 148.907 66.668 148.907 148.907h0zM136.107 512c0.295-62.153 14.91-120.823 40.712-172.973l-1.032 2.306c55.514 122.565 123.505 228.13 204.535 322.138l-1.442-1.712h2.56c38.626 40.904 93.077 66.51 153.512 66.986l0.088 0.001c25.649-0.199 50.111-5.034 72.67-13.705l-1.416 0.479c-40.662 72.758-83.024 135.259-130.082 193.826l2.082-2.68c-194.219-29.257-341.507-194.659-342.186-394.595l-0-0.072zM559.787 910.080c67.139-89.508 124.6-192.006 167.609-301.754l3.058-8.859c10.679-24.409 16.945-52.843 17.067-82.728l0-0.046c-0.459-67.134-31.856-126.842-80.631-165.639l-0.436-0.335c22.174-1.018 48.175-1.597 74.31-1.597 56.913 0 113.183 2.749 168.686 8.122l-7.050-0.552c20.224 45.781 31.997 99.169 32 155.306l0 0.001c-0.28 211.636-165.139 384.678-373.445 398.020l-1.169 0.060z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chrome"]},"attrs":[{}],"properties":{"order":6553,"id":411,"name":"chrome","prevSize":32,"code":59809},"setIdx":0,"setId":0,"iconIdx":161},{"icon":{"paths":["M512 357.973c20.736 0 37.547 16.81 37.547 37.547s-16.81 37.547-37.547 37.547c-20.736 0-37.547-16.81-37.547-37.547h0c-0.002-0.128-0.002-0.278-0.002-0.429 0-20.501 16.619-37.12 37.12-37.12 0.151 0 0.302 0.001 0.452 0.003l-0.023-0zM512 293.973c-56.083 0-101.547 45.464-101.547 101.547s45.464 101.547 101.547 101.547c56.083 0 101.547-45.464 101.547-101.547v-0c0-56.083-45.464-101.547-101.547-101.547v0zM570.453 612.693c17.083-4.494 31.287-9.306 45.062-14.948l-2.396 0.868c11.363-5.079 19.138-16.282 19.138-29.301 0-4.848-1.078-9.444-3.007-13.561l0.083 0.196c-4.92-11.428-16.084-19.284-29.084-19.284-4.937 0-9.609 1.133-13.771 3.153l0.188-0.082c-21.279 10.748-46.384 17.043-72.96 17.043s-51.681-6.295-73.907-17.474l0.947 0.432c-4.389-2.365-9.606-3.755-15.147-3.755-11.555 0-21.698 6.043-27.441 15.142l-0.079 0.134c-2.519 4.468-4.002 9.809-4.002 15.496 0 11.411 5.973 21.428 14.963 27.093l0.132 0.078c12.283 7.157 26.492 13.010 41.517 16.82l1.15 0.247-52.48 66.987c-4.396 5.437-7.058 12.434-7.058 20.053 0 17.683 14.335 32.018 32.018 32.018 10.064 0 19.043-4.643 24.913-11.904l0.047-0.061 62.72-78.080 62.72 78.080c5.945 7.172 14.792 11.759 24.715 11.946l0.031 0c0.253 0.008 0.55 0.012 0.849 0.012 7.379 0 14.115-2.755 19.235-7.292l-0.030 0.026c7.438-5.832 12.173-14.818 12.173-24.91 0-7.565-2.661-14.51-7.098-19.947l0.045 0.057zM512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["classmates"]},"attrs":[{}],"properties":{"order":6554,"id":410,"name":"classmates","prevSize":32,"code":59810},"setIdx":0,"setId":0,"iconIdx":162},{"icon":{"paths":["M633.173 928c-0.106 0-0.231 0.001-0.356 0.001-39.466 0-73.32-24.029-87.73-58.255l-0.234-0.626-49.92-117.76c-24.902 15.193-46.064 29.968-66.283 45.885l1.43-1.085c-12.727 9.84-28.911 15.772-46.479 15.772-11.785 0-22.947-2.669-32.914-7.437l0.46 0.198c-25.283-12.418-42.43-37.885-42.666-67.382l-0-0.032v-523.947c-0.002-0.194-0.003-0.424-0.003-0.654 0-41.237 33.429-74.667 74.667-74.667 20.888 0 39.773 8.577 53.324 22.401l0.012 0.012 370.347 370.773c13.619 13.465 22.053 32.148 22.053 52.802 0 8.751-1.514 17.147-4.294 24.943l0.161-0.519c-9.726 26.775-33.348 46.265-61.918 49.881l-0.375 0.039c-34.699 3.84-65.848 9.841-96.076 18.075l4.343-1.008 50.347 119.467c4.861 11.049 7.69 23.93 7.69 37.472 0 39.47-24.033 73.326-58.264 87.734l-0.626 0.234c-10.805 4.846-23.418 7.673-36.691 7.68l-0.003 0zM510.293 672c13.041 0.477 24.148 8.292 29.353 19.42l0.087 0.207 64 151.467c5.228 11.631 16.713 19.584 30.054 19.584 4.551 0 8.886-0.925 12.827-2.598l-0.215 0.081c11.749-4.913 19.854-16.312 19.854-29.605 0-4.731-1.026-9.221-2.869-13.262l0.082 0.2-66.133-150.187c-2.018-3.981-3.201-8.679-3.201-13.653s1.182-9.673 3.281-13.829l-0.081 0.176c3.74-8.121 10.587-14.271 18.977-17.004l0.223-0.063c39.433-13.184 85.931-23.667 133.86-29.516l3.526-0.351c4.152-0.294 7.598-3.023 8.938-6.755l0.022-0.071c0.378-1.048 0.597-2.258 0.597-3.518 0-2.962-1.207-5.642-3.156-7.574l-0.001-0.001-368.64-369.493c-1.981-1.869-4.659-3.018-7.606-3.018-1.568 0-3.060 0.325-4.413 0.912l0.072-0.028c-3.799 1.688-6.4 5.428-6.4 9.776 0 0.013 0 0.026 0 0.039l-0-0.002v523.947c-0.008 0.149-0.012 0.323-0.012 0.499 0 4.113 2.425 7.659 5.922 9.288l0.063 0.026c1.533 1.133 3.46 1.814 5.547 1.814s4.014-0.681 5.572-1.832l-0.026 0.018c30.475-24.039 64.671-46.659 100.699-66.348l3.835-1.919c4.722-3.466 10.649-5.547 17.061-5.547 0.002 0 0.004 0 0.006 0l-0-0zM631.467 213.333l40.533-74.667c2.264-4.277 3.592-9.349 3.592-14.731 0-11.941-6.54-22.354-16.234-27.853l-0.159-0.083c-4.347-2.449-9.544-3.892-15.077-3.892-11.917 0-22.271 6.693-27.508 16.524l-0.082 0.168-42.667 75.093c-2.354 4.312-3.738 9.446-3.738 14.903 0 11.928 6.614 22.311 16.375 27.681l0.163 0.082c4.183 2.422 9.203 3.851 14.557 3.851 0.282 0 0.564-0.004 0.844-0.012l-0.041 0.001c0.336 0.013 0.731 0.020 1.128 0.020 12.218 0 22.837-6.848 28.228-16.915l0.084-0.171zM759.467 364.373l76.373-38.4c10.497-5.411 17.55-16.175 17.55-28.587 0-17.705-14.352-32.057-32.057-32.057-5.293 0-10.286 1.283-14.686 3.554l0.179-0.084-76.373 38.4c-10.534 5.383-17.62 16.158-17.62 28.587 0 17.673 14.327 32 32 32 0.044 0 0.089-0 0.133-0l-0.007 0c5.356-0.615 10.155-2.603 14.155-5.601l-0.075 0.054zM235.947 426.667c0.007-0.254 0.012-0.553 0.012-0.853 0-17.437-14.136-31.573-31.573-31.573-0.004 0-0.008 0-0.012 0l-85.333-0c-0.382-0.016-0.83-0.025-1.28-0.025-17.909 0-32.427 14.518-32.427 32.427 0 0.009 0 0.018 0 0.027l-0-0.001c-0.002 0.128-0.003 0.278-0.003 0.429 0 17.524 14.086 31.758 31.554 31.997l0.023 0h85.333c0.511 0.029 1.109 0.046 1.71 0.046 17.673 0 32-14.327 32-32 0-0.166-0.001-0.332-0.004-0.497l0 0.025zM153.6 686.507l76.373-37.973c10.669-5.218 17.887-15.992 17.887-28.453 0-5.184-1.249-10.076-3.463-14.392l0.083 0.178c-5.361-10.6-16.171-17.741-28.648-17.741-5.102 0-9.925 1.194-14.206 3.318l0.186-0.084-76.373 37.973c-10.535 5.383-17.622 16.158-17.622 28.588 0 17.568 14.158 31.83 31.686 31.998l0.016 0c5.144-0.098 9.974-1.347 14.272-3.5l-0.192 0.087z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["click"]},"attrs":[{}],"properties":{"order":6555,"id":409,"name":"click","prevSize":32,"code":59811},"setIdx":0,"setId":0,"iconIdx":163},{"icon":{"paths":["M844.373 282.027c-15.665-95.961-90.734-170.597-185.622-185.438l-1.258-0.162-288.427-42.667c-10.272-1.666-22.113-2.617-34.175-2.617-111.92 0-204.705 81.925-221.659 189.078l-0.166 1.273-42.667 288.427c-1.497 9.692-2.352 20.873-2.352 32.253 0 70.413 32.738 133.179 83.823 173.908l0.449 0.346c23.496 62.737 73.199 110.903 135.419 131.817l1.541 0.449 276.48 92.16c20.781 7.599 44.774 11.994 69.794 11.994 1.563 0 3.123-0.017 4.678-0.051l-0.232 0.004c0.287 0.001 0.627 0.002 0.967 0.002 98.217 0 181.67-63.213 211.895-151.173l0.471-1.575 92.16-276.907c6.693-20.263 10.553-43.586 10.553-67.812 0-82.201-44.447-154.021-110.618-192.738l-1.055-0.57zM135.253 538.027l42.667-288.427c12.391-76.61 78.052-134.404 157.211-134.404 0.38 0 0.76 0.001 1.14 0.004l-0.058-0c3.506-0.206 7.606-0.323 11.733-0.323s8.227 0.117 12.297 0.348l-0.564-0.026 288.427 42.667c72.852 11.621 128.826 70.944 135.211 144.465l0.042 0.602c0.611 5.503 0.96 11.884 0.96 18.347s-0.349 12.843-1.028 19.125l0.068-0.778-42.667 288.427c-9.652 64.077-56.257 115.121-117.074 131.164l-1.112 0.249h-3.84c-7.832 2.096-17.012 3.614-26.436 4.243l-0.444 0.024c-4.867 0.611-10.499 0.96-16.213 0.96s-11.346-0.349-16.877-1.026l0.664 0.066-288.427-42.667c-13.698-2.361-25.877-5.917-37.44-10.667l1.174 0.427c-12.871-5.28-23.98-11.728-34.055-19.457l0.348 0.257-3.413-2.56c-38.927-29.253-63.839-75.336-63.839-127.238 0-7.794 0.562-15.456 1.647-22.95l-0.102 0.855zM882.347 521.387l-92.16 276.48c-22.047 64.013-81.76 109.182-152.022 109.182-17.958 0-35.227-2.951-51.349-8.394l1.131 0.331-276.48-88.32c-16.306-5.886-30.423-13.678-43.051-23.322l0.384 0.282 282.027 42.667c9.805 1.629 21.103 2.56 32.618 2.56 0.083 0 0.166-0 0.249-0l22.6 0c10.276-0.904 19.591-2.412 28.669-4.535l-1.362 0.268 13.653-3.84c8.533-2.56 17.493-5.973 26.027-9.387l12.8-6.4c9.018-4.641 16.555-9.174 23.778-14.132l-0.738 0.478 12.373-8.96c7.16-5.76 13.557-11.481 19.646-17.513l-0.019 0.019 10.667-10.667c3.413-3.84 10.667-14.080 15.787-21.333s5.973-8.107 8.533-12.373 8.96-17.493 12.8-26.453l5.12-11.947c4.535-12.089 8.39-26.439 10.895-41.248l0.198-1.418 42.667-277.333c26.113 28.44 42.119 66.527 42.119 108.351 0 17.383-2.765 34.121-7.879 49.797l0.32-1.135zM372.907 426.667c0.378 0.004 0.825 0.007 1.273 0.007 65.273 0 118.187-52.914 118.187-118.187s-52.914-118.187-118.187-118.187c-64.82 0-117.453 52.183-118.179 116.831l-0.001 0.069c-0.004 0.382-0.007 0.834-0.007 1.287 0 64.825 52.191 117.46 116.846 118.179l0.068 0.001zM372.907 253.013c29.987 1.403 53.767 26.055 53.767 56.262 0 0.32-0.003 0.64-0.008 0.959l0.001-0.048c0 29.926-24.26 54.187-54.187 54.187v0c-0.001 0-0.001 0-0.002 0-29.691 0-53.76-24.069-53.76-53.76 0-0.15 0.001-0.3 0.002-0.45l-0 0.023v-2.987c0-29.926 24.26-54.187 54.187-54.187v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clipboard"]},"attrs":[{}],"properties":{"order":6556,"id":408,"name":"clipboard","prevSize":32,"code":59812},"setIdx":0,"setId":0,"iconIdx":164},{"icon":{"paths":["M633.173 923.733c-0.097 0.001-0.212 0.002-0.327 0.002-8.732 0-16.625-3.593-22.281-9.382l-0.006-0.006-92.587-92.16c-1.487-1.617-3.612-2.626-5.973-2.626s-4.486 1.009-5.968 2.62l-0.005 0.006-92.587 92.16c-5.741 5.887-13.751 9.539-22.613 9.539s-16.872-3.652-22.607-9.532l-0.006-0.007c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 92.16-92.16c13.299-13.022 31.524-21.058 51.627-21.058s38.328 8.036 51.64 21.071l-0.013-0.013 92.16 92.16c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0zM970.667 519.68c-0.090-76.964-54.506-141.192-126.958-156.404l-1.042-0.183c0.203-2.11 0.318-4.561 0.318-7.040s-0.115-4.93-0.341-7.35l0.023 0.31c-0.242-88.268-71.732-159.758-159.977-160l-0.023-0c-0.051-0-0.112-0-0.173-0-22.122 0-43.182 4.55-62.293 12.766l1.027-0.393c-45.083-59.516-115.805-97.566-195.414-97.566-135.023 0-244.48 109.457-244.48 244.48 0 0.251 0 0.501 0.001 0.751l-0-0.039c0 4.693 0 9.387 0 14.080-73.129 15.746-127.138 79.86-127.138 156.589 0 88.063 71.144 159.509 159.092 159.997l0.046 0h597.333c88.366 0 160-71.634 160-160v0zM216.32 424.107c0.516 0.031 1.12 0.048 1.727 0.048 9.564 0 18.12-4.31 23.834-11.094l0.039-0.047c5.010-5.792 8.063-13.398 8.063-21.718 0-2.586-0.295-5.103-0.853-7.52l0.044 0.224c-2.441-10.984-3.84-23.6-3.84-36.542 0-0.053 0-0.106 0-0.16l-0 0.008c1.203-99.317 81.878-179.393 181.311-179.627l0.022-0c66.887 0.026 125.225 36.607 156.122 90.848l0.464 0.885c4.352 7.579 11.643 13.053 20.279 14.897l0.201 0.036c2.217 0.564 4.762 0.888 7.383 0.888 6.658 0 12.828-2.089 17.89-5.647l-0.099 0.066c15.073-10.311 33.698-16.465 53.76-16.465 52.958 0 95.9 42.881 96 95.815l0 0.009c-0.213 11.836-2.384 23.1-6.202 33.571l0.229-0.718c-1.298 3.322-2.050 7.169-2.050 11.191 0 17.437 14.136 31.573 31.573 31.573 0.872 0 1.735-0.035 2.589-0.105l-0.112 0.007h5.973c53.019 0 96 42.981 96 96s-42.981 96-96 96v0h-597.333c-0.381 0.005-0.83 0.009-1.28 0.009-53.024 0-96.009-42.984-96.009-96.009 0-52.574 42.258-95.278 94.661-95.999l0.068-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-add"]},"attrs":[{}],"properties":{"order":6557,"id":407,"name":"cloud-add","prevSize":32,"code":59813},"setIdx":0,"setId":0,"iconIdx":165},{"icon":{"paths":["M810.667 682.667h-597.333c-0.242 0.001-0.528 0.002-0.814 0.002-88.366 0-160-71.634-160-160 0-77.483 55.077-142.102 128.216-156.843l1.025-0.172c0-4.267 0-8.96 0-13.653-0.003-0.425-0.004-0.928-0.004-1.431 0-135.023 109.457-244.48 244.48-244.48 79.362 0 149.892 37.814 194.555 96.408l0.436 0.597c18.085-7.823 39.145-12.373 61.267-12.373 0.061 0 0.122 0 0.183 0l-0.009-0c88.366-0 160 71.634 160 160v0c0.203 2.046 0.318 4.423 0.318 6.827s-0.116 4.78-0.341 7.125l0.023-0.298c79.33 10.292 139.978 77.435 139.978 158.742 0 88.366-71.634 160-160 160-4.215 0-8.393-0.163-12.526-0.483l0.548 0.034zM210.773 426.667c-47.476 6.294-83.729 46.52-83.729 95.212 0 49.599 37.614 90.413 85.873 95.472l0.415 0.035h597.333c48.043-5.737 84.933-46.24 84.933-95.36s-36.891-89.623-84.477-95.316l-0.456-0.044h-5.973c-0.553 0.034-1.199 0.053-1.849 0.053-17.673 0-32-14.327-32-32 0-3.843 0.678-7.529 1.92-10.943l-0.071 0.223c3.628-9.624 5.803-20.746 5.972-32.353l0.001-0.074c-0.242-52.836-43.13-95.573-95.999-95.573-0 0-0.001 0-0.001 0l-0 0c-0.198-0.002-0.432-0.002-0.666-0.002-19.867 0-38.28 6.229-53.391 16.84l0.297-0.198c-4.963 3.492-11.133 5.581-17.791 5.581-2.621 0-5.166-0.324-7.597-0.933l0.215 0.046c-8.814-2.186-16.050-7.75-20.397-15.206l-0.083-0.154c-31.781-54.794-90.164-91.057-157.017-91.057-99.524 0-180.278 80.367-180.903 179.744l-0 0.060c-0 0.045-0 0.098-0 0.151 0 12.942 1.399 25.558 4.053 37.704l-0.213-1.162c0.337 1.779 0.53 3.826 0.53 5.918 0 8.168-2.942 15.648-7.825 21.439l0.041-0.050c-5.976 6.827-14.707 11.114-24.439 11.114-0.408 0-0.815-0.008-1.219-0.023l0.058 0.002zM491.947 910.507c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-92.16-93.44c-13.275-12.898-31.416-20.85-51.413-20.85s-38.138 7.952-51.431 20.867l0.018-0.017-92.587 92.16c-6.274 5.858-10.185 14.178-10.185 23.412 0 17.673 14.327 32 32 32 9.234 0 17.554-3.911 23.394-10.166l0.017-0.019 91.733-92.16c1.414-1.907 3.658-3.129 6.187-3.129s4.773 1.222 6.172 3.109l0.015 0.021 92.16 92.16c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0zM725.333 896l92.587-92.16c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.741-5.887-13.751-9.539-22.613-9.539s-16.872 3.652-22.607 9.532l-0.006 0.007-90.027 94.72c-1.414 1.907-3.658 3.129-6.187 3.129s-4.773-1.222-6.172-3.109l-0.015-0.021-92.16-92.16c-5.741-5.887-13.751-9.539-22.613-9.539s-16.872 3.652-22.607 9.532l-0.006 0.007c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 91.307 89.6c13.24 13.16 31.479 21.304 51.621 21.333l0.006 0c19.387-0.526 36.795-8.58 49.491-21.331l0.003-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-change"]},"attrs":[{}],"properties":{"order":6558,"id":406,"name":"cloud-change","prevSize":32,"code":59814},"setIdx":0,"setId":0,"iconIdx":166},{"icon":{"paths":["M810.667 679.68h-597.333c-87.815-0.722-158.725-72.078-158.725-159.995 0-76.733 54.016-140.851 126.099-156.401l1.053-0.19c0-4.693 0-9.387 0-14.080-0-0.043-0-0.094-0-0.146 0-135.023 109.457-244.48 244.48-244.48 79.36 0 149.888 37.812 194.551 96.403l0.436 0.596c18.085-7.823 39.145-12.373 61.267-12.373 0.061 0 0.122 0 0.183 0l-0.009-0c88.268 0.242 159.758 71.732 160 159.977l0 0.023c0.203 2.11 0.318 4.561 0.318 7.040s-0.115 4.93-0.341 7.35l0.023-0.31c73.129 15.746 127.138 79.86 127.138 156.589 0 88.063-71.144 159.509-159.092 159.997l-0.046 0zM210.773 423.68c-52.471 0.722-94.729 43.426-94.729 96 0 53.024 42.984 96.009 96.009 96.009 0.45 0 0.899-0.003 1.348-0.009l-0.068 0.001h597.333c53.019 0 96-42.981 96-96s-42.981-96-96-96v0h-5.973c-0.741 0.062-1.605 0.097-2.476 0.097-17.437 0-31.573-14.136-31.573-31.573 0-4.022 0.752-7.868 2.123-11.406l-0.073 0.215c3.589-9.754 5.761-21.017 5.972-32.759l0.001-0.095c-0.1-52.944-43.042-95.825-96-95.825-20.063 0-38.688 6.154-54.090 16.678l0.33-0.213c-4.963 3.492-11.133 5.581-17.791 5.581-2.621 0-5.166-0.324-7.597-0.933l0.215 0.046c-8.837-1.881-16.128-7.355-20.401-14.784l-0.079-0.149c-31.492-54.669-89.603-90.88-156.173-90.88-0.146 0-0.291 0-0.437 0.001l0.023-0c-100.050 0.242-181.091 81.283-181.333 181.31l-0 0.023c0.116 12.454 1.509 24.517 4.053 36.15l-0.213-1.163c0.337 1.779 0.53 3.826 0.53 5.918 0 8.168-2.942 15.648-7.825 21.439l0.041-0.050c-5.752 6.831-14.309 11.141-23.873 11.141-0.608 0-1.211-0.017-1.81-0.052l0.083 0.004zM563.627 902.827l92.16-92.16c5.321-5.699 8.588-13.376 8.588-21.815 0-17.673-14.327-32-32-32-8.44 0-16.116 3.267-21.834 8.606l0.019-0.017-92.587 92.16c-1.487 1.617-3.612 2.626-5.973 2.626s-4.486-1.009-5.968-2.62l-0.005-0.006-92.587-92.587c-5.804-5.751-13.794-9.305-22.613-9.305-17.746 0-32.131 14.386-32.131 32.131 0 8.926 3.64 17.002 9.516 22.824l0.002 0.002 92.16 92.587c13.343 12.924 31.554 20.89 51.627 20.89s38.284-7.966 51.646-20.909l-0.020 0.019z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-download"]},"attrs":[{}],"properties":{"order":6559,"id":405,"name":"cloud-download","prevSize":32,"code":59815},"setIdx":0,"setId":0,"iconIdx":167},{"icon":{"paths":["M810.667 800h-597.333c-0.242 0.001-0.528 0.002-0.814 0.002-88.366 0-160-71.634-160-160 0-77.483 55.077-142.102 128.216-156.843l1.025-0.172c0-4.267 0-8.96 0-13.653-0-0.043-0-0.094-0-0.146 0-135.023 109.457-244.48 244.48-244.48 79.36 0 149.888 37.812 194.551 96.403l0.436 0.596c18.15-7.757 39.268-12.267 61.44-12.267 88.328 0 159.939 71.574 160 159.887l0 0.006c0.203 2.046 0.318 4.423 0.318 6.827s-0.116 4.78-0.341 7.125l0.023-0.298c74.171 14.908 129.255 79.53 129.255 157.018 0 88.366-71.634 160-160 160-0.441 0-0.882-0.002-1.322-0.005l0.067 0zM213.333 544c-53.019 0-96 42.981-96 96s42.981 96 96 96v0h597.333c53.019 0 96-42.981 96-96s-42.981-96-96-96v0h-5.973c-0.553 0.034-1.199 0.053-1.849 0.053-17.673 0-32-14.327-32-32 0-3.843 0.678-7.529 1.92-10.943l-0.071 0.223c3.628-9.624 5.803-20.746 5.972-32.353l0.001-0.074c-0.242-52.836-43.13-95.573-95.999-95.573-0 0-0.001 0-0.001 0l-0 0c-0.198-0.002-0.432-0.002-0.666-0.002-19.867 0-38.28 6.229-53.391 16.84l0.297-0.198c-4.963 3.492-11.133 5.581-17.791 5.581-2.621 0-5.166-0.324-7.597-0.933l0.215 0.046c-8.814-2.186-16.050-7.75-20.397-15.206l-0.083-0.154c-31.782-54.791-90.163-91.051-157.013-91.051-99.912 0-180.907 80.995-180.907 180.907 0 0.060 0 0.12 0 0.18l-0-0.009c-0 0.045-0 0.098-0 0.151 0 12.942 1.399 25.558 4.053 37.704l-0.213-1.162c0.337 1.779 0.53 3.826 0.53 5.918 0 8.168-2.942 15.648-7.825 21.439l0.041-0.050c-5.976 6.827-14.707 11.114-24.439 11.114-0.408 0-0.815-0.008-1.219-0.023l0.058 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud"]},"attrs":[{}],"properties":{"order":6560,"id":404,"name":"cloud","prevSize":32,"code":59816},"setIdx":0,"setId":0,"iconIdx":168},{"icon":{"paths":["M713.387 53.333h-402.773c-141.385 0-256 114.615-256 256v0 402.773c0 141.385 114.615 256 256 256v0h402.773c141.385 0 256-114.615 256-256v0-401.493c0.002-0.38 0.003-0.83 0.003-1.28 0-141.385-114.615-256-256-256-0.001 0-0.002 0-0.003 0l0-0zM713.387 117.333c0.145-0 0.316-0.001 0.488-0.001 13.57 0 26.813 1.398 39.593 4.059l-1.254-0.218 14.080 4.267c9.119 2.465 16.503 4.942 23.705 7.781l-1.519-0.528c6.119 2.722 11.3 5.572 16.214 8.797l-0.427-0.263c5.547 2.987 11.52 5.547 17.067 8.96l14.933 12.373c4.267 3.84 9.387 7.253 13.653 11.52s8.107 9.813 12.373 14.933c3.752 4.018 7.385 8.328 10.795 12.817l0.298 0.409c3.413 5.547 5.973 11.093 8.96 16.64s6.4 10.667 8.96 16.213 3.413 11.52 5.12 17.067c2.129 5.227 4.178 11.635 5.773 18.22l0.2 0.98c0 5.547 0 11.52 2.133 17.493 1.072 6.068 1.836 13.269 2.124 20.592l0.010 0.314h-789.333c-0.201-3.125-0.315-6.776-0.315-10.453s0.114-7.328 0.34-10.949l-0.025 0.496c0-5.547 0-11.947 0-17.493s3.84-12.373 5.973-18.347c1.716-7.124 3.618-13.104 5.884-18.901l-0.338 0.981c2.696-5.634 5.254-10.247 8.042-14.701l-0.362 0.621c3.413-6.4 6.4-12.8 10.24-18.773l8.533-10.24c4.985-6.837 9.881-12.816 15.083-18.513l-0.149 0.166 13.227-7.253c5.846-5.529 12.104-10.84 18.639-15.805l0.561-0.409 10.667-5.973c5.949-3.692 13.084-7.535 20.448-10.97l1.312-0.55c5.547-2.56 11.093-3.413 16.64-5.547s12.8-4.693 19.627-5.973c11.526-2.442 24.769-3.841 38.339-3.841 0.171 0 0.343 0 0.514 0.001l-0.026-0zM713.387 906.667h-402.773c-106.746 0-193.28-86.534-193.28-193.28v0-341.333h789.333v341.333c0 106.746-86.534 193.28-193.28 193.28v0zM381.013 757.76c-8.801-0.197-16.738-3.738-22.624-9.397l0.011 0.011-85.333-85.333c-6.051-5.763-9.814-13.881-9.814-22.878 0-0.057 0-0.114 0-0.171l-0 0.009c0.382-8.979 4.051-17.033 9.825-23.052l-0.012 0.012 85.333-81.92c5.887-8.010 15.273-13.151 25.859-13.151 17.673 0 32 14.327 32 32 0 11.451-6.015 21.498-15.058 27.152l-0.134 0.078-59.733 58.88 62.293 61.013c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.574 6.478-13.53 10.771-22.493 11.512l-0.12 0.008zM642.987 757.76c-9.019-0.157-17.14-3.879-23.038-9.812l-0.002-0.002c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 62.72-62.72-61.867-59.307c-3.837-5.214-6.141-11.763-6.141-18.849 0-17.673 14.327-32 32-32 6.222 0 12.029 1.776 16.942 4.848l-0.134-0.078 85.333 81.92c5.763 6.007 9.431 14.061 9.811 22.967l0.002 0.073c0 0.048 0 0.105 0 0.162 0 8.997-3.763 17.115-9.801 22.866l-0.013 0.012-85.333 85.333c-5.313 5.366-12.413 8.954-20.332 9.801l-0.148 0.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["code"]},"attrs":[{}],"properties":{"order":6561,"id":403,"name":"code","prevSize":32,"code":59817},"setIdx":0,"setId":0,"iconIdx":169},{"icon":{"paths":["M956.16 616.107c-0.234-97.412-71.862-178.024-165.317-192.291l-1.083-0.136c-10.632-72.801-57.799-132.566-121.976-160.759l-1.331-0.521c-23.459-10.251-50.794-16.216-79.523-16.216-0.393 0-0.785 0.001-1.178 0.003l0.061-0h-311.040c-0.332-0.002-0.724-0.003-1.117-0.003-28.729 0-56.064 5.965-80.836 16.724l1.313-0.508c-75.537 31.643-127.697 104.839-128 190.255l-0 0.038v311.467c0.243 114.102 92.797 206.507 206.933 206.507 0 0 0-0 0-0l311.040-0c0.461 0.004 1.006 0.006 1.551 0.006 97.642 0 179.489-67.627 201.258-158.597l0.285-1.409c95.944-13.479 168.962-95.020 168.962-193.615 0-0.332-0.001-0.664-0.002-0.996l0 0.051zM245.76 312.747c8.561-1.629 18.409-2.561 28.474-2.561 0.19 0 0.379 0 0.569 0.001l-0.029-0h311.040c0.071-0 0.155-0 0.238-0 10.17 0 20.123 0.932 29.778 2.714l-1.003-0.154c65.407 14.081 113.743 71.344 113.92 139.927l0 0.020v34.133h-597.333v-34.133c0.221-68.719 48.758-126.038 113.409-139.78l0.938-0.167zM587.093 906.667h-312.32c-0 0-0 0-0.001 0-78.79 0-142.69-63.75-142.933-142.483l-0-0.023v-213.333h597.333v213.333c0.083 0.831 0.131 1.797 0.131 2.773s-0.048 1.942-0.14 2.894l0.010-0.121v6.827c-6.352 73.163-67.311 130.145-141.578 130.145-0.627 0-1.252-0.004-1.877-0.012l0.095 0.001zM794.027 744.533v-256c57.371 15.3 98.943 66.795 98.943 128s-41.572 112.7-98.019 127.79l-0.924 0.21zM430.080 201.387c-0.008 0-0.017 0-0.026 0-17.223 0-31.268-13.606-31.972-30.656l-0.002-0.064v-85.333c0-17.673 14.327-32 32-32s32 14.327 32 32v0 85.333c-0.474 17.068-14.423 30.723-31.562 30.723-0.154 0-0.308-0.001-0.461-0.003l0.023 0zM263.253 201.387c-0.008 0-0.017 0-0.026 0-17.223 0-31.268-13.606-31.972-30.656l-0.002-0.064v-85.333c0-17.673 14.327-32 32-32s32 14.327 32 32v0 85.333c-0.474 17.068-14.423 30.723-31.562 30.723-0.154 0-0.308-0.001-0.461-0.003l0.023 0zM599.040 205.653c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-85.333c0-17.673 14.327-32 32-32s32 14.327 32 32v0 85.333c0 0.014 0 0.030 0 0.046 0 17.673-14.327 32-32 32-0.6 0-1.197-0.017-1.789-0.049l0.082 0.004z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["coffee"]},"attrs":[{}],"properties":{"order":6562,"id":402,"name":"coffee","prevSize":32,"code":59818},"setIdx":0,"setId":0,"iconIdx":170},{"icon":{"paths":["M847.787 565.333h-102.4l72.533-72.533c22.097-22.277 35.753-52.957 35.753-86.827s-13.655-64.549-35.761-86.835l0.008 0.008-113.067-113.067c-22.277-22.097-52.957-35.753-86.827-35.753s-64.549 13.655-86.835 35.761l0.008-0.008-72.533 72.533v-102.4c0-67.865-55.015-122.88-122.88-122.88h-159.573c-67.865 0-122.88 55.015-122.88 122.88v0 591.787c0 111.93 90.737 202.667 202.667 202.667v0h591.787c67.865 0 122.88-55.015 122.88-122.88v0-159.573c0-67.865-55.015-122.88-122.88-122.88v0zM458.667 369.067l117.76-117.333c10.748-11.286 25.888-18.304 42.667-18.304s31.919 7.019 42.644 18.28l0.023 0.024 110.507 112.64c11.286 10.748 18.304 25.888 18.304 42.667s-7.019 31.919-18.28 42.644l-0.024 0.023-117.333 117.76-196.267 196.267zM394.667 768c0.005 0.438 0.008 0.955 0.008 1.473 0 56.031-33.232 104.3-81.062 126.173l-0.866 0.355h-2.987c-5.604 2.219-12.583 4.415-19.738 6.159l-1.168 0.241c-0.768 0.093-1.658 0.145-2.56 0.145s-1.792-0.053-2.666-0.156l0.106 0.010c-7.998 1.902-17.18 2.992-26.617 2.992-0.393 0-0.785-0.002-1.176-0.006l0.060 0c-76.040-0.235-137.706-61.451-138.666-137.296l-0.001-0.091v-591.787c0-32.519 26.361-58.88 58.88-58.88v0h159.573c32.519 0 58.88 26.361 58.88 58.88v0zM906.667 847.787c0 32.519-26.361 58.88-58.88 58.88v0h-443.733l277.333-277.333h166.4c32.519 0 58.88 26.361 58.88 58.88v0z","M256 858.453c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333v0c0 47.128-38.205 85.333-85.333 85.333v0zM256 749.227c-12.489 0-22.613 10.124-22.613 22.613s10.124 22.613 22.613 22.613c12.489 0 22.613-10.124 22.613-22.613v0c0-12.489-10.124-22.613-22.613-22.613v0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["color-swatch"]},"attrs":[{},{}],"properties":{"order":6563,"id":401,"name":"color-swatch","prevSize":32,"code":59819},"setIdx":0,"setId":0,"iconIdx":171},{"icon":{"paths":["M725.333 55.040h-424.533c-135.73 0-245.76 110.030-245.76 245.76v0 424.533c-0 135.73 110.030 245.76 245.76 245.76h424.533c134.809-1.208 243.627-110.771 243.627-245.751 0-0.003-0-0.007-0-0.010l0 0.001v-424.533c0-0.003 0-0.006 0-0.009 0-134.979-108.818-244.543-243.512-245.75l-0.115-0.001zM904.96 725.333c-1.189 98.723-80.903 178.438-179.514 179.626l-0.113 0.001h-424.533c-0.004 0-0.008 0-0.013 0-99.633 0-180.543-80.165-181.746-179.513l-0.001-0.114v-424.533c0-100.383 81.377-181.76 181.76-181.76v0h424.533c100.383-0 181.76 81.377 181.76 181.76v0zM695.467 448.853c2.442-11.012 3.841-23.66 3.841-36.634 0-0.171-0-0.341-0.001-0.512l0 0.026c0-102.504-83.096-185.6-185.6-185.6s-185.6 83.096-185.6 185.6v0c-0 0.144-0.001 0.315-0.001 0.486 0 12.975 1.399 25.623 4.054 37.801l-0.213-1.167c-63.506 30.265-106.611 93.939-106.611 167.682 0 102.268 82.905 185.173 185.173 185.173 0.281 0 0.561-0.001 0.841-0.002l-0.043 0c0.221 0.001 0.483 0.002 0.744 0.002 38.28 0 73.802-11.806 103.125-31.975l-0.616 0.4c28.421 19.661 63.595 31.451 101.516 31.573l0.031 0c0.237 0.001 0.517 0.002 0.798 0.002 102.268 0 185.173-82.905 185.173-185.173 0-73.742-43.105-137.417-105.494-167.201l-1.117-0.48zM512 290.133c0.507-0.008 1.107-0.012 1.707-0.012 67.158 0 121.6 54.442 121.6 121.6s-54.442 121.6-121.6 121.6c-67.154 0-121.593-54.435-121.6-121.587l-0-0.001c-0-0.004-0-0.008-0-0.012 0-66.558 53.474-120.626 119.803-121.587l0.090-0.001zM289.707 616.107c0.002-46.832 26.572-87.458 65.459-107.629l0.674-0.318c32.77 53.099 90.261 88.195 156.018 89.172l0.142 0.002c6.418-0.324 12.423-1.086 18.277-2.265l-0.784 0.132c0.303 3.133 0.475 6.773 0.475 10.453s-0.173 7.32-0.51 10.913l0.035-0.459c0 0.065 0 0.143 0 0.221 0 8.835-0.932 17.452-2.704 25.758l0.144-0.805v3.413c-1.781 7.923-3.982 14.763-6.712 21.327l0.312-0.847c-7.282 15.739-17.204 29.074-29.332 40.011l-0.108 0.096c-21.285 19.536-49.771 31.525-81.057 31.573l-0.010 0c-66.214-0.952-119.61-54.497-120.319-120.679l-0.001-0.068zM616.107 737.707c-0.258 0.002-0.563 0.003-0.869 0.003-19.557 0-38.048-4.569-54.462-12.698l0.717 0.321c3.84-5.547 6.827-11.093 10.24-17.067l6.4-11.52 6.4-15.787c0-5.547 3.84-11.52 5.547-17.067s2.133-8.96 2.987-13.227c2.432-10.579 3.826-22.727 3.826-35.2s-1.394-24.621-4.034-36.296l0.208 1.096c33.017-15.903 59.86-40.143 78.475-70.037l0.458-0.79c39.289 20.69 65.619 61.244 65.619 107.948 0 66.977-54.149 121.307-121.058 121.599l-0.028 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["colors-square"]},"attrs":[{}],"properties":{"order":6564,"id":400,"name":"colors-square","prevSize":32,"code":59820},"setIdx":0,"setId":0,"iconIdx":172},{"icon":{"paths":["M676.267 247.467l-309.76 119.040-119.040 309.76c-3.365 8.347-5.317 18.026-5.317 28.16 0 42.651 34.576 77.227 77.227 77.227 0.069 0 0.139-0 0.208-0l-0.011 0c10.118-0.005 19.797-1.883 28.709-5.305l-0.549 0.185 309.76-119.040 119.040-309.76c3.242-8.231 5.122-17.764 5.122-27.735 0-42.887-34.767-77.653-77.653-77.653-9.972 0-19.505 1.88-28.264 5.304l0.528-0.182zM325.12 716.8c-1.549 0.662-3.352 1.047-5.244 1.047-3.788 0-7.215-1.542-9.688-4.033l-0.001-0.001c-2.412-2.583-3.892-6.063-3.892-9.888 0-1.812 0.332-3.546 0.939-5.145l-0.033 0.1 96.427-250.027 170.667 170.667zM716.8 324.693l-96.427 250.453-170.667-170.667 249.6-97.28c1.491-0.632 3.224-0.999 5.043-0.999 3.708 0 7.059 1.526 9.461 3.983l0.002 0.003c2.381 2.516 3.844 5.921 3.844 9.668 0 1.737-0.314 3.4-0.889 4.936l0.032-0.097zM512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c-0.243-253.217-205.45-458.424-458.644-458.667l-0.023-0zM512 906.667c-217.968 0-394.667-176.698-394.667-394.667s176.698-394.667 394.667-394.667c217.968 0 394.667 176.698 394.667 394.667v0c-0.243 217.87-176.796 394.424-394.643 394.667l-0.024 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["compass"]},"attrs":[{}],"properties":{"order":6565,"id":399,"name":"compass","prevSize":32,"code":59821},"setIdx":0,"setId":0,"iconIdx":173},{"icon":{"paths":["M825.173 708.267c-0.095 0.001-0.208 0.002-0.321 0.002-14.4 0-26.548-9.64-30.344-22.819l-0.055-0.223c-0.812-2.683-1.28-5.767-1.28-8.96 0-14.48 9.618-26.714 22.813-30.662l0.227-0.058c52.664-15.504 90.453-63.41 90.453-120.141 0-0.063-0-0.126-0-0.188l0 0.010v-282.88c0-69.043-55.97-125.013-125.013-125.013v0h-282.88c-51.288 0.284-95.261 31.303-114.46 75.562l-0.313 0.811c-4.757 12.090-16.331 20.491-29.867 20.491-17.679 0-32.011-14.332-32.011-32.011 0-4.143 0.787-8.103 2.22-11.737l-0.075 0.217c29.409-68.513 96.295-115.627 174.185-115.627 0.113 0 0.226 0 0.339 0l-0.018-0h282.88c104.292 0.242 188.771 84.722 189.013 188.99l0 0.023v282.88c-0.372 85.846-57.403 158.271-135.61 181.837l-1.35 0.35c-0.383 0.017-0.832 0.027-1.283 0.027-2.574 0-5.074-0.321-7.46-0.925l0.209 0.045zM714.667 781.653v-282.88c0-104.625-84.815-189.44-189.44-189.44v0h-282.88c-104.441 0.243-189.013 84.965-189.013 189.44 0 0 0 0 0 0l0 0v282.88c0.242 104.292 84.722 188.771 188.99 189.013l0.023 0h282.88c0 0 0 0 0 0 104.475 0 189.197-84.572 189.439-188.99l0-0.023zM525.227 373.333c69.279-0 125.44 56.161 125.44 125.44l-0 0v282.88c-0.243 69.095-56.311 125.013-125.439 125.013-0 0-0-0-0.001-0l-282.88-0c-69.043 0-125.013-55.97-125.013-125.013v0-282.88c-0-0-0-0-0-0.001 0-69.129 55.918-125.197 124.99-125.439l0.023-0zM547.84 531.627c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0-135.253 129.707-52.907-54.187c-5.063-3.514-11.338-5.614-18.104-5.614-17.673 0-32 14.327-32 32 0 6.005 1.654 11.624 4.532 16.426l-0.081-0.145 75.093 76.8c5.835 5.682 13.815 9.186 22.613 9.186s16.778-3.504 22.62-9.193l-0.007 0.007 157.867-152.32c5.319-5.698 8.584-13.373 8.584-21.81 0-7.987-2.926-15.291-7.765-20.898l0.035 0.041z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy-success"]},"attrs":[{}],"properties":{"order":6566,"id":398,"name":"copy-success","prevSize":32,"code":59822},"setIdx":0,"setId":0,"iconIdx":174},{"icon":{"paths":["M525.227 970.667h-282.88c-104.292-0.242-188.771-84.722-189.013-188.99l-0-0.023v-282.88c-0-0-0-0-0-0 0-104.475 84.572-189.197 188.99-189.439l0.023-0h282.88c104.625 0 189.44 84.815 189.44 189.44v0 282.88c-0.243 104.441-84.965 189.013-189.44 189.013-0 0-0-0-0-0l-0-0zM242.347 373.333c-69.095 0.243-125.013 56.311-125.013 125.439 0 0 0 0 0 0.001l0 0v282.88c0 69.043 55.97 125.013 125.013 125.013v0h282.88c0 0 0 0 0.001 0 69.129 0 125.197-55.918 125.439-124.99l0-0.023v-282.88c0-69.279-56.161-125.44-125.44-125.44v0zM834.133 706.987c79.485-23.658 136.467-96.045 136.533-181.752l0-0.008v-282.88c-0.242-104.292-84.722-188.771-188.99-189.013l-0.023-0h-282.88c-0.308-0.002-0.672-0.003-1.036-0.003-82.468 0-152.573 52.934-178.19 126.679l-0.4 1.324c-1.557 3.636-2.462 7.867-2.462 12.309 0 17.673 14.327 32 32 32 14.923 0 27.46-10.215 31.001-24.034l0.048-0.222c17.106-50.015 63.703-85.334 118.549-85.334 0.173 0 0.345 0 0.518 0.001l-0.027-0h282.88c69.043 0 125.013 55.97 125.013 125.013v0 282.88c-0.935 56.464-38.289 103.958-89.547 120.074l-0.907 0.246c-13.422 4.006-23.040 16.24-23.040 30.72 0 17.673 14.327 32 32 32 3.193 0 6.277-0.468 9.187-1.338l-0.227 0.058z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy"]},"attrs":[{}],"properties":{"order":6567,"id":397,"name":"copy","prevSize":32,"code":59823},"setIdx":0,"setId":0,"iconIdx":175},{"icon":{"paths":["M919.893 280.747h-81.067c-40.766 0-73.813 33.047-73.813 73.813v0 72.107h-14.080l-22.187-85.333c-3.15-11.943-8.445-22.361-15.499-31.33l0.139 0.183c0-2.56-4.267-4.693-5.973-6.827 37.527-20.243 62.62-59.233 62.72-104.093l0-0.014v-2.133h29.013c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-31.147c-11.686-53.949-59.011-93.773-115.638-93.773-65.273 0-118.187 52.914-118.187 118.187 0 0.567 0.004 1.134 0.012 1.699l-0.001-0.086v42.667c0.109 10.972 1.66 21.535 4.471 31.573l-0.204-0.853c-25.148 7.034-45.694 23.273-58.205 44.765l-0.248 0.462-128 227.84-53.333 49.067-242.347 242.773c-16.602 16.276-26.893 38.936-26.893 64s10.291 47.724 26.878 63.986l0.015 0.014c16.465 16.19 39.065 26.184 64 26.184s47.535-9.995 64.013-26.197l-0.013 0.013 233.813-236.8 33.28 25.173-102.4 102.4c-16.709 16.226-27.078 38.902-27.078 64s10.369 47.774 27.056 63.979l0.022 0.021c16.174 16.818 38.867 27.265 64 27.265s47.826-10.447 63.972-27.236l0.028-0.029 172.8-176.213c16.281-16.114 26.384-38.444 26.453-63.134l0-0.013c0.014-0.589 0.022-1.284 0.022-1.98 0-24.633-10.133-46.899-26.459-62.858l-0.017-0.016-37.12-37.12 11.947-21.333 10.24 7.68 4.267 2.987h4.267c2.923 1.64 6.316 3.090 9.871 4.17l0.369 0.096 10.667 3.413h4.267c2.949 0.448 6.351 0.705 9.813 0.705s6.865-0.256 10.189-0.75l-0.376 0.046h149.76c0.3 0.004 0.655 0.006 1.010 0.006 38.861 0 71.916-24.858 84.132-59.541l0.192-0.624c38.057-1.982 68.418-32.343 70.392-70.218l0.008-0.182v-114.773c0-40.766-33.047-73.813-73.813-73.813v0zM706.56 200.107c0.136 1.445 0.213 3.125 0.213 4.822 0 30.162-24.451 54.613-54.613 54.613s-54.613-24.451-54.613-54.613c0-1.698 0.077-3.377 0.229-5.036l-0.016 0.213v-2.987h108.8zM651.52 104.96c20.178 0.132 37.703 11.359 46.793 27.882l0.14 0.278h-93.867c9.297-16.739 26.782-27.932 46.901-28.16l0.032-0zM837.12 540.16h-154.453l-10.667-2.987c-2.784-1.814-5.172-3.931-7.213-6.351l-0.040-0.049c-2.711-3.843-4.543-8.49-5.108-13.519l-0.012-0.134-2.133-7.68c-3.365-12.647-14.069-22.056-27.168-23.455l-0.138-0.012c-1.225-0.168-2.641-0.265-4.079-0.265-11.732 0-21.97 6.399-27.413 15.897l-0.081 0.154-45.653 81.067c-2.486 2.209-4.723 4.581-6.738 7.137l-0.089 0.117c-3.416 4.97-5.456 11.118-5.456 17.742 0 8.953 3.726 17.035 9.712 22.781l0.011 0.010 55.893 56.32c4.231 4.553 6.827 10.676 6.827 17.405 0 0.031-0 0.062-0 0.093l0-0.005c0 7.046-2.945 13.404-7.67 17.911l-0.010 0.009-175.36 173.653c-4.614 4.525-10.941 7.318-17.92 7.318s-13.306-2.793-17.924-7.322l0.004 0.004c-4.735-4.516-7.68-10.874-7.68-17.92s2.945-13.404 7.67-17.911l0.010-0.009 128-128c5.79-5.791 9.371-13.79 9.371-22.625 0-10.426-4.986-19.687-12.704-25.53l-0.080-0.058-85.333-64c-5.068-4.248-11.659-6.829-18.853-6.829-0.122 0-0.244 0.001-0.365 0.002l0.019-0c-8.817 0.106-16.781 3.668-22.619 9.392l0.005-0.005-256 256c-4.614 4.525-10.941 7.318-17.92 7.318s-13.306-2.793-17.924-7.322l0.004 0.004c-4.525-4.614-7.318-10.941-7.318-17.92s2.793-13.306 7.322-17.924l-0.004 0.004 245.333-245.333h2.133l50.773-51.2c2.031-2.030 3.858-4.264 5.448-6.668l0.099-0.159 128-231.68c4.911-8.104 13.214-13.73 22.889-14.918l0.151-0.015c2.472-0.716 5.311-1.127 8.246-1.127 5.948 0 11.5 1.69 16.204 4.616l-0.13-0.076 73.387 42.667c4.451 2.942 8.151 6.642 11.005 10.951l0.089 0.143c2.226 2.593 3.864 5.757 4.665 9.24l0.028 0.146 28.587 106.667c3.864 13.836 16.33 23.829 31.139 23.893l0.007 0h110.507c0.991-0.136 2.135-0.213 3.298-0.213 14.138 0 25.6 11.462 25.6 25.6s-11.462 25.6-25.6 25.6c-1.163 0-2.308-0.078-3.429-0.228l0.131 0.014zM929.707 469.333c0.006 0.127 0.009 0.277 0.009 0.427 0 5.42-4.394 9.813-9.813 9.813-0.003 0-0.007-0-0.010-0l0.001 0c-14.244-31.44-45.349-52.916-81.47-52.916-0.458 0-0.916 0.003-1.373 0.010l0.069-0.001h-8.107v-72.107c0-5.42 4.394-9.813 9.813-9.813v0h81.067c5.42 0 9.813 4.394 9.813 9.813v0zM91.733 353.707c-0-0.001-0-0.002-0-0.003 0-17.523 14.085-31.757 31.551-31.997l0.023-0 260.693-1.707c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-260.267c-0.014 0-0.030 0-0.046 0-17.073 0-31.023-13.37-31.951-30.211l-0.004-0.082zM223.147 225.707c-0.002-0.135-0.003-0.294-0.003-0.453 0-17.437 14.136-31.573 31.573-31.573 0.451 0 0.9 0.009 1.347 0.028l-0.064-0.002h128c14.244 3.441 24.659 16.078 24.659 31.147s-10.416 27.705-24.441 31.102l-0.219 0.045h-128c-0.275 0.008-0.599 0.013-0.924 0.013-16.927 0-30.785-13.143-31.924-29.781l-0.005-0.099z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["courier-express"]},"attrs":[{}],"properties":{"order":6568,"id":396,"name":"courier-express","prevSize":32,"code":59824},"setIdx":0,"setId":0,"iconIdx":176},{"icon":{"paths":["M642.133 420.693v0h-71.68l-31.147-79.36c-2.006-26.661-14.43-50.082-33.166-66.462l-0.114-0.098c18.414-20.525 29.72-47.755 29.867-77.623l0-0.030v-3.413h28.587c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-31.573c-12.472-53.177-59.496-92.167-115.627-92.167-65.361 0-118.374 52.866-118.613 118.171l-0 0.023v42.667c0.161 27.824 10.124 53.29 26.607 73.15l-0.154-0.19c-24.138 17.634-39.649 45.829-39.68 77.648l-0 0.005v243.2s0 2.133 0 2.987v125.867c-0.014 18.997-4.097 37.038-11.424 53.301l0.331-0.821-39.68 87.467c-4.251 9.356-6.729 20.289-6.729 31.801 0 31.567 18.631 58.783 45.498 71.251l0.485 0.202c9.504 4.468 20.641 7.076 32.387 7.076 31.386 0 58.424-18.621 70.667-45.418l0.199-0.485 49.493-107.093c8.311-17.939 14.067-38.767 16.154-60.665l0.060-0.775c5.951 13.745 9.413 29.752 9.413 46.567 0 0.879-0.009 1.756-0.028 2.63l0.002-0.13v85.333c-0.001 0.127-0.001 0.277-0.001 0.428 0 42.973 34.715 77.837 77.632 78.079l0.023 0c42.877-0.238 77.6-34.811 78.080-77.608l0-0.046v-110.080c0.007-0.618 0.011-1.348 0.011-2.079 0-34.921-9.513-67.621-26.090-95.648l0.478 0.874-42.667-71.68v-36.693h102.4c43.122 0 78.080-34.958 78.080-78.080s-34.958-78.080-78.080-78.080v0zM471.467 196.693c0 30.162-24.451 54.613-54.613 54.613s-54.613-24.451-54.613-54.613h0v-2.987h109.227zM417.28 101.547c20.178 0.132 37.703 11.359 46.793 27.882l0.14 0.278h-93.867c9.231-16.801 26.756-28.028 46.915-28.16l0.018-0zM642.133 512h-134.4c-17.673 0-32 14.327-32 32v0 77.227c-0.003 0.153-0.004 0.334-0.004 0.514 0 5.645 1.589 10.92 4.344 15.4l-0.073-0.128 45.653 79.36c10.731 18.325 17.068 40.353 17.068 63.86 0 0.199-0 0.398-0.001 0.598l0-0.031v110.933c0 7.776-6.304 14.080-14.080 14.080v0 0c-0.129 0.004-0.281 0.007-0.434 0.007-7.541 0-13.653-6.113-13.653-13.653 0-0.152 0.002-0.304 0.007-0.456l-0.001 0.022v-85.333c0.005-0.527 0.008-1.15 0.008-1.773 0-34.881-9.513-67.54-26.085-95.524l0.477 0.87-51.2-89.173c-5.806-9.435-16.029-15.662-27.715-15.787l-0.018-0h-8.533c-13.641 3.864-23.468 16.205-23.468 30.842 0 0.107 0.001 0.214 0.002 0.321l-0-0.016v102.827c0 0.019 0 0.041 0 0.062 0 19.018-4.247 37.043-11.843 53.181l0.323-0.763-48.213 104.533c-1.372 3.552-4.128 6.308-7.59 7.649l-0.090 0.031c-1.585 0.605-3.418 0.956-5.333 0.956s-3.748-0.35-5.439-0.991l0.106 0.035c-5.054-2.212-8.52-7.169-8.52-12.936 0-2.116 0.467-4.124 1.303-5.924l-0.036 0.087 39.253-87.467c10.778-22.865 17.069-49.666 17.069-77.935 0-0.351-0.001-0.702-0.003-1.052l0 0.054v-121.173c0.084-0.449 0.132-0.966 0.132-1.493s-0.048-1.044-0.14-1.546l0.008 0.052v-247.040c-0.002-0.128-0.003-0.279-0.003-0.43 0-17.437 14.136-31.573 31.573-31.573 0.151 0 0.302 0.001 0.452 0.003l-0.023-0h62.72c17.673 0 32 14.327 32 32v0c-0.282 1.667-0.442 3.588-0.442 5.547s0.161 3.879 0.47 5.75l-0.028-0.203 40.107 107.52c5.116 12.233 16.904 20.711 30.695 20.906l0.025 0 93.867-2.133c7.776 0 14.080 6.304 14.080 14.080s-6.304 14.080-14.080 14.080v0zM789.76 170.667h-119.893c-39.535 0.921-71.373 32.61-72.531 71.998l-0.003 0.108v80.64c-0 0.006-0 0.013-0 0.020 0 40.402 32.273 73.265 72.445 74.219l0.089 0.002h119.893c41.002-0 74.24-33.238 74.24-74.24h0v-80.64c-1.188-40.073-33.958-72.107-74.209-72.107-0.011 0-0.022 0-0.032 0l0.002-0zM800 325.547c0 5.655-4.585 10.24-10.24 10.24v0h-119.893c-5.655 0-10.24-4.585-10.24-10.24v0-82.773c0-5.655 4.585-10.24 10.24-10.24h119.893c5.655 0 10.24 4.585 10.24 10.24h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["courier"]},"attrs":[{}],"properties":{"order":6569,"id":395,"name":"courier","prevSize":32,"code":59825},"setIdx":0,"setId":0,"iconIdx":177},{"icon":{"paths":["M767.181 204.8h-551.322c-90.486 0-163.84 73.354-163.84 163.84v0 338.33c0 90.486 73.354 163.84 163.84 163.84v0h551.322c90.486 0 163.84-73.354 163.84-163.84v0-338.33c0-90.486-73.354-163.84-163.84-163.84v0zM111.821 419.021h757.76v88.883h-756.941zM215.859 264.602h551.322c52.592 0.286 95.854 39.86 101.943 90.851l0.048 0.49h-755.302c6.136-51.481 49.398-91.055 101.961-91.341l0.029-0zM767.181 809.37h-551.322c-57.006-0-103.219-46.213-103.219-103.219v0-138.445h757.76v138.445c0 57.006-46.213 103.219-103.219 103.219v0zM577.126 720.486c-0.228 16.874-13.846 30.492-30.698 30.72l-0.022 0h-61.030c-16.966 0-30.72-13.754-30.72-30.72s13.754-30.72 30.72-30.72v0h61.030c16.874 0.228 30.492 13.846 30.72 30.698l0 0.022zM822.886 720.486c-0.228 16.874-13.846 30.492-30.698 30.72l-0.022 0h-144.998c-16.966 0-30.72-13.754-30.72-30.72s13.754-30.72 30.72-30.72v0h145.408c16.874 0.228 30.492 13.846 30.72 30.698l0 0.022z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["credit-cart"]},"attrs":[{}],"properties":{"order":6570,"id":394,"name":"credit-cart","prevSize":32,"code":59826},"setIdx":0,"setId":0,"iconIdx":178},{"icon":{"paths":["M512 113.067c220.325 0 398.933 178.609 398.933 398.933s-178.609 398.933-398.933 398.933c-220.325 0-398.933-178.609-398.933-398.933h-0c0-220.325 178.609-398.933 398.933-398.933v-0zM512 454.4l-112.64-113.067c-7.589-7.054-17.796-11.383-29.013-11.383s-21.424 4.329-29.040 11.407l0.027-0.024c-7.054 7.589-11.383 17.796-11.383 29.013s4.329 21.424 11.407 29.040l-0.024-0.027 114.347 112.64-114.347 112.64c-7.054 7.589-11.383 17.796-11.383 29.013s4.329 21.424 11.407 29.040l-0.024-0.027c7.503 6.704 17.46 10.801 28.373 10.801s20.87-4.097 28.415-10.838l-0.042 0.036 113.92-114.347 112.64 114.347c7.589 7.054 17.796 11.383 29.013 11.383s21.424-4.329 29.040-11.407l-0.027 0.024c6.704-7.503 10.801-17.46 10.801-28.373s-4.097-20.87-10.838-28.415l0.036 0.042-114.347-113.92 114.347-112.64c7.054-7.589 11.383-17.796 11.383-29.013s-4.329-21.424-11.407-29.040l0.024 0.027c-7.503-6.704-17.46-10.801-28.373-10.801s-20.87 4.097-28.415 10.838l0.042-0.036-113.92 114.347zM512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c-0.243-253.217-205.45-458.424-458.644-458.667l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cross-circle"]},"attrs":[{}],"properties":{"order":6571,"id":393,"name":"cross-circle","prevSize":32,"code":59827},"setIdx":0,"setId":0,"iconIdx":179},{"icon":{"paths":["M679.253 113.067c127.953 0 231.68 103.727 231.68 231.68v0 334.507c0 127.953-103.727 231.68-231.68 231.68v0h-334.507c-127.953 0-231.68-103.727-231.68-231.68v0-334.507c0-127.953 103.727-231.68 231.68-231.68v-0h334.507zM512 454.4l-112.64-113.067c-7.589-7.054-17.796-11.383-29.013-11.383s-21.424 4.329-29.040 11.407l0.027-0.024c-7.054 7.589-11.383 17.796-11.383 29.013s4.329 21.424 11.407 29.040l-0.024-0.027 114.347 112.64-114.347 112.64c-7.054 7.589-11.383 17.796-11.383 29.013s4.329 21.424 11.407 29.040l-0.024-0.027c7.503 6.704 17.46 10.801 28.373 10.801s20.87-4.097 28.415-10.838l-0.042 0.036 113.92-114.347 112.64 114.347c7.589 7.054 17.796 11.383 29.013 11.383s21.424-4.329 29.040-11.407l-0.027 0.024c6.704-7.503 10.801-17.46 10.801-28.373s-4.097-20.87-10.838-28.415l0.036 0.042-114.347-113.92 114.347-112.64c7.054-7.589 11.383-17.796 11.383-29.013s-4.329-21.424-11.407-29.040l0.024 0.027c-7.503-6.704-17.46-10.801-28.373-10.801s-20.87 4.097-28.415 10.838l0.042-0.036-113.92 114.347zM679.253 53.333h-334.507c-160.943 0-291.413 130.47-291.413 291.413v0 334.507c0 160.943 130.47 291.413 291.413 291.413v0h334.507c160.943 0 291.413-130.47 291.413-291.413v-334.507c0-160.943-130.47-291.413-291.413-291.413v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cross-square"]},"attrs":[{}],"properties":{"order":6572,"id":392,"name":"cross-square","prevSize":32,"code":59828},"setIdx":0,"setId":0,"iconIdx":180},{"icon":{"paths":["M572.16 512l153.173-151.893c7.79-7.895 12.601-18.746 12.601-30.72 0-24.161-19.586-43.747-43.747-43.747-12.187 0-23.209 4.983-31.142 13.023l-0.005 0.005-151.040 153.173-151.040-150.187c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l151.043 149.763-153.173 151.893c-7.79 7.895-12.601 18.746-12.601 30.72 0 24.161 19.586 43.747 43.747 43.747 12.187 0 23.209-4.983 31.142-13.023l0.005-0.005 151.040-153.173 151.040 150.187c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cross"]},"attrs":[{}],"properties":{"order":6573,"id":391,"name":"cross","prevSize":32,"code":59829},"setIdx":0,"setId":0,"iconIdx":181},{"icon":{"paths":["M716.8 853.333h-413.867c-0.201 0.002-0.439 0.003-0.677 0.003-33.319 0-61.709-21.1-72.538-50.667l-0.172-0.536-170.667-495.787c-2.771-7.472-4.375-16.103-4.375-25.109 0-24.699 12.061-46.581 30.615-60.077l0.213-0.148c12.364-9.421 28.026-15.094 45.013-15.094s32.65 5.673 45.196 15.227l-0.183-0.134 170.667 122.88c0.417 0.104 0.896 0.164 1.388 0.164 2.091 0 3.931-1.074 4.998-2.701l0.014-0.023 85.333-223.147c11.274-28.683 38.72-48.622 70.824-48.64l0.002-0c32.339 0.030 59.918 20.382 70.655 48.973l0.171 0.521 84.053 222.293c0.71 1.651 2.095 2.896 3.798 3.403l0.042 0.011c0.816 0.372 1.769 0.589 2.773 0.589s1.958-0.217 2.816-0.606l-0.043 0.017 176.213-131.413c12.407-9.075 27.968-14.52 44.8-14.52s32.393 5.445 45.016 14.671l-0.216-0.151c18.81 13.553 30.913 35.396 30.913 60.066 0 9.067-1.635 17.752-4.626 25.777l0.167-0.51-175.36 503.893c-11.119 29.877-39.397 50.774-72.555 50.774-0.142 0-0.285-0-0.427-0.001l0.022 0zM128 269.653c-2.796 0.196-5.304 1.293-7.269 3l0.015-0.013c-2.78 1.861-4.586 4.988-4.586 8.537 0 1.382 0.274 2.701 0.771 3.904l-0.025-0.068 170.667 496.213c1.968 5.267 6.953 8.951 12.799 8.96l0.001 0h413.867c5.77-0.25 10.645-3.835 12.764-8.865l0.036-0.095 178.773-502.613c0.463-1.2 0.731-2.588 0.731-4.038 0-3.74-1.782-7.063-4.543-9.168l-0.028-0.021c-2.028-1.41-4.542-2.253-7.253-2.253s-5.226 0.843-7.295 2.281l0.042-0.028-176.64 131.413c-11.495 8.725-26.043 13.977-41.818 13.977-29.795 0-55.215-18.737-65.118-45.071l-0.158-0.479-85.333-224.427c-2.012-4.312-6.163-7.322-11.050-7.677l-0.043-0.003c-5.038 0.029-9.335 3.171-11.065 7.599l-0.028 0.081-85.333 223.147c-7.725 20.485-24.194 36.114-44.731 42.533l-0.496 0.134c-5.945 1.85-12.781 2.916-19.865 2.916-15.497 0-29.802-5.1-41.33-13.712l0.181 0.13-170.667-122.88c-1.618-1.582-3.631-2.766-5.877-3.391l-0.096-0.023zM649.813 610.987c0-0.001 0-0.002 0-0.003 0-17.673-14.327-32-32-32-0.15 0-0.3 0.001-0.449 0.003l0.023-0h-213.333c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h213.333c0.385 0.016 0.838 0.026 1.292 0.026 17.909 0 32.427-14.518 32.427-32.427 0-0.309-0.004-0.617-0.013-0.924l0.001 0.045zM761.6 924.16c0-0.001 0-0.002 0-0.003 0-17.673-14.327-32-32-32-0.15 0-0.3 0.001-0.449 0.003l0.023-0h-435.627c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h436.907c0.003 0 0.007 0 0.011 0 17.909 0 32.427-14.518 32.427-32.427 0-0.3-0.004-0.599-0.012-0.897l0.001 0.044z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["crown-2"]},"attrs":[{}],"properties":{"order":6574,"id":390,"name":"crown-2","prevSize":32,"code":59830},"setIdx":0,"setId":0,"iconIdx":182},{"icon":{"paths":["M725.333 896h-426.667c-0 0-0 0-0 0-136.286 0-246.797-110.36-247.040-246.59l-0-0.023v-421.547c-0.023-0.654-0.036-1.422-0.036-2.193 0-36.996 29.991-66.987 66.987-66.987 19.158 0 36.438 8.043 48.647 20.936l0.029 0.031 128 128 170.667-160.853c12.165-11.67 28.71-18.855 46.933-18.855s34.769 7.185 46.957 18.877l-0.024-0.022 165.547 159.573c0.543 0.553 1.298 0.896 2.133 0.896s1.591-0.343 2.133-0.896l0-0 128-128c12.078-11.866 28.651-19.192 46.935-19.192 36.996 0 66.987 29.991 66.987 66.987 0 0.147-0 0.294-0.001 0.441l0-0.023v422.827c-0.241 135.954-110.267 246.129-246.14 246.613l-0.046 0zM122.453 225.707h-5.12v422.827c-0.005 0.51-0.008 1.112-0.008 1.715 0 100.493 80.984 182.071 181.25 183.031l0.091 0.001h426.667c0 0 0 0 0 0 100.94 0 182.797-81.707 183.039-182.59l0-0.023v-422.827h-5.12l-128 128c-12.165 11.67-28.71 18.855-46.933 18.855s-34.769-7.185-46.957-18.877l0.024 0.022-167.253-164.267-170.667 160.853c-12.077 11.866-28.65 19.19-46.933 19.19s-34.856-7.325-46.943-19.2l0.010 0.010z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["crown"]},"attrs":[{}],"properties":{"order":6575,"id":389,"name":"crown","prevSize":32,"code":59831},"setIdx":0,"setId":0,"iconIdx":183},{"icon":{"paths":["M512 970.667c-0.221 0.001-0.481 0.002-0.742 0.002-13.431 0-26.389-2.028-38.583-5.795l0.925 0.246-202.667-58.027c-54.057-15.73-94.008-61.994-100.211-118.417l-0.056-0.623-60.16-581.547c-0.422-4.083-0.662-8.823-0.662-13.619 0-35.965 13.525-68.77 35.766-93.608l-0.118 0.134c25.495-28.339 62.29-46.080 103.229-46.080 0.009 0 0.017 0 0.026 0l526.505-0c0.086-0 0.188-0 0.29-0 76.583 0 138.667 62.083 138.667 138.667 0 4.959-0.26 9.857-0.768 14.682l0.051-0.602-60.16 581.547c-5.667 57.265-45.645 103.854-98.867 119.226l-0.973 0.241-203.947 58.027c-11.151 3.519-23.975 5.547-37.273 5.547-0.096 0-0.193-0-0.289-0l0.015 0zM248.747 117.333c-41.474 0.308-74.976 34.001-74.976 75.518 0 2.404 0.112 4.782 0.332 7.129l-0.023-0.3 60.587 581.547c3.311 30.648 24.741 55.522 53.232 63.867l0.528 0.133 202.667 58.453c6.388 1.941 13.73 3.058 21.333 3.058s14.945-1.117 21.871-3.196l-0.538 0.139 203.947-58.453c29.084-8.373 50.567-33.304 53.733-63.68l0.027-0.32 59.733-581.547c0.197-2.046 0.309-4.424 0.309-6.829 0-41.517-33.502-75.21-74.947-75.518l-0.029-0zM745.387 875.947v0zM728.32 278.613c-6.027-6.566-14.65-10.667-24.23-10.667-0.032 0-0.063 0-0.095 0l0.005-0h-384c-1.115-0.136-2.405-0.213-3.713-0.213-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427c1.309 0 2.599-0.078 3.867-0.228l-0.153 0.015h348.16l-11.947 111.36h-314.88c-1.115-0.136-2.405-0.213-3.713-0.213-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427c1.309 0 2.599-0.078 3.867-0.228l-0.153 0.015h306.773l-16.213 150.187-118.187 34.987-122.88-37.547-15.36-58.453c-3.94-13.614-16.294-23.399-30.933-23.399-17.754 0-32.146 14.392-32.146 32.146 0 3.115 0.443 6.126 1.269 8.974l-0.056-0.227 21.333 75.52c3.074 10.52 10.987 18.714 21.102 22.119l0.232 0.068 148.907 46.080c1.41 0.199 3.038 0.312 4.693 0.312s3.284-0.114 4.878-0.333l-0.185 0.021c1.41 0.212 3.038 0.333 4.693 0.333s3.283-0.121 4.874-0.354l-0.181 0.022 148.48-42.667c12.225-3.758 21.212-14.323 22.601-27.165l0.012-0.142 42.667-384c0.243-1.472 0.382-3.169 0.382-4.898 0-8.975-3.745-17.075-9.757-22.824l-0.012-0.011z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["css"]},"attrs":[{}],"properties":{"order":6576,"id":388,"name":"css","prevSize":32,"code":59832},"setIdx":0,"setId":0,"iconIdx":184},{"icon":{"paths":["M934.827 358.4c-2.387-17.503-6.72-33.33-12.846-48.232l0.472 1.298h2.56l-15.787-27.733c-1.023-1.251-2.008-2.644-2.895-4.104l-0.092-0.163-13.653-23.467c-9.291-11.464-19.511-21.548-30.739-30.41l-0.408-0.31-3.413-2.987c-6.456-4.95-13.833-10.017-21.467-14.705l-1.147-0.655-218.453-128c-29.639-17.313-65.252-27.535-103.253-27.535s-73.614 10.222-104.24 28.066l0.987-0.531-218.453 128-22.613 14.933-5.12 4.693c-19.568 15.598-36.021 34.089-48.967 54.981l-0.526 0.912-15.787 27.733h2.56c-8.783 21.871-13.939 47.22-14.080 73.756l-0 0.057v256c0 75.79 40.913 142.023 101.858 177.821l0.969 0.526 218.453 128c22.263 12.901 48.335 22.075 76.113 25.901l1.113 0.126v2.133h62.72l19.2-4.267 8.533-2.987c5.12 0 10.24-2.987 15.36-5.12 9.478-4.035 17.187-7.891 24.645-12.138l-1.178 0.618 218.453-128c63.122-36.030 104.982-102.915 104.982-179.578 0-1.067-0.008-2.133-0.024-3.196l0.002 0.161v-256c-0.788-9.604-2.148-18.346-4.082-26.869l0.242 1.269zM440.747 136.107c20.469-11.883 45.042-18.896 71.253-18.896s50.784 7.013 71.944 19.266l-0.691-0.369 218.453 128 16.64 11.093 5.12 4.693 9.387 8.533-192.853 113.067-128 73.387-322.133-186.453c3.062-3.339 6.265-6.408 9.657-9.259l0.156-0.128 4.693-4.267 16.64-11.093zM440.747 887.040l-218.453-128c-41.687-24.275-69.561-68.266-70.823-118.863l-0.003-0.177v-256c-0.005-0.454-0.009-0.99-0.009-1.527 0-14.698 2.344-28.848 6.679-42.097l-0.271 0.956 322.56 186.453 4.693 372.053c-16.471-1.965-31.465-6.481-45.209-13.167l0.836 0.367zM872.533 640c0 0.134 0.001 0.292 0.001 0.451 0 52.085-28.196 97.585-70.157 122.068l-0.671 0.361-218.453 128c-9.825 5.981-21.195 10.812-33.265 13.892l-0.868 0.188-4.693-371.2 321.707-189.867c1.5 4.391 2.835 9.706 3.753 15.163l0.087 0.624c-0.114 0.641-0.179 1.38-0.179 2.133s0.065 1.492 0.19 2.21l-0.011-0.076c0.202 2.998 0.318 6.499 0.318 10.027s-0.115 7.028-0.343 10.499l0.025-0.472z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cube-2"]},"attrs":[{}],"properties":{"order":6577,"id":387,"name":"cube-2","prevSize":32,"code":59833},"setIdx":0,"setId":0,"iconIdx":185},{"icon":{"paths":["M684.8 970.667h-343.467c-157.782-0.242-285.624-128.084-285.867-285.843l-0-0.024v-343.467c-0.003-0.507-0.005-1.107-0.005-1.707 0-157.967 127.938-286.053 285.849-286.293l0.023-0h345.6c157.013 1.446 283.738 129.065 283.738 286.282 0 0.604-0.002 1.208-0.006 1.811l0-0.093v345.6c-1.447 156.865-128.83 283.498-285.844 283.733l-0.023 0zM341.333 117.333c-0.637-0.007-1.39-0.010-2.144-0.010-122.534 0-221.867 99.333-221.867 221.867 0 0.754 0.004 1.507 0.011 2.259l-0.001-0.115v345.6c1.201 121.617 100.069 219.744 221.857 219.744 0.754 0 1.507-0.004 2.259-0.011l-0.115 0.001h345.6c122.534-0 221.867-99.333 221.867-221.867v0-343.467c0-122.534-99.333-221.867-221.867-221.867v0zM597.333 791.040c-11.918-0.113-23.076-3.263-32.77-8.711l0.343 0.177c-21.115-10.834-35.409-32.285-35.839-57.116l-0.001-0.058v-137.813c0.195-23.749 13.041-44.455 32.123-55.727l0.304-0.166 121.173-69.547c9.292-5.504 20.481-8.757 32.43-8.757 35.582 0 64.427 28.845 64.427 64.427 0 0.229-0.001 0.457-0.004 0.685l0-0.035v138.667c-0.009 23.696-12.724 44.42-31.702 55.729l-0.298 0.164-120.32 69.547c-9.529 5.37-20.92 8.534-33.050 8.534-0.081 0-0.162-0-0.242-0l0.012 0zM701.013 489.813l16.213 27.733-120.32 69.547v138.24l121.6-68.693v-138.24zM433.493 788.48c-11.971-0.045-23.156-3.37-32.715-9.121l-123.445-68.959c-19.276-11.666-31.969-32.507-32-56.315l-0-0.005v-138.667c0.151-35.467 28.938-64.161 64.426-64.161 11.602 0 22.487 3.067 31.89 8.434l-0.317-0.166 120.32 69.12c19.505 11.51 32.392 32.406 32.427 56.315l0 0.005v140.373c-0.474 35.625-29.228 64.379-64.808 64.853l-0.045 0zM309.76 514.56v139.52l119.893 71.253v-139.093l-119.467-71.253zM519.253 500.907c-0.18 0.002-0.394 0.003-0.607 0.003-11.717 0-22.693-3.17-32.119-8.699l0.299 0.162-120.32-68.693c-19.505-11.51-32.392-32.406-32.427-56.315l-0-0.005c-0.003-0.214-0.004-0.467-0.004-0.721 0-23.597 12.943-44.17 32.116-55.009l0.315-0.164 119.893-69.973c9.241-5.427 20.353-8.632 32.213-8.632s22.973 3.205 32.517 8.796l-0.304-0.165 120.747 69.12c19.466 11.435 32.326 32.269 32.326 56.107s-12.861 44.672-32.022 55.941l-0.304 0.165-119.893 69.547c-9.052 5.367-19.953 8.539-31.594 8.539-0.293 0-0.585-0.002-0.877-0.006l0.044 0zM519.253 296.96l-120.747 69.973 120.747 69.973 120.747-69.547z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cube-3"]},"attrs":[{}],"properties":{"order":6578,"id":386,"name":"cube-3","prevSize":32,"code":59834},"setIdx":0,"setId":0,"iconIdx":186},{"icon":{"paths":["M676.267 593.067h17.493c153.036-0.485 276.907-124.656 276.907-277.759 0-0.151-0-0.301-0-0.451l0 0.023c-0.314-53.133-35.896-97.87-84.504-112.007l-0.829-0.207c-2.512-0.751-5.398-1.184-8.385-1.184-13.81 0-25.462 9.241-29.109 21.876l-0.053 0.214c-0.759 2.542-1.196 5.464-1.196 8.487 0 13.895 9.225 25.635 21.885 29.43l0.217 0.056c23.134 7.027 39.68 28.168 39.68 53.173 0 0.056-0 0.113-0 0.169l0-0.009c0.001 0.179 0.001 0.392 0.001 0.604 0 105.592-75.656 193.514-175.718 212.516l-1.349 0.213c61.44-96.864 97.911-214.828 97.911-341.309 0-5.71-0.074-11.402-0.222-17.077l0.017 0.839c0.037-1.065 0.058-2.317 0.058-3.573 0-58.479-45.778-106.266-103.453-109.481l-0.285-0.013h-407.893c-58.19 3.235-104.152 51.21-104.152 109.92 0 1.106 0.016 2.209 0.049 3.308l-0.004-0.161c-0.074 3.631-0.116 7.913-0.116 12.205 0 129.226 38.071 249.56 103.61 350.398l-1.52-2.496c-110.924-9.263-197.605-100.985-198.826-213.212l-0.001-0.122c-0.002-0.165-0.003-0.36-0.003-0.555 0-26.011 18.043-47.808 42.296-53.557l0.374-0.075c11.85-4.441 20.132-15.672 20.132-28.838 0-16.966-13.754-30.72-30.72-30.72-1.381 0-2.742 0.091-4.075 0.268l0.156-0.017c-51.713 11.723-89.96 56.676-91.304 110.788l-0.003 0.145c-0 0.127-0 0.277-0 0.428 0 153.103 123.871 277.274 276.86 277.759l0.047 0h37.547c18.466 16.581 39.53 30.825 62.389 41.958l1.611 0.708c2.456 1.197 4.119 3.675 4.119 6.541 0 0.71-0.102 1.395-0.292 2.043l0.013-0.051c-21.037 84.099-51.479 157.993-90.957 225.991l2.21-4.124c-5.822 9.914-9.26 21.835-9.26 34.56s3.438 24.646 9.437 34.886l-0.177-0.326c11.605 20.514 33.275 34.134 58.127 34.134 0.115 0 0.229-0 0.344-0.001l-0.018 0h231.253c0.967 0.049 2.099 0.077 3.238 0.077 23.396 0 44.043-11.769 56.344-29.711l0.151-0.233c5.374-9.603 8.539-21.072 8.539-33.28s-3.165-23.677-8.719-33.631l0.18 0.351c-31.092-66.309-57.932-144.056-76.53-224.95l-1.55-8.010c-0.199-0.57-0.314-1.227-0.314-1.911 0-2.325 1.328-4.339 3.267-5.326l0.034-0.016c20.906-11.627 38.959-24.785 55.223-39.847l-0.183 0.167zM642.56 899.84c1.141 2.344 2.031 5.065 2.533 7.92l0.027 0.187c-1.277 0.395-2.745 0.622-4.267 0.622s-2.99-0.227-4.372-0.65l0.106 0.028h-231.253c-0.018 0-0.040 0-0.061 0-2.514 0-4.71-1.359-5.895-3.381l-0.017-0.032c-0.69-1.090-1.1-2.417-1.1-3.84s0.41-2.75 1.117-3.87l-0.018 0.030c39.686-68.413 72.173-147.561 93.34-231.218l1.38-6.436v-2.56c0.773-3.953 1.216-8.498 1.216-13.146 0-28.566-16.71-53.23-40.889-64.748l-0.433-0.186c-23.825-12.326-44.137-27.871-61.312-46.368l-0.128-0.139c-72.533-77.653-120.32-215.040-120.32-361.387-0.047-0.799-0.074-1.734-0.074-2.675 0-25.688 19.913-46.725 45.145-48.516l0.155-0.009h407.893c24.186 2.823 42.779 23.193 42.779 47.906 0 1.159-0.041 2.308-0.121 3.447l0.009-0.153c0 150.613-44.8 285.44-116.48 361.813-16.395 16.671-35.226 30.875-55.931 42.053l-1.243 0.613c-21.488 12.957-35.636 36.171-35.636 62.691 0 5.913 0.703 11.662 2.031 17.167l-0.101-0.498c21.252 93.692 49.41 175.569 85.177 253.219l-3.257-7.885z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cup"]},"attrs":[{}],"properties":{"order":6579,"id":385,"name":"cup","prevSize":32,"code":59835},"setIdx":0,"setId":0,"iconIdx":187},{"icon":{"paths":["M491.52 952.32c-243.182 0-440.32-197.138-440.32-440.32s197.138-440.32 440.32-440.32c243.182 0 440.32 197.138 440.32 440.32v0c-0.233 243.088-197.232 440.087-440.298 440.32l-0.022 0zM491.52 133.12c-209.25 0-378.88 169.63-378.88 378.88s169.63 378.88 378.88 378.88c209.25 0 378.88-169.63 378.88-378.88v0c-0.233-209.156-169.724-378.647-378.857-378.88l-0.023-0zM737.28 560.742h-33.178c2.045-10.693 3.236-23.012 3.277-35.601l0-0.035v-18.432c-0.092-17.172-2.027-33.841-5.617-49.887l0.292 1.554h35.226c16.966 0 30.72-13.754 30.72-30.72s-13.754-30.72-30.72-30.72v0h-56.934c-39.813-72.313-115.412-120.559-202.304-120.832l-0.038-0h-171.622c-16.874 0.228-30.492 13.846-30.72 30.698l-0 0.022v90.112h-29.901c-16.966 0-30.72 13.754-30.72 30.72s13.754 30.72 30.72 30.72v0h30.72v102.4h-30.72c-16.966 0-30.72 13.754-30.72 30.72s13.754 30.72 30.72 30.72v0h30.72v95.027c0.228 16.874 13.846 30.492 30.698 30.72l0.022 0h179.405c87.48-0.276 163.066-50.92 199.303-124.441l0.582-1.307h50.79c16.966 0 30.72-13.754 30.72-30.72s-13.754-30.72-30.72-30.72v0zM337.101 337.51h140.902c50.856 0.188 96.319 23.119 126.773 59.146l0.203 0.246h-267.878zM337.101 458.342h301.875c4.709 14.404 7.537 30.994 7.781 48.21l0.001 0.123v18.432c-0.111 12.686-1.597 24.967-4.317 36.776l0.221-1.141h-305.562zM485.786 686.49h-148.685v-64.307h277.299c-29.702 39.151-76.222 64.204-128.598 64.307l-0.017 0z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dash"]},"attrs":[{}],"properties":{"order":6580,"id":384,"name":"dash","prevSize":32,"code":59836},"setIdx":0,"setId":0,"iconIdx":188},{"icon":{"paths":["M650.667 245.333c0 47.128 38.205 85.333 85.333 85.333v0h145.92c47.128 0 85.333-38.205 85.333-85.333v0-62.293c0-47.128-38.205-85.333-85.333-85.333v0h-144.213c-47.128 0-85.333 38.205-85.333 85.333v0h-236.373v-8.96c0-66.687-54.060-120.747-120.747-120.747h-121.173c-66.687 0-120.747 54.060-120.747 120.747v0 78.507c0 66.687 54.060 120.747 120.747 120.747v0h121.173c66.687 0 120.747-54.060 120.747-120.747v0-7.253h85.333v514.987c0 69.043 55.97 125.013 125.013 125.013v0h24.32c0 47.128 38.205 85.333 85.333 85.333v0h145.92c47.128 0 85.333-38.205 85.333-85.333v0-62.293c0-47.128-38.205-85.333-85.333-85.333v0h-144.213c-47.128 0-85.333 38.205-85.333 85.333v0h-24.32c-33.697 0-61.013-27.317-61.013-61.013v0-196.693h85.333c0 47.128 38.205 85.333 85.333 85.333v0h145.92c47.128 0 85.333-38.205 85.333-85.333v0-62.293c0-47.128-38.205-85.333-85.333-85.333v0h-145.92c-47.128 0-85.333 38.205-85.333 85.333v0h-85.333v-256zM714.667 183.040c0-12.725 10.315-23.040 23.040-23.040v0h145.92c12.725-0 23.040 10.315 23.040 23.040v60.587c0 12.725-10.315 23.040-23.040 23.040v-0h-145.92c-12.725 0-23.040-10.315-23.040-23.040v-0zM352 252.587c-0.24 31.243-25.503 56.507-56.724 56.747l-0.023 0h-121.173c-31.243-0.24-56.507-25.503-56.747-56.724l-0-0.023v-78.507c0.24-31.243 25.503-56.507 56.724-56.747l0.023-0h121.173c31.243 0.24 56.507 25.503 56.747 56.724l0 0.023zM714.667 823.040c0-12.725 10.315-23.040 23.040-23.040v0h145.92c12.725 0 23.040 10.315 23.040 23.040v0 60.587c0 12.725-10.315 23.040-23.040 23.040v0h-145.92c-12.725 0-23.040-10.315-23.040-23.040v0zM714.667 503.040c0-12.725 10.315-23.040 23.040-23.040v0h145.92c12.725 0 23.040 10.315 23.040 23.040v0 60.587c0 12.725-10.315 23.040-23.040 23.040v0h-145.92c-12.725 0-23.040-10.315-23.040-23.040v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["data"]},"attrs":[{}],"properties":{"order":6581,"id":383,"name":"data","prevSize":32,"code":59837},"setIdx":0,"setId":0,"iconIdx":189},{"icon":{"paths":["M976.64 447.573c0.113-0.897 0.178-1.934 0.178-2.987s-0.065-2.090-0.19-3.109l0.012 0.122c0.579-2.308 0.911-4.957 0.911-7.683 0-8.767-3.434-16.733-9.031-22.624l0.013 0.014-341.333-341.333c-2.731-2.42-5.813-4.548-9.134-6.28l-0.252-0.12h-2.987c-1.282-0.192-2.762-0.302-4.267-0.302s-2.985 0.11-4.431 0.322l0.164-0.020h-276.48c-151.747 3.847-274.435 123.122-283.693 273.093l-0.041 0.827v208.64c0 17.673 14.327 32 32 32s32-14.327 32-32v0-204.8c5.666-118.392 101.055-212.743 219.356-216.737l0.377-0.010h241.493v170.667c0 94.257 76.41 170.667 170.667 170.667v0h170.667v225.707c0 0 0 0 0 0 0 114.607-92.786 207.544-207.337 207.786l-0.023 0h-278.613c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h279.893c149.92-0.243 271.36-121.833 271.36-271.786l-0-0zM743.68 401.92c-0 0-0.001 0-0.001 0-59.703 0-108.13-48.278-108.372-107.924l-0-0.023v-123.307l232.107 232.107zM261.12 834.133h-170.667c-17.724-0.241-32-14.665-32-32.424 0-0.001 0-0.002 0-0.003l-0 0c-0.029-0.511-0.046-1.108-0.046-1.709 0-17.539 14.111-31.783 31.599-31.998l0.020-0h170.667c17.724 0.241 32 14.665 32 32.424 0 0.001-0 0.002-0 0.003l0-0c0.029 0.511 0.046 1.108 0.046 1.709 0 17.539-14.111 31.783-31.599 31.998l-0.020 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delete-files"]},"attrs":[{}],"properties":{"order":6582,"id":382,"name":"delete-files","prevSize":32,"code":59838},"setIdx":0,"setId":0,"iconIdx":190},{"icon":{"paths":["M963.413 426.667c0.212-1.41 0.333-3.038 0.333-4.693s-0.121-3.283-0.354-4.874l0.022 0.181v-51.627c-8.322-148.357-129.968-265.69-279.329-267.092l-0.138-0.001h-235.093c-21.88-27.606-55.39-45.17-93.004-45.227l-0.009-0h-92.16c-116.171 0-210.347 94.175-210.347 210.347v0 464.64c0 133.844 108.502 242.347 242.347 242.347v0h432.64c133.844 0 242.347-108.502 242.347-242.347v0-244.053c-0.060-20.485-2.702-40.327-7.618-59.252l0.364 1.652zM883.2 298.667c-41.547-34.775-95.56-55.894-154.505-55.894-0.132 0-0.264 0-0.396 0l0.021-0h-135.68c-50.096-0.073-92.906-31.191-110.227-75.142l-0.279-0.804v-2.987h204.8c88.529 1.506 163.922 56.177 195.744 133.394l0.523 1.433zM905.387 729.173c0 97.791-79.275 177.067-177.067 177.067v0h-432.64c-97.791 0-177.067-79.275-177.067-177.067v0-465.493c-0-80.118 64.949-145.067 145.067-145.067h92.16c0.135-0.001 0.295-0.002 0.455-0.002 22.473 0 41.673 14.011 49.341 33.774l0.123 0.361 15.36 38.4c27.718 68.487 93.636 115.943 170.653 116.053l0.014 0h135.68c97.791 0 177.067 79.275 177.067 177.067v0zM615.253 663.040c-5.861 6.307-14.203 10.24-23.463 10.24-0.001 0-0.003-0-0.004-0l0 0c-0.019 0-0.042 0-0.064 0-8.738 0-16.679-3.411-22.564-8.975l0.016 0.015-51.627-49.493-48.213 51.2c-5.289 3.797-11.893 6.072-19.029 6.072-18.144 0-32.853-14.709-32.853-32.853 0-5.83 1.518-11.305 4.181-16.051l-0.085 0.166 47.787-54.613-51.2-49.92c-6.041-5.829-9.793-13.996-9.793-23.040s3.752-17.211 9.783-23.031l0.010-0.009c5.879-5.935 14.030-9.609 23.040-9.609s17.161 3.674 23.037 9.606l0.003 0.003 51.627 49.493 47.787-52.907c5.289-3.797 11.893-6.072 19.029-6.072 18.144 0 32.853 14.709 32.853 32.853 0 5.83-1.518 11.305-4.181 16.051l0.085-0.166-49.067 52.48 52.053 49.92c6.843 5.903 11.148 14.585 11.148 24.273 0 9.286-3.955 17.649-10.274 23.494l-0.021 0.019z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delete-folder"]},"attrs":[{}],"properties":{"order":6583,"id":381,"name":"delete-folder","prevSize":32,"code":59839},"setIdx":0,"setId":0,"iconIdx":191},{"icon":{"paths":["M455.253 341.333c3.994 14.656 12.426 26.962 23.74 35.726l0.154 0.114c-2.329 7.011-3.673 15.082-3.673 23.467s1.344 16.456 3.828 24.010l-0.155-0.543 52.053 183.040c9.871 33.324 40.068 57.278 75.909 57.6l0.037 0c7.642-0.137 14.971-1.219 21.956-3.132l-0.623 0.145 191.573-54.613c20.612-5.95 37.408-19.412 47.581-37.157l0.206-0.389c6.299-10.973 10.013-24.124 10.013-38.143 0-7.849-1.164-15.426-3.33-22.567l0.143 0.55-52.907-183.040c-9.383-31.551-37.148-54.558-70.592-56.734l-0.234-0.012c-0.185-4.933-0.952-9.609-2.235-14.066l0.102 0.413-42.667-152.747c-8.621-30.087-35.885-51.736-68.205-51.736-6.859 0-13.49 0.975-19.762 2.794l0.5-0.124-157.44 42.667c-18.429 5.357-33.431 17.443-42.482 33.355l-0.184 0.352c-5.482 9.962-8.708 21.834-8.708 34.458 0 7.025 0.999 13.816 2.862 20.241l-0.127-0.512zM760.32 343.893l50.347 183.040c0.335 1.196 0.527 2.57 0.527 3.989 0 7-4.682 12.906-11.085 14.757l-0.108 0.027-189.867 54.187c-1.289 0.497-2.78 0.786-4.338 0.786-3.276 0-6.255-1.273-8.468-3.352l0.007 0.006c-3.588-1.781-6.239-4.991-7.233-8.865l-0.021-0.095-50.347-181.76c-0.805-1.688-1.274-3.669-1.274-5.76s0.47-4.072 1.31-5.843l-0.035 0.083c1.973-3.164 4.922-5.561 8.42-6.792l0.114-0.035 42.667-12.373 11.52 42.667c4.067 12.794 15.841 21.9 29.743 21.9 2.773 0 5.462-0.362 8.022-1.043l-0.217 0.049 48.64-12.8c12.849-3.7 22.090-15.352 22.090-29.162 0-2.987-0.432-5.873-1.238-8.599l0.054 0.214-11.52-42.667h2.987l40.533-11.52h4.267c0.081-0.001 0.176-0.002 0.271-0.002 6.238 0 11.63 3.617 14.194 8.869l0.041 0.093zM474.027 165.547c0.859-1.54 2.187-2.731 3.789-3.395l0.051-0.019 34.133-9.813 8.533 29.013c2.887 10.699 12.504 18.443 23.93 18.443 2.418 0 4.755-0.347 6.965-0.994l-0.175 0.044 37.547-10.667c10.674-3.409 18.268-13.239 18.268-24.843 0-2.238-0.283-4.411-0.814-6.484l0.039 0.18-6.827-29.013 35.84-9.813c3.253 0.227 5.984 2.245 7.232 5.065l0.022 0.055 42.667 152.747c0.183 0.587 0.288 1.262 0.288 1.961 0 3.113-2.084 5.74-4.933 6.561l-0.048 0.012-150.187 42.667h-6.4c-0.503 0.125-1.081 0.196-1.676 0.196-3.159 0-5.847-2.020-6.842-4.839l-0.016-0.051-42.24-151.893c-0.093-0.435-0.146-0.934-0.146-1.447 0-1.354 0.371-2.622 1.017-3.707l-0.018 0.033zM264.96 174.507c-4.934 8.919-13.273 15.444-23.218 17.869l-0.248 0.051-107.093 27.307c-2.74 0.715-5.885 1.126-9.126 1.126-17.654 0-32.462-12.184-36.475-28.602l-0.053-0.257-3.413-10.24c-0.721-2.766-1.135-5.942-1.135-9.214 0-17.739 12.164-32.638 28.606-36.809l0.263-0.056 107.093-26.88c2.795-0.763 6.003-1.202 9.315-1.202 7.134 0 13.793 2.036 19.426 5.558l-0.154-0.090 55.893-15.36c2.534-0.722 5.445-1.136 8.452-1.136 14.584 0 26.889 9.756 30.745 23.097l0.056 0.226 131.413 474.88c0.734 2.537 1.156 5.451 1.156 8.464 0 14.354-9.578 26.471-22.692 30.307l-0.223 0.056h-8.533c-14.587-0.057-26.867-9.865-30.665-23.241l-0.055-0.226-122.88-442.88zM916.053 680.107l-264.533 73.387h-8.533c-14.587-0.057-26.867-9.865-30.665-23.241l-0.055-0.226c-0.714-2.505-1.125-5.381-1.125-8.353 0-14.499 9.772-26.715 23.090-30.421l0.222-0.053 264.533-73.387c2.558-0.743 5.496-1.171 8.533-1.171 17.495 0 31.678 14.183 31.678 31.678 0 14.457-9.685 26.653-22.921 30.452l-0.224 0.055zM845.227 875.093h-363.093c50.63-2.683 90.667-44.39 90.667-95.447 0-52.784-42.79-95.573-95.573-95.573s-95.573 42.79-95.573 95.573c0 51.058 40.037 92.764 90.429 95.437l0.238 0.010h-152.747c-17.489 0.241-31.573 14.474-31.573 31.997 0 0.001 0 0.002 0 0.003l-0-0c0 17.437 14.136 31.573 31.573 31.573v0h525.653c17.437-0 31.573-14.136 31.573-31.573v0c0-0.001 0-0.002 0-0.003 0-17.523-14.085-31.757-31.551-31.997l-0.023-0zM445.44 777.387c-0.017-0.394-0.026-0.857-0.026-1.322 0-17.789 13.957-32.318 31.518-33.234l0.082-0.003c1.023-0.106 2.211-0.167 3.412-0.167 19.323 0 34.987 15.664 34.987 34.987s-15.664 34.987-34.987 34.987c-19.323 0-34.987-15.664-34.987-34.987 0-0.091 0-0.183 0.001-0.274l-0 0.014z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-2"]},"attrs":[{}],"properties":{"order":6584,"id":380,"name":"delivery-2","prevSize":32,"code":59840},"setIdx":0,"setId":0,"iconIdx":192},{"icon":{"paths":["M426.667 503.893h245.76c0 0 0.001 0 0.001 0 54.904 0 99.413-44.509 99.413-99.413 0-0.15-0-0.3-0.001-0.45l0 0.023v-213.333c0.001-0.127 0.001-0.277 0.001-0.427 0-54.904-44.509-99.413-99.413-99.413-0 0-0.001 0-0.001 0l-245.76 0c-0.128-0.001-0.279-0.001-0.43-0.001-54.904 0-99.413 44.509-99.413 99.413 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v213.333c-0 0-0 0.001-0 0.001 0 54.904 44.509 99.413 99.413 99.413 0.15 0 0.3-0 0.45-0.001l-0.023 0zM585.813 155.307v52.48c0 10.84-8.787 19.627-19.627 19.627v0h-33.28c-0.383 0.027-0.83 0.042-1.28 0.042-10.84 0-19.627-8.787-19.627-19.627 0-0.015 0-0.029 0-0.044l-0 0.002v-52.48zM391.253 191.147c-0-0.001-0-0.002-0-0.003 0-19.644 15.804-35.597 35.391-35.837l0.023-0h22.613v52.48c0 47.128 38.205 85.333 85.333 85.333v0h33.28c47.128 0 85.333-38.205 85.333-85.333v0-52.48h22.613c19.61 0.241 35.413 16.194 35.413 35.837 0 0.001-0 0.002-0 0.003l0-0v213.333c0 0.001 0 0.002 0 0.003 0 19.644-15.804 35.597-35.391 35.837l-0.023 0h-249.173c-19.61-0.241-35.413-16.194-35.413-35.837 0-0.001 0-0.002 0-0.003l-0 0zM955.307 485.12c-15.19-17.597-37.525-28.667-62.446-28.667-16.413 0-31.704 4.802-44.546 13.077l0.325-0.196-176.213 125.867c-2.553 1.717-4.683 3.847-6.348 6.318l-0.052 0.082c-10.51-8.712-23.086-15.339-36.86-19.043l-0.686-0.157-276.053-70.4c-6.235-1.63-13.392-2.566-20.768-2.566-0.349 0-0.697 0.002-1.045 0.006l0.053-0c-3.152-0.229-6.83-0.359-10.538-0.359-49.484 0-93.548 23.206-121.902 59.33l-0.254 0.336c-40.107 44.8-89.173 96.427-122.027 130.987-15.231 15.406-24.64 36.597-24.64 59.985 0 24.642 10.445 46.845 27.15 62.422l0.051 0.047 73.813 71.253c15.467 15.59 36.9 25.241 60.587 25.241s45.12-9.651 60.581-25.236l0.006-0.006c10.24-9.813 16.213-14.933 19.627-17.92 30.293 2.56 143.787 28.16 238.080 51.627 12.231 3.797 26.292 5.985 40.865 5.985 0.634 0 1.266-0.004 1.898-0.012l-0.096 0.001c0.494 0.009 1.077 0.014 1.661 0.014 9.744 0 19.158-1.408 28.052-4.031l-0.7 0.177c25.699-9.826 47.614-24.336 65.687-42.647l0.019-0.020 280.32-286.293c14.226-16.364 22.897-37.887 22.897-61.435 0-20.128-6.336-38.777-17.121-54.061l0.198 0.296zM898.987 559.36l-276.907 282.88c-10.749 10.247-23.313 18.711-37.141 24.844l-0.833 0.33c-5.322 1.181-11.436 1.857-17.707 1.857s-12.384-0.676-18.27-1.96l0.564 0.103c-74.61-24.432-163.092-44.321-254.149-55.974l-7.397-0.773c-0.9-0.082-1.948-0.129-3.006-0.129-5.584 0-10.862 1.308-15.544 3.634l0.204-0.092c-15.445 8.985-28.663 19.758-39.979 32.283l-0.128 0.143c-4.093 4.098-9.751 6.633-16 6.633s-11.907-2.535-16-6.633l-0-0-73.813-69.973c-4.051-4.272-6.542-10.059-6.542-16.427s2.491-12.154 6.552-16.437l-0.010 0.011c33.707-34.987 82.773-85.333 123.307-132.267 16.77-23.212 43.757-38.142 74.233-38.142 1.954 0 3.894 0.061 5.817 0.182l-0.263-0.013h4.693c1.026-0.225 2.205-0.354 3.413-0.354s2.387 0.129 3.523 0.374l-0.109-0.020 276.053 69.547c8.645 2.045 15.75 7.477 19.973 14.783l0.080 0.15c2.797 4.694 4.45 10.352 4.45 16.395 0 3.438-0.535 6.752-1.527 9.861l0.063-0.23c-3.012 11.287-13.144 19.465-25.186 19.465-2.115 0-4.17-0.252-6.138-0.728l0.178 0.036-121.173-31.147c-2.243-0.557-4.817-0.877-7.467-0.877-17.804 0-32.237 14.433-32.237 32.237 0 15.154 10.457 27.867 24.549 31.314l0.221 0.046 120.747 31.147c6.411 1.608 13.771 2.53 21.346 2.53 41.605 0 76.711-27.827 87.721-65.885l0.16-0.645c2.031-7.489 3.199-16.088 3.199-24.96s-1.167-17.471-3.356-25.652l0.158 0.692c4.381-1.057 8.232-2.824 11.631-5.193l-0.111 0.073 170.667-123.733c2.758-1.748 6.117-2.785 9.718-2.785 5.464 0 10.371 2.389 13.732 6.179l0.017 0.019c8.107 8.533-3.413 28.587-6.4 33.28z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-3"]},"attrs":[{}],"properties":{"order":6585,"id":379,"name":"delivery-3","prevSize":32,"code":59841},"setIdx":0,"setId":0,"iconIdx":193},{"icon":{"paths":["M532.053 951.040c-60.719-4.327-116.029-24.272-162.901-55.797l1.194 0.757c-114.675-69.299-206.978-165.019-270.27-279.063l-1.944-3.817c-59.733-116.907-55.467-204.8 14.080-268.8v0c18.794-19.246 44.186-31.976 72.512-34.527l0.448-0.033c2.916-0.353 6.293-0.555 9.717-0.555 27.878 0 52.633 13.368 68.206 34.044l0.157 0.218 81.493 122.88c2.721 7.105 4.683 15.351 5.516 23.928l0.031 0.392c0.125 1.522 0.196 3.296 0.196 5.085 0 14.054-4.384 27.083-11.858 37.796l0.142-0.215-33.28 38.827c36.571 49.898 79.75 92.262 128.814 126.833l1.746 1.167c11.628-11.378 24.010-22.136 37.005-32.137l0.968-0.716c11.424-7.693 25.496-12.279 40.638-12.279 10.774 0 21.007 2.322 30.223 6.493l-0.462-0.187 5.12 2.987 119.040 82.347c7.816 7.291 14.826 15.249 21.007 23.843l0.327 0.477c5.294 11.063 8.386 24.046 8.386 37.752 0 9.054-1.349 17.793-3.858 26.026l0.165-0.632c-10.107 38.674-35.326 70.164-68.812 88.381l-0.735 0.366c-26.38 16.946-58.403 27.327-92.793 28.156l-0.22 0.004zM199.68 372.053v0c-16.871 0.408-31.963 7.7-42.633 19.163l-0.034 0.037c-31.147 29.013-59.733 77.227 0 192.853 59.305 106.666 143.052 193.283 244.007 254.299l3.033 1.701c89.6 51.2 139.093 58.88 190.293 29.44 25.33-11.297 42.667-36.258 42.667-65.267 0-0.004-0-0.009-0-0.013l0 0.001-7.253-7.68-113.067-75.52h-4.693c-11.52 8.533-31.573 28.16-38.4 34.56-8.679 9.37-21.047 15.215-34.781 15.215-8.031 0-15.595-1.999-22.222-5.526l0.256 0.124c-68.594-45.127-125.539-102.072-169.307-168.472l-1.359-2.195c-4.059-6.726-6.461-14.848-6.461-23.531 0-13.042 5.418-24.819 14.127-33.202l0.015-0.014c8.533-9.387 36.693-42.667 36.693-42.667-0.13-0.448-0.205-0.962-0.205-1.493s0.075-1.046 0.214-1.532l-0.010 0.039-80.213-112.64c-2.709-3.485-6.33-6.143-10.506-7.63l-0.161-0.050zM635.733 807.253v0zM426.667 709.973s0 0 0 0 0 0.853 0 0zM529.92 523.947h-70.4c42.667-42.667 77.227-79.36 77.227-125.44 0.034-0.837 0.054-1.82 0.054-2.808 0-40.53-32.856-73.387-73.387-73.387-2.121 0-4.222 0.090-6.298 0.266l0.271-0.019c-0.101-0-0.22-0.001-0.339-0.001-26.701 0-51.182 9.507-70.243 25.32l0.182-0.147c-2.444 2.197-3.974 5.368-3.974 8.897 0 1.72 0.363 3.355 1.018 4.832l-0.030-0.076 9.813 22.613c1.214 3.344 4.101 5.806 7.623 6.392l0.057 0.008c1.442 0.666 3.129 1.054 4.907 1.054s3.465-0.388 4.981-1.085l-0.074 0.031c10.685-9.485 24.631-15.509 39.965-16.208l0.141-0.005c1.226-0.186 2.641-0.293 4.081-0.293 15.788 0 28.587 12.799 28.587 28.587 0 1.307-0.088 2.593-0.257 3.853l0.016-0.147c0 28.16-23.467 55.040-79.36 108.373l-23.467 23.040c-2.332 1.952-3.812 4.853-3.84 8.102l-0 0.005v18.347c0.227 6.269 5.251 11.293 11.499 11.519l0.021 0.001h142.080c6.362 0 11.52-5.158 11.52-11.52v0-24.747c0.422-1.149 0.666-2.476 0.666-3.859 0-6.362-5.158-11.52-11.52-11.52-0.234 0-0.467 0.007-0.697 0.021l0.032-0.002zM754.773 464.64h-19.627v-128c-0.55-5.277-4.592-9.464-9.75-10.232l-0.063-0.008h-32.853c-3.818 0.035-7.203 1.855-9.366 4.665l-0.021 0.028-98.987 142.080c-1.292 1.922-2.081 4.277-2.133 6.813l-0 0.013v19.627c0 6.362 5.158 11.52 11.52 11.52v0h89.173v49.067c0 6.362 5.158 11.52 11.52 11.52v0h31.147c6.362 0 11.52-5.158 11.52-11.52h0v-48.213h19.627c6.362 0 11.52-5.158 11.52-11.52v0-23.467c0.022-0.266 0.034-0.575 0.034-0.888 0-6.362-5.158-11.52-11.52-11.52-0.312 0-0.622 0.012-0.928 0.037l0.040-0.003zM683.52 464.64h-39.253l38.4-55.040z","M817.493 794.453c-0.102 0.001-0.223 0.002-0.345 0.002-8.94 0-17-3.767-22.681-9.799l-0.015-0.016c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c66.551-63.259 107.949-152.439 107.949-251.288 0-0.457-0.001-0.913-0.003-1.369l0 0.071c-0.237-192.383-155.522-348.417-347.596-349.866l-0.137-0.001c-1.146-0.014-2.499-0.021-3.855-0.021-99.362 0-188.93 41.932-251.974 109.065l-0.171 0.184c-5.367 4.212-12.219 6.756-19.665 6.756-17.673 0-32-14.327-32-32 0-6.478 1.925-12.506 5.233-17.543l-0.075 0.121c75.549-79.353 181.985-128.704 299.947-128.704 228.52 0 413.782 185.21 413.867 413.71l0 0.008c0.002 0.416 0.002 0.91 0.002 1.403 0 116.991-49.099 222.515-127.816 297.089l-0.186 0.175c-5.368 4.514-12.356 7.257-19.985 7.257-0.174 0-0.348-0.001-0.521-0.004l0.026 0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-24"]},"attrs":[{},{}],"properties":{"order":6586,"id":378,"name":"delivery-24","prevSize":32,"code":59842},"setIdx":0,"setId":0,"iconIdx":194},{"icon":{"paths":["M501.333 840.533h-140.8c-63.439-0.242-114.773-51.726-114.773-115.199 0-0 0-0.001 0-0.001l-0 0v-554.667c-0-0-0-0.001-0-0.001 0-63.473 51.334-114.957 114.75-115.199l0.023-0h279.467c0.381-0.005 0.83-0.007 1.28-0.007 63.623 0 115.2 51.577 115.2 115.2 0 0.003-0 0.005-0 0.008l0-0.001v368.64c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-368.64c0.042-0.774 0.066-1.68 0.066-2.591 0-28.041-22.732-50.773-50.773-50.773-0.623 0-1.244 0.011-1.862 0.034l0.089-0.003h-279.467c-0.019-0-0.042-0-0.065-0-28.041 0-50.773 22.732-50.773 50.773 0 0.9 0.023 1.795 0.070 2.684l-0.005-0.124v554.667c-0.001 0.127-0.002 0.277-0.002 0.427 0 28.041 22.732 50.773 50.773 50.773 0.001 0 0.001-0 0.002-0l140.8 0c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM672 468.907v-77.227c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 77.653c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM928 895.573v-199.68c0.001-0.127 0.001-0.277 0.001-0.427 0-42.18-34.194-76.373-76.373-76.373-0 0-0.001 0-0.001 0l-199.253-0c-42.415 0-76.8 34.385-76.8 76.8v0 200.107c0.241 42.318 34.482 76.559 76.777 76.8l0.023 0h198.4c42.232-0.242 76.373-34.533 76.373-76.799 0-0-0-0.001-0-0.001l0 0zM850.773 682.667c0.002-0 0.005-0 0.007-0 6.834 0 12.373 5.54 12.373 12.373 0 0.15-0.003 0.299-0.008 0.448l0.001-0.022v200.533c0.005 0.127 0.007 0.277 0.007 0.427 0 6.834-5.54 12.373-12.373 12.373-0.003 0-0.005-0-0.008-0l-198.4 0c-6.883-0.237-12.373-5.874-12.373-12.793 0-0.002 0-0.005 0-0.007l-0 0v-200.107c0-7.069 5.731-12.8 12.8-12.8v0zM539.733 938.667c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-347.307c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h347.307c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-door"]},"attrs":[{}],"properties":{"order":6587,"id":377,"name":"delivery-door","prevSize":32,"code":59843},"setIdx":0,"setId":0,"iconIdx":195},{"icon":{"paths":["M912.64 538.453l-108.373-204.373c-20.901-38.937-58.995-66.301-103.85-72.035l-0.683-0.071c-19.206-119.194-121.34-209.135-244.48-209.135s-225.274 89.942-244.291 207.716l-0.189 1.42c-65.573 10.843-114.999 67.033-115.2 134.805l-0 0.021v358.827c-0.021 0.889-0.032 1.936-0.032 2.987 0 75.877 61.51 137.387 137.387 137.387 0.011 0 0.023-0 0.034-0l19.625 0c13.623 44.578 54.397 76.442 102.613 76.442s88.991-31.864 102.413-75.684l0.2-0.759h96.853c13.623 44.578 54.397 76.442 102.613 76.442s88.991-31.864 102.413-75.684l0.2-0.759h29.44c75.877 0 137.387-61.51 137.387-137.387v0-156.16c0.020-0.88 0.031-1.916 0.031-2.955 0-22.22-5.21-43.222-14.475-61.853l0.364 0.809zM855.893 568.32c5.374 9.846 8.533 21.568 8.533 34.027 0 0.037-0 0.075-0 0.112l0-0.006h-91.733c-2.558-0.403-4.517-2.509-4.692-5.103l-0.001-0.017v-115.2c0-3.063 2.483-5.547 5.547-5.547v0h34.987zM433.493 119.040c7.063-0.959 15.226-1.506 23.516-1.506 101.797 0 184.32 82.523 184.32 184.32 0 48.209-18.508 92.094-48.805 124.94l0.116-0.127-110.080 122.88c-3.741 2.602-8.221 4.416-13.064 5.101l-0.163 0.019c-1.281 0.173-2.762 0.271-4.267 0.271s-2.985-0.099-4.437-0.289l0.171 0.018h-6.4c-0.896 0.095-1.935 0.15-2.987 0.15s-2.091-0.054-3.115-0.16l0.128 0.011c-1.346 0.193-2.9 0.303-4.48 0.303s-3.134-0.11-4.655-0.323l0.175 0.020c-4.92-1.865-9.074-4.784-12.344-8.499l-0.029-0.034-109.227-119.467c-7.702-8.942-14.886-18.841-21.213-29.317l-0.547-0.977c-2.551-4.538-4.997-9.887-7.010-15.444l-0.244-0.769c-2.56-5.547-5.547-11.093-7.68-17.067-1.818-5.989-3.456-13.341-4.582-20.859l-0.111-0.901c0-5.547-2.56-11.093-3.413-16.213s0-13.653 0-20.48 0-17.92 0-27.307c11.83-82.939 77.201-147.583 159.501-158.196l0.926-0.098zM355.413 906.24c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM659.2 906.24c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM864.427 756.907c0 40.53-32.856 73.387-73.387 73.387v0h-29.44c-13.623-44.578-54.397-76.442-102.613-76.442s-88.991 31.864-102.413 75.684l-0.2 0.759h-98.56c-13.623-44.578-54.397-76.442-102.613-76.442s-88.991 31.864-102.413 75.684l-0.2 0.759h-19.627c-40.53 0-73.387-32.856-73.387-73.387h0v-358.827c-0-0.011-0-0.024-0-0.037 0-31.895 20.466-59.009 48.981-68.928l0.512-0.155s0 0 0 2.987c1.371 11.457 3.317 21.593 5.903 31.47l-0.357-1.604c0 2.56 0 5.12 0 7.68 3.201 12.424 6.994 23.074 11.609 33.272l-0.515-1.272 2.56 5.12c4.267 8.533 8.533 17.067 13.653 25.173l5.12 8.107c6.856 10.263 13.73 19.171 21.149 27.587l-0.242-0.28 109.653 122.88c18.471 20.109 44.889 32.667 74.24 32.667s55.769-12.558 74.174-32.594l0.066-0.073 113.92-120.747c9.106-10.131 17.545-21.283 25.002-33.117l0.598-1.017 6.4-12.373c3.73-7.525 7.35-16.57 10.29-25.917l0.377-1.39c2.133-5.12 3.84-10.24 5.547-15.36 2.281-6.525 4.633-14.959 6.529-23.564l0.298-1.61c1.275-4.701 2.327-10.357 2.944-16.143l0.043-0.497c0.793-2.974 1.54-6.733 2.072-10.56l0.061-0.534c20.131 5.466 36.476 18.747 45.888 36.301l0.192 0.393 25.6 48.64c-38.41 0-69.547 31.137-69.547 69.547h-0v115.2c0 38.41 31.137 69.547 69.547 69.547h91.733zM455.253 415.573c62.076-0.485 112.21-50.92 112.21-113.063 0-62.445-50.622-113.067-113.067-113.067-62.144 0-112.578 50.135-113.063 112.164l-0 0.046c-0 0.001-0 0.002-0 0.003 0 62.445 50.622 113.067 113.067 113.067 0.3 0 0.6-0.001 0.899-0.004l-0.046 0zM455.253 253.44c27.096 0.004 49.059 21.971 49.059 49.067 0 27.099-21.968 49.067-49.067 49.067s-49.067-21.968-49.067-49.067c0-0.3 0.003-0.599 0.008-0.898l-0.001 0.045c0.239-27.002 22.065-48.827 49.044-49.067l0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-geolocation"]},"attrs":[{}],"properties":{"order":6588,"id":376,"name":"delivery-geolocation","prevSize":32,"code":59844},"setIdx":0,"setId":0,"iconIdx":196},{"icon":{"paths":["M341.333 384c-3.601-5.15-5.753-11.544-5.753-18.44 0-9.619 4.189-18.261 10.842-24.199l0.032-0.028 63.573-51.627v-78.933c0-17.673 14.327-32 32-32s32 14.327 32 32v0 94.293c-0.033 10.207-4.84 19.284-12.303 25.12l-0.070 0.053-75.52 60.16c-5.228 4.253-11.969 6.828-19.311 6.828-0.111 0-0.222-0.001-0.333-0.002l0.017 0c-10.306-0.385-19.352-5.46-25.112-13.142l-0.061-0.085zM976.213 560.213v173.227c-0.242 83.084-67.529 150.371-150.59 150.613l-0.023 0h-35.84c-14.411 49.385-59.277 84.853-112.427 84.853s-98.016-35.468-112.22-84.027l-0.207-0.826h-116.48c-14.411 49.385-59.277 84.853-112.427 84.853s-98.016-35.468-112.22-84.027l-0.207-0.826h-25.173c-83.084-0.242-150.371-67.529-150.613-150.59l-0-0.023v-401.493c0.242-83.084 67.529-150.371 150.59-150.613l0.023-0h22.187c45.147-76.805 127.368-127.546 221.44-127.546s176.293 50.741 220.787 126.347l0.653 1.199h40.533c57.415 0.011 107.322 32.146 132.725 79.41l0.395 0.803 121.6 229.547c10.808 20.44 17.25 44.641 17.493 70.324l0.001 0.076zM848.213 414.72h-42.667c-5.655 0-10.24 4.585-10.24 10.24h-0v128c0 5.655 4.585 10.24 10.24 10.24h107.52v-3.84c0-0.001 0-0.001 0-0.002 0-14.849-3.793-28.813-10.463-40.975l0.223 0.443zM250.88 308.053c0 106.039 85.961 192 192 192s192-85.961 192-192c0-106.039-85.961-192-192-192v0c-0.127-0-0.278-0-0.429-0-106.274 0-192.427 86.152-192.427 192.427 0 0.3 0.001 0.6 0.002 0.9l-0-0.046zM389.12 853.333c0-29.455-23.878-53.333-53.333-53.333s-53.333 23.878-53.333 53.333c0 29.455 23.878 53.333 53.333 53.333v0c29.455 0 53.333-23.878 53.333-53.333v0zM730.453 853.333c0-29.455-23.878-53.333-53.333-53.333s-53.333 23.878-53.333 53.333c0 29.455 23.878 53.333 53.333 53.333v0c29.455 0 53.333-23.878 53.333-53.333h0zM912.213 629.333h-107.52c-0 0-0.001 0-0.001 0-41.002 0-74.24-33.238-74.24-74.24 0-0.15 0-0.3 0.001-0.45l-0 0.023v-128c0-41.002 33.238-74.24 74.24-74.24l-0 0h5.973l-32-60.587c-14.237-27.443-42.227-45.986-74.597-46.506l-0.070-0.001h-14.507c5.418 19.166 8.533 41.176 8.533 63.915 0 0.030-0 0.060-0 0.090l0-0.004c0 141.385-114.615 256-256 256s-256-114.615-256-256v0c0.103-22.628 3.054-44.52 8.512-65.399l-0.405 1.826c-45.826 1.655-82.347 39.203-82.347 85.281 0 0.018 0 0.037 0 0.055l-0-0.003v402.773c0 47.128 38.205 85.333 85.333 85.333v0h25.173c14.411-49.385 59.277-84.853 112.427-84.853s98.016 35.468 112.22 84.027l0.207 0.826h116.48c14.411-49.385 59.277-84.853 112.427-84.853s98.016 35.468 112.22 84.027l0.207 0.826h35.84c47.128 0 85.333-38.205 85.333-85.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-time"]},"attrs":[{}],"properties":{"order":6589,"id":375,"name":"delivery-time","prevSize":32,"code":59845},"setIdx":0,"setId":0,"iconIdx":197},{"icon":{"paths":["M1003.947 536.32l-72.533-139.52-46.933-90.027c-25.211-48.126-74.729-80.444-131.813-80.64l-0.027-0h-36.267v-24.32c0.001-0.127 0.001-0.277 0.001-0.427 0-57.025-46.228-103.253-103.253-103.253-0 0-0.001 0-0.001 0l-310.613 0c-108.447 0.243-196.267 88.212-196.267 196.693 0 0 0 0 0 0l0 0v485.12c-0 0.127-0.001 0.277-0.001 0.427 0 82.71 67.050 149.76 149.76 149.76 0 0 0.001-0 0.001-0l23.893 0c13.764 49.326 58.3 84.91 111.147 84.91s97.382-35.585 110.953-84.1l0.194-0.811h113.92c13.764 49.326 58.3 84.91 111.147 84.91s97.382-35.585 110.953-84.1l0.194-0.811h34.987c82.343-0.484 148.907-67.347 148.907-149.758 0-0.151-0-0.302-0.001-0.452l0 0.023v-173.227c-0.198-25.855-6.974-50.084-18.733-71.154l0.386 0.754zM947.2 565.76c6.463 11.73 10.266 25.71 10.266 40.578 0 0.734-0.009 1.466-0.028 2.196l0.002-0.108v3.413h-104.107c-0.003 0-0.006 0-0.010 0-5.184 0-9.387-4.203-9.387-9.387 0-0.15 0.004-0.299 0.010-0.448l-0.001 0.021v-132.693c0.637-4.727 4.562-8.359 9.369-8.533l0.017-0h42.667zM170.667 294.827c-0-0.001-0-0.002-0-0.003 0-72.984 58.923-132.207 131.794-132.69l0.046-0h310.613c21.73 0.241 39.253 17.913 39.253 39.678 0 0.001-0 0.002-0 0.002l0-0v369.493c-0.241 21.495-17.722 38.827-39.251 38.827-0.001 0-0.002-0-0.002-0l-442.453 0zM390.4 951.467c-0.381 0.010-0.83 0.015-1.28 0.015-29.455 0-53.333-23.878-53.333-53.333s23.878-53.333 53.333-53.333c29.45 0 53.325 23.869 53.333 53.317l0 0.001c0.001 0.129 0.002 0.281 0.002 0.434 0 28.92-23.204 52.421-52.010 52.899l-0.045 0.001zM726.613 951.467c-29.455 0-53.333-23.878-53.333-53.333s23.878-53.333 53.333-53.333v0c29.455 0 53.333 23.878 53.333 53.333s-23.878 53.333-53.333 53.333v0zM957.44 780.8c0 47.128-38.205 85.333-85.333 85.333v0h-34.987c-13.764-49.326-58.3-84.91-111.147-84.91s-97.382 35.585-110.953 84.1l-0.194 0.811h-113.493c-13.764-49.326-58.3-84.91-111.147-84.91s-97.382 35.585-110.953 84.1l-0.194 0.811h-23.040c-47.128 0-85.333-38.205-85.333-85.333v0-106.667h442.453c0.127 0.001 0.277 0.001 0.427 0.001 56.79 0 102.827-46.037 102.827-102.827 0-0-0-0.001-0-0.001l0 0v-281.173h36.267c32.524 0.266 60.684 18.687 74.869 45.614l0.224 0.466 31.573 60.587h-5.973c-0.257-0.003-0.56-0.005-0.864-0.005-40.318 0-73.086 32.325-73.801 72.471l-0.001 0.067v128c-0.051 1.023-0.080 2.221-0.080 3.426 0 40.53 32.856 73.387 73.387 73.387 0.478 0 0.955-0.005 1.431-0.014l-0.071 0.001h105.387z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery"]},"attrs":[{}],"properties":{"order":6590,"id":374,"name":"delivery","prevSize":32,"code":59846},"setIdx":0,"setId":0,"iconIdx":198},{"icon":{"paths":["M896 53.333h-85.333c-41.14 0.241-74.426 33.526-74.667 74.644l-0 0.023v10.667h-366.080c-127.718 0-231.253 103.536-231.253 231.253v0 366.080h-10.667c-41.14 0.241-74.426 33.526-74.667 74.644l-0 0.023v85.333c0.241 41.14 33.526 74.426 74.644 74.667l0.023 0h426.667c41.14-0.241 74.426-33.526 74.667-74.644l0-0.023v-96h96c41.14-0.241 74.426-33.526 74.667-74.644l0-0.023v-96h96c41.14-0.241 74.426-33.526 74.667-74.644l0-0.023v-426.667c-0.241-41.14-33.526-74.426-74.644-74.667l-0.023-0zM800 128c0-5.891 4.776-10.667 10.667-10.667v0h85.333c5.891 0 10.667 4.776 10.667 10.667v0 256c0 5.891-4.776 10.667-10.667 10.667v0h-96zM736 554.667c0 5.891-4.776 10.667-10.667 10.667v0h-96v-96c0-5.891 4.776-10.667 10.667-10.667v0h96zM202.667 369.92c0.242-92.274 74.979-167.011 167.23-167.253l0.023-0h366.080v192h-96c-41.14 0.241-74.426 33.526-74.667 74.644l-0 0.023v96h-96c-41.14 0.241-74.426 33.526-74.667 74.644l-0 0.023v96h-192zM565.333 725.333c0 5.891-4.776 10.667-10.667 10.667v0h-96v-96c0-5.891 4.776-10.667 10.667-10.667v0h96zM303.36 906.667h-175.36c-5.891 0-10.667-4.776-10.667-10.667v0-85.333c0-5.891 4.776-10.667 10.667-10.667v0h266.667v96c0 5.891-4.776 10.667-10.667 10.667v0zM554.667 906.667h-97.28c0.213-1.602 0.335-3.453 0.335-5.333s-0.122-3.732-0.357-5.548l0.023 0.214v-96h97.28c1.602 0.213 3.453 0.335 5.333 0.335s3.732-0.122 5.548-0.357l-0.214 0.023v96c0 5.891-4.776 10.667-10.667 10.667v0zM725.333 736h-97.28c0.213-1.602 0.335-3.453 0.335-5.333s-0.122-3.732-0.357-5.548l0.023 0.214v-96h97.28c1.602 0.213 3.453 0.335 5.333 0.335s3.732-0.122 5.548-0.357l-0.214 0.023v96c0 5.891-4.776 10.667-10.667 10.667v0zM896 565.333h-97.28c0.213-1.602 0.335-3.453 0.335-5.333s-0.122-3.732-0.357-5.548l0.023 0.214v-96h97.28c1.602 0.213 3.453 0.335 5.333 0.335s3.732-0.122 5.548-0.357l-0.214 0.023v96c0 5.891-4.776 10.667-10.667 10.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["design-2"]},"attrs":[{}],"properties":{"order":6591,"id":373,"name":"design-2","prevSize":32,"code":59847},"setIdx":0,"setId":0,"iconIdx":199},{"icon":{"paths":["M885.333 653.653v-405.76c-0-60.324-48.902-109.227-109.227-109.227h-405.76c-11.14-49.172-54.467-85.333-106.239-85.333-0 0-0.001 0-0.001 0l-16.213-0c-0.017-0-0.036-0-0.056-0-52.622 0-96.553 37.212-106.913 86.757l-0.124 0.71c-49.199 11.311-85.335 54.726-85.335 106.582 0 0.18 0 0.36 0.001 0.54l-0-0.028v16.213c-0 0-0 0.001-0 0.001 0 51.772 36.161 95.099 84.604 106.1l0.729 0.139v405.76c0 60.324 48.902 109.227 109.227 109.227h405.76c11.14 49.172 54.467 85.333 106.239 85.333 0 0 0.001-0 0.001-0l16.213 0c51.763-1.018 94.627-37.891 104.836-86.757l0.124-0.71c50.255-10.485 87.467-54.415 87.467-107.037 0-0.020-0-0.040-0-0.059l0 0.003v-16.213c0-0 0-0.001 0-0.001 0-51.772-36.161-95.099-84.604-106.1l-0.729-0.139zM138.667 302.507c-12.892-8.117-21.333-22.273-21.333-38.4v0-16.213c0-16.127 8.441-30.283 21.146-38.29l0.187-0.11zM650.667 821.333h-402.773c-0.127 0.001-0.278 0.002-0.429 0.002-24.742 0-44.8-20.058-44.8-44.8 0-0.151 0.001-0.301 0.002-0.452l-0 0.023v-613.547c-0.001-0.127-0.002-0.278-0.002-0.429 0-24.742 20.058-44.8 44.8-44.8 0.151 0 0.301 0.001 0.452 0.002l-0.023-0h16.213c0.127-0.001 0.278-0.002 0.429-0.002 24.742 0 44.8 20.058 44.8 44.8 0 0.151-0.001 0.301-0.002 0.452l0-0.023v485.547c0 36.76 29.8 66.56 66.56 66.56v0h274.773zM650.667 650.667l-277.333-2.133v-274.773l277.333 2.133zM821.333 864c0.001 0.127 0.002 0.278 0.002 0.429 0 24.742-20.058 44.8-44.8 44.8-0.151 0-0.301-0.001-0.452-0.002l0.023 0h-16.213c-0.127 0.001-0.278 0.002-0.429 0.002-24.742 0-44.8-20.058-44.8-44.8 0-0.151 0.001-0.301 0.002-0.452l-0 0.023v-488.107c0-36.76-29.8-66.56-66.56-66.56v0h-274.773v-106.667h402.773c0.127-0.001 0.278-0.002 0.429-0.002 24.742 0 44.8 20.058 44.8 44.8 0 0.151-0.001 0.301-0.002 0.452l0-0.023zM906.667 778.667c-0.225 15.822-8.618 29.635-21.144 37.437l-0.19 0.11v-93.867c12.715 7.911 21.108 21.725 21.333 37.514l0 0.033z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["design-frame"]},"attrs":[{}],"properties":{"order":6592,"id":372,"name":"design-frame","prevSize":32,"code":59848},"setIdx":0,"setId":0,"iconIdx":200},{"icon":{"paths":["M512 969.387c-252.608 0-457.387-204.779-457.387-457.387s204.779-457.387 457.387-457.387c252.608 0 457.387 204.779 457.387 457.387v0c-0.243 252.51-204.877 457.144-457.364 457.387l-0.023 0zM512 118.613c-217.261-0-393.387 176.125-393.387 393.387s176.125 393.387 393.387 393.387c217.261 0 393.387-176.125 393.387-393.387v0c-0.484-217.066-176.32-392.902-393.34-393.387l-0.047-0zM440.32 813.653c-14.154-0.033-27.641-2.852-39.953-7.936l0.7 0.256c-116.567-48.862-196.958-162.030-196.958-293.973s80.391-245.111 194.864-293.193l2.094-0.78c11.469-4.901 24.814-7.75 38.825-7.75 21.003 0 40.51 6.403 56.676 17.364l-0.355-0.227c27.654 18.69 45.606 49.91 45.653 85.326l0 0.007v397.653c-0.047 35.423-18 66.644-45.29 85.102l-0.363 0.231c-15.727 10.664-34.978 17.265-55.729 17.916l-0.165 0.004zM440.32 274.347c-5.067 0.059-9.899 0.993-14.375 2.656l0.295-0.096c-91.22 40.499-153.689 130.288-153.689 234.667s62.469 194.168 152.060 234.019l1.629 0.647c4.318 1.96 9.363 3.101 14.675 3.101 7.762 0 14.955-2.439 20.854-6.592l-0.115 0.077c10.594-6.952 17.494-18.775 17.494-32.21 0-0.076-0-0.152-0.001-0.228l0 0.012v-397.227c0-0.064 0.001-0.14 0.001-0.216 0-13.435-6.899-25.258-17.349-32.121l-0.145-0.090c-5.883-4.009-13.147-6.402-20.97-6.402-0.128 0-0.255 0.001-0.383 0.002l0.019-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["design-mask"]},"attrs":[{}],"properties":{"order":6593,"id":371,"name":"design-mask","prevSize":32,"code":59849},"setIdx":0,"setId":0,"iconIdx":201},{"icon":{"paths":["M170.667 730.027c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-325.973c0.242-128.006 104.067-231.682 232.106-231.682 0.3 0 0.6 0.001 0.9 0.002l-0.046-0h311.040c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-311.040c-92.607 0-167.68 75.073-167.68 167.68h-0v325.973c0 0.008 0 0.017 0 0.026 0 17.673-14.327 32-32 32-0.45 0-0.898-0.009-1.344-0.028l0.064 0.002zM885.333 779.52v-535.040c27.162-13.357 45.526-40.831 45.526-72.593 0-43.441-34.35-78.859-77.37-80.575l-0.156-0.005c-44.428 0.143-80.389 36.192-80.389 80.64 0 31.714 18.308 59.153 44.931 72.323l0.471 0.211c-50.347 425.813-409.173 547.413-570.453 580.693-11.404-31.589-41.127-53.762-76.029-53.762-44.536 0-80.64 36.104-80.64 80.64s36.104 80.64 80.64 80.64c30.463 0 56.982-16.892 70.698-41.82l0.21-0.417c136.96-27.307 445.44-122.453 579.84-421.12v308.907c-30.697 12.007-52.043 41.357-52.043 75.693 0 44.772 36.295 81.067 81.067 81.067s81.067-36.295 81.067-81.067c0-32.057-18.607-59.768-45.61-72.922l-0.481-0.211z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["design"]},"attrs":[{}],"properties":{"order":6594,"id":370,"name":"design","prevSize":32,"code":59850},"setIdx":0,"setId":0,"iconIdx":202},{"icon":{"paths":["M705.707 970.667h-387.413c-122.672-0.242-222.051-99.622-222.293-222.27l-0-0.023v-472.747c0.242-122.672 99.622-222.051 222.27-222.293l0.023-0h243.627c65.754 0.256 124.751 28.967 165.356 74.449l0.191 0.218 143.787 160c35.21 39.109 56.747 91.134 56.747 148.19 0 0.102-0 0.204-0 0.306l0-0.016v312.747c-0.725 122.305-99.92 221.2-222.27 221.44l-0.023 0zM318.293 117.333c-87.423 0-158.293 70.87-158.293 158.293h0v472.747c0 87.423 70.87 158.293 158.293 158.293h387.413c87.423 0 158.293-70.87 158.293-158.293v0-312.747c0-0.010 0-0.022 0-0.034 0-40.732-15.384-77.87-40.659-105.922l0.126 0.142-143.787-159.147c-29.134-32.243-71.085-52.431-117.751-52.48l-0.009-0zM430.080 789.76c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-63.147-61.867 63.147-62.72c5.806-5.858 9.393-13.924 9.393-22.827 0-17.912-14.521-32.433-32.433-32.433-9.009 0-17.16 3.673-23.038 9.604l-0.002 0.002-85.333 85.333c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 85.333 85.333c5.832 5.719 13.797 9.281 22.593 9.386l0.020 0c0.12 0.002 0.262 0.003 0.404 0.003 9.055 0 17.231-3.761 23.053-9.806l0.010-0.010zM639.147 789.76l85.333-85.333c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-85.333-85.333c-5.858-6.274-14.178-10.185-23.412-10.185-17.673 0-32 14.327-32 32 0 9.234 3.911 17.554 10.166 23.394l0.019 0.017 63.147 63.573-62.72 62.293c-5.751 5.804-9.305 13.794-9.305 22.613 0 17.746 14.386 32.131 32.131 32.131 8.926 0 17.002-3.64 22.824-9.516l0.002-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["devices-2"]},"attrs":[{}],"properties":{"order":6595,"id":369,"name":"devices-2","prevSize":32,"code":59851},"setIdx":0,"setId":0,"iconIdx":203},{"icon":{"paths":["M757.333 917.333h-490.667c-117.821 0-213.333-95.513-213.333-213.333v0-384c0-117.821 95.513-213.333 213.333-213.333v0h490.667c117.821 0 213.333 95.513 213.333 213.333v0 384c0 117.821-95.513 213.333-213.333 213.333v0zM266.667 170.667c-82.475 0-149.333 66.859-149.333 149.333v0 384c0 82.475 66.859 149.333 149.333 149.333v0h490.667c82.475 0 149.333-66.859 149.333-149.333v0-384c0-82.475-66.859-149.333-149.333-149.333v0zM309.333 384c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-0.006 0-0.012 0-0.019 0-23.564-19.103-42.667-42.667-42.667-0.45 0-0.899 0.007-1.345 0.021l0.065-0.002zM434.347 384c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-0.006 0-0.012 0-0.019 0-23.564-19.103-42.667-42.667-42.667-0.45 0-0.899 0.007-1.345 0.021l0.065-0.002zM752.64 426.667c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-141.227c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h139.947c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM752.64 661.333c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-412.587c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h411.307c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["devices"]},"attrs":[{}],"properties":{"order":6596,"id":368,"name":"devices","prevSize":32,"code":59852},"setIdx":0,"setId":0,"iconIdx":204},{"icon":{"paths":["M704 117.333h11.947c14.181 2.245 26.762 7.832 37.315 15.93l-0.195-0.143c5.273 3.84 9.887 8.047 14 12.708l0.080 0.092c2.654 2.893 5.052 6.105 7.105 9.546l0.148 0.267c2.165 3.073 4.161 6.576 5.813 10.266l0.16 0.4 115.627 260.267c6.067 12.93 9.608 28.080 9.608 44.057 0 27.231-10.286 52.059-27.185 70.812l0.084-0.095-302.507 336.64c-16.27 17.625-39.49 28.626-65.28 28.626s-49.010-11.001-65.225-28.566l-0.055-0.060-301.227-337.493c-16.151-18.48-26.001-42.826-26.001-69.473 0-16.128 3.608-31.413 10.061-45.092l-0.274 0.645 115.627-258.987c0-3.84 10.667-17.493 13.227-20.907 5.026-6.218 10.95-11.463 17.623-15.615l0.297-0.172c12.692-8.554 28.328-13.653 45.154-13.653 0.025 0 0.051 0 0.076 0l383.996-0zM704 53.333h-384c-0.135-0-0.294-0.001-0.454-0.001-29.692 0-57.3 8.92-80.291 24.227l0.532-0.333c-12.121 7.849-22.519 17.027-31.403 27.527l-0.17 0.206c-6.787 9.196-13.433 19.659-19.348 30.576l-0.706 1.424-116.48 256c-9.646 20.725-15.274 44.991-15.274 70.571 0 43.774 16.48 83.7 43.575 113.91l-0.141-0.16 302.507 336.64c27.962 30.637 68.065 49.784 112.64 49.784s84.678-19.147 112.533-49.665l302.614-336.332c27.047-30.074 43.589-70.067 43.589-113.923 0-25.348-5.526-49.406-15.44-71.034l0.437 1.064-120.32-252.587c-3.121-7.386-6.549-13.697-10.507-19.624l0.267 0.424-8.96-15.787c-18.519-31.819-52.45-52.875-91.302-52.907l-0.005-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["diamonds"]},"attrs":[{}],"properties":{"order":6597,"id":367,"name":"diamonds","prevSize":32,"code":59853},"setIdx":0,"setId":0,"iconIdx":205},{"icon":{"paths":["M853.333 478.72v-258.133c-0.242-92.274-74.979-167.011-167.23-167.253l-0.023-0h-344.747c-0.889-0.017-1.937-0.027-2.987-0.027-92.466 0-167.452 74.845-167.679 167.258l-0 0.022v256c-48.018 31.303-79.325 84.738-79.36 145.488l-0 0.005v145.92c1.197 112.194 92.426 202.683 204.789 202.683 0.904 0 1.807-0.006 2.708-0.018l-0.137 0.001h426.667c0.257 0.001 0.561 0.002 0.864 0.002 112.359 0 203.584-90.481 204.788-202.555l0.001-0.114v-144.213c0.001-0.175 0.001-0.383 0.001-0.59 0-60.076-30.582-113.009-77.026-144.081l-0.628-0.396zM236.373 220.587c0.238-57.081 46.565-103.261 103.679-103.261 0.45 0 0.9 0.003 1.349 0.009l-0.068-0.001h345.6c56.928 0.241 103.012 46.325 103.253 103.23l0 0.023v232.533c-9.289-1.767-20.044-2.848-31.025-2.985l-0.122-0.001h-35.413c-0.717-0.011-1.564-0.017-2.412-0.017-53.456 0-101.326 23.919-133.491 61.638l-0.204 0.245-12.373 14.933c-15.207 18.052-37.825 29.441-63.103 29.441-0.165 0-0.331-0-0.496-0.001l0.025 0c-0.013 0-0.029 0-0.045 0-25.277 0-47.895-11.389-63-29.316l-0.102-0.124-12.8-15.36c-32.377-38.205-80.396-62.294-134.042-62.294-0.126 0-0.252 0-0.378 0l0.020-0h-34.56c-10.802 0.14-21.258 1.221-31.407 3.164l1.114-0.177zM866.987 768c-0.96 76.791-63.435 138.673-140.363 138.673-0.454 0-0.907-0.002-1.36-0.006l0.069 0.001h-426.667c-0.383 0.004-0.837 0.006-1.29 0.006-76.928 0-139.403-61.881-140.362-138.582l-0.001-0.091v-144.213c0-60.56 49.093-109.653 109.653-109.653v0h34.56c34.151 0.028 64.713 15.365 85.2 39.518l0.134 0.162 12.8 15.36c27.248 31.935 67.532 52.053 112.514 52.053 0.044 0 0.089-0 0.133-0l-0.007 0c45.105-0.012 85.466-20.308 112.46-52.262l0.18-0.218 12.373-14.933c20.62-24.315 51.183-39.652 85.328-39.68l35.418-0c60.56 0 109.653 49.093 109.653 109.653v0zM384 273.92c0.237-17.577 14.423-31.763 31.977-32l0.023-0h192c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-192c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023zM597.333 392.96c0 17.673-14.327 32-32 32v0h-110.933c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h110.080c0.254-0.007 0.553-0.011 0.853-0.011 17.673 0 32 14.327 32 32 0 0.004-0 0.008-0 0.012l0-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directbox-default"]},"attrs":[{}],"properties":{"order":6598,"id":366,"name":"directbox-default","prevSize":32,"code":59854},"setIdx":0,"setId":0,"iconIdx":206},{"icon":{"paths":["M298.667 970.667h-10.667c-72.22-2.988-135.918-37.087-178.427-89.163l-0.346-0.437c-33.428-42.534-53.611-96.853-53.611-155.886 0-70.971 29.172-135.129 76.179-181.137l0.045-0.044 113.067-113.067c13.502-13.45 32.126-21.766 52.693-21.766s39.192 8.316 52.696 21.768l-0.002-0.002 30.72 30.72c13.475 13.57 21.803 32.266 21.803 52.907s-8.328 39.337-21.807 52.911l0.004-0.004-119.467 119.040c-9.384 9.729-15.165 22.988-15.165 37.596 0 17.991 8.768 33.935 22.264 43.79l0.154 0.107c8.727 5.603 19.379 8.932 30.808 8.932 16.407 0 31.212-6.86 41.703-17.868l0.022-0.023 115.627-116.053c13.44-13.469 32.024-21.802 52.553-21.802 0.875 0 1.746 0.015 2.613 0.045l-0.126-0.003c0.117-0.001 0.256-0.001 0.394-0.001 20.509 0 39.076 8.316 52.512 21.761l30.72 30.72c12.173 13.063 19.645 30.646 19.645 49.975 0 0.581-0.007 1.16-0.020 1.738l0.002-0.086c0.001 0.117 0.001 0.256 0.001 0.394 0 20.509-8.316 39.076-21.761 52.512l-119.467 119.467c-44.855 44.968-106.841 72.83-175.335 72.96l-0.025 0zM298.667 472.747c-2.95 0.096-5.623 1.21-7.696 3l0.016-0.013-113.92 113.067c-35.463 34.399-57.471 82.494-57.471 135.73 0 43.533 14.717 83.629 39.448 115.584l-0.323-0.434c31.698 38.99 78.776 64.418 131.854 66.971l0.413 0.016c2.376 0.11 5.162 0.172 7.962 0.172 50.659 0 96.545-20.437 129.862-53.516l-0.011 0.011 119.467-119.467c1.851-1.977 2.987-4.642 2.987-7.573 0-0.038-0-0.075-0.001-0.113l0 0.006c0-0.007 0-0.016 0-0.025 0-2.821-1.141-5.376-2.987-7.229l0 0-30.72-30.72c-5.547-5.547-9.813-5.547-14.933 0v0l-116.053 116.053c-22.116 22.719-52.995 36.813-87.164 36.813-25.251 0-48.705-7.697-68.142-20.872l0.427 0.273c-30.657-21.559-50.444-56.78-50.444-96.623 0-32.812 13.42-62.49 35.070-83.844l0.013-0.013 119.467-119.040c1.854-1.788 3.006-4.293 3.006-7.068 0-0.215-0.007-0.429-0.021-0.641l0.001 0.029c0.021-0.235 0.033-0.507 0.033-0.783 0-2.724-1.16-5.177-3.013-6.891l-0.006-0.006-30.72-30.72c-1.609-1.334-3.695-2.143-5.97-2.143-0.151 0-0.302 0.004-0.451 0.011l0.021-0.001zM480.427 665.6v0zM721.493 622.933c-21.479-0.759-40.547-10.478-53.685-25.513l-0.075-0.087-30.72-30.293c-13.475-13.57-21.803-32.266-21.803-52.907s8.328-39.337 21.807-52.911l-0.004 0.004 125.44-125.013c8.956-9.638 14.451-22.598 14.451-36.842 0-17.68-8.467-33.382-21.568-43.273l-0.137-0.099c-8.67-5.505-19.231-8.772-30.555-8.772-16.537 0-31.446 6.969-41.951 18.13l-0.027 0.029-121.6 121.6c-13.57 13.475-32.266 21.803-52.907 21.803s-39.337-8.328-52.911-21.807l0.004 0.004-28.587-30.72c-13.658-13.405-22.124-32.061-22.124-52.693s8.465-39.288 22.112-52.682l0.011-0.011 125.013-125.44c44.793-44.464 106.498-71.943 174.621-71.943 4.012 0 8.001 0.095 11.966 0.284l-0.56-0.021c72.22 2.988 135.918 37.087 178.427 89.163l0.346 0.437c33.428 42.534 53.611 96.853 53.611 155.886 0 70.971-29.172 135.129-76.179 181.137l-0.045 0.044-120.747 116.907c-13.201 14.067-31.754 22.977-52.392 23.465l-0.088 0.002zM725.333 183.040c0.246-0.002 0.537-0.003 0.828-0.003 24.438 0 47.086 7.667 65.67 20.726l-0.364-0.243c30.945 21.527 50.946 56.913 50.946 96.97 0 32.638-13.278 62.175-34.727 83.504l-125.019 124.165c-1.851 1.977-2.987 4.642-2.987 7.573 0 0.038 0 0.075 0.001 0.113l-0-0.006c-0 0.007-0 0.016-0 0.025 0 2.821 1.141 5.376 2.987 7.229l-0-0 30.72 30.72c1.873 1.992 4.525 3.232 7.467 3.232s5.594-1.241 7.462-3.227l0.005-0.005 119.040-118.613c35.492-34.469 57.516-82.64 57.516-135.954 0-43.606-14.733-83.772-39.494-115.789l0.325 0.437c-31.829-38.744-78.864-63.989-131.85-66.544l-0.416-0.016c-1.884-0.069-4.097-0.108-6.319-0.108-50.627 0-96.487 20.411-129.8 53.454l0.012-0.012-128 125.44c-2.091 1.734-3.413 4.333-3.413 7.241 0 0.004 0 0.009 0 0.013l-0-0.001c-0 0.014-0 0.031-0 0.047 0 3.028 1.314 5.749 3.404 7.624l0.010 0.008 30.293 30.72c1.595 2.621 4.436 4.345 7.68 4.345s6.085-1.724 7.658-4.305l0.022-0.040 121.6-122.027c22.857-22.47 54.147-36.425 88.695-36.693l0.052-0zM258.987 331.093c0.932-2.866 1.47-6.164 1.47-9.588 0-14.236-9.297-26.302-22.15-30.455l-0.226-0.063-89.6-28.16c-2.946-1.003-6.34-1.582-9.869-1.582-14.198 0-26.206 9.371-30.179 22.265l-0.059 0.224c-0.945 2.905-1.49 6.247-1.49 9.716 0 13.847 8.679 25.667 20.894 30.316l0.223 0.074 89.173 28.16h9.813c0.499 0.027 1.084 0.043 1.672 0.043 13.784 0 25.56-8.601 30.252-20.728l0.075-0.221zM365.227 226.133c15.659-2.027 27.631-15.279 27.631-31.326 0-1.592-0.118-3.157-0.345-4.687l0.021 0.173-8.533-62.293c-2.223-15.695-15.567-27.634-31.701-27.634-1.611 0-3.194 0.119-4.741 0.349l0.175-0.021c-15.659 2.027-27.631 15.279-27.631 31.326 0 1.592 0.118 3.157 0.345 4.687l-0.021-0.173 8.533 61.44c2.533 15.423 15.658 27.080 31.55 27.306l0.024 0zM700.16 884.48c14.624-3.344 25.369-16.242 25.369-31.649 0-2.238-0.227-4.423-0.658-6.533l0.036 0.209-18.773-91.733c-3.54-14.615-16.509-25.299-31.973-25.299-2.122 0-4.196 0.201-6.206 0.585l0.206-0.033c-14.635 3.142-25.446 15.969-25.446 31.322 0 2.356 0.255 4.652 0.738 6.863l-0.039-0.212 18.773 91.733c3.074 14.473 15.746 25.174 30.918 25.174 0.080 0 0.161-0 0.241-0.001l-0.012 0zM892.587 679.68c0.548-2.231 0.862-4.793 0.862-7.427 0-15.031-10.227-27.674-24.103-31.348l-0.226-0.051-58.453-14.507c-3.114-1.112-6.707-1.754-10.45-1.754-17.673 0-32 14.327-32 32 0 15.94 11.655 29.158 26.907 31.597l0.183 0.024 59.733 14.933c1.154 0.201 2.484 0.316 3.84 0.316s2.686-0.115 3.979-0.336l-0.139 0.020c14.238-0.449 26.097-10.134 29.812-23.241l0.055-0.226z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["disconnect"]},"attrs":[{}],"properties":{"order":6599,"id":365,"name":"disconnect","prevSize":32,"code":59855},"setIdx":0,"setId":0,"iconIdx":207},{"icon":{"paths":["M512 969.813c-0.182 0.001-0.398 0.002-0.614 0.002-33.144 0-63.124-13.545-84.707-35.403l-0.012-0.012-60.16-60.16c-2.153-2.111-5.105-3.415-8.362-3.415-0.060 0-0.12 0-0.18 0.001l0.009-0h-85.333c-0 0-0 0-0.001 0-66.536 0-120.503-53.817-120.746-120.297l-0-0.023v-85.333c0.003-0.102 0.005-0.223 0.005-0.343 0-3.203-1.307-6.101-3.417-8.189l-0.001-0.001-59.733-59.307c-21.926-21.799-35.496-51.981-35.496-85.333s13.57-63.535 35.49-85.328l0.006-0.006 60.16-60.587c2.121-1.885 3.45-4.62 3.45-7.665 0-0.306-0.013-0.608-0.040-0.907l0.003 0.039v-85.333c0.243-66.503 54.209-120.32 120.746-120.32 0 0 0.001 0 0.001 0l85.333-0c0.051 0.001 0.111 0.001 0.171 0.001 3.257 0 6.209-1.303 8.364-3.416l-0.002 0.002 59.733-60.16c22.114-21.226 52.197-34.297 85.333-34.297s63.219 13.071 85.376 34.337l-0.042-0.040 60.16 60.16c2.071 2.090 4.935 3.391 8.102 3.413l0.004 0h85.333c66.503 0.243 120.32 54.209 120.32 120.746 0 0-0 0.001-0 0.001l0-0v85.333c-0.001 0.051-0.001 0.111-0.001 0.171 0 3.257 1.303 6.209 3.416 8.364l-0.002-0.002 60.587 60.16c21.72 21.893 35.143 52.045 35.143 85.333s-13.423 63.441-35.151 85.341l0.008-0.008-60.587 59.307c-2.015 2.272-3.287 5.243-3.413 8.508l-0.001 0.025v85.333c0 66.451-53.869 120.32-120.32 120.32v0h-85.333c-3.172 0.022-6.036 1.323-8.106 3.412l-0.001 0.001-60.16 60.16c-21.726 21.874-51.819 35.414-85.074 35.414-0.091 0-0.182-0-0.273-0l0.014 0zM273.067 215.893c-31.243 0.24-56.507 25.503-56.747 56.724l-0 0.023v85.333c-0.067 20.968-8.526 39.948-22.194 53.767l0.007-0.007-60.16 59.733c-10.131 10.245-16.389 24.339-16.389 39.893s6.258 29.648 16.395 39.899l-0.005-0.005 60.16 60.16c13.707 13.673 22.187 32.581 22.187 53.469 0 0.103-0 0.205-0.001 0.307l0-0.016v85.333c0.242 31.156 25.555 56.32 56.745 56.32 0.001 0 0.001-0 0.002-0l85.333 0c20.968 0.067 39.948 8.526 53.767 22.194l-0.007-0.007 60.16 60.16c10.442 9.865 24.566 15.93 40.107 15.93s29.665-6.065 40.135-15.956l-0.028 0.026 60.16-60.16c13.642-13.676 32.494-22.148 53.326-22.187l0.007-0h85.333c31.105 0 56.32-25.215 56.32-56.32v0-85.333c0.116-20.96 8.563-39.925 22.196-53.77l-0.010 0.010 60.587-60.16c10.031-10.29 16.218-24.369 16.218-39.893s-6.187-29.603-16.23-39.905l0.012 0.012-61.013-60.16c-13.66-13.812-22.12-32.792-22.187-53.747l-0-0.013v-85.333c-0.24-31.008-25.312-56.080-56.297-56.32l-0.023-0h-85.333c-0.171 0.001-0.374 0.002-0.576 0.002-20.665 0-39.346-8.492-52.745-22.176l-0.013-0.013-60.16-60.16c-10.442-9.865-24.566-15.93-40.107-15.93s-29.665 6.065-40.135 15.956l0.028-0.026-60.16 60.16c-13.478 13.701-32.217 22.191-52.939 22.191-0.289 0-0.577-0.002-0.865-0.005l0.044 0zM384 672c-0.203 0.005-0.443 0.008-0.683 0.008-8.622 0-16.402-3.602-21.919-9.383l-0.011-0.012c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 256-256c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-256 256c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0zM384 341.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM640 597.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["discount"]},"attrs":[{}],"properties":{"order":6600,"id":364,"name":"discount","prevSize":32,"code":59856},"setIdx":0,"setId":0,"iconIdx":208},{"icon":{"paths":["M512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c-0.243-253.217-205.45-458.424-458.644-458.667l-0.023-0zM512 906.667c-217.968 0-394.667-176.698-394.667-394.667s176.698-394.667 394.667-394.667c217.968 0 394.667 176.698 394.667 394.667v0c-0.243 217.87-176.796 394.424-394.643 394.667l-0.024 0zM837.12 594.347c-28.499 111.17-109.972 198.562-215.251 234.817l-2.349 0.703c-1.537 0.196-3.315 0.308-5.12 0.308s-3.583-0.112-5.328-0.329l0.208 0.021c-0.127 0.002-0.276 0.003-0.426 0.003-13.772 0-25.484-8.817-29.8-21.115l-0.068-0.221c-1.116-3.141-1.76-6.764-1.76-10.538 0-13.466 8.208-25.014 19.893-29.916l0.214-0.080c86.68-30.457 152.361-100.782 175.777-188.376l0.436-1.917c3.477-13.943 15.89-24.11 30.678-24.11 2.898 0 5.704 0.39 8.37 1.121l-0.222-0.052c14.85 2.763 25.944 15.62 25.944 31.067 0 3.067-0.437 6.032-1.253 8.836l0.056-0.223zM433.493 253.013c-96.496 29.617-168.963 109.19-187.889 207.798l-0.271 1.695c-2.891 14.824-15.707 25.882-31.131 26.027l-0.016 0h-5.973c-14.997-2.847-26.183-15.85-26.183-31.467 0-2.151 0.212-4.252 0.617-6.284l-0.034 0.204c23.11-124.588 112.86-223.583 230.17-259.641l2.364-0.625c2.746-0.851 5.902-1.34 9.173-1.34 17.706 0 32.060 14.354 32.060 32.060 0 14.435-9.54 26.643-22.66 30.66l-0.227 0.060zM653.227 512c0-77.997-63.229-141.227-141.227-141.227s-141.227 63.229-141.227 141.227c0 77.997 63.229 141.227 141.227 141.227v0c77.997 0 141.227-63.229 141.227-141.227v0zM512 589.227c-42.651 0-77.227-34.576-77.227-77.227s34.576-77.227 77.227-77.227c42.651 0 77.227 34.576 77.227 77.227v0c0 42.651-34.576 77.227-77.227 77.227v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["disk"]},"attrs":[{}],"properties":{"order":6601,"id":363,"name":"disk","prevSize":32,"code":59857},"setIdx":0,"setId":0,"iconIdx":209},{"icon":{"paths":["M866.56 120.747h-89.6c-33.602 0.124-63.276 16.828-81.283 42.352l-0.211 0.315-81.493-65.707c-28.281-20.278-63.586-32.427-101.73-32.427-0.086 0-0.171 0-0.257 0l0.013-0h-216.32c-0.025-0-0.054-0-0.084-0-57.294 0-105.796 37.643-122.123 89.547l-0.246 0.907-110.933 361.813c-2.995 9.446-4.722 20.31-4.722 31.576 0 59.327 47.86 107.476 107.077 107.943l0.044 0h173.653c0.007-0 0.016-0 0.025-0 5.815 0 11.013 2.644 14.457 6.796l0.025 0.031c2.664 3.163 4.283 7.283 4.283 11.781 0 1.42-0.161 2.802-0.466 4.129l0.024-0.123-22.187 128c-1.424 7.093-2.239 15.248-2.239 23.593 0 53.211 33.132 98.684 79.891 116.914l0.854 0.293c14.372 6.007 31.057 9.592 48.553 9.812l0.087 0.001c43.94-0.299 82.479-23.144 104.661-57.532l0.299-0.494 119.467-180.907c15.799 35.195 50.524 59.271 90.875 59.307l89.605 0c55.14 0 99.84-44.7 99.84-99.84v0-458.24c0-55.14-44.7-99.84-99.84-99.84h-0zM512 865.707c-11.55 17.265-30.97 28.48-53.010 28.48-35.111 0-63.573-28.463-63.573-63.573 0-3.882 0.348-7.684 1.015-11.374l-0.058 0.387 22.187-128c0.845-4.442 1.329-9.551 1.329-14.773 0-20.254-7.274-38.809-19.353-53.194l0.104 0.127c-15.381-17.915-37.879-29.343-63.057-29.865l-0.090-0.001h-173.653c-0.068 0-0.149 0.001-0.229 0.001-14.283 0-26.926-7.018-34.67-17.793l-0.087-0.127c-5.497-7.11-8.811-16.151-8.811-25.966 0-4.593 0.726-9.017 2.069-13.162l-0.085 0.302 110.933-361.813c7.74-27.523 32.616-47.363 62.126-47.363 0.209 0 0.418 0.001 0.626 0.003l-0.032-0h216.32c0.169-0.001 0.369-0.001 0.569-0.001 23.559 0 45.402 7.344 63.366 19.867l-0.362-0.239 101.12 80.64v388.267zM901.12 679.68c-0.238 19.698-16.142 35.602-35.817 35.84l-0.023 0h-89.6c-19.794 0-35.84-16.046-35.84-35.84l-0-0v-459.093c0-19.794 16.046-35.84 35.84-35.84h89.6c19.698 0.238 35.602 16.142 35.84 35.817l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dislike"]},"attrs":[{}],"properties":{"order":6602,"id":362,"name":"dislike","prevSize":32,"code":59858},"setIdx":0,"setId":0,"iconIdx":210},{"icon":{"paths":["M516.267 735.573h-150.613c-133.844 0-242.347-108.502-242.347-242.347s108.502-242.347 242.347-242.347v0h61.013v-119.893c0-50.663 41.070-91.733 91.733-91.733s91.733 41.070 91.733 91.733v0 512c0.003 0.261 0.004 0.569 0.004 0.878 0 50.663-41.070 91.733-91.733 91.733-0.752 0-1.501-0.009-2.249-0.027l0.111 0.002zM365.653 314.88c-98.498-0-178.347 79.849-178.347 178.347s79.849 178.347 178.347 178.347v0h150.613c15.317 0 27.733-12.417 27.733-27.733v0-512c0-15.317-12.417-27.733-27.733-27.733s-27.733 12.417-27.733 27.733v0 151.040c0 17.673-14.327 32-32 32v0zM456.533 616.107h-90.88c-67.865 0-122.88-55.015-122.88-122.88s55.015-122.88 122.88-122.88v0h90.88c17.577 0.237 31.763 14.423 32 31.977l0 0.023v181.76c0 17.673-14.327 32-32 32v0zM365.653 434.347c-32.519 0-58.88 26.361-58.88 58.88s26.361 58.88 58.88 58.88v0h61.013v-117.76zM684.8 984.747c-50.512-0.199-91.384-41.193-91.384-91.733 0-39.837 25.393-73.743 60.876-86.414l0.641-0.2c36.398-11.622 62.296-45.143 62.296-84.713 0-0.218-0.001-0.436-0.002-0.654l0 0.034v-384c0-50.663 41.070-91.733 91.733-91.733s91.733 41.070 91.733 91.733h0v384c0.004 0.52 0.006 1.134 0.006 1.748 0 119.587-76.994 221.192-184.115 257.946l-1.917 0.572c-7.552 2.242-16.23 3.532-25.209 3.532-1.638 0-3.267-0.043-4.884-0.128l0.226 0.009zM810.667 310.187c-15.317 0-27.733 12.417-27.733 27.733v0 384c-0.456 67.023-44.008 123.755-104.309 143.901l-1.078 0.312c-11.292 3.681-19.307 14.116-19.307 26.422 0 15.317 12.417 27.733 27.733 27.733 3.407 0 6.671-0.614 9.686-1.738l-0.192 0.063c83.557-27.916 142.75-105.368 142.933-196.671l0-0.022v-384c0-15.317-12.417-27.733-27.733-27.733h-0zM810.667 221.867c-0.508 0.010-1.107 0.016-1.707 0.016-50.427 0-91.307-40.879-91.307-91.307s40.879-91.307 91.307-91.307c50.422 0 91.298 40.87 91.307 91.29l0 0.001c0 0.005 0 0.010 0 0.016 0 49.827-39.912 90.332-89.511 91.289l-0.089 0.001zM810.667 103.253c-15.081-0-27.307 12.226-27.307 27.307s12.226 27.307 27.307 27.307c15.081 0 27.307-12.226 27.307-27.307v0c0-15.081-12.226-27.307-27.307-27.307v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dj"]},"attrs":[{}],"properties":{"order":6603,"id":361,"name":"dj","prevSize":32,"code":59859},"setIdx":0,"setId":0,"iconIdx":211},{"icon":{"paths":["M682.667 704.427c0.054 0.68 0.085 1.473 0.085 2.273 0 15.709-11.957 28.625-27.266 30.144l-0.126 0.010h-319.147c-15.733-2.631-27.576-16.146-27.576-32.427s11.843-29.796 27.383-32.4l0.192-0.027h318.72c15.63 1.321 27.816 14.333 27.816 30.192 0 0.786-0.030 1.566-0.089 2.337l0.006-0.103zM345.6 562.347h134.827c17.724-0.241 32-14.665 32-32.424 0-0.001-0-0.002-0-0.003l0 0c0-0.003 0-0.007 0-0.011 0-17.844-14.226-32.366-31.956-32.841l-0.044-0.001h-135.253c-17.726 0.239-32.003 14.664-32.003 32.424 0 0.151 0.001 0.302 0.003 0.452l-0-0.023c-0.002 0.127-0.003 0.277-0.003 0.427 0 17.673 14.327 32 32 32 0.001 0 0.002-0 0.003-0l-0 0zM971.093 446.72c0.116-0.96 0.182-2.072 0.182-3.2s-0.066-2.24-0.195-3.333l0.013 0.133c0.661-2.445 1.040-5.252 1.040-8.147 0-8.779-3.488-16.742-9.155-22.581l0.008 0.008-341.333-346.88c-2.609-2.542-5.734-4.569-9.2-5.91l-0.186-0.063h-2.56c-1.346-0.193-2.9-0.303-4.48-0.303s-3.134 0.11-4.655 0.323l0.175-0.020h-276.907c-149.82 1.44-270.831 122.75-271.786 272.549l-0 0.091v365.227c-0.003 0.511-0.005 1.114-0.005 1.719 0 150.619 121.377 272.889 271.655 274.334l0.137 0.001h376.32c150.415-1.445 271.792-123.715 271.792-274.335 0-0.604-0.002-1.208-0.006-1.811l0 0.093zM629.76 164.267l232.107 235.947h-124.587c-59.772-0.722-107.948-49.345-107.948-109.219 0-0.153 0-0.305 0.001-0.458l-0 0.023zM700.587 905.813h-376.747c-114.967-0.963-207.794-94.384-207.794-209.486 0-0.603 0.003-1.204 0.008-1.806l-0.001 0.092v-365.227c-0.004-0.509-0.007-1.111-0.007-1.714 0-115.102 92.827-208.524 207.702-209.486l0.092-0.001h241.493v170.667c-0.001 0.261-0.002 0.57-0.002 0.879 0 94.857 76.055 171.95 170.512 173.625l0.157 0.002h170.667v229.547c0.018 1.022 0.028 2.227 0.028 3.434 0 114.66-92.114 207.805-206.378 209.471l-0.157 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document"]},"attrs":[{}],"properties":{"order":6604,"id":360,"name":"document","prevSize":32,"code":59860},"setIdx":0,"setId":0,"iconIdx":212},{"icon":{"paths":["M620.544 505.856c-14.603-10.306-31.421-18.916-49.407-24.99l-1.383-0.405c-14.336-4.915-30.31-9.421-47.104-13.926v-111.411c5.64 1.895 10.531 4.538 14.864 7.87l-0.119-0.088c11.851 10.609 21.5 23.402 28.362 37.781l0.31 0.722c4.751 9.534 10.347 17.748 16.892 25.099l-0.099-0.113c5.664 4.644 12.983 7.459 20.959 7.459 0.84 0 1.673-0.031 2.498-0.093l-0.11 0.007c0.22 0.005 0.479 0.008 0.738 0.008 10.791 0 20.474-4.742 27.080-12.255l0.035-0.040c6.854-7.304 11.065-17.16 11.065-28 0-0.236-0.002-0.472-0.006-0.708l0 0.035c-0.126-12.917-3.448-25.031-9.21-35.626l0.199 0.4c-7.030-13.837-16.543-25.444-28.056-34.656l-0.207-0.16c-13.735-11.552-29.975-20.648-47.736-26.345l-1.006-0.279c-10.067-3.966-21.913-7.242-34.178-9.277l-1.047-0.144v-20.48c0.002-0.122 0.003-0.266 0.003-0.41 0-16.966-13.754-30.72-30.72-30.72-0.001 0-0.002 0-0.003 0l0-0c-0.122-0.002-0.266-0.003-0.41-0.003-16.74 0-30.31 13.57-30.31 30.31 0 0.001 0 0.002 0 0.003l-0-0v21.299c-21.73 1.532-41.937 6.059-60.871 13.186l1.479-0.488c-23.546 9.284-42.941 24.853-56.668 44.65l-0.267 0.406c-11.609 16.891-18.541 37.784-18.541 60.296 0 1.699 0.039 3.388 0.118 5.068l-0.009-0.238c-0.042 1.113-0.067 2.419-0.067 3.731 0 22.193 6.921 42.768 18.723 59.687l-0.224-0.34c12.81 17.766 29.817 31.749 49.604 40.648l0.776 0.312c18.485 8.372 40.346 15.825 63.009 21.203l2.527 0.506v135.578c-6.255-1.374-11.728-3.206-16.925-5.542l0.541 0.217c-11.133-5.568-20.351-13.475-27.293-23.128l-0.15-0.22c-6.51-9.957-12.553-21.409-17.513-33.422l-0.51-1.394c-3.545-10.42-9.155-19.33-16.389-26.629l0.005 0.005c-6.036-5.349-14.023-8.616-22.774-8.616-0.346 0-0.69 0.005-1.034 0.015l0.050-0.001c-0.451-0.020-0.98-0.031-1.511-0.031-10.525 0-20.019 4.41-26.736 11.484l-0.015 0.016c-7.075 6.665-11.48 16.096-11.48 26.555 0 0.312 0.004 0.624 0.012 0.934l-0.001-0.046c0.85 21.367 7.773 40.962 19.077 57.294l-0.235-0.359c11.832 18.541 27.204 33.781 45.275 45.114l0.601 0.351c21.426 11.943 46.601 19.987 73.388 22.472l0.75 0.056v20.070c-0.002 0.122-0.003 0.266-0.003 0.41 0 16.966 13.754 30.72 30.72 30.72 0.001 0 0.002-0 0.003-0l-0 0c0.122 0.002 0.266 0.003 0.41 0.003 16.74 0 30.31-13.57 30.31-30.31 0-0.001-0-0.002-0-0.003l0 0v-19.661c23.618-1.922 45.458-7.315 65.756-15.684l-1.449 0.529c24.745-10.735 45.058-27.757 59.495-49.081l0.307-0.48c12.848-19.758 20.487-43.929 20.487-69.884 0-0.487-0.003-0.974-0.008-1.46l0.001 0.074c0.228-2.777 0.358-6.012 0.358-9.277 0-17.542-3.751-34.208-10.494-49.239l0.306 0.762c-8.469-15.459-20.236-28.143-34.422-37.441l-0.394-0.242zM460.39 450.56c-9.898-3.25-18.295-6.854-26.307-11.089l0.912 0.44c-7.662-4.399-14.166-9.859-19.572-16.275l-0.089-0.109c-3.644-6.001-5.801-13.255-5.801-21.013 0-0.821 0.024-1.636 0.072-2.445l-0.005 0.112c0.391-15.239 8.575-28.484 20.701-35.937l0.189-0.108c9.342-6.126 20.413-10.461 32.319-12.233l0.449-0.055v98.304zM553.37 655.36c-9.221 6.5-20.049 11.456-31.728 14.211l-0.63 0.125v-118.374l8.602 2.458c13.35 4.171 24.771 11.228 33.995 20.478l0.002 0.002c8.383 8.621 13.552 20.404 13.552 33.395 0 0.644-0.013 1.285-0.038 1.922l0.003-0.092c0.001 0.135 0.002 0.295 0.002 0.454 0 18.74-9.322 35.302-23.581 45.303l-0.177 0.118zM491.52 71.68c-243.182 0-440.32 197.138-440.32 440.32s197.138 440.32 440.32 440.32c243.182 0 440.32-197.138 440.32-440.32v0c-0.233-243.088-197.232-440.087-440.298-440.32l-0.022-0zM491.52 890.88c-209.25 0-378.88-169.63-378.88-378.88s169.63-378.88 378.88-378.88c209.25 0 378.88 169.63 378.88 378.88v0c-0.233 209.156-169.724 378.647-378.857 378.88l-0.023 0z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dollar"]},"attrs":[{}],"properties":{"order":6605,"id":359,"name":"dollar","prevSize":32,"code":59861},"setIdx":0,"setId":0,"iconIdx":213},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM569.173 298.667c-0.242 31.392-25.746 56.747-57.172 56.747-31.576 0-57.173-25.597-57.173-57.173s25.596-57.172 57.172-57.173l0-0c0-0 0.001-0 0.002-0 31.576 0 57.173 25.597 57.173 57.173 0 0.15-0.001 0.3-0.002 0.45l0-0.023zM569.173 507.307c-0.242 31.392-25.746 56.747-57.172 56.747-31.576 0-57.173-25.597-57.173-57.173s25.596-57.172 57.172-57.173l0-0c31.576 0 57.173 25.597 57.173 57.173v0zM569.173 726.187c-0.242 31.392-25.746 56.747-57.172 56.747-31.576 0-57.173-25.597-57.173-57.173s25.596-57.172 57.172-57.173l0-0c0-0 0.001-0 0.002-0 31.426 0 56.93 25.355 57.172 56.724l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-circle-vertical"]},"attrs":[{}],"properties":{"order":6606,"id":358,"name":"dots-circle-vertical","prevSize":32,"code":59862},"setIdx":0,"setId":0,"iconIdx":214},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM459.947 509.44c0 31.576 25.597 57.173 57.173 57.173s57.173-25.597 57.173-57.173c0-31.576-25.597-57.173-57.173-57.173v0c-31.576 0-57.173 25.597-57.173 57.173v0zM246.613 509.44c0.004 31.573 25.6 57.167 57.173 57.167 31.576 0 57.173-25.597 57.173-57.173s-25.597-57.173-57.173-57.173c-0.3 0-0.6 0.002-0.898 0.007l0.045-0.001c-31.576 0-57.173 25.597-57.173 57.173v0zM673.28 509.44c-0 31.576 25.597 57.173 57.173 57.173s57.173-25.597 57.173-57.173c0-31.576-25.597-57.173-57.173-57.173h0c-31.392 0.242-56.747 25.746-56.747 57.172 0 0.001 0 0.001 0 0.002l-0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-circle"]},"attrs":[{}],"properties":{"order":6607,"id":357,"name":"dots-circle","prevSize":32,"code":59863},"setIdx":0,"setId":0,"iconIdx":215},{"icon":{"paths":["M574.293 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M360.107 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M788.053 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-horizontal"]},"attrs":[{},{},{}],"properties":{"order":6608,"id":356,"name":"dots-horizontal","prevSize":32,"code":59864},"setIdx":0,"setId":0,"iconIdx":216},{"icon":{"paths":["M693.333 970.667h-362.667c-153.069-0.242-277.091-124.264-277.333-277.31l-0-0.024v-362.667c0.242-153.069 124.264-277.091 277.31-277.333l0.024-0h362.667c153.069 0.242 277.091 124.264 277.333 277.31l0 0.024v362.667c-0.242 153.069-124.264 277.091-277.31 277.333l-0.024 0zM330.667 117.333c-117.821 0-213.333 95.513-213.333 213.333v0 362.667c0 117.821 95.513 213.333 213.333 213.333v0h362.667c117.821 0 213.333-95.513 213.333-213.333v0-362.667c0-117.821-95.513-213.333-213.333-213.333v0zM506.88 554.667c31.576 0 57.173-25.597 57.173-57.173s-25.597-57.173-57.173-57.173c-31.576 0-57.173 25.597-57.173 57.173v0c0 31.576 25.597 57.173 57.173 57.173v0zM506.88 768c31.576-0 57.173-25.597 57.173-57.173s-25.597-57.173-57.173-57.173c-31.576 0-57.173 25.597-57.173 57.173v0c0 31.576 25.597 57.173 57.173 57.173v0zM506.88 341.333c31.576 0 57.173-25.597 57.173-57.173s-25.597-57.173-57.173-57.173c-31.576 0-57.173 25.597-57.173 57.173v0c0 31.576 25.597 57.173 57.173 57.173v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-square-vertical"]},"attrs":[{}],"properties":{"order":6609,"id":355,"name":"dots-square-vertical","prevSize":32,"code":59865},"setIdx":0,"setId":0,"iconIdx":217},{"icon":{"paths":["M693.333 970.667h-362.667c-153.069-0.242-277.091-124.264-277.333-277.31l-0-0.024v-362.667c0.242-153.069 124.264-277.091 277.31-277.333l0.024-0h362.667c153.069 0.242 277.091 124.264 277.333 277.31l0 0.024v362.667c-0.242 153.069-124.264 277.091-277.31 277.333l-0.024 0zM330.667 117.333c-117.821 0-213.333 95.513-213.333 213.333v0 362.667c0 117.821 95.513 213.333 213.333 213.333v0h362.667c117.821 0 213.333-95.513 213.333-213.333v0-362.667c0-117.821-95.513-213.333-213.333-213.333v0zM469.333 506.88c0 31.576 25.597 57.173 57.173 57.173s57.173-25.597 57.173-57.173c0-31.576-25.597-57.173-57.173-57.173v0c-31.576 0-57.173 25.597-57.173 57.173v0zM256 506.88c0 31.576 25.597 57.173 57.173 57.173s57.173-25.597 57.173-57.173c0-31.576-25.597-57.173-57.173-57.173v0c-31.576 0-57.173 25.597-57.173 57.173v0zM682.667 506.88c0 31.576 25.597 57.173 57.173 57.173s57.173-25.597 57.173-57.173c0-31.576-25.597-57.173-57.173-57.173h-0c-31.576 0-57.173 25.597-57.173 57.173h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-square"]},"attrs":[{}],"properties":{"order":6610,"id":354,"name":"dots-square","prevSize":32,"code":59866},"setIdx":0,"setId":0,"iconIdx":218},{"icon":{"paths":["M569.173 517.12c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M569.173 302.933c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M569.173 730.88c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-vertical"]},"attrs":[{},{},{}],"properties":{"order":6611,"id":353,"name":"dots-vertical","prevSize":32,"code":59867},"setIdx":0,"setId":0,"iconIdx":219},{"icon":{"paths":["M520.533 975.787c-252.396-1.212-456.533-206.097-456.533-458.662 0-253.315 205.352-458.667 458.667-458.667 253.313 0 458.664 205.349 458.667 458.662l0 0c-0.241 253.368-205.692 458.67-459.093 458.67-0.6 0-1.2-0.001-1.8-0.003l0.093 0zM520.533 122.453c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM406.613 670.72l236.373-236.8c7.189-7.135 11.639-17.021 11.639-27.947 0-21.745-17.627-39.372-39.372-39.372-10.819 0-20.619 4.364-27.736 11.428l0.002-0.002-209.067 209.067-128-128c-6.631-5.159-15.076-8.271-24.248-8.271-21.915 0-39.68 17.765-39.68 39.68 0 7.988 2.36 15.424 6.421 21.65l-0.093-0.153 157.867 157.867c7.169 7.114 17.045 11.511 27.947 11.511s20.777-4.397 27.949-11.514l-0.003 0.002zM848.213 384c-7.169-7.114-17.045-11.511-27.947-11.511s-20.777 4.397-27.949 11.514l0.003-0.002-208.64 209.067-26.453-26.453-55.893 55.467 53.333 53.333c7.101 7.090 16.905 11.474 27.733 11.474s20.632-4.384 27.734-11.475l-0.001 0.001 236.8-236.8c7.135-7.173 11.545-17.062 11.545-27.981 0-10.265-3.898-19.62-10.295-26.665l0.029 0.033zM400.213 520.107l55.893-55.893-2.56-2.56c-7.101-7.090-16.905-11.474-27.733-11.474s-20.632 4.384-27.734 11.475l0.001-0.001c-7.114 7.169-11.511 17.045-11.511 27.947s4.397 20.777 11.514 27.949l-0.002-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-check-circle"]},"attrs":[{}],"properties":{"order":6612,"id":352,"name":"double-check-circle","prevSize":32,"code":59868},"setIdx":0,"setId":0,"iconIdx":220},{"icon":{"paths":["M896 324.267c7.542 7.69 12.197 18.235 12.197 29.867s-4.655 22.177-12.203 29.874l0.007-0.007-313.6 315.733c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-72.533-72.96-72.96 72.96c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-195.84-195.84c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 165.12 165.12 42.667-42.667-62.72-62.293c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 62.72 62.293 181.333-181.76c7.877-9.282 19.552-15.134 32.594-15.134 23.564 0 42.667 19.103 42.667 42.667 0 12.829-5.662 24.336-14.624 32.157l-0.051 0.043-179.627 182.613 42.667 42.667 282.453-285.013c7.642-7.295 18.017-11.784 29.44-11.784s21.798 4.489 29.457 11.8l-0.017-0.016z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-check"]},"attrs":[{}],"properties":{"order":6613,"id":351,"name":"double-check","prevSize":32,"code":59869},"setIdx":0,"setId":0,"iconIdx":221},{"icon":{"paths":["M792.32 478.72c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002-256 256c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-256-256c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 224.427 224.427 224-224.427c7.834-8.596 19.076-13.969 31.573-13.969s23.74 5.373 31.543 13.935l0.030 0.034zM731.733 249.6l-224 224-224.427-224c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002 256 256c7.709 7.648 18.326 12.374 30.047 12.374 0.087 0 0.173-0 0.26-0.001l-0.013 0c11.656-0.051 22.2-4.767 29.869-12.376l-0.003 0.003 256-256c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002c-7.834-8.596-19.076-13.969-31.573-13.969s-23.74 5.373-31.543 13.935l-0.030 0.034z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-down"]},"attrs":[{}],"properties":{"order":6614,"id":350,"name":"double-down","prevSize":32,"code":59870},"setIdx":0,"setId":0,"iconIdx":222},{"icon":{"paths":["M824.32 790.187c-19.181-0.022-37.137-5.249-52.536-14.344l0.483 0.264-102.4-59.307c-9.643-5.638-16.018-15.941-16.018-27.733 0-17.683 14.335-32.018 32.018-32.018 5.891 0 11.41 1.591 16.151 4.366l-0.151-0.082 102.4 59.307c5.752 3.378 12.67 5.373 20.053 5.373s14.301-1.995 20.243-5.476l-0.189 0.102c12.056-6.855 20.055-19.612 20.055-34.238 0-0.113-0-0.226-0.001-0.339l0 0.017v-348.16c0.001-0.096 0.001-0.209 0.001-0.322 0-14.626-7.999-27.383-19.861-34.136l-0.194-0.101c-5.752-3.378-12.67-5.373-20.053-5.373s-14.301 1.995-20.243 5.476l0.189-0.102-102.4 59.307c-4.59 2.694-10.109 4.284-16 4.284-17.683 0-32.018-14.335-32.018-32.018 0-11.792 6.375-22.096 15.867-27.652l0.151-0.082 102.4-59.307c14.932-8.769 32.888-13.948 52.053-13.948 57.45 0 104.031 46.535 104.107 103.967l0 0.007v348.16c-0.241 57.399-46.707 103.865-104.084 104.107l-0.023 0zM531.627 776.107c31.074-18.081 51.63-51.228 51.63-89.175 0-0.299-0.001-0.598-0.004-0.897l0 0.046v-348.16c0.002-0.257 0.004-0.56 0.004-0.864 0-57.261-46.419-103.68-103.68-103.68-19.523 0-37.786 5.396-53.378 14.778l0.468-0.261-268.373 155.307c-37.69 22.214-62.582 62.6-62.582 108.8s24.891 86.586 61.995 108.48l0.587 0.32 268.373 155.307c14.911 8.85 32.871 14.081 52.053 14.081s37.142-5.231 52.532-14.343l-0.479 0.262zM459.52 303.36c5.752-3.378 12.67-5.373 20.053-5.373s14.301 1.995 20.243 5.476l-0.189-0.102c11.812 6.808 19.635 19.367 19.635 33.752 0 0.284-0.003 0.568-0.009 0.85l0.001-0.042v348.16c0.005 0.241 0.008 0.524 0.008 0.808 0 14.385-7.823 26.944-19.448 33.652l-0.188 0.1c-5.752 3.378-12.67 5.373-20.053 5.373s-14.301-1.995-20.243-5.476l0.189 0.102-269.227-155.307c-18.387-10.95-30.513-30.726-30.513-53.333s12.126-42.383 30.23-53.177l0.284-0.157z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-left-arrow"]},"attrs":[{}],"properties":{"order":6615,"id":349,"name":"double-left-arrow","prevSize":32,"code":59871},"setIdx":0,"setId":0,"iconIdx":223},{"icon":{"paths":["M512 810.667c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007-256-256c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 256-256c7.715-7.662 18.344-12.397 30.080-12.397 23.577 0 42.691 19.113 42.691 42.691 0 11.842-4.821 22.557-12.608 30.291l-0.002 0.002-223.147 225.707 224 224.427c8.629 7.837 14.025 19.1 14.025 31.624 0 23.564-19.103 42.667-42.667 42.667-0.731 0-1.457-0.018-2.179-0.055l0.101 0.004zM771.413 797.867c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002-223.573-225.707 224.427-222.293c7.753-7.753 12.548-18.463 12.548-30.293 0-23.661-19.181-42.841-42.841-42.841-11.83 0-22.541 4.795-30.293 12.548l-256 256c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002 256 256c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-left"]},"attrs":[{}],"properties":{"order":6616,"id":348,"name":"double-left","prevSize":32,"code":59872},"setIdx":0,"setId":0,"iconIdx":224},{"icon":{"paths":["M199.68 790.187c-57.399-0.241-103.865-46.707-104.107-104.084l-0-0.023v-348.16c0.075-57.44 46.657-103.974 104.107-103.974 19.166 0 37.121 5.179 52.545 14.214l-0.491-0.266 102.4 59.307c9.485 5.67 15.737 15.884 15.737 27.559 0 5.532-1.404 10.736-3.874 15.275l0.084-0.168c-5.787 9.414-16.030 15.598-27.718 15.598-5.463 0-10.61-1.351-15.125-3.736l0.177 0.085-103.68-58.453c-5.752-3.378-12.67-5.373-20.053-5.373s-14.301 1.995-20.243 5.476l0.189-0.102c-12.056 6.855-20.055 19.612-20.055 34.238 0 0.113 0 0.226 0.001 0.339l-0-0.017v348.16c-0.001 0.096-0.001 0.209-0.001 0.322 0 14.626 7.999 27.383 19.861 34.136l0.194 0.101c5.752 3.378 12.67 5.373 20.053 5.373s14.301-1.995 20.243-5.476l-0.189 0.102 102.4-59.307c4.59-2.694 10.109-4.284 16-4.284 17.683 0 32.018 14.335 32.018 32.018 0 11.792-6.375 22.096-15.867 27.652l-0.151 0.082-102.4 59.307c-14.917 8.831-32.872 14.058-52.047 14.080l-0.006 0zM596.48 776.107l269.227-155.307c37.69-22.214 62.582-62.6 62.582-108.8s-24.891-86.586-61.995-108.48l-0.587-0.32-268.373-155.307c-14.932-8.769-32.888-13.948-52.053-13.948-57.45 0-104.031 46.535-104.107 103.967l-0 0.007v348.16c-0 0.107-0.001 0.234-0.001 0.361 0 38.19 20.733 71.538 51.558 89.4l0.496 0.265c14.932 8.776 32.874 13.993 52.028 14.080l0.025 0c19.181-0.022 37.137-5.249 52.536-14.344l-0.483 0.264zM564.48 303.36l269.227 155.307c18.387 10.95 30.513 30.726 30.513 53.333s-12.126 42.383-30.23 53.177l-0.284 0.157-269.227 155.307c-5.752 3.378-12.67 5.373-20.053 5.373s-14.301-1.995-20.243-5.476l0.189 0.102c-12.056-6.855-20.055-19.612-20.055-34.238 0-0.113 0-0.226 0.001-0.339l-0 0.017v-348.16c-0.001-0.096-0.001-0.209-0.001-0.322 0-14.626 7.999-27.383 19.861-34.136l0.194-0.101c5.661-2.965 12.366-4.705 19.477-4.705 0.353 0 0.704 0.004 1.055 0.013l-0.052-0.001c0.449-0.019 0.976-0.031 1.505-0.031 6.656 0 12.903 1.752 18.305 4.82l-0.184-0.096zM849.493 593.067v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-right-arrow"]},"attrs":[{}],"properties":{"order":6617,"id":347,"name":"double-right-arrow","prevSize":32,"code":59873},"setIdx":0,"setId":0,"iconIdx":225},{"icon":{"paths":["M494.933 804.267c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 218.027-219.733-217.6-217.6c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 247.467 247.893c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002-247.467 247.893c-7.629 8.435-18.522 13.796-30.67 14.079l-0.050 0.001zM301.653 791.893l247.893-247.893c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002-247.893-247.893c-7.412-6.377-17.129-10.259-27.753-10.259-23.564 0-42.667 19.103-42.667 42.667 0 10.624 3.883 20.341 10.307 27.809l-0.047-0.056 217.6 217.6-217.6 218.027c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-right"]},"attrs":[{}],"properties":{"order":6618,"id":346,"name":"double-right","prevSize":32,"code":59874},"setIdx":0,"setId":0,"iconIdx":226},{"icon":{"paths":["M792.32 483.413c7.662 7.715 12.397 18.344 12.397 30.080 0 23.577-19.113 42.691-42.691 42.691-11.842 0-22.557-4.821-30.291-12.608l-0.002-0.002-224-224-224.427 224c-7.709 7.861-18.426 12.749-30.284 12.8l-0.010 0c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 256-256c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002zM536.32 458.24c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002-256 256c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003c7.709 7.648 18.326 12.374 30.047 12.374 0.087 0 0.173-0 0.26-0.001l-0.013 0c0.073 0 0.16 0.001 0.247 0.001 11.721 0 22.338-4.726 30.049-12.377l-0.003 0.003 224.427-224.427 224 224.427c7.753 7.753 18.463 12.548 30.293 12.548 23.661 0 42.841-19.181 42.841-42.841 0-11.83-4.795-22.541-12.548-30.293l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-up"]},"attrs":[{}],"properties":{"order":6619,"id":345,"name":"double-up","prevSize":32,"code":59875},"setIdx":0,"setId":0,"iconIdx":227},{"icon":{"paths":["M970.667 333.227v357.547c-0 154.581-125.313 279.893-279.893 279.893l0 0h-357.547c-154.581-0-279.893-125.313-279.893-279.893l0 0v-357.547c-0-154.581 125.313-279.893 279.893-279.893l0 0h357.547c154.581-0 279.893 125.313 279.893 279.893l0 0zM117.333 690.773c0.242 119.137 96.756 215.651 215.87 215.893l0.023 0h357.547c119.137-0.242 215.651-96.756 215.893-215.87l0-0.023v-357.547c-0.242-119.137-96.756-215.651-215.87-215.893l-0.023-0h-357.547c-119.137 0.242-215.651 96.756-215.893 215.87l-0 0.023zM695.040 439.040c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002-122.88 118.187-119.467-124.587c-7.883-9.504-19.695-15.511-32.909-15.511-23.564 0-42.667 19.103-42.667 42.667 0 12.577 5.441 23.882 14.098 31.691l0.038 0.034 148.907 155.733c7.555 7.921 18.098 12.934 29.813 13.226l0.053 0.001c0.202 0.003 0.44 0.005 0.678 0.005 11.509 0 21.953-4.557 29.628-11.964l-0.013 0.012 155.733-148.907c8.156-7.785 13.227-18.742 13.227-30.883 0-0.093-0-0.185-0.001-0.278l0 0.014c-0.649-11.723-5.937-22.097-14.042-29.406l-0.038-0.034z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["down-square"]},"attrs":[{}],"properties":{"order":6620,"id":344,"name":"down-square","prevSize":32,"code":59876},"setIdx":0,"setId":0,"iconIdx":228},{"icon":{"paths":["M507.307 735.573v0c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003-256-256c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002 226.133 226.133 225.707-226.133c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003-256 256c-7.667 7.606-18.211 12.323-29.857 12.373l-0.010 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["down"]},"attrs":[{}],"properties":{"order":6621,"id":343,"name":"down","prevSize":32,"code":59877},"setIdx":0,"setId":0,"iconIdx":229},{"icon":{"paths":["M512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c-0.243-253.217-205.45-458.424-458.644-458.667l-0.023-0zM906.24 503.893c-42.138-8.751-90.564-13.762-140.16-13.762s-98.021 5.010-144.797 14.552l4.637-0.79c-12.373-29.013-26.027-56.32-39.68-83.2 90.478-38.543 167.778-91.088 233.010-155.783l-0.050 0.049c52.74 64.813 85.281 147.91 87.034 238.549l0.006 0.384zM774.827 218.453c-61.391 60.144-134.566 108.529-215.706 141.342l-4.454 1.592c-48.856-86.385-100.095-160.749-157.099-230.2l2.219 2.786c33.563-10.44 72.151-16.453 112.143-16.453 101.41 0 193.789 38.666 263.199 102.059l-0.302-0.272zM336.64 158.72c55.501 66.212 107.266 139.865 152.547 217.753l4.040 7.527c-83.956 26.162-180.484 41.233-280.531 41.233-29.816 0-59.32-1.338-88.455-3.959l3.759 0.273c28.067-116.101 104.566-210.355 206.381-261.792l2.259-1.035zM117.333 512c0-8.96 0-17.92 0-27.307 28.041 3.268 60.53 5.133 93.454 5.133 1.645 0 3.288-0.005 4.931-0.014l-0.252 0.001c0.534 0.001 1.166 0.002 1.798 0.002 109.417 0 214.752-17.482 313.362-49.805l-7.107 2.016c12.8 24.32 25.6 49.493 37.547 76.373-142.009 47.173-259.289 136.856-339.886 253.778l-1.448 2.222c-63.097-68.993-101.911-161.117-102.4-262.3l-0-0.1zM267.093 820.907c73.585-115.885 184.474-202.419 315.496-243.381l4.078-1.099c36.404 86.767 63.807 187.579 77.449 292.71l0.631 5.957c-45.003 19.434-97.402 30.737-152.441 30.737-93.085 0-178.619-32.331-245.984-86.375l0.772 0.599zM725.333 843.947c-15.133-105.541-40.929-200.585-76.802-290.518l2.989 8.491c32.712-5.632 70.387-8.851 108.814-8.851 50.482 0 99.666 5.556 146.974 16.089l-4.481-0.838c-17.291 116.289-83.177 214.453-175.96 274.694l-1.533 0.933z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dribbble"]},"attrs":[{}],"properties":{"order":6622,"id":342,"name":"dribbble","prevSize":32,"code":59878},"setIdx":0,"setId":0,"iconIdx":230},{"icon":{"paths":["M512 930.133c-170.369 0-308.48-138.111-308.48-308.48v-0c0-113.92 128-327.253 237.227-486.4 15.556-22.786 41.403-37.548 70.699-37.548 0.195 0 0.389 0.001 0.584 0.002l-0.030-0c0.165-0.001 0.359-0.002 0.554-0.002 29.296 0 55.144 14.763 70.51 37.255l0.189 0.294c108.373 159.147 237.227 372.48 237.227 486.4 0 170.369-138.111 308.48-308.48 308.48v-0zM512 162.133c-0.047-0-0.103-0.001-0.159-0.001-7.571 0-14.24 3.867-18.137 9.734l-0.050 0.080c-141.653 207.787-226.133 376.32-226.133 450.133 0 135.023 109.457 244.48 244.48 244.48s244.48-109.457 244.48-244.48v0c0-73.813-85.333-242.347-226.133-450.133-3.888-6.158-10.641-10.198-18.341-10.24l-0.006-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["drop"]},"attrs":[{}],"properties":{"order":6623,"id":341,"name":"drop","prevSize":32,"code":59879},"setIdx":0,"setId":0,"iconIdx":231},{"icon":{"paths":["M925.44 469.333l-110.507-79.36 110.080-77.653c18.366-13.063 30.203-34.269 30.203-58.24s-11.837-45.177-29.984-58.092l-0.219-0.148-174.507-128c-11.765-8.795-26.599-14.082-42.667-14.082s-30.901 5.287-42.855 14.216l0.188-0.135-153.173 108.373-155.733-109.653c-11.765-8.795-26.599-14.082-42.667-14.082s-30.901 5.287-42.855 14.216l0.188-0.135-174.507 128c-17.267 13.31-28.281 33.999-28.281 57.26 0 1.471 0.044 2.931 0.131 4.379l-0.010-0.199c0.271 23.831 12.27 44.803 30.486 57.447l0.234 0.153 110.080 76.373-110.080 79.36c-18.45 12.797-30.449 33.769-30.72 57.558l-0 0.042c-0.002 0.19-0.003 0.414-0.003 0.638 0 23.713 11.313 44.785 28.837 58.111l0.18 0.131 67.84 50.347v89.173c0.349 40.488 22.334 75.763 54.943 94.863l0.524 0.283 236.8 136.533c15.829 9.389 34.893 14.938 55.253 14.938s39.424-5.549 55.762-15.217l-0.509 0.279 236.373-136.533c33.314-19.196 55.397-54.585 55.467-95.137l0-0.010v-91.307l67.413-49.92c18.026-13.267 29.592-34.403 29.592-58.24s-11.567-44.972-29.393-58.1l-0.199-0.14zM512 524.8l-192-134.827 192-133.973 192 135.253zM704.427 118.613c1.321-0.881 2.946-1.407 4.693-1.407s3.372 0.525 4.725 1.426l-0.031-0.020 174.507 128c2.465 1.066 4.159 3.477 4.159 6.284 0 1.132-0.276 2.201-0.764 3.141l0.018-0.038c-0.138 2.621-1.438 4.912-3.392 6.384l-0.022 0.016-128 90.453-192.853-137.387zM132.267 256c-0.011-0.143-0.017-0.31-0.017-0.478 0-2.52 1.366-4.722 3.398-5.904l0.033-0.017 174.507-128c0.695-0.282 1.502-0.446 2.347-0.446s1.651 0.164 2.39 0.461l-0.043-0.015c0.703-0.209 1.511-0.329 2.347-0.329s1.644 0.12 2.407 0.344l-0.060-0.015 136.96 93.867-192 135.253-128-90.453c-1.902-0.873-3.394-2.365-4.245-4.214l-0.022-0.053zM132.267 528.213c0.065-2.514 1.399-4.703 3.383-5.956l0.030-0.018 128-91.307 192 134.827-142.933 98.987-177.067-132.267c-2.064-1.2-3.43-3.401-3.43-5.922 0-0.168 0.006-0.335 0.018-0.5l-0.001 0.022zM795.733 682.667v42.667c0.036 0.655 0.056 1.422 0.056 2.193 0 16.416-9.271 30.666-22.862 37.802l-0.234 0.112-236.373 136.533c-6.649 4-14.675 6.366-23.253 6.366s-16.604-2.366-23.46-6.481l0.207 0.115-236.8-138.24c-13.569-7.824-22.729-21.965-23.463-38.3l-0.004-0.1v-42.667l63.573 47.36c2.558 1.972 5.532 3.569 8.749 4.633l0.211 0.060h9.813c1.024 0.115 2.211 0.18 3.413 0.18s2.389-0.065 3.558-0.193l-0.145 0.013h2.56c3.578-0.856 6.719-2.331 9.464-4.32l-0.077 0.053 61.44-42.667 119.893-85.333 119.893 85.333 61.44 42.667c2.668 1.936 5.809 3.411 9.206 4.23l0.181 0.037h2.56c1.024 0.115 2.211 0.18 3.413 0.18s2.389-0.065 3.558-0.193l-0.145 0.013h9.813c3.428-1.125 6.402-2.721 9.030-4.745l-0.070 0.052zM888.32 533.333l-80.213 60.16-96.853 72.107-143.787-101.973 192-134.827 128 91.307c2.014 1.271 3.348 3.459 3.413 5.964l0 0.009c0.048 0.304 0.075 0.655 0.075 1.011 0 2.184-1.025 4.128-2.62 5.377l-0.015 0.011z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dropbox"]},"attrs":[{}],"properties":{"order":6624,"id":340,"name":"dropbox","prevSize":32,"code":59880},"setIdx":0,"setId":0,"iconIdx":232},{"icon":{"paths":["M230.4 742.4h-8.533c-25.409-3.096-46.906-17.549-59.532-38.049l-0.201-0.351-98.133-149.333c-8.107-11.985-12.942-26.761-12.942-42.667s4.835-30.681 13.115-42.939l-0.173 0.272 98.133-149.333c12.355-19.531 31.943-33.535 54.913-38.304l0.553-0.096c2.161-0.194 4.674-0.305 7.213-0.305 21.846 0 41.774 8.209 56.869 21.711l-0.082-0.072 153.6 149.333c13.594 14.463 21.946 33.989 21.946 55.467s-8.352 41.004-21.985 55.509l0.039-0.042-149.333 153.6c-13.734 15.319-33.412 25.068-55.374 25.598l-0.093 0.002zM226.133 345.6v0c-4.267 0-8.533 0-12.8 8.533l-93.867 149.333c-2.023 2.254-3.259 5.249-3.259 8.533s1.237 6.279 3.27 8.545l-0.011-0.012 93.867 149.333c2.653 4.622 7.289 7.848 12.717 8.525l0.083 0.008h12.8l153.6-153.6c2.332-2.894 3.744-6.615 3.744-10.667s-1.412-7.773-3.77-10.699l0.026 0.033-153.6-153.6zM793.6 742.4c-22.055-0.532-41.733-10.281-55.403-25.528l-0.064-0.072-149.333-153.6c-13.594-14.463-21.946-33.989-21.946-55.467s8.352-41.004 21.985-55.509l-0.039 0.042 149.333-149.333c14.507-13.802 34.179-22.292 55.834-22.292 4.389 0 8.696 0.349 12.896 1.020l-0.463-0.061c23.524 4.865 43.111 18.869 55.26 38.051l0.207 0.349 98.133 149.333c6.158 12.469 9.761 27.147 9.761 42.667s-3.603 30.197-10.017 43.243l0.256-0.577-98.133 149.333c-12.827 20.851-34.325 35.304-59.342 38.361l-0.391 0.039zM797.867 345.6h-12.8l-153.6 149.333c-2.023 2.254-3.259 5.249-3.259 8.533s1.237 6.279 3.27 8.545l-0.011-0.012 153.6 157.867h12.8s8.533-4.267 8.533-8.533l98.133-153.6c1.775-1.571 2.889-3.856 2.889-6.4s-1.114-4.829-2.88-6.392l-0.009-0.008-93.867-140.8c-4.267-8.533-8.533-8.533-12.8-8.533zM512 686.933c0.366-0.013 0.796-0.020 1.227-0.020 11.365 0 21.576 4.937 28.607 12.783l0.032 0.036 123.733 128c3.419 4.792 5.466 10.768 5.466 17.222 0 2.986-0.438 5.869-1.253 8.589l0.054-0.211c-2.053 9.809-10.63 17.071-20.903 17.071-0.151 0-0.302-0.002-0.453-0.005l0.022 0h-273.067c-0.524 0.046-1.134 0.072-1.75 0.072-8.723 0-16.223-5.235-19.53-12.735l-0.054-0.137c-1.076-2.721-1.7-5.874-1.7-9.172 0-6.271 2.255-12.016 5.998-16.467l-0.032 0.039 123.733-132.267c7.063-7.883 17.274-12.82 28.639-12.82 0.432 0 0.862 0.007 1.29 0.021l-0.062-0.002zM512 622.933v0c-30.349 0.416-57.576 13.444-76.739 34.067l-0.061 0.067-123.733 128c-14.189 17.432-22.784 39.911-22.784 64.397 0 12.087 2.094 23.685 5.94 34.451l-0.223-0.715c15.483 29.903 45.793 50.207 80.935 51.197l0.131 0.003h273.067c36.115-1.841 66.682-23.831 80.827-54.879l0.24-0.588c3.768-9.279 5.954-20.043 5.954-31.317 0-24.684-10.481-46.92-27.235-62.501l-0.053-0.048-119.467-128c-19.224-20.69-46.451-33.717-76.725-34.133l-0.075-0.001zM379.733 183.467h268.8c0.128-0.003 0.279-0.004 0.43-0.004 10.273 0 18.851 7.262 20.879 16.932l0.024 0.139c0.761 2.509 1.199 5.392 1.199 8.378 0 6.454-2.047 12.43-5.528 17.314l0.062-0.091-123.733 128c-7.69 7.542-18.235 12.197-29.867 12.197s-22.177-4.655-29.874-12.203l0.007 0.007-123.733-132.267c-3.711-4.412-5.966-10.157-5.966-16.428 0-3.298 0.624-6.451 1.76-9.346l-0.060 0.174c3.36-7.637 10.861-12.872 19.584-12.872 0.616 0 1.226 0.026 1.828 0.077l-0.079-0.005h4.267zM379.733 119.467h-4.267c-35.274 0.993-65.583 21.297-80.82 50.678l-0.246 0.522c-3.623 10.051-5.717 21.649-5.717 33.736 0 24.486 8.594 46.965 22.931 64.585l-0.148-0.188 123.733 128c19.224 20.69 46.451 33.717 76.725 34.133l0.075 0.001c30.349-0.416 57.576-13.444 76.739-34.067l0.061-0.067 119.467-128c16.807-15.629 27.288-37.866 27.288-62.55 0-11.274-2.186-22.038-6.158-31.89l0.204 0.573c-14.385-31.636-44.951-53.626-80.841-55.457l-0.226-0.009z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["educare"]},"attrs":[{}],"properties":{"order":6625,"id":339,"name":"educare","prevSize":32,"code":59881},"setIdx":0,"setId":0,"iconIdx":233},{"icon":{"paths":["M715.947 859.307c-35.245 21.405-76.214 37.939-119.841 47.316l-2.612 0.47c-2.583 0.556-5.55 0.874-8.592 0.874-10.392 0-19.916-3.715-27.316-9.889l0.068 0.055c-9.914-7.884-16.214-19.944-16.214-33.477 0-0.081 0-0.162 0.001-0.242l-0 0.012v-152.747s0 0 0-2.56c76.306-13.821 133.495-79.522 133.973-158.669l0-0.051v-72.96c40.343-10.582 69.622-46.719 69.622-89.694 0-1.318-0.028-2.629-0.082-3.933l0.006 0.186c-0.242-50.243-41.028-90.88-91.306-90.88-0 0-0.001 0-0.001 0l-2.56-0v-93.013c0-16.259-13.181-29.44-29.44-29.44s-29.44 13.181-29.44 29.44v0 94.72h-156.587v-95.147c0-16.259-13.181-29.44-29.44-29.44s-29.44 13.181-29.44 29.44v95.147h-6.4c-51.011 0.163-92.3 41.553-92.3 92.586 0 43.462 29.947 79.93 70.331 89.894l0.636 0.133v72.96c0.299 79.263 57.579 145.060 132.993 158.574l0.981 0.146s0 0 0 2.56v152.747c-0.002 0.254-0.004 0.553-0.004 0.853 0 56.318 45.655 101.973 101.973 101.973 0.001 0 0.003-0 0.004-0l-0 0c7.427-0.009 14.632-0.942 21.512-2.69l-0.605 0.13c53.152-11.224 100.265-30.125 142.863-55.765l-2.063 1.152c8.716-5.218 14.461-14.61 14.461-25.344 0-5.611-1.57-10.856-4.294-15.318l0.073 0.129c-5.316-8.741-14.788-14.49-25.604-14.49-5.671 0-10.972 1.58-15.488 4.325l0.132-0.075zM338.347 384c0-17.673 14.327-32 32-32v0h283.307c17.852 0.67 32.070 15.304 32.070 33.258 0 0.758-0.025 1.511-0.075 2.256l0.005-0.101c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0h-283.307c-17.818-0.421-32.101-14.965-32.101-32.845 0-0.904 0.037-1.8 0.108-2.685l-0.008 0.116zM407.893 550.4v-69.973h208.213v69.973c0 57.497-46.61 104.107-104.107 104.107s-104.107-46.61-104.107-104.107v0zM970.667 515.84c0.001 0.36 0.002 0.787 0.002 1.214 0 73.221-17.335 142.393-48.124 203.637l1.189-2.611c-4.864 9.91-14.873 16.616-26.45 16.64l-0.003 0c-0.148 0.003-0.322 0.004-0.496 0.004-4.639 0-9.020-1.105-12.893-3.066l0.163 0.075c-9.849-5.135-16.458-15.271-16.458-26.949 0-4.619 1.034-8.997 2.883-12.915l-0.078 0.185c26.614-51.255 42.35-111.861 42.666-176.112l0-0.101c0-0.203 0.001-0.444 0.001-0.685 0-220.56-178.8-399.36-399.36-399.36-16.691 0-33.143 1.024-49.296 3.012l1.936-0.194c-44.292 5.151-84.673 16.893-121.879 34.293l2.412-1.013c-3.648 1.743-7.929 2.761-12.448 2.761-11.847 0-22.060-6.998-26.73-17.086l-0.076-0.182c-1.657-3.597-2.623-7.805-2.623-12.239 0-11.868 6.923-22.12 16.95-26.937l0.179-0.078c40.13-18.78 86.696-32.316 135.619-38.186l2.195-0.214c15.88-1.947 34.263-3.059 52.907-3.059 253.55 0 459.093 205.543 459.093 459.093 0 0.025-0 0.051-0 0.076l0-0.004zM218.027 718.507c-15.541 0.363-30.158 3.942-43.333 10.093l0.666-0.279c-38.617-60.581-61.549-134.424-61.549-213.623 0-14.927 0.815-29.664 2.402-44.169l-0.159 1.792c6.090-58.986 24.658-112.575 53.019-159.591l-0.965 1.725c2.486-4.264 3.954-9.386 3.954-14.851 0-10.869-5.806-20.382-14.486-25.607l-0.135-0.075c-4.658-3.326-10.468-5.318-16.743-5.318-11.273 0-21.045 6.429-25.848 15.821l-0.076 0.164c-31.471 52.022-52.783 113.582-59.576 179.45l-0.157 1.883c-1.73 14.951-2.717 32.276-2.717 49.831 0 93.919 28.255 181.239 76.728 253.924l-1.050-1.674c-10.684 16.402-17.046 36.469-17.067 58.021l-0 0.006c0.242 58.491 47.714 105.813 106.239 105.813 58.675 0 106.24-47.565 106.24-106.24s-47.565-106.239-106.239-106.24l-0-0zM218.027 872.107c-26.155-0.001-47.358-21.204-47.358-47.36s21.204-47.36 47.36-47.36c26.156 0 47.36 21.204 47.36 47.36 0 0.15-0.001 0.3-0.002 0.45l0-0.023c-0.241 25.972-21.352 46.933-47.358 46.933-0.001 0-0.001-0-0.002-0l0 0zM858.027 802.133c0.002 0.127 0.003 0.277 0.003 0.427 0 15.552-12.608 28.16-28.16 28.16-0.001 0-0.002-0-0.003-0l0 0c-1.047 0.136-2.257 0.213-3.486 0.213-15.788 0-28.587-12.799-28.587-28.587s12.799-28.587 28.587-28.587c1.229 0 2.439 0.078 3.627 0.228l-0.141-0.015c0.51-0.033 1.106-0.052 1.707-0.052 15.552 0 28.16 12.608 28.16 28.16 0 0.018-0 0.036-0 0.055l0-0.003zM201.813 200.107c0-15.788 12.799-28.587 28.587-28.587s28.587 12.799 28.587 28.587c0 15.788-12.799 28.587-28.587 28.587v0c-15.788 0-28.587-12.799-28.587-28.587v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["electricity"]},"attrs":[{}],"properties":{"order":6626,"id":338,"name":"electricity","prevSize":32,"code":59882},"setIdx":0,"setId":0,"iconIdx":234},{"icon":{"paths":["M822.187 322.133c-8.012-26.878-29.878-47.182-57.111-52.822l-0.489-0.085c-10.697-42.117-43.216-74.637-84.524-85.159l-0.809-0.175-10.24-61.013c-7.17-40.484-42.087-70.836-84.093-70.836-0.436 0-0.872 0.003-1.306 0.010l0.066-0.001h-207.36c-0.369-0.006-0.804-0.009-1.241-0.009-42.006 0-76.923 30.352-84.017 70.321l-0.076 0.515-8.533 62.293c-51.733 12.738-89.513 58.692-89.6 113.484l-0 0.010v426.667c0.087 54.802 37.867 100.755 88.797 113.326l0.803 0.168 10.24 61.013c7.17 40.484 42.087 70.836 84.093 70.836 0.436 0 0.872-0.003 1.306-0.010l-0.066 0.001h209.067c0.369 0.006 0.804 0.009 1.241 0.009 42.006 0 76.923-30.352 84.017-70.321l0.076-0.515 10.24-61.013c49.633-14.25 85.337-59.237 85.337-112.563 0-0.327-0.001-0.654-0.004-0.98l0 0.050v-227.413c25.775-6.941 45.781-26.523 53.197-51.519l0.136-0.534c5.96-18.942 9.394-40.724 9.394-63.308 0-21.527-3.12-42.325-8.932-61.967l0.392 1.543zM355.84 134.4c1.692-9.749 10.088-17.069 20.194-17.069 0.101 0 0.201 0.001 0.301 0.002l-0.015-0h209.067c0.065-0.001 0.142-0.001 0.219-0.001 10.257 0 18.753 7.541 20.247 17.381l0.014 0.113 7.68 46.507h-265.387zM605.867 889.173c-1.508 9.954-10.004 17.495-20.261 17.495-0.077 0-0.154-0-0.23-0.001l0.012 0h-209.067c-0.085 0.001-0.186 0.002-0.286 0.002-10.106 0-18.502-7.32-20.176-16.946l-0.018-0.122-7.68-46.933h265.387zM704.853 725.333c0 29.455-23.878 53.333-53.333 53.333v0h-341.333c-0.254 0.004-0.553 0.007-0.853 0.007-29.455 0-53.333-23.878-53.333-53.333 0-0.002 0-0.005 0-0.007l-0 0v-426.667c-0-0.002-0-0.004-0-0.007 0-29.455 23.878-53.333 53.333-53.333 0.3 0 0.6 0.002 0.898 0.007l-0.045-0.001h341.333c29.455 0 53.333 23.878 53.333 53.333v0 426.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["electronic-clock"]},"attrs":[{}],"properties":{"order":6627,"id":337,"name":"electronic-clock","prevSize":32,"code":59883},"setIdx":0,"setId":0,"iconIdx":235},{"icon":{"paths":["M384 372.053h-210.347c-54.669 0-98.987-44.318-98.987-98.987h-0v-120.747c0-54.669 44.318-98.987 98.987-98.987v-0h210.347c54.669 0 98.987 44.318 98.987 98.987v0 120.747c0 54.669-44.318 98.987-98.987 98.987v0zM173.227 116.053c-19.323 0-34.987 15.664-34.987 34.987v0 122.027c0 19.323 15.664 34.987 34.987 34.987v0h210.773c19.323 0 34.987-15.664 34.987-34.987v0-120.747c0-19.323-15.664-34.987-34.987-34.987v-0zM378.453 969.387h-199.253c-0.002 0-0.005 0-0.008 0-57.282 0-103.803-46.074-104.525-103.185l-0.001-0.068v-324.267c0-57.732 46.801-104.533 104.533-104.533v0h199.68c57.732 0 104.533 46.801 104.533 104.533v0 324.267c0 57.732-46.801 104.533-104.533 104.533v0zM178.773 500.053c-0.016-0-0.035-0-0.053-0-22.814 0-41.446 17.905-42.609 40.43l-0.004 0.104v324.267c1.168 22.628 19.8 40.533 42.613 40.533 0.019 0 0.037-0 0.056-0l-0.003 0h200.107c21.927-1.105 39.429-18.606 40.529-40.432l0.004-0.102v-322.987c-1.105-21.927-18.606-39.429-40.432-40.529l-0.102-0.004zM844.8 585.387h-193.707c-57.497 0-104.107-46.61-104.107-104.107v0-323.84c0-57.497 46.61-104.107 104.107-104.107v0h194.133c57.497-0 104.107 46.61 104.107 104.107l-0 0v325.12c0 57.497-46.61 104.107-104.107 104.107h-0zM650.667 116.053c-22.15-0-40.107 17.956-40.107 40.107l-0 0v325.12c0 22.15 17.956 40.107 40.107 40.107h194.133c22.15 0 40.107-17.956 40.107-40.107v0-323.84c0-22.15-17.956-40.107-40.107-40.107v0zM850.347 969.387h-204.8c-0 0-0.001 0-0.001 0-54.519 0-98.743-44.075-98.986-98.537l-0-0.023v-122.88c0.242-54.485 44.467-98.56 98.986-98.56 0 0 0.001 0 0.001 0l204.8-0c54.336 0.241 98.319 44.224 98.56 98.537l0 0.023v124.16c-0.239 54.187-43.981 98.079-98.087 98.56l-0.046 0zM645.547 713.387c-0.001-0-0.002-0-0.003-0-19.173 0-34.743 15.422-34.984 34.537l-0 0.023v124.16c0.241 19.138 15.811 34.56 34.984 34.56 0.001 0 0.002-0 0.003-0l204.8 0c19.087 0 34.56-15.473 34.56-34.56h0v-124.16c-0-19.087-15.473-34.56-34.56-34.56h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-1"]},"attrs":[{}],"properties":{"order":6628,"id":336,"name":"element-1","prevSize":32,"code":59884},"setIdx":0,"setId":0,"iconIdx":236},{"icon":{"paths":["M230.827 117.333v113.493h-113.493v-113.493h113.493zM246.613 53.333h-145.067c-26.531 0.239-47.974 21.683-48.213 48.191l-0 0.023v145.067c0.239 26.531 21.683 47.974 48.191 48.213l0.023 0h145.067c26.531-0.239 47.974-21.683 48.213-48.191l0-0.023v-145.067c-0.239-26.531-21.683-47.974-48.191-48.213l-0.023-0zM906.667 117.333v113.493h-113.493v-113.493h113.493zM568.747 117.333v113.493h-113.493v-113.493h113.493zM906.667 455.253v113.493h-113.493v-113.493h113.493zM568.747 455.253v113.493h-113.493v-113.493h113.493zM230.827 455.253v113.493h-113.493v-113.493h113.493zM906.667 793.173v113.493h-113.493v-113.493h113.493zM568.747 793.173v113.493h-113.493v-113.493h113.493zM230.827 793.173v113.493h-113.493v-113.493h113.493zM922.453 53.333h-145.067c-26.531 0.239-47.974 21.683-48.213 48.191l-0 0.023v145.067c0.239 26.531 21.683 47.974 48.191 48.213l0.023 0h145.067c26.531-0.239 47.974-21.683 48.213-48.191l0-0.023v-145.067c-0.239-26.531-21.683-47.974-48.191-48.213l-0.023-0zM584.533 53.333h-145.067c-26.531 0.239-47.974 21.683-48.213 48.191l-0 0.023v145.067c0.239 26.531 21.683 47.974 48.191 48.213l0.023 0h145.067c26.531-0.239 47.974-21.683 48.213-48.191l0-0.023v-145.067c-0.239-26.531-21.683-47.974-48.191-48.213l-0.023-0zM922.453 391.253h-145.067c-26.531 0.239-47.974 21.683-48.213 48.191l-0 0.023v145.067c0.239 26.531 21.683 47.974 48.191 48.213l0.023 0h145.067c26.531-0.239 47.974-21.683 48.213-48.191l0-0.023v-145.067c-0.239-26.531-21.683-47.974-48.191-48.213l-0.023-0zM584.533 391.253h-145.067c-26.531 0.239-47.974 21.683-48.213 48.191l-0 0.023v145.067c0.239 26.531 21.683 47.974 48.191 48.213l0.023 0h145.067c26.531-0.239 47.974-21.683 48.213-48.191l0-0.023v-145.067c-0.239-26.531-21.683-47.974-48.191-48.213l-0.023-0zM246.613 391.253h-145.067c-26.531 0.239-47.974 21.683-48.213 48.191l-0 0.023v145.067c0.239 26.531 21.683 47.974 48.191 48.213l0.023 0h145.067c26.531-0.239 47.974-21.683 48.213-48.191l0-0.023v-145.067c-0.239-26.531-21.683-47.974-48.191-48.213l-0.023-0zM922.453 729.173h-145.067c-26.531 0.239-47.974 21.683-48.213 48.191l-0 0.023v145.067c0.239 26.531 21.683 47.974 48.191 48.213l0.023 0h145.067c26.531-0.239 47.974-21.683 48.213-48.191l0-0.023v-145.067c-0.239-26.531-21.683-47.974-48.191-48.213l-0.023-0zM584.533 729.173h-145.067c-26.531 0.239-47.974 21.683-48.213 48.191l-0 0.023v145.067c0.239 26.531 21.683 47.974 48.191 48.213l0.023 0h145.067c26.531-0.239 47.974-21.683 48.213-48.191l0-0.023v-145.067c-0.239-26.531-21.683-47.974-48.191-48.213l-0.023-0zM246.613 729.173h-145.067c-26.531 0.239-47.974 21.683-48.213 48.191l-0 0.023v145.067c0.239 26.531 21.683 47.974 48.191 48.213l0.023 0h145.067c26.531-0.239 47.974-21.683 48.213-48.191l0-0.023v-145.067c-0.239-26.531-21.683-47.974-48.191-48.213l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-2"]},"attrs":[{}],"properties":{"order":6629,"id":335,"name":"element-2","prevSize":32,"code":59885},"setIdx":0,"setId":0,"iconIdx":237},{"icon":{"paths":["M865.707 928h-344.747c-57.968 0-104.96-46.992-104.96-104.96v0-622.080c0-57.968 46.992-104.96 104.96-104.96v0h344.747c57.968 0 104.96 46.992 104.96 104.96v0 622.080c0 57.968-46.992 104.96-104.96 104.96v0zM520.96 160c-23.564 0-42.667 19.103-42.667 42.667v0 620.373c0 23.564 19.103 42.667 42.667 42.667v0h344.747c23.564 0 42.667-19.103 42.667-42.667v0-622.080c0-23.564-19.103-42.667-42.667-42.667v0zM250.027 928h-93.013c-57.261 0-103.68-46.419-103.68-103.68h0v-624.64c-0-57.261 46.419-103.68 103.68-103.68v0h93.013c57.261-0 103.68 46.419 103.68 103.68v0 624.64c0 57.261-46.419 103.68-103.68 103.68h0zM157.013 160c-21.915-0-39.68 17.765-39.68 39.68h0v624.64c-0 21.915 17.765 39.68 39.68 39.68h93.013c21.915 0 39.68-17.765 39.68-39.68v0-624.64c0-21.915-17.765-39.68-39.68-39.68v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-3"]},"attrs":[{}],"properties":{"order":6630,"id":334,"name":"element-3","prevSize":32,"code":59886},"setIdx":0,"setId":0,"iconIdx":238},{"icon":{"paths":["M460.373 928h-260.267c-81.061 0-146.773-65.713-146.773-146.773v-538.453c0-81.061 65.713-146.773 146.773-146.773v0h260.267c80.877 0.243 146.347 65.862 146.347 146.773 0 0-0 0.001-0 0.001l0-0v538.453c0 0 0 0 0 0.001 0 80.911-65.47 146.53-146.324 146.773l-0.023 0zM200.107 160c-45.714 0-82.773 37.059-82.773 82.773h0v538.453c-0 45.714 37.059 82.773 82.773 82.773v-0h260.267c0 0 0.001 0 0.001 0 45.479 0 82.347-36.868 82.347-82.347 0-0.15-0-0.3-0.001-0.45l0 0.023v-538.453c0.001-0.127 0.001-0.277 0.001-0.427 0-45.479-36.868-82.347-82.347-82.347-0 0-0.001 0-0.001 0l-0 0zM866.987 928h-92.16c-57.261 0-103.68-46.419-103.68-103.68v0-624.64c0-57.261 46.419-103.68 103.68-103.68v0h92.16c57.261 0 103.68 46.419 103.68 103.68v0 624.64c0 57.261-46.419 103.68-103.68 103.68v0zM774.827 160c-21.915-0-39.68 17.765-39.68 39.68v0 624.64c0 21.915 17.765 39.68 39.68 39.68v0h92.16c21.915 0 39.68-17.765 39.68-39.68v0-624.64c0-21.915-17.765-39.68-39.68-39.68v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-4"]},"attrs":[{}],"properties":{"order":6631,"id":333,"name":"element-4","prevSize":32,"code":59887},"setIdx":0,"setId":0,"iconIdx":239},{"icon":{"paths":["M251.307 928h-94.293c-57.261 0-103.68-46.419-103.68-103.68h0v-624.64c-0-57.261 46.419-103.68 103.68-103.68v0h94.293c57.261-0 103.68 46.419 103.68 103.68v0 624.64c0 57.261-46.419 103.68-103.68 103.68h-0zM157.013 160c-21.915-0-39.68 17.765-39.68 39.68v0 624.64c0 21.915 17.765 39.68 39.68 39.68v0h94.293c21.915 0 39.68-17.765 39.68-39.68v0-624.64c0-21.915-17.765-39.68-39.68-39.68v0zM867.84 928h-348.16c-56.606-0.242-102.4-46.186-102.4-102.826 0-0 0-0.001 0-0.001l-0 0v-179.627c-0-0-0-0.001-0-0.001 0-56.64 45.794-102.583 102.377-102.826l0.023-0h348.16c56.79 0 102.827 46.037 102.827 102.827h-0v179.627c0 56.79-46.037 102.827-102.827 102.827l-0-0zM519.68 606.72c-0.001-0-0.002-0-0.002-0-21.208 0-38.4 17.192-38.4 38.4 0 0.15 0.001 0.3 0.003 0.449l-0-0.023v179.627c-0.002 0.127-0.002 0.277-0.002 0.427 0 21.208 17.192 38.4 38.4 38.4 0.001 0 0.002-0 0.003-0l348.16 0c21.443 0 38.827-17.383 38.827-38.827l-0-0v-179.627c0-21.443-17.383-38.827-38.827-38.827h-0zM867.84 478.72h-348.16c-56.457-0.241-102.159-45.943-102.4-102.377l-0-0.023v-177.493c-0-0-0-0.001-0-0.001 0-56.64 45.794-102.583 102.377-102.826l0.023-0h348.16c56.79 0 102.827 46.037 102.827 102.827h-0v179.627c-0.242 56.606-46.186 102.4-102.826 102.4-0 0-0.001-0-0.001-0l0 0zM519.68 160c-0.001-0-0.002-0-0.002-0-21.208 0-38.4 17.192-38.4 38.4 0 0.15 0.001 0.3 0.003 0.449l-0-0.023v179.627c0 21.208 17.192 38.4 38.4 38.4v-0h348.16c0.127 0.002 0.277 0.002 0.427 0.002 21.208 0 38.4-17.192 38.4-38.4 0-0.001-0-0.002-0-0.003l0 0v-179.627c0-21.443-17.383-38.827-38.827-38.827h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-5"]},"attrs":[{}],"properties":{"order":6632,"id":332,"name":"element-5","prevSize":32,"code":59888},"setIdx":0,"setId":0,"iconIdx":240},{"icon":{"paths":["M853.333 949.333h-51.2c-54.198 0-98.133-43.936-98.133-98.133l0-0v-339.2c-0-0-0-0.001-0-0.001 0-54.283 43.884-98.317 98.11-98.559l0.023-0h51.2c53.321 1.429 96 44.994 96 98.527 0 0.012-0 0.023-0 0.035l0-0.002v341.333c-1.166 52.544-43.456 94.834-95.89 95.998l-0.11 0.002zM802.133 480c-0.020-0-0.043-0-0.067-0-18.101 0-32.911 14.089-34.061 31.899l-0.005 0.101v341.333c-0 18.851 15.282 34.133 34.133 34.133h51.2c18.851 0 34.133-15.282 34.133-34.133v0-341.333c0.002-0.127 0.003-0.277 0.003-0.427 0-18.851-15.282-34.133-34.133-34.133-0.001 0-0.002 0-0.003 0l0-0zM543.147 949.333h-51.2c-53.185-0.231-96.324-42.921-97.279-95.91l-0.001-0.090v-341.333c-0-0-0-0.001-0-0.001 0-53.812 43.502-97.463 97.257-97.706l0.023-0h49.067c0.254-0.002 0.554-0.004 0.854-0.004 54.049 0 97.892 43.695 98.132 97.687l0 0.023v341.333c-1.193 53.274-44.661 96.004-98.11 96.004-0.308 0-0.616-0.001-0.923-0.004l0.047 0zM494.080 480c-18.431 0.241-33.28 15.238-33.28 33.704 0 0.001 0 0.002 0 0.003l-0-0v339.627c-0.002 0.127-0.003 0.277-0.003 0.427 0 18.38 14.9 33.28 33.28 33.28 0.001 0 0.002-0 0.003-0l49.067 0c18.616 0 33.707-15.091 33.707-33.707v0-341.333c0-18.616-15.091-33.707-33.707-33.707v0zM231.68 949.333h-57.6c-54.807-0.241-99.172-44.606-99.413-99.39l-0-0.023v-335.36c0.241-54.807 44.606-99.172 99.39-99.413l0.023-0h55.467c54.807 0.241 99.172 44.606 99.413 99.39l0 0.023v335.36c-0.241 54.807-44.606 99.172-99.39 99.413l-0.023 0zM176.213 480c-19.558-0-35.413 15.855-35.413 35.413v335.36c0 19.558 15.855 35.413 35.413 35.413v0h55.467c19.558 0 35.413-15.855 35.413-35.413v0-336.213c0-19.558-15.855-35.413-35.413-35.413v0zM844.8 352h-663.467c-58.91 0-106.667-47.756-106.667-106.667v0-64c0-58.91 47.756-106.667 106.667-106.667v0h661.333c58.91 0 106.667 47.756 106.667 106.667v0 64c0 58.91-47.756 106.667-106.667 106.667v0zM183.467 138.667c-23.564 0-42.667 19.103-42.667 42.667v0 64c0 23.564 19.103 42.667 42.667 42.667v0h661.333c23.564 0 42.667-19.103 42.667-42.667v0-64c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-6"]},"attrs":[{}],"properties":{"order":6633,"id":331,"name":"element-6","prevSize":32,"code":59889},"setIdx":0,"setId":0,"iconIdx":241},{"icon":{"paths":["M847.36 327.68h-670.72c-56.318 0-101.973-45.655-101.973-101.973l0 0v-49.067c-0-56.318 45.655-101.973 101.973-101.973v0h670.72c56.318-0 101.973 45.655 101.973 101.973v49.067c0 56.318-45.655 101.973-101.973 101.973v0zM176.64 138.667c-20.972-0-37.973 17.001-37.973 37.973v0 49.067c0 20.972 17.001 37.973 37.973 37.973v0h670.72c20.972 0 37.973-17.001 37.973-37.973v0-49.067c0-20.972-17.001-37.973-37.973-37.973v0zM270.507 949.333h-93.867c-56.318 0-101.973-45.655-101.973-101.973v0-352.427c0-56.318 45.655-101.973 101.973-101.973v0h93.867c56.135 0.242 101.547 45.804 101.547 101.972 0 0-0 0.001-0 0.001l0-0v352.427c0 0 0 0.001 0 0.001 0 56.168-45.412 101.73-101.524 101.972l-0.023 0zM176.64 456.96c-20.972 0-37.973 17.001-37.973 37.973v0 352.427c0 20.972 17.001 37.973 37.973 37.973v0h93.867c20.788-0.241 37.547-17.149 37.547-37.971 0-0.001-0-0.002-0-0.003l0 0v-352.427c0-0.001 0-0.002 0-0.002 0-20.822-16.759-37.73-37.524-37.971l-0.023-0zM846.080 949.333h-305.92c-56.928-0.241-103.012-46.325-103.253-103.23l-0-0.023v-349.44c-0-0-0-0.001-0-0.001 0-57.111 46.176-103.437 103.23-103.679l0.023-0h305.92c57.077 0.242 103.253 46.568 103.253 103.679 0 0-0 0.001-0 0.001l0-0v349.44c-0.241 56.928-46.325 103.012-103.23 103.253l-0.023 0zM540.16 456.96c-21.73 0.241-39.253 17.913-39.253 39.678 0 0.001 0 0.002 0 0.002l-0-0v349.44c0 21.679 17.574 39.253 39.253 39.253v0h305.92c21.679 0 39.253-17.574 39.253-39.253v0-349.44c0-0.001 0-0.001 0-0.002 0-21.765-17.523-39.437-39.231-39.678l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-7"]},"attrs":[{}],"properties":{"order":6634,"id":330,"name":"element-7","prevSize":32,"code":59890},"setIdx":0,"setId":0,"iconIdx":242},{"icon":{"paths":["M849.493 949.333h-316.587c-0 0-0.001 0-0.001 0-55.226 0-100.023-44.648-100.266-99.817l-0-0.023v-48.213c0.242-55.192 45.040-99.84 100.266-99.84 0 0 0.001 0 0.001 0l316.587-0c55.14 0 99.84 44.7 99.84 99.84h0v48.213c-0 55.14-44.7 99.84-99.84 99.84l0 0zM532.907 765.44c-0.001-0-0.002-0-0.003-0-19.88 0-36.023 15.995-36.264 35.817l-0 0.023v48.213c0.241 19.845 16.385 35.84 36.264 35.84 0.001 0 0.002-0 0.003-0l316.587 0c19.698-0.238 35.602-16.142 35.84-35.817l0-0.023v-48.213c-0.238-19.698-16.142-35.602-35.817-35.84l-0.023-0zM849.493 640h-317.013c-55.14 0-99.84-44.7-99.84-99.84v0-47.36c0.242-54.956 44.849-99.413 99.839-99.413 0 0 0.001 0 0.001 0l317.013-0c0-0 0.001-0 0.001-0 54.99 0 99.597 44.457 99.839 99.39l0 0.023v47.36c-0 55.14-44.7 99.84-99.84 99.84h0zM532.48 457.387c-0.001-0-0.002-0-0.003-0-19.644 0-35.597 15.804-35.837 35.391l-0 0.023v47.36c0.238 19.698 16.142 35.602 35.817 35.84l0.023 0h317.013c19.794 0 35.84-16.046 35.84-35.84h0v-47.36c0-0.001 0-0.002 0-0.003 0-19.558-15.855-35.413-35.413-35.413-0.15 0-0.3 0.001-0.449 0.003l0.023-0zM846.933 329.387h-669.867c-56.606-0.242-102.4-46.186-102.4-102.826 0-0 0-0.001 0-0.001l-0 0v-49.493c0.241-56.457 45.943-102.159 102.377-102.4l0.023-0h669.867c56.457 0.241 102.159 45.943 102.4 102.377l0 0.023v50.347c0 0 0 0.001 0 0.001 0 56.64-45.794 102.583-102.377 102.826l-0.023 0zM177.067 138.667c-21.111 0.238-38.162 17.289-38.4 38.377l-0 0.023v50.347c-0 0.001-0 0.002-0 0.002 0 21.293 17.141 38.583 38.377 38.824l0.023 0h669.867c21.259-0.241 38.4-17.531 38.4-38.824 0-0.001-0-0.002-0-0.002l0 0v-50.347c-0.238-21.111-17.289-38.162-38.377-38.4l-0.023-0zM268.8 949.333h-92.587c-55.985-0.241-101.305-45.561-101.547-101.523l-0-0.023v-352.853c0.241-55.985 45.561-101.305 101.523-101.547l0.023-0h92.587c56.083 0 101.547 45.464 101.547 101.547v-0 352.853c0 56.083-45.464 101.547-101.547 101.547h-0zM176.213 457.387c-0.128-0.002-0.278-0.002-0.429-0.002-20.501 0-37.12 16.619-37.12 37.12 0 0.151 0.001 0.302 0.003 0.452l-0-0.023v352.853c-0.002 0.128-0.002 0.278-0.002 0.429 0 20.501 16.619 37.12 37.12 37.12 0.151 0 0.302-0.001 0.452-0.003l-0.023 0h92.587c0.128 0.002 0.278 0.002 0.429 0.002 20.501 0 37.12-16.619 37.12-37.12 0-0.151-0.001-0.302-0.003-0.452l0 0.023v-352.853c0.002-0.128 0.002-0.278 0.002-0.429 0-20.501-16.619-37.12-37.12-37.12-0.151 0-0.302 0.001-0.452 0.003l0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-8"]},"attrs":[{}],"properties":{"order":6635,"id":329,"name":"element-8","prevSize":32,"code":59891},"setIdx":0,"setId":0,"iconIdx":243},{"icon":{"paths":["M845.653 949.333h-667.307c-57.261 0-103.68-46.419-103.68-103.68v0-329.387c0.242-57.077 46.568-103.253 103.679-103.253 0 0 0.001 0 0.001 0l667.307-0c0-0 0.001-0 0.001-0 57.111 0 103.437 46.176 103.679 103.23l0 0.023v329.387c0 57.261-46.419 103.68-103.68 103.68v0zM178.347 477.013c-0.001-0-0.001-0-0.002-0-21.765 0-39.437 17.523-39.678 39.231l-0 0.023v329.387c0 21.915 17.765 39.68 39.68 39.68v0h667.307c21.915 0 39.68-17.765 39.68-39.68v0-329.387c-0.241-21.73-17.913-39.253-39.678-39.253-0.001 0-0.002 0-0.002 0l0-0zM842.667 352h-661.333c-58.91 0-106.667-47.756-106.667-106.667v0-64c0-58.91 47.756-106.667 106.667-106.667v0h661.333c58.91 0 106.667 47.756 106.667 106.667v0 64c0 58.91-47.756 106.667-106.667 106.667v0zM181.333 138.667c-23.564 0-42.667 19.103-42.667 42.667v0 64c0 23.564 19.103 42.667 42.667 42.667v0h661.333c23.564 0 42.667-19.103 42.667-42.667v0-64c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-9"]},"attrs":[{}],"properties":{"order":6636,"id":328,"name":"element-9","prevSize":32,"code":59892},"setIdx":0,"setId":0,"iconIdx":244},{"icon":{"paths":["M375.893 970.667h-197.12c-57.399-0.241-103.865-46.707-104.107-104.084l-0-0.023v-709.12c0.241-57.399 46.707-103.865 104.084-104.107l0.023-0h197.12c57.497-0 104.107 46.61 104.107 104.107v709.12c0 57.497-46.61 104.107-104.107 104.107v-0zM178.773 117.333c-22.15-0-40.107 17.956-40.107 40.107v709.12c0 22.15 17.956 40.107 40.107 40.107v-0h197.12c22.15 0 40.107-17.956 40.107-40.107v-709.12c0-22.15-17.956-40.107-40.107-40.107v0zM847.36 477.013h-202.24c-56.221-0.241-101.732-45.752-101.973-101.95l-0-0.023v-219.733c0.241-56.221 45.752-101.732 101.95-101.973l0.023-0h202.24c56.318 0 101.973 45.655 101.973 101.973v0 219.733c-0.241 56.221-45.752 101.732-101.95 101.973l-0.023 0zM645.12 117.333c-20.972 0-37.973 17.001-37.973 37.973v0 219.733c0 20.972 17.001 37.973 37.973 37.973v0h202.24c20.972 0 37.973-17.001 37.973-37.973v0-219.733c0-20.972-17.001-37.973-37.973-37.973v0zM846.933 970.667h-200.96c-0 0-0.001 0-0.001 0-56.64 0-102.583-45.794-102.826-102.377l-0-0.023v-224c-0-0-0-0.001-0-0.001 0-56.554 45.846-102.4 102.4-102.4 0.15 0 0.3 0 0.45 0.001l-0.023-0h200.96c56.554 0 102.4 45.846 102.4 102.4v224c-0.241 56.457-45.943 102.159-102.377 102.4l-0.023 0zM645.973 605.867c-0.127-0.002-0.277-0.002-0.427-0.002-21.208 0-38.4 17.192-38.4 38.4 0 0.001 0 0.002 0 0.003l-0-0v224c0.241 21.259 17.531 38.4 38.824 38.4 0.001 0 0.002-0 0.002-0l200.96 0c21.111-0.238 38.162-17.289 38.4-38.377l0-0.023v-224c0-21.208-17.192-38.4-38.4-38.4v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-10"]},"attrs":[{}],"properties":{"order":6637,"id":327,"name":"element-10","prevSize":32,"code":59893},"setIdx":0,"setId":0,"iconIdx":245},{"icon":{"paths":["M372.053 480h-213.333c-58.457-1.197-105.387-48.867-105.387-107.499 0-0.007 0-0.015 0-0.022l-0 0.001v-213.333c0.961-58.643 48.725-105.813 107.506-105.813 0.005 0 0.010 0 0.014 0l213.333-0c59.382-0 107.52 48.138 107.52 107.52v213.333c-0.949 58.652-48.718 105.835-107.507 105.835-0.755 0-1.508-0.008-2.259-0.023l0.112 0.002zM158.72 117.333c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h213.333c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0zM861.013 480h-213.333c-59.382 0-107.52-48.138-107.52-107.52v0-213.333c0-59.382 48.138-107.52 107.52-107.52v0h213.333c59.382 0 107.52 48.138 107.52 107.52h0v213.333c0 0.006 0 0.014 0 0.021 0 58.632-46.93 106.302-105.275 107.497l-0.112 0.002zM647.68 117.333c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h213.333c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0zM858.453 970.667h-206.933c-59.382 0-107.52-48.138-107.52-107.52v0-213.333c0-59.382 48.138-107.52 107.52-107.52v0h211.2c59.382 0 107.52 48.138 107.52 107.52h0v213.333c-0 59.382-48.138 107.52-107.52 107.52h0zM647.253 608c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h211.2c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0zM367.787 970.667h-213.333c-59.382 0-107.52-48.138-107.52-107.52v0-213.333c0-59.382 48.138-107.52 107.52-107.52v0h213.333c59.382 0 107.52 48.138 107.52 107.52v0 213.333c0 0.025 0 0.055 0 0.085 0 57.881-45.736 105.080-103.041 107.428l-0.213 0.007zM154.453 608c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h213.333c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-11"]},"attrs":[{}],"properties":{"order":6638,"id":326,"name":"element-11","prevSize":32,"code":59894},"setIdx":0,"setId":0,"iconIdx":246},{"icon":{"paths":["M849.067 565.333h-206.933c-56.842-0.242-102.827-46.377-102.827-103.252 0-0 0-0.001 0-0.001l-0 0v-305.92c0-56.79 46.037-102.827 102.827-102.827v0h206.933c56.79 0 102.827 46.037 102.827 102.827v0 305.92c0 0 0 0.001 0 0.001 0 56.875-45.985 103.010-102.803 103.252l-0.023 0zM642.133 117.333c-21.443 0-38.827 17.383-38.827 38.827v0 305.92c-0 0.001-0 0.001-0 0.002 0 21.529 17.332 39.010 38.804 39.251l0.023 0h206.933c21.495-0.241 38.827-17.722 38.827-39.251 0-0.001-0-0.002-0-0.002l0 0v-305.92c0-21.443-17.383-38.827-38.827-38.827v0zM849.92 970.667h-203.947c-56.37-0.242-101.973-45.995-101.973-102.399 0-0 0-0.001 0-0.001l-0 0v-139.093c0-56.318 45.655-101.973 101.973-101.973v0h203.947c56.318 0 101.973 45.655 101.973 101.973v0 139.093c0 0 0 0.001 0 0.001 0 56.404-45.603 102.157-101.95 102.399l-0.023 0zM645.973 691.2c-20.972 0-37.973 17.001-37.973 37.973v0 139.093c-0.002 0.127-0.002 0.277-0.002 0.427 0 20.972 17.001 37.973 37.973 37.973 0.001 0 0.002-0 0.003-0l203.947 0c0.001 0 0.002 0 0.002 0 20.972 0 37.973-17.001 37.973-37.973 0-0.15-0.001-0.3-0.003-0.449l0 0.023v-139.093c0-20.972-17.001-37.973-37.973-37.973v0zM373.333 970.667h-197.12c-57.399-0.241-103.865-46.707-104.107-104.084l-0-0.023v-709.12c0.241-57.399 46.707-103.865 104.084-104.107l0.023-0h197.12c57.399 0.241 103.865 46.707 104.107 104.084l0 0.023v709.12c-0.241 57.399-46.707 103.865-104.084 104.107l-0.023 0zM176.213 117.333c-22.15-0-40.107 17.956-40.107 40.107v709.12c0 22.15 17.956 40.107 40.107 40.107v-0h197.12c22.15 0 40.107-17.956 40.107-40.107l0-0v-709.12c-0-22.15-17.956-40.107-40.107-40.107l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-12"]},"attrs":[{}],"properties":{"order":6639,"id":325,"name":"element-12","prevSize":32,"code":59895},"setIdx":0,"setId":0,"iconIdx":247},{"icon":{"paths":["M361.387 480h-213.333c-58.457-1.197-105.387-48.867-105.387-107.499 0-0.007 0-0.015 0-0.022l-0 0.001v-213.333c0.961-58.643 48.725-105.813 107.506-105.813 0.005 0 0.010 0 0.014 0l213.333-0c58.643 0.961 105.813 48.725 105.813 107.506 0 0.005-0 0.010-0 0.014l0-0.001v213.333c-0.96 58.643-48.725 105.814-107.506 105.814-0.155 0-0.309-0-0.464-0.001l0.024 0zM148.053 117.333c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h213.333c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0zM853.333 480h-213.333c-59.014-0.483-106.667-48.435-106.667-107.517 0-0.001 0-0.002 0-0.004l-0 0v-213.333c0.954-58.35 48.245-105.342 106.621-105.813l0.045-0h213.333c59.382-0 107.52 48.138 107.52 107.52l0 0v213.333c-0.961 58.643-48.725 105.813-107.506 105.813-0.005 0-0.010-0-0.014-0l0.001 0zM640 117.333c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h213.333c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0zM360.533 970.667h-213.333c-58.083-1.665-104.533-49.147-104.533-107.479 0-0.015 0-0.029 0-0.044l-0 0.002v-213.333c-0-59.382 48.138-107.52 107.52-107.52h213.333c58.649 0.953 105.827 48.72 105.827 107.507 0 0.605-0.005 1.208-0.015 1.811l0.001-0.091v213.333c-0.96 58.643-48.725 105.814-107.506 105.814-0.155 0-0.309-0-0.464-0.001l0.024 0zM147.2 608c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h213.333c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0zM927.573 839.253c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-298.24c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h298.667c17.489-0.241 31.573-14.474 31.573-31.997 0-0.001-0-0.002-0-0.003l0 0zM927.573 675.413c0-17.673-14.327-32-32-32v0h-298.24c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h298.667c17.394-0.471 31.343-14.569 31.573-31.978l0-0.022z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-equal"]},"attrs":[{}],"properties":{"order":6640,"id":324,"name":"element-equal","prevSize":32,"code":59896},"setIdx":0,"setId":0,"iconIdx":248},{"icon":{"paths":["M393.387 53.333h-213.333c-58.457 1.197-105.387 48.867-105.387 107.499 0 0.007 0 0.015 0 0.022l-0-0.001v213.333c-0 59.382 48.138 107.52 107.52 107.52v0h213.333c59.382 0 107.52-48.138 107.52-107.52v0-213.333c0-0.006 0-0.014 0-0.021 0-59.382-48.138-107.52-107.52-107.52-0.75 0-1.498 0.008-2.245 0.023l0.112-0.002zM436.053 372.48c0 23.564-19.103 42.667-42.667 42.667v0h-213.333c-23.564 0-42.667-19.103-42.667-42.667v0-213.333c0-23.564 19.103-42.667 42.667-42.667v0h213.333c23.564 0 42.667 19.103 42.667 42.667v0zM884.48 53.333h-213.333c-59.198 0.242-107.093 48.288-107.093 107.519 0 0 0 0.001 0 0.001l-0-0v213.333c-0 0-0 0.001-0 0.001 0 59.232 47.895 107.277 107.070 107.519l0.023 0h213.333c59.382 0 107.52-48.138 107.52-107.52v0-213.333c0-59.382-48.138-107.52-107.52-107.52v0zM927.147 372.48c0 23.564-19.103 42.667-42.667 42.667v0h-213.333c-23.564 0-42.667-19.103-42.667-42.667v0-213.333c0-23.564 19.103-42.667 42.667-42.667v0h213.333c23.564 0 42.667 19.103 42.667 42.667v0zM392.533 543.147h-213.333c-59.382 0-107.52 48.138-107.52 107.52v0 213.333c0 59.382 48.138 107.52 107.52 107.52v0h213.333c59.382-0 107.52-48.138 107.52-107.52v0-213.333c-0.479-58.717-47.95-106.188-106.621-106.666l-0.046-0zM435.2 862.293c0 23.564-19.103 42.667-42.667 42.667v0h-213.333c-23.564 0-42.667-19.103-42.667-42.667v0-213.333c0-23.564 19.103-42.667 42.667-42.667v0h213.333c23.564 0 42.667 19.103 42.667 42.667v0zM941.653 756.48c0 17.673-14.327 32-32 32v0h-98.987v100.693c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-99.84h-100.693c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h100.693v-100.693c0-17.673 14.327-32 32-32s32 14.327 32 32v0 100.693h100.693c17.673 0 32 14.327 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-plus"]},"attrs":[{}],"properties":{"order":6641,"id":323,"name":"element-plus","prevSize":32,"code":59897},"setIdx":0,"setId":0,"iconIdx":249},{"icon":{"paths":["M702.72 970.667h-381.44c-147.885-0.242-267.704-120.061-267.947-267.923l-0-0.023v-381.44c0.242-147.885 120.061-267.704 267.923-267.947l0.023-0h381.44c147.885 0.242 267.704 120.061 267.947 267.923l0 0.023v381.44c-0.242 147.885-120.061 267.704-267.923 267.947l-0.023 0zM321.28 117.333c-112.637 0-203.947 91.31-203.947 203.947h0v381.44c0 112.637 91.31 203.947 203.947 203.947h381.44c112.539-0.242 203.704-91.408 203.947-203.923l0-0.023v-381.44c-0.242-112.539-91.408-203.704-203.923-203.947l-0.023-0zM363.947 464.213c-61.974 0-112.213-50.24-112.213-112.213s50.24-112.213 112.213-112.213c61.974 0 112.213 50.24 112.213 112.213v-0c0 0.002 0 0.005 0 0.007 0 61.974-50.24 112.213-112.213 112.213-0.45 0-0.9-0.003-1.348-0.008l0.068 0.001zM363.947 303.787c-0.381-0.011-0.83-0.017-1.28-0.017-26.627 0-48.213 21.586-48.213 48.213s21.586 48.213 48.213 48.213c26.622 0 48.204-21.576 48.213-48.195l0-0.001c-0.239-26.531-21.683-47.974-48.191-48.213l-0.023-0zM660.053 464.213c-61.974 0-112.213-50.24-112.213-112.213s50.24-112.213 112.213-112.213c61.974 0 112.213 50.24 112.213 112.213v-0c0 0.002 0 0.005 0 0.007 0 61.974-50.24 112.213-112.213 112.213-0.45 0-0.9-0.003-1.348-0.008l0.068 0.001zM660.053 303.787c-26.627-0-48.213 21.586-48.213 48.213s21.586 48.213 48.213 48.213c26.627 0 48.213-21.586 48.213-48.213h0c-0.237-26.682-21.922-48.221-48.638-48.221-0.301 0-0.601 0.003-0.9 0.008l0.045-0.001zM512 846.080c-132.385-0.484-239.545-107.794-239.787-240.19l-0-0.023c-0-47.128 38.205-85.333 85.333-85.333v0h307.627c47.128 0 85.333 38.205 85.333 85.333v0c0 0.002 0 0.004 0 0.006 0 132.066-106.577 239.24-238.415 240.207l-0.092 0.001zM358.827 583.253c-12.489 0-22.613 10.124-22.613 22.613v0c-0 97.32 78.893 176.213 176.213 176.213s176.213-78.893 176.213-176.213v0c0.003-0.127 0.004-0.277 0.004-0.427 0-12.253-9.933-22.187-22.187-22.187-0.001 0-0.003 0-0.004 0l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["emoji-happy"]},"attrs":[{}],"properties":{"order":6642,"id":322,"name":"emoji-happy","prevSize":32,"code":59898},"setIdx":0,"setId":0,"iconIdx":250},{"icon":{"paths":["M363.725 543.13v6.144c0 54.518 44.196 98.714 98.714 98.714v0h187.597c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72v0h-187.597c-88.45 0-160.154-71.703-160.154-160.154v0-74.547c0-88.45 71.703-160.154 160.154-160.154v0h187.597c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72v0h-187.597c-54.518 0-98.714 44.196-98.714 98.714v0 6.963h286.72c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72v0 0zM931.84 512c0-243.182-197.138-440.32-440.32-440.32s-440.32 197.138-440.32 440.32c0 243.182 197.138 440.32 440.32 440.32v0c243.088-0.233 440.087-197.232 440.32-440.298l0-0.022zM870.4 512c0 209.25-169.63 378.88-378.88 378.88s-378.88-169.63-378.88-378.88c0-209.25 169.63-378.88 378.88-378.88v0c209.156 0.233 378.647 169.724 378.88 378.857l0 0.023z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["enjin-coin"]},"attrs":[{}],"properties":{"order":6643,"id":321,"name":"enjin-coin","prevSize":32,"code":59899},"setIdx":0,"setId":0,"iconIdx":251},{"icon":{"paths":["M659.627 535.040l-128 128c-5.926 5.832-14.062 9.433-23.040 9.433s-17.114-3.601-23.044-9.437l0.004 0.004c-5.935-5.879-9.609-14.030-9.609-23.040s3.674-17.161 9.606-23.037l0.003-0.003 71.253-71.253h-428.8c-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427h430.080l-71.253-72.533c-5.896-5.896-9.543-14.042-9.543-23.040 0-17.995 14.588-32.583 32.583-32.583 8.998 0 17.144 3.647 23.040 9.543v0l128 128c5.185 5.726 8.359 13.358 8.359 21.731 0 9.024-3.686 17.188-9.636 23.066l-0.003 0.003zM927.573 772.693v-521.387c-3.739-110.172-93.95-198.064-204.689-198.064-2.139 0-4.271 0.033-6.395 0.098l0.311-0.008h-189.44c-1.817-0.058-3.954-0.091-6.098-0.091-110.825 0-201.132 87.845-205.091 197.703l-0.010 0.361c0.237 18.048 14.805 32.616 32.831 32.853l0.023 0c17.96-0.241 32.427-14.856 32.427-32.851 0-0.001-0-0.002-0-0.003l0 0c3.67-74.356 64.85-133.254 139.787-133.254 2.157 0 4.303 0.049 6.436 0.145l-0.303-0.011h189.44c1.83-0.086 3.976-0.134 6.133-0.134 74.937 0 136.117 58.898 139.774 132.927l0.013 0.327v521.387c-3.67 74.356-64.85 133.254-139.787 133.254-2.157 0-4.303-0.049-6.436-0.145l0.303 0.011h-189.44c-1.83 0.086-3.976 0.134-6.133 0.134-74.937 0-136.117-58.898-139.774-132.927l-0.013-0.327c0-0.001 0-0.002 0-0.003 0-17.994-14.467-32.61-32.404-32.85l-0.023-0c-18.048 0.237-32.616 14.805-32.853 32.831l-0 0.023c3.969 110.219 94.277 198.064 205.102 198.064 2.144 0 4.281-0.033 6.41-0.098l-0.311 0.008h189.44c1.813 0.058 3.945 0.090 6.084 0.090 110.739 0 200.95-87.892 204.68-197.722l0.009-0.341z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["entrance-left"]},"attrs":[{}],"properties":{"order":6644,"id":320,"name":"entrance-left","prevSize":32,"code":59900},"setIdx":0,"setId":0,"iconIdx":252},{"icon":{"paths":["M499.2 970.667h-189.44c-1.813 0.058-3.945 0.090-6.084 0.090-110.739 0-200.95-87.892-204.68-197.722l-0.009-0.341v-521.387c3.739-110.172 93.95-198.064 204.689-198.064 2.139 0 4.271 0.033 6.395 0.098l-0.311-0.008h189.44c1.817-0.058 3.954-0.091 6.098-0.091 110.825 0 201.132 87.845 205.091 197.703l0.010 0.361c0 0.001 0 0.002 0 0.003 0 17.994-14.467 32.61-32.404 32.85l-0.023 0c-18.048-0.237-32.616-14.805-32.853-32.831l-0-0.023c-3.67-74.356-64.85-133.254-139.787-133.254-2.157 0-4.303 0.049-6.436 0.145l0.303-0.011h-189.44c-1.709-0.074-3.714-0.117-5.728-0.117-75.016 0-136.288 58.843-140.177 132.891l-0.015 0.346v521.387c3.904 74.394 65.176 133.237 140.192 133.237 2.015 0 4.019-0.042 6.013-0.126l-0.285 0.010h189.44c1.83 0.086 3.976 0.134 6.133 0.134 74.937 0 136.117-58.898 139.774-132.927l0.013-0.327c0.237-18.048 14.805-32.616 32.831-32.853l0.023-0c17.96 0.241 32.427 14.856 32.427 32.851 0 0.001-0 0.002-0 0.003l0-0c-3.969 110.219-94.277 198.064-205.102 198.064-2.144 0-4.281-0.033-6.41-0.098l0.311 0.008zM892.587 479.573h-429.227l71.253-71.253c5.734-5.969 9.265-14.092 9.265-23.040s-3.531-17.070-9.276-23.051l0.011 0.011c-5.879-5.935-14.030-9.609-23.040-9.609s-17.161 3.674-23.037 9.606l-0.003 0.003-128 128c-5.935 5.879-9.609 14.030-9.609 23.040s3.674 17.161 9.606 23.037l0.003 0.003 128 128c5.792 5.801 13.799 9.389 22.644 9.389 0.139 0 0.278-0.001 0.417-0.003l-0.021 0c0.066 0 0.144 0.001 0.222 0.001 8.899 0 16.962-3.585 22.821-9.39l-0.002 0.002c5.734-5.969 9.265-14.092 9.265-23.040s-3.531-17.070-9.276-23.051l0.011 0.011-71.253-71.253h429.227c17.909 0 32.427-14.518 32.427-32.427s-14.518-32.427-32.427-32.427h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["entrance-right"]},"attrs":[{}],"properties":{"order":6645,"id":319,"name":"entrance-right","prevSize":32,"code":59901},"setIdx":0,"setId":0,"iconIdx":253},{"icon":{"paths":["M912.64 420.267c16.065-16.125 25.997-38.369 25.997-62.933s-9.932-46.808-25.999-62.936l0.003 0.003-183.040-183.040c-15.998-16.078-38.143-26.028-62.611-26.028-0.188 0-0.376 0.001-0.564 0.002l0.029-0c-0.138-0.001-0.301-0.001-0.465-0.001-24.356 0-46.387 9.955-62.246 26.019l-0.009 0.009-492.373 492.373c-16.709 16.226-27.078 38.902-27.078 64s10.369 47.774 27.056 63.979l0.022 0.021 183.040 180.907c15.998 16.078 38.143 26.028 62.611 26.028 0.188 0 0.376-0.001 0.564-0.002l-0.029 0h507.307c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-406.187l207.787-207.787zM648.96 156.587c4.414-4.479 10.546-7.254 17.327-7.254 0.059 0 0.117 0 0.176 0.001l-0.009-0c0.071-0.001 0.155-0.001 0.239-0.001 6.892 0 13.138 2.77 17.684 7.257l-0.003-0.003 183.040 184.747c4.5 4.546 7.28 10.802 7.28 17.707s-2.78 13.161-7.282 17.709l0.002-0.002-223.573 220.587-217.173-217.173zM156.587 682.667c-4.5-4.546-7.28-10.802-7.28-17.707s2.78-13.161 7.282-17.709l-0.002 0.002 223.573-220.587 217.173 217.173-222.293 223.573c-4.414 4.479-10.546 7.254-17.327 7.254-0.059 0-0.117-0-0.176-0.001l0.009 0c-6.356-0.394-12.015-3.089-16.215-7.255l0.002 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eraser"]},"attrs":[{}],"properties":{"order":6646,"id":318,"name":"eraser","prevSize":32,"code":59902},"setIdx":0,"setId":0,"iconIdx":254},{"icon":{"paths":["M491.52 71.68c-243.182 0-440.32 197.138-440.32 440.32s197.138 440.32 440.32 440.32c243.182 0 440.32-197.138 440.32-440.32v0c-0.233-243.088-197.232-440.087-440.298-440.32l-0.022-0zM491.52 890.88c-209.25 0-378.88-169.63-378.88-378.88s169.63-378.88 378.88-378.88c209.25 0 378.88 169.63 378.88 378.88v0c-0.233 209.156-169.724 378.647-378.857 378.88l-0.023 0zM674.611 620.954c4.416 4.808 7.385 11.010 8.178 17.874l0.014 0.148c-0.171 18.868-9.237 35.584-23.202 46.179l-0.145 0.106c-15.491 16.088-34.169 28.985-55.032 37.692l-1.083 0.401c-22.599 9.121-48.806 14.413-76.249 14.413-1.994 0-3.982-0.028-5.963-0.083l0.292 0.006c-1.026 0.014-2.238 0.022-3.452 0.022-20.991 0-41.423-2.396-61.036-6.93l1.819 0.354c-19.505-4.271-36.762-11.349-52.342-20.898l0.733 0.418c-15.79-10.229-29.296-22.302-40.72-36.155l-0.24-0.3c-11.187-13.317-21.019-28.389-28.919-44.576l-0.572-1.299c-4.078-8.653-8.248-19.374-11.749-30.392l-0.539-1.966h-55.706c-16.022-1.876-28.337-15.372-28.337-31.744s12.315-29.868 28.187-31.73l0.15-0.014h45.056c0-6.554 0-13.107 0-20.070s0-13.926 0-20.89h-45.056c-16.022-1.876-28.337-15.372-28.337-31.744s12.315-29.868 28.187-31.73l0.15-0.014h58.982c0.090-1.469 0.141-3.186 0.141-4.915s-0.051-3.446-0.152-5.15l0.011 0.235c10.171-27.791 25.377-51.562 44.682-71.307l-0.036 0.037c18.281-19.286 40.555-34.591 65.519-44.614l1.246-0.442c23.556-9.853 50.928-15.577 79.636-15.577 0.803 0 1.605 0.004 2.406 0.013l-0.122-0.001c0.768-0.010 1.674-0.016 2.582-0.016 33.044 0 64.285 7.718 92.019 21.449l-1.213-0.543c22.528 11.878 50.381 30.31 52.429 58.573 0.031 0.6 0.049 1.304 0.049 2.011 0 13.376-6.412 25.254-16.329 32.73l-0.104 0.075c-2.764 2.572-6.027 4.651-9.622 6.072l-0.208 0.072c-2.801 0.878-6.023 1.384-9.362 1.384-5.898 0-11.427-1.578-16.188-4.334l0.156 0.083c-14.746-7.782-23.757-22.118-37.274-31.13-15.135-10.299-33.816-16.444-53.933-16.444-1.2 0-2.394 0.022-3.583 0.065l0.172-0.005c-1.146-0.045-2.492-0.071-3.843-0.071-33.723 0-63.714 15.982-82.811 40.786l-0.181 0.245c-6.595 8.736-12.246 18.736-16.491 29.446l-0.302 0.865h161.382c1.084-0.13 2.339-0.205 3.612-0.205 17.645 0 31.949 14.304 31.949 31.949s-14.304 31.949-31.949 31.949c-1.273 0-2.528-0.074-3.762-0.219l0.15 0.014h-174.49c0 7.782 0 15.565 0 24.166s0 11.059 0 16.794h142.95c16.022 1.876 28.337 15.372 28.337 31.744s-12.315 29.868-28.187 31.73l-0.15 0.014h-131.072c-0.065 0.675-0.102 1.46-0.102 2.253s0.037 1.578 0.109 2.352l-0.007-0.099c8.294 21.059 22.497 38.299 40.559 50.134l0.401 0.246c16.677 10.554 36.978 16.817 58.742 16.817 0.805 0 1.607-0.009 2.408-0.026l-0.12 0.002c0.914 0.028 1.989 0.044 3.068 0.044 23.064 0 44.442-7.221 61.996-19.525l-0.347 0.231c18.022-12.698 30.72-38.912 54.477-40.96 1.506-0.18 3.251-0.283 5.020-0.283 12.882 0 24.49 5.456 32.639 14.184l0.024 0.026z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["euro"]},"attrs":[{}],"properties":{"order":6647,"id":317,"name":"euro","prevSize":32,"code":59903},"setIdx":0,"setId":0,"iconIdx":255},{"icon":{"paths":["M772.693 710.4c-0.001 0-0.002 0-0.003 0-17.994 0-32.61-14.467-32.85-32.404l-0-0.023c0.237-18.048 14.805-32.616 32.831-32.853l0.023-0c74.356-3.67 133.254-64.85 133.254-139.787 0-2.157-0.049-4.303-0.145-6.436l0.011 0.303v-189.44c0.074-1.709 0.117-3.714 0.117-5.728 0-75.016-58.843-136.288-132.891-140.177l-0.346-0.015h-521.387c-74.394 3.904-133.237 65.176-133.237 140.192 0 2.015 0.042 4.019 0.126 6.013l-0.010-0.285v189.44c-0.086 1.83-0.134 3.976-0.134 6.133 0 74.937 58.898 136.117 132.927 139.774l0.327 0.013c18.048 0.237 32.616 14.805 32.853 32.831l0 0.023c-0.241 17.96-14.856 32.427-32.851 32.427-0.001 0-0.002-0-0.003-0l0 0c-110.219-3.969-198.064-94.277-198.064-205.102 0-2.144 0.033-4.281 0.098-6.41l-0.008 0.311v-189.44c-0.058-1.813-0.090-3.945-0.090-6.084 0-110.739 87.892-200.95 197.722-204.68l0.341-0.009h521.387c110.172 3.739 198.064 93.95 198.064 204.689 0 2.139-0.033 4.271-0.098 6.395l0.008-0.311v189.44c0.058 1.817 0.091 3.954 0.091 6.098 0 110.825-87.845 201.132-197.703 205.091l-0.361 0.010zM479.573 384v430.080l-71.253-71.253c-5.896-5.896-14.042-9.543-23.040-9.543-17.995 0-32.583 14.588-32.583 32.583 0 8.998 3.647 17.144 9.543 23.040l128 128c5.879 5.935 14.030 9.609 23.040 9.609s17.161-3.674 23.037-9.606l0.003-0.003 128-128c5.801-5.792 9.389-13.799 9.389-22.644 0-0.139-0.001-0.278-0.003-0.417l0 0.021c0-0.066 0.001-0.145 0.001-0.223 0-17.909-14.518-32.427-32.427-32.427-9.010 0-17.162 3.675-23.038 9.607l-0.002 0.003-71.253 71.253v-430.080c0-17.909-14.518-32.427-32.427-32.427s-32.427 14.518-32.427 32.427v-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["exit-down"]},"attrs":[{}],"properties":{"order":6648,"id":316,"name":"exit-down","prevSize":32,"code":59904},"setIdx":0,"setId":0,"iconIdx":256},{"icon":{"paths":["M679.253 970.667h-189.013c-1.817 0.058-3.954 0.091-6.098 0.091-110.825 0-201.132-87.845-205.091-197.703l-0.010-0.361c0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427v0c3.894 74.402 65.171 133.255 140.193 133.255 2.164 0 4.317-0.049 6.458-0.146l-0.304 0.011h189.013c1.837 0.086 3.99 0.135 6.154 0.135 75.022 0 136.299-58.853 140.178-132.909l0.014-0.346v-521.387c-3.894-74.402-65.171-133.255-140.193-133.255-2.164 0-4.317 0.049-6.458 0.146l0.304-0.011h-189.013c-1.837-0.086-3.99-0.135-6.154-0.135-75.022 0-136.299 58.853-140.178 132.909l-0.014 0.346c0 17.909-14.518 32.427-32.427 32.427s-32.427-14.518-32.427-32.427v-0c3.929-110.252 94.253-198.138 205.104-198.138 2.894 0 5.774 0.060 8.639 0.179l-0.41-0.013h189.013c2.455-0.105 5.335-0.165 8.229-0.165 110.851 0 201.175 87.886 205.094 197.781l0.010 0.358v521.387c-3.877 110.295-94.223 198.235-205.108 198.235-3.644 0-7.265-0.095-10.862-0.283l0.503 0.021zM604.587 479.573h-429.227l71.253-71.253c5.734-5.969 9.265-14.092 9.265-23.040s-3.531-17.070-9.276-23.051l0.011 0.011c-5.879-5.935-14.030-9.609-23.040-9.609s-17.161 3.674-23.037 9.606l-0.003 0.003-128 128c-5.935 5.879-9.609 14.030-9.609 23.040s3.674 17.161 9.606 23.037l0.003 0.003 128 128c5.792 5.801 13.799 9.389 22.644 9.389 0.139 0 0.278-0.001 0.417-0.003l-0.021 0c0.066 0 0.144 0.001 0.222 0.001 8.899 0 16.962-3.585 22.821-9.39l-0.002 0.002c5.734-5.969 9.265-14.092 9.265-23.040s-3.531-17.070-9.276-23.051l0.011 0.011-71.253-73.813h429.227c17.909 0 32.427-14.518 32.427-32.427s-14.518-32.427-32.427-32.427h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["exit-left"]},"attrs":[{}],"properties":{"order":6649,"id":315,"name":"exit-left","prevSize":32,"code":59905},"setIdx":0,"setId":0,"iconIdx":257},{"icon":{"paths":["M716.373 970.667h-460.373c-0 0-0 0-0 0-110.366 0-199.864-89.348-200.106-199.657l-0-0.023v-460.373c0-110.516 89.591-200.107 200.107-200.107v-0h335.36c16.915 1.968 29.92 16.212 29.92 33.493s-13.006 31.526-29.763 33.478l-0.157 0.015h-335.36c-73.52 0-133.12 59.6-133.12 133.12h0v460.373c0.243 73.336 59.749 132.693 133.119 132.693 0 0 0-0 0.001-0l460.373 0c0 0 0 0 0.001 0 73.37 0 132.877-59.357 133.119-132.67l0-0.023v-341.333c-0.136-1.136-0.213-2.452-0.213-3.786 0-18.616 15.091-33.707 33.707-33.707s33.707 15.091 33.707 33.707c0 1.334-0.078 2.65-0.228 3.944l0.015-0.157v341.333c-0.243 110.332-89.74 199.68-200.106 199.68-0 0-0-0-0.001-0l0 0zM590.507 480.427l313.173-312.747v103.68c-0.136 1.136-0.213 2.452-0.213 3.786 0 18.616 15.091 33.707 33.707 33.707s33.707-15.091 33.707-33.707c0-1.334-0.078-2.65-0.228-3.944l0.015 0.157v-186.027c-0.883-17.307-14.693-31.117-31.919-31.997l-0.081-0.003h-186.453c-16.915 1.968-29.92 16.212-29.92 33.493s13.006 31.526 29.763 33.478l0.157 0.015h104.107l-313.173 312.747c-5.909 6.128-9.55 14.479-9.55 23.68s3.641 17.552 9.56 23.69l-0.010-0.010c6.037 6.111 14.416 9.896 23.68 9.896s17.643-3.785 23.677-9.893l0.003-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["exit-right-corner"]},"attrs":[{}],"properties":{"order":6650,"id":314,"name":"exit-right-corner","prevSize":32,"code":59906},"setIdx":0,"setId":0,"iconIdx":258},{"icon":{"paths":["M483.413 970.667h-189.44c-1.817 0.058-3.954 0.091-6.098 0.091-110.825 0-201.132-87.845-205.091-197.703l-0.010-0.361v-521.387c3.969-110.219 94.277-198.064 205.102-198.064 2.144 0 4.281 0.033 6.41 0.098l-0.311-0.008h189.44c1.813-0.058 3.945-0.090 6.084-0.090 110.739 0 200.95 87.892 204.68 197.722l0.009 0.341c0 17.909-14.518 32.427-32.427 32.427s-32.427-14.518-32.427-32.427v-0c-3.904-74.394-65.176-133.237-140.192-133.237-2.015 0-4.019 0.042-6.013 0.126l0.285-0.010h-189.44c-1.83-0.086-3.976-0.134-6.133-0.134-74.937 0-136.117 58.898-139.774 132.927l-0.013 0.327v521.387c3.67 74.356 64.85 133.254 139.787 133.254 2.157 0 4.303-0.049 6.436-0.145l-0.303 0.011h189.44c1.709 0.074 3.714 0.117 5.728 0.117 75.016 0 136.288-58.843 140.177-132.891l0.015-0.346c-0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427v0c-3.739 110.172-93.95 198.064-204.689 198.064-2.139 0-4.271-0.033-6.395-0.098l0.311 0.008zM336.213 512c-0 17.909 14.518 32.427 32.427 32.427l0 0h429.653l-72.96 71.253c-5.935 5.879-9.609 14.030-9.609 23.040s3.674 17.161 9.606 23.037l0.003 0.003c5.792 5.801 13.799 9.389 22.644 9.389 0.139 0 0.278-0.001 0.417-0.003l-0.021 0c0.097 0.001 0.212 0.002 0.327 0.002 8.732 0 16.625-3.593 22.281-9.382l0.006-0.006 128-128c5.935-5.879 9.609-14.030 9.609-23.040s-3.674-17.161-9.606-23.037l-0.003-0.003-128-128c-5.81-5.911-13.891-9.574-22.827-9.574s-17.017 3.663-22.822 9.569l-0.004 0.005c-5.935 5.879-9.609 14.030-9.609 23.040s3.674 17.161 9.606 23.037l0.003 0.003 71.253 71.253h-427.947c-0.030-0-0.066-0-0.101-0-17.909 0-32.427 14.518-32.427 32.427 0 0.901 0.037 1.794 0.109 2.676l-0.008-0.116z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["exit-right"]},"attrs":[{}],"properties":{"order":6651,"id":313,"name":"exit-right","prevSize":32,"code":59907},"setIdx":0,"setId":0,"iconIdx":259},{"icon":{"paths":["M772.693 925.013h-521.387c-110.172-3.739-198.064-93.95-198.064-204.689 0-2.139 0.033-4.271 0.098-6.395l-0.008 0.311v-189.44c-0.105-2.455-0.165-5.335-0.165-8.229 0-110.851 87.886-201.175 197.781-205.094l0.358-0.010c0.001-0 0.002-0 0.003-0 17.994 0 32.61 14.467 32.85 32.404l0 0.023c-0.237 18.048-14.805 32.616-32.831 32.853l-0.023 0c-74.405 3.612-133.364 64.817-133.364 139.792 0 2.906 0.089 5.792 0.263 8.655l-0.019-0.393v189.44c-0.074 1.709-0.117 3.714-0.117 5.728 0 75.016 58.843 136.288 132.891 140.177l0.346 0.015h521.387c74.394-3.904 133.237-65.176 133.237-140.192 0-2.015-0.042-4.019-0.126-6.013l0.010 0.285v-189.44c0.086-1.83 0.134-3.976 0.134-6.133 0-74.937-58.898-136.117-132.927-139.774l-0.327-0.013c-18.048-0.237-32.616-14.805-32.853-32.831l-0-0.023c0.241-17.96 14.856-32.427 32.851-32.427 0.001 0 0.002 0 0.003 0l-0-0c110.252 3.929 198.138 94.253 198.138 205.104 0 2.894-0.060 5.774-0.179 8.639l0.013-0.41v189.44c0.024 1.176 0.038 2.563 0.038 3.953 0 110.721-87.863 200.92-197.668 204.678l-0.344 0.009zM512 671.573c17.909 0 32.427-14.518 32.427-32.427l0 0v-429.227l71.253 71.253c5.879 5.935 14.030 9.609 23.040 9.609s17.161-3.674 23.037-9.606l0.003-0.003c5.832-5.926 9.433-14.062 9.433-23.040s-3.601-17.114-9.437-23.044l0.004 0.004-128-128c-5.879-5.935-14.030-9.609-23.040-9.609s-17.161 3.674-23.037 9.606l-0.003 0.003-128 128c-5.685 5.991-9.181 14.107-9.181 23.040 0 18.502 14.999 33.501 33.501 33.501 9.569 0 18.201-4.012 24.306-10.446l0.014-0.015 71.253-71.253v430.080c0.476 17.538 14.807 31.573 32.415 31.573 0.004 0 0.008-0 0.012-0l-0.001 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["exit-up"]},"attrs":[{}],"properties":{"order":6652,"id":312,"name":"exit-up","prevSize":32,"code":59908},"setIdx":0,"setId":0,"iconIdx":260},{"icon":{"paths":["M327.253 292.693h-52.053c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.053c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM359.253 357.547c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-52.053c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h52.053c17.673 0 32-14.327 32-32v0zM359.253 454.827c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-52.053c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h52.053c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM906.667 512v-266.24c-0.484-106.229-86.59-192.186-192.83-192.427l-0.023-0h-403.627c-0-0-0-0-0-0-106.36 0-192.61 86.1-192.853 192.404l-0 0.023v266.24c0.241 42.318 34.482 76.559 76.777 76.8l0.023 0h635.733c42.318-0.241 76.559-34.482 76.8-76.777l0-0.023zM713.813 117.333c70.692 0 128 57.308 128 128v0 266.667c-0.229 6.975-5.825 12.571-12.779 12.799l-0.021 0.001h-634.88c-6.975-0.229-12.571-5.825-12.799-12.779l-0.001-0.021v-266.24c0-70.692 57.308-128 128-128v0zM906.667 780.8v-55.467c-0.24-42.941-35.105-77.658-78.079-77.658-0.3 0-0.601 0.002-0.9 0.005l0.046-0h-631.467c-0.254-0.003-0.554-0.005-0.854-0.005-42.974 0-77.839 34.718-78.079 77.635l-0 0.023v55.467c1.675 105.223 87.366 189.879 192.83 189.879 0.758 0 1.515-0.004 2.272-0.013l-0.115 0.001h399.36c0.641 0.008 1.398 0.012 2.156 0.012 105.464 0 191.156-84.656 192.828-189.722l0.002-0.157zM827.733 712.107c0.135-0.004 0.293-0.007 0.451-0.007 7.714 0 14.022 6.021 14.48 13.62l0.002 0.040v55.040c-1.18 69.784-58.028 125.902-127.983 125.902-1.056 0-2.109-0.013-3.16-0.038l0.156 0.003h-399.36c-0.894 0.022-1.948 0.035-3.004 0.035-69.955 0-126.802-56.118-127.981-125.791l-0.001-0.111v-55.467c0.46-7.639 6.768-13.66 14.482-13.66 0.159 0 0.317 0.003 0.474 0.008l-0.023-0.001zM746.24 800.427c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667v0c23.564 0 42.667-19.103 42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["external-drive"]},"attrs":[{}],"properties":{"order":6653,"id":311,"name":"external-drive","prevSize":32,"code":59909},"setIdx":0,"setId":0,"iconIdx":261},{"icon":{"paths":["M601.6 538.027c0.201-2.11 0.316-4.561 0.316-7.040s-0.115-4.93-0.34-7.35l0.023 0.31c-0.217-1.409-0.341-3.033-0.341-4.687 0-16.070 11.69-29.41 27.031-31.98l0.19-0.026c1.626-0.301 3.496-0.473 5.407-0.473 15.713 0 28.709 11.636 30.84 26.761l0.019 0.165c0.302 3.641 0.474 7.88 0.474 12.16s-0.172 8.519-0.51 12.712l0.036-0.552c0 84.831-68.769 153.6-153.6 153.6v0h-17.067c-16.040-1.887-28.365-15.4-28.365-31.793 0-1.276 0.075-2.534 0.22-3.771l-0.014 0.15c1.683-16.001 15.103-28.363 31.41-28.363 1.26 0 2.503 0.074 3.725 0.217l-0.148-0.014c3.073 0.37 6.632 0.582 10.24 0.582 49.956 0 90.453-40.497 90.453-90.453 0-0.054-0-0.109-0-0.163l0 0.008zM882.773 331.947c-5.993-6.865-14.759-11.178-24.533-11.178-17.956 0-32.511 14.556-32.511 32.511 0 8.182 3.022 15.657 8.011 21.372l-0.033-0.038c40.902 43.565 67.711 100.792 72.896 164.142l0.064 0.978c0 145.493-191.573 333.227-394.667 333.227-58.131-2.253-112.162-17.784-159.788-43.62l1.921 0.953c-4.519-2.592-9.935-4.121-15.708-4.121-17.673 0-32 14.327-32 32 0 13.013 7.768 24.212 18.919 29.213l0.203 0.081c54.127 28.654 118.068 46.139 185.937 47.777l0.517 0.010c222.72 0 458.667-203.947 458.667-397.227-5.085-80.027-37.579-151.615-88.099-206.305l0.206 0.225zM925.44 147.2l-780.373 775.253c-5.663 5.733-13.5 9.308-22.172 9.387l-0.015 0c-8.956-0.082-17.064-3.644-23.051-9.397l0.011 0.011c-5.807-5.858-9.396-13.923-9.396-22.827s3.588-16.969 9.398-22.829l-0.002 0.002 85.333-85.333c-85.333-78.507-133.547-170.667-133.547-252.587 1.707-190.293 241.92-398.080 460.373-398.080 92.242 3.18 176.921 33.044 247.261 82.057l-1.501-0.99 121.173-120.32c5.846-8.439 15.479-13.896 26.386-13.896 17.673 0 32 14.327 32 32 0 11.668-6.245 21.877-15.574 27.468l-0.145 0.081zM233.813 744.533l142.080-141.227c-9.972-19.707-15.813-42.962-15.813-67.581 0-84.124 68.196-152.32 152.32-152.32 24.731 0 48.086 5.894 68.735 16.354l-0.869-0.399 133.12-132.267c-56.993-37.205-126.305-60.139-200.827-62.281l-0.56-0.013c-180.48 0-394.667 179.2-394.667 333.227 0 63.573 43.52 141.227 114.773 207.36zM424.107 554.667l104.533-104.533c-2.491-0.201-5.392-0.315-8.32-0.315s-5.83 0.114-8.7 0.339l0.38-0.024c-49.485 0-89.6 40.115-89.6 89.6v0c0.061 5.323 0.68 10.469 1.8 15.424l-0.093-0.491z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eye-slash"]},"attrs":[{}],"properties":{"order":6654,"id":310,"name":"eye-slash","prevSize":32,"code":59910},"setIdx":0,"setId":0,"iconIdx":262},{"icon":{"paths":["M512 665.6c-84.831 0-153.6-68.769-153.6-153.6s68.769-153.6 153.6-153.6c84.831 0 153.6 68.769 153.6 153.6v0c-0.242 84.733-68.867 153.358-153.577 153.6l-0.023 0zM512 422.4c-49.485 0-89.6 40.115-89.6 89.6s40.115 89.6 89.6 89.6c49.485 0 89.6-40.115 89.6-89.6v0c0-49.485-40.115-89.6-89.6-89.6v0zM512 909.227c-120.514-5.688-228.68-54.322-310.463-130.816l0.276 0.256c-93.013-81.493-148.48-181.333-148.48-266.667 0-189.44 240.213-397.227 458.667-397.227s458.667 213.333 458.667 397.227c0 192.853-235.947 397.227-458.667 397.227zM512 178.773c-180.48 0-394.667 180.48-394.667 333.227 0 66.56 48.64 150.187 128 218.453 70.203 65.763 162.927 108.243 265.428 114.711l1.239 0.063c203.093 0 394.667-187.733 394.667-333.227 0-137.813-203.947-333.227-394.667-333.227z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eye"]},"attrs":[{}],"properties":{"order":6655,"id":309,"name":"eye","prevSize":32,"code":59911},"setIdx":0,"setId":0,"iconIdx":263},{"icon":{"paths":["M971.093 337.067c-0.968-157.38-128.773-284.587-286.288-284.587-0.002 0-0.004 0-0.006 0l-346.879-0c-0.002-0-0.005-0-0.008-0-158.351 0-286.72 128.369-286.72 286.72 0 0.75 0.003 1.499 0.009 2.248l-0.001-0.115v344.747c0.471 157.759 128.468 285.466 286.292 285.466 1.35 0 2.699-0.009 4.045-0.028l-0.204 0.002h346.453c157.569-0.721 285.025-128.621 285.025-286.291 0-0.901-0.004-1.801-0.012-2.7l0.001 0.138zM669.013 544.853l-24.747 61.44h-110.507v298.667h-85.333v-298.667h-101.12v-61.44h100.267v-158.293c0-65.273 52.914-118.187 118.187-118.187v0h110.933v61.44h-60.587c-45.382 0.241-82.106 36.965-82.347 82.324l-0 0.023v132.693zM844.373 839.68c-39.882 40.58-95.256 65.823-156.528 66.133l-0.059 0h-90.453v-235.52h53.76c22.35-0.042 41.47-13.825 49.365-33.349l0.128-0.358 33.707-81.92c2.304-5.816 3.64-12.554 3.64-19.604 0-11.3-3.432-21.798-9.31-30.509l0.123 0.194c-9.438-13.839-24.936-22.94-42.588-23.465l-0.079-0.002h-88.747v-69.12c0-10.133 8.214-18.347 18.347-18.347v0h71.253c0.129 0.001 0.281 0.002 0.433 0.002 29.156 0 52.847-23.395 53.326-52.437l0.001-0.045v-85.333c0-29.455-23.878-53.333-53.333-53.333v0h-121.6c-100.489 0.482-181.764 82.055-181.764 182.611 0 0.451 0.002 0.901 0.005 1.351l-0-0.069v94.293h-47.36c-29.455 0-53.333 23.878-53.333 53.333v0 82.773c0 29.455 23.878 53.333 53.333 53.333v0h47.36v237.227h-42.667c-122.225-0.238-221.328-98.892-222.293-220.922l-0.001-0.092-3.84-345.173c-0-0.129-0-0.281-0-0.433 0-122.405 98.745-221.747 220.922-222.713l0.092-0.001h347.307c122.225 0.238 221.328 98.892 222.293 220.922l0.001 0.092v344.747c0.014 0.933 0.022 2.034 0.022 3.138 0 59.278-23.428 113.085-61.529 152.666l0.067-0.070z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["facebook"]},"attrs":[{}],"properties":{"order":6656,"id":308,"name":"facebook","prevSize":32,"code":59912},"setIdx":0,"setId":0,"iconIdx":264},{"icon":{"paths":["M798.72 640c37.13-24.574 62.091-64.963 65.256-111.339l0.024-0.448c1.050-6.461 1.65-13.908 1.65-21.495 0-45.315-21.407-85.631-54.661-111.385l-0.323-0.24c0.337-4.96 0.529-10.752 0.529-16.588 0-31.702-5.668-62.079-16.045-90.175l0.583 1.803c-26.154-74.862-84.842-132.429-158.661-156.515l-1.765-0.498c-23.946-7.161-51.462-11.282-79.94-11.282-59.917 0-115.574 18.243-161.717 49.478l1.018-0.649c-62.884 1.955-117.602 35.192-149.32 84.601l-0.44 0.732c-15.577 29.56-24.719 64.598-24.719 101.772 0 10.756 0.765 21.333 2.245 31.679l-0.139-1.185c-20.699 10.999-37.214 27.514-47.913 47.597l-0.3 0.617c-11.027 21.479-17.491 46.864-17.491 73.758 0 5.88 0.309 11.688 0.911 17.408l-0.061-0.713c3.106 47.616 28.817 88.627 66.409 112.72l0.578 0.346c7.228 54.928 34.422 102.44 73.926 135.848l0.314 0.259 103.68 85.333c30.252 25.512 69.669 41.017 112.708 41.017 39.908 0 76.703-13.331 106.174-35.784l-0.429 0.313 96.853-72.107c46.515-36.819 77.168-91.919 81.037-154.272l0.030-0.608zM301.653 288.853c23.468-32.978 61.554-54.23 104.604-54.23 1.175 0 2.347 0.016 3.515 0.047l-0.172-0.004c6.509-0.723 12.336-3.177 17.146-6.886l-0.080 0.059c35.395-25.345 79.57-40.528 127.29-40.528 22.153 0 43.542 3.272 63.709 9.359l-1.559-0.404c55.059 18.636 97.648 61.085 116.094 114.76l0.386 1.293c7.797 20.425 12.312 44.048 12.312 68.725 0 18.819-2.626 37.025-7.531 54.271l0.339-1.396c-5.932-8.86-12.543-16.555-19.963-23.384l-0.090-0.082c-29.95-26.574-69.6-42.804-113.041-42.804-2.41 0-4.808 0.050-7.194 0.149l0.341-0.011h-20.053c-1.96 0.070-4.263 0.111-6.575 0.111-65.026 0-122.633-31.761-158.156-80.615l-0.389-0.562c-5.985-8.801-15.953-14.507-27.253-14.507-5.641 0-10.95 1.422-15.588 3.926l0.174-0.086c-35.026 22.572-63.2 52.932-82.569 88.75l-0.631 1.276c-0.339-3.702-0.532-8.006-0.532-12.356 0-23.663 5.716-45.991 15.842-65.678l-0.377 0.807zM743.253 587.52c-3.64-0.435-6.956-1.336-10.054-2.651l0.24 0.091v37.973c0.018 0.87 0.029 1.896 0.029 2.924 0 46.742-21.723 88.411-55.625 115.46l-0.297 0.229-96.853 72.107c-18.311 14.353-41.679 23.018-67.071 23.018-27.056 0-51.815-9.837-70.894-26.13l0.151 0.126-101.547-85.333c-31.707-27.462-51.647-67.78-51.647-112.755 0-0.86 0.007-1.718 0.022-2.574l-0.002 0.129v-24.747c-2.719 1.164-5.882 2.059-9.18 2.536l-0.206 0.024h-5.12c-25.6 0-48.64-29.013-52.48-67.413-0.424-3.242-0.666-6.991-0.666-10.796 0-17.888 5.344-34.529 14.523-48.411l-0.204 0.328c7.811 28.473 16.978 52.854 28.062 76.147l-1.182-2.76c5.333 11.030 16.436 18.502 29.285 18.502 3.405 0 6.688-0.525 9.772-1.498l-0.23 0.063c13.614-4.379 23.293-16.932 23.293-31.746 0-1.443-0.092-2.865-0.27-4.259l0.017 0.165c-1.781-9.532-2.799-20.498-2.799-31.703 0-52.53 22.389-99.831 58.145-132.88l0.121-0.111c46.14 51.445 112.821 83.662 187.026 83.662 5.352 0 10.666-0.168 15.935-0.498l-0.721 0.036c5.398-0.883 11.62-1.388 17.96-1.388 27.302 0 52.418 9.359 72.315 25.043l-0.249-0.189c16.027 16.253 26.355 38.162 27.722 62.466l0.011 0.254c-0.033 0.555-0.052 1.203-0.052 1.856 0 15.283 10.436 28.129 24.571 31.8l0.228 0.050h9.813c0.016 0 0.035 0 0.053 0 11.3 0 21.268-5.705 27.18-14.393l0.073-0.114c12.483-18.188 23.408-39.020 31.754-61.117l0.673-2.030c3.762 10.069 5.939 21.703 5.939 33.846 0 3.106-0.142 6.178-0.421 9.211l0.029-0.389c-3.84 38.4-26.88 67.413-52.053 67.413zM970.667 739.413v142.080c0 47.128-38.205 85.333-85.333 85.333v0h-128c-18.144 0-32.853-14.709-32.853-32.853s14.709-32.853 32.853-32.853h128c10.133 0 18.347-8.214 18.347-18.347v0-142.933c0-18.144 14.709-32.853 32.853-32.853s32.853 14.709 32.853 32.853v-0zM298.667 933.12c0 18.144-14.709 32.853-32.853 32.853v0h-124.16c-47.128 0-85.333-38.205-85.333-85.333v0-140.8c0-18.144 14.709-32.853 32.853-32.853s32.853 14.709 32.853 32.853v0 142.080c0 10.133 8.214 18.347 18.347 18.347v0h127.147c17.395 0.933 31.147 15.265 31.147 32.809 0 0.016-0 0.031-0 0.047l0-0.002zM970.667 137.387v142.080c0 18.144-14.709 32.853-32.853 32.853s-32.853-14.709-32.853-32.853v0-142.080c0-10.133-8.214-18.347-18.347-18.347v0h-128c-18.144 0-32.853-14.709-32.853-32.853s14.709-32.853 32.853-32.853v0h128c46.134 0.709 83.345 37.92 84.053 83.986l0.001 0.067zM57.6 279.467v-142.080c0-47.128 38.205-85.333 85.333-85.333v0h124.587c18.144 0 32.853 14.709 32.853 32.853s-14.709 32.853-32.853 32.853v0h-125.867c-10.133 0-18.347 8.214-18.347 18.347h0v143.36c0 18.144-14.709 32.853-32.853 32.853s-32.853-14.709-32.853-32.853v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["faceid"]},"attrs":[{}],"properties":{"order":6657,"id":307,"name":"faceid","prevSize":32,"code":59913},"setIdx":0,"setId":0,"iconIdx":265},{"icon":{"paths":["M898.56 125.44c-44.619-44.575-106.237-72.143-174.293-72.143s-129.674 27.567-174.295 72.145l0.002-0.002-151.467 151.893c-20.364 20.342-37.027 44.384-48.896 71.032l-0.597 1.501c-27.948 12.269-51.842 28.646-72.133 48.666l0.026-0.026-151.467 151.467c-41.354 43.997-66.761 103.399-66.761 168.734 0 136.201 110.413 246.613 246.613 246.613 65.336 0 124.737-25.407 168.863-66.881l-0.129 0.12 151.467-151.467c20.16-20.461 36.792-44.468 48.864-70.988l0.63-1.545c27.822-12.807 51.656-29.269 72.176-49.133l-0.069 0.067 151.467-151.467c44.575-44.619 72.143-106.237 72.143-174.293s-27.567-129.674-72.145-174.295l0.002 0.002zM625.493 398.507c-12.664-12.313-26.623-23.424-41.613-33.072l-1.054-0.635 102.827-103.253c9.793-9.729 23.288-15.742 38.187-15.742s28.394 6.013 38.19 15.745l-0.003-0.003c9.53 9.882 15.402 23.349 15.402 38.187s-5.872 28.305-15.418 38.203l0.016-0.017-103.253 102.827c-9.843-15.985-20.839-29.831-33.275-42.235l-0.005-0.005zM441.173 659.2l-103.253 103.253c-9.965 9.341-23.406 15.079-38.187 15.079s-28.222-5.738-38.217-15.107l0.031 0.028c-9.53-9.882-15.402-23.349-15.402-38.187s5.872-28.305 15.418-38.203l-0.016 0.017 103.253-102.827c9.946 16.154 21.085 30.142 33.692 42.652l0.014 0.014c12.546 12.403 26.529 23.399 41.662 32.705l1.005 0.575zM428.8 853.333c-31.405 26.259-72.221 42.204-116.76 42.204-100.855 0-182.613-81.759-182.613-182.613 0-44.007 15.566-84.378 41.493-115.908l-0.253 0.317 156.16-157.867c-0.102 0.96-0.16 2.073-0.16 3.2s0.058 2.24 0.172 3.337l-0.012-0.137c0 5.973 0 11.52 0 17.493 0.217 9.509 1.14 18.635 2.719 27.535l-0.159-1.081c1.007 7.435 2.35 13.936 4.091 20.272l-0.251-1.072c0.777 4.801 1.668 8.834 2.757 12.786l-0.197-0.839-119.467 119.040c-21.092 21.464-34.112 50.918-34.112 83.413s13.021 61.95 34.129 83.431l-0.017-0.017c21.679 20.605 51.066 33.28 83.413 33.28s61.734-12.675 83.465-33.329l-0.052 0.049 151.467-151.893c21.372-21.256 34.6-50.683 34.6-83.2s-13.227-61.944-34.594-83.195l-0.005-0.005c-9.704-9.725-15.705-23.148-15.705-37.973s6.001-28.249 15.706-37.974l-0.001 0.001c57.881 31.29 96.539 91.53 96.539 160.799 0 50.563-20.598 96.315-53.86 129.323l-0.012 0.012zM855.467 428.8l-154.027 151.467s-3.413 2.56-5.12 4.267c0.156-3.279 0.245-7.123 0.245-10.988 0-24.828-3.675-48.798-10.512-71.396l0.453 1.743 121.173-119.893c21.092-21.464 34.112-50.918 34.112-83.413s-13.021-61.95-34.129-83.431l0.017 0.017c-21.418-21.192-50.887-34.285-83.413-34.285s-61.995 13.092-83.424 34.295l0.010-0.010-151.467 151.040c-21.372 21.256-34.6 50.683-34.6 83.2s13.227 61.944 34.594 83.195l0.005 0.005c9.748 9.602 15.787 22.946 15.787 37.7 0 0.096-0 0.192-0.001 0.288l0-0.015c0.002 0.187 0.004 0.408 0.004 0.63 0 14.643-6.046 27.874-15.778 37.332l-0.012 0.012c-16.349-8.929-30.392-19.571-42.648-31.982l-0.018-0.018c-18.76-18.101-33.356-40.389-42.295-65.368l-0.372-1.192c-6.992-18.457-11.041-39.796-11.041-62.080s4.048-43.623 11.45-63.321l-0.409 1.241c9.689-26.184 24.223-48.54 42.667-66.987l-0 0 150.613-150.187c31.213-25.674 71.584-41.24 115.591-41.24 100.855 0 182.613 81.759 182.613 182.613 0 44.54-15.946 85.355-42.439 117.049l0.235-0.289z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["fasten"]},"attrs":[{}],"properties":{"order":6658,"id":306,"name":"fasten","prevSize":32,"code":59914},"setIdx":0,"setId":0,"iconIdx":266},{"icon":{"paths":["M864 970.667h-704c-58.91 0-106.667-47.756-106.667-106.667v0-213.333c0-58.91 47.756-106.667 106.667-106.667v0h704c58.91 0 106.667 47.756 106.667 106.667v0 213.333c0 58.91-47.756 106.667-106.667 106.667v0zM160 608c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h704c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0zM565.333 480h-405.333c-58.91 0-106.667-47.756-106.667-106.667v0-213.333c0-58.91 47.756-106.667 106.667-106.667v0h405.333c58.91 0 106.667 47.756 106.667 106.667v0 213.333c0 58.91-47.756 106.667-106.667 106.667v0zM160 117.333c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h405.333c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["fat-rows"]},"attrs":[{}],"properties":{"order":6659,"id":305,"name":"fat-rows","prevSize":32,"code":59915},"setIdx":0,"setId":0,"iconIdx":267},{"icon":{"paths":["M929.28 275.2l-180.48-180.48c-20.649-20.438-49.063-33.065-80.427-33.065s-59.778 12.627-80.436 33.074l0.010-0.009-60.587 60.587c-30.537 29.988-69.163 51.837-112.305 61.973l-1.615 0.32c-60.031 15-111.721 44.814-152.78 85.366l0.034-0.033c-58.57 58.469-94.804 139.298-94.804 228.589 0 2.587 0.030 5.167 0.091 7.74l-0.007-0.382c0.029 1.343 0.046 2.925 0.046 4.511 0 60.735-24.641 115.714-64.471 155.487l-0.002 0.002-16.213 18.773c-13.288 13.522-21.555 32.016-21.76 52.441l-0 0.039c0.080 20.351 8.383 38.747 21.757 52.050l0.003 0.003 118.613 118.613c13.248 13.482 31.675 21.837 52.053 21.837s38.806-8.355 52.043-21.826l0.010-0.010 18.773-18.347c39.191-39.832 93.677-64.512 153.927-64.512 2.135 0 4.263 0.031 6.384 0.093l-0.311-0.007c1.315 0.019 2.868 0.030 4.424 0.030 90.207 0 171.966-36.168 231.567-94.794l-0.045 0.044c40.661-40.938 70.507-92.666 84.864-150.511l0.469-2.235c10.456-44.757 32.305-83.383 62.328-113.956l-0.035 0.036 60.587-60.587c20.035-20.513 32.395-48.598 32.395-79.571 0-31.822-13.048-60.597-34.085-81.266l-0.017-0.016zM744.107 597.333c-28.931 114.811-131.275 198.448-253.153 198.448-1.751 0-3.498-0.017-5.241-0.052l0.261 0.004c-1.393-0.024-3.037-0.038-4.684-0.038-78.751 0-150.076 31.797-201.837 83.252l0.014-0.014-18.773 17.067c-1.573 2.082-4.045 3.413-6.827 3.413s-5.253-1.331-6.811-3.392l-0.016-0.021-36.693-36.693 209.92-209.067c20.182 12.969 44.818 20.675 71.253 20.675 73.52 0 133.12-59.6 133.12-133.12s-59.6-133.12-133.12-133.12c-73.452 0-133.009 59.489-133.12 132.915l-0 0.011c0.119 24.084 6.762 46.591 18.25 65.877l-0.33-0.597-211.2 210.773-37.12-36.693c-1.815-1.715-2.944-4.139-2.944-6.827s1.129-5.111 2.94-6.823l0.004-0.004 18.347-18.773c51.442-51.747 83.238-123.072 83.238-201.823 0-1.647-0.014-3.29-0.042-4.93l0.003 0.247c-0.018-1.147-0.029-2.501-0.029-3.857 0-121.625 83.701-223.701 196.644-251.768l1.785-0.375c46.45-11.731 86.944-32.551 121.304-60.601l-0.558 0.441 256 256c-27.608 33.434-48.54 73.469-60.103 117.307l-0.484 2.159zM422.4 537.6c-0.001-0.127-0.001-0.277-0.001-0.427 0-38.41 31.137-69.547 69.547-69.547s69.547 31.137 69.547 69.547c0 38.409-31.136 69.546-69.545 69.547l-0 0c-0.127 0.001-0.277 0.001-0.427 0.001-38.174 0-69.12-30.946-69.12-69.12 0-0 0-0.001 0-0.001l-0 0zM883.627 390.827l-37.547 37.973-248.747-250.88 37.973-37.547c9.069-8.874 21.495-14.35 35.2-14.35s26.131 5.476 35.209 14.359l-0.009-0.009 180.053 180.053c8.46 8.864 13.666 20.897 13.666 34.147 0 14.304-6.068 27.19-15.77 36.226l-0.030 0.027z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["feather"]},"attrs":[{}],"properties":{"order":6660,"id":304,"name":"feather","prevSize":32,"code":59916},"setIdx":0,"setId":0,"iconIdx":268},{"icon":{"paths":["M753.92 369.92c45.050-31.897 74.102-83.809 74.102-142.507 0-96.093-77.859-174.001-173.934-174.080l-284.168-0c-96.082 0.079-173.942 77.987-173.942 174.080 0 58.697 29.051 110.61 73.56 142.142l0.542 0.364c-45.051 31.808-74.114 83.657-74.114 142.293s29.062 110.486 73.569 141.928l0.545 0.365c-45.129 31.889-74.239 83.847-74.239 142.603 0 96.142 77.938 174.080 174.080 174.080s174.080-77.938 174.080-174.080c0-0.184-0-0.368-0.001-0.552l0 0.028v-151.040c29.473 25.13 67.979 40.447 110.061 40.533l0.019 0c0.181 0.001 0.394 0.001 0.608 0.001 95.906 0 173.653-77.747 173.653-173.653 0-58.769-29.193-110.719-73.869-142.14l-0.552-0.368zM764.16 227.413c-0.241 60.698-49.382 109.839-110.057 110.080l-0.023 0h-110.080v-220.16h110.080c60.698 0.241 109.839 49.382 110.080 110.057l0 0.023zM369.92 117.333h110.080v220.16h-110.080c-60.796 0-110.080-49.284-110.080-110.080s49.284-110.080 110.080-110.080v0zM369.92 401.92h110.080v220.16h-110.080c-60.796 0-110.080-49.284-110.080-110.080s49.284-110.080 110.080-110.080v0zM369.92 906.667c-60.796 0-110.080-49.284-110.080-110.080s49.284-110.080 110.080-110.080v-0h110.080v110.507c-0.482 60.515-49.531 109.414-110.057 109.653l-0.023 0zM654.080 622.080c-60.796 0-110.080-49.284-110.080-110.080s49.284-110.080 110.080-110.080c60.796 0 110.080 49.284 110.080 110.080h-0c-0.241 60.698-49.382 109.839-110.057 110.080l-0.023 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["figma"]},"attrs":[{}],"properties":{"order":6661,"id":303,"name":"figma","prevSize":32,"code":59917},"setIdx":0,"setId":0,"iconIdx":269},{"icon":{"paths":["M170.667 903.253c-10.077-0.036-19.023-4.851-24.691-12.297l-0.056-0.076-72.107-92.587c-4.136-5.485-6.624-12.414-6.624-19.925 0-10.34 4.716-19.579 12.114-25.683l0.057-0.045c5.091-3.772 11.496-6.038 18.43-6.038 9.765 0 18.481 4.494 24.192 11.527l0.045 0.058 48.64 59.733 72.533-95.147c5.675-7.18 14.385-11.747 24.16-11.747 6.983 0 13.422 2.33 18.582 6.255l-0.076-0.055c7.455 6.149 12.17 15.388 12.17 25.728 0 7.511-2.488 14.44-6.685 20.010l0.061-0.085-97.28 128c-5.724 7.522-14.669 12.338-24.741 12.373l-0.006 0zM972.8 694.613c0.018 1.154 0.028 2.516 0.028 3.88 0 148.699-119.229 269.55-267.302 272.17l-0.246 0.003h-278.613c-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427h274.773c113.339-2.145 204.395-94.528 204.395-208.178 0-1.062-0.008-2.123-0.024-3.182l0.002 0.16v-229.547h-165.973c-0.013 0-0.028 0-0.043 0-94.257 0-170.667-76.41-170.667-170.667 0-1.35 0.016-2.697 0.047-4.040l-0.004 0.2v-170.667h-236.373c-117.597 5.793-211.427 99.919-216.729 217.107l-0.018 0.493v209.067c0 17.437-14.136 31.573-31.573 31.573s-31.573-14.136-31.573-31.573v0-213.333c14.507-160.427 134.4-279.893 279.893-279.893h279.467s2.133 0 2.987 0c3.505 1.406 6.49 3.432 8.954 5.967l0.006 0.006 336.213 350.293c5.408 5.898 8.721 13.792 8.721 22.46 0 2.935-0.38 5.781-1.093 8.492l0.052-0.232c0.116 0.96 0.182 2.072 0.182 3.2s-0.066 2.24-0.195 3.333l0.013-0.133zM861.867 400.213l-228.267-235.947v128c-0.005 0.387-0.008 0.843-0.008 1.301 0 59.106 47.316 107.16 106.136 108.351l0.111 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-added"]},"attrs":[{}],"properties":{"order":6662,"id":302,"name":"file-added","prevSize":32,"code":59918},"setIdx":0,"setId":0,"iconIdx":270},{"icon":{"paths":["M949.333 446.72c0.116-0.96 0.182-2.072 0.182-3.2s-0.066-2.24-0.195-3.333l0.013 0.133c0.306-1.706 0.481-3.67 0.481-5.675 0-9.926-4.291-18.85-11.118-25.019l-0.029-0.026-326.827-346.88c-2.526-2.448-5.493-4.459-8.768-5.898l-0.192-0.075s-2.133 0-2.987 0c-1.219-0.213-2.622-0.334-4.053-0.334s-2.835 0.122-4.2 0.355l0.147-0.021h-264.96c-142.507 0-259.84 119.467-273.493 281.173v213.333c-0.008 0.258-0.012 0.561-0.012 0.865 0 17.142 13.66 31.093 30.689 31.561l0.043 0.001c17.072-0.469 30.732-14.421 30.732-31.562 0-0.304-0.004-0.607-0.013-0.909l0.001 0.044v-213.76c10.667-125.013 101.973-219.307 213.333-219.307h230.827v170.667c-0.058 1.669-0.092 3.629-0.092 5.598 0 92.789 74.049 168.282 166.276 170.611l0.216 0.004h162.133v229.547c0.042 1.554 0.066 3.383 0.066 5.217 0 111.587-88.689 202.46-199.423 205.975l-0.323 0.008h-267.947c-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427l269.227-0c145.157-4.223 261.221-122.904 261.221-268.693 0-2.588-0.037-5.168-0.109-7.739l0.008 0.378zM725.333 400.213c-57.673-1.879-103.712-49.083-103.712-107.040 0-0.919 0.012-1.835 0.035-2.749l-0.003 0.135v-128l223.147 235.947zM282.88 849.493c5.549 6.049 8.949 14.148 8.949 23.040s-3.4 16.991-8.972 23.065l0.023-0.025c-5.321 5.78-12.924 9.389-21.37 9.389-0.137 0-0.274-0.001-0.411-0.003l0.021 0c-0.2 0.005-0.436 0.007-0.672 0.007-8.412 0-16.024-3.429-21.513-8.965l-0.002-0.002-52.053-55.467-52.053 55.467c-5.516 5.711-13.211 9.287-21.742 9.386l-0.018 0c-8.531-0.198-16.195-3.75-21.757-9.383l-0.003-0.003c-5.549-6.049-8.949-14.148-8.949-23.040s3.4-16.991 8.972-23.065l-0.023 0.025 52.48-55.467-52.053-57.6c-5.64-6.011-9.104-14.121-9.104-23.040s3.464-17.029 9.121-23.058l-0.017 0.018c5.425-5.534 12.979-8.964 21.333-8.964s15.908 3.43 21.329 8.959l0.005 0.005 51.627 55.893 52.053-55.040c5.374-5.643 12.944-9.152 21.333-9.152s15.959 3.509 21.322 9.14l0.011 0.012c5.64 6.011 9.104 14.121 9.104 23.040s-3.464 17.029-9.121 23.058l0.017-0.018-50.347 55.893z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-deleted"]},"attrs":[{}],"properties":{"order":6663,"id":301,"name":"file-deleted","prevSize":32,"code":59919},"setIdx":0,"setId":0,"iconIdx":271},{"icon":{"paths":["M502.187 679.253l-121.173 104.96c-1.497 1.208-3.172 2.338-4.939 3.321l-0.181 0.092-4.267 2.133c-3.353 1.616-7.291 2.56-11.449 2.56-0.025 0-0.050-0-0.075-0l0.004 0c-4.184-0.033-8.14-0.973-11.693-2.633l0.173 0.073-3.84-2.133-3.413-2.56-131.84-105.387c-7.392-6.071-12.071-15.211-12.071-25.445 0-7.653 2.617-14.695 7.004-20.28l-0.054 0.071c5.912-7.462 14.974-12.206 25.144-12.206 7.633 0 14.642 2.673 20.142 7.133l-0.060-0.047 78.507 63.573v-221.013c0-17.673 14.327-32 32-32s32 14.327 32 32v0 217.6l68.693-59.307c5.31-4.194 12.1-6.727 19.482-6.727 9.154 0 17.399 3.896 23.166 10.12l0.019 0.020c5.459 5.85 8.811 13.729 8.811 22.39 0 9.303-3.867 17.703-10.080 23.68l-0.011 0.010zM971.52 694.613c0.003 0.511 0.005 1.114 0.005 1.719 0 150.619-121.377 272.889-271.655 274.334l-0.137 0.001h-375.893c-150.415-1.445-271.792-123.715-271.792-274.335 0-0.604 0.002-1.208 0.006-1.811l-0 0.093v-365.227c-0.003-0.511-0.005-1.114-0.005-1.719 0-150.619 121.377-272.889 271.655-274.334l0.137-0.001h275.627c1.218-0.19 2.623-0.298 4.053-0.298s2.835 0.108 4.207 0.317l-0.154-0.019h3.413c3.467 1.515 6.434 3.525 8.968 5.981l-0.008-0.008 341.333 346.88c5.658 5.83 9.147 13.794 9.147 22.573 0 2.896-0.38 5.702-1.092 8.374l0.051-0.227c0.116 0.96 0.182 2.072 0.182 3.2s-0.066 2.24-0.195 3.333l0.013-0.133zM630.187 290.56c-0.001 0.129-0.001 0.282-0.001 0.434 0 59.874 48.176 108.497 107.879 109.219l0.068 0.001h124.16l-232.96-235.947zM908.8 694.613v-229.547h-170.667c-94.614-1.678-170.669-78.771-170.669-173.628 0-0.309 0.001-0.618 0.002-0.927l-0 0.048v-170.667h-243.627c-114.964 0.967-207.787 94.387-207.787 209.486 0 0.002 0 0.005 0 0.007l-0-0v365.227c-0.004 0.509-0.007 1.111-0.007 1.714 0 115.102 92.827 208.524 207.702 209.486l0.092 0.001h376.32c114.967-0.963 207.794-94.384 207.794-209.486 0-0.603-0.003-1.204-0.008-1.806l0.001 0.092z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-down"]},"attrs":[{}],"properties":{"order":6664,"id":300,"name":"file-down","prevSize":32,"code":59920},"setIdx":0,"setId":0,"iconIdx":272},{"icon":{"paths":["M971.947 694.613c0.003 0.511 0.005 1.114 0.005 1.719 0 150.619-121.377 272.889-271.655 274.334l-0.137 0.001h-376.32c-150.415-1.445-271.792-123.715-271.792-274.335 0-0.604 0.002-1.208 0.006-1.811l-0 0.093v-365.227c-0.003-0.511-0.005-1.114-0.005-1.719 0-150.619 121.377-272.889 271.655-274.334l0.137-0.001h275.627c1.218-0.19 2.623-0.298 4.053-0.298s2.835 0.108 4.207 0.317l-0.154-0.019h3.413c3.467 1.515 6.434 3.525 8.968 5.981l-0.008-0.008 341.333 346.88c5.658 5.83 9.147 13.794 9.147 22.573 0 2.896-0.38 5.702-1.092 8.374l0.051-0.227c0.116 0.96 0.182 2.072 0.182 3.2s-0.066 2.24-0.195 3.333l0.013-0.133zM630.613 290.56c-0.001 0.129-0.001 0.282-0.001 0.434 0 59.874 48.176 108.497 107.879 109.219l0.068 0.001h124.16l-233.387-235.947zM909.227 694.613v-229.547h-170.667c-94.614-1.678-170.669-78.771-170.669-173.628 0-0.309 0.001-0.618 0.002-0.927l-0 0.048v-170.667h-244.053c-114.964 0.967-207.787 94.387-207.787 209.486 0 0.002 0 0.005 0 0.007l-0-0v365.227c-0.004 0.509-0.007 1.111-0.007 1.714 0 115.102 92.827 208.524 207.702 209.486l0.092 0.001h376.32c114.967-0.963 207.794-94.384 207.794-209.486 0-0.603-0.003-1.204-0.008-1.806l0.001 0.092z","M312.32 770.987c-10.337-0.029-19.547-4.827-25.55-12.309l-0.050-0.064-93.867-123.733c-4.161-5.298-6.674-12.062-6.674-19.413s2.512-14.116 6.725-19.482l-0.052 0.068 94.293-123.307c5.925-7.612 15.090-12.462 25.387-12.462 17.722 0 32.089 14.367 32.089 32.089 0 7.425-2.522 14.261-6.756 19.699l0.054-0.072-79.36 103.68 79.36 104.107c4.091 5.32 6.556 12.075 6.556 19.406 0 10.313-4.879 19.487-12.455 25.339l-0.074 0.055c-5.438 3.974-12.25 6.37-19.619 6.4l-0.007 0z","M507.733 647.68h-286.293c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h286.293c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-left"]},"attrs":[{},{},{}],"properties":{"order":6665,"id":299,"name":"file-left","prevSize":32,"code":59921},"setIdx":0,"setId":0,"iconIdx":273},{"icon":{"paths":["M971.947 693.76c0.005 0.639 0.008 1.394 0.008 2.149 0 150.706-121.328 273.074-271.636 274.756l-0.159 0.001h-376.32c-150.467-1.683-271.795-124.051-271.795-274.757 0-0.756 0.003-1.511 0.009-2.265l-0.001 0.116v-366.080c-0.005-0.639-0.008-1.394-0.008-2.149 0-150.706 121.328-273.074 271.636-274.756l0.159-0.001h275.627c3.002 0.34 5.743 1.092 8.291 2.205l-0.184-0.072h3.413c3.467 1.675 6.43 3.82 8.955 6.395l0.005 0.005 341.333 347.733c5.658 5.83 9.147 13.794 9.147 22.573 0 2.896-0.38 5.702-1.092 8.374l0.051-0.227c0.095 0.896 0.15 1.935 0.15 2.987s-0.054 2.091-0.16 3.115l0.011-0.128zM630.613 288.427c-0.002 0.256-0.003 0.558-0.003 0.861 0 59.875 48.177 108.498 107.882 109.219l0.068 0.001h124.16l-233.387-236.373zM909.227 693.76v-229.973h-170.667c-94.616-1.674-170.675-78.769-170.675-173.628 0-0.609 0.003-1.217 0.009-1.825l-0.001 0.093v-170.667h-244.053c-115.027 1.191-207.815 94.714-207.815 209.909 0 1.204 0.010 2.405 0.030 3.605l-0.002-0.181v366.080c-0.023 1.145-0.035 2.494-0.035 3.847 0 115.112 92.843 208.54 207.732 209.486l0.090 0.001h376.32c115.018-0.896 207.912-94.343 207.912-209.487 0-2.553-0.046-5.095-0.136-7.626l0.010 0.367zM400.213 764.587c-7.746-5.819-12.704-14.988-12.704-25.314 0-7.384 2.535-14.175 6.781-19.552l-0.051 0.067 79.36-104.533-79.36-103.253c-4.725-5.542-7.6-12.787-7.6-20.704 0-17.673 14.327-32 32-32 10.899 0 20.526 5.449 26.304 13.772l0.069 0.105 94.293 124.16c3.967 5.365 6.349 12.111 6.349 19.413s-2.382 14.048-6.413 19.503l0.063-0.090-94.293 123.307c-5.914 7.24-14.841 11.826-24.839 11.826-6.648 0-12.823-2.027-17.939-5.497l0.112 0.072zM192.427 615.253c0-17.673 14.327-32 32-32v0h287.573c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-287.573c-0.128 0.002-0.279 0.003-0.43 0.003-17.437 0-31.573-14.136-31.573-31.573 0-0.151 0.001-0.302 0.003-0.452l-0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-right"]},"attrs":[{}],"properties":{"order":6666,"id":298,"name":"file-right","prevSize":32,"code":59922},"setIdx":0,"setId":0,"iconIdx":274},{"icon":{"paths":["M970.667 447.573c0.115-0.897 0.181-1.934 0.181-2.987s-0.066-2.090-0.193-3.108l0.012 0.121c0.665-2.419 1.047-5.196 1.047-8.062 0-8.672-3.496-16.527-9.156-22.233l0.002 0.002-341.333-341.333c-2.689-2.529-5.784-4.669-9.168-6.305l-0.219-0.095h-2.987c-1.218-0.19-2.623-0.298-4.053-0.298s-2.835 0.108-4.207 0.317l0.154-0.019h-276.907c-148.965 0.229-269.862 120.078-271.785 268.618l-0.002 0.182v359.253c0.242 150.006 121.78 271.544 271.763 271.787l0.024 0h376.32c150.006-0.242 271.544-121.78 271.787-271.763l0-0.024zM629.333 170.667l232.107 232.107h-124.16c-59.52-0.241-107.705-48.427-107.947-107.923l-0-0.023zM700.16 900.267h-376.32c-114.66-0.242-207.544-93.127-207.787-207.763l-0-0.023v-360.107c0.242-114.66 93.127-207.544 207.763-207.787l0.023-0h241.493v170.667c0 94.257 76.41 170.667 170.667 170.667v0h170.667v225.707c-0.238 114.213-92.397 206.822-206.415 207.786l-0.092 0.001zM605.867 853.333h-197.12c-124.654 0-225.707-101.052-225.707-225.707v0-200.96c1.205-123.823 101.745-223.764 225.684-224l0.023-0h71.68c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-71.68c-0.003-0-0.006-0-0.009-0-88.708 0-160.733 71.429-161.697 159.909l-0.001 0.091v197.12c0 89.308 72.399 161.707 161.707 161.707v0h197.12c0.129 0 0.282 0.001 0.436 0.001 88.708 0 160.733-71.429 161.697-159.909l0.001-0.091v-70.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0 71.68c0.001 0.253 0.002 0.553 0.002 0.853 0 124.89-101.243 226.133-226.133 226.133-0.001 0-0.001-0-0.002-0l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-sheet"]},"attrs":[{}],"properties":{"order":6667,"id":297,"name":"file-sheet","prevSize":32,"code":59923},"setIdx":0,"setId":0,"iconIdx":275},{"icon":{"paths":["M522.24 612.693c-5.904 6.87-14.603 11.194-24.312 11.194-8.014 0-15.34-2.946-20.954-7.814l0.040 0.034-68.267-59.307v217.6c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-219.733l-78.933 62.293c-5.228 4.253-11.969 6.828-19.311 6.828-0.111 0-0.222-0.001-0.333-0.002l0.017 0c-10.207-0.033-19.284-4.84-25.12-12.303l-0.053-0.070c-4.334-5.514-6.951-12.556-6.951-20.209 0-10.233 4.679-19.374 12.013-25.399l0.057-0.046 130.56-104.96c1.343-1.052 2.898-1.919 4.577-2.524l0.116-0.036 3.84-2.133c1.409-0.19 3.039-0.298 4.693-0.298s3.284 0.108 4.881 0.318l-0.188-0.020h2.133c0.106-0.002 0.231-0.002 0.356-0.002 4.062 0 7.902 0.946 11.314 2.629l-0.15-0.067 3.84 2.133c1.958 0.792 3.648 1.797 5.158 3.016l-0.038-0.030 121.6 105.387c6.138 6.041 9.941 14.439 9.941 23.724 0 7.454-2.451 14.336-6.59 19.883l0.063-0.088zM971.947 694.613c0.003 0.511 0.005 1.114 0.005 1.719 0 150.619-121.377 272.889-271.655 274.334l-0.137 0.001h-376.32c-150.415-1.445-271.792-123.715-271.792-274.335 0-0.604 0.002-1.208 0.006-1.811l-0 0.093v-365.227c-0.003-0.511-0.005-1.114-0.005-1.719 0-150.619 121.377-272.889 271.655-274.334l0.137-0.001h273.493c1.346-0.193 2.9-0.303 4.48-0.303s3.134 0.11 4.655 0.323l-0.175-0.020h2.56c3.653 1.404 6.777 3.432 9.393 5.979l-0.006-0.006 341.333 346.88c5.658 5.83 9.147 13.794 9.147 22.573 0 2.896-0.38 5.702-1.092 8.374l0.051-0.227c0.116 0.96 0.182 2.072 0.182 3.2s-0.066 2.24-0.195 3.333l0.013-0.133zM630.613 290.56c-0.001 0.129-0.001 0.282-0.001 0.434 0 59.874 48.176 108.497 107.879 109.219l0.068 0.001h124.16l-233.387-235.947zM909.227 694.613v-229.547h-170.667c-94.614-1.678-170.669-78.771-170.669-173.628 0-0.309 0.001-0.618 0.002-0.927l-0 0.048v-170.667h-244.053c-114.964 0.967-207.787 94.387-207.787 209.486 0 0.002 0 0.005 0 0.007l-0-0v365.227c-0.004 0.509-0.007 1.111-0.007 1.714 0 115.102 92.827 208.524 207.702 209.486l0.092 0.001h376.32c114.967-0.963 207.794-94.384 207.794-209.486 0-0.603-0.003-1.204-0.008-1.806l0.001 0.092z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-up"]},"attrs":[{}],"properties":{"order":6668,"id":296,"name":"file-up","prevSize":32,"code":59924},"setIdx":0,"setId":0,"iconIdx":276},{"icon":{"paths":["M975.36 447.573c0.115-0.897 0.181-1.934 0.181-2.987s-0.066-2.090-0.193-3.108l0.012 0.121c0.665-2.419 1.047-5.196 1.047-8.062 0-8.672-3.496-16.527-9.156-22.233l0.002 0.002-341.333-341.333c-2.606-2.431-5.548-4.557-8.735-6.288l-0.225-0.112h-3.413c-1.219-0.213-2.622-0.334-4.053-0.334s-2.835 0.122-4.2 0.355l0.147-0.021h-276.907c-148.965 0.229-269.862 120.078-271.785 268.618l-0.002 0.182v359.253c0.242 150.006 121.78 271.544 271.763 271.787l0.024 0h376.32c150.006-0.242 271.544-121.78 271.787-271.763l0-0.024zM634.027 170.667l232.107 231.253h-124.16c-59.52-0.241-107.705-48.427-107.947-107.923l-0-0.023zM704.853 900.267h-376.32c-114.66-0.242-207.544-93.127-207.787-207.763l-0-0.023v-360.107c0.242-114.66 93.127-207.544 207.763-207.787l0.023-0h241.493v170.667c0 94.257 76.41 170.667 170.667 170.667v0h170.667v225.707c0 0.001 0 0.003 0 0.004 0 114.307-92.301 207.057-206.437 207.782l-0.069 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file"]},"attrs":[{}],"properties":{"order":6669,"id":295,"name":"file","prevSize":32,"code":59925},"setIdx":0,"setId":0,"iconIdx":277},{"icon":{"paths":["M675.413 970.667h-326.827c-147.885-0.242-267.704-120.061-267.947-267.923l-0-0.023v-311.040c0.258-98.809 53.875-185.038 133.547-231.419l1.279-0.688c4.869-3.011 10.772-4.796 17.092-4.796 11.877 0 22.282 6.302 28.053 15.745l0.082 0.144c2.73 4.76 4.339 10.464 4.339 16.544 0 12.353-6.645 23.154-16.557 29.024l-0.156 0.086c-60.877 35.619-101.12 100.682-101.12 175.145 0 0.076 0 0.151 0 0.227l-0-0.012v311.040c0 111.223 90.164 201.387 201.387 201.387v0h326.827c111.223 0 201.387-90.164 201.387-201.387v0-311.040c-0.055-74.163-40.105-138.959-99.745-173.992l-0.948-0.515c-9.73-5.955-16.124-16.524-16.124-28.587 0-18.448 14.955-33.404 33.404-33.404 6.386 0 12.353 1.792 17.426 4.9l-0.146-0.083c80.37 47.315 133.555 133.24 133.973 231.62l0 0.060v311.040c-0.242 148.036-120.304 267.948-268.373 267.948-0.3 0-0.6-0-0.9-0.001l0.047 0zM717.227 170.667v-42.667c0.001-0.127 0.001-0.277 0.001-0.427 0-41.002-33.238-74.24-74.24-74.24-0 0-0.001 0-0.001 0l-241.92 0c-41.237 0-74.667 33.429-74.667 74.667v0 42.667c0 41.237 33.429 74.667 74.667 74.667v0h241.92c0 0 0.001 0 0.001 0 41.002 0 74.24-33.238 74.24-74.24 0-0.15-0-0.3-0.001-0.45l0 0.023zM642.987 119.893c4.477 0 8.107 3.629 8.107 8.107v0 42.667c0 0.003 0 0.007 0 0.011 0 4.563-3.581 8.289-8.086 8.522l-0.021 0.001h-241.92c-4.713-0-8.533-3.821-8.533-8.533l-0 0v-42.667c-0-0.003-0-0.007-0-0.011 0-4.477 3.629-8.107 8.107-8.107 0.15 0 0.299 0.004 0.447 0.012l-0.021-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["files-tablet"]},"attrs":[{}],"properties":{"order":6670,"id":294,"name":"files-tablet","prevSize":32,"code":59926},"setIdx":0,"setId":0,"iconIdx":278},{"icon":{"paths":["M886.187 178.773v102.4c-0.208 37.599-16.596 71.33-42.547 94.615l-0.12 0.105-49.067 42.667c-5.638 5.050-13.125 8.138-21.333 8.138-17.69 0-32.031-14.341-32.031-32.031 0-9.482 4.12-18.002 10.668-23.867l0.030-0.027 48.64-42.667c12.858-11.605 20.905-28.329 20.907-46.933l0-0v-102.4c0-34.404-27.89-62.293-62.293-62.293v0h-543.147c-34.404 0-62.293 27.89-62.293 62.293h-0v106.24c0.34 16.648 7.115 31.651 17.93 42.677l-0.010-0.010 160.427 162.56c35.069 35.249 56.747 83.849 56.747 137.512 0 0.106-0 0.212-0 0.318l0-0.016v225.28c0.642 29.901 25.033 53.894 55.028 53.894 11.284 0 21.775-3.396 30.506-9.221l-0.201 0.126 58.027-42.667c5.163-3.69 11.603-5.9 18.56-5.9 17.751 0 32.14 14.39 32.14 32.14 0 10.794-5.321 20.345-13.483 26.174l-0.098 0.066-58.453 42.667c-18.76 12.922-41.975 20.64-66.992 20.64-65.35 0-118.401-52.659-119.034-117.86l-0-0.060v-224c0-0.001 0-0.003 0-0.004 0-36.3-14.67-69.173-38.405-93.014l0.005 0.005-158.293-162.56c-23.096-22.638-37.645-53.923-38.398-88.606l-0.002-0.14v-106.24c-0-70.692 57.308-128 128-128v0h542.293c69.955 0.963 126.293 57.896 126.293 127.989 0 0.004-0 0.008-0 0.012l0-0.001zM837.547 622.507l-32.853 33.28-110.507 112.213c-8.18 8.239-18.61 14.232-30.292 16.982l-0.428 0.085-45.227 9.387c-1.919 0.2-4.146 0.314-6.4 0.314s-4.481-0.114-6.676-0.337l0.276 0.023c-16.656-0.293-31.673-7.079-42.674-17.927l0.007 0.007c-11.484-11.241-18.604-26.901-18.604-44.224 0-4.127 0.404-8.161 1.175-12.062l-0.065 0.393 8.533-45.227c2.192-12.279 7.977-22.941 16.212-31.145l0.002-0.002 142.933-146.347c11.993-12.121 28.63-19.628 47.019-19.628 0.12 0 0.239 0 0.359 0.001l-0.018-0c18.463 0.199 35.147 7.652 47.371 19.638l-0.011-0.011 27.733 27.307c13.329 12.422 21.639 30.079 21.639 49.677 0 18.552-7.447 35.364-19.514 47.612l0.008-0.008zM757.76 544.427l-24.747 25.6c5.498 15.963 19.245 27.718 36.016 30.262l0.25 0.031 22.187-22.613s0-3.413 0-5.12l-27.733-27.307c-0.513-0.116-1.102-0.182-1.707-0.182s-1.194 0.066-1.761 0.192l0.054-0.010zM720.64 650.24c-13.86-8.377-25.293-19.401-33.889-32.458l-0.244-0.395-71.68 73.387-7.68 42.667 42.667-11.093z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-edit"]},"attrs":[{}],"properties":{"order":6671,"id":293,"name":"filter-edit","prevSize":32,"code":59927},"setIdx":0,"setId":0,"iconIdx":279},{"icon":{"paths":["M469.333 971.52c-0.058 0-0.127 0-0.195 0-20.022 0-38.903-4.891-55.511-13.543l0.666 0.316c-38.912-19.703-65.228-59.203-65.706-104.896l-0.001-0.064v-224c0.001-0.181 0.001-0.394 0.001-0.608 0-36.032-14.501-68.677-37.986-92.417l-160.415-162.548c-22.47-22.857-36.425-54.147-36.693-88.695l-0-0.052v-106.24c0-70.692 57.308-128 128-128v0h542.293c70.692 0 128 57.308 128 128v0 102.4c-0.208 37.599-16.596 71.33-42.547 94.615l-0.12 0.105-42.667 39.253c-5.665 4.956-13.13 7.978-21.302 7.978-9.461 0-17.975-4.052-23.903-10.514l-0.022-0.024c-5.058-5.635-8.151-13.124-8.151-21.336 0-9.484 4.126-18.004 10.68-23.864l0.031-0.027 42.667-39.253c12.608-11.583 20.481-28.149 20.481-46.553 0-0.134-0-0.268-0.001-0.401l0 0.020v-102.4c0-34.404-27.89-62.293-62.293-62.293v0h-544.427c-0.127-0.001-0.277-0.001-0.427-0.001-34.404 0-62.293 27.89-62.293 62.293 0 0.001 0 0.001 0 0.002l-0-0v106.24c0.319 16.729 7.276 31.773 18.338 42.659l0.008 0.008 160.427 162.56c34.821 35.396 56.32 83.991 56.32 137.607 0 0.073-0 0.145-0 0.218l0-0.011v225.28c0.642 29.901 25.033 53.894 55.028 53.894 11.284 0 21.775-3.396 30.506-9.221l-0.201 0.126 58.453-42.667c4.868-3.221 10.843-5.14 17.266-5.14 10.377 0 19.585 5.006 25.341 12.736l0.060 0.084c3.724 5.163 5.956 11.618 5.956 18.594 0 10.796-5.347 20.344-13.536 26.139l-0.1 0.067-58.027 42.667c-17.929 12.473-39.996 20.188-63.823 20.902l-0.177 0.004zM844.8 827.733c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0-39.253-39.253v-2.56c-29.206 20.989-65.685 33.565-105.102 33.565-100.148 0-181.333-81.186-181.333-181.333s81.186-181.333 181.333-181.333c100.148 0 181.333 81.186 181.333 181.333 0 39.417-12.576 75.896-33.936 105.644l0.37-0.542h2.56l39.253 39.253c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0zM771.84 640c0-0.127 0.001-0.276 0.001-0.426 0-64.566-52.341-116.907-116.907-116.907s-116.907 52.341-116.907 116.907c0 64.566 52.341 116.907 116.907 116.907 0.15 0 0.3-0 0.449-0.001l-0.023 0c64.233-0.241 116.238-52.247 116.48-116.457l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-search"]},"attrs":[{}],"properties":{"order":6672,"id":292,"name":"filter-search","prevSize":32,"code":59928},"setIdx":0,"setId":0,"iconIdx":280},{"icon":{"paths":["M486.4 793.173c-0.157 0.001-0.344 0.002-0.53 0.002-13.71 0-26.608-3.476-37.86-9.596l0.417 0.208c-25.636-14.399-42.672-41.415-42.672-72.411 0-0.343 0.002-0.686 0.006-1.028l-0 0.052v-128c-0.811-16.639-7.653-31.538-18.368-42.689l0.021 0.022-95.573-98.987c-15.55-15.46-25.175-36.866-25.175-60.52 0-0.173 0.001-0.347 0.002-0.52l-0 0.027v-61.867c0-47.128 38.205-85.333 85.333-85.333v0h316.587c47.128 0 85.333 38.205 85.333 85.333v0 59.733c0.002 0.221 0.003 0.481 0.003 0.742 0 25.503-11.188 48.393-28.923 64.030l-0.093 0.080-105.387 93.867c-13.118 11.77-21.333 28.777-21.333 47.703 0 0.029 0 0.059 0 0.088l-0-0.005v104.533c0.001 0.109 0.001 0.237 0.001 0.366 0 26.727-13.212 50.369-33.462 64.749l-0.245 0.166-33.707 23.893c-12.366 8.935-27.641 14.573-44.188 15.353l-0.186 0.007zM353.707 294.827c-12.725-0-23.040 10.315-23.040 23.040v61.867c-0.001 0.082-0.002 0.179-0.002 0.276 0 6.188 2.44 11.806 6.409 15.946l-0.008-0.008 93.44 94.72c23.447 22.779 38.19 54.408 38.825 89.482l0.002 0.118v128c-0.004 0.133-0.006 0.29-0.006 0.447 0 7.109 4.139 13.25 10.138 16.147l0.107 0.047c2.764 1.578 6.073 2.508 9.6 2.508s6.836-0.93 9.697-2.559l-0.097 0.051 34.133-24.32c3.901-2.908 6.4-7.509 6.4-12.693 0-0.038-0-0.075-0-0.113l0 0.006v-103.68c-0-0.050-0-0.109-0-0.168 0-37.852 16.43-71.866 42.547-95.3l0.12-0.106 105.387-93.867c4.697-4.214 7.648-10.293 7.68-17.061l0-0.006v-59.733c0-12.725-10.315-23.040-23.040-23.040v0zM684.8 970.667h-343.467c-157.782-0.242-285.624-128.084-285.867-285.843l-0-0.024v-343.467c-0.003-0.507-0.005-1.107-0.005-1.707 0-157.967 127.938-286.053 285.849-286.293l0.023-0h345.6c157.013 1.446 283.738 129.065 283.738 286.282 0 0.604-0.002 1.208-0.006 1.811l0-0.093v345.6c-1.447 156.865-128.83 283.498-285.844 283.733l-0.023 0zM341.333 117.333c-0.509-0.004-1.111-0.007-1.713-0.007-122.769 0-222.293 99.524-222.293 222.293 0 0.602 0.002 1.204 0.007 1.805l-0.001-0.092v345.6c1.442 121.666 100.407 219.74 222.279 219.74 0.605 0 1.21-0.002 1.814-0.007l-0.092 0.001h345.6c122.534-0 221.867-99.333 221.867-221.867v0-343.467c0-122.534-99.333-221.867-221.867-221.867v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-square"]},"attrs":[{}],"properties":{"order":6673,"id":291,"name":"filter-square","prevSize":32,"code":59929},"setIdx":0,"setId":0,"iconIdx":281},{"icon":{"paths":["M703.573 970.667h-331.947c-149.002-1.444-269.235-122.568-269.235-271.775 0-0.754 0.003-1.508 0.009-2.261l-0.001 0.116v-103.68c-0-0.001-0-0.002-0-0.003 0-17.287 13.894-31.33 31.124-31.57l0.023-0c17.019 0.239 30.723 14.091 30.723 31.144 0 0.151-0.001 0.302-0.003 0.452l0-0.023v103.68c-0.023 1.146-0.035 2.497-0.035 3.851 0 114.962 92.601 208.296 207.283 209.482l0.112 0.001h331.947c114.562-1.182 206.977-94.327 206.977-209.056 0-1.504-0.016-3.004-0.047-4.501l0.004 0.224v-321.28c0.004-0.51 0.007-1.114 0.007-1.717 0-114.717-92.394-207.854-206.827-209.055l-0.114-0.001h-72.107c-15.789-1.898-27.909-15.214-27.909-31.36s12.12-29.462 27.758-31.345l0.151-0.015h72.107c148.767 1.443 268.808 122.377 268.808 271.348 0 0.754-0.003 1.508-0.009 2.26l0.001-0.115v321.28c0.005 0.639 0.009 1.394 0.009 2.15 0 149.056-119.991 270.087-268.649 271.769l-0.159 0.001zM262.827 525.227l42.667-14.507c25.019-8.624 42.671-31.965 42.671-59.429 0-0.257-0.002-0.514-0.005-0.77l0 0.039v-94.72c-0.008-0.154-0.012-0.335-0.012-0.517 0-3.15 1.313-5.993 3.421-8.013l0.004-0.004 97.707-87.467c21.004-19.046 34.14-46.44 34.14-76.901 0-0.415-0.002-0.829-0.007-1.242l0.001 0.063v-30.293c0.052-1.173 0.082-2.55 0.082-3.933 0-50.605-39.864-91.899-89.902-94.193l-0.206-0.008h-251.733c-50.245 2.301-90.109 43.595-90.109 94.2 0 1.383 0.030 2.759 0.089 4.128l-0.007-0.195v30.293c-0.003 0.299-0.005 0.653-0.005 1.007 0 30.432 12.952 57.84 33.643 77.011l0.068 0.062 98.133 87.467c2.112 2.023 3.425 4.867 3.425 8.017 0 0.182-0.004 0.363-0.013 0.542l0.001-0.025v109.227c0.069 21.163 10.399 39.898 26.272 51.501l0.181 0.126c9.21 6.796 20.747 10.934 33.242 11.093l0.038 0c5.822-0.113 11.384-1.040 16.637-2.673l-0.423 0.113zM393.813 116.053c16.073 2.32 28.286 16.001 28.286 32.534 0 1.014-0.046 2.016-0.136 3.007l0.009-0.128v30.293c0 0.074 0.001 0.162 0.001 0.249 0 11.932-4.898 22.721-12.794 30.464l-0.007 0.007-98.133 86.187c-14.971 13.702-24.324 33.33-24.324 55.143 0 0.264 0.001 0.528 0.004 0.791l-0-0.040v94.72l-39.253 13.227v-106.667c0.042-0.935 0.067-2.031 0.067-3.133 0-21.318-9.037-40.525-23.489-54l-0.044-0.040-96-85.333c-7.902-7.75-12.801-18.538-12.801-30.471 0-0.088 0-0.175 0.001-0.263l-0 0.013v-31.147c-0.104-0.974-0.163-2.104-0.163-3.247 0-16.462 12.267-30.059 28.159-32.148l0.164-0.018zM756.48 522.24c0-0.001 0-0.002 0-0.003 0-17.287-13.894-31.33-31.124-31.57l-0.023-0h-187.733c-17.437 0-31.573 14.136-31.573 31.573s14.136 31.573 31.573 31.573h187.733c17.253-0.241 31.147-14.283 31.147-31.57 0-0.001-0-0.002-0-0.003l0 0zM769.28 700.16c0-0.001 0-0.002 0-0.003 0-17.052-13.703-30.903-30.697-31.143l-0.023-0h-352.427c-15.789 1.898-27.909 15.214-27.909 31.36s12.12 29.462 27.758 31.345l0.151 0.015h352.427c16.453-0.929 29.444-14.497 29.444-31.1 0-0.166-0.001-0.332-0.004-0.498l0 0.025z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-tablet"]},"attrs":[{}],"properties":{"order":6674,"id":290,"name":"filter-tablet","prevSize":32,"code":59930},"setIdx":0,"setId":0,"iconIdx":282},{"icon":{"paths":["M798.293 417.707l47.36-42.667c25.969-23.297 42.33-56.852 42.666-94.233l0-0.060v-101.973c0-70.692-57.308-128-128-128v0h-542.72c-70.692 0-128 57.308-128 128v0 106.24c0.755 34.824 15.304 66.108 38.379 88.726l0.021 0.021 160.427 162.56c23.73 23.837 38.401 56.71 38.401 93.010 0 0.151-0 0.302-0.001 0.453l0-0.023v223.573c-0.002 0.232-0.003 0.505-0.003 0.779 0 45.482 25.691 84.964 63.354 104.724l0.649 0.31c15.942 8.336 34.822 13.227 54.845 13.227 0.069 0 0.137-0 0.206-0l-0.011 0c0.106 0 0.23 0.001 0.355 0.001 25.62 0 49.336-8.152 68.696-22.004l-0.357 0.243 58.027-42.667c20.147-14.673 35.145-35.336 42.455-59.35l0.212-0.81c25.733 10.578 55.604 16.72 86.909 16.72 129.367 0 234.24-104.873 234.24-234.24 0-94.375-55.812-175.714-136.23-212.812l-1.453-0.601zM535.467 856.32l-58.027 42.667c-8.604 5.923-19.249 9.46-30.721 9.46-30.038 0-54.412-24.25-54.612-54.241l-0-0.019v-224.427c0-0.164 0.001-0.358 0.001-0.551 0-53.719-21.676-102.375-56.758-137.7l0.011 0.011-162.133-162.56c-10.805-11.016-17.58-26.018-17.919-42.602l-0.001-0.065v-107.52c-0-34.404 27.89-62.293 62.293-62.293l0 0h543.573c0.127-0.001 0.277-0.001 0.427-0.001 34.404 0 62.293 27.89 62.293 62.293 0 0.001-0 0.001-0 0.002l0-0v102.827c-0.131 18.447-8.151 34.995-20.851 46.457l-0.056 0.049-77.653 68.693c-4.149-0.31-8.987-0.487-13.867-0.487s-9.717 0.177-14.508 0.525l0.642-0.037c-129.143 0.296-233.72 105.055-233.72 234.239 0 75.083 35.327 141.916 90.266 184.783l0.521 0.391c0.009 0.347 0.014 0.756 0.014 1.166 0 15.815-7.482 29.883-19.1 38.856l-0.114 0.084zM698.027 800.427c-94.257 0-170.667-76.41-170.667-170.667s76.41-170.667 170.667-170.667c94.257 0 170.667 76.41 170.667 170.667v0c0 94.257-76.41 170.667-170.667 170.667v0zM679.253 711.253c-0.111 0.001-0.241 0.002-0.372 0.002-8.084 0-15.45-3.080-20.986-8.131l0.024 0.022-53.76-48.213c-6.585-5.887-10.711-14.407-10.711-23.891 0-8.211 3.093-15.7 8.177-21.366l-0.026 0.030c5.949-6.487 14.464-10.538 23.925-10.538 8.172 0 15.637 3.023 21.34 8.011l-0.038-0.032 32.427 29.013 88.747-81.493c5.861-6.301 14.198-10.23 23.454-10.23 17.673 0 32 14.327 32 32 0 10.427-4.987 19.69-12.707 25.532l-0.080 0.058-110.080 99.84c-5.443 5.577-12.95 9.118-21.284 9.385l-0.049 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-tick"]},"attrs":[{}],"properties":{"order":6675,"id":289,"name":"filter-tick","prevSize":32,"code":59931},"setIdx":0,"setId":0,"iconIdx":283},{"icon":{"paths":["M783.787 52.48h-543.573c-70.692 0-128 57.308-128 128v0 104.533c0.268 34.6 14.224 65.889 36.711 88.765l-0.018-0.018 160.427 162.56c23.473 23.728 37.975 56.373 37.975 92.405 0 0.214-0.001 0.428-0.002 0.641l0-0.033v224c-0 0.089-0 0.195-0 0.3 0 45.723 25.871 85.403 63.772 105.202l0.655 0.311c15.926 8.357 34.794 13.26 54.807 13.26 25.818 0 49.731-8.161 69.298-22.044l-0.372 0.25 58.027-42.667c29.308-20.881 48.197-54.739 48.213-93.011l0-0.003v-179.2c-0.004-0.39-0.006-0.851-0.006-1.312 0-38.557 16.393-73.286 42.589-97.597l0.084-0.077 180.48-160.853c26.071-23.39 42.458-57.121 42.667-94.683l0-0.037v-102.4c-0.903-68.493-55.467-123.951-123.518-126.287l-0.216-0.006zM177.493 285.013v-106.24c-0-0-0-0.001-0-0.001 0-34.404 27.89-62.293 62.293-62.293 0.15 0 0.3 0.001 0.45 0.002l-0.023-0h204.373l-180.48 281.6-68.267-69.12c-11.328-11.152-18.347-26.653-18.347-43.793 0-0.054 0-0.108 0-0.162l-0 0.008zM846.080 281.173c0.001 0.113 0.001 0.247 0.001 0.381 0 18.404-7.873 34.969-20.435 46.511l-0.046 0.041-180.907 160.853c-40.401 36.179-65.707 88.501-65.707 146.734 0 0.014 0 0.028 0 0.042l-0-0.002v180.053c-0.031 16.651-8.209 31.385-20.759 40.432l-0.148 0.101-58.453 42.667c-8.531 5.699-19.021 9.094-30.305 9.094-29.995 0-54.386-23.994-55.027-53.835l-0.001-0.060v-224.853c0-0.061 0-0.134 0-0.207 0-53.616-21.499-102.21-56.346-137.633l0.026 0.026-47.787-46.507 210.773-328.533h262.827c34.404 0 62.293 27.89 62.293 62.293v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter"]},"attrs":[{}],"properties":{"order":6676,"id":288,"name":"filter","prevSize":32,"code":59932},"setIdx":0,"setId":0,"iconIdx":284},{"icon":{"paths":["M661.504 959.693h-339.968c-149.209-0.233-270.103-121.127-270.336-270.314l-0-0.022v-339.968c0.233-149.209 121.127-270.103 270.314-270.336l0.022-0h339.968c149.209 0.233 270.103 121.127 270.336 270.314l0 0.022v339.968c-0.233 149.209-121.127 270.103-270.314 270.336l-0.022 0zM321.536 140.493c-115.276 0.233-208.663 93.62-208.896 208.874l-0 0.022v339.968c0.233 115.276 93.62 208.663 208.874 208.896l0.022 0h339.968c115.276-0.233 208.663-93.62 208.896-208.874l0-0.022v-339.968c-0.233-115.276-93.62-208.663-208.874-208.896l-0.022-0zM668.058 470.221h-355.942c-62.485-0.233-113.050-50.941-113.050-113.458 0-0 0-0 0-0.001l0-0v-25.805c-0-0-0-0-0-0.001 0-62.518 50.564-113.226 113.027-113.458l0.022-0h355.942c62.662 0 113.459 50.797 113.459 113.459v0 25.805c0 62.662-50.797 113.459-113.459 113.459v0zM312.115 278.938c-0-0-0.001-0-0.002-0-28.503 0-51.61 23.106-51.61 51.61 0 0.144 0.001 0.288 0.002 0.432l-0-0.022v25.805c-0.009 0.366-0.015 0.797-0.015 1.229 0 28.503 23.106 51.61 51.61 51.61 0.005 0 0.010-0 0.015-0l355.942 0c28.729 0 52.019-23.29 52.019-52.019v0-26.624c0-28.729-23.29-52.019-52.019-52.019v0zM308.019 546.406c-3.221-0.91-6.92-1.434-10.742-1.434-22.622 0-40.96 18.338-40.96 40.96s18.338 40.96 40.96 40.96c3.821 0 7.521-0.523 11.030-1.502l-0.288 0.069c3.221 0.91 6.92 1.434 10.742 1.434 22.622 0 40.96-18.338 40.96-40.96s-18.338-40.96-40.96-40.96c-3.821 0-7.521 0.523-11.030 1.502l0.288-0.069zM522.24 546.406c-22.622 0-40.96 18.338-40.96 40.96s18.338 40.96 40.96 40.96c22.622 0 40.96-18.338 40.96-40.96v0c0-22.622-18.338-40.96-40.96-40.96v0zM308.019 696.32c-22.622 0-40.96 18.338-40.96 40.96s18.338 40.96 40.96 40.96c22.622 0 40.96-18.338 40.96-40.96v0c0-22.622-18.338-40.96-40.96-40.96v0zM522.24 696.32c-22.622 0-40.96 18.338-40.96 40.96s18.338 40.96 40.96 40.96c22.622 0 40.96-18.338 40.96-40.96v0c0-22.622-18.338-40.96-40.96-40.96v0zM734.413 750.387v-176.947c0-16.966-13.754-30.72-30.72-30.72s-30.72 13.754-30.72 30.72v0 178.176c0 16.966 13.754 30.72 30.72 30.72s30.72-13.754 30.72-30.72v0z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["finance-calculator"]},"attrs":[{}],"properties":{"order":6677,"id":287,"name":"finance-calculator","prevSize":32,"code":59933},"setIdx":0,"setId":0,"iconIdx":285},{"icon":{"paths":["M655.36 71.68h-327.68c-0.244-0.001-0.532-0.001-0.82-0.001-151.729 0-274.785 122.768-275.25 274.389l-0 0.045v330.957c-0 0-0 0.001-0 0.001 0 152.017 123.234 275.251 275.251 275.251 0.288 0 0.576-0 0.864-0.001l-0.044 0h332.595c151.604-0.464 274.377-123.238 274.841-274.797l0-0.044v-330.957c-0.233-151.841-123.378-274.842-275.251-274.842-0.144 0-0.288 0-0.432 0l0.022-0zM868.762 677.478c0 117.858-95.543 213.402-213.402 213.402v0h-327.68c-117.858 0-213.402-95.543-213.402-213.402v0-330.957c0.233-117.765 95.637-213.169 213.38-213.402l0.022-0h332.186c117.765 0.233 213.169 95.637 213.402 213.38l0 0.022zM673.382 431.718h-74.138v-107.725c-0.692-43.354-35.999-78.234-79.453-78.234-0.003 0-0.007 0-0.010 0l-56.934-0c-0.003-0-0.006-0-0.010-0-43.454 0-78.761 34.879-79.452 78.169l-0.001 0.065v176.538h-76.595c-43.886 0-79.462 35.577-79.462 79.462v0 0 137.626c0.228 16.874 13.846 30.492 30.698 30.72l0.022 0h465.715c16.785-0.444 30.276-13.935 30.719-30.678l0.001-0.042v-207.258c0-0.001 0-0.003 0-0.004 0-43.433-35.21-78.643-78.643-78.643-0.288 0-0.576 0.002-0.863 0.005l0.044-0zM288.768 579.994c0-9.953 8.069-18.022 18.022-18.022h0 76.595v122.88h-94.618zM444.826 532.48v-208.486c0-9.953 8.069-18.022 18.022-18.022v0h56.934c9.953-0 18.022 8.069 18.022 18.022v362.906h-92.979zM696.32 686.899h-97.075v-195.379h75.776c9.953 0 18.022 8.069 18.022 18.022h-0z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["financial-schedule"]},"attrs":[{}],"properties":{"order":6678,"id":286,"name":"financial-schedule","prevSize":32,"code":59934},"setIdx":0,"setId":0,"iconIdx":286},{"icon":{"paths":["M520.107 883.627c-0.212 0.005-0.463 0.007-0.714 0.007-7.974 0-15.309-2.734-21.119-7.316l0.072 0.055c-9.126-6.668-14.988-17.334-14.988-29.368 0-8.237 2.746-15.833 7.373-21.922l-0.065 0.090c31.251-41.686 54.998-90.968 68.118-144.426l0.576-2.774c3.199-17.274 18.147-30.182 36.111-30.182 20.265 0 36.693 16.428 36.693 36.693 0 3.764-0.567 7.396-1.62 10.815l0.069-0.26c-16.040 66.504-44.080 124.805-81.95 175.311l0.883-1.231c-6.893 8.81-17.502 14.439-29.429 14.507l-0.011 0zM414.293 802.987c51.398-58.231 82.773-135.192 82.773-219.481 0-0.089-0-0.177-0-0.266l0 0.014v-183.893c0-20.265 16.428-36.693 36.693-36.693s36.693 16.428 36.693 36.693v0 158.72c0 20.265 16.428 36.693 36.693 36.693s36.693-16.428 36.693-36.693h0v-158.72c0-60.796-49.284-110.080-110.080-110.080s-110.080 49.284-110.080 110.080v0 183.893c0.001 0.254 0.001 0.554 0.001 0.854 0 65.279-24.434 124.852-64.655 170.072l0.226-0.259c-5.741 6.503-9.245 15.099-9.245 24.513 0 10.91 4.707 20.721 12.2 27.512l0.031 0.028c6.403 5.816 14.945 9.38 24.319 9.387l0.001 0c0.019 0 0.043 0 0.066 0 10.977 0 20.841-4.765 27.637-12.339l0.031-0.035zM314.027 695.040c20.183-0.704 36.277-17.235 36.277-37.525 0-0.308-0.004-0.614-0.011-0.92l0.001 0.045v-256c0.091-23.179 4.466-45.31 12.374-65.678l-0.427 1.251c1.83-4.216 2.895-9.127 2.895-14.286 0-15.634-9.777-28.984-23.551-34.269l-0.251-0.085c-3.832-1.504-8.269-2.376-12.91-2.376-15.521 0-28.765 9.75-33.94 23.459l-0.083 0.25c-10.731 26.815-16.989 57.892-17.067 90.422l-0 0.031v261.12c0.228 19.148 15.803 34.584 34.984 34.584 0.451 0 0.9-0.009 1.347-0.025l-0.064 0.002zM424.107 251.733c17.333-13.135 37.685-23.386 59.74-29.562l1.273-0.305c15.657-4.442 26.935-18.611 26.935-35.413 0-20.295-16.453-36.748-36.748-36.748-3.493 0-6.872 0.487-10.072 1.398l0.259-0.063c-32.64 9.538-61.065 24.143-85.969 43.131l0.635-0.465c-9.019 6.762-14.793 17.427-14.793 29.441 0 20.265 16.428 36.693 36.693 36.693 0.101 0 0.201-0 0.302-0.001l-0.015 0c8.329-0.082 15.929-3.134 21.808-8.146l-0.048 0.040zM760.747 775.253c18.917-57.369 29.84-123.405 29.867-191.987l0-0.013v-183.893c0.003-0.452 0.005-0.987 0.005-1.522 0-111.593-71.402-206.509-171.011-241.555l-1.793-0.55c-3.647-1.334-7.858-2.105-12.249-2.105-15.976 0-29.568 10.21-34.605 24.461l-0.079 0.257c-1.232 3.536-1.943 7.612-1.943 11.853 0 16.154 10.318 29.897 24.724 35l0.26 0.080c72.409 25.806 123.307 93.772 123.307 173.626 0 0.16-0 0.319-0.001 0.479l0-0.025v183.893c0.001 0.419 0.002 0.914 0.002 1.41 0 60.474-9.678 118.688-27.57 173.178l1.115-3.921c-1.115 3.353-1.759 7.214-1.759 11.225 0 16.164 10.452 29.888 24.967 34.78l0.259 0.076c1.732 0.296 3.726 0.466 5.76 0.466s4.028-0.169 5.97-0.495l-0.21 0.029c0.087 0.001 0.189 0.001 0.292 0.001 15.987 0 29.586-10.224 34.616-24.491l0.079-0.257zM970.667 886.187v-142.933c-1.954-16.69-16.012-29.518-33.067-29.518s-31.113 12.828-33.052 29.362l-0.015 0.156v142.933c0 10.133-8.214 18.347-18.347 18.347v0h-128c-16.69 1.954-29.518 16.012-29.518 33.067s12.828 31.113 29.362 33.052l0.156 0.015h128c46.464-0.477 84.003-38.016 84.48-84.434l0-0.046zM298.667 938.667c0-18.144-14.709-32.853-32.853-32.853v-0h-128c-10.133 0-18.347-8.214-18.347-18.347v0-144.213c-1.954-16.69-16.012-29.518-33.067-29.518s-31.113 12.828-33.052 29.362l-0.015 0.156v142.933c-0 47.128 38.205 85.333 85.333 85.333v0h128c17.774-0.476 32-14.998 32-32.842 0-0.004-0-0.008-0-0.012l0 0.001zM970.667 280.747v-142.933c0-47.128-38.205-85.333-85.333-85.333v0h-128c-16.69 1.954-29.518 16.012-29.518 33.067s12.828 31.113 29.362 33.052l0.156 0.015h128c10.133-0 18.347 8.214 18.347 18.347v143.787c1.954 16.69 16.012 29.518 33.067 29.518s31.113-12.828 33.052-29.362l0.015-0.156zM119.467 280.747v-142.933c-0-10.133 8.214-18.347 18.347-18.347l0 0h128c16.69-1.954 29.518-16.012 29.518-33.067s-12.828-31.113-29.362-33.052l-0.156-0.015h-128c-47.128 0-85.333 38.205-85.333 85.333v0 142.080c1.954 16.69 16.012 29.518 33.067 29.518s31.113-12.828 33.052-29.362l0.015-0.156z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["fingerprint-scanning"]},"attrs":[{}],"properties":{"order":6679,"id":285,"name":"fingerprint-scanning","prevSize":32,"code":59935},"setIdx":0,"setId":0,"iconIdx":287},{"icon":{"paths":["M745.387 384l102.4-128c9.861-12.281 15.827-28.057 15.827-45.227 0-40.059-32.474-72.533-72.533-72.533-0.014 0-0.028 0-0.042 0l-535.038-0v-20.48c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 788.48c0 17.673 14.327 32 32 32s32-14.327 32-32v0-276.907h535.040c0.048 0 0.104 0 0.16 0 39.823 0 72.107-32.283 72.107-72.107 0-17.188-6.014-32.972-16.053-45.362l0.106 0.135zM798.72 560.64c-1.436 2.806-4.308 4.694-7.621 4.694-0.021 0-0.042-0-0.063-0l0.003 0h-535.040v-362.667h535.040c0.018-0 0.039-0 0.059-0 3.312 0 6.184 1.887 7.598 4.645l0.022 0.048c0.846 1.26 1.35 2.811 1.35 4.48s-0.504 3.22-1.369 4.509l0.018-0.029-135.253 167.68 133.973 167.68c1.295 1.431 2.088 3.339 2.088 5.431 0 1.284-0.298 2.498-0.83 3.576l0.021-0.048z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flag"]},"attrs":[{}],"properties":{"order":6680,"id":284,"name":"flag","prevSize":32,"code":59936},"setIdx":0,"setId":0,"iconIdx":288},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM469.333 783.787c-0.219 0.003-0.477 0.005-0.735 0.005-6.311 0-12.365-1.096-17.984-3.108l0.372 0.116c-20.252-7.511-34.446-26.616-34.56-49.053l-0-0.014v-156.16h-56.32c-28.265-0.917-50.83-24.050-50.83-52.454 0-12.493 4.365-23.967 11.654-32.978l-0.078 0.099 198.4-230.4c9.742-11.008 23.905-17.912 39.68-17.912 29.217 0 52.902 23.683 52.907 52.898l0 0v158.72h53.333c28.449 0.69 51.247 23.915 51.247 52.466 0 12.488-4.362 23.957-11.645 32.967l0.078-0.099-197.973 229.12c-9.47 9.742-22.699 15.787-37.34 15.787-0.073 0-0.145-0-0.217-0l0.011 0zM384 512h92.16v188.587l163.84-184.747h-94.293v-192.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flash-circle"]},"attrs":[{}],"properties":{"order":6681,"id":283,"name":"flash-circle","prevSize":32,"code":59937},"setIdx":0,"setId":0,"iconIdx":289},{"icon":{"paths":["M915.2 770.987l-134.4-232.107-108.8-188.587v-154.88c25.376-12.288 42.565-37.843 42.565-67.413 0-41.201-33.371-74.608-74.559-74.667l-0.006-0h-256c-41.193 0.058-74.565 33.465-74.565 74.667 0 29.57 17.189 55.125 42.12 67.219l0.444 0.194v154.88l-108.8 188.587-134.4 232.107c-11.213 19.093-17.835 42.053-17.835 66.56 0 73.49 59.551 133.071 133.030 133.12l576.005 0c73.483-0.049 133.035-59.63 133.035-133.12 0-24.507-6.622-47.467-18.175-67.188l0.34 0.628zM411.733 374.613c2.682-4.353 4.271-9.627 4.271-15.272 0-0.181-0.002-0.361-0.005-0.541l0 0.027v-188.16c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0c-5.891 0-10.667-4.776-10.667-10.667s4.776-10.667 10.667-10.667v0h256c5.891 0 10.667 4.776 10.667 10.667s-4.776 10.667-10.667 10.667v0c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023v188.16c-0.003 0.153-0.004 0.334-0.004 0.514 0 5.645 1.589 10.92 4.344 15.4l-0.073-0.128 85.333 148.053h-371.2zM859.733 872.107c-11.965 20.789-34.057 34.561-59.366 34.561-0.129 0-0.259-0-0.388-0.001l0.020 0h-576c-38.12-0.072-68.994-30.99-68.994-69.12 0-12.725 3.438-24.646 9.437-34.886l-0.177 0.326 125.013-216.32h445.44l125.013 216.32c5.822 9.914 9.26 21.835 9.26 34.56s-3.438 24.646-9.437 34.886l0.177-0.326z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flask"]},"attrs":[{}],"properties":{"order":6682,"id":282,"name":"flask","prevSize":32,"code":59938},"setIdx":0,"setId":0,"iconIdx":290},{"icon":{"paths":["M938.667 480h-83.2c-17.312-165.144-148.702-294.777-313.144-309.24l-1.309-0.093v-85.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 85.333c-162.397 18.099-289.845 146.569-306.227 307.874l-0.12 1.459h-85.333c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h85.333c16.502 162.764 143.949 291.235 304.783 309.192l1.563 0.142v85.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0-83.2c166.399-14.72 298.123-145.418 314.339-310.038l0.114-1.428h83.2c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM512 792.747c-154.869-0.243-280.32-125.844-280.32-280.746 0-155.052 125.695-280.747 280.747-280.747s280.747 125.695 280.747 280.747l-0-0c-0.243 155.104-126.035 280.747-281.173 280.747l-0-0zM508.587 710.4c-109.206-0.485-197.547-89.125-197.547-198.398 0-109.573 88.827-198.4 198.4-198.4s198.399 88.826 198.4 198.398l0 0c0 0 0 0 0 0 0 109.573-88.827 198.4-198.4 198.4-0.15 0-0.3-0-0.45-0l0.023 0zM508.587 377.6c-73.859 0.484-133.547 60.47-133.547 134.397 0 74.227 60.173 134.4 134.4 134.4s134.399-60.171 134.4-134.397l-0-0c0-0 0-0 0-0.001 0-74.227-60.173-134.4-134.4-134.4-0.15 0-0.3 0-0.45 0.001l0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["focus"]},"attrs":[{}],"properties":{"order":6683,"id":281,"name":"focus","prevSize":32,"code":59939},"setIdx":0,"setId":0,"iconIdx":291},{"icon":{"paths":["M445.867 718.933l-102.4-121.6c-4.895-5.7-7.875-13.169-7.875-21.333 0-18.134 14.701-32.835 32.835-32.835 9.97 0 18.901 4.443 24.923 11.457l0.037 0.044 75.947 90.88 117.76-153.6c5.984-7.795 15.306-12.77 25.789-12.77 7.517 0 14.437 2.558 19.936 6.85l-0.072-0.054c8.203 6.131 13.456 15.818 13.456 26.731 0 7.26-2.325 13.977-6.27 19.447l0.067-0.098-142.080 185.6c-5.931 7.557-14.947 12.46-25.119 12.799l-0.054 0.001c-0.497 0.027-1.078 0.042-1.664 0.042-10.060 0-19.078-4.464-25.181-11.519l-0.036-0.042zM970.667 484.267v244.48c0 0.127 0 0.277 0 0.427 0 133.844-108.502 242.347-242.347 242.347-0 0-0-0-0-0l-432.64 0c-0 0-0 0-0 0-133.844 0-242.347-108.502-242.347-242.347 0-0.15 0-0.3 0-0.45l-0 0.023v-465.493c-0-0-0-0-0-0 0-116.257 94.123-210.53 210.323-210.773l0.023-0h92.16c40.161 0.187 75.601 20.234 97.026 50.817l0.254 0.383h213.333c155.697 2.596 281.865 125.493 289.678 279.615l0.028 0.705c0.312 1.86 0.491 4.002 0.491 6.187s-0.178 4.327-0.521 6.414l0.031-0.227c9.219 24.721 14.554 53.284 14.554 83.093 0 1.688-0.017 3.372-0.051 5.052l0.004-0.251zM666.027 170.667h-182.613c18.452 42.959 60.386 72.504 109.223 72.533l135.684 0c0.428-0.003 0.935-0.004 1.441-0.004 46.895 0 90.635 13.51 127.54 36.851l-0.981-0.58c-39.306-65.358-109.728-108.484-190.247-108.8l-0.046-0zM905.387 485.973c0.005-0.507 0.008-1.107 0.008-1.707 0-97.791-79.275-177.067-177.067-177.067-0.003 0-0.006 0-0.008 0l-135.68-0c-77.086-0.309-142.982-47.89-170.225-115.244l-0.442-1.236-15.36-38.827c-8.036-19.912-27.202-33.708-49.591-33.708-0.116 0-0.231 0-0.347 0.001l0.018-0h-93.013c-80.118 0-145.067 64.949-145.067 145.067v0 465.493c-0 97.791 79.275 177.067 177.067 177.067v0h432.64c97.791 0 177.067-79.275 177.067-177.067v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-added"]},"attrs":[{}],"properties":{"order":6684,"id":280,"name":"folder-added","prevSize":32,"code":59940},"setIdx":0,"setId":0,"iconIdx":292},{"icon":{"paths":["M957.44 380.587c-9.479-149.589-133.040-267.347-284.142-267.52l-213.351-0c-20.833-35.944-59.122-59.734-102.968-59.734-0.101 0-0.201 0-0.301 0l0.016-0h-93.013c-116.171-0-210.347 94.175-210.347 210.347v0 464.64c0 133.844 108.502 242.347 242.347 242.347v0h432.64c133.844 0 242.347-108.502 242.347-242.347v0-244.053c-2.897-39.284-7.591-74.804-14.164-109.661l0.938 5.981zM673.28 178.347c76.718 0.192 144.12 39.901 182.949 99.841l0.518 0.853c-36.281-23.217-80.519-37.038-127.978-37.12l-0.022-0h-136.107c-45.342-0.043-84.723-25.521-104.649-62.934l-0.311-0.64zM905.387 728.32c0 97.791-79.275 177.067-177.067 177.067v0h-432.64c-97.791 0-177.067-79.275-177.067-177.067v0-464.64c-0-80.118 64.949-145.067 145.067-145.067h92.16c0.135-0.001 0.295-0.002 0.455-0.002 22.473 0 41.673 14.011 49.341 33.774l0.123 0.361 15.36 38.4c27.718 68.487 93.636 115.943 170.653 116.053l0.014 0h135.68c97.791 0 177.067 79.275 177.067 177.067v0z","M658.773 640l-121.173 106.667-5.12 2.987-4.267 2.133c-3.377 1.609-7.339 2.549-11.52 2.549s-8.143-0.94-11.686-2.62l0.166 0.071-3.84-2.133-4.693-2.56-130.56-107.093c-6.608-6.031-10.737-14.68-10.737-24.294 0-6.855 2.099-13.219 5.69-18.486l-0.073 0.114c5.828-6.848 14.455-11.164 24.090-11.164 6.983 0 13.437 2.267 18.665 6.105l-0.088-0.062 78.933 63.573v-222.293c0-17.673 14.327-32 32-32s32 14.327 32 32v0 217.6l68.693-59.307c5.31-4.194 12.1-6.727 19.482-6.727 9.154 0 17.399 3.896 23.166 10.12l0.019 0.020c5.636 5.949 9.102 14.004 9.102 22.869 0 8.419-3.126 16.107-8.28 21.968l0.032-0.037z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-down"]},"attrs":[{},{}],"properties":{"order":6685,"id":279,"name":"folder-down","prevSize":32,"code":59941},"setIdx":0,"setId":0,"iconIdx":293},{"icon":{"paths":["M949.76 378.027c-8.96-160.427-128-285.867-271.787-285.867h-213.333c-25.182-26.086-60.367-42.373-99.359-42.666l-0.055-0h-85.333c-125.18 0.239-226.566 101.773-226.566 226.986 0 0.6 0.002 1.2 0.007 1.799l-0.001-0.092v435.2c0 141.385 114.615 256 256 256v0h404.48c141.385 0 256-114.615 256-256v0-228.693c-3.487-39.451-10.581-75.725-21.053-110.537l1 3.87zM677.973 153.173c80.365 2.702 148.916 50.642 181.223 119.055l0.537 1.265c-40.443-28.822-90.862-46.080-145.313-46.080-0.064 0-0.127 0-0.191 0l-127.99-0c-33.514-0.286-62.126-20.972-74.046-50.234l-0.194-0.539-9.387-23.467zM909.653 713.387c0 0.001 0 0.001 0 0.002 0 108.095-87.386 195.78-195.367 196.265l-0.046 0h-404.48c-108.027-0.485-195.413-88.17-195.413-196.265 0-0.001 0-0.001 0-0.002l0-0v-435.2c-0-0-0-0-0-0.001 0-91.515 74.066-165.73 165.523-165.973l0.023-0h85.333c0.056-0 0.122-0 0.188-0 33.779 0 62.707 20.769 74.711 50.234l0.194 0.539 14.507 36.267c21.324 52.925 72.25 89.6 131.743 89.6 0.034 0 0.068-0 0.102-0l127.995 0c107.976 0.243 195.413 87.83 195.413 195.84 0 0-0 0-0 0l-0 0z","M662.187 548.693c-5.91 7.015-14.699 11.441-24.522 11.441-7.917 0-15.163-2.875-20.749-7.638l0.045 0.037-68.267-59.733v218.027c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-221.013l-78.933 64.853c-5.133 3.87-11.618 6.198-18.647 6.198-9.645 0-18.265-4.384-23.979-11.267l-0.041-0.051c-4.334-5.514-6.951-12.556-6.951-20.209 0-10.233 4.679-19.374 12.013-25.399l0.057-0.046 128.427-107.093 4.693-2.56 3.84-2.133c3.417-1.358 7.377-2.146 11.52-2.146s8.103 0.787 11.737 2.221l-0.217-0.075 4.267 2.56 5.12 2.987 121.173 105.387c6.798 6.047 11.059 14.818 11.059 24.584 0 8.042-2.89 15.409-7.687 21.12l0.041-0.050z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-up"]},"attrs":[{},{}],"properties":{"order":6686,"id":278,"name":"folder-up","prevSize":32,"code":59942},"setIdx":0,"setId":0,"iconIdx":294},{"icon":{"paths":["M943.36 373.333c0.098-1.15 0.153-2.488 0.153-3.84s-0.056-2.69-0.165-4.014l0.012 0.174c-5.060-146.025-122.619-262.989-268.413-267.085l-0.387-0.009h-205.227c-5.67 0.112-10.95 1.682-15.512 4.348l0.152-0.082c-22.047-30.142-57.289-49.498-97.051-49.498-0.381 0-0.761 0.002-1.14 0.005l0.058-0h-92.16c-116.171 0-210.347 94.175-210.347 210.347v0 464.64c0 133.844 108.502 242.347 242.347 242.347v0h432.64c133.844 0 242.347-108.502 242.347-242.347v0-244.053c0-0.129 0-0.281 0-0.433 0-40.414-10.106-78.468-27.929-111.772l0.622 1.272zM853.333 276.907c-35.664-21.841-78.806-34.834-124.971-34.987l-0.042-0h-135.68c-0.049 0-0.107 0-0.166 0-49.841 0-92.502-30.741-110.057-74.297l-0.284-0.797v-2.987h194.987c77.173 2 143.376 47.025 175.685 111.895l0.528 1.171zM905.387 728.32c0 97.791-79.275 177.067-177.067 177.067v0h-432.64c-97.791 0-177.067-79.275-177.067-177.067v0-464.64c-0-80.118 64.949-145.067 145.067-145.067h92.16c0.135-0.001 0.295-0.002 0.455-0.002 22.473 0 41.673 14.011 49.341 33.774l0.123 0.361 15.36 38.4c27.718 68.487 93.636 115.943 170.653 116.053l0.014 0h135.68c97.791 0 177.067 79.275 177.067 177.067v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder"]},"attrs":[{}],"properties":{"order":6687,"id":277,"name":"folder","prevSize":32,"code":59943},"setIdx":0,"setId":0,"iconIdx":295},{"icon":{"paths":["M886.613 757.333h-322.56c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h322.56c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM792.32 896c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-196.267c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h196.267c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM920.32 562.347s0 0 0 2.133c0.193 0.962 0.303 2.068 0.303 3.2s-0.11 2.238-0.32 3.308l0.018-0.108c0.089 0.832 0.139 1.797 0.139 2.773s-0.050 1.942-0.149 2.892l0.010-0.119c-1.069 1.772-2.195 3.306-3.445 4.73l0.032-0.037-4.267 5.12-4.693 2.133h-3.413c-3.38 1.587-7.336 2.527-11.509 2.56l-0.011 0h-328.96c-4.184-0.033-8.14-0.973-11.693-2.633l0.173 0.073h-3.413l-4.693-2.133-4.267-5.12c-1.218-1.387-2.345-2.921-3.332-4.549l-0.081-0.144c-0.089-0.832-0.139-1.797-0.139-2.773s0.050-1.942 0.149-2.892l-0.010 0.119c-0.193-0.962-0.303-2.068-0.303-3.2s0.11-2.238 0.32-3.308l-0.018 0.108s0 0 0-2.133v-425.813c0.020-0.319 0.031-0.691 0.031-1.067s-0.011-0.748-0.033-1.118l0.002 0.051c-0.192-0.898-0.302-1.929-0.302-2.987s0.11-2.089 0.319-3.084l-0.017 0.097c-0.090-0.895-0.142-1.935-0.142-2.987s0.051-2.091 0.152-3.117l-0.010 0.13c1.069-1.772 2.195-3.306 3.445-4.73l-0.032 0.037 4.267-5.12h3.413l6.827-5.973h343.040l5.973 2.987h3.413l4.267 5.12c1.218 1.387 2.345 2.921 3.332 4.549l0.081 0.144c0.090 0.895 0.142 1.935 0.142 2.987s-0.051 2.091-0.152 3.117l0.010-0.13c0.192 0.898 0.302 1.929 0.302 2.987s-0.11 2.089-0.319 3.084l0.017-0.097c-0.020 0.319-0.031 0.691-0.031 1.067s0.011 0.748 0.033 1.118l-0.002-0.051zM597.333 231.68v237.653l89.173-117.76zM725.333 298.667l96.853-128h-193.707zM628.48 532.48h193.707l-96.853-130.133zM853.333 469.333v-237.653l-87.893 117.76zM420.267 135.68v760.32s0 0 0 0c0.098 1.086 0.154 2.35 0.154 3.627s-0.056 2.54-0.166 3.788l0.011-0.162v5.12s-2.56 3.413-3.413 5.12-2.133 3.413-3.84 4.693c-1.342 1.197-2.892 2.199-4.581 2.943l-0.112 0.044c-1.609 1.467-3.432 2.745-5.405 3.773l-0.142 0.067s0 0 0 0c-1.603 0.277-3.45 0.436-5.333 0.436s-3.73-0.159-5.527-0.463l0.194 0.027h-272.64c-1.604 0.293-3.449 0.46-5.333 0.46s-3.73-0.167-5.522-0.488l0.189 0.028c-2.277-1.103-4.239-2.383-6.017-3.876l0.044 0.036c-1.802-0.787-3.351-1.79-4.711-3.002l0.017 0.015c-1.332-1.475-2.472-3.161-3.358-4.993l-0.056-0.127c-1.218-1.387-2.345-2.921-3.332-4.549l-0.081-0.144c-0.115-0.833-0.181-1.795-0.181-2.773s0.066-1.94 0.193-2.883l-0.012 0.11c-0.116-1.024-0.183-2.211-0.183-3.413s0.066-2.389 0.195-3.557l-0.013 0.144v-760.32c-0.093-1.023-0.146-2.212-0.146-3.413s0.053-2.391 0.156-3.566l-0.011 0.152c-0.093-0.768-0.145-1.658-0.145-2.56s0.053-1.792 0.156-2.666l-0.010 0.106c0.941-1.959 2.082-3.645 3.43-5.139l-0.017 0.019 3.413-5.12 4.693-2.56c1.666-1.619 3.652-2.92 5.852-3.797l0.121-0.043c0.833-0.113 1.796-0.177 2.773-0.177s1.94 0.064 2.884 0.189l-0.111-0.012h274.347c0.768-0.093 1.658-0.145 2.56-0.145s1.792 0.053 2.666 0.156l-0.106-0.010c0.831-0.083 1.797-0.131 2.773-0.131s1.942 0.048 2.894 0.14l-0.121-0.010c2.118 0.951 3.944 2.093 5.589 3.447l-0.042-0.033c1.819 1.010 3.353 1.999 4.818 3.074l-0.125-0.088c1.349 1.521 2.614 3.193 3.744 4.959l0.096 0.161c1.119 1.469 2.247 3.14 3.278 4.874l0.135 0.246v5.12c1.256 1.954 2.403 4.203 3.324 6.565l0.090 0.262zM151.467 322.987v386.987l68.693-193.707zM256 420.693l85.333-250.027h-176.64zM164.693 864h176.64l-85.333-251.733zM356.693 709.973v-386.987l-68.693 193.28z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["frame"]},"attrs":[{}],"properties":{"order":6688,"id":276,"name":"frame","prevSize":32,"code":59944},"setIdx":0,"setId":0,"iconIdx":296},{"icon":{"paths":["M535.467 970.667h-46.933c-0.053 0-0.117 0-0.18 0-39.545 0-72.371-28.769-78.689-66.52l-0.065-0.467-5.547-34.56c-26.36-8.177-48.965-17.732-70.392-29.199l2.125 1.039-28.16 20.053c-13.012 9.704-29.407 15.536-47.165 15.536-21.901 0-41.73-8.872-56.089-23.217l0.001 0.001-33.707-33.707c-14.492-14.383-23.462-34.31-23.462-56.334 0-17.651 5.762-33.955 15.508-47.136l-0.152 0.216 20.053-28.16c-10.428-19.301-19.982-41.906-27.398-65.458l-0.762-2.808-34.56-5.547c-38.218-6.383-66.987-39.208-66.987-78.753 0-0.063 0-0.127 0-0.19l-0 0.010v-46.933c-0-0.033-0-0.073-0-0.112 0-39.697 28.991-72.623 66.955-78.76l0.458-0.061 34.56-5.547c8.177-26.36 17.732-48.965 29.199-70.392l-1.039 2.125-20.053-28.16c-9.704-13.012-15.536-29.407-15.536-47.165 0-21.901 8.872-41.73 23.217-56.089l-0.001 0.001 33.707-33.707c14.459-14.563 34.489-23.577 56.625-23.577 17.509 0 33.701 5.64 46.858 15.203l-0.23-0.159 28.16 20.48c19.301-10.428 41.906-19.982 65.458-27.398l2.808-0.762 5.547-34.56c6.193-38.186 38.928-66.989 78.39-66.989 0.191 0 0.382 0.001 0.573 0.002l-0.029-0h46.933c0.142-0.001 0.31-0.001 0.477-0.001 39.613 0 72.448 29.024 78.398 66.967l0.058 0.448 5.547 34.56c26.36 8.177 48.965 17.732 70.392 29.199l-2.125-1.039 28.16-20.053c13.025-9.623 29.399-15.403 47.123-15.403 21.89 0 41.721 8.815 56.136 23.089l-0.006-0.006 33.28 33.28c14.563 14.459 23.577 34.489 23.577 56.625 0 17.509-5.64 33.701-15.203 46.858l0.159-0.23-20.48 28.16c10.428 19.301 19.982 41.906 27.398 65.458l0.762 2.808 34.56 5.547c38.186 6.193 66.989 38.928 66.989 78.39 0 0.191-0.001 0.382-0.002 0.573l0-0.029v46.933c0 0.053 0 0.117 0 0.18 0 39.545-28.769 72.371-66.52 78.689l-0.467 0.065-34.56 5.547c-8.177 26.36-17.732 48.965-29.199 70.392l1.039-2.125 20.053 28.16c9.815 13.059 15.718 29.545 15.718 47.41 0 21.991-8.945 41.893-23.395 56.266l-0.003 0.003-33.28 33.28c-14.383 14.492-34.31 23.462-56.334 23.462-17.651 0-33.955-5.762-47.136-15.508l0.216 0.152-28.16-20.053c-19.301 10.428-41.906 19.982-65.458 27.398l-2.808 0.762-5.547 34.56c-6.382 38.219-39.208 66.989-78.754 66.989-0.213 0-0.426-0.001-0.639-0.003l0.033 0zM333.653 770.56c0.025-0 0.055-0 0.085-0 6.326 0 12.206 1.912 17.092 5.19l-0.111-0.070c25.655 15.915 55.401 28.538 87.068 36.259l2.106 0.434c12.533 3.113 22.061 13.213 24.291 25.831l0.029 0.195 8.533 55.040c1.449 7.53 7.95 13.152 15.779 13.227l0.008 0h46.933c7.836-0.074 14.338-5.697 15.77-13.125l0.016-0.102 8.533-55.040c2.259-12.814 11.787-22.914 24.097-25.98l0.223-0.047c33.772-8.156 63.518-20.779 90.495-37.454l-1.321 0.76c5.040-3.384 11.244-5.401 17.92-5.401s12.88 2.017 18.037 5.475l-0.117-0.074 44.8 32.427c2.738 2.345 6.322 3.772 10.24 3.772s7.502-1.427 10.261-3.79l-0.021 0.018 33.28-33.28c2.345-2.738 3.772-6.322 3.772-10.24s-1.427-7.502-3.79-10.261l0.018 0.021-32.427-44.8c-3.384-5.040-5.401-11.244-5.401-17.92s2.017-12.88 5.475-18.037l-0.074 0.117c15.52-25.801 27.732-55.727 35.015-87.533l0.398-2.067c3.113-12.533 13.213-22.061 25.831-24.291l0.195-0.029 55.040-8.533c7.53-1.449 13.152-7.95 13.227-15.779l0-0.008v-46.933c0.001-0.062 0.001-0.135 0.001-0.209 0-7.815-5.679-14.304-13.135-15.565l-0.093-0.013-55.040-8.533c-12.814-2.259-22.914-11.787-25.98-24.097l-0.047-0.223c-8.156-33.772-20.779-63.518-37.454-90.495l0.76 1.321c-3.384-5.040-5.401-11.244-5.401-17.92s2.017-12.88 5.475-18.037l-0.074 0.117 32.427-42.667c2.345-2.738 3.772-6.322 3.772-10.24s-1.427-7.502-3.79-10.261l0.018 0.021-33.28-33.28c-2.738-2.345-6.322-3.772-10.24-3.772s-7.502 1.427-10.261 3.79l0.021-0.018-44.8 32.427c-5.040 3.384-11.244 5.401-17.92 5.401s-12.88-2.017-18.037-5.475l0.117 0.074c-25.272-16.087-54.551-28.969-85.755-37.075l-2.138-0.472c-12.533-3.113-22.061-13.213-24.291-25.831l-0.029-0.195-8.533-55.040c-1.449-7.53-7.95-13.152-15.779-13.227l-0.008-0h-46.933c-7.836 0.074-14.338 5.697-15.77 13.125l-0.016 0.102-8.533 55.040c-2.259 12.814-11.787 22.914-24.097 25.98l-0.223 0.047c-33.772 8.156-63.518 20.779-90.495 37.454l1.321-0.76c-5.040 3.384-11.244 5.401-17.92 5.401s-12.88-2.017-18.037-5.475l0.117 0.074-44.8-36.693c-2.738-2.345-6.322-3.772-10.24-3.772s-7.502 1.427-10.261 3.79l0.021-0.018-33.28 33.28c-2.345 2.738-3.772 6.322-3.772 10.24s1.427 7.502 3.79 10.261l-0.018-0.021 32.427 42.667c3.384 5.040 5.401 11.244 5.401 17.92s-2.017 12.88-5.475 18.037l0.074-0.117c-15.987 27.175-28.265 58.754-35.078 92.318l-0.335 1.976c-3.113 12.533-13.213 22.061-25.831 24.291l-0.195 0.029-55.040 8.533c-7.549 1.274-13.228 7.763-13.228 15.578 0 0.073 0.001 0.147 0.001 0.22l-0-0.011v46.933c0.074 7.836 5.697 14.338 13.125 15.77l0.102 0.016 55.040 8.533c12.814 2.259 22.914 11.787 25.98 24.097l0.047 0.223c8.156 33.772 20.779 63.518 37.454 90.495l-0.76-1.321c3.384 5.040 5.401 11.244 5.401 17.92s-2.017 12.88-5.475 18.037l0.074-0.117-36.693 44.8c-2.345 2.738-3.772 6.322-3.772 10.24s1.427 7.502 3.79 10.261l-0.018-0.021 33.28 33.28c2.738 2.345 6.322 3.772 10.24 3.772s7.502-1.427 10.261-3.79l-0.021 0.018 42.667-32.427c4.966-3.326 11.077-5.308 17.651-5.308 2.209 0 4.366 0.224 6.449 0.65l-0.206-0.035zM512 693.333c-100.148 0-181.333-81.186-181.333-181.333s81.186-181.333 181.333-181.333c100.148 0 181.333 81.186 181.333 181.333v0c-0.242 100.050-81.283 181.091-181.31 181.333l-0.023 0zM512 394.667c-64.801 0-117.333 52.532-117.333 117.333s52.532 117.333 117.333 117.333c64.801 0 117.333-52.532 117.333-117.333v0c0-64.801-52.532-117.333-117.333-117.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gear"]},"attrs":[{}],"properties":{"order":6689,"id":275,"name":"gear","prevSize":32,"code":59945},"setIdx":0,"setId":0,"iconIdx":297},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM482.56 770.56h-2.133c-0.285 0.003-0.622 0.005-0.959 0.005-45.024 0-83.057-29.931-95.288-70.981l-0.18-0.704-80.213-268.373c-2.513-8.52-3.958-18.308-3.958-28.434 0-57.497 46.61-104.107 104.107-104.107 10.851 0 21.314 1.66 31.149 4.74l-0.737-0.199 263.253 81.493c40.818 13.022 69.946 50.41 70.4 94.667l0 0.053c0.026 0.853 0.041 1.856 0.041 2.863 0 43.306-27.691 80.145-66.332 93.776l-0.696 0.214-74.667 26.88c-10.075 3.691-17.837 11.592-21.26 21.514l-0.074 0.246-27.307 78.507c-13.462 39.748-50.43 67.847-93.961 67.847-0.417 0-0.833-0.003-1.249-0.008l0.063 0.001zM402.773 360.107c-22.016 0.177-39.794 18.065-39.794 40.105 0 4.266 0.666 8.376 1.899 12.232l-0.078-0.284 81.92 267.947c4.427 15.387 18.378 26.453 34.914 26.453 0.026 0 0.051-0 0.077-0l-0.004 0c0.613 0.038 1.33 0.060 2.053 0.060 15.771 0 29.134-10.309 33.718-24.556l0.070-0.251 26.88-78.507c10.153-28.41 31.939-50.476 59.468-60.786l0.692-0.227 75.093-26.88c14.268-4.789 24.364-18.038 24.364-33.646 0-0.622-0.016-1.24-0.048-1.854l0.004 0.086c0.002-0.153 0.004-0.334 0.004-0.515 0-16.3-10.882-30.059-25.777-34.408l-0.253-0.063-262.827-82.773c-3.681-1.302-7.928-2.079-12.348-2.133l-0.025-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["general-mouse"]},"attrs":[{}],"properties":{"order":6690,"id":274,"name":"general-mouse","prevSize":32,"code":59946},"setIdx":0,"setId":0,"iconIdx":298},{"icon":{"paths":["M512 954.88v0c-28.071-0.047-53.298-12.188-70.753-31.491l-0.073-0.083-207.36-232.107c-59.556-65.887-96-153.651-96-249.928 0-206.186 167.147-373.333 373.333-373.333s373.333 167.147 373.333 373.333c0 96.277-36.444 184.042-96.289 250.252l0.289-0.324-207.36 232.107c-17.153 18.979-41.678 31.017-69.022 31.572l-0.098 0.002zM512 133.12c-5.489-0.4-11.891-0.628-18.347-0.628s-12.858 0.228-19.2 0.676l0.853-0.048c-154.095 19.19-272.161 149.353-272.161 307.092 0 78.747 29.425 150.621 77.88 205.228l-0.279-0.32 207.787 232.107c5.504 6.292 13.549 10.245 22.516 10.245 0.184 0 0.368-0.002 0.551-0.005l-0.028 0c0.156 0.003 0.339 0.005 0.524 0.005 8.968 0 17.012-3.952 22.487-10.21l0.030-0.035 207.787-232.107c47.305-54.104 76.155-125.393 76.155-203.421 0-90.283-38.625-171.545-100.251-228.163l-0.224-0.203c-54.137-49.607-126.537-80.055-206.048-80.213l-0.032-0zM640 602.453h-117.333v-160c0-11.947-21.333-11.947-21.333 0v160h-117.333c-41.14-0.241-74.426-33.526-74.667-74.644l-0-0.023v-117.333c-0-0.127-0.001-0.277-0.001-0.427 0-45.338 21.626-85.626 55.125-111.11l0.343-0.25 101.547-76.373c12.594-9.395 28.464-15.042 45.653-15.042s33.059 5.647 45.857 15.187l-0.203-0.145 101.547 76.373c33.731 25.65 55.324 65.755 55.467 110.91l0 0.023v117.333c0.001 0.127 0.001 0.277 0.001 0.428 0 41.323-33.378 74.851-74.645 75.092l-0.023 0zM586.667 538.453h53.333c5.891 0 10.667-4.776 10.667-10.667v0-117.333c0-24.344-11.65-45.967-29.679-59.597l-0.188-0.136-101.547-76.373c-2.028-1.41-4.542-2.253-7.253-2.253s-5.226 0.843-7.295 2.281l0.042-0.028-101.547 76.373c-18.217 13.767-29.867 35.39-29.867 59.733v0 117.333c0 5.891 4.776 10.667 10.667 10.667v0h53.333v-96c0-41.237 33.429-74.667 74.667-74.667s74.667 33.429 74.667 74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["geolocation-home"]},"attrs":[{}],"properties":{"order":6691,"id":273,"name":"geolocation-home","prevSize":32,"code":59947},"setIdx":0,"setId":0,"iconIdx":299},{"icon":{"paths":["M776.107 154.027c-69.395-62.636-161.788-100.958-263.132-100.958-16.584 0-32.928 1.026-48.973 3.019l1.918-0.194c-198.271 24.017-350.406 191.281-350.406 394.078 0 101.682 38.246 194.43 101.138 264.645l-0.332-0.377 185.6 206.933c27.089 30.413 66.358 49.475 110.080 49.475s82.991-19.062 109.951-49.328l0.129-0.147 185.6-206.933c62.482-69.875 100.674-162.619 100.674-264.283 0-117.39-50.921-222.886-131.88-295.606l-0.367-0.325zM512 906.667c-24.869-0.19-47.179-10.988-62.655-28.087l-0.065-0.073-185.173-206.933c-52.721-58.581-84.968-136.501-84.968-221.952 0-170.055 127.711-310.281 292.454-330.001l1.58-0.154c13.227 0 26.453 0 39.68 0 85.052 0.166 162.511 32.542 220.856 85.575l-0.269-0.241c68.13 61.196 110.789 149.579 110.789 247.926 0 85.17-31.994 162.867-84.618 221.729l0.282-0.321-185.173 206.933c-15.501 15.815-37.085 25.618-60.958 25.618-0.62 0-1.238-0.007-1.854-0.020l0.092 0.002zM512 281.173c-94.251 0.008-170.653 76.415-170.653 170.667 0 94.257 76.41 170.667 170.667 170.667s170.667-76.41 170.667-170.667c0-0.75-0.005-1.499-0.014-2.247l0.001 0.113c-1.204-93.335-77.147-168.533-170.653-168.533-0.005 0-0.009 0-0.014 0l0.001-0zM512 554.667c-0.127 0.001-0.277 0.001-0.427 0.001-57.968 0-104.96-46.992-104.96-104.96s46.992-104.96 104.96-104.96c57.967 0 104.959 46.992 104.96 104.959l0 0c0 0 0 0.001 0 0.001 0 57.818-46.749 104.717-104.51 104.959l-0.023 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["geolocation"]},"attrs":[{}],"properties":{"order":6692,"id":272,"name":"geolocation","prevSize":32,"code":59948},"setIdx":0,"setId":0,"iconIdx":300},{"icon":{"paths":["M512 523.093c-73.756 0-133.547-59.791-133.547-133.547s59.791-133.547 133.547-133.547c73.756 0 133.547 59.791 133.547 133.547v-0c0 73.756-59.791 133.547-133.547 133.547v-0zM512 320c-38.41-0-69.547 31.137-69.547 69.547s31.137 69.547 69.547 69.547c38.41 0 69.547-31.137 69.547-69.547v0c-0.24-38.313-31.234-69.306-69.524-69.547l-0.023-0zM696.32 628.053c8.31-5.864 13.671-15.426 13.671-26.24 0-17.683-14.335-32.018-32.018-32.018-6.869 0-13.233 2.163-18.447 5.845l0.101-0.067c-42.041 28.065-93.735 44.786-149.333 44.786s-107.292-16.721-150.326-45.408l0.992 0.622c-4.859-3.131-10.794-4.992-17.163-4.992-10.377 0-19.6 4.939-25.447 12.595l-0.057 0.077c-3.537 5.118-5.649 11.457-5.649 18.288 0 10.913 5.391 20.568 13.656 26.445l0.1 0.067c55.070 35.211 122.006 56.527 193.848 57.597l0.286 0.003c66.040-1.031 126.878-22.458 176.719-58.236l-0.932 0.636zM371.627 964.693c-0.187 0.002-0.408 0.003-0.629 0.003-16.89 0-32.348-6.134-44.267-16.296l0.096 0.079-93.867-79.787c-0.952-0.67-2.136-1.071-3.413-1.071s-2.461 0.401-3.432 1.084l0.019-0.013-59.307 49.067c-11.801 10.191-27.289 16.399-44.228 16.399-10.597 0-20.627-2.43-29.562-6.763l0.404 0.177c-23.863-11.113-40.107-34.891-40.107-62.463 0-0.090 0-0.181 0.001-0.271l-0 0.014v-347.307c-0-253.315 205.352-458.667 458.667-458.667s458.667 205.352 458.667 458.667v0 347.307c0 0.076 0 0.167 0 0.257 0 27.572-16.244 51.35-39.685 62.286l-0.422 0.177c-8.532 4.156-18.561 6.586-29.159 6.586-16.939 0-32.427-6.208-44.315-16.473l0.087 0.073-59.307-49.493c-0.952-0.67-2.136-1.071-3.413-1.071s-2.461 0.401-3.432 1.084l0.019-0.013-91.733 78.080c-12.016 10.358-27.778 16.666-45.013 16.666s-32.997-6.308-45.103-16.742l0.090 0.076-91.733-78.080c-0.902-0.809-2.1-1.304-3.413-1.304s-2.512 0.495-3.418 1.308l0.005-0.004-94.293 80.213c-11.933 10.084-27.491 16.214-44.481 16.214-0.112 0-0.224-0-0.337-0.001l0.017 0zM229.547 802.987c16.397 0.541 31.247 6.748 42.753 16.713l-0.086-0.073 93.867 79.787c0.902 0.809 2.1 1.304 3.413 1.304s2.512-0.495 3.418-1.308l-0.005 0.004 96.427-79.787c11.983-10.248 27.663-16.484 44.8-16.484s32.817 6.236 44.895 16.563l-0.095-0.079 91.733 78.080c0.902 0.809 2.1 1.304 3.413 1.304s2.512-0.495 3.418-1.308l-0.005 0.004 92.16-78.507c11.95-10.138 27.548-16.303 44.587-16.303s32.637 6.165 44.687 16.386l-0.1-0.083 59.307 49.493c0.741 0.637 1.712 1.024 2.773 1.024s2.032-0.388 2.779-1.029l-0.006 0.005c1.769-0.699 2.997-2.394 2.997-4.376 0-0.112-0.004-0.222-0.012-0.332l0.001 0.015v-346.453c0-217.968-176.698-394.667-394.667-394.667s-394.667 176.698-394.667 394.667v0 347.307c-0.007 0.095-0.011 0.206-0.011 0.317 0 1.982 1.229 3.677 2.966 4.365l0.032 0.011c0.784 0.512 1.743 0.816 2.773 0.816s1.99-0.304 2.793-0.828l-0.020 0.012 59.307-50.347c11.922-10.031 27.427-16.147 44.359-16.213l0.014-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ghost"]},"attrs":[{}],"properties":{"order":6693,"id":271,"name":"ghost","prevSize":32,"code":59949},"setIdx":0,"setId":0,"iconIdx":301},{"icon":{"paths":["M846.507 213.333h-48.213c3.24-8.005 5.121-17.29 5.121-27.013 0-0.103-0-0.206-0.001-0.309l0 0.016c0.003-0.242 0.005-0.528 0.005-0.814 0-19.416-8.006-36.963-20.896-49.518l-0.015-0.015-61.013-61.44c-12.891-12.872-30.689-20.833-50.347-20.833s-37.456 7.96-50.348 20.833l0.001-0.001-108.8 108.8-108.8-108.8c-13.068-12.477-30.811-20.155-50.347-20.155s-37.279 7.678-50.375 20.182l0.028-0.027-61.013 61.44c-12.906 12.57-20.911 30.117-20.911 49.533 0 0.286 0.002 0.572 0.005 0.857l-0-0.043c-0 0.087-0.001 0.19-0.001 0.293 0 9.724 1.88 19.008 5.297 27.51l-0.176-0.497h-48.213c-39.116 0-70.827 31.71-70.827 70.827v0 71.253c0.057 24.675 12.647 46.397 31.74 59.144l0.26 0.163v401.067c-0 0-0 0-0 0.001 0 85.388 69.099 154.637 154.43 154.879l0.023 0h437.76c85.354-0.243 154.453-69.492 154.453-154.879 0-0-0-0-0-0.001l-0-0v-401.067c19.353-12.91 31.943-34.632 32-59.298l0-0.009v-71.253c0-39.116-31.71-70.827-70.827-70.827h-0zM666.027 119.467c1.352-1.214 3.15-1.956 5.12-1.956s3.768 0.742 5.127 1.962l-0.007-0.006 61.013 61.44c1.214 1.352 1.956 3.15 1.956 5.12s-0.742 3.768-1.962 5.127l0.006-0.007-21.76 22.187h-142.933zM286.72 191.147c-1.214-1.352-1.956-3.15-1.956-5.12s0.742-3.768 1.962-5.127l-0.006 0.007 61.013-61.44c1.428-1.005 3.204-1.607 5.12-1.607s3.692 0.601 5.148 1.626l-0.028-0.019 93.44 93.867h-142.933zM170.667 284.16c0-3.77 3.056-6.827 6.827-6.827v0h669.013c3.77 0 6.827 3.056 6.827 6.827h-0v71.253c0 0.004 0 0.008 0 0.013 0 3.856-3.009 7.009-6.806 7.24l-0.020 0.001h-669.013c-3.818-0.232-6.827-3.385-6.827-7.241 0-0.004 0-0.009 0-0.013l-0 0.001zM415.573 426.667h192.853v217.173c0.003 0.084 0.004 0.184 0.004 0.284 0 3.943-2.228 7.365-5.494 9.076l-0.056 0.027c-1.49 1.040-3.339 1.662-5.333 1.662s-3.843-0.622-5.364-1.683l0.031 0.020-32.427-21.76c-13.352-9.077-29.831-14.492-47.573-14.492s-34.221 5.415-47.872 14.683l0.298-0.191-32.853 21.76c-1.49 1.040-3.339 1.662-5.333 1.662s-3.843-0.622-5.364-1.683l0.031 0.020c-3.322-1.738-5.551-5.16-5.551-9.103 0-0.1 0.001-0.199 0.004-0.298l-0 0.015zM730.88 906.667h-437.76c-50.008-0.242-90.453-40.837-90.453-90.879 0-0 0-0.001 0-0.001l0 0v-389.12h148.907v217.173c-0 0-0 0.001-0 0.001 0 41.237 33.429 74.667 74.667 74.667 0.15 0 0.3-0 0.45-0.001l-0.023 0c0.329 0.005 0.717 0.008 1.105 0.008 15.463 0 29.846-4.621 41.844-12.557l-0.283 0.176 32.427-21.76c3.515-2.214 7.791-3.527 12.373-3.527s8.858 1.313 12.471 3.584l-0.098-0.057 32.427 21.76c11.54 7.67 25.716 12.238 40.96 12.238 41.19 0 74.589-33.352 74.667-74.524l0-0.007v-217.173h148.907v389.12c0 0.005 0 0.010 0 0.016 0 50.192-40.688 90.88-90.88 90.88-0.6 0-1.199-0.006-1.796-0.017l0.089 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gift"]},"attrs":[{}],"properties":{"order":6694,"id":270,"name":"gift","prevSize":32,"code":59950},"setIdx":0,"setId":0,"iconIdx":302},{"icon":{"paths":["M512 66.56c-245.451 0.738-444.142 199.885-444.142 445.438 0 205.344 138.948 378.236 327.952 429.783l3.123 0.726c33.976 9.478 72.993 14.926 113.281 14.926 52.864 0 103.538-9.38 150.448-26.566l-3.036 0.973c175.378-62.366 298.688-226.917 298.688-420.269 0-245.774-199.239-445.013-445.013-445.013-0.457 0-0.915 0.001-1.372 0.002l0.071-0zM631.040 896c-35.451 11.474-76.239 18.090-118.573 18.090-30.714 0-60.614-3.482-89.328-10.073l2.674 0.517v-81.493c0-0.021 0-0.045 0-0.070 0-10.946-8.412-19.927-19.123-20.832l-0.077-0.005-68.267-7.253c-6.051-0.874-11.514-2.67-16.501-5.255l0.287 0.135c-10.108-4.57-18.2-12.112-23.337-21.502l-0.129-0.258c-2.987-7.253-5.973-13.227-9.387-20.053 4.693 5.547 9.387 11.947 14.507 19.2 6.401 7.517 15.273 12.76 25.348 14.471l0.252 0.035c1.987 0.304 4.28 0.477 6.613 0.477s4.626-0.173 6.866-0.508l-0.253 0.031 69.973-7.253c8.357-0.772 15.233-6.36 17.875-13.933l0.045-0.147c6.567-16.991 16.777-31.315 29.735-42.555l0.132-0.112c5.889-5.259 9.579-12.875 9.579-21.352 0-2.727-0.382-5.365-1.095-7.863l0.049 0.202c-3.191-10.848-12.178-18.98-23.292-20.882l-0.174-0.025c-26.293-3.939-49.988-11.096-72.077-21.165l1.677 0.685c-54.002-22.889-91.195-75.451-91.195-136.7 0-3.394 0.114-6.762 0.339-10.099l-0.024 0.452c0.353-37.204 15.257-70.86 39.286-95.607l-0.033 0.034c3.651-3.697 5.907-8.78 5.907-14.389 0-2.491-0.445-4.878-1.259-7.086l0.046 0.142c-5.727-18.622-9.025-40.027-9.025-62.204 0-11.93 0.954-23.638 2.791-35.050l-0.166 1.254c32.376 6.001 60.501 21.174 82.368 42.688l-0.021-0.021c3.59 6.645 10.504 11.084 18.456 11.084 1.472 0 2.908-0.152 4.294-0.441l-0.136 0.024c29.711-9.742 63.906-15.36 99.413-15.36s69.701 5.618 101.743 16.014l-2.33-0.654c1.969 0.677 4.238 1.068 6.598 1.068 6.415 0 12.155-2.889 15.99-7.437l0.026-0.031c21.561-19.71 47.963-34.496 77.199-42.367l1.307-0.3c2.895 12.522 4.555 26.9 4.555 41.667 0 16.722-2.128 32.947-6.129 48.419l0.294-1.339c-0.334 1.443-0.526 3.1-0.526 4.803 0 5.912 2.312 11.284 6.082 15.261l-0.009-0.010c25.501 24.597 41.648 58.745 42.663 96.667l0.004 0.187c0 88.32-57.6 147.627-162.133 166.4-11.26 2.046-20.146 10.361-22.995 21.131l-0.045 0.202c-0.684 2.294-1.078 4.93-1.078 7.659 0 8.57 3.887 16.231 9.994 21.319l0.045 0.036c21.744 18.882 35.414 46.57 35.414 77.45 0 0.071-0 0.143-0 0.214l0-0.011zM673.707 879.787v-87.467c-0.378-34.894-13.053-66.755-33.887-91.527l0.181 0.22c110.507-27.733 173.227-100.693 173.227-203.093-0.244-45.326-17.358-86.609-45.377-117.931l0.151 0.171c3.668-15.513 5.771-33.324 5.771-51.627s-2.103-36.114-6.080-53.206l0.31 1.579c-4.597-17.458-20.241-30.123-38.844-30.123-3.325 0-6.555 0.405-9.645 1.167l0.275-0.058c-36.382 7.636-68.131 23.956-94.103 46.71l0.236-0.203c-29.804-8.528-64.036-13.432-99.413-13.432s-69.609 4.904-102.053 14.069l2.639-0.637c-26.227-23.003-58.789-39.411-94.733-46.304l-1.267-0.202c-2.848-0.731-6.118-1.15-9.486-1.15-18.226 0-33.582 12.288-38.235 29.031l-0.066 0.279c-3.808 15.683-5.992 33.688-5.992 52.203 0 19.796 2.497 39.008 7.192 57.34l-0.347-1.596c-25.905 30-41.929 69.167-42.665 112.059l-0.002 0.154c-0.183 3.13-0.288 6.791-0.288 10.476 0 78.793 47.781 146.426 115.949 175.505l1.246 0.472c16.086 7.372 35.024 13.823 54.69 18.373l2.057 0.401c-6.866 8.787-12.99 18.738-17.947 29.342l-0.399 0.951-51.2 5.12h-8.107c-7.249-10.14-14.67-19.051-22.688-27.384l0.074 0.078c-16.736-16.515-35.825-30.707-56.705-42.012l-1.321-0.654c-4.505-2.228-9.808-3.532-15.416-3.532-19.558 0-35.413 15.855-35.413 35.413 0 10.565 4.627 20.050 11.965 26.539l0.038 0.033c12.269 10.597 22.848 22.668 31.6 36.042l0.4 0.651c4.034 6.112 7.754 13.13 10.79 20.502l0.303 0.832c9.318 18.612 24.055 33.348 42.126 42.421l0.54 0.246c8.913 4.649 19.289 7.96 30.267 9.34l0.453 0.046 49.493 6.827v50.773c-160.664-55.379-274.024-205.272-274.024-381.641 0-222.446 180.328-402.773 402.773-402.773s402.773 180.328 402.773 402.773c0 163.9-97.898 304.935-238.409 367.82l-2.554 1.021z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["github"]},"attrs":[{}],"properties":{"order":6695,"id":269,"name":"github","prevSize":32,"code":59951},"setIdx":0,"setId":0,"iconIdx":303},{"icon":{"paths":["M882.773 738.133l-178.773-420.267c56.292-17.044 96.569-68.461 96.569-129.285 0-74.063-59.717-134.178-133.628-134.821l-0.061-0h-309.333c-0.942-0.024-2.052-0.037-3.165-0.037-74.227 0-134.4 60.173-134.4 134.4 0 60.13 39.488 111.038 93.946 128.205l0.952 0.259-175.787 426.667c-8.049 18.777-12.729 40.629-12.729 63.574 0 91.193 73.927 165.12 165.12 165.12 0.125 0 0.25-0 0.375-0l-0.019 0h436.48c21.709-0.353 42.335-4.549 61.371-11.933l-1.211 0.413c13.558-5.637 25.208-12.072 36.033-19.609l-0.62 0.409c16.764-11.756 30.91-25.902 42.304-42.122l0.363-0.545c18.608-26.447 29.739-59.324 29.739-94.801 0-23.722-4.977-46.281-13.943-66.691l0.417 1.065zM637.013 323.84l72.96 170.667c-12.205-1.587-26.322-2.492-40.651-2.492-53.064 0-103.227 12.419-147.741 34.509l1.938-0.87c-37.427 22.651-82.646 36.054-130.996 36.054-36.057 0-70.372-7.454-101.49-20.906l1.659 0.638 91.307-217.6zM286.293 188.587c-0-0-0-0.001-0-0.001 0-39.116 31.71-70.827 70.827-70.827 0.15 0 0.3 0 0.45 0.001l-0.023-0h309.333c36.909 2.949 65.744 33.627 65.744 71.040s-28.835 68.091-65.493 71.024l-0.25 0.016h-309.333c-39.352 0-71.253-31.901-71.253-71.253v0zM293.547 906.24c-1.026 0.038-2.232 0.059-3.443 0.059-33.762 0-63.61-16.758-81.679-42.41l-0.211-0.316c-4.249-6.485-8.119-13.931-11.223-21.765l-0.297-0.849c-2.724-6.98-4.686-15.079-5.516-23.511l-0.031-0.383c-0.173-2.193-0.271-4.747-0.271-7.325 0-15.15 3.404-29.505 9.488-42.343l-0.256 0.601 67.84-164.693c36.4 15.922 78.817 25.187 123.399 25.187 60.371 0 116.773-16.99 164.687-46.448l-1.366 0.781c35.584-16.808 77.299-26.62 121.307-26.62 23.103 0 45.574 2.704 67.115 7.814l-1.968-0.394 85.333 199.253c4.95 11.601 7.827 25.097 7.827 39.265 0 56.006-44.961 101.51-100.758 102.387l-0.083 0.001h-436.48z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["glass"]},"attrs":[{}],"properties":{"order":6696,"id":268,"name":"glass","prevSize":32,"code":59952},"setIdx":0,"setId":0,"iconIdx":304},{"icon":{"paths":["M928 443.733l-761.173-382.293c-10.068-5.148-21.962-8.165-34.56-8.165-42.651 0-77.227 34.576-77.227 77.227 0 0.020 0 0.041 0 0.061l-0-0.003v762.88c0 42.651 34.576 77.227 77.227 77.227v0c0.034 0 0.075 0 0.116 0 12.553 0 24.406-2.995 34.884-8.309l-0.44 0.203 761.173-380.587c25.564-12.945 42.783-39.022 42.783-69.12s-17.219-56.175-42.343-68.918l-0.44-0.202zM458.667 742.4l-124.16 64.427 249.173-249.173 82.773 82.347zM583.253 469.333l-249.173-252.16 332.373 166.827zM125.013 904.533c-3.614-2.304-5.976-6.291-5.976-10.829 0-0.093 0.001-0.185 0.003-0.278l-0 0.014v-762.88c-0.002-0.079-0.003-0.171-0.003-0.264 0-4.539 2.362-8.526 5.924-10.799l0.052-0.031c1.090-0.261 2.341-0.411 3.627-0.411s2.537 0.15 3.737 0.433l-0.11-0.022h5.973l15.787 8.533 384 384-384 384-15.787 8.107c-1.999 1.212-4.415 1.93-6.998 1.93-2.274 0-4.418-0.556-6.304-1.539l0.076 0.036zM899.413 524.373l-170.667 85.333-99.84-97.707 96.427-97.707 170.667 85.333c4.324 1.992 7.272 6.288 7.272 11.273 0 0.237-0.007 0.473-0.020 0.706l0.001-0.032c0.343 1.063 0.541 2.285 0.541 3.554 0 3.717-1.698 7.038-4.36 9.229l-0.021 0.016z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["google-play"]},"attrs":[{}],"properties":{"order":6697,"id":267,"name":"google-play","prevSize":32,"code":59953},"setIdx":0,"setId":0,"iconIdx":305},{"icon":{"paths":["M512 970.667c-253.472-0.104-458.911-205.607-458.911-459.093 0-24.699 1.95-48.942 5.706-72.584l-0.342 2.61c34.668-221.942 224.467-389.754 453.46-389.754 94.266 0 181.89 28.437 254.761 77.201l-1.662-1.047c20.666 13.925 34.962 35.948 38.351 61.418l0.049 0.448c0.421 3.302 0.662 7.121 0.662 10.997 0 23.716-9 45.33-23.77 61.613l0.068-0.077-38.827 42.667c-16.347 17.7-39.673 28.747-65.578 28.747-17.963 0-34.686-5.312-48.684-14.45l0.342 0.21c-33.093-20.243-73.145-32.23-115.997-32.23-25.196 0-49.425 4.144-72.041 11.788l1.585-0.465c-77.568 26.12-135.061 91.998-148.725 172.779l-0.182 1.301c-2.070 11.404-3.254 24.529-3.254 37.931 0 123.005 99.715 222.72 222.72 222.72 79.538 0 149.338-41.693 188.737-104.417l0.543-0.927h-122.453c-49.72 0-90.027-40.306-90.027-90.027v0-55.467c0-49.72 40.306-90.027 90.027-90.027v0h302.080c49.72 0 90.027 40.306 90.027 90.027v0 17.067c0 219.733-177.493 432.213-387.84 463.787v0c-20.962 4.045-45.378 6.659-70.297 7.244l-0.53 0.010zM512 117.333c-36.463 0.185-71.72 4.999-105.322 13.883l2.922-0.657c-168.215 47.842-289.34 200.114-289.34 380.677 0 218.204 176.889 395.093 395.093 395.093 20.649 0 40.927-1.584 60.721-4.637l-2.208 0.28c180.48-27.307 333.227-210.773 333.227-400.64v-17.067c0-14.374-11.653-26.027-26.027-26.027v0h-302.507c-14.374 0-26.027 11.653-26.027 26.027v0 55.467c0 14.374 11.653 26.027 26.027 26.027v0h173.653c10.731 0.066 20.201 5.405 25.959 13.553l0.067 0.1c3.576 5.182 5.711 11.597 5.711 18.511 0 3.917-0.686 7.675-1.943 11.158l0.072-0.229c-40.724 112.269-146.455 191.028-270.582 191.028-158.587 0-287.147-128.56-287.147-287.147s128.56-287.147 287.147-287.147c55.248 0 106.851 15.603 150.645 42.642l-1.236-0.71c4.145 2.914 9.297 4.657 14.856 4.657 7.197 0 13.712-2.921 18.423-7.643l0-0 38.827-42.667c4.341-4.986 6.988-11.547 6.988-18.727 0-1.068-0.059-2.123-0.173-3.161l0.011 0.128c-1.092-6.896-4.851-12.754-10.166-16.589l-0.074-0.051c-61.214-41.12-136.492-65.765-217.505-66.133l-0.095-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["google"]},"attrs":[{}],"properties":{"order":6698,"id":266,"name":"google","prevSize":32,"code":59954},"setIdx":0,"setId":0,"iconIdx":306},{"icon":{"paths":["M675.84 113.92c130.1 1.202 235.103 106.947 235.103 237.217 0 0.753-0.004 1.506-0.011 2.258l0.001-0.115v317.44c0.006 0.637 0.010 1.389 0.010 2.143 0 130.27-105.003 236.015-234.989 237.216l-0.114 0.001h-327.68c-130.1-1.202-235.103-106.947-235.103-237.217 0-0.753 0.004-1.506 0.011-2.258l-0.001 0.115v-317.44c-0.006-0.637-0.010-1.389-0.010-2.143 0-130.27 105.003-236.015 234.989-237.216l0.114-0.001h327.68zM640 708.267c16.312-0.239 29.443-13.518 29.443-29.864 0-0.151-0.001-0.302-0.003-0.452l0 0.023v-355.84c0.136-1.070 0.213-2.308 0.213-3.563 0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867c0 1.256 0.078 2.494 0.228 3.709l-0.015-0.145v355.84c-0.002 0.127-0.003 0.277-0.003 0.427 0 16.495 13.372 29.867 29.867 29.867 0.001 0 0.002-0 0.003-0l-0 0zM416 708.267c0.001 0 0.002 0 0.003 0 16.495 0 29.867-13.372 29.867-29.867 0-0.15-0.001-0.3-0.003-0.449l0 0.023v-144.64c-0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867v144.64c-0 0.001-0 0.002-0 0.003 0 16.581 13.321 30.050 29.844 30.29l0.023 0zM675.84 53.333h-327.68c-163.289 2.167-294.827 135.043-294.827 298.642 0 0.009 0 0.018 0 0.026l-0-0.002v317.44c-0 0.007-0 0.016-0 0.025 0 163.599 131.538 296.476 294.623 298.64l0.204 0.002h327.68c163.289-2.167 294.827-135.043 294.827-298.642 0-0.009-0-0.018-0-0.026l0 0.002v-316.16c0-0.007 0-0.016 0-0.025 0-163.599-131.538-296.476-294.623-298.64l-0.204-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph-2"]},"attrs":[{}],"properties":{"order":6699,"id":265,"name":"graph-2","prevSize":32,"code":59955},"setIdx":0,"setId":0,"iconIdx":307},{"icon":{"paths":["M675.84 113.92c130.1 1.202 235.103 106.947 235.103 237.217 0 0.753-0.004 1.506-0.011 2.258l0.001-0.115v317.44c0.001 0.19 0.001 0.415 0.001 0.64 0 41.45-10.424 80.465-28.795 114.567l0.634-1.287c-40.147 74.812-117.629 124.939-206.864 125.44l-0.069 0h-327.68c-89.304-0.501-166.786-50.628-206.316-124.184l-0.617-1.256c-17.736-32.815-28.161-71.83-28.161-113.28 0-0.225 0-0.45 0.001-0.675l-0 0.035v-317.44c-0.006-0.637-0.010-1.389-0.010-2.143 0-130.27 105.003-236.015 234.989-237.216l0.114-0.001h327.68zM675.84 53.333h-327.68c-163.289 2.167-294.827 135.043-294.827 298.642 0 0.009 0 0.018 0 0.026l-0-0.002v317.44c0.027 52.286 13.13 101.507 36.217 144.575l-0.804-1.642c50.249 93.816 147.452 156.635 259.361 157.013l0.052 0h327.68c111.962-0.379 209.164-63.197 258.642-155.439l0.771-1.574c22.283-41.426 35.386-90.646 35.413-142.925l0-0.009v-316.16c0-0.007 0-0.016 0-0.025 0-163.599-131.538-296.476-294.623-298.64l-0.204-0.002zM372.907 725.333c30.081-1.12 55.25-20.95 64.284-48.143l0.143-0.497 81.493-226.987c1.518-4.976 6.068-8.534 11.449-8.534 0.025 0 0.050 0 0.075 0l-0.004-0c0.19-0.010 0.412-0.016 0.635-0.016 5.223 0 9.716 3.129 11.706 7.614l0.032 0.082 34.987 80.213c24.386 54.885 78.088 92.635 140.697 93.439l0.103 0.001h134.827c16.731 0 30.293-13.563 30.293-30.293s-13.563-30.293-30.293-30.293v0h-134.4c-38.044-1.201-70.423-24.262-85.089-56.989l-0.245-0.611-36.267-80.64c-11.176-26.236-36.743-44.294-66.527-44.294-31.549 0-58.365 20.261-68.147 48.481l-0.153 0.506-81.067 226.987c-1.518 4.976-6.068 8.534-11.449 8.534-0.025 0-0.050-0-0.075-0l0.004 0c-0.489 0.074-1.053 0.116-1.627 0.116-4.869 0-9.033-3.021-10.719-7.291l-0.027-0.078-12.8-26.453c-25.374-52.429-78.042-88.013-139.053-88.32l-0.041-0h-32.853c-16.731 0-30.293 13.563-30.293 30.293s13.563 30.293 30.293 30.293v-0h32.853c37.446 0.222 69.743 22.041 85.085 53.621l0.248 0.565 12.8 26.453c11.385 25.264 36.299 42.556 65.266 42.667l0.014 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph-3"]},"attrs":[{}],"properties":{"order":6700,"id":264,"name":"graph-3","prevSize":32,"code":59956},"setIdx":0,"setId":0,"iconIdx":308},{"icon":{"paths":["M929.28 965.973h-605.44c-149.299-0.243-270.264-121.208-270.507-270.484l-0-0.023v-607.573c0-19.087 15.473-34.56 34.56-34.56s34.56 15.473 34.56 34.56v0 607.573c0.725 110.758 90.56 200.294 201.364 200.533l0.023 0h605.44c19.087 0 34.56 15.473 34.56 34.56s-15.473 34.56-34.56 34.56h0zM934.4 795.307v-298.667c-2.008-17.591-16.81-31.129-34.773-31.129s-32.765 13.538-34.758 30.968l-0.015 0.161v298.667c2.008 17.591 16.81 31.129 34.773 31.129s32.765-13.538 34.758-30.968l0.015-0.161zM411.307 514.987l186.027-187.307c45.605-45.859 108.743-74.241 178.511-74.241 0.242 0 0.485 0 0.727 0.001l-0.038-0c47.128 0 85.333 38.205 85.333 85.333v0c-0.014 0.382-0.023 0.83-0.023 1.28 0 20.042 16.247 36.289 36.289 36.289 19.592 0 35.558-15.526 36.265-34.945l0.002-0.065c-0.243-86.297-70.256-156.16-156.586-156.16-0 0-0 0-0.001 0l-0 0c-0.454-0.002-0.991-0.004-1.529-0.004-88.482 0-168.542 36.056-226.29 94.276l-0.021 0.021-187.733 187.307c-20.017 20.116-47.724 32.565-78.338 32.565-11.007 0-21.638-1.609-31.671-4.605l0.782 0.201h-4.693c-2.813-0.824-6.044-1.298-9.387-1.298-19.097 0-34.578 15.481-34.578 34.578 0 15.755 10.537 29.049 24.948 33.219l0.244 0.061h4.693c14.802 4.527 31.823 7.172 49.45 7.253l0.043 0c49.942-0.268 95.041-20.78 127.553-53.74l0.020-0.020z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph-4"]},"attrs":[{}],"properties":{"order":6701,"id":263,"name":"graph-4","prevSize":32,"code":59957},"setIdx":0,"setId":0,"iconIdx":309},{"icon":{"paths":["M675.84 113.92c130.1 1.202 235.103 106.947 235.103 237.217 0 0.753-0.004 1.506-0.011 2.258l0.001-0.115v317.44c0.006 0.637 0.010 1.389 0.010 2.143 0 130.27-105.003 236.015-234.989 237.216l-0.114 0.001h-327.68c-130.1-1.202-235.103-106.947-235.103-237.217 0-0.753 0.004-1.506 0.011-2.258l-0.001 0.115v-317.44c-0.006-0.637-0.010-1.389-0.010-2.143 0-130.27 105.003-236.015 234.989-237.216l0.114-0.001h327.68zM622.933 289.707h29.867c-76.077 90.322-184.506 151.28-307.214 164.928l-2.12 0.192c-16.731 0-30.293 13.563-30.293 30.293s13.563 30.293 30.293 30.293v-0c136.415-13.259 255.81-77.114 340.888-172.294l0.445-0.506v11.093c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v-94.293s0 0 0-2.56v-5.973c-0.588-1.962-1.313-3.659-2.201-5.252l0.068 0.132c-0.787-1.802-1.79-3.351-3.002-4.711l0.015 0.017-3.84-4.693s0 0 0 0h-2.987c-1.681-2.62-4.194-4.579-7.16-5.521l-0.094-0.026c-0.897-0.21-1.928-0.331-2.987-0.331s-2.089 0.12-3.079 0.349l0.092-0.018h-96.427c-15.34 1.87-27.106 14.814-27.106 30.507s11.766 28.637 26.958 30.492l0.148 0.015zM715.947 806.4c0.001 0 0.002 0 0.003 0 16.495 0 29.867-13.372 29.867-29.867 0-0.15-0.001-0.3-0.003-0.449l0 0.023v-273.493c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867v271.36c-0.002 0.127-0.003 0.277-0.003 0.427 0 16.495 13.372 29.867 29.867 29.867 0.001 0 0.002-0 0.003-0l-0 0zM526.507 804.267c0.001 0 0.002 0 0.003 0 16.495 0 29.867-13.372 29.867-29.867 0-0.15-0.001-0.3-0.003-0.449l0 0.023v-164.693c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867l-0 0v164.693c-0.002 0.127-0.003 0.277-0.003 0.427 0 16.495 13.372 29.867 29.867 29.867 0.001 0 0.002-0 0.003-0l-0 0zM334.507 804.267c0.001 0 0.002 0 0.003 0 16.495 0 29.867-13.372 29.867-29.867 0-0.15-0.001-0.3-0.003-0.449l0 0.023v-113.92c0.136-1.070 0.213-2.308 0.213-3.563 0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867c0 1.256 0.078 2.494 0.228 3.709l-0.015-0.145v113.92c-0.002 0.128-0.003 0.279-0.003 0.43 0 16.346 13.131 29.625 29.421 29.863l0.022 0zM675.84 53.333h-327.68c-163.289 2.167-294.827 135.043-294.827 298.642 0 0.009 0 0.018 0 0.026l-0-0.002v317.44c-0 0.007-0 0.016-0 0.025 0 163.599 131.538 296.476 294.623 298.64l0.204 0.002h327.68c163.289-2.167 294.827-135.043 294.827-298.642 0-0.009-0-0.018-0-0.026l0 0.002v-316.16c0-0.007 0-0.016 0-0.025 0-163.599-131.538-296.476-294.623-298.64l-0.204-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph-up"]},"attrs":[{}],"properties":{"order":6702,"id":262,"name":"graph-up","prevSize":32,"code":59958},"setIdx":0,"setId":0,"iconIdx":310},{"icon":{"paths":["M512 720.213c0.001 0 0.002 0 0.003 0 16.495 0 29.867-13.372 29.867-29.867 0-0.15-0.001-0.3-0.003-0.449l0 0.023v-355.84c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867l-0 0v355.84c-0.002 0.127-0.003 0.277-0.003 0.427 0 16.495 13.372 29.867 29.867 29.867 0.001 0 0.002-0 0.003-0l-0 0z","M733.013 614.827c16.547-0.239 29.87-13.709 29.87-30.29 0-0.151-0.001-0.302-0.003-0.452l0 0.023v-144.64c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867v144.64c-0.002 0.128-0.003 0.279-0.003 0.43 0 16.582 13.322 30.052 29.847 30.29l0.022 0z","M288.427 614.827c16.547-0.239 29.87-13.709 29.87-30.29 0-0.151-0.001-0.302-0.003-0.452l0 0.023v-144.64c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867l0 0v144.64c-0.002 0.128-0.003 0.279-0.003 0.43 0 16.582 13.322 30.052 29.847 30.29l0.022 0z","M690.347 117.333c119.47 0 216.32 96.85 216.32 216.32v0 356.693c0 119.47-96.85 216.32-216.32 216.32v0h-356.693c-119.47 0-216.32-96.85-216.32-216.32v0-356.693c0-119.47 96.85-216.32 216.32-216.32v0h356.693zM690.347 53.333h-356.693c-154.816 0-280.32 125.504-280.32 280.32v0 356.693c0 154.816 125.504 280.32 280.32 280.32v0h356.693c154.816 0 280.32-125.504 280.32-280.32v0-356.693c0-154.816-125.504-280.32-280.32-280.32v0z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph"]},"attrs":[{},{},{},{}],"properties":{"order":6703,"id":261,"name":"graph","prevSize":32,"code":59959},"setIdx":0,"setId":0,"iconIdx":311},{"icon":{"paths":["M717.227 53.333h-410.453c-139.971 0-253.44 113.469-253.44 253.44l-0-0v410.453c0 139.971 113.469 253.44 253.44 253.44v-0h410.453c139.971 0 253.44-113.469 253.44-253.44l-0-0v-410.453c0-139.971-113.469-253.44-253.44-253.44h-0zM306.773 906.667c-104.625 0-189.44-84.815-189.44-189.44v-410.453c0-104.625 84.815-189.44 189.44-189.44v-0h173.227v789.333zM906.667 717.227c0 104.625-84.815 189.44-189.44 189.44l-0-0h-173.227v-789.333h173.227c104.625 0 189.44 84.815 189.44 189.44l-0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-2"]},"attrs":[{}],"properties":{"order":6704,"id":260,"name":"grid-2","prevSize":32,"code":59960},"setIdx":0,"setId":0,"iconIdx":312},{"icon":{"paths":["M896 778.667h-63.147v-280.747c-0.242-57.077-46.568-103.253-103.679-103.253-0 0-0.001 0-0.001 0l-91.733-0c-57.025 0-103.253 46.228-103.253 103.253l-0-0v280.747h-64.853v-494.080c-0.239-56.779-46.082-102.772-102.781-103.253l-0.046-0h-91.733c-0.254-0.002-0.553-0.004-0.853-0.004-57.025 0-103.253 46.228-103.253 103.253 0 0.001 0 0.003 0 0.004l-0-0v494.080h-42.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h768c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM233.813 778.667v-494.080c0-21.679 17.574-39.253 39.253-39.253v0h93.44c0.001-0 0.001-0 0.002-0 21.765 0 39.437 17.523 39.678 39.231l0 0.023v494.080zM596.48 778.667v-280.747c0-21.679 17.574-39.253 39.253-39.253v-0h91.733c0.001-0 0.001-0 0.002-0 21.765 0 39.437 17.523 39.678 39.231l0 0.023v280.747z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-frame"]},"attrs":[{}],"properties":{"order":6705,"id":259,"name":"grid-frame","prevSize":32,"code":59961},"setIdx":0,"setId":0,"iconIdx":313},{"icon":{"paths":["M717.227 53.333h-410.453c-139.971 0-253.44 113.469-253.44 253.44l-0-0v410.453c0 139.971 113.469 253.44 253.44 253.44v-0h410.453c139.971 0 253.44-113.469 253.44-253.44l-0-0v-410.453c0-139.971-113.469-253.44-253.44-253.44h-0zM306.773 906.667c-104.625 0-189.44-84.815-189.44-189.44v-410.453c0-104.625 84.815-189.44 189.44-189.44v-0h45.227v789.333zM906.667 717.227c0 104.625-84.815 189.44-189.44 189.44l-0-0h-301.227v-789.333h301.227c104.625 0 189.44 84.815 189.44 189.44l-0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid"]},"attrs":[{}],"properties":{"order":6706,"id":258,"name":"grid","prevSize":32,"code":59962},"setIdx":0,"setId":0,"iconIdx":314},{"icon":{"paths":["M938.667 154.88c-23.11-25.766-56.313-42.074-93.335-42.665l-0.105-0.001h-510.293c-13.248 0.862-25.597 3.606-37.148 7.972l0.881-0.292-29.44-48.64c-5.997-10.761-17.307-17.92-30.29-17.92-0.001 0-0.002 0-0.003 0l-150.186-0c-18.268 2.048-32.339 17.408-32.339 36.053s14.071 34.005 32.174 36.038l0.165 0.015h130.133l19.2 34.133c-17.030 20.233-28.111 45.979-30.266 74.222l-0.027 0.445-27.307 379.307c-0.257 3.106-0.404 6.723-0.404 10.375 0 33.867 12.606 64.789 33.382 88.33l-0.125-0.145c23.203 25.867 56.582 42.202 93.784 42.666l0.082 0.001h507.733c0.054 0 0.118 0 0.182 0 68.291 0 124.091-53.48 127.803-120.844l0.014-0.329 27.307-379.307c0.363-3.702 0.571-8.003 0.571-12.352 0-33.32-12.164-63.8-32.294-87.24l0.15 0.178zM845.227 185.6c0.262-0.004 0.57-0.007 0.88-0.007 16.514 0 31.381 7.054 41.751 18.314l0.036 0.040c9.33 10.317 15.040 24.063 15.040 39.141 0 1.24-0.039 2.471-0.115 3.692l0.008-0.167-5.973 85.333h-625.493l6.827-92.587c1.846-29.961 26.51-53.583 56.729-53.76l0.018-0zM815.787 682.667h-507.733c-0.091 0.001-0.199 0.001-0.308 0.001-16.773 0-31.859-7.223-42.317-18.727l-0.042-0.047c-9.323-10.431-15.021-24.273-15.021-39.447 0-1.133 0.032-2.258 0.094-3.375l-0.007 0.155 15.36-213.333h622.933l-15.787 223.147c-3.311 29.005-27.591 51.364-57.146 51.626l-0.027 0zM461.653 896c-0.72 40.447-33.677 72.96-74.229 72.96-41.002 0-74.24-33.238-74.24-74.24 0-40.998 33.232-74.234 74.228-74.24l0.001-0c41.056 0.239 74.245 33.577 74.245 74.665 0 0.3-0.002 0.601-0.005 0.9l0-0.046zM794.453 896c-0.955 40.025-33.628 72.107-73.794 72.107-40.766 0-73.813-33.047-73.813-73.813 0-40.759 33.036-73.802 73.793-73.813l0.001-0c40.871 0.479 73.818 33.723 73.818 74.662 0 0.302-0.002 0.603-0.005 0.904l0-0.046z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["handcart"]},"attrs":[{}],"properties":{"order":6707,"id":257,"name":"handcart","prevSize":32,"code":59963},"setIdx":0,"setId":0,"iconIdx":315},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM698.88 718.080c7.981-5.803 13.109-15.108 13.109-25.612 0-6.335-1.866-12.234-5.077-17.178l0.075 0.123c-5.707-8.064-14.997-13.264-25.501-13.264-6.392 0-12.335 1.926-17.279 5.228l0.113-0.071c-42.349 28.483-94.498 45.463-150.613 45.463s-108.264-16.98-151.591-46.081l0.977 0.618c-4.868-3.221-10.843-5.14-17.266-5.14-10.377 0-19.585 5.006-25.341 12.736l-0.060 0.084c-3.045 4.849-4.851 10.744-4.851 17.061 0 10.378 4.875 19.617 12.46 25.552l0.071 0.054c55.285 34.941 122.345 56.087 194.268 57.17l0.292 0.003c66.101-0.581 127.146-21.748 177.163-57.389l-0.949 0.643z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["happy-emoji"]},"attrs":[{}],"properties":{"order":6708,"id":256,"name":"happy-emoji","prevSize":32,"code":59964},"setIdx":0,"setId":0,"iconIdx":316},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM514.56 744.107c-0.146 0.001-0.319 0.001-0.491 0.001-16.273 0-31.662-3.78-45.339-10.51l0.604 0.269c-67.413-32.427-223.573-125.44-221.013-288.853 1.070-78.17 54.532-143.562 126.809-162.718l1.191-0.268c13.011-3.338 27.947-5.253 43.331-5.253 31.654 0 61.413 8.11 87.313 22.367l-0.938-0.473c1.67 0.896 3.653 1.422 5.76 1.422s4.090-0.526 5.826-1.455l-0.066 0.032c24.716-13.317 54.090-21.142 85.292-21.142 20.936 0 41.048 3.523 59.778 10.009l-1.283-0.386c66.235 23.84 112.93 85.701 113.919 158.601l0.001 0.119c-2.987 182.187-156.16 264.96-221.44 292.267-10.48 3.834-22.58 6.051-35.197 6.051-1.426 0-2.846-0.028-4.259-0.084l0.203 0.006zM422.4 341.333c-11.11 0.126-21.833 1.519-32.112 4.040l0.966-0.2c-45.546 12.306-78.507 53.254-78.507 101.901 0 0.025 0 0.051 0 0.076l-0-0.004c0 128 128 203.52 184.747 230.4 4.643 2.119 10.071 3.354 15.787 3.354s11.144-1.235 16.030-3.453l-0.244 0.099c54.187-22.613 179.627-90.453 182.187-234.24-1.883-44.62-30.686-82.055-70.507-96.615l-0.747-0.239c-11.612-4.296-25.024-6.782-39.017-6.782-19.923 0-38.669 5.039-55.033 13.911l0.61-0.303c-10.371 5.66-22.717 8.989-35.84 8.989s-25.469-3.328-36.239-9.187l0.399 0.199c-14.618-7.546-31.905-11.969-50.225-11.969-0.793 0-1.584 0.008-2.372 0.025l0.118-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-circle"]},"attrs":[{}],"properties":{"order":6709,"id":255,"name":"heart-circle","prevSize":32,"code":59965},"setIdx":0,"setId":0,"iconIdx":317},{"icon":{"paths":["M527.36 930.133c-17.658-0.229-34.346-4.134-49.414-10.981l0.774 0.315c-99.84-45.653-426.667-218.453-421.12-532.907-0-0.068-0-0.148-0-0.229 0-134.55 91.187-247.802 215.133-281.328l2.040-0.47c24.040-6.679 51.645-10.518 80.146-10.518 62.126 0 119.992 18.239 168.536 49.655l-1.215-0.737c0.61 0.579 1.437 0.935 2.347 0.935s1.736-0.356 2.348-0.936l-0.002 0.001c47.311-30.869 105.227-49.229 167.431-49.229 36.471 0 71.467 6.312 103.957 17.902l-2.161-0.672c113.548 41.317 193.467 147.666 194.985 272.883l0.002 0.184c-5.973 352-324.693 500.48-421.973 538.027-12.381 4.975-26.727 7.936-41.744 8.106l-0.070 0.001zM356.693 158.293c-0.134-0-0.293-0-0.452-0-23.030 0-45.37 2.957-66.659 8.513l1.831-0.406c-98.944 26.274-170.668 115.036-170.668 220.55 0 0.313 0.001 0.625 0.002 0.938l-0-0.048c-4.693 275.2 292.693 431.787 384 473.173 6.274 2.863 13.609 4.532 21.333 4.532s15.059-1.669 21.663-4.666l-0.33 0.134c88.32-33.28 375.893-166.827 381.013-478.72-2.176-97.079-64.071-179.159-150.299-211.109l-1.595-0.517c-24.021-8.566-51.73-13.517-80.596-13.517-49.27 0-95.171 14.423-133.711 39.278l0.974-0.588c-10.402 6.895-23.175 11-36.907 11s-26.504-4.106-37.157-11.156l0.251 0.156c-36.598-23.575-81.293-37.585-129.26-37.585-1.507 0-3.011 0.014-4.512 0.041l0.225-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart"]},"attrs":[{}],"properties":{"order":6710,"id":254,"name":"heart","prevSize":32,"code":59966},"setIdx":0,"setId":0,"iconIdx":318},{"icon":{"paths":["M271.36 962.987c-92.282-0.034-168.37-69.322-179.116-158.712l-0.084-0.861-37.547-320.427c-0.731-6.127-1.148-13.223-1.148-20.416 0-58.055 27.154-109.767 69.454-143.13l0.387-0.294 285.867-220.587c30.176-23.254 68.514-37.27 110.125-37.27 44.258 0 84.812 15.855 116.293 42.196l-0.285-0.232 270.933 228.267c39.486 33.252 64.402 82.716 64.402 138 0 10.636-0.922 21.056-2.691 31.185l0.156-1.078-53.333 311.040c-14.818 85.749-88.63 150.153-177.49 150.187l-465.497 0zM519.253 125.44c-0.256-0.002-0.558-0.003-0.861-0.003-26.609 0-51.119 8.989-70.659 24.095l0.267-0.198-285.44 220.587c-26.654 21.605-43.552 54.343-43.552 91.029 0 5.061 0.322 10.047 0.945 14.938l-0.060-0.58 37.547 320.853c7.064 58.169 56.129 102.8 115.624 102.827l465.496 0c0.053 0 0.116 0 0.179 0 57.617 0 105.427-41.987 114.502-97.033l0.092-0.674 53.333-312.32c1.053-5.894 1.655-12.678 1.655-19.603 0-35.674-15.979-67.617-41.17-89.060l-0.165-0.137-272.64-227.84c-20.132-16.728-46.248-26.881-74.736-26.881-0.126 0-0.252 0-0.377 0.001l0.019-0zM512 700.16c-78.233-0-141.653-63.421-141.653-141.653s63.42-141.653 141.653-141.653c78.233 0 141.653 63.42 141.653 141.653 0 0.15-0 0.3-0.001 0.45l0-0.023c-0.243 78.049-63.57 141.227-141.653 141.227-0 0-0.001-0-0.001-0l0 0zM512 481.28c-42.887 0-77.653 34.767-77.653 77.653s34.767 77.653 77.653 77.653c42.887 0 77.653-34.767 77.653-77.653v0c0-42.887-34.767-77.653-77.653-77.653v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-1"]},"attrs":[{}],"properties":{"order":6711,"id":253,"name":"home-1","prevSize":32,"code":59967},"setIdx":0,"setId":0,"iconIdx":319},{"icon":{"paths":["M768 969.813v0c-46.933 0-151.467 0-256 0h-256c-0.441 0.003-0.962 0.005-1.484 0.005-55.562 0-105.869-22.501-142.305-58.888l0.002 0.002c-37.364-35.726-60.591-85.969-60.591-141.637 0-0.456 0.002-0.911 0.005-1.366l-0 0.070v-241.493c0.955-94.189 43.287-178.302 109.655-235.165l0.425-0.355 217.6-188.16c35.855-30.983 82.923-49.857 134.4-49.857s98.545 18.874 134.663 50.079l-0.263-0.222 216.32 189.867c65.54 57.763 106.669 141.897 106.669 235.636 0 0.409-0.001 0.818-0.002 1.227l0-0.063v239.787c0 0.055 0 0.119 0 0.184 0 55.401-23.055 105.418-60.094 140.979l-0.066 0.063c-36.476 36.636-86.952 59.307-142.723 59.307-0.074 0-0.148-0-0.222-0l0.011 0zM640 905.813h128c0.149 0.001 0.326 0.001 0.502 0.001 37.99 0 72.445-15.138 97.661-39.71l-0.030 0.029c25.013-24.363 40.531-58.369 40.533-96l0-0v-239.787c0-0.069 0-0.151 0-0.233 0-74.812-32.913-141.937-85.050-187.684l-0.283-0.244-215.467-189.867c-24.612-21.373-56.971-34.399-92.373-34.399s-67.761 13.026-92.547 34.547l0.174-0.148-217.6 189.013v0c-52.416 45.917-85.333 112.981-85.333 187.733v241.493c-0.002 0.267-0.003 0.582-0.003 0.897 0 37.327 15.169 71.112 39.679 95.525l0.004 0.004c25.096 23.784 59.079 38.41 96.479 38.41 0.582 0 1.163-0.004 1.743-0.011l-0.088 0.001h384zM544 814.933v-122.027c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 122.027c0 17.673 14.327 32 32 32s32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-2"]},"attrs":[{}],"properties":{"order":6712,"id":252,"name":"home-2","prevSize":32,"code":59968},"setIdx":0,"setId":0,"iconIdx":320},{"icon":{"paths":["M768 970.24h-512c-0.634 0.007-1.384 0.011-2.134 0.011-111.458 0-201.813-90.355-201.813-201.813 0-0.154 0-0.308 0.001-0.462l-0 0.024v-241.493c1.206-94.006 43.478-177.903 109.662-234.742l0.418-0.351 218.027-188.16c35.726-31.115 82.741-50.084 134.187-50.084s98.461 18.969 134.433 50.295l-0.247-0.21 216.32 191.147c65.794 57.852 107.094 142.204 107.094 236.202 0 0.21-0 0.42-0.001 0.63l0-0.032v239.787c-0.365 55.394-23.325 105.355-60.116 141.184l-0.044 0.042c-36.474 35.882-86.548 58.036-141.797 58.036-0.7 0-1.398-0.004-2.096-0.011l0.106 0.001zM640 906.24h128c0.177 0.001 0.387 0.001 0.597 0.001 37.825 0 72.114-15.145 97.131-39.702l-0.021 0.021c25.922-23.989 42.227-58.048 42.666-95.92l0.001-0.080v-239.787c0.001-0.242 0.001-0.528 0.001-0.814 0-74.633-32.925-141.576-85.042-187.096l-0.293-0.25-216.747-190.293c-24.58-21.262-56.857-34.215-92.16-34.215s-67.58 12.953-92.339 34.366l0.179-0.151-218.027 189.013c-52.416 45.917-85.333 112.981-85.333 187.733h-0v241.493c1.201 74.953 62.244 135.253 137.37 135.253 0.006 0 0.012-0 0.017-0l383.999 0zM183.040 315.733v0zM713.387 785.067c0-17.673-14.327-32-32-32v0h-340.053c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h341.333c16.741-0.897 30.060-14.364 30.718-31.085l0.002-0.062z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-3"]},"attrs":[{}],"properties":{"order":6713,"id":251,"name":"home-3","prevSize":32,"code":59969},"setIdx":0,"setId":0,"iconIdx":321},{"icon":{"paths":["M841.813 970.24h-145.067c-70.692 0-128-57.308-128-128v0-190.72c-0.139-30.528-24.919-55.222-55.466-55.222-3.774 0-7.46 0.377-11.023 1.095l0.355-0.060c-26.316 5.871-45.694 29.023-45.694 56.701 0 0.766 0.015 1.529 0.044 2.288l-0.003-0.109v184.32c0 70.692-57.308 128-128 128v0h-146.773c-70.692 0-128-57.308-128-128v0-357.12c-0.009-0.739-0.014-1.611-0.014-2.485 0-65.135 28.451-123.624 73.603-163.719l0.225-0.196 245.76-213.333c36.98-31.613 85.363-50.85 138.24-50.85s101.26 19.237 138.534 51.095l-0.294-0.245 245.333 213.333c46.588 40.476 75.89 99.797 75.947 165.963l0 0.010v357.547c0.007 0.511 0.012 1.114 0.012 1.718 0 70.692-57.308 128-128 128-0.604 0-1.207-0.004-1.81-0.013l0.091 0.001zM512 532.907c0-0 0-0 0.001-0 65.594 0 118.797 53.053 119.039 118.59l0 0.023v189.013c0 36.289 29.418 65.707 65.707 65.707v0h145.067c0.127 0.001 0.277 0.001 0.427 0.001 36.289 0 65.707-29.418 65.707-65.707 0-0-0-0.001-0-0.001l0 0v-357.547c-0.273-47.051-21.311-89.134-54.407-117.586l-0.207-0.174-245.333-213.333c-25.771-22.112-59.527-35.572-96.427-35.572s-70.656 13.46-96.626 35.739l0.199-0.167-244.48 213.76c-33.247 28.427-54.187 70.412-54.187 117.287 0 0.166 0 0.332 0.001 0.498l-0-0.026v357.12c-0 0-0 0.001-0 0.001 0 36.289 29.418 65.707 65.707 65.707 0.15 0 0.3-0.001 0.45-0.002l-0.023 0h145.067c36.105-0.242 65.28-29.567 65.28-65.705 0-0.001-0-0.001-0-0.002l0 0v-184.32c-0.005-0.418-0.008-0.912-0.008-1.407 0-59.566 42.383-109.233 98.637-120.489l0.784-0.131c5.81-0.815 12.523-1.28 19.344-1.28 0.1 0 0.199 0 0.299 0l-0.016-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home"]},"attrs":[{}],"properties":{"order":6714,"id":250,"name":"home","prevSize":32,"code":59970},"setIdx":0,"setId":0,"iconIdx":322},{"icon":{"paths":["M512 970.667c-0.221 0.001-0.481 0.002-0.742 0.002-13.431 0-26.389-2.028-38.583-5.795l0.925 0.246-202.667-58.027c-54.057-15.73-94.008-61.994-100.211-118.417l-0.056-0.623-60.16-581.547c-0.422-4.083-0.662-8.823-0.662-13.619 0-35.965 13.525-68.77 35.766-93.608l-0.118 0.134c25.495-28.339 62.29-46.080 103.229-46.080 0.009 0 0.017 0 0.026 0l526.505-0c0.086-0 0.188-0 0.29-0 76.583 0 138.667 62.083 138.667 138.667 0 4.959-0.26 9.857-0.768 14.682l0.051-0.602-60.16 581.547c-5.667 57.265-45.645 103.854-98.867 119.226l-0.973 0.241-203.947 58.027c-11.151 3.519-23.975 5.547-37.273 5.547-0.096 0-0.193-0-0.289-0l0.015 0zM248.747 117.333c-41.474 0.308-74.976 34.001-74.976 75.518 0 2.404 0.112 4.782 0.332 7.129l-0.023-0.3 60.587 581.547c3.311 30.648 24.741 55.522 53.232 63.867l0.528 0.133 202.667 58.453c6.388 1.941 13.73 3.058 21.333 3.058s14.945-1.117 21.871-3.196l-0.538 0.139 203.947-58.453c29.084-8.373 50.567-33.304 53.733-63.68l0.027-0.32 59.733-581.547c0.197-2.046 0.309-4.424 0.309-6.829 0-41.517-33.502-75.21-74.947-75.518l-0.029-0zM745.387 875.947v0zM512 765.013l147.627-47.787c12.166-3.953 21.021-14.674 22.178-27.611l0.009-0.123 16.213-200.533c0.080-0.838 0.126-1.812 0.126-2.797 0-8.149-3.129-15.567-8.252-21.118l0.019 0.021c-5.584-6.536-13.83-10.656-23.038-10.667l-0.002-0-287.147-5.973-12.8-128h324.267c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-358.4c-17.599 0.4-31.712 14.761-31.712 32.419 0 1.054 0.050 2.097 0.149 3.126l-0.010-0.131 19.627 190.293c1.55 16.099 14.827 28.637 31.11 29.013l0.037 0.001 281.173 5.547-11.52 145.493-118.187 37.973-109.227-32-10.24-58.88c-2.645-15.243-15.773-26.687-31.573-26.687-17.684 0-32.021 14.336-32.021 32.021 0 1.884 0.163 3.73 0.475 5.525l-0.028-0.191 13.227 79.36c1.94 12.329 10.788 22.176 22.39 25.545l0.223 0.055 137.813 42.667c1.346 0.198 2.9 0.311 4.48 0.311s3.134-0.113 4.654-0.331l-0.174 0.020c3.173-0.399 6.055-1.301 8.685-2.629l-0.151 0.069z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["html"]},"attrs":[{}],"properties":{"order":6715,"id":249,"name":"html","prevSize":32,"code":59971},"setIdx":0,"setId":0,"iconIdx":323},{"icon":{"paths":["M512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c-0.243-253.217-205.45-458.424-458.644-458.667l-0.023-0zM906.667 512c0 8.107 0 16.213 0 24.32-49.759-25.65-92.647-55.462-131.113-90.090l0.553 0.49c5.196-10.056 8.327-21.919 8.532-34.493l0.001-0.067c-0.242-42.703-34.915-77.227-77.652-77.227-0 0-0.001 0-0.001 0l0-0c-8.992 0.953-17.223 3.216-24.841 6.607l0.521-0.207c-42.036-60.818-73.71-132.321-90.578-209.365l-0.729-3.968c180.193 38.287 313.68 195.323 315.305 383.822l0.001 0.178zM522.667 117.76c18.569 101.185 57.578 190.884 112.738 268.276l-1.378-2.036c-3.512 8.143-5.554 17.622-5.554 27.579 0 0.354 0.003 0.708 0.008 1.061l-0.001-0.053c-0 0-0 0.001-0 0.001 0 42.737 34.524 77.41 77.204 77.652l0.023 0c6.917-0.214 13.509-1.135 19.85-2.695l-0.65 0.135c49.004 45.318 105.243 83.823 166.585 113.424l4.082 1.776c-6.943 28.43-15.863 53.162-27.043 76.609l1.017-2.369c-47.496 8.009-102.297 12.659-158.157 12.8l-0.136 0c-53.067-0.102-105.138-3.976-156.070-11.367l5.883 0.701c-7.061-35.963-38.332-62.72-75.852-62.72-0.033 0-0.067 0-0.1 0l-8.528-0c-34.039-66.602-62.883-144.095-82.546-225.177l-1.507-7.357c19.448-14.112 31.95-36.768 31.95-62.344 0-34.796-23.141-64.188-54.873-73.624l-0.544-0.139c-3.413-34.56-5.547-66.56-5.973-101.12 44.022-18.546 95.19-29.358 148.875-29.44l0.032-0zM298.667 179.627c0 26.027 2.56 52.053 5.547 77.653-21.915 13.779-36.267 37.83-36.267 65.233 0 0.017 0 0.033 0 0.050l-0-0.003c0.252 37.086 26.463 67.978 61.358 75.429l0.509 0.091c22.868 95.489 54.351 179.238 94.71 257.672l-2.976-6.365c-115.623-33.663-216.578-82.022-307.479-144.031l3.693 2.378c0.985-137.231 72.162-257.626 179.377-327.177l1.53-0.93zM125.013 587.947c82.12 50.688 176.937 92.776 277.438 121.361l8.002 1.946c8.213 34.444 38.698 59.672 75.087 59.733l0.007 0h7.253c33.004 47.864 66.22 89.614 102.005 128.988l-0.885-0.988c-24.656 5.479-52.974 8.618-82.026 8.618-191.129 0-350.525-135.862-386.882-316.278l-0.425-2.527zM661.76 876.8c-39.81-40.664-76.404-84.843-109.15-131.899l-2.21-3.354c48.407 7.521 104.301 11.861 161.191 11.947l0.089 0c41.629-0.355 82.232-2.825 122.225-7.311l-5.318 0.485c-42.563 57.094-98.921 101.663-164.231 129.163l-2.596 0.97z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["icon"]},"attrs":[{}],"properties":{"order":6716,"id":248,"name":"icon","prevSize":32,"code":59972},"setIdx":0,"setId":0,"iconIdx":324},{"icon":{"paths":["M480 337.92c-3.878-12.451-15.141-21.398-28.545-21.759l-0.041-0.001c-0.548-0.034-1.189-0.053-1.834-0.053-12.824 0-23.863 7.646-28.806 18.627l-0.080 0.199-100.693 226.133-52.48 118.613c-2.363 4.354-3.753 9.533-3.753 15.037 0 17.673 14.327 32 32 32 13.888 0 25.71-8.847 30.136-21.213l0.070-0.223 42.667-99.413h131.413l32 96.853c4.4 12.751 16.295 21.749 30.292 21.76l0.001 0c1.539 0.294 3.31 0.462 5.12 0.462s3.581-0.168 5.297-0.49l-0.177 0.028c13.113-4.197 22.441-16.279 22.441-30.539 0-4.373-0.877-8.542-2.466-12.339l0.078 0.211zM398.933 541.867l46.507-105.387 34.987 105.387zM756.053 348.16c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0zM745.813 459.093v233.387c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-233.387c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM971.093 337.067c-0.968-157.38-128.773-284.587-286.288-284.587-0.002 0-0.004 0-0.006 0l-347.306-0c-0.003-0-0.007-0-0.011-0-158.115 0-286.293 128.178-286.293 286.293 0 0.9 0.004 1.799 0.012 2.697l-0.001-0.137v344.747c0.471 157.759 128.468 285.466 286.292 285.466 1.35 0 2.699-0.009 4.045-0.028l-0.204 0.002h347.307c157.2-1.202 284.172-128.916 284.172-286.285 0-0.903-0.004-1.805-0.013-2.706l0.001 0.138zM843.093 839.68c-39.882 40.58-95.256 65.823-156.528 66.133l-345.232 1.707c-1.498 0.038-3.262 0.059-5.031 0.059-59.69 0-113.654-24.514-152.374-64.024l-0.035-0.036c-40.602-40.029-65.843-95.546-66.133-156.959l-0-0.055-2.56-345.173c-0-0.129-0-0.281-0-0.433 0-122.405 98.745-221.747 220.922-222.713l0.092-0.001h347.307c1.498-0.038 3.262-0.059 5.031-0.059 59.69 0 113.654 24.514 152.374 64.024l0.035 0.036c40.602 40.029 65.843 95.546 66.133 156.959l0 0.055v344.747c0.005 0.545 0.008 1.188 0.008 1.832 0 59.917-23.936 114.245-62.767 153.941l0.039-0.040z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["illustrator"]},"attrs":[{}],"properties":{"order":6717,"id":247,"name":"illustrator","prevSize":32,"code":59973},"setIdx":0,"setId":0,"iconIdx":325},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0z","M512 452.267c23.564 0 42.667 19.103 42.667 42.667v0 198.827c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0-198.827c0-23.564 19.103-42.667 42.667-42.667v0z","M565.333 340.907c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information-2"]},"attrs":[{},{},{}],"properties":{"order":6718,"id":246,"name":"information-2","prevSize":32,"code":59974},"setIdx":0,"setId":0,"iconIdx":326},{"icon":{"paths":["M512 971.093c-0.149 0-0.326 0.001-0.502 0.001-34.538 0-66.893-9.348-94.672-25.652l0.881 0.478-234.667-135.253c-56.443-33.317-93.741-93.782-93.867-162.969l-0-0.018v-271.36c0.126-69.204 37.424-129.669 92.987-162.506l0.879-0.481 234.667-135.253c27.049-15.884 59.575-25.266 94.293-25.266s67.245 9.381 95.183 25.748l-0.89-0.482 234.667 135.253c56.443 33.317 93.741 93.782 93.867 162.969l0 0.018v271.36c-0.126 69.204-37.424 129.669-92.987 162.506l-0.879 0.481-234.667 135.253c-26.786 15.825-59.026 25.175-93.449 25.175-0.297 0-0.593-0.001-0.89-0.002l0.046 0zM512 117.76c-22.878 0.011-44.35 6.022-62.93 16.545l0.636-0.332-236.373 134.827c-36.304 22.206-60.163 61.635-60.163 106.637 0 0.31 0.001 0.621 0.003 0.931l-0-0.048v271.36c-0.002 0.262-0.003 0.573-0.003 0.883 0 45.002 23.86 84.431 59.618 106.327l0.545 0.31 234.667 135.68c17.946 10.181 39.419 16.181 62.293 16.181s44.347-6 62.931-16.512l-0.637 0.332 238.080-135.68c37.227-21.977 61.818-61.871 61.867-107.513l0-0.007v-271.36c-0.048-45.649-24.64-85.543-61.287-107.203l-0.579-0.317-234.667-135.68c-17.965-10.207-39.465-16.224-62.37-16.224-0.573 0-1.145 0.004-1.716 0.011l0.087-0.001z","M512 571.733c23.564 0 42.667-19.103 42.667-42.667v0-198.827c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 198.827c0 23.564 19.103 42.667 42.667 42.667v0z","M565.333 683.093c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information-3"]},"attrs":[{},{},{}],"properties":{"order":6719,"id":245,"name":"information-3","prevSize":32,"code":59975},"setIdx":0,"setId":0,"iconIdx":327},{"icon":{"paths":["M512 971.093c-0.251 0.001-0.547 0.002-0.844 0.002-34.424 0-66.663-9.35-94.318-25.649l0.869 0.474-234.667-135.253c-56.443-33.317-93.741-93.782-93.867-162.969l-0-0.018v-271.36c0.126-69.204 37.424-129.669 92.987-162.506l0.879-0.481 234.667-135.253c27.049-15.884 59.575-25.266 94.293-25.266s67.245 9.381 95.183 25.748l-0.89-0.482 234.667 135.253c56.443 33.317 93.741 93.782 93.867 162.969l0 0.018v271.36c-0.126 69.204-37.424 129.669-92.987 162.506l-0.879 0.481-234.667 135.253c-26.786 15.825-59.026 25.175-93.449 25.175-0.297 0-0.593-0.001-0.89-0.002l0.046 0zM512 117.76c-22.878 0.011-44.35 6.022-62.93 16.545l0.636-0.332-236.373 134.827c-36.304 22.206-60.163 61.635-60.163 106.637 0 0.31 0.001 0.621 0.003 0.931l-0-0.048v271.36c-0.002 0.262-0.003 0.573-0.003 0.883 0 45.002 23.86 84.431 59.618 106.327l0.545 0.31 234.667 135.68c17.946 10.181 39.419 16.181 62.293 16.181s44.347-6 62.931-16.512l-0.637 0.332 238.080-135.68c37.227-21.977 61.818-61.871 61.867-107.513l0-0.007v-271.36c-0.048-45.649-24.64-85.543-61.287-107.203l-0.579-0.317-234.667-135.68c-17.965-10.207-39.465-16.224-62.37-16.224-0.573 0-1.145 0.004-1.716 0.011l0.087-0.001z","M512 452.267c23.564 0 42.667 19.103 42.667 42.667v0 198.827c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0-198.827c0-23.564 19.103-42.667 42.667-42.667v0z","M565.333 340.907c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information-4"]},"attrs":[{},{},{}],"properties":{"order":6720,"id":244,"name":"information-4","prevSize":32,"code":59976},"setIdx":0,"setId":0,"iconIdx":328},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0z","M512 571.733c23.564 0 42.667-19.103 42.667-42.667v0-198.827c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 198.827c0 23.564 19.103 42.667 42.667 42.667v0z","M565.333 683.093c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information-5"]},"attrs":[{},{},{}],"properties":{"order":6721,"id":243,"name":"information-5","prevSize":32,"code":59977},"setIdx":0,"setId":0,"iconIdx":329},{"icon":{"paths":["M935.253 426.667l-60.16-60.587c-2.078-2.236-3.368-5.23-3.413-8.524l-0-0.009v-85.333c-0.243-66.503-54.209-120.32-120.746-120.32-0 0-0.001 0-0.001 0l-85.333-0c-0.051 0.001-0.111 0.001-0.171 0.001-3.257 0-6.209-1.303-8.364-3.416l0.002 0.002-59.733-60.587c-22.197-21.036-52.255-33.972-85.333-33.972s-63.136 12.936-85.389 34.024l0.056-0.053-60.16 60.587c-2.153 2.111-5.105 3.415-8.362 3.415-0.060 0-0.12-0-0.18-0.001l0.009 0h-85.333c-66.354 0.242-120.078 53.966-120.32 120.297l-0 0.023v85.333c-0.126 3.291-1.398 6.262-3.426 8.548l0.012-0.014-60.16 60.587c-21.926 21.799-35.496 51.981-35.496 85.333s13.57 63.535 35.49 85.328l60.166 59.739c2.090 2.071 3.391 4.935 3.413 8.102l0 0.004v85.333c0 66.687 54.060 120.747 120.747 120.747v0h85.333c0.26-0.023 0.562-0.037 0.868-0.037 3.045 0 5.78 1.329 7.656 3.44l0.009 0.010 59.733 60.16c21.799 21.926 51.981 35.496 85.333 35.496s63.535-13.57 85.328-35.49l0.006-0.006 60.16-60.16c1.885-2.121 4.62-3.45 7.665-3.45 0.306 0 0.608 0.013 0.907 0.040l-0.039-0.003h85.333c66.687 0 120.747-54.060 120.747-120.747v0-85.333c0.022-3.172 1.323-6.036 3.412-8.106l0.001-0.001 59.733-59.733c21.926-21.799 35.496-51.981 35.496-85.333s-13.57-63.535-35.49-85.328l-0.006-0.006zM890.027 551.68l-60.16 60.587c-13.697 13.411-22.189 32.093-22.189 52.757 0 0.203 0.001 0.405 0.002 0.607l-0-0.031v85.333c-0.24 31.243-25.503 56.507-56.724 56.747l-0.023 0h-85.333c-0.244-0.003-0.533-0.005-0.821-0.005-20.722 0-39.461 8.49-52.929 22.181l-0.010 0.010-60.16 60.16c-10.442 9.865-24.566 15.93-40.107 15.93s-29.665-6.065-40.135-15.956l0.028 0.026-59.733-60.587c-13.543-13.703-32.338-22.189-53.115-22.189-0.227 0-0.453 0.001-0.679 0.003l0.035-0h-85.333c-31.243-0.24-56.507-25.503-56.747-56.724l-0-0.023v-85.333c0.001-0.171 0.002-0.374 0.002-0.576 0-20.665-8.492-39.346-22.176-52.745l-0.013-0.013-59.733-60.587c-10.233-10.199-16.565-24.307-16.565-39.893s6.332-29.695 16.563-39.892l0.002-0.002 60.16-60.16c13.707-13.673 22.187-32.581 22.187-53.469 0-0.103-0-0.205-0.001-0.307l0 0.016v-85.333c0.242-31.156 25.555-56.32 56.745-56.32 0.001 0 0.001 0 0.002 0l85.333-0c20.968-0.067 39.948-8.526 53.767-22.194l-0.007 0.007 60.16-60.587c10.442-9.865 24.566-15.93 40.107-15.93s29.665 6.065 40.135 15.956l-0.028-0.026 60.16 60.587c13.812 13.66 32.792 22.12 53.747 22.187l0.013 0h85.333c0-0 0.001-0 0.002-0 31.19 0 56.503 25.164 56.745 56.297l0 0.023v85.333c0.067 20.968 8.526 39.948 22.194 53.767l-0.007-0.007 60.16 60.16c9.981 10.155 16.143 24.092 16.143 39.468 0 15.8-6.506 30.080-16.985 40.307l-0.011 0.011z","M512 571.733c23.564 0 42.667-19.103 42.667-42.667v0-198.827c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 198.827c0 23.564 19.103 42.667 42.667 42.667v0z","M565.333 683.093c0 29.455-23.878 53.333-53.333 53.333s-53.333-23.878-53.333-53.333c0-29.455 23.878-53.333 53.333-53.333s53.333 23.878 53.333 53.333z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information"]},"attrs":[{},{},{}],"properties":{"order":6722,"id":242,"name":"information","prevSize":32,"code":59978},"setIdx":0,"setId":0,"iconIdx":330},{"icon":{"paths":["M670.293 968.96h-319.573c-164.949 0-298.667-133.718-298.667-298.667v0-318.293c0-164.949 133.718-298.667 298.667-298.667v0h319.573c164.949 0 298.667 133.718 298.667 298.667v0 318.293c0 164.949-133.718 298.667-298.667 298.667v0zM350.72 119.040c-128.649 0.241-232.902 104.345-233.387 232.914l-0 0.046v318.293c-0 0.001-0 0.002-0 0.003 0 129.153 104.335 233.937 233.317 234.663l0.070 0h319.573c0.254 0.001 0.554 0.002 0.855 0.002 129.775 0 235.034-104.961 235.518-234.622l0-0.046v-318.293c-0.964-128.87-105.656-232.966-234.661-232.966-0.602 0-1.204 0.002-1.805 0.007l0.092-0.001zM761.6 218.453c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM512 696.32c-0.252 0.001-0.55 0.002-0.849 0.002-102.504 0-185.6-83.096-185.6-185.6s83.096-185.6 185.6-185.6c102.504 0 185.6 83.096 185.6 185.6 0 0.449-0.002 0.898-0.005 1.347l0-0.069c-0.959 101.559-83.153 183.603-184.678 184.32l-0.069 0zM512 389.547c-0.253-0.002-0.551-0.003-0.85-0.003-67.158 0-121.6 54.442-121.6 121.6s54.442 121.6 121.6 121.6c66.857 0 121.112-53.955 121.597-120.697l0-0.046c0-0.003 0-0.008 0-0.012 0-67.029-53.856-121.479-120.656-122.44l-0.091-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["instagram"]},"attrs":[{}],"properties":{"order":6723,"id":241,"name":"instagram","prevSize":32,"code":59979},"setIdx":0,"setId":0,"iconIdx":331},{"icon":{"paths":["M784.213 644.267h-160.853v-197.547c57.937-38.758 95.573-103.927 95.573-177.887 0-117.821-95.513-213.333-213.333-213.333s-213.333 95.513-213.333 213.333c0 73.959 37.636 139.129 94.801 177.4l0.772 0.487v197.12h-32.853c-1.567-16.243-15.073-28.861-31.558-29.013l-0.015-0h-32.427c-0.022-0-0.047-0-0.073-0-16.451 0-29.923 12.754-31.068 28.914l-0.006 0.099h-20.053c-72.865 0.243-131.84 59.367-131.84 132.266 0 0 0 0 0 0.001l-0-0v59.733c0 72.813 59.027 131.84 131.84 131.84v0h544.427c72.813-0 131.84-59.027 131.84-131.84l0 0v-59.307c0-0 0-0 0-0.001 0-72.899-58.975-132.023-131.817-132.266l-0.023-0zM387.84 359.68c-19.665-24.734-31.557-56.417-31.573-90.876l-0-0.004c0-82.475 66.859-149.333 149.333-149.333s149.333 66.859 149.333 149.333v0c-0.016 34.463-11.908 66.146-31.804 91.181l0.231-0.301c-27.322 35.597-69.888 58.318-117.76 58.318s-90.438-22.721-117.501-57.967l-0.259-0.351zM558.507 474.453v170.667h-106.667v-170.667c16.1 4.874 34.602 7.68 53.76 7.68s37.66-2.806 55.119-8.029l-1.359 0.349zM853.333 836.267c-0 37.467-30.373 67.84-67.84 67.84h-545.707c-0.381 0.008-0.83 0.012-1.28 0.012-37.467 0-67.84-30.373-67.84-67.84 0-0.004 0-0.008 0-0.013l-0 0.001v-59.733c-0-0-0-0.001-0-0.001 0-37.553 30.321-68.023 67.817-68.265l0.023-0h545.707c0.254-0.003 0.553-0.005 0.853-0.005 37.703 0 68.267 30.564 68.267 68.267 0 0.002-0 0.004-0 0.006l0-0zM469.333 253.013c-0.762 0.053-1.652 0.084-2.549 0.084-21.443 0-38.827-17.383-38.827-38.827s17.383-38.827 38.827-38.827c21.114 0 38.291 16.853 38.814 37.841l0.001 0.049c0.006 0.254 0.009 0.553 0.009 0.853 0 21.443-17.383 38.827-38.827 38.827-0.003 0-0.007-0-0.010-0l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["joystick"]},"attrs":[{}],"properties":{"order":6724,"id":240,"name":"joystick","prevSize":32,"code":59980},"setIdx":0,"setId":0,"iconIdx":332},{"icon":{"paths":["M512 967.68c-0.165 0.001-0.36 0.002-0.555 0.002-14.286 0-27.645-3.966-39.036-10.858l0.337 0.189-88.747-50.773c-9.485-5.67-15.737-15.884-15.737-27.559 0-5.532 1.404-10.736 3.874-15.275l-0.084 0.168c5.787-9.414 16.030-15.598 27.718-15.598 5.463 0 10.61 1.351 15.125 3.736l-0.177-0.085 87.893 50.773c2.081 1.222 4.583 1.944 7.253 1.944s5.173-0.722 7.322-1.981l-0.068 0.037 326.4-188.16c4.485-2.62 7.494-7.339 7.679-12.774l0.001-0.026v-378.027c-0.186-5.461-3.195-10.18-7.607-12.761l-0.073-0.039-324.267-188.16c-2.081-1.222-4.583-1.944-7.253-1.944s-5.173 0.722-7.322 1.981l0.068-0.037-326.4 188.16c-4.485 2.62-7.494 7.339-7.679 12.774l-0.001 0.026v369.067c0.050 10.561 5.82 19.763 14.368 24.673l0.139 0.074 85.333 49.067c4.67 2.653 10.259 4.217 16.213 4.217 18.362 0 33.251-14.871 33.28-33.227l0-0.003-2.987-361.387c0.237-17.577 14.423-31.763 31.977-32l0.023-0c0.127-0.002 0.277-0.003 0.427-0.003 17.437 0 31.573 14.136 31.573 31.573 0 0.001-0 0.002-0 0.003l0-0 2.987 361.813c0.014 0.613 0.022 1.335 0.022 2.059 0 35.442-19.206 66.398-47.778 83.028l-0.458 0.246c-13.888 8.444-30.681 13.443-48.64 13.443s-34.752-4.998-49.061-13.68l0.421 0.237-85.333-48.64c-28.009-16.484-46.509-46.481-46.509-80.799 0-0.244 0.001-0.488 0.003-0.731l-0 0.037v-369.067c0.493-28.712 16.159-53.657 39.305-67.211l0.375-0.203 326.4-188.16c11.25-6.653 24.793-10.584 39.253-10.584s28.004 3.931 39.618 10.783l-0.364-0.199 326.4 188.16c23.759 13.9 39.506 39.225 39.68 68.242l0 0.025v377.173c-0.174 29.042-15.921 54.366-39.305 68.064l-0.375 0.203-326.4 188.16c-10.715 6.188-23.568 9.839-37.274 9.839-0.696 0-1.39-0.009-2.082-0.028l0.102 0.002zM737.28 537.173c-6.467-12.259-15.395-22.414-26.193-30.117l-0.26-0.176c-12.272-8.183-26.418-15.002-41.488-19.734l-1.179-0.319c-14.454-5.419-32.443-10.706-50.875-14.819l-2.885-0.541-33.707-9.387c-7.786-2.14-14.591-5.054-20.88-8.751l0.4 0.218c-6.383-3.157-11.681-7.635-15.704-13.108l-0.083-0.118c-3.474-4.725-5.559-10.658-5.559-17.078 0-0.296 0.004-0.591 0.013-0.885l-0.001 0.043c0.198-12.256 6.746-22.941 16.49-28.928l0.15-0.086c11.589-7.762 25.849-12.388 41.188-12.388 0.52 0 1.038 0.005 1.556 0.016l-0.077-0.001c1.553-0.127 3.363-0.199 5.189-0.199 13.961 0 26.936 4.217 37.723 11.447l-0.245-0.155c9.582 8.55 17.347 18.909 22.797 30.568l0.243 0.579c3.844 7.657 8.394 14.251 13.72 20.128l-0.067-0.075c4.638 3.752 10.608 6.024 17.109 6.024 0.586 0 1.167-0.018 1.743-0.055l-0.079 0.004c0.137 0.002 0.299 0.004 0.461 0.004 8.725 0 16.523-3.968 21.688-10.197l0.038-0.047c5.549-5.87 8.96-13.811 8.96-22.549 0-0.023-0-0.045-0-0.068l0 0.004c0.435-2.851 0.684-6.141 0.684-9.489 0-6.812-1.030-13.383-2.942-19.566l0.125 0.468c-5.696-10.99-13.295-20.224-22.45-27.606l-0.164-0.128c-11.033-9.338-24.126-16.64-38.464-21.121l-0.789-0.212c-15.375-5.177-33.081-8.165-51.485-8.165-1.55 0-3.096 0.021-4.636 0.063l0.227-0.005c-2.685-0.14-5.83-0.221-8.993-0.221-22.334 0-43.736 3.991-63.532 11.298l1.271-0.411c-18.814 7.122-34.449 19.047-45.891 34.297l-0.189 0.263c-9.884 14.243-15.789 31.895-15.789 50.928 0 0.246 0.001 0.491 0.003 0.737l-0-0.038c-0.031 0.839-0.048 1.824-0.048 2.813 0 18 5.775 34.651 15.574 48.201l-0.166-0.241c10.338 13.949 23.837 24.985 39.474 32.166l0.632 0.26c17.936 7.947 39.162 14.988 61.155 20.015l2.418 0.465c18.212 4.004 33.212 8.264 47.858 13.284l-3.058-0.911c10.863 3.457 20.165 9.179 27.741 16.648l-0.008-0.008c6.617 7.071 10.681 16.603 10.681 27.085 0 0.378-0.005 0.755-0.016 1.131l0.001-0.055c0.002 0.152 0.003 0.331 0.003 0.51 0 15.186-7.933 28.518-19.881 36.080l-0.175 0.103c-13.155 9.398-29.564 15.027-47.288 15.027-1.376 0-2.744-0.034-4.103-0.101l0.191 0.008c-0.775 0.025-1.687 0.040-2.602 0.040-12.494 0-24.362-2.685-35.056-7.51l0.538 0.217c-8.839-4.5-16.149-10.854-21.637-18.591l-0.123-0.183c-5.369-7.971-10.238-17.1-14.144-26.722l-0.363-1.012c-2.993-8.315-7.502-15.432-13.241-21.348l0.014 0.015c-4.854-4.5-11.376-7.261-18.543-7.261-0.231 0-0.462 0.003-0.691 0.009l0.034-0.001c-0.273-0.009-0.593-0.014-0.915-0.014-8.471 0-16.141 3.429-21.699 8.974l0.001-0.001c-5.54 5.62-8.962 13.341-8.962 21.862 0 0.114 0.001 0.228 0.002 0.342l-0-0.017c0.456 17.272 5.975 33.169 15.119 46.363l-0.185-0.283c9.843 15.532 22.897 28.177 38.301 37.26l0.526 0.287c22.853 12.436 50.046 19.748 78.948 19.748 2.246 0 4.481-0.044 6.705-0.132l-0.32 0.010c2.46 0.123 5.341 0.194 8.239 0.194 24.278 0 47.404-4.934 68.429-13.853l-1.149 0.433c19.702-8.363 35.922-21.702 47.551-38.467l0.236-0.36c10.176-15.802 16.222-35.099 16.222-55.808 0-0.48-0.003-0.959-0.010-1.438l0.001 0.072c0.052-1.188 0.082-2.582 0.082-3.983 0-15.15-3.494-29.485-9.72-42.241l0.251 0.57z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["js-2"]},"attrs":[{}],"properties":{"order":6725,"id":239,"name":"js-2","prevSize":32,"code":59981},"setIdx":0,"setId":0,"iconIdx":333},{"icon":{"paths":["M448.853 738.133c-1.41 0.199-3.038 0.312-4.693 0.312s-3.284-0.114-4.878-0.333l0.185 0.021-132.693-39.68c-13.45-4.155-23.053-16.477-23.053-31.042 0-3.23 0.472-6.35 1.352-9.294l-0.059 0.23c4.006-13.422 16.24-23.040 30.72-23.040 3.193 0 6.277 0.468 9.187 1.338l-0.227-0.058 91.733 27.307v-334.080c-0.136-1.115-0.213-2.405-0.213-3.713 0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427c0 1.309-0.078 2.599-0.228 3.867l0.015-0.153v375.893c0 0.001 0 0.002 0 0.003 0 10.561-4.983 19.957-12.725 25.967l-0.075 0.056c-5.232 3.995-11.864 6.4-19.058 6.4-0.050 0-0.1-0-0.15-0l0.008 0zM579.413 728.32l128-37.547c13.422-4.006 23.040-16.24 23.040-30.72v-128c0-0.027 0-0.058 0-0.090 0-9.58-4.101-18.203-10.643-24.208l-0.024-0.022c-5.663-4.949-13.124-7.968-21.29-7.968-1.52 0-3.016 0.105-4.48 0.307l0.17-0.019-91.733 11.947v-144.64l110.933-17.493c15.53-2.596 27.221-15.936 27.221-32.006 0-1.654-0.124-3.279-0.363-4.866l0.022 0.179c-2.78-15.564-16.212-27.226-32.368-27.226-1.677 0-3.324 0.126-4.933 0.368l0.181-0.022-137.813 21.76c-15.54 2.368-27.309 15.637-27.309 31.654 0 0.122 0.001 0.243 0.002 0.364l-0-0.018v209.92c-0 0.018-0 0.040-0 0.061 0 9.542 4.29 18.081 11.047 23.794l0.046 0.038c5.382 4.98 12.609 8.035 20.549 8.035 1.632 0 3.234-0.129 4.797-0.378l-0.172 0.023 93.44-11.52v65.707l-106.24 30.72c-11.923 4.97-20.151 16.531-20.151 30.013 0 17.909 14.518 32.427 32.427 32.427 2.147 0 4.246-0.209 6.277-0.607l-0.205 0.034zM512 970.667c-0.221 0.001-0.481 0.002-0.742 0.002-13.431 0-26.389-2.028-38.583-5.795l0.925 0.246-202.667-58.027c-54.057-15.73-94.008-61.994-100.211-118.417l-0.056-0.623-60.16-581.547c-0.422-4.083-0.662-8.823-0.662-13.619 0-35.965 13.525-68.77 35.766-93.608l-0.118 0.134c25.495-28.339 62.29-46.080 103.229-46.080 0.009 0 0.017 0 0.026 0l526.505-0c0.086-0 0.188-0 0.29-0 76.583 0 138.667 62.083 138.667 138.667 0 4.959-0.26 9.857-0.768 14.682l0.051-0.602-60.16 581.547c-5.667 57.265-45.645 103.854-98.867 119.226l-0.973 0.241-203.947 58.027c-11.151 3.519-23.975 5.547-37.273 5.547-0.096 0-0.193-0-0.289-0l0.015 0zM248.747 117.333c-41.474 0.308-74.976 34.001-74.976 75.518 0 2.404 0.112 4.782 0.332 7.129l-0.023-0.3 60.587 581.547c3.311 30.648 24.741 55.522 53.232 63.867l0.528 0.133 202.667 58.453c6.388 1.941 13.73 3.058 21.333 3.058s14.945-1.117 21.871-3.196l-0.538 0.139 203.947-58.453c29.084-8.373 50.567-33.304 53.733-63.68l0.027-0.32 59.733-581.547c0.197-2.046 0.309-4.424 0.309-6.829 0-41.517-33.502-75.21-74.947-75.518l-0.029-0zM745.387 875.947v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["js"]},"attrs":[{}],"properties":{"order":6726,"id":238,"name":"js","prevSize":32,"code":59982},"setIdx":0,"setId":0,"iconIdx":334},{"icon":{"paths":["M373.333 970.667h-213.333c-58.91 0-106.667-47.756-106.667-106.667v0-704c0-58.91 47.756-106.667 106.667-106.667v0h213.333c58.91 0 106.667 47.756 106.667 106.667v0 704c0 58.91-47.756 106.667-106.667 106.667v0zM160 117.333c-23.564 0-42.667 19.103-42.667 42.667v0 704c0 23.564 19.103 42.667 42.667 42.667v0h213.333c23.564 0 42.667-19.103 42.667-42.667v0-704c0-23.564-19.103-42.667-42.667-42.667v0zM864 672h-213.333c-58.91 0-106.667-47.756-106.667-106.667v0-405.333c0-58.91 47.756-106.667 106.667-106.667v0h213.333c58.91 0 106.667 47.756 106.667 106.667v0 405.333c0 58.91-47.756 106.667-106.667 106.667v0zM650.667 117.333c-23.564 0-42.667 19.103-42.667 42.667v0 405.333c0 23.564 19.103 42.667 42.667 42.667v0h213.333c23.564 0 42.667-19.103 42.667-42.667v0-405.333c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["kanban"]},"attrs":[{}],"properties":{"order":6727,"id":237,"name":"kanban","prevSize":32,"code":59983},"setIdx":0,"setId":0,"iconIdx":335},{"icon":{"paths":["M718.507 970.667h-413.013c-139.167-0.242-251.918-112.993-252.16-252.137l-0-0.023v-413.013c0.242-139.167 112.993-251.918 252.137-252.16l0.023-0h413.013c139.167 0.242 251.918 112.993 252.16 252.137l0 0.023v413.013c-0.242 139.167-112.993 251.918-252.137 252.16l-0.023 0zM305.493 117.333c-103.82 0.242-187.918 84.34-188.16 188.137l-0 0.023v413.013c0.242 103.82 84.34 187.918 188.137 188.16l0.023 0h413.013c103.82-0.242 187.918-84.34 188.16-188.137l0-0.023v-413.013c-0.242-103.82-84.34-187.918-188.137-188.16l-0.023-0zM370.347 793.6h-12.8l-63.147-12.8c-25.975-4.803-46.18-24.865-51.135-50.373l-0.065-0.401-11.947-63.147c-0.769-3.747-1.209-8.054-1.209-12.463 0-17.763 7.141-33.857 18.709-45.57l-0.007 0.007 110.507-110.507c-3.581-14.869-5.635-31.94-5.635-49.49 0-121.591 98.569-220.16 220.16-220.16s220.16 98.569 220.16 220.16c0 121.591-98.569 220.16-220.16 220.16-0.419 0-0.838-0.001-1.257-0.004l0.065 0c-0.041 0-0.089 0-0.138 0-17.031 0-33.626-1.865-49.592-5.402l1.517 0.282-108.8 110.933c-11.389 11.592-27.231 18.775-44.751 18.775-0.167 0-0.334-0.001-0.501-0.002l0.026 0zM574.293 294.4c-0-0-0-0-0.001-0-86.095 0-155.917 69.672-156.159 155.71l-0 0.023c0.281 17.053 3.384 33.294 8.862 48.396l-0.328-1.036c0.87 2.773 1.371 5.962 1.371 9.268 0 8.889-3.624 16.931-9.476 22.73l-0.002 0.002-123.733 123.733 12.373 63.573 63.573 12.8 124.16-123.307c5.661-5.79 13.55-9.38 22.278-9.38 3.635 0 7.124 0.623 10.367 1.767l-0.218-0.067c14.284 4.553 30.716 7.201 47.76 7.253l0.027 0c86.009 0 155.733-69.724 155.733-155.733s-69.724-155.733-155.733-155.733v0zM574.293 543.573c-51.605 0-93.44-41.835-93.44-93.44s41.835-93.44 93.44-93.44c51.605 0 93.44 41.835 93.44 93.44l0 0c-0.241 51.508-41.932 93.199-93.417 93.44l-0.023 0zM574.293 420.693c-16.259 0-29.44 13.181-29.44 29.44s13.181 29.44 29.44 29.44h0c16.259 0 29.44-13.181 29.44-29.44s-13.181-29.44-29.44-29.44h-0zM466.773 725.333c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-46.507-42.667c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 46.080 42.667c5.741 5.54 13.565 8.954 22.186 8.96l0.001 0c0.418 0.020 0.908 0.031 1.4 0.031 8.59 0 16.38-3.431 22.072-8.997l-0.006 0.006z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["key-square"]},"attrs":[{}],"properties":{"order":6728,"id":236,"name":"key-square","prevSize":32,"code":59984},"setIdx":0,"setId":0,"iconIdx":336},{"icon":{"paths":["M617.813 57.173c-194.071 0.243-351.331 157.502-351.573 351.55l-0 0.023c0.067 31.104 4.11 61.233 11.647 89.947l-0.553-2.481-197.12 197.12c-15.82 15.502-25.627 37.089-25.627 60.967 0 6.058 0.631 11.969 1.832 17.67l-0.098-0.556 20.907 107.52c6.939 34.885 33.877 61.967 68.128 69.023l0.565 0.097 110.080 20.907c2.561 0.311 5.526 0.489 8.533 0.489s5.972-0.178 8.886-0.523l-0.353 0.034c0.148 0.001 0.323 0.001 0.498 0.001 23.865 0 45.442-9.797 60.928-25.588l0.013-0.014 196.693-196.267c26.595 7.316 57.133 11.52 88.653 11.52 0.033 0 0.066-0 0.098-0l-0.005 0c194.169 0 351.573-157.405 351.573-351.573s-157.405-351.573-351.573-351.573v0zM617.813 697.173c-31.634-0.136-61.984-5.436-90.315-15.098l1.995 0.591c-2.993-1.037-6.443-1.636-10.032-1.636-8.753 0-16.674 3.562-22.393 9.315l-0.002 0.002-101.547 101.12-69.12-66.133c-4.917-3.234-10.945-5.159-17.422-5.159-17.673 0-32 14.327-32 32 0 7.446 2.543 14.298 6.808 19.735l-0.053-0.070 67.84 65.28-64.427 62.72c-4.24 4.21-10.082 6.811-16.531 6.811-1.547 0-3.060-0.15-4.523-0.436l0.148 0.024-107.947-21.333c-9.371-1.695-16.651-8.976-18.326-18.209l-0.021-0.138-20.907-107.093c-0.202-1.189-0.318-2.558-0.318-3.955 0-6.566 2.557-12.534 6.73-16.964l-0.012 0.012 210.347-210.347c5.882-5.87 9.521-13.987 9.521-22.953 0-3.38-0.517-6.64-1.477-9.703l0.062 0.23c-8.555-26.011-13.489-55.949-13.489-87.040 0-158.822 128.751-287.573 287.573-287.573s287.573 128.751 287.573 287.573c0 158.822-128.751 287.573-287.573 287.573-0.058 0-0.116-0-0.174-0l0.009 0zM617.813 272.64c-0.127-0-0.277-0.001-0.427-0.001-75.641 0-136.96 61.319-136.96 136.96s61.319 136.96 136.96 136.96c75.641 0 136.96-61.319 136.96-136.959l0-0c0.002-0.254 0.003-0.554 0.003-0.854 0-75.492-61.078-136.718-136.513-136.959l-0.023-0zM617.813 482.133c-0.126 0.001-0.276 0.001-0.425 0.001-40.295 0-72.96-32.665-72.96-72.96s32.665-72.96 72.96-72.96c40.295 0 72.96 32.665 72.96 72.96 0 0.15-0 0.299-0.001 0.448l0-0.023c-0.716 39.595-32.867 71.447-72.511 71.68l-0.023 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["key"]},"attrs":[{}],"properties":{"order":6729,"id":235,"name":"key","prevSize":32,"code":59985},"setIdx":0,"setId":0,"iconIdx":337},{"icon":{"paths":["M887.467 345.173h-341.333v-14.933c-0.001-0.127-0.002-0.277-0.002-0.427 0-32.519 26.361-58.88 58.88-58.88 0.001 0 0.001 0 0.002 0l20.907-0c66.941-1.199 120.747-55.747 120.747-122.861 0-0.007-0-0.013-0-0.020l0 0.001v-27.733c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 27.733c0 32.519-26.361 58.88-58.88 58.88v0h-20.907c-67.917 0.243-122.88 55.356-122.88 123.306 0 0 0 0.001 0 0.001l-0-0v14.933h-341.333c-0.026-0-0.056-0-0.086-0-45.778 0-83.136 36.047-85.24 81.304l-0.007 0.189v457.813c1.192 46.201 38.928 83.2 85.307 83.2 0.009 0 0.019-0 0.028-0l748.799 0c45.477-1.159 82.041-37.724 83.198-83.091l0.002-0.109v-457.813c-2.065-44.746-38.295-80.381-83.094-81.491l-0.106-0.002zM906.667 884.48c-0 10.604-8.596 19.2-19.2 19.2l0 0h-750.933c-10.604-0-19.2-8.596-19.2-19.2v0-457.813c0-10.604 8.596-19.2 19.2-19.2v0h750.933c10.604 0 19.2 8.596 19.2 19.2h0zM671.147 675.84c0 17.202-13.945 31.147-31.147 31.147s-31.147-13.945-31.147-31.147c0-17.202 13.945-31.147 31.147-31.147v0c17.202 0 31.147 13.945 31.147 31.147v0zM597.333 516.693c17.202 0 31.147 13.945 31.147 31.147s-13.945 31.147-31.147 31.147c-17.202 0-31.147-13.945-31.147-31.147v0c0-17.202 13.945-31.147 31.147-31.147v0zM543.147 675.84c0 17.202-13.945 31.147-31.147 31.147s-31.147-13.945-31.147-31.147c0-17.202 13.945-31.147 31.147-31.147v0c17.202 0 31.147 13.945 31.147 31.147v0zM469.333 516.693c17.202 0 31.147 13.945 31.147 31.147s-13.945 31.147-31.147 31.147c-17.202 0-31.147-13.945-31.147-31.147v0c0-17.202 13.945-31.147 31.147-31.147v0zM213.333 516.693c17.202 0 31.147 13.945 31.147 31.147s-13.945 31.147-31.147 31.147c-17.202 0-31.147-13.945-31.147-31.147v0c0-17.202 13.945-31.147 31.147-31.147h0zM261.12 835.84h-52.907c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.907c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM261.12 707.84h-52.907c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.907c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM310.187 547.84c0-17.202 13.945-31.147 31.147-31.147s31.147 13.945 31.147 31.147c0 17.202-13.945 31.147-31.147 31.147h0c-17.202 0-31.147-13.945-31.147-31.147v0zM384 644.693c17.202 0 31.147 13.945 31.147 31.147s-13.945 31.147-31.147 31.147c-17.202 0-31.147-13.945-31.147-31.147v0c0-17.202 13.945-31.147 31.147-31.147v0zM682.667 835.84h-292.267c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h292.267c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM810.667 835.84c-17.202 0-31.147-13.945-31.147-31.147s13.945-31.147 31.147-31.147c17.202 0 31.147 13.945 31.147 31.147l-0-0c-0.476 16.831-14.233 30.293-31.135 30.293-0.004 0-0.008-0-0.012-0l0.001 0zM810.667 707.84h-52.48c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.48c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM815.787 579.84h-90.453c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h90.453c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["keyboard"]},"attrs":[{}],"properties":{"order":6730,"id":234,"name":"keyboard","prevSize":32,"code":59986},"setIdx":0,"setId":0,"iconIdx":338},{"icon":{"paths":["M896 757.333h-768c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-462.933c0-44.772 36.295-81.067 81.067-81.067v0h669.867c44.772 0 81.067 36.295 81.067 81.067v0 462.933c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0zM160 693.333h704v-430.933c0-9.426-7.641-17.067-17.067-17.067v0h-669.867c-9.426 0-17.067 7.641-17.067 17.067v0zM970.667 834.987c0-17.673-14.327-32-32-32v0h-853.333c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h853.333c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["laptop"]},"attrs":[{}],"properties":{"order":6731,"id":233,"name":"laptop","prevSize":32,"code":59987},"setIdx":0,"setId":0,"iconIdx":339},{"icon":{"paths":["M958.293 276.907v0c-1.831-6.358-4.156-11.879-7.035-17.048l0.209 0.408c-3.806-5.795-8.026-10.829-12.763-15.325l-0.037-0.035c-4.451-4.576-9.499-8.537-15.026-11.767l-0.334-0.18-122.453-72.96c-10.699-6.33-23.579-10.070-37.333-10.070s-26.634 3.74-37.679 10.259l0.346-0.189-124.587 70.827c-11.299 6.804-20.503 16.007-27.109 26.954l-0.197 0.352c-6.171 10.593-9.814 23.316-9.814 36.889 0 0.081 0 0.162 0 0.243l-0-0.013v146.347l-100.267 56.32v-293.973c-0.057-14.183-4.016-27.43-10.856-38.738l0.19 0.338c-0.827-1.465-1.674-2.72-2.608-3.903l0.048 0.063c-2.94-4.3-6.026-8.064-9.406-11.54l0.019 0.020c-4.369-4.504-9.269-8.453-14.608-11.759l-0.325-0.188-128-69.547c-10.399-5.841-22.824-9.281-36.053-9.281s-25.654 3.44-36.43 9.475l0.377-0.194-125.013 69.973s-2.56 0-3.84 2.56c-4.674 2.805-8.719 5.764-12.473 9.046l0.1-0.086c-2.421 2.559-4.666 5.345-6.678 8.302l-0.148 0.231s-3.84 4.267-5.547 6.827v0c-6.33 10.772-10.117 23.704-10.24 37.511l-0 0.035v522.24c0.16 27.555 15.053 51.596 37.195 64.661l0.352 0.192 290.56 165.12c10.407 6.171 22.94 9.818 36.324 9.818 0.28 0 0.559-0.002 0.838-0.005l-0.042 0c1.278 0.113 2.765 0.178 4.267 0.178s2.989-0.065 4.458-0.191l-0.191 0.013c1.595 0.112 3.457 0.176 5.333 0.176s3.738-0.064 5.583-0.189l-0.25 0.014c6.803-1.831 12.764-4.459 18.204-7.845l-0.284 0.165 292.267-170.667c22.356-13.178 37.121-37.135 37.121-64.54 0-0.11-0-0.22-0.001-0.33l0 0.017v-145.92l128-75.093c22.205-13.281 36.895-37.113 37.12-64.394l0-0.032v-140.373c0.106-1.458 0.166-3.16 0.166-4.875 0-5.071-0.527-10.018-1.528-14.792l0.082 0.467zM518.827 660.907l-89.6 51.627-104.107-63.147 122.453-67.84 148.48-85.333 103.253 60.16zM732.16 502.613l-102.827-59.733v-115.627l102.827 60.587zM796.16 502.613v-114.773l99.84-60.16v108.8c0 0.027 0 0.059 0 0.092 0 3.77-2.038 7.065-5.072 8.842l-0.048 0.026zM768 213.333l96.853 56.747-101.547 62.72-103.253-61.44 97.707-58.027c1.508-0.675 3.268-1.069 5.12-1.069s3.612 0.393 5.201 1.101l-0.081-0.032zM292.693 593.92l-2.987-301.227 110.507-60.16v301.653zM261.547 124.587c0.768-0.207 1.65-0.325 2.56-0.325s1.792 0.119 2.631 0.341l-0.071-0.016 98.56 54.187-42.667 22.187-65.707 35.84-97.28-57.6 96.427-54.187c1.535-0.808 3.354-1.283 5.283-1.283 0.093 0 0.185 0.001 0.277 0.003l-0.014-0zM133.547 734.293c-3.309-1.624-5.547-4.97-5.547-8.838 0-0.043 0-0.086 0.001-0.129l-0 0.007v-491.093l97.707 58.027 3.84 356.267c-0.187 1.282-0.294 2.762-0.294 4.267s0.107 2.985 0.313 4.433l-0.019-0.166c0.509 2.748 1.248 5.18 2.222 7.489l-0.088-0.235c1.829 2.616 3.942 4.865 6.336 6.777l0.064 0.049 4.693 4.693 154.027 92.16v116.907zM725.333 728.747l-264.533 154.453v-115.2l270.507-154.453v106.667c-0.303 3.801-2.639 6.992-5.91 8.507l-0.063 0.026z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["laravel"]},"attrs":[{}],"properties":{"order":6732,"id":232,"name":"laravel","prevSize":32,"code":59988},"setIdx":0,"setId":0,"iconIdx":340},{"icon":{"paths":["M690.773 970.667h-357.547c-154.581-0-279.893-125.313-279.893-279.893l0 0v-357.547c-0-154.581 125.313-279.893 279.893-279.893l0 0h357.547c154.581-0 279.893 125.313 279.893 279.893l0 0v357.547c-0 154.581-125.313 279.893-279.893 279.893l0 0zM333.227 117.333c-119.137 0.242-215.651 96.756-215.893 215.87l-0 0.023v357.547c0.242 119.137 96.756 215.651 215.87 215.893l0.023 0h357.547c119.137-0.242 215.651-96.756 215.893-215.87l0-0.023v-357.547c-0.242-119.137-96.756-215.651-215.87-215.893l-0.023-0zM584.96 695.040c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002-118.187-122.88 124.587-119.467c6.789-7.525 10.942-17.543 10.942-28.531 0-23.564-19.103-42.667-42.667-42.667-10.349 0-19.838 3.685-27.226 9.814l0.070-0.057-155.733 146.773c-7.921 7.555-12.934 18.098-13.226 29.813l-0.001 0.053c-0.003 0.202-0.005 0.44-0.005 0.678 0 11.509 4.557 21.953 11.964 29.628l-0.012-0.013 148.907 155.733c7.785 8.156 18.742 13.227 30.883 13.227 0.093 0 0.185-0 0.278-0.001l-0.014 0c11.445-0.047 21.818-4.593 29.453-11.959l-0.013 0.012z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["left-square"]},"attrs":[{}],"properties":{"order":6733,"id":231,"name":"left-square","prevSize":32,"code":59989},"setIdx":0,"setId":0,"iconIdx":341},{"icon":{"paths":["M614.827 810.667c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007-252.587-253.867c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 252.587-253.013c7.753-7.753 18.463-12.548 30.293-12.548 23.661 0 42.841 19.181 42.841 42.841 0 11.83-4.795 22.541-12.548 30.293l-0 0-222.72 220.587 222.72 222.72c9.894 7.884 16.18 19.933 16.18 33.45 0 23.564-19.103 42.667-42.667 42.667-1.34 0-2.666-0.062-3.975-0.183l0.168 0.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["left"]},"attrs":[{}],"properties":{"order":6734,"id":230,"name":"left","prevSize":32,"code":59990},"setIdx":0,"setId":0,"iconIdx":342},{"icon":{"paths":["M512 972.8v0c-36.204-0.505-68.701-15.964-91.669-40.463l-0.065-0.070-72.96-78.933c-11.417-12.276-27.629-19.959-45.636-20.053l-0.017-0h-49.067c-86.383-0.242-156.345-70.204-156.587-156.563l-0-0.023v-469.333c0.483-86.2 70.353-155.92 156.564-156.16l0.023-0h518.827c86.383 0.242 156.345 70.204 156.587 156.563l0 0.023v469.333c-0.242 86.383-70.204 156.345-156.563 156.587l-0.023 0h-46.080c-16.867 0.824-31.868 8.191-42.638 19.596l-0.028 0.030-77.227 80.64c-23.288 23.966-55.826 38.837-91.836 38.837-0.564 0-1.127-0.004-1.689-0.011l0.085 0.001zM252.587 115.2c-51.134 0-92.587 41.452-92.587 92.587v0 469.333c0.959 50.395 42.037 90.88 92.571 90.88 0.006 0 0.011-0 0.017-0l49.066 0c36.811 0.845 69.665 17.102 92.481 42.546l0.106 0.12 72.533 78.507c11.321 12.092 27.382 19.627 45.203 19.627 0.009 0 0.017-0 0.026-0l-0.001 0c17.884-0.762 33.961-7.925 46.124-19.241l-0.044 0.041 77.227-78.933c22.353-24.974 54.165-41.082 89.755-42.657l0.271-0.010h42.667c51.134 0 92.587-41.452 92.587-92.587v0-469.333c-0.902-49.232-40.095-89.021-89.003-90.875l-0.171-0.005zM512 667.307c-15.623-0.415-30.243-4.309-43.24-10.932l0.574 0.265c-53.333-25.173-177.067-99.413-174.933-234.24 0.183-69.771 47.38-128.468 111.574-146.097l1.066-0.25c12.244-3.352 26.302-5.278 40.81-5.278 23.204 0 45.257 4.926 65.171 13.79l-1.021-0.406c18.907-8.361 40.957-13.228 64.143-13.228 18.578 0 36.427 3.125 53.049 8.877l-1.139-0.343c60.199 20.991 102.651 77.195 102.827 143.339l0 0.021c-2.56 148.48-124.587 213.333-177.067 236.373-11.583 5.144-25.094 8.138-39.306 8.138-0.882 0-1.761-0.012-2.637-0.034l0.129 0.003zM448.853 334.933c-0.309-0.004-0.674-0.006-1.039-0.006-8.895 0-17.498 1.248-25.643 3.58l0.656-0.161c-38.103 10.182-65.707 44.391-65.707 85.047 0 0.101 0 0.201 0.001 0.302l-0-0.016c0 97.28 96.427 155.307 138.667 175.36 4.91 2.136 10.63 3.379 16.64 3.379s11.73-1.243 16.917-3.485l-0.277 0.106c42.667-17.067 135.68-68.267 137.813-178.347-1.926-36.567-25.607-67.144-58.262-79.161l-0.618-0.199c-9.375-3.293-20.184-5.196-31.437-5.196-16.586 0-32.207 4.133-45.89 11.425l0.527-0.256c-5.59 2.877-12.198 4.564-19.2 4.564s-13.61-1.687-19.44-4.676l0.24 0.112c-12.582-7.53-27.703-12.091-43.867-12.372l-0.079-0.001zM501.333 289.707v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-2"]},"attrs":[{}],"properties":{"order":6735,"id":229,"name":"like-2","prevSize":32,"code":59991},"setIdx":0,"setId":0,"iconIdx":343},{"icon":{"paths":["M938.667 372.907c-8.215-150.913-130.77-270.646-282.099-274.34l-0.355-0.007h-209.067c-21.88-27.606-55.39-45.17-93.004-45.227l-0.009-0h-91.733c-115.517 0.242-209.068 93.942-209.068 209.493 0 0.3 0.001 0.6 0.002 0.9l-0-0.046v464.64c-0.001 0.254-0.002 0.554-0.002 0.854 0 133.224 107.878 241.251 241.045 241.493l0.023 0h430.933c133.19-0.242 241.068-108.269 241.068-241.493 0-0.3-0.001-0.6-0.002-0.9l0 0.047v-244.053c-0.266-40.753-10.496-79.057-28.372-112.677l0.639 1.317zM839.68 271.36c-32.98-18.526-72.389-29.439-114.346-29.44l-135.254-0c-0.095 0-0.208 0-0.321 0-49.687 0-92.186-30.772-109.48-74.298l-0.279-0.796v-2.987h177.92c77.547 1.312 144.881 43.802 181.212 106.496l0.548 1.024zM901.12 728.32c0 0.127 0.001 0.278 0.001 0.429 0 97.256-78.599 176.154-175.741 176.638l-0.046 0h-430.933c-97.372-0.242-176.214-79.234-176.214-176.639 0-0.15 0-0.3 0.001-0.45l-0 0.023v-464.64c-0-0.127-0.001-0.277-0.001-0.427 0-79.733 64.515-144.397 144.191-144.639l0.023-0h91.733c0.135-0.001 0.295-0.002 0.455-0.002 22.473 0 41.673 14.011 49.341 33.774l0.123 0.361 15.36 38.4c27.352 68.52 93.151 116.054 170.052 116.054 0.216 0 0.432-0 0.649-0.001l-0.033 0h135.253c97.372 0.242 176.214 79.234 176.214 176.639 0 0.15-0 0.3-0.001 0.45l0-0.023zM503.467 713.387c-0.185 0.001-0.403 0.002-0.621 0.002-20.787 0-40.084-6.38-56.040-17.289l0.341 0.22c-71.68-48.213-105.813-98.987-105.813-145.493-0.083-1.583-0.13-3.437-0.13-5.302 0-57.412 44.819-104.355 101.378-107.75l0.299-0.014c0.009-0 0.019-0 0.030-0 24.746 0 47.256 9.576 64.025 25.224l-0.055-0.051c16.904-15.559 39.544-25.116 64.415-25.173l0.012-0c56.632 3.397 101.273 50.154 101.273 107.338 0 2.015-0.055 4.017-0.165 6.005l0.012-0.276c0 42.667-36.267 92.587-107.947 143.787-16.126 11.759-36.337 18.813-58.195 18.813-0.991 0-1.979-0.015-2.963-0.043l0.144 0.003zM440.747 503.040c-19.627 0-36.267 21.76-36.267 47.787s29.44 58.027 78.933 91.307c5.883 4.397 13.299 7.041 21.333 7.041s15.451-2.643 21.427-7.108l-0.094 0.067c59.307-42.667 80.64-75.947 80.64-90.88 0-26.027-16.64-47.787-36.267-47.787-12.726 0.75-23.533 8.28-28.923 19.001l-0.091 0.199c-7.363 11.966-20.187 19.953-34.912 20.478l-0.074 0.002c-14.799-0.527-27.624-8.514-34.881-20.296l-0.106-0.184c-5.712-11.508-17.269-19.342-30.683-19.626l-0.037-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-folder"]},"attrs":[{}],"properties":{"order":6736,"id":228,"name":"like-folder","prevSize":32,"code":59992},"setIdx":0,"setId":0,"iconIdx":344},{"icon":{"paths":["M512 970.667c-33.332-0.027-63.5-13.556-85.332-35.412l-0.001-0.001-60.16-60.16c-2.153-2.111-5.105-3.415-8.362-3.415-0.060 0-0.12 0-0.18 0.001l0.009-0h-85.333c-66.503-0.243-120.32-54.209-120.32-120.746 0-0 0-0.001 0-0.001l-0 0v-85.333c0.001-0.051 0.001-0.111 0.001-0.171 0-3.257-1.303-6.209-3.416-8.364l0.002 0.002-60.16-59.733c-21.72-21.893-35.143-52.045-35.143-85.333s13.423-63.441 35.151-85.341l-0.008 0.008 60.16-60.16c2.111-2.153 3.415-5.105 3.415-8.362 0-0.060-0-0.12-0.001-0.18l0 0.009v-85.333c0.243-66.503 54.209-120.32 120.746-120.32 0 0 0.001 0 0.001 0l85.333-0c0.051 0.001 0.111 0.001 0.171 0.001 3.257 0 6.209-1.303 8.364-3.416l-0.002 0.002 59.733-60.16c21.893-21.72 52.045-35.143 85.333-35.143s63.441 13.423 85.341 35.151l-0.008-0.008 60.16 60.16c2.153 2.111 5.105 3.415 8.362 3.415 0.060 0 0.12-0 0.18-0.001l-0.009 0h85.333c66.503 0.243 120.32 54.209 120.32 120.746 0 0-0 0.001-0 0.001l0-0v85.333c-0.001 0.051-0.001 0.111-0.001 0.171 0 3.257 1.303 6.209 3.416 8.364l-0.002-0.002 60.16 59.733c21.72 21.893 35.143 52.045 35.143 85.333s-13.423 63.441-35.151 85.341l0.008-0.008-60.16 60.16c-2.111 2.153-3.415 5.105-3.415 8.362 0 0.060 0 0.12 0.001 0.18l-0-0.009v85.333c-0 66.687-54.060 120.747-120.747 120.747v0h-85.333c-0.051-0.001-0.111-0.001-0.171-0.001-3.257 0-6.209 1.303-8.364 3.416l0.002-0.002-59.733 59.733c-21.834 21.857-52.001 35.386-85.328 35.413l-0.005 0zM273.067 216.32c-31.243 0.24-56.507 25.503-56.747 56.724l-0 0.023v85.333c0.003 0.244 0.005 0.533 0.005 0.821 0 20.722-8.49 39.461-22.181 52.929l-0.010 0.010-60.16 59.733c-10.258 10.267-16.601 24.446-16.601 40.107s6.344 29.839 16.602 40.107l-0-0 60.16 60.16c13.701 13.478 22.191 32.217 22.191 52.939 0 0.289-0.002 0.577-0.005 0.865l0-0.044v85.333c0.477 31.060 25.651 56.084 56.724 56.32l0.023 0h85.333c0.244-0.003 0.533-0.005 0.821-0.005 20.722 0 39.461 8.49 52.929 22.181l0.010 0.010 60.16 60.16c10.267 10.258 24.446 16.601 40.107 16.601s29.839-6.344 40.107-16.602l-0 0 60.16-60.16c13.478-13.701 32.217-22.191 52.939-22.191 0.289 0 0.577 0.002 0.865 0.005l-0.044-0h85.333c31.243-0.24 56.507-25.503 56.747-56.724l0-0.023v-85.333c-0.002-0.192-0.003-0.418-0.003-0.645 0-20.777 8.486-39.572 22.182-53.108l0.007-0.007 60.16-60.16c10.258-10.267 16.601-24.446 16.601-40.107s-6.344-29.839-16.602-40.107l0 0-61.013-59.733c-13.703-13.543-22.189-32.338-22.189-53.115 0-0.227 0.001-0.453 0.003-0.679l-0 0.035v-85.333c-0.477-31.060-25.651-56.084-56.724-56.32l-0.023-0h-85.333c-20.968-0.067-39.948-8.526-53.767-22.194l0.007 0.007-59.733-60.16c-10.267-10.258-24.446-16.601-40.107-16.601s-29.839 6.344-40.107 16.602l0-0-60.16 60.16c-13.543 13.703-32.338 22.189-53.115 22.189-0.227 0-0.453-0.001-0.679-0.003l0.035 0zM736.853 453.973c-12.623-16.399-32.137-26.957-54.13-27.306l-0.056-0.001h-74.24l8.96-52.053c0.747-4.044 1.174-8.697 1.174-13.45 0-42.887-34.767-77.653-77.653-77.653-26.919 0-50.639 13.697-64.57 34.502l-0.177 0.281-43.947 65.707c-11.082-10.058-25.865-16.216-42.085-16.216-0.204 0-0.409 0.001-0.612 0.003l0.031-0h-42.667c-35.582 0-64.427 28.845-64.427 64.427v0 218.88c0 35.582 28.845 64.427 64.427 64.427v-0h42.667c15.295-0.041 29.305-5.513 40.209-14.589l-0.102 0.083 27.733 22.187c16.209 11.737 36.49 18.773 58.414 18.773 0.014 0 0.027-0 0.041-0l103.251 0c0.112 0.001 0.245 0.001 0.379 0.001 34.819 0 64.286-22.917 74.14-54.491l0.148-0.55 52.48-172.8c2.116-6.234 3.338-13.415 3.338-20.881 0-14.757-4.772-28.4-12.857-39.469l0.132 0.19zM389.973 651.52h-42.667v-219.733h42.667v18.773c-0.213 1.219-0.334 2.622-0.334 4.053s0.122 2.835 0.355 4.2l-0.021-0.147v192zM632.747 668.16c-1.715 5.718-6.93 9.814-13.102 9.814-0.044 0-0.087-0-0.131-0.001l0.007 0h-103.253c-0.061 0-0.132 0.001-0.204 0.001-7.252 0-13.982-2.233-19.54-6.050l0.117 0.076-42.667-33.28v-170.667l75.093-114.347c2.256-3.848 6.371-6.391 11.080-6.391 2.022 0 3.935 0.469 5.636 1.304l-0.075-0.033c5.172 1.722 8.835 6.519 8.835 12.17 0 0.979-0.11 1.933-0.318 2.849l0.016-0.086-11.093 61.013c-0.374 2.446-0.587 5.269-0.587 8.141 0 30.646 24.294 55.619 54.674 56.71l0.1 0.003h68.267c0.016-0 0.035-0 0.053-0 6.834 0 12.373 5.54 12.373 12.373 0 1.216-0.175 2.391-0.502 3.501l0.022-0.087z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-shapes"]},"attrs":[{}],"properties":{"order":6737,"id":227,"name":"like-shapes","prevSize":32,"code":59993},"setIdx":0,"setId":0,"iconIdx":345},{"icon":{"paths":["M512 972.8v0c-36.204-0.505-68.701-15.964-91.669-40.463l-0.065-0.070-72.96-78.933c-11.417-12.276-27.629-19.959-45.636-20.053l-0.017-0h-49.067c-86.383-0.242-156.345-70.204-156.587-156.563l-0-0.023v-469.333c0.483-86.2 70.353-155.92 156.564-156.16l0.023-0h518.827c86.383 0.242 156.345 70.204 156.587 156.563l0 0.023v469.333c-0.242 86.383-70.204 156.345-156.563 156.587l-0.023 0h-46.080c-16.867 0.824-31.868 8.191-42.638 19.596l-0.028 0.030-77.227 80.64c-23.288 23.966-55.826 38.837-91.836 38.837-0.564 0-1.127-0.004-1.689-0.011l0.085 0.001zM252.587 115.2c-51.134 0-92.587 41.452-92.587 92.587v0 469.333c0.959 50.395 42.037 90.88 92.571 90.88 0.006 0 0.011-0 0.017-0l49.066 0c36.811 0.845 69.665 17.102 92.481 42.546l0.106 0.12 72.533 78.507c11.321 12.092 27.382 19.627 45.203 19.627 0.009 0 0.017-0 0.026-0l-0.001 0c17.871-0.841 33.926-7.987 46.13-19.246l-0.050 0.046 77.227-78.933c22.353-24.974 54.165-41.082 89.755-42.657l0.271-0.010h42.667c51.134 0 92.587-41.452 92.587-92.587v0-469.333c-0.902-49.232-40.095-89.021-89.003-90.875l-0.171-0.005zM730.453 386.133c-12.401-16.891-32.184-27.733-54.498-27.733-0.040 0-0.081 0-0.121 0l0.006-0h-73.813l9.387-52.48c0.972-4.61 1.529-9.907 1.529-15.333 0-42.887-34.767-77.653-77.653-77.653-27.706 0-52.023 14.51-65.766 36.345l-0.189 0.322-42.667 66.56c-11.13-10.546-26.096-17.142-42.598-17.492l-0.069-0.001h-42.667c-0.002-0-0.004-0-0.006-0-35.818 0-64.853 29.036-64.853 64.853 0 0.3 0.002 0.6 0.006 0.899l-0-0.045v218.88c0.242 35.634 29.184 64.427 64.852 64.427 0 0 0.001-0 0.001-0l42.667 0c15.295-0.041 29.305-5.513 40.209-14.589l-0.102 0.083 28.16 22.613c16.274 11.484 36.518 18.356 58.367 18.356 0.481 0 0.96-0.003 1.439-0.010l-0.073 0.001h102.827c0.112 0.001 0.245 0.001 0.379 0.001 34.819 0 64.286-22.917 74.14-54.491l0.148-0.55 52.907-170.667c1.914-5.964 3.017-12.824 3.017-19.942 0-16.1-5.644-30.882-15.062-42.475l0.098 0.124zM384 583.68h-42.667v-219.733h42.667v218.88zM627.2 600.32c-1.865 5.739-7.166 9.815-13.419 9.815-0.083 0-0.165-0.001-0.247-0.002l0.012 0h-101.547c-0.263 0.007-0.573 0.011-0.884 0.011-7.112 0-13.739-2.071-19.313-5.643l0.143 0.086-42.667-33.707v-170.667l75.52-114.347c2.023-3.891 6.024-6.503 10.634-6.503 2.041 0 3.962 0.512 5.643 1.414l-0.064-0.031c5.172 1.722 8.835 6.519 8.835 12.17 0 0.979-0.11 1.933-0.318 2.849l0.016-0.086-11.947 59.733c-0.548 2.949-0.861 6.343-0.861 9.809 0 13.856 5.004 26.543 13.302 36.353l-0.068-0.083c10.092 12.282 25.282 20.055 42.288 20.055 0.133 0 0.266-0 0.399-0.001l-0.020 0h82.773l3.84 5.12z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-tag"]},"attrs":[{}],"properties":{"order":6738,"id":226,"name":"like-tag","prevSize":32,"code":59994},"setIdx":0,"setId":0,"iconIdx":346},{"icon":{"paths":["M157.44 903.253h89.6c33.602-0.124 63.276-16.828 81.283-42.352l0.211-0.315 81.493 65.28c28.234 20.277 63.495 32.427 101.594 32.427 0.133 0 0.267-0 0.4-0l-0.021 0h216.32c0.025 0 0.054 0 0.084 0 57.294 0 105.796-37.643 122.123-89.547l0.246-0.907 110.933-361.813c2.995-9.446 4.722-20.31 4.722-31.576 0-59.327-47.86-107.476-107.077-107.943l-0.044-0h-173.653c-0.007 0-0.016 0-0.025 0-5.815 0-11.013-2.644-14.457-6.796l-0.025-0.031c-2.822-3.375-4.536-7.762-4.536-12.549 0-1.144 0.098-2.265 0.286-3.355l-0.017 0.117 22.613-128c1.424-7.093 2.239-15.248 2.239-23.593 0-53.211-33.132-98.684-79.891-116.914l-0.854-0.293c-14.402-5.882-31.11-9.324-48.615-9.387l-0.025-0c-43.907 0.538-82.429 23.1-105.093 57.131l-0.294 0.469-119.040 180.48c-15.885-35.125-50.558-59.156-90.86-59.307l-0.020-0h-89.6c-55.192 0.242-99.84 45.040-99.84 100.266 0 0 0 0.001 0 0.001l-0-0v458.667c0 55.14 44.7 99.84 99.84 99.84v0zM512 158.293c11.55-17.265 30.97-28.48 53.010-28.48 35.111 0 63.573 28.463 63.573 63.573 0 3.882-0.348 7.684-1.015 11.374l0.058-0.387-22.187 128c-0.845 4.442-1.329 9.551-1.329 14.773 0 20.254 7.274 38.809 19.353 53.194l-0.104-0.127c15.381 17.915 37.879 29.343 63.057 29.865l0.090 0.001h173.653c0.721-0.044 1.565-0.068 2.414-0.068 23.564 0 42.667 19.103 42.667 42.667 0 5.070-0.884 9.934-2.508 14.446l0.093-0.297-110.933 361.813c-7.574 27.511-32.369 47.384-61.806 47.384-0.622 0-1.241-0.009-1.859-0.026l0.091 0.002h-216.32c-0.359 0.004-0.783 0.007-1.207 0.007-23.208 0-44.699-7.353-62.27-19.857l0.33 0.223-101.12-81.92v-388.267zM121.6 344.747c-0.002-0.127-0.003-0.277-0.003-0.427 0-19.794 16.046-35.84 35.84-35.84 0.001 0 0.002 0 0.003 0l89.6-0c19.845 0.241 35.84 16.385 35.84 36.264 0 0.001-0 0.002-0 0.003l0-0v458.667c-0.238 19.698-16.142 35.602-35.817 35.84l-0.023 0h-89.6c-19.794 0-35.84-16.046-35.84-35.84v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like"]},"attrs":[{}],"properties":{"order":6739,"id":225,"name":"like","prevSize":32,"code":59995},"setIdx":0,"setId":0,"iconIdx":347},{"icon":{"paths":["M512 298.667c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM401.493 322.56c12.777-7.53 21.215-21.22 21.215-36.882 0-7.952-2.175-15.395-5.963-21.768l0.108 0.197-58.88-100.267c-7.693-11.965-20.938-19.777-36.007-19.777-23.564 0-42.667 19.103-42.667 42.667 0 7.23 1.798 14.040 4.972 20.008l-0.112-0.23 57.173 101.12c7.568 12.601 21.161 20.904 36.693 20.907l0 0c0.688 0.042 1.492 0.066 2.301 0.066 7.839 0 15.153-2.249 21.332-6.137l-0.166 0.098zM316.16 398.507c3.619-6.136 5.756-13.52 5.756-21.402 0-14.916-7.654-28.044-19.249-35.671l-0.161-0.099-89.173-54.187c-5.737-3.062-12.547-4.86-19.777-4.86-23.564 0-42.667 19.103-42.667 42.667 0 15.070 7.812 28.314 19.608 35.905l0.169 0.102 88.747 52.907c6.049 3.489 13.303 5.548 21.039 5.548 0.104 0 0.207-0 0.311-0.001l-0.016 0c0.124 0.001 0.271 0.002 0.418 0.002 15.536 0 29.133-8.304 36.595-20.716l0.107-0.193zM281.173 512c0-23.564-19.103-42.667-42.667-42.667v0h-93.013c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h93.013c23.564 0 42.667-19.103 42.667-42.667v0zM714.667 235.093c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667v0c23.564 0 42.667 19.103 42.667 42.667v0zM222.293 730.88l69.973-42.667c13.711-7.282 22.89-21.472 22.89-37.806 0-23.564-19.103-42.667-42.667-42.667-8.495 0-16.409 2.482-23.059 6.761l0.169-0.102-70.4 42.667c-12.599 7.57-20.898 21.164-20.898 36.696 0 8.028 2.217 15.537 6.072 21.951l-0.107-0.193c7.472 12.771 21.083 21.236 36.679 21.333l0.014 0c7.879-0.208 15.204-2.399 21.549-6.089l-0.216 0.116zM332.8 861.013c-8.085-0.382-15.443-3.208-21.429-7.749l0.095 0.069c-12.673-7.554-21.030-21.188-21.030-36.774 0-7.822 2.105-15.153 5.779-21.456l-0.109 0.203 35.413-60.587c7.848-10.702 20.375-17.572 34.506-17.572 23.564 0 42.667 19.103 42.667 42.667 0 6.368-1.395 12.409-3.896 17.837l0.109-0.265-35.413 60.16c-6.965 13.627-20.683 22.917-36.621 23.465l-0.072 0.002zM512 903.68c-23.564 0-42.667-19.103-42.667-42.667v0-58.027c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 58.027c0 23.564-19.103 42.667-42.667 42.667v0zM685.227 853.333c-15.61-0.097-29.222-8.562-36.584-21.132l-0.109-0.201-23.467-40.107c-5.099-6.945-8.16-15.662-8.16-25.095 0-23.564 19.103-42.667 42.667-42.667 17.197 0 32.017 10.173 38.771 24.83l0.109 0.265 23.467 40.107c3.748 6.22 5.965 13.73 5.965 21.758 0 15.532-8.299 29.126-20.705 36.588l-0.193 0.107c-6.265 3.491-13.743 5.547-21.701 5.547-0.021 0-0.041-0-0.062-0l0.003 0zM803.413 725.333c-0.212 0.004-0.462 0.006-0.713 0.006-7.739 0-14.997-2.060-21.254-5.662l0.207 0.11-29.867-17.92c-14.922-6.863-25.095-21.684-25.095-38.88 0-23.564 19.103-42.667 42.667-42.667 9.433 0 18.15 3.061 25.214 8.244l-0.119-0.083 29.867 17.493c12.777 7.53 21.215 21.22 21.215 36.882 0 7.952-2.175 15.395-5.963 21.768l0.108-0.197c-7.495 12.482-20.898 20.745-36.243 20.906l-0.023 0zM843.52 554.667h-23.040c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h23.040c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0zM782.933 395.52c-23.559-0.007-42.654-19.107-42.654-42.667 0-15.53 8.298-29.123 20.702-36.586l0.193-0.107 10.24-5.973c5.162-2.391 11.204-3.786 17.572-3.786 23.564 0 42.667 19.103 42.667 42.667 0 14.131-6.87 26.658-17.453 34.423l-0.119 0.083-9.813 5.973c-6.129 3.575-13.454 5.766-21.274 5.972l-0.060 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["loading"]},"attrs":[{}],"properties":{"order":6740,"id":224,"name":"loading","prevSize":32,"code":59996},"setIdx":0,"setId":0,"iconIdx":348},{"icon":{"paths":["M384 655.36c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667v0c23.564 0 42.667 19.103 42.667 42.667v0zM512 612.693c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c-0.241-23.38-19.25-42.24-42.665-42.24-0.001 0-0.002 0-0.002 0l0-0zM682.667 612.693c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM970.667 570.027v202.24c0 109.809-89.018 198.827-198.827 198.827h-519.68c-109.809 0-198.827-89.018-198.827-198.827v0-202.24c0.381-106.664 84.694-193.513 190.317-197.96l0.403-0.013v-55.467c0.484-127.673 103.974-231.012 231.657-231.253l0.023-0h72.533c127.856 0.242 231.437 103.824 231.68 231.656l0 0.024v55.467c105.878 4.453 190.104 91.064 190.72 197.486l0 0.060zM308.053 316.587v54.613h407.893v-54.613c0-92.607-75.073-167.68-167.68-167.68v0h-72.533c-92.607 0-167.68 75.073-167.68 167.68v0zM905.387 570.027c-0.242-74.365-60.461-134.585-134.804-134.827l-0.023-0h-518.4c-74.365 0.242-134.585 60.461-134.827 134.804l-0 0.023v202.24c0.242 74.365 60.461 134.585 134.804 134.827l0.023 0h519.68c74.365-0.242 134.585-60.461 134.827-134.804l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lock-2"]},"attrs":[{}],"properties":{"order":6741,"id":223,"name":"lock-2","prevSize":32,"code":59997},"setIdx":0,"setId":0,"iconIdx":349},{"icon":{"paths":["M512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c-0.243-253.217-205.45-458.424-458.644-458.667l-0.023-0zM512 906.667c-217.968 0-394.667-176.698-394.667-394.667s176.698-394.667 394.667-394.667c217.968 0 394.667 176.698 394.667 394.667v0c-0.243 217.87-176.796 394.424-394.643 394.667l-0.024 0zM669.013 416v-15.787c0-76.112-61.701-137.813-137.813-137.813v0h-38.4c-76.112 0-137.813 61.701-137.813 137.813h0v15.787c-56.619 10.298-98.987 59.23-98.987 118.056 0 0.046 0 0.092 0 0.137l-0-0.007v105.813c0 66.451 53.869 120.32 120.32 120.32v0h274.773c64.966-1.902 116.907-55.021 116.907-120.272 0-0.017-0-0.034-0-0.051l0 0.003v-105.813c0-0.039 0-0.084 0-0.13 0-58.827-42.367-107.758-98.253-117.946l-0.733-0.111zM492.8 326.4h38.4c40.669 0.24 73.573 33.144 73.813 73.79l0 0.023v13.653h-186.027v-13.653c0.24-40.669 33.144-73.573 73.79-73.813l0.023-0zM706.133 641.28c0 31.105-25.215 56.32-56.32 56.32v0h-275.2c-0.004 0-0.009 0-0.015 0-31.105 0-56.32-25.215-56.32-56.32 0-0.45 0.005-0.899 0.016-1.346l-0.001 0.066v-105.813c0-31.105 25.215-56.32 56.32-56.32v0h274.773c31.105 0 56.32 25.215 56.32 56.32v0zM512 512c-0.127-0.001-0.277-0.001-0.427-0.001-42.887 0-77.653 34.767-77.653 77.653s34.767 77.653 77.653 77.653c42.886 0 77.653-34.766 77.653-77.652l0-0c0-0 0-0.001 0-0.001 0-42.737-34.524-77.41-77.204-77.652l-0.023-0zM512 602.88c-0.125 0.004-0.272 0.006-0.42 0.006-7.541 0-13.653-6.113-13.653-13.653s6.113-13.653 13.653-13.653c7.541 0 13.653 6.113 13.653 13.653 0 0.148-0.002 0.295-0.007 0.442l0.001-0.021c-0.874 6.534-6.413 11.52-13.116 11.52-0.039 0-0.078-0-0.116-0.001l0.006 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lock-3"]},"attrs":[{}],"properties":{"order":6742,"id":222,"name":"lock-3","prevSize":32,"code":59998},"setIdx":0,"setId":0,"iconIdx":350},{"icon":{"paths":["M581.547 654.933c0 38.41-31.137 69.547-69.547 69.547s-69.547-31.137-69.547-69.547c0-38.41 31.137-69.547 69.547-69.547v-0c38.41 0 69.547 31.137 69.547 69.547l-0-0zM970.667 554.667v202.24c0 109.809-89.018 198.827-198.827 198.827h-519.68c-109.809 0-198.827-89.018-198.827-198.827v0-202.24c-0-0.049-0-0.107-0-0.165 0-106.958 84.455-194.19 190.317-198.648l0.403-0.013v-57.173c0.724-127.575 104.070-230.772 231.634-231.253l0.046-0h72.533c127.856 0.242 231.437 103.824 231.68 231.656l0 0.024v55.467c106.222 4.238 190.729 91.376 190.729 198.252 0 0.652-0.003 1.304-0.009 1.954l0.001-0.099zM308.053 298.667v56.32h407.893v-56.32c0-92.607-75.073-167.68-167.68-167.68v0h-72.533c-92.607 0-167.68 75.073-167.68 167.68v0zM905.387 552.107c-0.481-74.269-60.558-134.346-134.781-134.826l-0.046-0h-518.4c-74.571 0.478-134.837 61.040-134.837 135.677 0 0.601 0.004 1.201 0.012 1.8l-0.001-0.091v202.24c0.481 74.269 60.558 134.346 134.781 134.826l0.046 0h519.68c74.269-0.481 134.346-60.558 134.826-134.781l0-0.046zM677.547 653.227c0.013 0.761 0.020 1.659 0.020 2.558 0 91.9-74.5 166.4-166.4 166.4s-166.4-74.5-166.4-166.4c0-91.9 74.5-166.4 166.4-166.4 0.293 0 0.586 0.001 0.879 0.002l-0.045-0c91.429-0 165.547 74.118 165.547 165.547v0zM612.267 653.227c-0.964-55.34-46.052-99.832-101.532-99.832-56.083 0-101.547 45.464-101.547 101.547s45.464 101.547 101.547 101.547c0.445 0 0.889-0.003 1.333-0.009l-0.067 0.001c55.479-0.483 100.268-45.569 100.268-101.116 0-0.151-0-0.302-0.001-0.454l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lock"]},"attrs":[{}],"properties":{"order":6743,"id":221,"name":"lock","prevSize":32,"code":59999},"setIdx":0,"setId":0,"iconIdx":351},{"icon":{"paths":["M833.707 503.040h-61.867l-195.84-186.453c22.743-18.529 37.152-46.537 37.152-77.91 0-44.252-28.668-81.809-68.444-95.112l-0.708-0.205v-42.667c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 69.973c0 17.673 14.327 32 32 32v0c20.222 0.362 36.476 16.84 36.476 37.114 0 14.516-8.333 27.087-20.476 33.188l-0.214 0.097c-4.467-2.623-9.839-4.173-15.573-4.173s-11.106 1.549-15.72 4.252l0.147-0.080c-12.858-5.832-21.661-18.516-21.76-33.267l-0-0.013c0-17.673-14.327-32-32-32s-32 14.327-32 32v0c0.139 31.259 14.5 59.136 36.942 77.512l0.178 0.142-195.84 185.6h-61.867c-0-0-0.001-0-0.001-0-43.679 0-79.117 35.288-79.359 78.91l-0 0.023v292.267c0.241 43.732 35.628 79.119 79.337 79.36l0.023 0h643.413c43.732-0.241 79.119-35.628 79.36-79.337l0-0.023v-292.267c-0.242-43.645-35.68-78.933-79.359-78.933-0 0-0.001 0-0.001 0l0-0zM512 343.893l167.253 159.147h-334.507zM849.067 874.24c0 8.483-6.877 15.36-15.36 15.36v0h-643.413c-8.483 0-15.36-6.877-15.36-15.36h0v-292.267c0.238-8.298 7.021-14.933 15.354-14.933 0.002 0 0.004 0 0.006 0l643.413-0c0.002-0 0.004-0 0.006-0 8.333 0 15.116 6.636 15.354 14.911l0 0.022zM302.507 623.787v198.827c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-198.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM463.36 623.787v198.827c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-198.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM624.64 623.787v198.827c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-198.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM785.493 623.787v198.827c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-198.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["logistic"]},"attrs":[{}],"properties":{"order":6744,"id":220,"name":"logistic","prevSize":32,"code":60000},"setIdx":0,"setId":0,"iconIdx":352},{"icon":{"paths":["M357.973 577.707h-216.32c-48.778 0-88.32 39.542-88.32 88.32h-0v216.32c0 48.778 39.542 88.32 88.32 88.32h216.32c48.778 0 88.32-39.542 88.32-88.32v0-216.32c0.001-0.127 0.001-0.277 0.001-0.428 0-48.542-39.351-87.893-87.893-87.893-0.15 0-0.301 0-0.451 0.001l0.023-0zM384 882.347c0 13.432-10.888 24.32-24.32 24.32v0h-218.027c-13.336-0.235-24.085-10.984-24.32-24.298l-0-0.022v-216.32c-0.038-0.511-0.060-1.106-0.060-1.707 0-13.432 10.888-24.32 24.32-24.32 0.021 0 0.042 0 0.063 0l-0.003-0h42.667v23.040c0 23.564 19.103 42.667 42.667 42.667v0h42.667c23.564 0 42.667-19.103 42.667-42.667v0-23.040h42.667c0.128-0.002 0.279-0.004 0.431-0.004 13.196 0 23.893 10.697 23.893 23.893 0 0.151-0.001 0.302-0.004 0.453l0-0.023zM884.053 577.707h-218.027c-0.127-0.001-0.277-0.001-0.428-0.001-48.542 0-87.893 39.351-87.893 87.893 0 0.15 0 0.301 0.001 0.451l-0-0.023v216.32c0 48.778 39.542 88.32 88.32 88.32v0h216.32c48.778 0 88.32-39.542 88.32-88.32v0-216.32c0-48.778-39.542-88.32-88.32-88.32v0zM908.373 882.347c-0.235 13.336-10.984 24.085-24.298 24.32l-0.022 0h-218.027c-13.432 0-24.32-10.888-24.32-24.32v0-216.32c-0.002-0.128-0.004-0.279-0.004-0.431 0-13.196 10.697-23.893 23.893-23.893 0.151 0 0.302 0.001 0.453 0.004l-0.023-0h42.667v23.040c0 23.564 19.103 42.667 42.667 42.667v0h42.667c23.564 0 42.667-19.103 42.667-42.667v0-24.747h42.667c13.432 0 24.32 10.888 24.32 24.32v0zM357.973 53.333h-213.333c-0.127-0.001-0.277-0.001-0.427-0.001-50.192 0-90.88 40.688-90.88 90.88 0 0 0 0.001 0 0.001l0-0v213.333c0 48.778 39.542 88.32 88.32 88.32h216.32c0.127 0.001 0.277 0.001 0.428 0.001 48.542 0 87.893-39.351 87.893-87.893 0-0.15-0-0.301-0.001-0.451l0 0.023v-215.893c0-48.778-39.542-88.32-88.32-88.32v-0zM384 357.973c0.067 0.671 0.105 1.45 0.105 2.238 0 13.196-10.697 23.893-23.893 23.893-0.788 0-1.567-0.038-2.336-0.113l0.098 0.008h-216.32c-13.432 0-24.32-10.888-24.32-24.32h-0v-213.333c0-14.845 12.035-26.88 26.88-26.88v0h40.107v21.333c0 23.564 19.103 42.667 42.667 42.667v0h42.667c23.564 0 42.667-19.103 42.667-42.667v0-23.467h42.667c1.412-0.291 3.036-0.458 4.698-0.458 13.432 0 24.32 10.888 24.32 24.32 0 0.161-0.002 0.322-0.005 0.482l0-0.024zM882.347 53.333h-216.32c-48.778 0-88.32 39.542-88.32 88.32v-0 216.32c-0.001 0.127-0.001 0.277-0.001 0.428 0 48.542 39.351 87.893 87.893 87.893 0.15 0 0.301-0 0.451-0.001l-0.023 0h216.32c48.778 0 88.32-39.542 88.32-88.32v0-216.32c0-48.778-39.542-88.32-88.32-88.32v-0zM906.667 357.973c0 13.432-10.888 24.32-24.32 24.32v0h-216.32c-0.641 0.061-1.386 0.096-2.139 0.096-13.196 0-23.893-10.697-23.893-23.893 0-0.184 0.002-0.367 0.006-0.55l-0 0.027v-216.32c0-13.432 10.888-24.32 24.32-24.32v-0h42.667v23.467c0 23.564 19.103 42.667 42.667 42.667v0h42.667c23.564 0 42.667-19.103 42.667-42.667v0-23.467h42.667c13.336 0.235 24.085 10.984 24.32 24.298l0 0.022z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lots-shopping"]},"attrs":[{}],"properties":{"order":6745,"id":219,"name":"lots-shopping","prevSize":32,"code":60001},"setIdx":0,"setId":0,"iconIdx":353},{"icon":{"paths":["M903.253 443.733c3.422-19.669 5.724-42.776 6.385-66.294l0.015-0.693c-1.193-112.096-73.068-207.098-173.113-242.636l-1.82-0.564c-26.999-9.541-58.134-15.054-90.557-15.054-55.695 0-107.59 16.267-151.194 44.309l1.11-0.668c-42.487-27.29-94.346-43.504-149.992-43.504-25.556 0-50.313 3.42-73.839 9.827l1.965-0.456c-112.514 29.657-194.133 130.499-194.133 250.405 0 0.017 0 0.034 0 0.051l-0-0.003c-5.12 293.973 322.56 448 388.267 475.733 8.561 3.689 18.519 5.876 28.976 5.973l0.037 0c0.116 0.001 0.254 0.001 0.391 0.001 8.115 0 15.901-1.407 23.128-3.991l-0.48 0.15c9.387-3.413 23.040-8.107 39.253-15.36 30.558 22.021 65.328 41.996 102.102 58.268l3.712 1.466c6.934 2.936 14.994 4.657 23.453 4.693l0.014 0c0.136 0.001 0.296 0.002 0.457 0.002 6.406 0 12.557-1.095 18.275-3.107l-0.386 0.118c42.667-14.933 258.56-99.84 261.973-322.987-0.681-54.351-25.282-102.822-63.74-135.465l-0.26-0.215zM497.493 795.733s-2.56 0-5.973 0c-59.307-25.173-353.707-162.987-349.44-416-0.002-0.31-0.003-0.677-0.003-1.043 0-90.405 61.526-166.44 144.99-188.517l1.36-0.306c16.801-4.755 36.096-7.489 56.030-7.489 49.149 0 94.415 16.62 130.486 44.547l-0.489-0.364c5.365 3.967 12.111 6.349 19.413 6.349s14.048-2.382 19.503-6.413l-0.090 0.063c35.886-27.459 81.395-44 130.767-44 25.452 0 49.877 4.396 72.558 12.469l-1.512-0.469c75.343 27.569 128.534 97.773 130.555 180.665l0.005 0.241c0 11.52 0 23.040-2.133 34.56-18.036-6.125-38.81-9.661-60.411-9.661-35.905 0-69.529 9.769-98.358 26.794l0.902-0.493c-27.996-16.638-61.724-26.472-97.749-26.472-17.581 0-34.616 2.342-50.808 6.732l1.357-0.313c-78.049 20.592-134.685 90.489-134.827 173.637l-0 0.016c0.984 84.896 38.441 160.851 97.403 213.069l0.304 0.264zM688.213 841.813c-37.12-15.787-223.147-102.827-220.587-260.267 0.231-53.668 36.72-98.749 86.226-112.027l0.814-0.186c10.184-2.521 21.928-4.065 33.998-4.265l0.135-0.002c0.139-0.001 0.304-0.001 0.468-0.001 29.077 0 55.827 9.961 77.024 26.656l-0.266-0.202c5.427 4.001 12.246 6.403 19.627 6.403s14.2-2.402 19.718-6.468l-0.092 0.064c21.355-16.554 48.529-26.537 78.034-26.537 15.311 0 29.995 2.688 43.604 7.619l-0.891-0.282c44.396 16.588 75.726 57.998 77.222 106.915l0.004 0.178c-2.987 179.2-182.613 250.027-215.040 262.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lovely"]},"attrs":[{}],"properties":{"order":6746,"id":218,"name":"lovely","prevSize":32,"code":60002},"setIdx":0,"setId":0,"iconIdx":354},{"icon":{"paths":["M686.899 663.142l-13.517 44.646c-4.52 14.544-17.833 24.931-33.581 24.986l-0.006 0h-238.387c-18.996-0.586-34.172-16.126-34.172-35.21 0-3.509 0.513-6.897 1.468-10.095l-0.064 0.249 35.635-126.157-71.68 14.336h-6.144c-0.394 0.018-0.855 0.028-1.319 0.028-16.966 0-30.72-13.754-30.72-30.72 0-15.263 11.131-27.926 25.717-30.315l0.178-0.024 102.81-20.48 50.79-178.176c4.263-15.002 17.841-25.805 33.942-25.805 0.019 0 0.038 0 0.057 0l-0.003-0h54.067c19.65 0.040 35.565 15.979 35.565 35.635 0 3.203-0.423 6.307-1.215 9.26l0.057-0.249-36.454 131.891 72.090-14.746c1.681-0.322 3.615-0.506 5.592-0.506 14.906 0 27.364 10.476 30.415 24.467l0.038 0.206c0.412 1.875 0.649 4.028 0.649 6.237 0 14.797-10.603 27.118-24.626 29.778l-0.189 0.030-102.4 20.89-16.794 60.621c-0.364 1.353-0.573 2.906-0.573 4.507 0 9.867 7.929 17.882 17.763 18.021l0.013 0h113.459c18.686 0.959 33.474 16.344 33.474 35.182 0 4.123-0.709 8.081-2.010 11.759l0.076-0.247zM932.659 512c-0-243.182-197.138-440.319-440.32-440.319s-440.32 197.138-440.32 440.32c0 242.894 196.671 439.853 439.456 440.319l0.045 0c243.088-0.233 440.087-197.232 440.32-440.298l0-0.022zM871.219 512c-0 209.249-169.631 378.879-378.88 378.879s-378.88-169.63-378.88-378.88c0-208.962 169.164-378.413 378.016-378.879l0.045-0c209.156 0.233 378.647 169.724 378.88 378.857l0 0.023z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lts"]},"attrs":[{}],"properties":{"order":6747,"id":217,"name":"lts","prevSize":32,"code":60003},"setIdx":0,"setId":0,"iconIdx":355},{"icon":{"paths":["M903.68 843.52l-151.040-141.227 11.52-15.36c45.035-59.753 72.126-135.241 72.126-217.056 0-118.812-57.133-224.279-145.424-290.428l-0.943-0.676c-60.254-45.541-136.427-72.944-219.001-72.944-119.556 0-225.695 57.445-292.32 146.24l-0.678 0.944c-44.205 59.403-70.769 134.213-70.769 215.228 0 119.896 58.18 226.203 147.848 292.229l1.001 0.704c60.033 44.9 135.731 71.894 217.733 71.894 76.555 0 147.614-23.526 206.344-63.743l-1.25 0.809 14.080-9.387 153.6 145.067c7.573 7.104 17.778 11.48 29.005 11.52l0.008 0c11.768-0.292 22.311-5.306 29.851-13.21l0.016-0.017c7.299-7.643 11.791-18.021 11.791-29.448 0-12.272-5.181-23.334-13.475-31.118l-0.023-0.021zM471.467 771.413v-10.667c-161.673-1.209-292.266-132.55-292.266-294.392 0-162.593 131.807-294.4 294.4-294.4 162.44 0 294.152 131.56 294.4 293.942l0 0.023c-0.232 162.889-132.332 294.846-295.253 294.846-1.2 0-2.399-0.007-3.596-0.021l0.182 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["magnifier"]},"attrs":[{}],"properties":{"order":6748,"id":216,"name":"magnifier","prevSize":32,"code":60004},"setIdx":0,"setId":0,"iconIdx":356},{"icon":{"paths":["M684.8 53.333h-343.467c-0.508-0.003-1.11-0.005-1.712-0.005-158.115 0-286.293 128.178-286.293 286.293 0 0.602 0.002 1.203 0.006 1.804l-0-0.093v345.6c1.446 157.013 129.065 283.738 286.282 283.738 0.604 0 1.208-0.002 1.811-0.006l-0.093 0h345.6c157.782-0.242 285.624-128.084 285.867-285.843l0-0.024v-343.467c0.003-0.508 0.005-1.11 0.005-1.712 0-158.115-128.178-286.293-286.293-286.293-0.602 0-1.203 0.002-1.804 0.006l0.093-0zM117.333 684.8v-343.467c-0.007-0.637-0.010-1.39-0.010-2.144 0-122.534 99.333-221.867 221.867-221.867 0.754 0 1.507 0.004 2.259 0.011l-0.115-0.001h345.6c91.088 0.253 169.268 55.252 203.391 133.817l0.556 1.437-618.24 643.413c-90.71-29.027-155.245-112.569-155.307-211.193l-0-0.007zM350.293 906.667l256-267.947 213.333 218.88c-37.171 30.375-85.101 48.853-137.339 49.067l-0.047 0zM904.96 684.8c0.004 0.506 0.007 1.104 0.007 1.703 0 47.334-15.025 91.159-40.566 126.965l0.453-0.668-213.333-218.453 253.867-264.96c0.1 1.721 0.157 3.734 0.157 5.76s-0.057 4.039-0.169 6.037l0.012-0.277zM328.107 570.453c15.025 16.518 36.596 26.853 60.582 26.88l0.005 0c0.016 0 0.035 0 0.054 0 23.847 0 45.276-10.351 60.039-26.805l0.066-0.075 78.507-87.893c29.649-32.881 47.787-76.645 47.787-124.645 0-102.975-83.478-186.453-186.453-186.453s-186.453 83.478-186.453 186.453c0 48 18.138 91.764 47.934 124.811l-0.147-0.166zM267.52 341.333c7.906-55.063 51.374-97.95 106.058-104.897l0.608-0.063h14.507c0.134-0.001 0.294-0.001 0.453-0.001 31.085 0 59.407 11.83 80.71 31.234l-0.096-0.086c24.802 22.281 40.331 54.459 40.331 90.264 0 30.911-11.574 59.118-30.625 80.525l0.107-0.122-78.507 89.6c-3.083 3.362-7.474 5.481-12.362 5.547l-0.012 0c-0.006 0-0.014 0-0.021 0-5.038 0-9.578-2.129-12.77-5.537l-0.009-0.010-77.227-87.893c-20.043-21.255-32.362-49.986-32.362-81.593 0-5.986 0.442-11.868 1.295-17.617l-0.079 0.65zM330.667 357.547c0.481-31.678 26.273-57.173 58.020-57.173 32.047 0 58.027 25.979 58.027 58.027 0 32.045-25.976 58.023-58.020 58.027l-0 0c-0.127 0.001-0.277 0.002-0.427 0.002-31.812 0-57.6-25.788-57.6-57.6 0-0.001 0-0.001 0-0.002l-0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["map"]},"attrs":[{}],"properties":{"order":6749,"id":215,"name":"map","prevSize":32,"code":60005},"setIdx":0,"setId":0,"iconIdx":357},{"icon":{"paths":["M878.080 145.92c-35.941-35.748-85.49-57.845-140.201-57.845-29.753 0-57.98 6.535-83.324 18.249l1.231-0.511c-11.086-6.062-24.285-9.628-38.318-9.628-15.832 0-30.604 4.538-43.086 12.385l0.337-0.198c-38.827 24.32-77.227 51.2-113.493 79.36-11.945 9.112-27.082 14.599-43.5 14.599-8.411 0-16.486-1.44-23.992-4.088l0.505 0.155c-15.576-5.885-33.583-9.291-52.385-9.291-84.124 0-152.32 68.196-152.32 152.32 0 18.802 3.407 36.809 9.636 53.436l-0.345-1.051c2.409 6.89 3.8 14.832 3.8 23.1 0 16.589-5.602 31.87-15.017 44.053l0.124-0.167c-28.16 36.693-55.040 75.093-79.36 113.92-7.57 12.177-12.058 26.954-12.058 42.78 0 14.007 3.515 27.193 9.712 38.724l-0.215-0.437c-11.617 24.526-18.399 53.285-18.399 83.629 0 110.045 89.209 199.253 199.253 199.253 0.319 0 0.637-0.001 0.955-0.002l-0.049 0c29.522-0.352 57.352-7.24 82.224-19.279l-1.158 0.505c10.961 6.119 24.036 9.748 37.954 9.813l0.020 0c0.181 0.002 0.395 0.002 0.609 0.002 15.627 0 30.175-4.616 42.357-12.559l-0.299 0.183c189.739-120.834 345.855-277.631 462.332-461.972l3.588-6.081c7.791-12.229 12.418-27.133 12.418-43.118 0-13.886-3.491-26.956-9.643-38.381l0.212 0.431c11.203-24.112 17.739-52.339 17.739-82.092 0-54.71-22.097-104.26-57.854-140.21l0.009 0.009zM832.853 191.147c24.359 24.456 39.418 58.19 39.418 95.441 0 9.562-0.992 18.891-2.879 27.892l0.154-0.88-159.147-159.147c7.693-1.861 16.628-3.087 25.794-3.407l0.233-0.006c0.141-0.001 0.309-0.001 0.476-0.001 37.538 0 71.492 15.34 95.937 40.094l0.014 0.014zM192.853 831.147c-24.359-24.456-39.418-58.19-39.418-95.441 0-9.562 0.992-18.891 2.879-27.892l-0.154 0.88 159.147 159.147c-8.965 2.118-19.259 3.332-29.836 3.332-36.7 0-69.986-14.617-94.354-38.347l0.030 0.029zM861.44 415.147c-115.177 181.608-264.687 331.118-440.542 442.878l-5.751 3.416c-2.628 1.541-5.788 2.451-9.16 2.451-4.883 0-9.321-1.908-12.608-5.019l0.009 0.008-227.84-228.267c-3.388-3.197-5.497-7.718-5.497-12.732 0-3.335 0.933-6.453 2.553-9.105l-0.044 0.077c23.467-37.12 48.64-73.813 75.947-109.227 17.571-22.696 28.166-51.565 28.166-82.909 0-16.159-2.816-31.661-7.984-46.040l0.298 0.949c-3.411-9.007-5.385-19.419-5.385-30.293 0-48.485 39.259-87.801 87.723-87.893l0.009-0c10.712 0.043 20.974 1.915 30.507 5.32l-0.641-0.2c13.431 4.87 28.932 7.686 45.091 7.686 31.344 0 60.213-10.595 83.222-28.399l-0.313 0.233c34.987-26.453 71.68-52.053 108.8-75.52 2.693-1.705 5.972-2.717 9.487-2.717 4.963 0 9.454 2.017 12.699 5.277l0.001 0.001 227.413 227.84c3.688 3.368 5.993 8.197 5.993 13.564 0 3.156-0.797 6.126-2.201 8.72l0.048-0.097zM674.133 338.347l-341.333 336.213c-5.57 5.030-12.988 8.107-21.124 8.107-0.074 0-0.147-0-0.221-0.001l0.011 0c-17.639-0.349-31.805-14.73-31.805-32.421 0-8.801 3.506-16.784 9.199-22.626l-0.007 0.007 341.333-336.213c5.733-5.378 13.467-8.682 21.973-8.682 17.755 0 32.148 14.393 32.148 32.148 0 9.249-3.906 17.585-10.158 23.451l-0.017 0.016zM782.507 399.36c8.29 5.863 13.636 15.41 13.636 26.206 0 6.976-2.232 13.43-6.021 18.688l0.065-0.095c-98.042 133.135-212.785 246.657-342.768 340.354l-4.539 3.113c-5.146 3.965-11.676 6.367-18.766 6.4l-0.008 0c-10.628-0.107-20.035-5.245-25.966-13.142l-0.061-0.085c-3.307-4.956-5.277-11.050-5.277-17.604 0-10.124 4.701-19.15 12.040-25.013l0.064-0.049c129.038-92.688 239.014-201.579 329.954-325.328l2.846-4.059c5.772-8.957 15.697-14.803 26.986-14.803 6.642 0 12.812 2.024 17.926 5.488l-0.112-0.072zM293.547 430.507c9.245-71.376 65.157-127.288 135.743-136.45l0.791-0.084c1.414-0.222 3.046-0.348 4.707-0.348 17.673 0 32 14.327 32 32 0 14.951-10.253 27.507-24.112 31.021l-0.221 0.048c-45.236 4.426-80.907 40.097-85.302 84.944l-0.031 0.39c-2.553 15.33-15.714 26.873-31.573 26.88l-5.547 0c-15.498-1.95-27.366-15.047-27.366-30.916 0-2.657 0.333-5.237 0.959-7.699l-0.046 0.215z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mask"]},"attrs":[{}],"properties":{"order":6750,"id":214,"name":"mask","prevSize":32,"code":60006},"setIdx":0,"setId":0,"iconIdx":358},{"icon":{"paths":["M113.92 437.333c-17.673 0-32-14.327-32-32v0-85.333c0.484-131.442 107.030-237.838 238.483-238.080l0.023-0h81.92c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-81.92c-96.377 0-174.507 78.129-174.507 174.507v0 85.333c-0.471 17.394-14.569 31.343-31.978 31.573l-0.022 0zM440.32 910.080c0-17.673-14.327-32-32-32v0h-87.893c-96.377-0-174.507-78.129-174.507-174.507v0-85.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 85.333c0.242 131.626 106.881 238.264 238.484 238.507l0.023 0h87.893c0.128 0.002 0.279 0.003 0.43 0.003 17.437 0 31.573-14.136 31.573-31.573 0-0.151-0.001-0.302-0.003-0.452l0 0.023zM942.080 703.573v-91.307c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 91.307c-0 96.377-78.129 174.507-174.507 174.507l0 0h-81.92c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h81.92c131.626-0.242 238.264-106.881 238.507-238.484l0-0.023zM942.080 398.507v-78.080c-0.242-131.626-106.881-238.264-238.484-238.507l-0.023-0h-87.893c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h87.893c96.377 0 174.507 78.129 174.507 174.507h0v78.080c0 17.673 14.327 32 32 32s32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["maximize"]},"attrs":[{}],"properties":{"order":6751,"id":213,"name":"maximize","prevSize":32,"code":60007},"setIdx":0,"setId":0,"iconIdx":359},{"icon":{"paths":["M450.56 558.080c-0.011 0-0.024 0-0.037 0-32.754 0-59.307-26.552-59.307-59.307 0-3.618 0.324-7.161 0.945-10.601l-0.054 0.361 8.533-49.92-36.693-35.413c-11.002-10.775-17.823-25.783-17.823-42.384 0-29.86 22.068-54.567 50.785-58.699l0.318-0.038 49.92-7.253 22.187-45.653c9.628-19.844 29.623-33.283 52.756-33.283 0.203 0 0.405 0.001 0.608 0.003l-0.031-0c0.045-0 0.098-0 0.152-0 23.133 0 43.127 13.438 52.603 32.933l0.152 0.347 21.76 45.227 50.347 7.68c22.917 2.539 41.665 18.001 48.942 38.843l0.125 0.41c2.118 5.869 3.343 12.643 3.343 19.702 0 16.459-6.657 31.363-17.424 42.167l0.002-0.002-36.267 35.413 8.533 49.92c0.549 3.020 0.863 6.495 0.863 10.043 0 19.721-9.696 37.178-24.58 47.863l-0.176 0.12c-9.691 7.068-21.836 11.308-34.972 11.308-9.977 0-19.383-2.446-27.65-6.771l0.329 0.157-44.8-23.893-45.227 23.893c-8.177 4.302-17.867 6.827-28.147 6.827-0.005 0-0.009-0-0.014-0l0.001 0zM415.573 363.947l31.573 30.72c11.006 10.841 17.825 25.907 17.825 42.565 0 3.35-0.276 6.636-0.806 9.836l0.048-0.348-7.68 42.667 38.827-20.48c7.989-4.232 17.464-6.717 27.52-6.717s19.531 2.485 27.846 6.874l-0.326-0.157 38.827 20.053-7.253-42.667c-0.624-3.231-0.982-6.946-0.982-10.745 0-15.859 6.225-30.264 16.364-40.905l-0.023 0.024 31.573-30.72-42.667-6.4c-18.961-3.413-34.504-15.579-42.514-32.079l-0.152-0.348-19.627-39.253-19.2 39.253c-8.162 16.848-23.705 29.013-42.311 32.373l-0.356 0.053zM953.6 697.6l-142.933-151.040c25.964-44.484 41.677-97.744 42.663-154.595l0.004-0.285c0.136-3.53 0.213-7.675 0.213-11.838 0-181.444-147.089-328.533-328.533-328.533s-328.533 147.089-328.533 328.533c0 4.163 0.077 8.308 0.231 12.433l-0.018-0.596c0.040 51.718 12.165 100.594 33.703 143.97l-0.849-1.89-159.147 167.68c-12.58 13.212-20.319 31.132-20.319 50.86 0 37.702 28.266 68.802 64.763 73.264l0.356 0.035 60.16 6.827c4.23 0.769 7.55 3.947 8.519 8.034l0.014 0.072 11.093 59.307c4.743 27.797 24.85 49.901 51.117 57.474l0.509 0.126c6.23 2.074 13.406 3.316 20.859 3.413l0.048 0c0.244 0.003 0.533 0.005 0.821 0.005 20.722 0 39.461-8.49 52.929-22.181l0.010-0.010 190.72-206.080 189.013 200.96c13.302 14.448 32.307 23.467 53.419 23.467 0.12 0 0.239-0 0.359-0.001l-0.018 0c7.504-0.17 14.682-1.25 21.527-3.132l-0.62 0.145c27.428-7.49 48.167-29.798 53.265-57.576l0.069-0.45 11.093-59.733c0.78-4.177 4.243-7.349 8.501-7.678l0.032-0.002 60.16-7.253c36.853-4.497 65.119-35.597 65.119-73.3 0-19.728-7.74-37.649-20.348-50.891l0.029 0.030zM523.093 128c145.821 0.054 264.012 118.278 264.012 264.107 0 53.459-15.883 103.209-43.188 144.787l0.617-1c-6.395 9.945-12.575 18.432-19.188 26.552l0.415-0.526c-6.4 7.253-13.227 14.507-20.053 20.907-2.049 2.184-4.282 4.147-6.691 5.88l-0.136 0.093c-5.066 4.88-10.492 9.495-16.194 13.761l-0.446 0.319-7.253 5.12c-15.517 11.263-33.226 21.15-52.068 28.83l-1.692 0.61h-2.987c-7.802 3.442-17.058 6.52-26.642 8.746l-1.091 0.214h-3.413c-19.088 5.152-41.003 8.112-63.609 8.112-0.588 0-1.175-0.002-1.761-0.006l0.090 0h-9.813c-35.305-1.296-68.412-9.334-98.521-22.856l1.668 0.67h-2.56l-23.893-12.373-4.693-4.693c-6.4-3.84-12.373-8.107-18.773-12.8l-7.68-5.12c-8.047-6.607-15.283-13.304-22.109-20.399l-0.078-0.081h-2.133c-6.827-6.827-12.8-14.080-18.773-21.333l-3.413-5.12c-5.267-6.786-10.48-14.448-15.215-22.426l-0.572-1.040c-23.453-38.628-37.334-85.322-37.334-135.258 0-145.626 118.054-263.68 263.68-263.68 0.525 0 1.050 0.002 1.575 0.005l-0.081-0zM274.773 896c-1.469 0.862-3.235 1.372-5.12 1.372s-3.651-0.509-5.168-1.398l0.048 0.026c-4.231-0.472-7.622-3.574-8.521-7.615l-0.012-0.065-11.093-59.307c-5.209-31.661-30.083-56.246-61.463-60.963l-0.404-0.050-60.16-6.827c-3.765-0.703-6.791-3.304-8.082-6.753l-0.024-0.074c-0.487-1.070-0.771-2.32-0.771-3.636 0-2.611 1.116-4.96 2.898-6.598l0.006-0.006 145.067-154.453 2.56 2.56c10.272 13.323 20.894 25.162 32.324 36.169l0.102 0.098 7.68 6.827c11.19 10.33 23.455 19.884 36.484 28.365l1.063 0.649 6.4 4.267c11.856 7.671 25.837 15.489 40.309 22.445l2.357 1.021c13.939 5.916 31.129 11.751 48.79 16.428l2.837 0.639zM909.227 754.347c-1.359 3.398-4.392 5.863-8.052 6.393l-0.055 0.007-59.733 7.253c-32.452 3.455-58.314 27.867-63.935 59.294l-0.065 0.439-9.387 57.173c-0.669 3.672-3.306 6.593-6.757 7.661l-0.070 0.019c-0.801 0.225-1.722 0.355-2.672 0.355-2.994 0-5.688-1.285-7.561-3.334l-0.007-0.008-165.12-175.36h2.133c18.408-3.846 34.125-8.407 49.343-14.002l-2.409 0.775 9.813-3.84c16.738-6.442 30.788-13.183 44.223-20.874l-1.557 0.821 9.813-5.973c14.592-9.007 27.125-18.009 38.998-27.784l-0.598 0.478 5.547-5.12c12.99-11.595 24.844-23.719 35.835-36.602l0.432-0.518 131.84 140.373c0.917 1.383 1.463 3.081 1.463 4.907s-0.546 3.524-1.484 4.94l0.021-0.033z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["medal-star"]},"attrs":[{}],"properties":{"order":6752,"id":212,"name":"medal-star","prevSize":32,"code":60008},"setIdx":0,"setId":0,"iconIdx":360},{"icon":{"paths":["M684.8 970.667h-343.467c-157.782-0.242-285.624-128.084-285.867-285.843l-0-0.024v-343.467c-0.003-0.507-0.005-1.107-0.005-1.707 0-157.967 127.938-286.053 285.849-286.293l0.023-0h345.6c157.013 1.446 283.738 129.065 283.738 286.282 0 0.604-0.002 1.208-0.006 1.811l0-0.093v345.6c-1.447 156.865-128.83 283.498-285.844 283.733l-0.023 0zM341.333 117.333c-0.637-0.007-1.39-0.010-2.144-0.010-122.534 0-221.867 99.333-221.867 221.867 0 0.754 0.004 1.507 0.011 2.259l-0.001-0.115v345.6c1.201 121.617 100.069 219.744 221.857 219.744 0.754 0 1.507-0.004 2.259-0.011l-0.115 0.001h345.6c122.436-0.242 221.624-99.431 221.867-221.844l0-0.023v-343.467c-0.242-122.436-99.431-221.624-221.844-221.867l-0.023-0zM796.587 337.92c0-17.673-14.327-32-32-32v0h-505.173c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h505.173c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM796.587 508.587c0-17.673-14.327-32-32-32v0h-505.173c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h505.173c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM796.587 681.387c0-17.673-14.327-32-32-32v0h-505.173c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h505.173c17.146-0.208 31.076-13.692 31.996-30.638l0.004-0.082z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["menu"]},"attrs":[{}],"properties":{"order":6753,"id":211,"name":"menu","prevSize":32,"code":60009},"setIdx":0,"setId":0,"iconIdx":361},{"icon":{"paths":["M717.653 53.333h-411.307c-139.638 0.242-252.771 113.376-253.013 252.99l-0 0.023v589.653c0.476 41.044 33.622 74.191 74.621 74.666l0.045 0h588.8c139.638-0.242 252.771-113.376 253.013-252.99l0-0.023v-411.307c-0.24-139.339-112.889-252.288-252.091-253.013l-0.069-0zM906.667 717.653c-0.242 104.292-84.722 188.771-188.99 189.013l-0.023 0h-589.653c-5.713-0.422-10.245-4.953-10.664-10.629l-0.002-0.038v-589.653c0.242-104.292 84.722-188.771 188.99-189.013l0.023-0h411.307c104.292 0.242 188.771 84.722 189.013 188.99l0 0.023zM690.773 512c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0h-114.773v114.773c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-114.773h-114.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h114.773v-114.773c0-17.673 14.327-32 32-32s32 14.327 32 32v0 114.773h114.773c17.577 0.237 31.763 14.423 32 31.977l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-add"]},"attrs":[{}],"properties":{"order":6754,"id":210,"name":"message-add","prevSize":32,"code":60010},"setIdx":0,"setId":0,"iconIdx":362},{"icon":{"paths":["M717.653 53.333h-411.307c-139.638 0.242-252.771 113.376-253.013 252.99l-0 0.023v589.653c0.476 41.044 33.622 74.191 74.621 74.666l0.045 0h588.8c139.638-0.242 252.771-113.376 253.013-252.99l0-0.023v-411.307c-0.24-139.339-112.889-252.288-252.091-253.013l-0.069-0zM906.667 717.653c-0.242 104.292-84.722 188.771-188.99 189.013l-0.023 0h-589.653c-5.713-0.422-10.245-4.953-10.664-10.629l-0.002-0.038v-589.653c0.242-104.292 84.722-188.771 188.99-189.013l0.023-0h411.307c104.292 0.242 188.771 84.722 189.013 188.99l0 0.023zM714.667 301.227l-71.68-55.467c-18.575-14.52-42.263-23.283-67.998-23.283-36.833 0-69.474 17.951-89.65 45.582l-0.219 0.315-197.547 267.093c-12.687 17.141-20.576 38.514-21.329 61.69l-0.005 0.177v107.52c-0.004 0.316-0.006 0.689-0.006 1.062 0 30.67 14.643 57.92 37.319 75.141l0.233 0.17c15.017 11.397 34.005 18.28 54.598 18.347l0.015 0c1.442 0.077 3.13 0.12 4.828 0.12 7.361 0 14.529-0.821 21.42-2.377l-0.648 0.123 100.267-29.44c22.523-6.905 41.269-20.54 54.407-38.53l0.206-0.297 197.547-267.093c14.442-19.086 23.133-43.221 23.133-69.386 0-37.098-17.471-70.115-44.634-91.273l-0.259-0.194zM568.747 287.147h6.4c10.955 0.066 21.038 3.744 29.133 9.901l-0.12-0.087 71.253 55.040c11.967 9.539 19.57 24.116 19.57 40.468 0 11.597-3.824 22.301-10.279 30.92l0.096-0.134-22.187 30.293c-3.065 0.234-6.638 0.367-10.242 0.367-69.411 0-127.267-49.477-140.222-115.087l-0.149-0.907 23.467-31.573c7.71-10.579 19.536-17.76 33.077-19.183l0.203-0.017zM487.68 689.92c-5.327 7.358-12.783 12.882-21.458 15.702l-0.302 0.085-101.12 30.293c-2.407 0.842-5.181 1.328-8.070 1.328-6.016 0-11.54-2.111-15.87-5.632l0.046 0.036c-7.285-5.422-11.954-14.008-11.954-23.684 0-0.224 0.002-0.447 0.007-0.669l-0.001 0.033v-107.52c1.227-10.342 5.715-19.458 12.391-26.472l-0.018 0.019 128-173.653c27.4 60.232 82.536 103.645 148.636 114.199l1.124 0.148z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-edit"]},"attrs":[{}],"properties":{"order":6755,"id":209,"name":"message-edit","prevSize":32,"code":60011},"setIdx":0,"setId":0,"iconIdx":363},{"icon":{"paths":["M717.653 970.667h-589.653c-41.044-0.476-74.191-33.622-74.666-74.621l-0-0.045v-589.653c0.242-139.638 113.376-252.771 252.99-253.013l0.023-0h411.307c139.638 0.242 252.771 113.376 253.013 252.99l0 0.023v411.307c-0.242 139.638-113.376 252.771-252.99 253.013l-0.023 0zM306.347 117.333c-104.292 0.242-188.771 84.722-189.013 188.99l-0 0.023v589.653c-0 6.362 5.158 11.52 11.52 11.52l0 0h588.8c104.292-0.242 188.771-84.722 189.013-188.99l0-0.023v-412.16c-0.242-104.292-84.722-188.771-188.99-189.013l-0.023-0zM690.347 512c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-293.12c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h293.547c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-minus"]},"attrs":[{}],"properties":{"order":6756,"id":208,"name":"message-minus","prevSize":32,"code":60012},"setIdx":0,"setId":0,"iconIdx":364},{"icon":{"paths":["M826.027 341.333c-79.882-0-144.639-64.758-144.639-144.64s64.758-144.64 144.64-144.64c79.882 0 144.64 64.758 144.64 144.64 0 0.15-0 0.3-0.001 0.45l0-0.023c-0.243 79.699-64.907 144.213-144.639 144.213-0 0-0-0-0.001-0l-0-0zM826.027 116.48c-44.536 0-80.64 36.104-80.64 80.64s36.104 80.64 80.64 80.64c44.536 0 80.64-36.104 80.64-80.64v0c0.006-0.381 0.010-0.83 0.010-1.28 0-44.536-36.104-80.64-80.64-80.64-0.004 0-0.007 0-0.011 0l0.001-0zM578.56 923.307l45.653-64.853c4.55-6.235 11.832-10.24 20.049-10.24 0.002 0 0.003 0 0.005 0l64.853-0c126.982-0.966 229.548-104.129 229.548-231.247 0-0.302-0.001-0.604-0.002-0.906l0 0.047v-220.16c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 220.16c-0.242 92.038-74.788 166.585-166.803 166.827l-0.023 0h-63.573c-0.417-0.007-0.908-0.011-1.401-0.011-29.3 0-55.151 14.767-70.516 37.264l-0.189 0.294-45.653 64.853c-6.464 8.181-16.384 13.383-27.52 13.383s-21.056-5.202-27.464-13.31l-0.056-0.074-44.8-64.853c-16.097-22.822-42.351-37.547-72.045-37.547-0.022 0-0.044 0-0.065 0l-65.703-0c-92.038-0.242-166.585-74.788-166.827-166.803l-0-0.023v-303.36c0-92.136 74.691-166.827 166.827-166.827v0h337.92c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-337.92c-127.384 0.242-230.584 103.442-230.827 230.803l-0 0.023v303.36c0.242 127.384 103.442 230.584 230.803 230.827l0.023 0h64.853c0.001-0 0.003-0 0.005-0 8.217 0 15.499 4.005 20 10.17l0.049 0.070 45.653 64.853c17.83 25.124 46.81 41.32 79.573 41.32s61.743-16.197 79.371-41.020l0.203-0.301zM335.36 441.173c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667h0zM498.773 441.173c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667h-0zM498.773 441.173c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667h-0zM662.613 441.173c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-notif"]},"attrs":[{}],"properties":{"order":6757,"id":207,"name":"message-notif","prevSize":32,"code":60013},"setIdx":0,"setId":0,"iconIdx":365},{"icon":{"paths":["M512 971.093c-26.758-0.266-50.533-12.807-65.999-32.252l-0.134-0.174-74.24-88.747c-3.619-4.588-9.131-7.544-15.338-7.68l-0.022-0h-73.813c-0 0-0 0-0 0-126.389 0-228.877-102.337-229.12-228.67l-0-0.023v-331.52c0.243-126.356 102.73-228.693 229.12-228.693 0 0 0 0 0 0l459.093-0c0-0 0-0 0-0 126.389 0 228.877 102.337 229.12 228.67l0 0.023v331.52c-0.243 126.356-102.73 228.693-229.12 228.693-0 0-0-0-0-0l-80.213 0c-0.034-0-0.075-0-0.115-0-6.446 0-12.149 3.176-15.632 8.049l-0.040 0.058-68.267 88.32c-15.354 19.57-38.778 32.204-65.175 32.851l-0.105 0.002zM283.733 117.76c-0.381-0.003-0.831-0.005-1.282-0.005-90.895 0-164.636 73.444-165.118 164.226l-0 0.046v331.52c0.243 91.010 74.076 164.693 165.119 164.693 0 0 0-0 0.001-0l73.813 0c26.278 0.673 49.517 13.125 64.719 32.252l0.134 0.175 74.24 90.453c3.907 4.357 9.511 7.124 15.764 7.253l0.023 0c6.262-0.37 11.739-3.443 15.325-8.059l0.035-0.047 68.267-89.6c15.615-19.89 39.577-32.615 66.521-32.853l0.039-0h80.213c0 0 0 0 0.001 0 91.043 0 164.877-73.684 165.119-164.67l0-0.023v-331.093c-0.243-91.010-74.076-164.693-165.119-164.693-0 0-0 0-0.001 0l0-0zM364.8 564.053c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-62.72-61.013 61.867-59.307c9.178-5.733 15.193-15.779 15.193-27.231 0-17.673-14.327-32-32-32-10.586 0-19.972 5.141-25.797 13.062l-0.062 0.089-85.333 81.92c-6.010 5.852-9.755 14.003-9.813 23.029l-0 0.011c-0 0.014-0 0.031-0 0.047 0 8.954 3.582 17.072 9.392 22.998l-0.005-0.005 85.333 85.333c5.459 5.787 13.18 9.39 21.742 9.39 0.156 0 0.312-0.001 0.468-0.004l-0.024 0c8.731-0.768 16.372-4.89 21.726-11.054l0.034-0.040zM706.133 564.053l85.333-85.333c5.804-5.921 9.387-14.038 9.387-22.993 0-0.017-0-0.033-0-0.050l0 0.003c-0.058-9.037-3.804-17.188-9.806-23.033l-0.007-0.007-85.333-81.92c-5.887-8.010-15.273-13.151-25.859-13.151-17.673 0-32 14.327-32 32 0 11.451 6.015 21.498 15.058 27.152l0.134 0.078 61.867 59.307-62.293 61.013c-7.174 5.913-11.713 14.8-11.713 24.748 0 17.591 14.194 31.867 31.754 31.999l0.013 0c0.006 0 0.014 0 0.021 0 8.561 0 16.28-3.602 21.725-9.372l0.014-0.015zM505.173 564.053l79.787-191.573c2.114-4.156 3.353-9.063 3.353-14.26 0-17.673-14.327-32-32-32-13.917 0-25.758 8.884-30.164 21.289l-0.069 0.224-79.787 191.573c-1.761 3.84-2.787 8.331-2.787 13.061 0 13.293 8.105 24.692 19.643 29.527l0.211 0.078c3.616 1.618 7.837 2.56 12.278 2.56 0.034 0 0.067-0 0.101-0l-0.005 0c12.551-0.908 23.049-8.834 27.654-19.839l0.079-0.214z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-programming"]},"attrs":[{}],"properties":{"order":6758,"id":206,"name":"message-programming","prevSize":32,"code":60014},"setIdx":0,"setId":0,"iconIdx":366},{"icon":{"paths":["M341.333 959.147c-0.173 0.002-0.378 0.002-0.583 0.002-11.962 0-23.223-3.001-33.070-8.292l0.373 0.183c-23.96-12.168-40.095-36.625-40.107-64.852l-0-0.002v-81.92c-119.028-6.073-213.249-104.020-213.333-223.992l-0-0.008v-290.987c0.238-123.403 99.847-223.461 223.055-224.426l0.092-0.001h469.333c123.85 0.242 224.184 100.577 224.427 224.403l0 0.023v290.987c-0.242 123.85-100.577 224.184-224.403 224.427l-0.023 0h-166.827c-0.827-0.294-1.78-0.463-2.773-0.463s-1.947 0.17-2.833 0.482l0.060-0.018-190.72 140.8c-11.878 8.469-26.669 13.57-42.646 13.653l-0.020 0zM277.76 128c-0.001-0-0.001-0-0.002-0-88.601 0-160.427 71.825-160.427 160.427 0 0.3 0.001 0.6 0.002 0.9l-0-0.046v290.987c0.242 88.504 71.923 160.185 160.403 160.427l0.023 0c29.22 0 52.907 23.687 52.907 52.907v92.587c-0.003 0.085-0.005 0.184-0.005 0.284 0 3.48 2.083 6.473 5.070 7.801l0.054 0.022c1.283 0.999 2.918 1.601 4.693 1.601s3.41-0.602 4.711-1.614l-0.017 0.013 192-139.093c11.858-8.518 26.663-13.63 42.661-13.653l0.006-0h165.973c88.504-0.242 160.185-71.923 160.427-160.403l0-0.023v-291.84c0.001-0.254 0.002-0.554 0.002-0.854 0-88.452-71.584-160.185-159.979-160.426l-0.023-0zM512 261.12c-54.198 0-98.133 43.936-98.133 98.133v0c0 17.673 14.327 32 32 32s32-14.327 32-32v0c0-18.851 15.282-34.133 34.133-34.133s34.133 15.282 34.133 34.133l-0-0c-0.019 12.406-6.824 23.219-16.901 28.927l-0.165 0.086c-29.709 19.169-49.098 52.102-49.098 89.564 0 0.913 0.012 1.823 0.034 2.73l-0.003-0.134v11.947c0 17.673 14.327 32 32 32s32-14.327 32-32v0-11.947c-0.036-0.658-0.057-1.428-0.057-2.203 0-14.122 6.861-26.642 17.432-34.407l0.119-0.083c29.054-17.394 48.202-48.701 48.202-84.481 0-54.044-43.687-97.884-97.672-98.132l-0.024-0zM512 554.667c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-question"]},"attrs":[{}],"properties":{"order":6759,"id":205,"name":"message-question","prevSize":32,"code":60015},"setIdx":0,"setId":0,"iconIdx":367},{"icon":{"paths":["M512 981.333c-33.709-0.205-63.483-16.872-81.712-42.36l-0.208-0.306-46.080-67.84c-4.864-6.922-12.776-11.416-21.744-11.52l-0.016-0h-69.547c-132.195 0-239.36-107.165-239.36-239.36h0v-316.16c-0-132.195 107.165-239.36 239.36-239.36l0-0h438.613c132.195 0 239.36 107.165 239.36 239.36v-0 316.16c0 132.195-107.165 239.36-239.36 239.36v0h-67.84c-8.984 0.104-16.896 4.598-21.703 11.435l-0.057 0.085-47.787 67.84c-18.437 25.795-48.21 42.462-81.888 42.667l-0.032 0zM292.693 128c-0-0-0-0-0.001-0-96.849 0-175.36 78.511-175.36 175.36 0 0.15 0 0.3 0.001 0.45l-0-0.023v316.16c-0 96.849 78.511 175.36 175.36 175.36h67.84c30.607 0.089 57.644 15.295 74.048 38.54l0.192 0.286 47.36 67.413c6.929 9.029 17.725 14.793 29.867 14.793s22.938-5.763 29.801-14.704l0.066-0.089 47.36-67.413c16.596-23.532 43.633-38.738 74.226-38.827l0.014-0h67.84c96.849 0 175.36-78.511 175.36-175.36v0-316.16c0-0.127 0.001-0.277 0.001-0.427 0-96.849-78.511-175.36-175.36-175.36-0 0-0 0-0.001 0l0-0zM747.093 378.88c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-406.187c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h406.187c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM679.253 592.213c0-17.673-14.327-32-32-32v0h-270.507c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h270.507c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-text-2"]},"attrs":[{}],"properties":{"order":6760,"id":204,"name":"message-text-2","prevSize":32,"code":60016},"setIdx":0,"setId":0,"iconIdx":368},{"icon":{"paths":["M717.653 970.667h-589.653c-41.044-0.476-74.191-33.622-74.666-74.621l-0-0.045v-589.653c0.242-139.638 113.376-252.771 252.99-253.013l0.023-0h411.307c139.638 0.242 252.771 113.376 253.013 252.99l0 0.023v411.307c-0.242 139.638-113.376 252.771-252.99 253.013l-0.023 0zM306.347 117.333c-104.292 0.242-188.771 84.722-189.013 188.99l-0 0.023v589.653c-0 6.362 5.158 11.52 11.52 11.52l0 0h588.8c104.292-0.242 188.771-84.722 189.013-188.99l0-0.023v-412.16c-0.242-104.292-84.722-188.771-188.99-189.013l-0.023-0zM747.093 405.333c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-406.187c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h406.187c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM611.84 618.667c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-270.933c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h270.933c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-text"]},"attrs":[{}],"properties":{"order":6761,"id":203,"name":"message-text","prevSize":32,"code":60017},"setIdx":0,"setId":0,"iconIdx":369},{"icon":{"paths":["M739.84 703.147v-281.6c-0.242-74.13-60.27-134.158-134.377-134.4l-0.023-0h-384v-36.267c-0-0.001-0-0.003-0-0.004 0-109.123 88.098-197.67 197.051-198.396l0.069-0h351.573c109.573-0 198.4 88.827 198.4 198.4l-0 0v256c-0.235 108.645-87.76 196.77-196.153 197.972l-0.114 0.001zM605.44 223.147c109.573 0 198.4 88.827 198.4 198.4h-0v213.333c57.699-15.305 99.699-66.613 100.692-127.889l0.001-0.111v-256c-0.242-74.13-60.27-134.158-134.377-134.4l-0.023-0h-351.573c-0.049-0-0.107-0-0.164-0-64.476 0-118.314 45.546-131.095 106.22l-0.154 0.873zM429.653 971.52c-0.124 0.001-0.271 0.001-0.418 0.001-29.114 0-54.823-14.58-70.223-36.837l-0.186-0.284-38.4-54.187c-2.549-3.883-6.884-6.411-11.808-6.411-0.199 0-0.396 0.004-0.593 0.012l0.028-0.001h-52.053c-0.634 0.007-1.383 0.011-2.133 0.011-109.573 0-198.4-88.827-198.4-198.4 0-0.004 0-0.008 0-0.012l-0 0.001v-253.867c-0-0.003-0-0.007-0-0.011 0-109.573 88.827-198.4 198.4-198.4 0.75 0 1.499 0.004 2.247 0.012l-0.114-0.001h351.573c109.573 0 198.4 88.827 198.4 198.4v0 253.867c0 109.573-88.827 198.4-198.4 198.4h-56.32c-0.101-0.003-0.221-0.004-0.34-0.004-4.989 0-9.39 2.519-12.001 6.354l-0.032 0.050-38.4 54.187c-15.586 22.541-41.294 37.121-70.408 37.121-0.147 0-0.294-0-0.441-0.001l0.023 0zM256 287.147c-0.508-0.007-1.107-0.011-1.707-0.011-74.316 0-134.589 60.127-134.826 134.388l-0 0.023v253.867c-0.002 0.259-0.003 0.564-0.003 0.87 0 74.227 60.173 134.4 134.4 134.4 0.751 0 1.501-0.006 2.249-0.018l-0.113 0.001h52.053c0.114-0.001 0.249-0.001 0.384-0.001 26.595 0 50.102 13.225 64.303 33.457l0.167 0.251 37.973 51.627c4.204 5.941 11.037 9.781 18.768 9.813l0.005 0c7.736-0.032 14.569-3.872 18.725-9.741l0.048-0.072 37.973-54.187c14.481-19.023 37.139-31.178 62.636-31.178 0.78 0 1.557 0.011 2.331 0.034l-0.114-0.003h54.187c74.227 0 134.4-60.173 134.4-134.4v-254.72c-0.242-74.13-60.27-134.158-134.377-134.4l-0.023-0zM280.747 512c-22.15 0-40.107 17.956-40.107 40.107s17.956 40.107 40.107 40.107c22.15 0 40.107-17.956 40.107-40.107v0c-0.238-22.054-18.053-39.868-40.084-40.106l-0.023-0zM430.080 512c-0.229-0.005-0.5-0.007-0.771-0.007-22.15 0-40.107 17.956-40.107 40.107s17.956 40.107 40.107 40.107c21.247 0 38.635-16.522 40.018-37.419l0.006-0.121c0.036-0.643 0.057-1.395 0.057-2.152 0-21.956-17.457-39.835-39.248-40.513l-0.062-0.002zM578.987 512c-22.15 0-40.107 17.956-40.107 40.107s17.956 40.107 40.107 40.107c22.15 0 40.107-17.956 40.107-40.107v0c-0.238-22.054-18.053-39.868-40.084-40.106l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["messages"]},"attrs":[{}],"properties":{"order":6762,"id":202,"name":"messages","prevSize":32,"code":60018},"setIdx":0,"setId":0,"iconIdx":370},{"icon":{"paths":["M888.747 940.8h-10.24l-294.4-36.693c-40.898-5.462-72.114-40.128-72.114-82.084 0-0.392 0.003-0.784 0.008-1.175l-0.001 0.059v-196.693c-0-0.011-0-0.025-0-0.038 0-46.228 36.759-83.871 82.643-85.292l0.131-0.003h294.4c47.128 0 85.333 38.205 85.333 85.333v0 233.387c0 0.028 0 0.061 0 0.094 0 24.745-10.858 46.953-28.069 62.121l-0.091 0.078c-14.325 13.007-33.436 20.97-54.407 20.97-1.123 0-2.24-0.023-3.352-0.068l0.159 0.005zM594.347 605.013c-10.419 0.239-18.773 8.741-18.773 19.195 0 0.002 0 0.003 0 0.005l-0-0v196.693c-0 0.036-0 0.079-0 0.122 0 9.617 7.231 17.545 16.552 18.643l0.088 0.008 294.4 37.12c0.621 0.070 1.341 0.109 2.070 0.109 4.932 0 9.439-1.819 12.887-4.823l-0.024 0.020c3.934-3.385 6.409-8.369 6.409-13.932 0-0.202-0.003-0.404-0.010-0.604l0.001 0.029v-233.387c-0-10.604-8.596-19.2-19.2-19.2h0zM369.92 880.64h-10.24l-235.093-29.44c-41.099-5.267-72.54-40.031-72.54-82.138 0-0.373 0.002-0.746 0.007-1.118l-0.001 0.056v-143.787c-0-47.128 38.205-85.333 85.333-85.333v0h234.667c46.201 1.192 83.2 38.928 83.2 85.307 0 0.009-0 0.019-0 0.028l0-0.001v173.653c-0.086 24.841-11.102 47.092-28.486 62.207l-0.101 0.086c-14.819 12.736-34.24 20.49-55.471 20.49-0.448 0-0.896-0.003-1.343-0.010l0.067 0.001zM135.253 605.013c-10.604 0-19.2 8.596-19.2 19.2v0 143.787c0.132 9.594 7.28 17.479 16.539 18.762l0.101 0.011 235.093 29.44c0.718 0.093 1.548 0.146 2.391 0.146 5.392 0 10.276-2.174 13.824-5.694l-0.001 0.001c3.839-3.509 6.275-8.498 6.4-14.058l0-0.022v-172.373c0-10.604-8.596-19.2-19.2-19.2v0zM888.747 482.987h-294.4c-46.014-1.424-82.773-39.067-82.773-85.295 0-0.014 0-0.027 0-0.041l-0 0.002v-194.56c-0-0.062-0-0.136-0-0.209 0-42.105 31.438-76.867 72.121-82.094l0.413-0.043 294.4-35.413c3.079-0.404 6.639-0.634 10.254-0.634 45.423 0 82.344 36.4 83.185 81.622l0.001 0.079v233.387c-1.159 45.477-37.724 82.041-83.091 83.198l-0.109 0.002zM592.213 184.32c-9.41 1.107-16.64 9.035-16.64 18.652 0 0.043 0 0.085 0 0.128l-0-0.007v196.693c-0 0.001-0 0.003-0 0.005 0 10.454 8.355 18.956 18.751 19.195l0.022 0h294.4c10.604 0 19.2-8.596 19.2-19.2v0-233.387c0.006-0.171 0.009-0.373 0.009-0.575 0-5.563-2.476-10.547-6.385-13.911l-0.024-0.020c-3.424-2.984-7.931-4.803-12.863-4.803-0.729 0-1.449 0.040-2.158 0.117l0.088-0.008zM369.92 482.987h-234.667c-46.201-1.192-83.2-38.928-83.2-85.307 0-0.009 0-0.019 0-0.028l-0 0.001v-141.653c-0-0.062-0-0.136-0-0.209 0-42.105 31.438-76.867 72.121-82.094l0.413-0.043 235.093-29.44c3.075-0.403 6.632-0.633 10.243-0.633 45.723 0 82.831 36.882 83.197 82.518l0 0.035v173.653c-1.159 45.477-37.724 82.041-83.091 83.198l-0.109 0.002zM369.92 206.933h-2.133l-235.093 29.44c-9.45 1.303-16.649 9.325-16.649 19.030 0 0.21 0.003 0.419 0.010 0.627l-0.001-0.030v143.787c0 10.604 8.596 19.2 19.2 19.2v0h234.667c10.604 0 19.2-8.596 19.2-19.2v0-173.653c-0.11-4.948-2.036-9.427-5.134-12.815l0.014 0.015c-3.232-3.92-8.090-6.4-13.526-6.4-0.045 0-0.089 0-0.134 0.001l0.007-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microsoft"]},"attrs":[{}],"properties":{"order":6763,"id":201,"name":"microsoft","prevSize":32,"code":60019},"setIdx":0,"setId":0,"iconIdx":371},{"icon":{"paths":["M753.493 360.533l-42.667-42.667c-22.269-22.046-36.914-51.757-39.648-84.846l-0.032-0.488c26.966-17.301 44.579-47.127 44.579-81.067 0-52.942-42.855-95.874-95.767-96l-0.012-0h-213.333c-52.236 1.015-94.192 43.599-94.192 95.983 0 31.814 15.476 60.014 39.31 77.482l0.269 0.188c-1.645 34.81-16.334 65.9-39.25 88.743l-0.004 0.003-42.667 42.667c-28.051 27.817-45.574 66.214-46.079 108.704l-0.001 0.096v345.173c0.242 85.44 69.44 154.638 154.857 154.88l0.023 0h266.24c85.44-0.242 154.638-69.44 154.88-154.857l0-0.023v-343.040c-0.174-43.394-17.924-82.609-46.495-110.922l-0.012-0.012zM405.333 117.333h213.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-213.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM314.88 406.187l42.667-42.667c30.643-30.883 51.289-71.725 56.656-117.245l0.090-0.941h193.28c5.535 46.73 26.505 87.753 57.587 118.601l0.013 0.012 42.667 42.667c16.857 16.638 27.301 39.739 27.307 65.279l0 0.001v202.24c-94.72 7.68-161.28-5.973-185.173-38.827-55.467-80.64-176.213-85.76-261.973-80.64v-85.333c0.485-24.707 10.665-46.946 26.879-63.146l0.001-0.001zM736 815.787c-0.241 50.094-40.786 90.639-90.857 90.88l-0.023 0h-266.24c-50.094-0.241-90.639-40.786-90.88-90.857l-0-0.023v-194.987c59.733-5.12 170.667-5.547 210.773 51.627s117.76 75.52 237.227 66.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["milk"]},"attrs":[{}],"properties":{"order":6764,"id":200,"name":"milk","prevSize":32,"code":60020},"setIdx":0,"setId":0,"iconIdx":372},{"icon":{"paths":["M512 113.067c220.325 0 398.933 178.609 398.933 398.933s-178.609 398.933-398.933 398.933c-220.325 0-398.933-178.609-398.933-398.933h-0c0-220.325 178.609-398.933 398.933-398.933v-0zM312.747 551.68h398.507c21.915 0 39.68-17.765 39.68-39.68s-17.765-39.68-39.68-39.68h-398.507c-21.915 0-39.68 17.765-39.68 39.68s17.765 39.68 39.68 39.68h0zM512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c-0.243-253.217-205.45-458.424-458.644-458.667l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus-circle"]},"attrs":[{}],"properties":{"order":6765,"id":199,"name":"minus-circle","prevSize":32,"code":60021},"setIdx":0,"setId":0,"iconIdx":373},{"icon":{"paths":["M941.227 372.907c-7.994-150.86-130.439-270.631-281.671-274.34l-0.356-0.007h-209.92c-21.716-27.593-55.093-45.166-92.577-45.227l-0.010-0h-91.733c-115.752 0.243-209.494 94.134-209.494 209.92 0 0.15 0 0.3 0 0.45l-0-0.023v464.64c-0.001 0.255-0.002 0.557-0.002 0.859 0 133.373 108.12 241.493 241.493 241.493 0.601 0 1.201-0.002 1.8-0.007l-0.092 0.001h430.933c133.19-0.242 241.068-108.269 241.068-241.493 0-0.3-0.001-0.6-0.002-0.9l0 0.047v-244.053c-0.853-40.939-11.657-79.172-30.077-112.622l0.637 1.262zM842.24 271.36c-33.053-18.528-72.537-29.44-114.57-29.44-0.071 0-0.143 0-0.214 0l-135.242-0c-0.009 0-0.019 0-0.030 0-49.764 0-92.344-30.756-109.769-74.297l-0.281-0.796v-2.987h178.347c77.547 1.312 144.881 43.802 181.212 106.496l0.548 1.024zM903.253 728.32c0 0.127 0.001 0.278 0.001 0.429 0 97.256-78.599 176.154-175.741 176.638l-0.046 0h-428.8c-97.188-0.484-175.787-79.382-175.787-176.638 0-0.151 0-0.301 0.001-0.452l-0 0.023v-464.64c-0-0.127-0.001-0.277-0.001-0.427 0-79.733 64.515-144.397 144.191-144.639l0.023-0h89.6c22.575 0.056 41.876 14.018 49.792 33.771l0.128 0.362 15.36 38.4c27.085 68.491 92.722 116.057 169.469 116.057 0.421 0 0.842-0.001 1.262-0.004l-0.065 0h135.253c97.188 0.484 175.787 79.382 175.787 176.638 0 0.151-0 0.301-0.001 0.452l0-0.023z","M632.32 615.253h-240.64c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h240.64c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus-folder"]},"attrs":[{},{}],"properties":{"order":6766,"id":198,"name":"minus-folder","prevSize":32,"code":60022},"setIdx":0,"setId":0,"iconIdx":374},{"icon":{"paths":["M679.253 113.067c127.953 0 231.68 103.727 231.68 231.68v0 334.507c0 127.953-103.727 231.68-231.68 231.68v0h-334.507c-127.953 0-231.68-103.727-231.68-231.68v0-334.507c0-127.953 103.727-231.68 231.68-231.68v-0h334.507zM312.747 551.68h398.507c21.915 0 39.68-17.765 39.68-39.68s-17.765-39.68-39.68-39.68h-398.507c-21.915 0-39.68 17.765-39.68 39.68s17.765 39.68 39.68 39.68h0zM679.253 53.333h-334.507c-160.943 0-291.413 130.47-291.413 291.413v0 334.507c0 160.943 130.47 291.413 291.413 291.413v0h334.507c160.943 0 291.413-130.47 291.413-291.413v-334.507c0-160.943-130.47-291.413-291.413-291.413v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus-square"]},"attrs":[{}],"properties":{"order":6767,"id":197,"name":"minus-square","prevSize":32,"code":60023},"setIdx":0,"setId":0,"iconIdx":375},{"icon":{"paths":["M768 466.773v0l-512 2.56c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0 0l512-2.56c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus"]},"attrs":[{}],"properties":{"order":6768,"id":196,"name":"minus","prevSize":32,"code":60024},"setIdx":0,"setId":0,"iconIdx":376},{"icon":{"paths":["M911.787 388.693v-139.947c0.001-0.256 0.002-0.558 0.002-0.861 0-106.853-86.138-193.588-192.764-194.552l-0.091-0.001h-472.32c-106.901 0.725-193.282 87.553-193.282 194.556 0 0.301 0.001 0.603 0.002 0.904l-0-0.046v298.667c-0.001 0.255-0.002 0.556-0.002 0.858 0 107.003 86.38 193.831 193.213 194.555l0.069 0h238.933v81.493h-174.933c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h173.653c0.833 0.115 1.795 0.181 2.773 0.181s1.94-0.066 2.883-0.193l-0.11 0.012c13.551 49.298 57.813 84.977 110.466 85.333l0.041 0h256c63.304-0.419 114.461-51.834 114.461-115.198 0-1.802-0.041-3.594-0.123-5.375l0.009 0.253v-363.947c-0.019-42.985-23.491-80.483-58.313-100.395l-0.567-0.298zM485.12 489.387v188.587h-238.507c-70.998-1.435-128.003-59.328-128.003-130.535 0-0.309 0.001-0.617 0.003-0.926l-0 0.047v-298.667c-0.002-0.261-0.003-0.57-0.003-0.878 0-71.207 57.005-129.1 127.869-130.533l0.134-0.002h472.32c0.013-0 0.029-0 0.046-0 70.692 0 128 57.308 128 128 0 1.2-0.017 2.397-0.049 3.589l0.004-0.175v125.44h-247.467c-63.121 0.961-113.921 52.355-113.921 115.614 0 0.154 0 0.309 0.001 0.463l-0-0.024zM906.667 853.333c0.001 0.129 0.002 0.281 0.002 0.434 0 27.978-22.44 50.714-50.304 51.192l-0.045 0.001h-256c-28.094-0.241-50.775-23.071-50.775-51.198 0-0.151 0.001-0.301 0.002-0.452l-0 0.023v-363.947c-0.001-0.129-0.002-0.281-0.002-0.434 0-28.213 22.631-51.141 50.73-51.619l0.045-0.001h256c27.911 0.476 50.354 23.214 50.354 51.193 0 0.303-0.003 0.604-0.008 0.906l0.001-0.045z","M773.973 830.293c0 21.915-17.765 39.68-39.68 39.68s-39.68-17.765-39.68-39.68c0-21.915 17.765-39.68 39.68-39.68s39.68 17.765 39.68 39.68z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["monitor-mobile"]},"attrs":[{},{}],"properties":{"order":6769,"id":195,"name":"monitor-mobile","prevSize":32,"code":60025},"setIdx":0,"setId":0,"iconIdx":377},{"icon":{"paths":["M544.427 928c-0.127 0-0.277 0-0.427 0-30.053 0-59.381-3.107-87.679-9.018l2.773 0.484c-121.649-24.783-222.344-99.186-281.803-200.677l-1.077-1.989c-37.244-62.055-59.272-136.928-59.272-216.945 0-180.222 111.738-334.346 269.716-396.873l2.889-1.008c9.337-3.606 20.141-5.695 31.434-5.695 24.92 0 47.464 10.173 63.705 26.593l0.008 0.008c15.496 15.451 25.083 36.821 25.083 60.429 0 10.787-2.002 21.107-5.654 30.608l0.197-0.584c-13.878 32.714-21.944 70.759-21.944 110.688 0 65.751 21.872 126.394 58.737 175.049l-0.526-0.724c54.173 72.238 139.608 118.48 235.844 118.48 12.064 0 23.959-0.727 35.643-2.139l-1.407 0.138c3.132-0.42 6.754-0.66 10.431-0.66 31.258 0 58.469 17.326 72.553 42.899l0.216 0.428c7.725 12.893 12.293 28.445 12.293 45.065 0 19.628-6.372 37.767-17.16 52.463l0.173-0.247c-25.199 34.557-54.502 64.131-87.656 88.823l-1.091 0.777c-69.984 52.235-158.184 83.633-253.717 83.633-0.803 0-1.605-0.002-2.407-0.007l0.123 0.001zM422.827 160c-1.347-0.291-2.894-0.457-4.48-0.457s-3.133 0.166-4.625 0.483l0.145-0.026c-137.308 53.727-232.788 185.019-232.788 338.613 0 67.873 18.645 131.39 51.092 185.711l-0.917-1.657c64.307 108.193 180.589 179.566 313.541 179.566 81.861 0 157.402-27.058 218.168-72.719l-0.935 0.673c28.891-21.87 53.781-46.896 74.822-74.973l0.698-0.973c2.626-3.826 4.194-8.556 4.194-13.653s-1.568-9.828-4.248-13.736l0.054 0.083c-3.298-6.472-9.912-10.828-17.544-10.828-0.885 0-1.756 0.059-2.61 0.172l0.1-0.011c-12.696 1.606-27.387 2.522-42.291 2.522-196.525 0-355.84-159.315-355.84-355.84 0-47.795 9.423-93.389 26.512-135.026l-0.861 2.371c0.946-2.299 1.495-4.968 1.495-7.765 0-5.806-2.366-11.059-6.187-14.847l-0.001-0.001c-4.42-4.636-10.604-7.556-17.471-7.68l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["moon"]},"attrs":[{}],"properties":{"order":6770,"id":194,"name":"moon","prevSize":32,"code":60026},"setIdx":0,"setId":0,"iconIdx":378},{"icon":{"paths":["M725.333 970.667h-426.667c-0.127 0-0.277 0-0.427 0-135.258 0-244.907-109.648-244.907-244.907 0-0.15 0-0.3 0-0.45l-0 0.023v-426.667c-0-0.127-0-0.277-0-0.427 0-135.258 109.648-244.907 244.907-244.907 0.15 0 0.3 0 0.45 0l-0.023-0h426.667c0.127-0 0.277-0 0.427-0 135.258 0 244.907 109.648 244.907 244.907 0 0.15-0 0.3-0 0.45l0-0.023v426.667c0 0.127 0 0.277 0 0.427 0 135.258-109.648 244.907-244.907 244.907-0.15 0-0.3-0-0.45-0l0.023 0zM298.667 117.333c-0.127-0-0.277-0.001-0.427-0.001-99.912 0-180.907 80.995-180.907 180.907 0 0.15 0 0.3 0.001 0.45l-0-0.023v426.667c-0 0.127-0.001 0.277-0.001 0.427 0 99.912 80.995 180.907 180.907 180.907 0.15 0 0.3-0 0.45-0.001l-0.023 0h426.667c0.127 0 0.277 0.001 0.427 0.001 99.912 0 180.907-80.995 180.907-180.907 0-0.15-0-0.3-0.001-0.45l0 0.023v-426.667c0-0.127 0.001-0.277 0.001-0.427 0-99.912-80.995-180.907-180.907-180.907-0.15 0-0.3 0-0.45 0.001l0.023-0zM512 328.107c-30.869-0-55.893 25.024-55.893 55.893s25.024 55.893 55.893 55.893c30.869 0 55.893-25.024 55.893-55.893h-0c0-30.869-25.024-55.893-55.893-55.893v0zM354.56 584.107c-30.869 0-55.893 25.024-55.893 55.893s25.024 55.893 55.893 55.893c30.869 0 55.893-25.024 55.893-55.893v0c0-30.869-25.024-55.893-55.893-55.893h0zM669.44 584.107c-30.869 0-55.893 25.024-55.893 55.893s25.024 55.893 55.893 55.893c30.869 0 55.893-25.024 55.893-55.893h0c0-30.869-25.024-55.893-55.893-55.893v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["more-2"]},"attrs":[{}],"properties":{"order":6771,"id":193,"name":"more-2","prevSize":32,"code":60027},"setIdx":0,"setId":0,"iconIdx":379},{"icon":{"paths":["M697.6 973.227h-2.133c-43.087-0.041-79.465-28.716-91.135-68.020l-0.172-0.673-77.653-256c-2.784-8.776-4.388-18.868-4.388-29.336 0-55.376 44.891-100.267 100.267-100.267 10.707 0 21.023 1.678 30.697 4.786l-0.71-0.197 249.6 78.933c39.693 13.022 67.852 49.739 67.852 93.034 0 41.867-26.332 77.583-63.338 91.491l-0.673 0.222-71.253 25.6c-8.894 3.407-15.793 10.306-19.124 18.975l-0.076 0.225-25.6 74.667c-12.973 38.964-49.106 66.561-91.685 66.561-0.167 0-0.334-0-0.501-0.001l0.026 0zM622.080 583.68c-19.973 0.378-36.020 16.659-36.020 36.687 0 3.651 0.533 7.178 1.526 10.506l-0.067-0.26 77.653 256c4.154 13.811 16.683 23.729 31.554 23.893l0.019 0c0.451 0.022 0.979 0.035 1.509 0.035 14.416 0 26.636-9.408 30.853-22.419l0.064-0.229 25.6-74.667c9.801-27.295 30.826-48.46 57.361-58.239l0.666-0.215 71.253-25.6c13.033-4.557 22.214-16.748 22.214-31.083 0-0.473-0.010-0.943-0.030-1.411l0.002 0.067c-0.008-14.71-9.81-27.128-23.237-31.089l-0.229-0.058-249.6-78.933c-3.235-1.575-7.001-2.64-10.975-2.979l-0.118-0.008zM523.093 893.44c0-17.673-14.327-32-32-32v0c-206.186 0-373.333-167.147-373.333-373.333s167.147-373.333 373.333-373.333c206.186 0 373.333 167.147 373.333 373.333v0c0 17.673 14.327 32 32 32s32-14.327 32-32v0c0-241.533-195.801-437.333-437.333-437.333s-437.333 195.801-437.333 437.333c0 241.533 195.801 437.333 437.333 437.333l-0 0c0.128 0.002 0.279 0.003 0.43 0.003 17.437 0 31.573-14.136 31.573-31.573 0-0.151-0.001-0.302-0.003-0.452l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mouse-circle"]},"attrs":[{}],"properties":{"order":6772,"id":192,"name":"mouse-circle","prevSize":32,"code":60028},"setIdx":0,"setId":0,"iconIdx":380},{"icon":{"paths":["M500.053 886.613h-209.067c-126.259-0.484-228.452-102.828-228.693-229.097l-0-0.023v-370.347c0.242-126.206 102.487-228.451 228.67-228.693l0.023-0h370.773c126.304 0 228.693 102.389 228.693 228.693v0 224.853c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-224.853c0-90.958-73.736-164.693-164.693-164.693v0h-370.773c-90.221 0.965-162.987 74.327-162.987 164.684 0 0.003 0 0.006 0 0.009l-0-0v370.347c-0 0-0 0-0 0.001 0 91.043 73.684 164.877 164.67 165.119l0.023 0h209.067c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM798.72 907.52l24.32-70.4c3.055-7.889 9.178-14.012 16.866-16.998l0.201-0.069 66.987-23.893c36.604-13.363 62.263-47.878 62.263-88.386 0-41.774-27.289-77.175-65.012-89.348l-0.664-0.185-235.093-74.24c-8.623-2.787-18.544-4.394-28.84-4.394-53.491 0-96.853 43.363-96.853 96.853 0 9.936 1.496 19.522 4.275 28.546l-0.182-0.686 73.387 239.787c11.409 38.557 46.376 66.262 87.859 66.56l0.034 0h2.133c0.883 0.030 1.921 0.048 2.964 0.048 40.539 0 74.964-26.174 87.299-62.545l0.191-0.649zM649.387 605.013l235.093 74.24c12.029 4.041 20.541 15.213 20.541 28.373s-8.512 24.332-20.33 28.312l-0.211 0.062-66.987 23.893c-26.087 9.641-46.212 30.046-55.269 55.678l-0.198 0.642-24.32 70.4c-4.041 12.029-15.213 20.541-28.373 20.541s-24.332-8.512-28.312-20.33l-0.062-0.211-73.387-240.213c-0.953-2.936-1.502-6.313-1.502-9.819 0-17.922 14.351-32.493 32.189-32.847l0.033-0.001c0.763-0.049 1.655-0.076 2.554-0.076 3.793 0 7.47 0.495 10.971 1.424l-0.298-0.067z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mouse-square"]},"attrs":[{}],"properties":{"order":6773,"id":191,"name":"mouse-square","prevSize":32,"code":60029},"setIdx":0,"setId":0,"iconIdx":381},{"icon":{"paths":["M544 500.053c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-124.587c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM544 182.187v-61.013c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 61.013c-143.541 10.771-255.933 129.849-256 275.193l-0 0.007v233.813c0.243 152.277 123.743 275.627 276.053 275.627 0 0 0-0 0.001-0l23.893 0c-0 0 0 0 0 0 152.31 0 275.81-123.35 276.053-275.603l0-0.024v-233.813c-0.067-145.351-112.459-264.429-255.078-275.144l-0.922-0.056zM736 691.2c0 117.821-95.513 213.333-213.333 213.333v0h-23.893c-117.821 0-213.333-95.513-213.333-213.333v0-233.813c0-117.821 95.513-213.333 213.333-213.333v0h23.893c117.821 0 213.333 95.513 213.333 213.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mouse"]},"attrs":[{}],"properties":{"order":6774,"id":190,"name":"mouse","prevSize":32,"code":60030},"setIdx":0,"setId":0,"iconIdx":382},{"icon":{"paths":["M911.787 191.573l-122.453-73.813c-17.683-10.671-39.038-16.984-61.867-16.984s-44.183 6.313-62.413 17.289l0.546-0.305-153.6 87.040-152.747-88.32c-17.683-10.671-39.038-16.984-61.867-16.984s-44.183 6.313-62.413 17.289l0.546-0.305-122.453 75.093c-35.217 21.853-58.346 60.267-58.453 104.091l-0 0.016v414.293c-0 0.030-0 0.066-0 0.101 0 44.163 23.543 82.828 58.763 104.127l0.544 0.305 119.040 70.827c17.639 10.722 38.965 17.068 61.773 17.068 0.183 0 0.366-0 0.549-0.001l-0.028 0c22.303-0.079 43.185-6.087 61.175-16.529l-0.589 0.315 156.16-90.453 156.587 90.453c17.542 10.125 38.568 16.13 60.989 16.213l0.024 0c0.085 0 0.186 0 0.286 0 22.886 0 44.29-6.345 62.55-17.371l-0.543 0.304 119.040-70.827c35.732-21.682 59.254-60.355 59.307-104.526l0-0.008v-414.293c-0.195-43.818-23.294-82.197-57.935-103.805l-0.519-0.301zM323.84 831.573c-8.312 4.928-18.323 7.841-29.013 7.841s-20.701-2.912-29.281-7.987l0.268 0.146-119.040-72.107c-16.971-10.124-28.16-28.388-28.16-49.265 0-0.080 0-0.161 0-0.241l-0 0.012v-414.293c0.069-20.701 11.047-38.823 27.483-48.924l0.25-0.143 122.453-73.813c8.778-5.692 19.512-9.077 31.037-9.077 10.047 0 19.493 2.572 27.715 7.094l-0.298-0.15 362.24 209.067c2.055 1.202 3.414 3.399 3.414 5.912 0 0.021-0 0.043-0 0.064l0-0.003v177.92c0.011 0.143 0.017 0.31 0.017 0.478 0 2.52-1.366 4.722-3.398 5.904l-0.033 0.017c-1.014 0.705-2.271 1.127-3.627 1.127s-2.613-0.421-3.648-1.141l0.021 0.014-305.067-194.133c-10.847-7.094-24.131-11.313-38.4-11.313-39.116 0-70.827 31.71-70.827 70.827 0 0.077 0 0.155 0 0.232l-0-0.012v178.347c0.148 26.171 14.382 48.984 35.5 61.257l0.34 0.183 144.64 85.333zM906.667 710.827c0 0.068 0 0.148 0 0.228 0 20.877-11.19 39.141-27.899 49.12l-0.261 0.145-119.040 69.973c-8.384 4.923-18.466 7.831-29.227 7.831s-20.843-2.908-29.503-7.981l0.276 0.149-365.227-210.347c-2.28-1.013-3.841-3.257-3.841-5.866 0-0.038 0-0.075 0.001-0.113l-0 0.006v-178.347c-0.001-0.032-0.001-0.070-0.001-0.107 0-2.609 1.561-4.853 3.8-5.85l0.041-0.016c0.506-0.203 1.093-0.321 1.707-0.321s1.201 0.118 1.738 0.332l-0.032-0.011c0.575-0.175 1.236-0.276 1.92-0.276s1.345 0.101 1.968 0.288l-0.048-0.012 304.64 195.413c10.765 6.877 23.892 10.962 37.973 10.962 39.306 0 71.178-31.826 71.253-71.115l0-0.007v-177.92c0-0.030 0-0.066 0-0.102 0-26.078-14.093-48.864-35.079-61.157l-0.334-0.181-145.067-85.333 121.173-69.547c8.424-5.042 18.584-8.023 29.44-8.023s21.016 2.981 29.705 8.17l-0.265-0.147 122.453 75.947c16.686 10.244 27.665 28.366 27.733 49.057l0 0.010z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["nexo"]},"attrs":[{}],"properties":{"order":6775,"id":189,"name":"nexo","prevSize":32,"code":60031},"setIdx":0,"setId":0,"iconIdx":383},{"icon":{"paths":["M777.813 512c0-146.805-119.009-265.813-265.813-265.813s-265.813 119.009-265.813 265.813c0 146.805 119.009 265.813 265.813 265.813v0c0.252 0.001 0.55 0.001 0.848 0.001 28.355 0 55.652-4.527 81.209-12.897l-1.843 0.523c108.509-35.117 185.6-135.266 185.6-253.422 0-0.007-0-0.013-0-0.020l0 0.001zM713.813 512c-0.158 85.632-53.738 158.709-129.181 187.694l-1.379 0.466c-56.028-42.908-91.8-109.831-91.8-185.11 0-77.886 38.292-146.828 97.077-189.028l0.696-0.475c73.688 31.225 124.465 102.894 124.587 186.438l0 0.016zM310.187 512c-0-0.003-0-0.007-0-0.011 0-110.473 88.952-200.17 199.14-201.374l0.114-0.001c-50.403 53.353-81.387 125.517-81.387 204.918 0 75.838 28.266 145.074 74.837 197.747l-0.276-0.319c-107.125-5.142-192.076-93.074-192.427-200.925l-0-0.035zM480.853 170.667v-52.48c0-17.673 14.327-32 32-32s32 14.327 32 32v0 52.48c0 17.673-14.327 32-32 32s-32-14.327-32-32v0zM544.853 857.6v50.347c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-52.48c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM210.773 256c-8.278-5.953-13.606-15.557-13.606-26.406 0-17.909 14.518-32.427 32.427-32.427 10.849 0 20.453 5.328 26.34 13.509l0.066 0.096 35.413 35.84c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0zM813.227 768c5.784 5.79 9.361 13.785 9.361 22.616 0 17.673-14.327 32-32 32-0.141 0-0.282-0.001-0.422-0.003l0.021 0c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003-35.413-35.413c-6.274-5.858-10.185-14.178-10.185-23.412 0-17.673 14.327-32 32-32 9.234 0 17.554 3.911 23.394 10.166l0.017 0.019zM200.533 512c0 17.673-14.327 32-32 32v0h-50.347c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.48c16.731 1.152 29.867 15.006 29.867 31.929 0 0.025-0 0.050-0 0.075l0-0.004zM938.667 512c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0h-51.2c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h50.347c0.128-0.002 0.278-0.003 0.429-0.003 17.76 0 32.185 14.277 32.424 31.98l0 0.023zM291.84 732.16c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-35.84 35.413c-5.914 7.309-14.883 11.943-24.934 11.943-17.673 0-32-14.327-32-32 0-9.945 4.537-18.83 11.653-24.699l0.055-0.044 35.84-35.413c5.81-5.911 13.891-9.574 22.827-9.574 8.724 0 16.632 3.491 22.405 9.152l-0.005-0.005zM812.8 210.773c5.807 5.858 9.396 13.923 9.396 22.827s-3.588 16.969-9.398 22.829l0.002-0.002-35.84 35.413c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 36.267-35.84c5.767-5.656 13.676-9.147 22.4-9.147s16.633 3.491 22.405 9.152l-0.005-0.005z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["night-day"]},"attrs":[{}],"properties":{"order":6776,"id":188,"name":"night-day","prevSize":32,"code":60032},"setIdx":0,"setId":0,"iconIdx":384},{"icon":{"paths":["M776.96 438.187c-3.99 13.756-16.381 23.679-31.122 23.893l-0.025 0h-8.107l-200.533-51.2c-12.791-4.688-21.754-16.758-21.754-30.921 0-18.144 14.709-32.853 32.853-32.853 2.262 0 4.471 0.229 6.605 0.664l-0.211-0.036 200.533 51.627c13.31 4.077 22.821 16.255 22.821 30.655 0 2.905-0.387 5.72-1.113 8.396l0.052-0.224z","M652.8 583.68c-4.11 13.678-16.43 23.535-31.106 23.893l-0.041 0.001h-8.107l-118.613-31.147c-13.89-3.515-24.005-15.902-24.005-30.653 0-2.752 0.352-5.422 1.014-7.967l-0.048 0.219c3.674-13.919 16.152-24.015 30.988-24.015 2.784 0 5.486 0.356 8.061 1.024l-0.222-0.049 119.040 31.147c13.777 3.772 23.735 16.18 23.735 30.914 0 2.349-0.253 4.639-0.733 6.844l0.039-0.211z","M946.773 233.387c-31.255-56.2-82.652-98.010-144.206-116.050l-1.714-0.43-147.2-42.667c-20.492-6.309-44.049-9.942-68.454-9.942-81.364 0-153.296 40.38-196.85 102.194l-0.509 0.761c-7.974 1.253-14.747 2.739-21.373 4.579l1.32-0.313-146.773 42.667c-101.496 31.267-173.983 124.216-173.983 234.096 0 24.848 3.707 48.83 10.598 71.423l-0.454-1.732 79.36 267.093c30.956 101.73 123.945 174.479 233.926 174.479 24.911 0 48.95-3.732 71.589-10.668l-1.729 0.456 146.773-42.667c32.703-9.096 61.194-23.756 85.867-43.069l-0.534 0.402c104.643-6.449 191.015-77.821 219.717-174.057l0.443-1.73 76.8-266.667c6.166-20.268 9.715-43.562 9.715-67.686 0-44.363-12.005-85.923-32.943-121.607l0.614 1.133zM421.973 887.893c-15.498 4.827-33.318 7.608-51.786 7.608-80.691 0-148.984-53.079-171.87-126.226l-0.344-1.276-79.36-267.093c-4.849-15.512-7.642-33.348-7.642-51.836 0-80.936 53.529-149.37 127.116-171.83l1.273-0.334 111.36-33.28-76.373 264.107c-6.291 20.597-9.914 44.271-9.914 68.79 0 110.572 73.662 203.94 174.59 233.707l1.723 0.436 123.307 35.84zM905.813 401.493l-77.227 266.667c-13.334 46.622-44.012 84.528-84.433 107.059l-0.9 0.461c-25.117 14.092-55.125 22.392-87.071 22.392-17.772 0-34.945-2.569-51.166-7.355l1.277 0.323-147.2-42.667c-75.716-22.417-130.016-91.348-130.016-172.961 0-17.882 2.607-35.155 7.461-51.46l-0.326 1.274 76.8-266.667c23.018-74.062 90.529-127.075 170.559-127.999l0.108-0.001c17.958 0.050 35.279 2.696 51.633 7.583l-1.286-0.33 147.2 42.667c75.716 22.417 130.016 91.348 130.016 172.961 0 17.882-2.607 35.155-7.461 51.46l0.326-1.274z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note-2"]},"attrs":[{},{},{}],"properties":{"order":6777,"id":187,"name":"note-2","prevSize":32,"code":60033},"setIdx":0,"setId":0,"iconIdx":385},{"icon":{"paths":["M787.2 116.48l-167.253-38.4c-15.825-3.742-33.995-5.887-52.666-5.887-88.558 0-165.844 48.265-206.986 119.926l-0.615 1.162-136.96 39.68c-99.265 29.010-170.547 119.21-170.547 226.059 0 23.285 3.385 45.78 9.69 67.018l-0.424-1.663 73.813 256c29.346 99.096 119.374 170.236 226.083 170.667l0.050 0c0.749 0.008 1.634 0.013 2.52 0.013 22.312 0 43.931-2.963 64.487-8.517l-1.727 0.397 176.213-50.773c22.589-7.068 42.252-16.642 60.121-28.677l-0.814 0.517h8.107c112.314-0.213 206.329-78.303 230.935-183.138l0.318-1.609 64-278.613c3.744-15.801 5.891-33.944 5.891-52.587 0-112.31-77.905-206.424-182.624-231.25l-1.614-0.323zM409.173 881.493c-14.64 4.543-31.47 7.159-48.912 7.159-77.973 0-143.733-52.29-164.127-123.716l-0.294-1.204-73.813-256c-4.351-14.339-6.855-30.82-6.855-47.885 0-30.345 7.92-58.841 21.805-83.532l-0.443 0.857c22.074-40.047 58.647-69.809 102.475-82.475l1.205-0.298 92.587-26.88-61.44 267.52c-3.795 15.92-5.971 34.198-5.971 52.985 0 112.575 78.133 206.901 183.129 231.707l1.615 0.322 96 21.76zM903.68 386.56l-64 278.613c-18.298 77.802-87.118 134.832-169.258 134.832-0.495 0-0.99-0.002-1.484-0.006l0.076 0h-13.653c-8.843-0.139-17.361-1.22-25.553-3.147l0.806 0.16-167.68-38.4c-77.828-18.278-134.885-87.111-134.885-169.271 0-13.656 1.576-26.943 4.557-39.69l-0.231 1.174 64-278.613c2.72-10.234 5.78-18.891 9.43-27.232l-0.47 1.205c1.491-4.191 2.931-7.571 4.538-10.854l-0.272 0.614c27.924-58.45 86.568-98.111 154.476-98.111 14.072 0 27.746 1.703 40.828 4.914l-1.17-0.243 167.68 38.4c78.415 17.832 136.064 86.952 136.064 169.536 0 12.792-1.383 25.261-4.008 37.266l0.211-1.148z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note"]},"attrs":[{}],"properties":{"order":6778,"id":186,"name":"note","prevSize":32,"code":60034},"setIdx":0,"setId":0,"iconIdx":386},{"icon":{"paths":["M702.293 413.44h-384c-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427h384c17.909 0 32.427 14.518 32.427 32.427s-14.518 32.427-32.427 32.427h-0zM469.333 551.253h-148.48c-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427h148.48c17.909 0 32.427-14.518 32.427-32.427s-14.518-32.427-32.427-32.427h-0zM927.147 589.227l-336.213 352.853c-5.181 5.798-12.681 9.431-21.029 9.431-0.557 0-1.111-0.016-1.66-0.048l0.076 0.004h-213.333c-146-0.242-264.291-118.533-264.533-264.51l-0-0.023v-314.453c0.441-134.803 100.998-245.986 231.184-263.108l1.349-0.145v-5.12c0-17.673 14.327-32 32-32s32 14.327 32 32v0 3.84h247.467v-3.84c0-17.673 14.327-32 32-32s32 14.327 32 32v0 5.12c133.239 14.705 235.947 126.659 235.947 262.601 0 0.229-0 0.458-0.001 0.687l0-0.035v194.56c0.004 0.176 0.006 0.384 0.006 0.593 0 8.36-3.25 15.962-8.554 21.61l0.016-0.017zM533.333 755.2c-0.063-1.939-0.099-4.218-0.099-6.506 0-115.455 91.716-209.489 206.264-213.218l0.342-0.009h130.56v-162.987c0.004-0.452 0.006-0.986 0.006-1.52 0-99.792-73.677-182.377-169.602-196.325l-1.071-0.128v7.68c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-11.52h-248.747v10.24c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-6.4c-96.872 15.366-170.125 98.035-170.666 197.916l-0 0.057v315.733c0.242 110.654 89.879 200.291 200.51 200.533l0.023 0h181.76zM742.4 597.333c-80.584 2.127-145.098 67.958-145.098 148.858 0 1.067 0.011 2.132 0.034 3.194l-0.003-0.158v91.307l230.4-243.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notepad-bookmark"]},"attrs":[{}],"properties":{"order":6779,"id":185,"name":"notepad-bookmark","prevSize":32,"code":60035},"setIdx":0,"setId":0,"iconIdx":387},{"icon":{"paths":["M687.36 970.667h-350.72c-0.638 0.005-1.393 0.008-2.149 0.008-154.476 0-279.901-124.384-281.583-278.462l-0.001-0.16v-326.827c0.964-154.791 126.669-279.901 281.595-279.901 0.752 0 1.503 0.003 2.254 0.009l-0.115-0.001h151.040c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-151.040c-0.39-0.003-0.852-0.004-1.314-0.004-118.593 0-214.984 95.057-217.137 213.136l-0.003 0.202v326.827c2.156 118.28 98.547 213.337 217.139 213.337 0.462 0 0.923-0.001 1.385-0.004l-0.071 0h350.72c0.39 0.003 0.852 0.004 1.314 0.004 118.593 0 214.984-95.057 217.137-213.136l0.003-0.202v-214.187c1.94-16.464 15.813-29.115 32.64-29.115s30.7 12.651 32.625 28.961l0.015 0.155v216.747c-1.683 154.237-127.108 278.622-281.584 278.622-0.755 0-1.51-0.003-2.264-0.009l0.115 0.001zM754.347 117.333c-0.221-0.005-0.482-0.007-0.743-0.007-12.774 0-24.107 6.169-31.183 15.69l-0.074 0.104-25.173 32.427c8.903 35.385 29.6 64.964 57.582 85.030l0.444 0.303c25.552 19.51 57.878 31.341 92.959 31.573l0.054 0h5.12l25.173-32.427c5.021-6.478 8.049-14.72 8.049-23.67 0-1.885-0.134-3.738-0.394-5.551l0.024 0.208c-1.334-10.634-7.046-19.719-15.246-25.523l-0.114-0.077-92.587-69.973c-6.491-5.056-14.762-8.107-23.745-8.107-0.052 0-0.105 0-0.157 0l0.008-0zM754.347 53.333c0-0 0.001-0 0.001-0 23.79 0 45.746 7.851 63.419 21.103l-0.274-0.197 93.44 69.12c25.439 18.767 41.758 48.626 41.758 82.296 0 23.584-8.006 45.298-21.449 62.573l0.172-0.229-28.16 36.693c-8.212 10.775-20.378 18.173-34.297 20.025l-0.263 0.029h-20.48c-0.31 0.002-0.677 0.002-1.044 0.002-49.464 0-95.19-16.002-132.284-43.111l0.635 0.442c-43.201-31.361-74.017-77.5-85.091-130.87l-0.242-1.397c-0.351-2.224-0.552-4.789-0.552-7.4 0-11.76 4.066-22.569 10.869-31.1l-0.078 0.101 28.16-36.693c19.667-26.024 50.557-42.667 85.333-42.667v0zM592.64 300.8v0zM559.787 343.467l-95.573 125.867c-4.032 4.996-6.563 11.352-6.825 18.289l-0.002 0.057v134.827c-0.049 0.378-0.078 0.815-0.078 1.259 0 3.065 1.346 5.815 3.48 7.691l0.011 0.010c2.52 2.532 5.967 4.138 9.789 4.266l0.024 0.001h3.84l130.56-38.4c6.611-2.22 12.13-6.225 16.155-11.442l0.058-0.078 95.573-123.733c-32.582-13.282-60.698-29.329-86.338-48.505l1.004 0.719c-26.711-20.025-49.866-42.638-69.802-67.908l-0.598-0.786zM563.2 253.44c0.179-0.005 0.39-0.007 0.602-0.007 9.94 0 18.557 5.665 22.798 13.943l0.067 0.144c22.013 38.105 50.587 69.947 84.493 94.981l0.84 0.592c32.965 24.846 72.247 43.261 114.935 52.547l1.971 0.36c12.566 1.993 22.058 12.749 22.058 25.722 0 6.488-2.374 12.421-6.3 16.978l0.029-0.034-128 167.253c-12.381 16.062-29.501 27.927-49.252 33.544l-0.668 0.162-131.84 38.4c-6.62 2.072-14.239 3.313-22.134 3.413l-0.052 0.001c-0.382 0.007-0.833 0.011-1.285 0.011-42.651 0-77.227-34.576-77.227-77.227 0-0.304 0.002-0.607 0.005-0.91l-0 0.046v-134.827c0.363-21.39 7.858-40.963 20.201-56.513l-0.148 0.193 128-167.253c5.086-6.223 12.742-10.18 21.323-10.24l0.010-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notepad-edit"]},"attrs":[{}],"properties":{"order":6780,"id":184,"name":"notepad-edit","prevSize":32,"code":60036},"setIdx":0,"setId":0,"iconIdx":388},{"icon":{"paths":["M740.693 431.787c0.002 0.127 0.003 0.277 0.003 0.427 0 18.144-14.709 32.853-32.853 32.853-0.001 0-0.002-0-0.003-0l-389.973 0c-18.38 0-33.28-14.9-33.28-33.28s14.9-33.28 33.28-33.28v0h389.973c0.001-0 0.002-0 0.003-0 18.144 0 32.853 14.709 32.853 32.853 0 0.15-0.001 0.3-0.003 0.449l0-0.023zM570.027 606.293h-250.027c-18.38-0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28v0h250.88c18.38 0 33.28-14.9 33.28-33.28s-14.9-33.28-33.28-33.28v0zM934.827 372.053v315.733c-0.242 146-118.533 264.291-264.51 264.533l-0.023 0h-317.44c-146-0.242-264.291-118.533-264.533-264.51l-0-0.023v-315.733c0.262-135.989 102.765-247.955 234.719-263.139l1.227-0.115v-5.12c0-17.673 14.327-32 32-32s32 14.327 32 32v0 3.413h247.467v-3.413c0-17.673 14.327-32 32-32s32 14.327 32 32v0 5.12c133.239 14.705 235.947 126.659 235.947 262.601 0 0.229-0 0.458-0.001 0.687l0-0.035zM870.827 372.053c0.004-0.452 0.006-0.986 0.006-1.52 0-99.792-73.677-182.377-169.602-196.325l-1.071-0.128v7.68c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-11.093h-247.893v10.667c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-7.253c-96.962 15.196-170.312 97.966-170.667 197.936l-0 0.037v315.733c0.242 110.654 89.879 200.291 200.51 200.533l0.023 0h318.293c110.654-0.242 200.291-89.879 200.533-200.51l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notepad"]},"attrs":[{}],"properties":{"order":6781,"id":183,"name":"notepad","prevSize":32,"code":60037},"setIdx":0,"setId":0,"iconIdx":389},{"icon":{"paths":["M810.667 149.333c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64v0c0-35.346 28.654-64 64-64v0zM810.667 85.333c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128v0c0-70.692-57.308-128-128-128v0z","M682.667 970.667h-384c-135.010-1.196-244.137-110.323-245.333-245.219l-0.001-0.114v-384c1.196-135.010 110.323-244.137 245.219-245.333l0.114-0.001h282.453c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-282.453c-99.666 1.189-180.144 81.668-181.332 181.22l-0.001 0.113v384c1.189 99.666 81.668 180.144 181.22 181.332l0.113 0.001h384c99.666-1.189 180.144-81.668 181.332-181.22l0.001-0.113v-287.147c0-17.673 14.327-32 32-32s32 14.327 32 32v0 287.147c-1.196 135.010-110.323 244.137-245.219 245.333l-0.114 0.001z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-2"]},"attrs":[{},{}],"properties":{"order":6782,"id":182,"name":"notification-2","prevSize":32,"code":60038},"setIdx":0,"setId":0,"iconIdx":390},{"icon":{"paths":["M512 483.413c-17.673 0-32-14.327-32-32v0-133.547c0-17.673 14.327-32 32-32s32 14.327 32 32v0 133.547c0 17.673-14.327 32-32 32v0z","M768 799.147h-512c-67.532-0.242-122.212-54.922-122.453-122.43l-0-0.023c0.093-27.44 9.042-52.771 24.136-73.306l-0.243 0.346 28.587-38.827c38.113-50.793 61.032-114.89 61.032-184.341 0-1.193-0.007-2.384-0.020-3.574l0.002 0.181c-0.028-1.435-0.044-3.126-0.044-4.822 0-109.718 66.905-203.81 162.142-243.704l1.742-0.647c31.228-13.402 67.571-21.194 105.735-21.194 57.172 0 110.259 17.488 154.204 47.406l-0.952-0.612c71.729 49.098 118.187 130.557 118.187 222.868 0 0.098-0 0.196-0 0.294l0-0.015v7.253c-0.027 1.539-0.043 3.354-0.043 5.174 0 64.213 19.459 123.882 52.801 173.431l-0.705-1.112 28.587 42.667c12.828 18.886 20.481 42.189 20.481 67.28 0 0.197-0 0.394-0.001 0.59l0-0.030c0.038 1.15 0.060 2.501 0.060 3.857 0 67.371-54.031 122.123-121.124 123.288l-0.109 0.001zM518.4 170.667c-30.727 0.062-60.047 6.009-86.917 16.773l1.584-0.56c-71.605 31.003-120.793 101.053-120.793 182.592 0 1.508 0.017 3.012 0.050 4.512l-0.004-0.224c0.027 1.682 0.042 3.667 0.042 5.655 0 84.108-27.561 161.779-74.145 224.473l0.716-1.008-28.587 39.253c-7.189 9.359-11.522 21.24-11.522 34.133 0 0.15 0.001 0.3 0.002 0.45l-0-0.023c-0 0.004-0 0.009-0 0.014 0 31.833 25.446 57.722 57.107 58.438l0.067 0.001h512c32.283 0 58.453-26.17 58.453-58.453l-0-0c0.014-0.489 0.022-1.065 0.022-1.643 0-12.392-3.669-23.928-9.979-33.579l0.144 0.235-28.587-42.667c-39.341-58.226-62.802-129.992-62.802-207.238 0-2.743 0.030-5.479 0.088-8.209l-0.007 0.407v-7.253c0.001-0.256 0.002-0.558 0.002-0.86 0-113.344-91.883-205.227-205.227-205.227-0.601 0-1.201 0.003-1.8 0.008l0.092-0.001z","M512 916.48c-57.653-0.227-105.338-42.612-113.838-97.915l-0.082-0.645c-0.101-0.705-0.158-1.519-0.158-2.347s0.057-1.642 0.169-2.439l-0.011 0.092v-42.667c0-17.673 14.327-32 32-32s32 14.327 32 32v0 40.107c4.555 23.994 25.361 41.891 50.347 41.891s45.791-17.897 50.296-41.572l0.051-0.32v-38.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0 42.667c0.101 0.705 0.158 1.519 0.158 2.347s-0.057 1.642-0.169 2.439l0.011-0.092c-8.588 55.391-55.934 97.293-113.068 97.293-0.6 0-1.198-0.005-1.796-0.014l0.090 0.001z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-bing"]},"attrs":[{},{},{}],"properties":{"order":6783,"id":181,"name":"notification-bing","prevSize":32,"code":60039},"setIdx":0,"setId":0,"iconIdx":391},{"icon":{"paths":["M810.667 149.333c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64v0c0-35.346 28.654-64 64-64v0zM810.667 85.333c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128v0c0-70.692-57.308-128-128-128v0z","M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667v0c0.748-0.005 1.633-0.007 2.519-0.007 29.303 0 57.916 2.954 85.558 8.581l-2.744-0.466c14.964 2.666 26.178 15.578 26.178 31.109 0 2.126-0.21 4.204-0.611 6.212l0.034-0.201c-3.055 14.991-16.132 26.112-31.806 26.112-2.029 0-4.015-0.186-5.941-0.543l0.2 0.031c-21.426-4.345-46.054-6.833-71.263-6.833-0.747 0-1.493 0.002-2.239 0.007l0.115-0.001c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.070-24.019-2.24-47.482-6.336-70.276l0.363 2.436c-0.718-2.528-1.131-5.431-1.131-8.431 0-17.673 14.327-32 32-32 16.585 0 30.223 12.617 31.84 28.777l0.011 0.134c4.544 23.824 7.181 51.26 7.253 79.298l0 0.062c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-circle"]},"attrs":[{},{}],"properties":{"order":6784,"id":180,"name":"notification-circle","prevSize":32,"code":60040},"setIdx":0,"setId":0,"iconIdx":392},{"icon":{"paths":["M810.667 149.333c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64v0c0-35.346 28.654-64 64-64v0zM810.667 85.333c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128v0c0-70.692-57.308-128-128-128v0z","M682.667 970.667h-384c-135.010-1.196-244.137-110.323-245.333-245.219l-0.001-0.114v-384c1.196-135.010 110.323-244.137 245.219-245.333l0.114-0.001h256c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-256c-99.666 1.189-180.144 81.668-181.332 181.22l-0.001 0.113v384c1.189 99.666 81.668 180.144 181.22 181.332l0.113 0.001h384c99.666-1.189 180.144-81.668 181.332-181.22l0.001-0.113v-241.493c0-17.673 14.327-32 32-32s32 14.327 32 32v0 241.493c-1.196 135.010-110.323 244.137-245.219 245.333l-0.114 0.001z","M370.347 808.107c-0.251 0.002-0.547 0.003-0.843 0.003-20.456 0-39.5-6.049-55.44-16.455l0.39 0.239c-61.974-33.368-103.916-96.864-106.232-170.355l-0.008-0.311c-0.011-0.591-0.018-1.288-0.018-1.986 0-50.49 33.474-93.163 79.439-107.035l0.792-0.205c9.022-2.676 19.388-4.216 30.114-4.216 18.125 0 35.223 4.398 50.285 12.184l-0.612-0.288c14.642-7.739 32.003-12.283 50.426-12.283 60.56 0 109.653 49.093 109.653 109.653 0 1.469-0.029 2.93-0.086 4.385l0.007-0.209c-1.408 73.325-42.298 136.788-102.24 170.149l-1.013 0.517c-15.5 9.883-34.323 15.878-54.524 16.212l-0.090 0.001zM318.72 571.307c-0.198-0.003-0.432-0.005-0.667-0.005-25.449 0-46.080 20.631-46.080 46.080 0 1.655 0.087 3.289 0.257 4.899l-0.017-0.201c3.692 50.451 33.376 93.211 75.594 115.256l0.78 0.371c6.12 3.594 13.479 5.716 21.333 5.716s15.214-2.123 21.535-5.825l-0.201 0.109c42.436-23.338 70.975-67.304 72.104-118.032l0.003-0.155c0.060-0.879 0.095-1.906 0.095-2.94 0-19.422-12.127-36.011-29.223-42.607l-0.312-0.106c-4.939-2.016-10.669-3.186-16.673-3.186-11.256 0-21.552 4.112-29.467 10.916l0.060-0.050-20.48 17.067-20.48-17.067c-7.638-6.215-17.433-10.045-28.117-10.239l-0.043-0.001z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-favorite"]},"attrs":[{},{},{}],"properties":{"order":6785,"id":179,"name":"notification-favorite","prevSize":32,"code":60041},"setIdx":0,"setId":0,"iconIdx":393},{"icon":{"paths":["M840.96 605.867c-32.654-48.617-52.117-108.469-52.117-172.867 0-2.227 0.023-4.448 0.070-6.664l-0.005 0.331v-6.4c-0.219-139.908-106.618-254.897-242.912-268.706l-1.141-0.094v-49.92c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 51.627c-25.648 3.061-49.008 9.214-70.937 18.148l1.817-0.655c-96.275 40.585-162.626 134.175-162.626 243.262 0 2.078 0.024 4.151 0.072 6.218l-0.006-0.307c0.012 1.008 0.019 2.2 0.019 3.393 0 69.45-22.919 133.548-61.607 185.141l0.575-0.801-28.587 39.253c-14.795 20.065-23.735 45.24-23.893 72.496l-0 0.038c-0 67.629 54.824 122.453 122.453 122.453v-0h140.373v14.080c7.967 56.539 56.026 99.56 114.133 99.56s106.166-43.021 114.063-98.949l0.071-0.611v-14.080h141.227c67.904-1.173 122.501-56.495 122.501-124.569 0-25.23-7.5-48.709-20.392-68.329l0.291 0.471zM563.2 848.64c-3.854 24.308-24.662 42.67-49.758 42.67-0.207 0-0.414-0.001-0.62-0.004l0.031 0c-25.206-0.070-46.123-18.342-50.303-42.361l-0.044-0.306v-6.827h100.693zM768 777.813h-509.867c-32.283 0-58.453-26.17-58.453-58.453l-0-0c0.549-13.293 5.624-25.304 13.713-34.63l-0.059 0.070 28.587-39.253c44.592-60.987 71.349-137.468 71.349-220.2 0-2.987-0.035-5.965-0.104-8.935l0.008 0.441c-0.014-0.864-0.021-1.885-0.021-2.907 0-82.017 49.767-152.41 120.751-182.629l1.297-0.491c24.895-10.26 53.797-16.217 84.091-16.217 0.437 0 0.873 0.001 1.309 0.004l-0.067-0c113.16 0.243 204.8 92.033 204.8 205.226 0 0-0 0-0 0l-0 0v6.827c-0.028 1.714-0.044 3.737-0.044 5.763 0 77.351 23.444 149.226 63.613 208.909l-0.849-1.338 28.587 42.667c6.164 9.289 9.835 20.698 9.835 32.963 0 0.562-0.008 1.121-0.023 1.679l0.002-0.082c0.025 0.636 0.039 1.383 0.039 2.133 0 32.283-26.17 58.453-58.453 58.453-0.014 0-0.027-0-0.041-0l0.002 0z","M148.907 453.12c15.695-2.223 27.634-15.567 27.634-31.701 0-1.611-0.119-3.194-0.349-4.741l0.021 0.175c-1.904-10.876-2.992-23.399-2.992-36.176 0-69.43 32.139-131.353 82.35-171.704l0.429-0.333c7.733-5.904 12.672-15.127 12.672-25.504 0-6.369-1.861-12.304-5.068-17.29l0.076 0.127c-5.815-7.813-15.023-12.82-25.4-12.82-6.423 0-12.399 1.918-17.384 5.213l0.118-0.073c-67.887 52.539-111.172 134.039-111.172 225.648 0 15.079 1.173 29.884 3.432 44.329l-0.207-1.604c2.174 15.506 15.351 27.308 31.284 27.308 0.102 0 0.203-0 0.305-0.001l-0.015 0z","M804.693 156.16c-5.577-4.844-12.91-7.796-20.933-7.796-17.673 0-32 14.327-32 32 0 11.879 6.473 22.246 16.084 27.767l0.156 0.082c50.598 41.080 82.667 103.28 82.667 172.971 0 12.596-1.048 24.946-3.060 36.97l0.18-1.301c-0.208 1.372-0.327 2.955-0.327 4.566 0 16.133 11.939 29.478 27.464 31.681l0.17 0.020h4.267c0.086 0.001 0.188 0.001 0.289 0.001 15.933 0 29.11-11.802 31.265-27.141l0.019-0.167c2.283-13.541 3.588-29.141 3.588-45.045 0-91.012-42.722-172.045-109.207-224.139l-0.621-0.469z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-on"]},"attrs":[{},{},{}],"properties":{"order":6786,"id":178,"name":"notification-on","prevSize":32,"code":60042},"setIdx":0,"setId":0,"iconIdx":394},{"icon":{"paths":["M810.667 149.333c35.346 0 64 28.654 64 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64v0c0-35.346 28.654-64 64-64v0zM810.667 85.333c-70.692 0-128 57.308-128 128s57.308 128 128 128c70.692 0 128-57.308 128-128v0c0-70.692-57.308-128-128-128v0z","M682.667 970.667h-384c-135.010-1.196-244.137-110.323-245.333-245.219l-0.001-0.114v-384c1.196-135.010 110.323-244.137 245.219-245.333l0.114-0.001h272.64c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-272.64c-99.666 1.189-180.144 81.668-181.332 181.22l-0.001 0.113v384c1.189 99.666 81.668 180.144 181.22 181.332l0.113 0.001h384c99.666-1.189 180.144-81.668 181.332-181.22l0.001-0.113v-256c0-17.673 14.327-32 32-32s32 14.327 32 32v0 256c-1.196 135.010-110.323 244.137-245.219 245.333l-0.114 0.001z","M490.667 597.333h-200.107c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h200.107c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z","M661.333 768h-370.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h370.773c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-status"]},"attrs":[{},{},{},{}],"properties":{"order":6787,"id":177,"name":"notification-status","prevSize":32,"code":60043},"setIdx":0,"setId":0,"iconIdx":395},{"icon":{"paths":["M881.493 605.867c-32.408-48.145-51.729-107.442-51.729-171.251 0-2.795 0.037-5.582 0.111-8.359l-0.009 0.41v-6.4c-0.219-139.908-106.618-254.897-242.912-268.706l-1.141-0.094v-49.92c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 51.627c-25.803 3.058-49.309 9.212-71.389 18.153l1.842-0.659c-96.059 40.816-162.197 134.369-162.197 243.369 0 2.041 0.023 4.076 0.069 6.106l-0.005-0.302c0.006 0.719 0.009 1.568 0.009 2.419 0 69.768-22.908 134.186-61.612 186.142l0.589-0.827-28.587 39.253c-15.12 20.091-24.214 45.464-24.214 72.96 0 67.393 54.633 122.027 122.027 122.027 0.113 0 0.226-0 0.338-0l-0.018 0h139.947v14.080c7.967 56.539 56.026 99.56 114.133 99.56s106.166-43.021 114.063-98.949l0.071-0.611v-14.080h143.787c67.825-0.973 122.433-56.183 122.433-124.148 0-25.419-7.638-49.053-20.745-68.734l0.285 0.455zM604.16 848.64c-5.017 23.677-25.744 41.186-50.56 41.186s-45.543-17.51-50.5-40.849l-0.060-0.338v-6.827h101.12zM810.667 777.813h-512c-32.193-0.119-58.245-26.243-58.245-58.453 0-13.001 4.245-25.011 11.424-34.719l-0.112 0.159 29.013-39.253c45.864-61.874 73.416-139.723 73.416-224.007 0-1.648-0.011-3.293-0.032-4.936l0.003 0.249c-0.013-0.833-0.020-1.817-0.020-2.802 0-81.93 49.555-152.286 120.327-182.73l1.292-0.495c25.022-10.259 54.064-16.215 84.497-16.215 0.294 0 0.588 0.001 0.882 0.002l-0.046-0c0.507-0.005 1.107-0.007 1.707-0.007 113.344 0 205.227 91.883 205.227 205.227 0 0.003-0 0.005-0 0.008l0-0v6.827c-0.027 1.677-0.042 3.656-0.042 5.639 0 77.334 23.274 149.231 63.2 209.071l-0.864-1.376 29.013 42.667c6.164 9.289 9.835 20.698 9.835 32.963 0 0.562-0.008 1.121-0.023 1.679l0.002-0.082c0.025 0.636 0.039 1.383 0.039 2.133 0 32.283-26.17 58.453-58.453 58.453-0.014 0-0.027-0-0.041-0l0.002 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification"]},"attrs":[{}],"properties":{"order":6788,"id":176,"name":"notification","prevSize":32,"code":60044},"setIdx":0,"setId":0,"iconIdx":396},{"icon":{"paths":["M576 181.333c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64v0c35.346 0 64 28.654 64 64v0zM512 309.333c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c-0.242-35.162-28.802-63.573-63.999-63.573-0.001 0-0.001 0-0.002 0l0-0zM330.667 213.333c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM693.333 213.333c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM693.333 394.667c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c-0.242-35.162-28.802-63.573-63.999-63.573-0.001 0-0.001 0-0.002 0l0-0zM874.667 309.333c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM512 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM330.667 394.667c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c-0.242-35.162-28.802-63.573-63.999-63.573-0.001 0-0.001 0-0.002 0l0-0zM149.333 309.333c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM149.333 501.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM330.667 586.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c-0.241-23.38-19.25-42.24-42.665-42.24-0.001 0-0.002 0-0.002 0l0-0zM330.667 586.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c-0.241-23.38-19.25-42.24-42.665-42.24-0.001 0-0.002 0-0.002 0l0-0zM512 672c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM512 672c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM693.333 586.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c-0.241-23.38-19.25-42.24-42.665-42.24-0.001 0-0.002 0-0.002 0l0-0zM693.333 586.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c-0.241-23.38-19.25-42.24-42.665-42.24-0.001 0-0.002 0-0.002 0l0-0zM874.667 501.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM874.667 501.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM149.333 501.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM874.667 640c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0zM693.333 736.427c-17.672 0.002-31.997 14.328-31.997 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-0.15-0.001-0.3-0.003-0.449l0 0.023c-0.241-17.489-14.474-31.573-31.997-31.573-0.001 0-0.002 0-0.003 0l0-0zM512 832c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0zM330.667 736c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0zM149.333 640c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ocean"]},"attrs":[{}],"properties":{"order":6789,"id":175,"name":"ocean","prevSize":32,"code":60045},"setIdx":0,"setId":0,"iconIdx":397},{"icon":{"paths":["M797.901 262.554h-142.541c-2.654-54.415-46.9-97.662-101.479-98.712l-0.101-0.002h-97.075c-55.153 0.161-100.119 43.554-102.8 98.064l-0.009 0.24h-168.755c-74.022 0.233-133.939 60.293-133.939 134.348 0 0 0 0 0 0.001l-0-0v183.501c0.086 34.732 15.937 65.745 40.771 86.274l0.189 0.152v118.374c0 62.209 50.431 112.64 112.64 112.64v0h573.44c62.209 0 112.64-50.431 112.64-112.64v0-118.374c25.024-20.681 40.874-51.694 40.96-86.411l0-0.015v-183.501c-0.232-73.879-60.060-133.707-133.917-133.939l-0.022-0zM456.704 225.69h97.075c0.061-0 0.133-0.001 0.205-0.001 21.179 0 38.604 16.074 40.74 36.689l0.015 0.176h-178.995c2.151-20.79 19.576-36.865 40.755-36.865 0.072 0 0.144 0 0.216 0.001l-0.011-0zM112.64 396.493c-0-40.040 32.459-72.499 72.499-72.499v0h614.4c40.040 0 72.499 32.459 72.499 72.499v0 183.501c0.001 0.090 0.001 0.197 0.001 0.304 0 19.632-11.414 36.597-27.968 44.623l-6.849 2.996c-4.841 2.052-10.469 3.254-16.375 3.277l-0.009 0h-656.998c-5.915-0.023-11.543-1.225-16.67-3.384l0.286 0.107-6.554-2.867c-16.849-8.154-28.263-25.12-28.263-44.752 0-0.107 0-0.214 0.001-0.32l-0 0.016zM829.44 692.224v92.57c0 28.277-22.923 51.2-51.2 51.2v0h-573.44c-28.277 0-51.2-22.923-51.2-51.2v0-92.57h675.84zM416.563 581.222c0-16.966 13.754-30.72 30.72-30.72v0h115.917c16.966 0 30.72 13.754 30.72 30.72s-13.754 30.72-30.72 30.72v0h-115.917c-16.874-0.228-30.492-13.846-30.72-30.698l-0-0.022z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["office-bag"]},"attrs":[{}],"properties":{"order":6790,"id":174,"name":"office-bag","prevSize":32,"code":60046},"setIdx":0,"setId":0,"iconIdx":398},{"icon":{"paths":["M944.64 735.147l-52.48-290.133c-15.533-81.443-78.624-144.677-158.737-160.223l-1.263-0.204v-85.333c-0.243-80.406-65.48-145.493-145.919-145.493-0 0-0 0-0.001 0l-159.573 0c-79.557 0.959-143.738 65.439-144.213 145.021l-0 0.045v85.333c-80.077 18.007-141.197 82.284-154.298 162.688l-0.155 1.152-49.493 290.133c-1.683 9.749-2.645 20.976-2.645 32.429 0 110.516 89.591 200.107 200.107 200.107 0.33 0 0.66-0.001 0.989-0.002l-0.051 0h469.333c0.236 0.001 0.516 0.002 0.795 0.002 61.551 0 116.625-27.731 153.41-71.38l0.248-0.302c29.309-34.364 47.14-79.293 47.14-128.386 0-12.533-1.162-24.794-3.384-36.682l0.191 1.228zM426.667 116.907h157.867c45.243 0 81.92 36.677 81.92 81.92v0 81.92h-320v-81.92c-0-0.005-0-0.012-0-0.018 0-44.643 35.71-80.946 80.124-81.901l0.089-0.002zM746.667 907.093h-469.333c-0.159 0.001-0.347 0.001-0.535 0.001-75.405 0-136.533-61.128-136.533-136.533 0-7.836 0.66-15.518 1.928-22.992l-0.113 0.805 48.213-289.707c8.551-50.646 44.175-91.247 91.202-106.818l0.958-0.275v3.84c0 17.673 14.327 32 32 32s32-14.327 32-32v0-11.093h321.707v11.093c0 17.673 14.327 32 32 32s32-14.327 32-32v0-5.12c49.718 14.258 87.215 54.888 96.721 105.397l0.132 0.843 46.933 258.133h-406.613c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h416c-1.932 30.522-13.708 57.971-32.155 79.546l0.155-0.186c-25.295 30.088-62.953 49.076-105.045 49.076-0.57 0-1.14-0.003-1.708-0.010l0.087 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["package"]},"attrs":[{}],"properties":{"order":6791,"id":173,"name":"package","prevSize":32,"code":60047},"setIdx":0,"setId":0,"iconIdx":399},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM725.333 301.227c14.374 0 26.027 11.653 26.027 26.027s-11.653 26.027-26.027 26.027h0c-14.374 0-26.027-11.653-26.027-26.027s11.653-26.027 26.027-26.027h-0zM512 283.307c14.374 0 26.027 11.653 26.027 26.027s-11.653 26.027-26.027 26.027c-14.374 0-26.027-11.653-26.027-26.027v0c0-14.374 11.653-26.027 26.027-26.027v0zM318.72 368.64c0.127-0.002 0.277-0.003 0.427-0.003 14.61 0 26.453 11.844 26.453 26.453s-11.844 26.453-26.453 26.453c-14.609 0-26.451-11.842-26.453-26.45l-0-0c0.467-14.095 11.893-25.372 26.005-25.6l0.022-0zM206.080 597.333c-14.374 0-26.027-11.653-26.027-26.027v0c0-14.374 11.653-26.027 26.027-26.027s26.027 11.653 26.027 26.027l-0 0c0 14.374-11.653 26.027-26.027 26.027h0zM538.027 729.173c-14.374 0-26.027-11.653-26.027-26.027s11.653-26.027 26.027-26.027c14.374 0 26.027 11.653 26.027 26.027v0c0 14.374-11.653 26.027-26.027 26.027v0zM654.080 597.333c-14.374 0-26.027-11.653-26.027-26.027v0c0.236-14.278 11.748-25.791 26.004-26.026l0.022-0c14.374 0 26.027 11.653 26.027 26.027v0c0 14.374-11.653 26.027-26.027 26.027v0zM420.693 746.667h-149.76c-16.667-0.356-31.331-8.623-40.431-21.184l-0.103-0.149c-6.107-8.234-9.775-18.594-9.775-29.812 0-4.57 0.609-8.998 1.75-13.207l-0.081 0.353c60.587-213.333 201.387-341.333 363.52-337.92 76.205 2.654 145.378 30.731 199.793 75.956l-0.539-0.436c11.48 9.225 18.766 23.265 18.766 39.006 0 8.013-1.888 15.585-5.244 22.296l0.131-0.289c-8.546 17.055-25.891 28.558-45.922 28.558-3.989 0-7.871-0.456-11.597-1.319l0.345 0.067c-20.913-7.109-45.003-11.213-70.052-11.213-43.027 0-83.226 12.108-117.375 33.103l0.974-0.557c-48.897 41.832-80.951 102.123-85.297 169.952l-0.037 0.715c-2.23 25.536-23.228 45.498-49.009 46.079l-0.057 0.001zM288.853 682.667h119.893c7.778-82.995 48.459-155.205 108.689-204.374l0.538-0.426c40.104-27.841 89.814-44.478 143.41-44.478 10.659 0 21.164 0.658 31.476 1.936l-1.234-0.125c-31.241-16.381-68.111-26.371-107.224-27.301l-0.296-0.006c-127.573-1.28-240.64 104.107-295.253 274.773zM843.52 552.533c-0.126 0.002-0.274 0.003-0.423 0.003-14.61 0-26.453-11.844-26.453-26.453s11.844-26.453 26.453-26.453c14.61 0 26.453 11.844 26.453 26.453 0 0.149-0.001 0.297-0.004 0.446l0-0.022c0.056 0.64 0.088 1.384 0.088 2.136 0 14.255-11.46 25.833-25.67 26.024l-0.018 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pails"]},"attrs":[{}],"properties":{"order":6792,"id":172,"name":"pails","prevSize":32,"code":60048},"setIdx":0,"setId":0,"iconIdx":400},{"icon":{"paths":["M867.84 375.893l-236.373-236.373c-23.769-23.708-56.572-38.367-92.8-38.367s-69.031 14.659-92.803 38.37l0.003-0.003-322.133 322.133c-23.708 23.769-38.367 56.572-38.367 92.8s14.659 69.031 38.37 92.803l-0.003-0.003 236.373 236.373c23.769 23.708 56.572 38.367 92.8 38.367s69.031-14.659 92.803-38.37l-0.003 0.003 322.133-322.133c23.708-23.769 38.367-56.572 38.367-92.8s-14.659-69.031-38.37-92.803l0.003 0.003zM491.093 184.747c11.861-12.118 28.386-19.63 46.665-19.63 0.244 0 0.489 0.001 0.732 0.004l-0.037-0c0.122-0.001 0.267-0.001 0.412-0.001 18.502 0 35.252 7.501 47.374 19.628l0 0 235.947 236.373c7.99 8.039 13.929 18.126 16.961 29.404l0.106 0.463c-69.221-9.531-149.211-14.972-230.47-14.972-148.682 0-293.11 18.216-431.173 52.537l12.257-2.579zM500.48 837.973c-12.093 12.351-28.939 20.009-47.573 20.009s-35.48-7.657-47.562-19.997l-0.011-0.012-234.667-235.947c-9.236-9.399-15.758-21.492-18.281-34.993l-0.065-0.42c142.080-59.733 455.68-83.627 672.427-54.613-0.629 1.203-1.492 2.202-2.536 2.97l-0.024 0.017zM878.507 694.187c-7.866-10.414-20.225-17.075-34.14-17.075-0.298 0-0.595 0.003-0.891 0.009l0.044-0.001c-14.379 0.034-27.163 6.837-35.337 17.391l-0.076 0.103c-32.514 37.236-54.398 84.52-60.474 136.63l-0.112 1.183c0 52.784 42.79 95.573 95.573 95.573s95.573-42.79 95.573-95.573h-0c-5.382-53.516-27.253-101.109-60.383-138.496l0.223 0.256zM843.093 858.88c-0.682 0.056-1.475 0.088-2.276 0.088-15.238 0-27.773-11.578-29.287-26.417l-0.010-0.125c3.918-29.65 15.34-56.077 32.279-78.030l-0.279 0.376c16.693 21.493 27.898 48.021 31.085 76.963l0.062 0.691c-1.524 14.964-14.058 26.541-29.297 26.541-0.801 0-1.595-0.032-2.38-0.095l0.103 0.007z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paintbucket"]},"attrs":[{}],"properties":{"order":6793,"id":171,"name":"paintbucket","prevSize":32,"code":60049},"setIdx":0,"setId":0,"iconIdx":401},{"icon":{"paths":["M793.6 433.92c-4.224-2.239-9.234-3.553-14.551-3.553-12.193 0-22.772 6.912-28.032 17.031l-0.083 0.175-166.4 320.427c-21.692 42.659-57.474 75.539-101.097 92.98l-1.303 0.46c-15.692 5.999-33.841 9.473-52.801 9.473-25.948 0-50.377-6.507-71.744-17.977l0.812 0.398c-37.727-20.289-65.322-55.286-75.315-97.117l-0.205-1.016c-3.734-14.233-5.879-30.572-5.879-47.412 0-32.555 8.013-63.238 22.175-90.185l-0.51 1.064 111.787-213.333 92.587-177.92c14.897-29.531 39.689-52.25 69.931-64.117l0.895-0.309c11.515-4.894 24.908-7.738 38.966-7.738 16.924 0 32.886 4.123 46.934 11.419l-0.567-0.268c25.501 14.049 44.156 37.867 51.055 66.281l0.145 0.706c2.496 9.638 3.929 20.703 3.929 32.102 0 23.092-5.88 44.81-16.223 63.74l0.348-0.695-93.44 180.053-66.133 128c-7.82 15.312-20.619 27.145-36.224 33.537l-0.469 0.17c-6.246 3.022-13.583 4.788-21.333 4.788s-15.088-1.766-21.632-4.918l0.299 0.13c-16.979-10.828-28.078-29.564-28.078-50.892 0-11.638 3.304-22.504 9.026-31.711l-0.148 0.256 119.893-230.827c1.851-3.926 2.932-8.527 2.932-13.381 0-17.673-14.327-32-32-32-11.758 0-22.035 6.342-27.597 15.791l-0.082 0.15-119.467 226.987c-10.581 17.89-16.833 39.427-16.833 62.423 0 46.224 25.26 86.549 62.729 107.923l0.611 0.321c14.683 8.060 32.174 12.801 50.773 12.801 0.15 0 0.3-0 0.45-0.001l-0.023 0c0.112 0 0.245 0.001 0.378 0.001 15.23 0 29.765-2.978 43.054-8.382l-0.765 0.275c32.221-12.39 57.833-35.926 72.611-65.78l0.349-0.78 159.147-307.2c14.659-26.998 23.277-59.115 23.277-93.244 0-16.885-2.109-33.277-6.079-48.927l0.295 1.372c-18.041-72.606-82.657-125.565-159.643-125.565-21.469 0-41.975 4.118-60.773 11.608l1.109-0.39c-46.933 17.778-84.498 51.333-106.997 94.057l-0.523 1.090-49.493 95.147-154.453 298.667c-18.896 34.821-30.004 76.242-30.004 120.258 0 22.301 2.852 43.936 8.21 64.561l-0.392-1.779c14.983 60.61 54.335 110.009 106.803 138.108l1.143 0.559c27.592 14.268 60.227 22.633 94.816 22.633 1.016 0 2.031-0.007 3.044-0.022l-0.153 0.002c28.73-0.216 56.122-5.676 81.353-15.468l-1.566 0.535c58.457-24.253 104.994-67.476 132.867-121.847l0.68-1.46 165.547-319.147c2.496-4.452 3.966-9.77 3.966-15.431 0-11.747-6.329-22.015-15.764-27.581l-0.149-0.081z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paper-clip"]},"attrs":[{}],"properties":{"order":6794,"id":170,"name":"paper-clip","prevSize":32,"code":60050},"setIdx":0,"setId":0,"iconIdx":402},{"icon":{"paths":["M519.253 662.187c0.012-0.797 0.019-1.737 0.019-2.678 0-104.389-84.624-189.013-189.013-189.013s-189.013 84.624-189.013 189.013c0 32.188 8.046 62.498 22.237 89.026l-0.496-1.014-65.707 55.040c-6.876 5.904-11.204 14.608-11.204 24.322 0 17.562 14.147 31.82 31.667 31.998l0.017 0c0.81 0.076 1.752 0.119 2.703 0.119 6.665 0 12.835-2.123 17.869-5.729l-0.093 0.063 62.72-52.48c33.736 32.345 79.61 52.26 130.136 52.26 103.918 0 188.16-84.242 188.16-188.16 0-0.373-0.001-0.745-0.003-1.118l0 0.057zM330.667 787.2c-0.127 0-0.277 0.001-0.427 0.001-69.043 0-125.013-55.97-125.013-125.013s55.97-125.013 125.013-125.013c69.043 0 125.013 55.97 125.013 125.013l-0-0c0 0 0 0 0 0.001 0 68.893-55.727 124.77-124.564 125.013l-0.023 0zM776.96 128h-411.307c-0.508-0.005-1.108-0.008-1.709-0.008-106.746 0-193.28 86.534-193.28 193.28 0 0.303 0.001 0.605 0.002 0.908l-0-0.047v121.173c0 17.673 14.327 32 32 32s32-14.327 32-32v0-121.173c0-70.692 57.308-128 128-128v0h42.667v163.84c-0.002 0.266-0.004 0.58-0.004 0.894 0 61.031 49.476 110.507 110.507 110.507 1.051 0 2.1-0.015 3.144-0.044l-0.154 0.003h104.96c0 0 0.001 0 0.001 0 61.117 0 110.69-49.424 110.932-110.484l0-0.023v-165.973h42.667c70.692 0 128 57.308 128 128v0 379.733c0 70.692-57.308 128-128 128v0h-303.787c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h303.36c106.746 0 193.28-86.534 193.28-193.28v0-377.173c0.001-0.253 0.002-0.553 0.002-0.853 0-106.746-86.534-193.28-193.28-193.28-0.001 0-0.001 0-0.002 0l-0 0zM670.72 357.973c0 0.001 0 0.001 0 0.002 0 25.685-20.822 46.507-46.507 46.507-0.15 0-0.3-0.001-0.45-0.002l0.023 0h-104.96c-25.685 0-46.507-20.822-46.507-46.507v0-165.12h198.4z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["parcel-tracking"]},"attrs":[{}],"properties":{"order":6795,"id":169,"name":"parcel-tracking","prevSize":32,"code":60051},"setIdx":0,"setId":0,"iconIdx":403},{"icon":{"paths":["M765.013 384c35.254-20.68 58.551-58.393 58.551-101.547s-23.297-80.867-57.999-101.247l-0.551-0.299-194.987-111.787c-16.839-9.843-37.074-15.654-58.667-15.654s-41.828 5.811-59.227 15.955l0.56-0.301-193.707 113.067c-34.52 20.844-57.246 58.158-57.246 100.78 0 42.796 22.912 80.241 57.139 100.737l0.534 0.296 194.56 111.787c16.611 9.942 36.591 15.93 57.947 16.213l0.080 0.001c0.131 0.001 0.286 0.001 0.441 0.001 21.533 0 41.695-5.864 58.979-16.083l-0.54 0.295zM485.12 124.587c7.517-4.298 16.521-6.832 26.117-6.832 0.268 0 0.536 0.002 0.804 0.006l-0.040-0c0.13-0.001 0.284-0.002 0.437-0.002 9.705 0 18.819 2.531 26.717 6.97l-0.274-0.142 194.133 111.787c15.95 9.417 26.48 26.519 26.48 46.080s-10.531 36.663-26.232 45.944l-0.248 0.136-36.267 20.907-298.667-174.080zM485.12 441.6l-193.707-111.787c-16.156-9.154-26.881-26.231-26.881-45.813 0-0.094 0-0.188 0.001-0.282l-0 0.014c-0.001-0.131-0.002-0.286-0.002-0.441 0-19.551 10.52-36.645 26.208-45.93l0.247-0.136 46.080-26.453 298.667 173.227-96.427 55.893c-8.056 5.076-17.855 8.087-28.357 8.087-9.303 0-18.053-2.363-25.685-6.521l0.282 0.141zM432.64 526.933l-193.707-112.213c-16.788-9.767-36.948-15.533-58.455-15.533-64.798 0-117.372 52.336-117.758 117.043l-0 0.037v224.427c0.165 43.19 23.556 80.879 58.324 101.246l0.556 0.301 194.133 112.213c16.789 9.769 36.95 15.535 58.459 15.535 64.648 0 117.129-52.095 117.754-116.595l0-0.059v-224.853c-0.165-43.19-23.556-80.879-58.324-101.246l-0.556-0.301zM426.667 853.333c0 0.005 0 0.012 0 0.018 0 19.652-10.715 36.802-26.622 45.926l-0.258 0.136c-7.618 4.617-16.823 7.349-26.667 7.349s-19.049-2.732-26.899-7.48l0.233 0.131-192.853-112.64c-15.449-9.423-25.605-26.185-25.605-45.318 0-0.268 0.002-0.535 0.006-0.802l-0 0.040v-224.427c0.239-29.358 23.975-53.094 53.31-53.333l0.023-0c9.901 0.080 19.158 2.762 27.144 7.395l-0.264-0.141 192.853 112.213c15.455 9.524 25.603 26.355 25.603 45.557 0 0.184-0.001 0.367-0.003 0.551l0-0.028zM902.4 414.72c-16.839-9.843-37.074-15.654-58.667-15.654s-41.828 5.811-59.227 15.955l0.56-0.301-194.133 112.213c-35.324 20.667-58.715 58.357-58.88 101.523l-0 0.024v224.853c-0 0.017-0 0.037-0 0.056 0 64.801 52.532 117.333 117.333 117.333 21.687 0 42-5.884 59.43-16.142l-0.55 0.299 194.133-112.213c35.324-20.667 58.715-58.357 58.88-101.523l0-0.024v-224.853c0-0.091 0-0.198 0-0.305 0-43.146-23.459-80.813-58.318-100.942l-0.562-0.299zM896 740.693c0 0.005 0 0.012 0 0.018 0 19.652-10.715 36.802-26.622 45.926l-0.258 0.136-194.133 112.213c-7.618 4.617-16.823 7.349-26.667 7.349s-19.049-2.732-26.899-7.48l0.233 0.131c-14.727-9.557-24.332-25.92-24.332-44.526 0-0.396 0.004-0.791 0.013-1.186l-0.001 0.059v-224.853c0.088-19.634 10.771-36.754 26.624-45.943l0.256-0.137 71.68-42.667v36.267c0 16.966 13.754 30.72 30.72 30.72v0 0c17.017-0.241 30.72-14.092 30.72-31.144 0-0.001-0-0.002-0-0.003l0 0v-71.253l59.733-34.987c7.722-4.491 16.979-7.173 26.857-7.253l0.023-0c28.948 0.947 52.055 24.642 52.055 53.733 0 0.16-0.001 0.319-0.002 0.478l0-0.024z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["parcel"]},"attrs":[{}],"properties":{"order":6796,"id":168,"name":"parcel","prevSize":32,"code":60052},"setIdx":0,"setId":0,"iconIdx":404},{"icon":{"paths":["M489.387 193.707h-233.387c-76.695 1.199-138.435 63.538-138.667 140.351l-0 0.022v355.84c0.231 76.836 61.972 139.175 138.554 140.372l0.113 0.001h223.573c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-223.573c-112.775-0.242-204.131-91.598-204.373-204.35l-0-0.023v-355.84c-0.003-0.38-0.004-0.83-0.004-1.28 0-112.959 91.451-204.559 204.354-204.8l0.023-0h231.68c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM970.667 334.080v355.84c0.003 0.384 0.004 0.837 0.004 1.291 0 112.359-90.482 203.585-202.557 204.788l-0.114 0.001h-103.68v9.813c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-785.92c0-17.673 14.327-32 32-32s32 14.327 32 32v0 8.107h103.68c112.188 1.204 202.671 92.43 202.671 204.789 0 0.454-0.001 0.908-0.004 1.361l0-0.070zM906.667 334.080c-0.231-76.836-61.972-139.175-138.554-140.372l-0.113-0.001h-103.68v636.587h103.68c77.429-0.242 140.132-62.945 140.373-140.35l0-0.023zM183.893 512c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667c0-23.564-19.103-42.667-42.667-42.667v0c-23.564 0-42.667 19.103-42.667 42.667v0zM337.067 512c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667c0-23.564-19.103-42.667-42.667-42.667v0c-23.564 0-42.667 19.103-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["password-check"]},"attrs":[{}],"properties":{"order":6797,"id":167,"name":"password-check","prevSize":32,"code":60053},"setIdx":0,"setId":0,"iconIdx":405},{"icon":{"paths":["M477.013 970.667h-135.68c-36.352-0.83-65.504-30.496-65.504-66.97 0-4.229 0.392-8.366 1.141-12.378l-0.064 0.414v-6.4h-61.013c-0.028 0-0.062 0-0.096 0-38.881 0-70.4-31.519-70.4-70.4 0-4.069 0.345-8.057 1.008-11.937l-0.059 0.417 101.547-616.96c12.568-75.928 77.744-133.12 156.279-133.12 0.108 0 0.216 0 0.325 0l-0.017-0h197.12c132.569 0.242 239.971 107.645 240.213 240.19l0 0.023v9.387c51.417 36.665 84.707 95.873 85.333 162.889l0.001 0.098c-5.326 140.955-120.88 253.203-262.65 253.203-3.513 0-7.010-0.069-10.49-0.206l0.501 0.016h-50.347c-0.004-0-0.010-0-0.015-0-12.243 0-22.445 8.74-24.706 20.321l-0.026 0.159-30.72 170.667c-6.107 34.55-35.85 60.474-71.668 60.587l-0.012 0zM345.173 873.387l-5.547 29.867 2.987 3.413h134.4c0.029 0 0.063 0.001 0.096 0.001 4.261 0 7.793-3.123 8.431-7.206l0.006-0.048 31.147-170.667c7.752-41.759 43.898-72.96 87.331-72.96 0.048 0 0.095 0 0.143 0l-0.007-0h50.347c3.161 0.18 6.86 0.282 10.583 0.282 105.47 0 191.718-82.298 198.030-186.18l0.027-0.555c0.001-0.203 0.002-0.444 0.002-0.684 0-34.313-12.778-65.642-33.835-89.488l0.126 0.146c-36.515 121.632-147.348 208.785-278.58 209.067l-0.033 0h-128c-0.159-0.012-0.344-0.018-0.531-0.018-3.796 0-6.949 2.754-7.569 6.373l-0.006 0.046-37.973 230.4c-3.438 20.318-15.066 37.408-31.302 48.047l-0.271 0.167zM404.48 117.333c-0.1-0-0.218-0.001-0.337-0.001-46.804 0-85.644 34.101-93.029 78.813l-0.075 0.548-101.547 616.96c-0.166 0.522-0.261 1.123-0.261 1.746 0 3.299 2.674 5.973 5.973 5.973 0.242 0 0.481-0.014 0.716-0.042l-0.028 0.003h89.173c0.029 0 0.063 0.001 0.096 0.001 4.261 0 7.793-3.123 8.431-7.206l0.006-0.048 37.973-230.4c5.552-34.295 34.948-60.165 70.385-60.165 0.305 0 0.61 0.002 0.914 0.006l-0.046-0h128c124.52-0.233 225.542-100.507 226.985-224.717l0.001-0.137c0.008-0.635 0.013-1.385 0.013-2.135 0-97.496-78.797-176.587-176.181-177.064l-0.046-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paypal"]},"attrs":[{}],"properties":{"order":6798,"id":166,"name":"paypal","prevSize":32,"code":60054},"setIdx":0,"setId":0,"iconIdx":406},{"icon":{"paths":["M935.68 210.773l-122.453-122.453c-21.754-20.972-51.395-33.892-84.053-33.892s-62.299 12.92-84.090 33.928l0.037-0.035-90.453 91.733-401.067 399.36c-2.979 3.199-5.311 7.044-6.761 11.298l-0.066 0.222-87.893 264.533c-2.654 7.064-4.345 15.228-4.688 23.739l-0.005 0.154s0 0 0 2.56c-0.023 0.718-0.036 1.562-0.036 2.409 0 14.812 3.973 28.697 10.91 40.646l-0.208-0.388s2.56 2.987 3.413 4.693c3.235 5.51 6.908 10.269 11.101 14.514l-0.007-0.007c15.5 15.804 37.076 25.6 60.94 25.6 0.026 0 0.051-0 0.077-0l-0.004 0c9.948-0.071 19.474-1.784 28.35-4.881l-0.617 0.187 264.533-87.893c4.485-1.681 8.323-4.147 11.528-7.261l-0.008 0.008 491.52-492.373c21.61-21.228 35.002-50.76 35.002-83.42 0-0.673-0.006-1.344-0.017-2.015l0.001 0.101c-0.806-31.772-14.030-60.307-34.978-81.058l-0.009-0.009zM421.973 802.133l-100.267-99.84-100.267-100.267 354.133-353.707 200.533 200.107zM147.2 905.387h-8.107c-4.173-0.304-7.968-1.696-11.171-3.89l0.077 0.050c-3.9-3.842-6.437-9.059-6.823-14.864l-0.004-0.070c-0.181-1.218-0.285-2.624-0.285-4.053s0.103-2.835 0.303-4.21l-0.019 0.157 6.827-33.28 50.773 50.773zM246.613 872.533l-95.147-95.147 38.827-116.053 170.667 170.667zM890.453 333.653l-69.12 69.547-200.533-200.533 69.547-69.12c9.951-9.905 23.674-16.029 38.827-16.029s28.876 6.123 38.829 16.031l-0.002-0.002 122.453 122.453c9.905 9.951 16.029 23.674 16.029 38.827s-6.123 28.876-16.031 38.829l0.002-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pencil"]},"attrs":[{}],"properties":{"order":6799,"id":165,"name":"pencil","prevSize":32,"code":60055},"setIdx":0,"setId":0,"iconIdx":407},{"icon":{"paths":["M519.68 660.907c-88.366 0-160-71.634-160-160s71.634-160 160-160c88.366 0 160 71.634 160 160v0c0 88.366-71.634 160-160 160v0zM519.68 399.36c-56.083 0-101.547 45.464-101.547 101.547s45.464 101.547 101.547 101.547c56.083 0 101.547-45.464 101.547-101.547v-0c0-56.083-45.464-101.547-101.547-101.547h0zM519.68 972.373c-111.36 0-198.827-60.16-198.827-136.96s87.467-136.96 198.827-136.96 198.827 60.16 198.827 136.96-87.467 136.96-198.827 136.96zM519.68 759.040c-81.493 0-138.24 40.107-138.24 76.373s56.747 76.373 138.24 76.373 138.24-40.533 138.24-76.373-56.747-76.373-138.24-76.373zM733.013 340.907c-79.33-0.724-143.36-65.202-143.36-144.634 0-79.882 64.758-144.64 144.64-144.64 79.88 0 144.637 64.754 144.64 144.634l0 0c0 0.127 0.001 0.277 0.001 0.427 0 79.882-64.758 144.64-144.64 144.64-0 0-0.001-0-0.001-0l0 0zM733.013 112.213c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-0.003 0-0.006 0-0.010 0-46.678-37.479-84.603-83.986-85.323l-0.068-0.001zM303.787 341.333c-79.882-0-144.639-64.758-144.639-144.64s64.758-144.64 144.64-144.64c79.732 0 144.397 64.514 144.639 144.19l0 0.023c0 0.127 0.001 0.277 0.001 0.427 0 79.882-64.758 144.64-144.64 144.64-0 0-0.001-0-0.001-0l0 0zM303.787 112.64c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0.001-0.127 0.001-0.277 0.001-0.427 0-47.128-38.205-85.333-85.333-85.333-0 0-0.001 0-0.001 0l0-0zM943.787 509.44c0-78.933-95.147-140.8-216.32-140.8-1.085-0.136-2.34-0.213-3.614-0.213-16.966 0-30.72 13.754-30.72 30.72s13.754 30.72 30.72 30.72c1.274 0 2.529-0.078 3.762-0.228l-0.148 0.015c91.307 0 155.307 42.667 155.307 79.787s-64 80.213-155.307 80.213c-16.731 0-30.293 13.563-30.293 30.293s13.563 30.293 30.293 30.293v0c121.6-0.427 216.747-61.867 216.747-141.227zM326.827 613.12c0-0.001 0-0.002 0-0.003 0-16.731-13.563-30.293-30.293-30.293-0.15 0-0.3 0.001-0.449 0.003l0.023-0c-91.307 0-155.307-42.667-155.307-80.213s64-79.787 155.307-79.787c1.085 0.136 2.34 0.213 3.614 0.213 16.966 0 30.72-13.754 30.72-30.72s-13.754-30.72-30.72-30.72c-1.274 0-2.529 0.078-3.762 0.228l0.148-0.015c-121.173 0-216.32 61.867-216.32 140.8s95.147 140.8 216.32 140.8c0.127 0.002 0.277 0.003 0.427 0.003 16.731 0 30.293-13.563 30.293-30.293 0-0.001-0-0.002-0-0.003l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["people"]},"attrs":[{}],"properties":{"order":6800,"id":164,"name":"people","prevSize":32,"code":60056},"setIdx":0,"setId":0,"iconIdx":408},{"icon":{"paths":["M384 672c-0.203 0.005-0.443 0.008-0.683 0.008-8.622 0-16.402-3.602-21.919-9.383l-0.011-0.012c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 256-256c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-256 256c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0zM384 341.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM640 597.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM341.333 971.52c-0.635 0.005-1.386 0.008-2.138 0.008-157.518 0-285.324-127.211-286.288-284.503l-0-0.092-1.707-345.6c-0.001-0.255-0.001-0.557-0.001-0.858 0-157.516 127.208-285.321 284.496-286.288l0.092-0h347.307c0.513-0.003 1.12-0.005 1.727-0.005 156.917 0 284.349 126.242 286.271 282.704l0.002 0.182v344.747c0.002 0.382 0.003 0.835 0.003 1.288 0 157.602-127.157 285.505-284.474 286.711l-0.115 0.001-345.173 1.707zM682.667 116.48h-347.307c-121.903 1.44-220.17 100.597-220.17 222.705 0 0.755 0.004 1.51 0.011 2.263l-0.001-0.115v344.747c0.711 122.464 100.152 221.466 222.716 221.466 1.201 0 2.4-0.010 3.597-0.028l-0.18 0.002h347.307c121.903-1.44 220.17-100.597 220.17-222.705 0-0.755-0.004-1.51-0.011-2.263l0.001 0.115v-344.747c-0.208-61.348-25.476-116.755-66.096-156.55l-0.037-0.036c-39.491-40.080-94.363-64.91-155.034-64.91-1.746 0-3.488 0.021-5.224 0.061l0.258-0.005z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["percentage"]},"attrs":[{}],"properties":{"order":6801,"id":163,"name":"percentage","prevSize":32,"code":60057},"setIdx":0,"setId":0,"iconIdx":409},{"icon":{"paths":["M669.867 970.667h-315.733c-82.848-0.242-149.945-67.338-150.187-150.163l-0-0.023v-616.96c0.242-82.848 67.338-149.945 150.163-150.187l0.023-0h315.733c82.848 0.242 149.945 67.338 150.187 150.163l0 0.023v616.96c-0.242 82.848-67.338 149.945-150.163 150.187l-0.023 0zM354.133 117.333c-47.128 0-85.333 38.205-85.333 85.333v0 617.813c0 47.128 38.205 85.333 85.333 85.333v0h315.733c47.128 0 85.333-38.205 85.333-85.333v0-616.96c0-47.128-38.205-85.333-85.333-85.333v0zM384 188.16c-26.391 0.001-47.785 21.395-47.785 47.787s21.395 47.787 47.787 47.787c26.392 0 47.787-21.395 47.787-47.787 0-0.15-0.001-0.3-0.002-0.45l0 0.023c-0.241-26.208-21.543-47.36-47.785-47.36-0.001 0-0.001 0-0.002 0l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["phone"]},"attrs":[{}],"properties":{"order":6802,"id":162,"name":"phone","prevSize":32,"code":60058},"setIdx":0,"setId":0,"iconIdx":410},{"icon":{"paths":["M971.093 337.067c-0.968-157.38-128.773-284.587-286.288-284.587-0.002 0-0.004 0-0.006 0l-347.306-0c-0.003-0-0.007-0-0.011-0-158.115 0-286.293 128.178-286.293 286.293 0 0.9 0.004 1.799 0.012 2.697l-0.001-0.137v344.747c0.471 157.759 128.468 285.466 286.292 285.466 1.35 0 2.699-0.009 4.045-0.028l-0.204 0.002h347.307c157.2-1.202 284.172-128.916 284.172-286.285 0-0.903-0.004-1.805-0.013-2.706l0.001 0.138zM843.093 839.68c-39.882 40.58-95.256 65.823-156.528 66.133l-345.232 1.707c-0.001 0-0.002 0-0.004 0-122.319 0-221.563-98.796-222.289-220.944l-0-0.069-3.84-345.173c-0-0.129-0-0.281-0-0.433 0-122.405 98.745-221.747 220.922-222.713l0.092-0.001h347.307c1.133-0.021 2.468-0.033 3.807-0.033 60.070 0 114.421 24.485 153.618 64.019l0.015 0.015c40.602 40.029 65.843 95.546 66.133 156.959l0 0.055v344.747c0.005 0.545 0.008 1.188 0.008 1.832 0 59.917-23.936 114.245-62.767 153.941l0.039-0.040zM629.76 523.093c-0.003 0.127-0.004 0.277-0.004 0.427 0 11.311 9.169 20.48 20.48 20.48 0.002 0 0.003-0 0.005-0l-0 0c47.128 0 85.333 38.205 85.333 85.333s-38.205 85.333-85.333 85.333v0h-49.493c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.48c11.782 0 21.333-9.551 21.333-21.333s-9.551-21.333-21.333-21.333v0c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333v0h52.907c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-52.907c-0.012-0-0.026-0-0.040-0-11.311 0-20.48 9.169-20.48 20.48 0 0.45 0.015 0.897 0.043 1.34l-0.003-0.060zM400.64 309.76h-85.333c-15.877 1.974-28.058 15.336-28.16 31.563l-0 0.011v341.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0-140.373h52.48c64.094 0 116.053-51.959 116.053-116.053s-51.959-116.053-116.053-116.053v0zM400.64 477.867h-49.493v-103.68h52.48c28.748-0 52.053 23.305 52.053 52.053s-23.305 52.053-52.053 52.053h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["photoshop"]},"attrs":[{}],"properties":{"order":6803,"id":161,"name":"photoshop","prevSize":32,"code":60059},"setIdx":0,"setId":0,"iconIdx":411},{"icon":{"paths":["M687.36 53.333h-350.72c-156.877 1.926-283.31 129.548-283.31 286.7 0 0.457 0.001 0.914 0.003 1.371l-0-0.070v341.333c-0 0.025-0 0.055-0 0.085 0 38.389 7.522 75.022 21.173 108.504l-0.693-1.922c5.381 13.799 11.115 25.457 17.693 36.555l-0.626-1.141 4.267 7.68c5.547 8.96 11.093 17.067 17.067 25.173l7.253 9.387c6.4 7.68 13.227 14.933 20.053 21.76l12.373 11.52 16.213 12.8c5.973 4.693 12.373 8.96 18.773 13.227s13.227 8.107 19.627 11.52l13.653 6.827c8.96 3.84 17.92 7.68 27.307 10.667l8.96 2.987c8.522 2.668 19.163 5.189 30.035 7.037l1.539 0.216h10.24c11.29 1.746 24.434 2.826 37.799 2.985l0.175 0.002h350.72c156.768-1.685 283.26-128.925 283.733-285.821l0-0.045v-341.333c0.002-0.386 0.003-0.843 0.003-1.3 0-157.152-126.432-284.774-283.128-286.698l-0.182-0.002zM906.667 682.667c0.007 0.637 0.010 1.39 0.010 2.144 0 121.552-97.936 220.229-219.203 221.429l-0.114 0.001h-350.72c-13.631-0.3-26.725-1.684-39.465-4.072l1.492 0.232h-8.96c-27.373-6.422-51.48-17.176-72.876-31.637l0.77 0.49-4.267-5.12c-10.613-7.624-19.951-15.607-28.571-24.304l-0.016-0.016c-10.31-9.511-19.677-19.689-28.165-30.585l-0.421-0.562-4.267-7.253c-2.987-4.693-5.547-10.24-8.107-15.36l128-103.68c17.306-14.283 39.711-22.945 64.14-22.945 26.486 0 50.593 10.183 68.621 26.847l-0.068-0.062c22.691 20.834 53.078 33.603 86.447 33.603 37.803 0 71.778-16.387 95.209-42.446l0.104-0.117 85.333-93.013c18.745-20.796 45.775-33.812 75.846-33.812 28.423 0 54.129 11.628 72.622 30.387l0.012 0.012 87.893 89.173zM906.667 578.987l-42.667-42.667c-30.123-30.581-71.983-49.527-118.268-49.527-1.172 0-2.34 0.012-3.506 0.036l0.174-0.003c-47.385 0.986-89.675 21.992-118.894 54.873l-0.146 0.167-85.333 92.587c-11.856 13.308-29.042 21.649-48.175 21.649-16.818 0-32.13-6.444-43.604-16.997l0.046 0.042c-29.089-26.368-67.874-42.507-110.428-42.507-39.081 0-74.983 13.612-103.223 36.354l0.317-0.247-111.787 89.173c-2.442-11.742-3.84-25.236-3.84-39.056 0-0.069 0-0.139 0-0.208l-0 0.011v-341.333c-0.002-0.383-0.004-0.837-0.004-1.29 0-121.549 97.932-220.225 219.196-221.429l0.114-0.001h350.72c121.379 1.205 219.31 99.881 219.31 221.43 0 0.454-0.001 0.907-0.004 1.36l0-0.070zM332.373 226.987c-0.635-0.012-1.383-0.019-2.133-0.019-65.98 0-119.467 53.487-119.467 119.467s53.487 119.467 119.467 119.467c65.973 0 119.456-53.476 119.467-119.447l0-0.001c0.004-0.381 0.007-0.832 0.007-1.283 0-64.975-52.433-117.704-117.295-118.183l-0.046-0zM332.373 401.067c-0.892 0.052-1.936 0.082-2.987 0.082-30.162 0-54.613-24.451-54.613-54.613s24.451-54.613 54.613-54.613c30.133 0 54.567 24.405 54.613 54.527l0 0.005c0.001 0.145 0.002 0.316 0.002 0.487 0 29.027-22.823 52.723-51.504 54.121l-0.125 0.005z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["picture"]},"attrs":[{}],"properties":{"order":6804,"id":160,"name":"picture","prevSize":32,"code":60060},"setIdx":0,"setId":0,"iconIdx":412},{"icon":{"paths":["M512 56.747c-0.619-0.003-1.351-0.005-2.083-0.005-122.547 0-233.688 48.832-315.027 128.099l0.097-0.094h-2.133c-85.617 82.881-138.763 198.857-138.763 327.246 0 251.429 203.824 455.253 455.253 455.253s455.253-203.824 455.253-455.253c0-250.496-202.312-453.738-452.454-455.245l-0.143-0.001zM512 903.253c-0.219 0-0.479 0.001-0.738 0.001-215.848 0-390.827-174.979-390.827-390.827 0-98.341 36.321-188.198 96.28-256.889l-0.395 0.462 477.013 487.253c5.857 5.802 13.919 9.387 22.818 9.387 0.078 0 0.156-0 0.234-0.001l-0.012 0c0.019 0 0.042 0 0.064 0 8.738 0 16.679-3.411 22.564-8.975l-0.016 0.015c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-477.44-485.12c67.696-57.567 156.125-92.58 252.732-92.58 216.083 0 391.253 175.17 391.253 391.253s-175.17 391.253-391.253 391.253c-0.801 0-1.602-0.002-2.402-0.007l0.123 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pill"]},"attrs":[{}],"properties":{"order":6805,"id":159,"name":"pill","prevSize":32,"code":60061},"setIdx":0,"setId":0,"iconIdx":413},{"icon":{"paths":["M946.773 324.267l-247.040-247.040c-13.904-13.257-32.773-21.415-53.547-21.415s-39.643 8.157-53.578 21.444l0.031-0.029-30.72 30.72c-13.651 13.728-22.089 32.652-22.089 53.547s8.438 39.819 22.092 53.55l-0.003-0.004 8.107 8.107-96.853 97.28c-31.447-12.545-67.892-19.821-106.037-19.821-61.201 0-118.028 18.729-165.061 50.768l1.018-0.654c-26.538 18.268-44.552 47.28-47.752 80.619l-0.035 0.448c-0.372 3.359-0.585 7.255-0.585 11.2 0 29.81 12.131 56.786 31.726 76.262l0.005 0.005 75.093 74.667-128 128c-24.833 24.725-44.114 55.003-55.827 88.817l-0.493 1.636-16.64 50.773c-2.599 7.512-4.099 16.168-4.099 25.176 0 43.62 35.193 79.021 78.734 79.358l0.032 0c0.106 0.001 0.231 0.001 0.356 0.001 9.044 0 17.723-1.563 25.781-4.434l-0.537 0.167 50.773-16.64c34.881-12.007 64.709-30.839 89.194-55.060l-0.021 0.020 128-128 74.667 75.093c19.851 19.521 47.1 31.573 77.164 31.573 0.022 0 0.044-0 0.066-0l10.237 0c33.786-3.235 62.798-21.248 80.824-47.415l0.242-0.372c31.385-46.016 50.114-102.842 50.114-164.043 0-38.144-7.275-74.59-20.514-108.024l0.694 1.987 97.28-96.853 8.107 8.107c13.728 13.651 32.652 22.089 53.547 22.089s39.819-8.438 53.55-22.092l-0.004 0.003 30.72-30.72c13.703-13.543 22.189-32.338 22.189-53.115 0-0.227-0.001-0.453-0.003-0.679l0 0.035c0.052-1.040 0.082-2.259 0.082-3.484 0-20.068-8.008-38.265-21.003-51.57l0.014 0.014zM256 846.507c-17.939 17.968-39.95 31.865-64.531 40.188l-1.176 0.346-50.773 17.067c-1.352 0.431-2.907 0.68-4.52 0.68-8.483 0-15.36-6.877-15.36-15.36 0-1.613 0.249-3.168 0.71-4.629l-0.030 0.109 17.067-50.773c9.288-25.892 23.888-47.908 42.592-65.636l0.075-0.070 128-128 75.947 76.8zM901.547 386.133l-30.72 30.72c-2.101 2.191-5.051 3.552-8.32 3.552s-6.219-1.361-8.316-3.548l-0.004-0.004-30.72-30.72c-5.741-5.887-13.751-9.539-22.613-9.539s-16.872 3.652-22.607 9.532l-0.006 0.007-134.827 134.827c-5.926 5.68-9.608 13.659-9.608 22.499 0 5.014 1.185 9.751 3.29 13.947l-0.082-0.18c14.132 29.051 22.393 63.197 22.393 99.274 0 47.932-14.583 92.458-39.553 129.383l0.521-0.817c-7.62 11.238-19.879 18.837-33.964 20.042l-0.169 0.012c-1.524 0.193-3.287 0.303-5.076 0.303-12.081 0-22.988-5.021-30.751-13.089l-0.013-0.014-318.72-318.72c-8.082-7.776-13.103-18.684-13.103-30.764 0-1.789 0.11-3.552 0.324-5.283l-0.021 0.207c1.216-14.254 8.816-26.513 19.894-34.031l0.16-0.102c35.738-24.318 79.85-38.828 127.352-38.828 0.228 0 0.456 0 0.683 0.001l-0.035-0c0.057-0 0.124-0 0.191-0 36.037 0 70.164 8.183 100.622 22.792l-1.4-0.605c4.016 2.023 8.754 3.208 13.768 3.208 8.84 0 16.819-3.682 22.488-9.597l0.010-0.011 137.387-134.827c5.887-5.741 9.539-13.751 9.539-22.613s-3.652-16.872-9.532-22.607l-0.007-0.006-32.853-29.867c-2.191-2.101-3.552-5.051-3.552-8.32s1.361-6.219 3.548-8.316l0.004-0.004 32.853-31.573c1.763-2.786 4.829-4.61 8.32-4.61s6.557 1.823 8.296 4.569l0.024 0.040 247.040 247.040c2.090 2.071 3.391 4.935 3.413 8.102l0 0.004c-0.568 3.601-2.62 6.635-5.499 8.504l-0.048 0.029z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pin"]},"attrs":[{}],"properties":{"order":6806,"id":158,"name":"pin","prevSize":32,"code":60062},"setIdx":0,"setId":0,"iconIdx":414},{"icon":{"paths":["M512 113.067c220.325 0 398.933 178.609 398.933 398.933s-178.609 398.933-398.933 398.933c-220.325 0-398.933-178.609-398.933-398.933h-0c0-220.325 178.609-398.933 398.933-398.933v-0zM312.747 551.68h159.573v159.573c0 21.915 17.765 39.68 39.68 39.68s39.68-17.765 39.68-39.68v-159.573h159.573c21.915 0 39.68-17.765 39.68-39.68s-17.765-39.68-39.68-39.68h-159.573v-159.573c0-21.915-17.765-39.68-39.68-39.68s-39.68 17.765-39.68 39.68v159.573h-159.573c-21.915 0-39.68 17.765-39.68 39.68s17.765 39.68 39.68 39.68h0zM512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c-0.243-253.217-205.45-458.424-458.644-458.667l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["plus-circle"]},"attrs":[{}],"properties":{"order":6807,"id":157,"name":"plus-circle","prevSize":32,"code":60063},"setIdx":0,"setId":0,"iconIdx":415},{"icon":{"paths":["M679.253 113.067c127.953 0 231.68 103.727 231.68 231.68v0 334.507c0 127.953-103.727 231.68-231.68 231.68v0h-334.507c-127.953 0-231.68-103.727-231.68-231.68v0-334.507c0-127.953 103.727-231.68 231.68-231.68v-0h334.507zM312.747 551.68h159.573v159.573c0 21.915 17.765 39.68 39.68 39.68s39.68-17.765 39.68-39.68v-159.573h159.573c21.915 0 39.68-17.765 39.68-39.68s-17.765-39.68-39.68-39.68h-159.573v-159.573c0-21.915-17.765-39.68-39.68-39.68s-39.68 17.765-39.68 39.68v159.573h-159.573c-21.915 0-39.68 17.765-39.68 39.68s17.765 39.68 39.68 39.68h0zM679.253 53.333h-334.507c-160.943 0-291.413 130.47-291.413 291.413v0 334.507c0 160.943 130.47 291.413 291.413 291.413v0h334.507c160.943 0 291.413-130.47 291.413-291.413v-334.507c0-160.943-130.47-291.413-291.413-291.413v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["plus-square"]},"attrs":[{}],"properties":{"order":6808,"id":156,"name":"plus-square","prevSize":32,"code":60064},"setIdx":0,"setId":0,"iconIdx":416},{"icon":{"paths":["M768 469.333v0h-213.333v-213.333c0-23.564-19.103-42.667-42.667-42.667v0 0c-23.564 0-42.667 19.103-42.667 42.667v0 213.333h-213.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h213.333v213.333c0 23.564 19.103 42.667 42.667 42.667v0 0c23.564 0 42.667-19.103 42.667-42.667v0-213.333h213.333c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["plus"]},"attrs":[{}],"properties":{"order":6809,"id":155,"name":"plus","prevSize":32,"code":60065},"setIdx":0,"setId":0,"iconIdx":417},{"icon":{"paths":["M945.92 251.733l-49.92-75.52c-15.501-22.704-41.218-37.441-70.384-37.547l-0.016-0h-196.267c0-47.128-38.205-85.333-85.333-85.333v0h-62.293c-47.128 0-85.333 38.205-85.333 85.333v0 256h-197.547c-0.038-0-0.083-0-0.129-0-29.295 0-55.142 14.762-70.509 37.253l-0.189 0.293-49.92 75.52c-8.815 13.215-14.066 29.461-14.066 46.933s5.251 33.719 14.262 47.246l-0.196-0.313 49.92 75.52c15.501 22.704 41.218 37.441 70.384 37.547l0.016 0h196.267v170.667c0 47.128 38.205 85.333 85.333 85.333v0h60.587c47.128 0 85.333-38.205 85.333-85.333v0-426.667h195.84c1.042 0.046 2.265 0.072 3.494 0.072 29.325 0 55.196-14.793 70.556-37.323l0.19-0.295 49.92-75.52c8.815-13.215 14.066-29.461 14.066-46.933s-5.251-33.719-14.262-47.246l0.196 0.313zM198.827 650.667c-0.025 0-0.055 0-0.085 0-7.121 0-13.375-3.711-16.933-9.305l-0.048-0.081-50.347-75.093c-2.221-3.226-3.547-7.218-3.547-11.52s1.326-8.294 3.592-11.589l-0.045 0.069 50.347-73.813c3.607-5.675 9.86-9.387 16.981-9.387 0.030 0 0.060 0 0.090 0l-0.005-0h195.84v192zM565.333 883.627c0 12.725-10.315 23.040-23.040 23.040v0h-60.587c-12.725 0-23.040-10.315-23.040-23.040v0-743.253c0-12.725 10.315-23.040 23.040-23.040v0h60.587c12.725 0 23.040 10.315 23.040 23.040v0zM892.587 310.187l-50.347 73.813c-3.607 5.675-9.86 9.387-16.981 9.387-0.030 0-0.060-0-0.090-0l0.005 0h-195.84v-190.72h195.84c0.025-0 0.055-0 0.085-0 7.121 0 13.375 3.711 16.933 9.305l0.048 0.081 50.347 75.093c2.221 3.226 3.547 7.218 3.547 11.52s-1.326 8.294-3.592 11.589l0.045-0.069z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pointers"]},"attrs":[{}],"properties":{"order":6810,"id":154,"name":"pointers","prevSize":32,"code":60066},"setIdx":0,"setId":0,"iconIdx":418},{"icon":{"paths":["M496.435 922.010c-0.531 0.005-1.158 0.007-1.786 0.007-58.713 0-111.91-23.62-150.605-61.877l0.020 0.020-186.778-188.416c-42.316-42.075-68.506-100.331-68.506-164.703 0-2.433 0.037-4.857 0.112-7.272l-0.009 0.353 5.734-208.077c2.633-99.615 82.36-179.77 181.554-183.083l0.309-0.008 204.8-6.963c2.871-0.127 6.238-0.2 9.622-0.2 64.313 0 122.499 26.234 164.44 68.585l0.018 0.019 188.416 188.826c38.882 38.971 62.924 92.761 62.924 152.166s-24.043 113.196-62.929 152.171l0.004-0.004-195.379 196.608c-38.614 38.233-91.756 61.855-150.415 61.855-0.544 0-1.087-0.002-1.63-0.006l0.083 0zM491.52 163.84h-5.734l-204.8 6.963c-67.138 1.777-121.103 55.742-122.877 122.713l-0.003 0.167-5.734 208.486c-0.104 2.218-0.163 4.819-0.163 7.433 0 46.241 18.509 88.16 48.522 118.751l-0.026-0.027 186.778 187.187c28.196 27.018 66.53 43.652 108.749 43.652s80.553-16.634 108.805-43.706l-0.056 0.054 195.379-195.379c27.681-27.9 44.788-66.326 44.788-108.749s-17.107-80.849-44.798-108.759l0.010 0.010-188.826-188.826c-30.763-30.677-73.14-49.723-119.965-49.971l-0.048-0zM125.338 292.864v0zM398.541 551.731c-0.126 0-0.276 0.001-0.426 0.001-80.307 0-145.408-65.101-145.408-145.408s65.101-145.408 145.408-145.408c40.361 0 76.881 16.444 103.226 42.998l0.009 0.010c26.408 26.267 42.751 62.63 42.751 102.811 0 80.080-64.918 144.998-144.998 144.998-0.198 0-0.396-0-0.593-0.001l0.031 0zM398.541 322.765c-0.61-0.016-1.328-0.025-2.048-0.025-46.374 0-83.968 37.594-83.968 83.968s37.594 83.968 83.968 83.968c46.365 0 83.954-37.579 83.968-83.942l0-0.001c0.003-0.263 0.005-0.574 0.005-0.885 0-22.912-9.406-43.627-24.568-58.494l-0.013-0.013c-14.727-14.73-34.899-24.014-57.239-24.574l-0.105-0.002zM537.805 707.789l161.792-163.84c5.652-5.511 9.157-13.201 9.157-21.709s-3.506-16.198-9.151-21.703l-0.006-0.006c-5.558-5.551-13.232-8.984-21.709-8.984s-16.151 3.433-21.709 8.984l0-0-163.84 163.84c-5.551 5.558-8.984 13.232-8.984 21.709s3.433 16.151 8.984 21.709l-0-0c5.623 5.575 13.366 9.020 21.914 9.020s16.29-3.445 21.916-9.022l-0.002 0.002z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["price-tag"]},"attrs":[{}],"properties":{"order":6811,"id":153,"name":"price-tag","prevSize":32,"code":60067},"setIdx":0,"setId":0,"iconIdx":419},{"icon":{"paths":["M426.667 501.333h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h128c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM928 418.133v230.4c0 83.653-67.814 151.467-151.467 151.467h-61.867v7.253c-0.242 90.153-73.26 163.171-163.39 163.413l-0.023 0h-78.507c-90.153-0.242-163.171-73.26-163.413-163.39l-0-0.023v-7.253h-61.867c-83.653 0-151.467-67.814-151.467-151.467l-0-0v-230.4c0-83.653 67.814-151.467 151.467-151.467l-0-0h19.2v-42.667c0-94.257 76.41-170.667 170.667-170.667v0h149.333c94.257 0 170.667 76.41 170.667 170.667v0 42.667h19.2c83.653 0 151.467 67.814 151.467 151.467h-0zM330.667 266.667h362.667v-42.667c0-58.91-47.756-106.667-106.667-106.667v0h-149.333c-58.91 0-106.667 47.756-106.667 106.667v0zM650.667 672h-277.333v135.253c0.241 54.807 44.606 99.172 99.39 99.413l0.023 0h78.507c54.807-0.241 99.172-44.606 99.413-99.39l0-0.023zM864 418.133c0-48.307-39.16-87.467-87.467-87.467h-0-529.067c-47.38 1.192-85.333 39.884-85.333 87.441 0 0.009 0 0.018 0 0.028l-0-0.002v230.4c-0 0.008-0 0.017-0 0.026 0 47.556 37.953 86.248 85.223 87.438l0.11 0.002h61.867v-64h-10.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h426.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-10.667v64h61.867c48.307 0 87.467-39.16 87.467-87.467l-0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["printer"]},"attrs":[{}],"properties":{"order":6812,"id":152,"name":"printer","prevSize":32,"code":60068},"setIdx":0,"setId":0,"iconIdx":420},{"icon":{"paths":["M970.667 512c0.001-0.328 0.001-0.717 0.001-1.106 0-253.315-205.352-458.667-458.667-458.667s-458.667 205.352-458.667 458.667c0 131.494 55.334 250.064 143.987 333.695l0.225 0.211 16.64 14.507h2.56c5.973 5.547 12.8 10.24 19.2 15.36s9.387 7.253 14.080 10.24c5.96 4.453 12.786 8.965 19.864 13.092l1.043 0.561 14.507 8.96c7.253 4.267 14.933 8.107 22.613 11.947l14.933 7.253 23.467 9.813 15.787 5.973 23.893 7.68 18.347 4.693 22.187 5.12 23.893 3.413 18.347 2.56c14.507 0 29.013 2.133 42.667 2.133s29.013 0 42.667-2.133l18.347-2.56 23.893-3.413 22.187-5.12 18.773-5.12 23.467-7.253 17.493-3.84 23.040-9.813 15.36-7.253 22.187-11.947 14.507-8.96 20.907-13.227 14.080-10.667c6.4-5.12 13.227-9.813 19.2-15.36h2.56l16.64-14.507c88.612-83.401 143.794-201.46 143.794-332.406 0-0.889-0.003-1.777-0.008-2.664l0.001 0.137zM117.333 512c0-217.968 176.698-394.667 394.667-394.667s394.667 176.698 394.667 394.667v0c0 0.141 0 0.308 0 0.474 0 103.987-40.611 198.488-106.839 268.509l0.172-0.183c-55.516-104.391-163.599-174.259-288-174.259s-232.484 69.869-287.148 172.506l-0.852 1.753c-66.056-69.838-106.667-164.339-106.667-268.326 0-0.167 0-0.333 0-0.5l-0 0.026zM743.68 831.147l-16.64 11.52-11.947 6.827c-18.876 11.743-40.676 22.516-63.531 31.139l-2.603 0.861-13.653 5.12-18.347 5.547-16.64 4.267-17.067 3.413-20.907 3.413h-14.080c-11.947 0-23.893 0-36.267 0s-24.32 0-36.267 0h-14.080l-20.907-3.413-17.067-3.84-16.64-4.267-18.347-5.547-13.227-4.693c-25.923-9.919-47.986-20.822-68.864-33.484l1.877 1.057-9.813-6.4-16.64-11.52c-2.15-2.012-4.522-3.842-7.059-5.433l-0.194-0.114c41.786-92.191 133.006-155.163 238.933-155.163s197.147 62.972 238.266 153.522l0.667 1.641c-3.416 1.628-6.358 3.478-9.056 5.62l0.096-0.073zM512 575.147c0.125 0 0.274 0 0.422 0 100.148 0 181.333-81.186 181.333-181.333s-81.186-181.333-181.333-181.333c-100.148 0-181.333 81.186-181.333 181.333 0 0.45 0.002 0.899 0.005 1.349l-0-0.069c-0 0-0 0-0 0.001 0 99.998 80.943 181.090 180.883 181.333l0.024 0zM512 276.48c0.125-0 0.272-0.001 0.42-0.001 64.801 0 117.333 52.532 117.333 117.333s-52.532 117.333-117.333 117.333c-64.351 0-116.603-51.804-117.326-115.984l-0.001-0.068c0-64.566 52.341-116.907 116.907-116.907v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["profile-circle"]},"attrs":[{}],"properties":{"order":6813,"id":151,"name":"profile-circle","prevSize":32,"code":60069},"setIdx":0,"setId":0,"iconIdx":421},{"icon":{"paths":["M391.68 49.92c-117.821 0-213.333 95.513-213.333 213.333s95.513 213.333 213.333 213.333c117.821 0 213.333-95.513 213.333-213.333v0c0-117.821-95.513-213.333-213.333-213.333v0zM391.68 415.147c-84.463-0.484-152.747-69.067-152.747-153.598 0-84.831 68.769-153.6 153.6-153.6s153.599 68.768 153.6 153.597l0 0c-0.484 84.935-69.449 153.6-154.451 153.6-0.001 0-0.002-0-0.003-0l0 0z","M391.68 509.013c-186.027 0-331.947 101.973-331.947 232.533s145.92 232.533 331.947 232.533 333.653-101.973 333.653-232.533-147.627-232.533-333.653-232.533zM391.68 910.080c-145.493 0-267.947-77.227-267.947-168.533s122.453-168.533 267.947-168.533 267.52 77.227 267.52 168.533-122.453 168.533-267.52 168.533z","M709.547 485.547c94.499-2.15 170.282-79.265 170.282-174.080 0-96.165-77.957-174.122-174.122-174.122-1.35 0-2.697 0.015-4.040 0.046l0.2-0.004c-17.673 0-32 14.327-32 32s14.327 32 32 32v0 0c0.762-0.019 1.66-0.030 2.56-0.030 60.812 0 110.11 49.298 110.11 110.11 0 59.912-47.849 108.648-107.417 110.077l-0.133 0.003c-2.682 0.21-5.807 0.329-8.96 0.329s-6.278-0.12-9.371-0.354l0.411 0.025c-1.155-0.144-2.491-0.226-3.847-0.226-16.265 0-29.77 11.82-32.393 27.339l-0.027 0.193c-0.208 1.372-0.327 2.955-0.327 4.566 0 16.133 11.939 29.478 27.464 31.681l0.17 0.020c3.642 0.318 7.88 0.499 12.16 0.499s8.518-0.181 12.706-0.536l-0.546 0.037z","M768 884.48c115.2-18.347 195.413-89.6 195.413-174.080 0-99.84-110.080-177.92-250.453-177.92-17.673 0-32 14.327-32 32s14.327 32 32 32v0c101.12 0 186.453 52.053 186.453 113.92 0 51.2-59.307 97.707-141.653 110.507-15.329 2.772-26.804 16.014-26.804 31.936 0 1.679 0.128 3.328 0.374 4.938l-0.023-0.18c2.553 15.33 15.714 26.873 31.573 26.88l0.001 0z"],"attrs":[{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["profile-user"]},"attrs":[{},{},{},{}],"properties":{"order":6814,"id":150,"name":"profile-user","prevSize":32,"code":60070},"setIdx":0,"setId":0,"iconIdx":422},{"icon":{"paths":["M602.027 693.76h-4.693c-13.467-1.422-24.354-11.014-27.683-23.67l-0.050-0.223-62.72-236.8-57.173 170.667c-4.342 12.866-16.302 21.965-30.386 21.965-10.891 0-20.512-5.441-26.292-13.754l-0.069-0.105-67.413-99.84-55.467 29.867c-4.36 2.418-9.56 3.841-15.093 3.841-0.094 0-0.188-0-0.281-0.001l0.014 0h-126.72c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h118.613l73.813-39.68c4.565-2.659 10.048-4.228 15.897-4.228 11.149 0 20.967 5.702 26.696 14.349l0.074 0.119 49.493 71.68 69.12-212.48c4.109-12.724 15.849-21.766 29.7-21.766 0.209 0 0.417 0.002 0.624 0.006l-0.031-0c14.399 0.358 26.379 10.302 29.819 23.674l0.048 0.219 67.84 256 33.707-70.827c5.114-10.896 15.98-18.313 28.582-18.347l0.005-0h224c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-202.667l-62.293 131.413c-5.443 10.71-16.38 17.92-29.001 17.92-0.004 0-0.009-0-0.013-0l0.001 0zM969.387 386.987c0.323-5.042 0.507-10.932 0.507-16.865 0-155.052-125.695-280.747-280.747-280.747-67.401 0-129.254 23.752-177.647 63.342l0.5-0.397c-47.838-38.883-109.501-62.431-176.665-62.431-155.288 0-281.173 125.886-281.173 281.173 0 5.602 0.164 11.166 0.487 16.687l-0.036-0.762c0.907 16.945 14.867 30.341 31.957 30.341 0.615 0 1.227-0.017 1.834-0.052l-0.084 0.004c16.973-1.146 30.306-15.195 30.306-32.357 0-0.324-0.005-0.648-0.014-0.97l0.001 0.047c-0.328-4.429-0.514-9.595-0.514-14.804 0-59.283 24.181-112.917 63.217-151.579l0.017-0.017c39.441-39.371 93.891-63.717 154.027-63.717s114.586 24.347 154.030 63.721l-0.003-0.003c5.741 5.887 13.751 9.539 22.613 9.539s16.872-3.652 22.607-9.532l0.006-0.007c39.441-39.371 93.891-63.717 154.027-63.717s114.586 24.347 154.030 63.721l-0.003-0.003c39.053 38.679 63.234 92.314 63.234 151.596 0 5.209-0.187 10.375-0.554 15.49l0.040-0.686c-0.018 0.402-0.028 0.874-0.028 1.348 0 17.168 13.342 31.22 30.223 32.353l0.099 0.005c0.517 0.030 1.122 0.047 1.73 0.047 17.239 0 31.295-13.632 31.974-30.705l0.002-0.062zM512 916.48c0.452 0.010 0.986 0.015 1.52 0.015 19.926 0 38.030-7.806 51.419-20.526l-0.032 0.030 209.92-213.333c5.887-5.741 9.539-13.751 9.539-22.613s-3.652-16.872-9.532-22.607l-0.007-0.006c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0-209.92 210.347c-1.72 2.426-4.518 3.99-7.68 3.99s-5.96-1.564-7.66-3.961l-0.020-0.029-209.92-207.787c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.887 5.741-9.539 13.751-9.539 22.613s3.652 16.872 9.532 22.607l0.007 0.006 209.92 210.773c13.278 13.691 31.845 22.188 52.397 22.188 0.179 0 0.358-0.001 0.537-0.002l-0.027 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pulse"]},"attrs":[{}],"properties":{"order":6815,"id":149,"name":"pulse","prevSize":32,"code":60071},"setIdx":0,"setId":0,"iconIdx":423},{"icon":{"paths":["M900.267 341.333c-35.737-42.944-88.777-70.432-148.27-71.677l-0.21-0.003c-14.814-120.469-116.514-212.834-239.787-212.834s-224.972 92.364-239.669 211.662l-0.118 1.171c-58.955 1.119-111.518 27.564-147.419 68.875l-0.208 0.245c-30.283 35.7-48.698 82.298-48.698 133.197 0 11.573 0.952 22.924 2.782 33.978l-0.164-1.201 49.493 295.68c15.219 97.105 98.214 170.531 198.385 170.667l0.015 0h369.067c99.012-0.472 181.138-72.172 197.795-166.465l0.178-1.215 52.48-295.68c1.866-10.351 2.933-22.266 2.933-34.43 0-50.485-18.382-96.677-48.819-132.248l0.232 0.278zM512 119.040c87.631 0.672 160.206 64.29 174.779 147.837l0.154 1.069h-349.867c14.727-84.616 87.302-148.235 174.862-148.906l0.071-0zM881.92 496.64l-52.907 295.68c-11.358 65.214-67.289 114.243-134.77 114.773l-0.056 0h-369.067c-68.399-0.308-124.972-50.551-135.155-116.136l-0.099-0.771-48.213-295.68c-1.124-6.744-1.766-14.515-1.766-22.436 0-35.080 12.6-67.216 33.52-92.132l-0.18 0.221c25.109-29.468 62.208-48.075 103.656-48.213l0.024-0h469.333c0.784-0.016 1.708-0.026 2.635-0.026 41.916 0 79.394 19.008 104.282 48.874l0.177 0.218c19.438 23.996 31.207 54.897 31.207 88.548 0 9.58-0.954 18.938-2.772 27.983l0.152-0.903zM344.32 465.493c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667v0c23.564 0 42.667 19.103 42.667 42.667v0zM764.16 465.493c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667v0c23.564 0 42.667 19.103 42.667 42.667h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["purchase"]},"attrs":[{}],"properties":{"order":6816,"id":148,"name":"purchase","prevSize":32,"code":60072},"setIdx":0,"setId":0,"iconIdx":424},{"icon":{"paths":["M846.933 290.56h-113.493v-113.493c0-68.336-55.397-123.733-123.733-123.733h-195.413c-68.336 0-123.733 55.397-123.733 123.733v0 113.493h-113.493c-68.336 0-123.733 55.397-123.733 123.733v-0 195.413c0 68.336 55.397 123.733 123.733 123.733v0h113.493v113.493c0 68.336 55.397 123.733 123.733 123.733v0h195.413c68.336 0 123.733-55.397 123.733-123.733v0-113.493h113.493c68.336 0 123.733-55.397 123.733-123.733v-195.413c-0-68.336-55.397-123.733-123.733-123.733h0zM177.067 669.44c-32.99 0-59.733-26.744-59.733-59.733v0-195.413c0-32.99 26.744-59.733 59.733-59.733v0h145.493c17.577-0.237 31.763-14.423 32-31.977l0-0.023v-145.493c-0-32.99 26.744-59.733 59.733-59.733h195.413c32.99 0 59.733 26.744 59.733 59.733v0 236.8c0.001 0.127 0.001 0.278 0.001 0.428 0 36.289-29.418 65.707-65.707 65.707-0.15 0-0.301-0.001-0.451-0.002l0.023 0h-176.64c-75.779 0.242-137.145 61.608-137.387 137.364l-0 0.023v52.053zM906.667 609.707c0 32.99-26.744 59.733-59.733 59.733v0h-145.493c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023v145.493c0 32.99-26.744 59.733-59.733 59.733h-195.413c-32.99 0-59.733-26.744-59.733-59.733v0-229.547c-0-0.003-0-0.007-0-0.011 0-40.080 32.131-72.656 72.039-73.375l0.067-0.001h175.36c0.254 0.002 0.554 0.003 0.854 0.003 71.957 0 130.318-58.212 130.559-130.113l0-0.023v-59.307h113.493c32.99 0 59.733 26.744 59.733 59.733v0zM394.667 199.68c-0-0.001-0-0.002-0-0.003 0-17.437 14.136-31.573 31.573-31.573 0.15 0 0.3 0.001 0.449 0.003l-0.023-0c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0c-0.382 0.016-0.83 0.026-1.28 0.026-17.673 0-32-14.327-32-32 0-0.009 0-0.018 0-0.027l-0 0.001zM632.32 822.187c0.002 0.127 0.003 0.277 0.003 0.427 0 18.616-15.091 33.707-33.707 33.707-0.001 0-0.002-0-0.003-0l0 0c-18.851 0-34.133-15.282-34.133-34.133v-0c-0-0.001-0-0.002-0-0.003 0-18.616 15.091-33.707 33.707-33.707 0.15 0 0.3 0.001 0.449 0.003l-0.023-0c18.057 0.708 32.427 15.517 32.427 33.682 0 0.009-0 0.017-0 0.026l0-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["python"]},"attrs":[{}],"properties":{"order":6817,"id":147,"name":"python","prevSize":32,"code":60073},"setIdx":0,"setId":0,"iconIdx":425},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0z","M512 640c-17.673 0-32-14.327-32-32v0-34.987c-0.013-0.631-0.020-1.374-0.020-2.12 0-44.085 25.042-82.322 61.677-101.261l0.636-0.299c23.42-11.522 39.253-35.213 39.253-62.602 0-38.41-31.137-69.547-69.547-69.547-38.368 0-69.48 31.070-69.547 69.423l-0 0.006c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c0.278-73.781 60.153-133.485 133.972-133.485 8.294 0 16.412 0.754 24.289 2.196l-0.821-0.125c54.995 10.619 97.552 53.607 107.397 107.981l0.123 0.819c1.44 7.338 2.264 15.776 2.264 24.407 0 52.553-30.551 97.97-74.861 119.461l-0.79 0.346c-15.634 8.637-26.046 25.023-26.046 43.841 0 0.487 0.007 0.973 0.021 1.457l-0.002-0.071v34.987c-0.241 17.489-14.474 31.573-31.997 31.573-0.001 0-0.002-0-0.003-0l0 0z","M544 718.507c0 17.673-14.327 32-32 32s-32-14.327-32-32c0-17.673 14.327-32 32-32s32 14.327 32 32z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["question-2"]},"attrs":[{},{},{}],"properties":{"order":6818,"id":146,"name":"question-2","prevSize":32,"code":60074},"setIdx":0,"setId":0,"iconIdx":426},{"icon":{"paths":["M512 970.667c-33.332-0.027-63.5-13.556-85.332-35.412l-0.001-0.001-60.16-60.16c-2.153-2.111-5.105-3.415-8.362-3.415-0.060 0-0.12 0-0.18 0.001l0.009-0h-85.333c-66.503-0.243-120.32-54.209-120.32-120.746 0-0 0-0.001 0-0.001l-0 0v-85.333c0.001-0.051 0.001-0.111 0.001-0.171 0-3.257-1.303-6.209-3.416-8.364l0.002 0.002-60.16-59.733c-21.72-21.893-35.143-52.045-35.143-85.333s13.423-63.441 35.151-85.341l-0.008 0.008 60.16-60.16c2.111-2.153 3.415-5.105 3.415-8.362 0-0.060-0-0.12-0.001-0.18l0 0.009v-85.333c0.243-66.503 54.209-120.32 120.746-120.32 0 0 0.001 0 0.001 0l85.333-0c0.051 0.001 0.111 0.001 0.171 0.001 3.257 0 6.209-1.303 8.364-3.416l-0.002 0.002 59.733-60.16c21.846-21.823 52.014-35.318 85.333-35.318s63.487 13.496 85.334 35.319l-0.001-0.001 60.16 60.16c2.153 2.111 5.105 3.415 8.362 3.415 0.060 0 0.12-0 0.18-0.001l-0.009 0h85.333c66.503 0.243 120.32 54.209 120.32 120.746 0 0-0 0.001-0 0.001l0-0v85.333c-0.001 0.051-0.001 0.111-0.001 0.171 0 3.257 1.303 6.209 3.416 8.364l-0.002-0.002 60.16 59.733c21.72 21.893 35.143 52.045 35.143 85.333s-13.423 63.441-35.151 85.341l0.008-0.008-60.16 60.16c-2.111 2.153-3.415 5.105-3.415 8.362 0 0.060 0 0.12 0.001 0.18l-0-0.009v85.333c-0 66.687-54.060 120.747-120.747 120.747v0h-85.333c-0.051-0.001-0.111-0.001-0.171-0.001-3.257 0-6.209 1.303-8.364 3.416l0.002-0.002-59.733 59.733c-21.834 21.857-52.001 35.386-85.328 35.413l-0.005 0zM273.067 216.32c-31.243 0.24-56.507 25.503-56.747 56.724l-0 0.023v85.333c0.003 0.244 0.005 0.533 0.005 0.821 0 20.722-8.49 39.461-22.181 52.929l-0.010 0.010-60.16 59.733c-10.258 10.267-16.601 24.446-16.601 40.107s6.344 29.839 16.602 40.107l-0-0 60.16 60.16c13.701 13.478 22.191 32.217 22.191 52.939 0 0.289-0.002 0.577-0.005 0.865l0-0.044v85.333c0.477 31.060 25.651 56.084 56.724 56.32l0.023 0h85.333c0.244-0.003 0.533-0.005 0.821-0.005 20.722 0 39.461 8.49 52.929 22.181l0.010 0.010 60.16 60.16c10.267 10.258 24.446 16.601 40.107 16.601s29.839-6.344 40.107-16.602l-0 0 60.16-60.16c13.478-13.701 32.217-22.191 52.939-22.191 0.289 0 0.577 0.002 0.865 0.005l-0.044-0h85.333c31.243-0.24 56.507-25.503 56.747-56.724l0-0.023v-85.333c-0.002-0.192-0.003-0.418-0.003-0.645 0-20.777 8.486-39.572 22.182-53.108l0.007-0.007 60.16-60.16c10.258-10.267 16.601-24.446 16.601-40.107s-6.344-29.839-16.602-40.107l0 0-61.013-59.733c-13.703-13.543-22.189-32.338-22.189-53.115 0-0.227 0.001-0.453 0.003-0.679l-0 0.035v-85.333c-0.477-31.060-25.651-56.084-56.724-56.32l-0.023-0h-85.333c-20.968-0.067-39.948-8.526-53.767-22.194l0.007 0.007-59.733-60.16c-10.267-10.258-24.446-16.601-40.107-16.601s-29.839 6.344-40.107 16.602l0-0-60.16 60.16c-13.543 13.703-32.338 22.189-53.115 22.189-0.227 0-0.453-0.001-0.679-0.003l0.035 0zM557.227 625.493v-35.413c-0.014-0.437-0.022-0.951-0.022-1.467 0-18.675 10.433-34.913 25.788-43.204l0.26-0.128c45.046-22.099 75.51-67.63 75.51-120.276 0-73.756-59.791-133.547-133.547-133.547s-133.547 59.791-133.547 133.547c0 0.585 0.004 1.169 0.011 1.752l-0.001-0.088c0 17.673 14.327 32 32 32s32-14.327 32-32v0c-0.001-0.1-0.001-0.218-0.001-0.337 0-21.234 9.575-40.231 24.642-52.911l0.105-0.086c12.534-12.293 29.722-19.88 48.683-19.88 38.41 0 69.547 31.137 69.547 69.547 0 29.208-18.006 54.211-43.523 64.514l-0.467 0.167c-37.243 19.013-62.302 57.095-62.302 101.030 0 0.482 0.003 0.963 0.009 1.443l-0.001-0.073v35.413c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM525.227 704.427c-0.126-0.002-0.275-0.003-0.424-0.003-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32 0-0.149-0.001-0.298-0.003-0.446l0 0.023c0-17.437-14.136-31.573-31.573-31.573v-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["question"]},"attrs":[{}],"properties":{"order":6819,"id":145,"name":"question","prevSize":32,"code":60075},"setIdx":0,"setId":0,"iconIdx":427},{"icon":{"paths":["M686.933 970.667h-349.867c-157.063-1.687-283.736-129.403-283.736-286.704 0-0.456 0.001-0.911 0.003-1.366l-0 0.070v-341.333c-0.002-0.385-0.003-0.84-0.003-1.296 0-157.302 126.674-285.018 283.576-286.703l0.16-0.001h349.867c157.063 1.687 283.736 129.403 283.736 286.704 0 0.456-0.001 0.911-0.003 1.366l0-0.070v341.333c0.002 0.385 0.003 0.84 0.003 1.296 0 157.302-126.674 285.018-283.576 286.703l-0.16 0.001zM337.067 119.893c-120.957 1.446-218.454 99.836-218.454 220.999 0 0.155 0 0.311 0 0.466l-0-0.024v341.333c-0 0.131-0 0.286-0 0.441 0 121.162 97.497 219.553 218.317 220.997l0.137 0.001h349.867c120.957-1.446 218.454-99.836 218.454-220.999 0-0.155-0-0.311-0-0.466l0 0.024v-341.333c0-0.131 0-0.286 0-0.441 0-121.162-97.497-219.553-218.317-220.997l-0.137-0.001zM305.067 461.227c9.742-1.45 17.957-6.998 22.961-14.802l0.079-0.131 72.107-116.48c3.198-5.060 5.096-11.218 5.096-17.82 0-11.784-6.048-22.156-15.208-28.182l-0.127-0.079c-4.879-3.167-10.846-5.049-17.253-5.049-11.666 0-21.875 6.243-27.466 15.571l-0.081 0.145-52.053 85.333-29.44-26.027c-5.672-5.206-13.267-8.396-21.607-8.396-9.796 0-18.565 4.402-24.434 11.336l-0.039 0.047c-4.944 5.882-7.948 13.538-7.948 21.895 0 9.883 4.2 18.785 10.913 25.018l0.021 0.020 58.453 51.627c5.692 4.945 13.146 7.995 21.31 8.106l0.023 0zM798.72 395.093c0-0.029 0-0.064 0-0.099 0-17.479-13.475-31.811-30.604-33.174l-0.116-0.007h-256c-14.886 3.525-25.792 16.702-25.792 32.427s10.906 28.902 25.566 32.381l0.226 0.045h256c16.707-1.307 29.881-14.776 30.717-31.495l0.003-0.079zM303.787 693.76c9.742-1.45 17.957-6.998 22.961-14.802l0.079-0.131 72.107-115.627c3.177-5.008 5.063-11.107 5.063-17.646 0-11.703-6.041-21.995-15.174-27.929l-0.129-0.079c-4.565-2.659-10.048-4.228-15.897-4.228-11.149 0-20.967 5.702-26.696 14.349l-0.074 0.119-52.053 85.333-29.44-26.027c-5.645-5.095-13.161-8.212-21.404-8.212-9.908 0-18.763 4.503-24.633 11.573l-0.042 0.053c-4.944 5.882-7.948 13.538-7.948 21.895 0 9.883 4.2 18.785 10.913 25.018l0.021 0.020 58.453 51.2c5.512 5.029 12.877 8.109 20.961 8.109 0.131 0 0.261-0.001 0.392-0.002l-0.020 0zM799.573 627.627c-1.326-16.611-14.83-29.672-31.514-30.292l-0.060-0.002h-256c-18.38 0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28v-0h256c17.617-0.669 31.644-15.112 31.644-32.831 0-0.758-0.026-1.511-0.076-2.256l0.005 0.101z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["questionnaire-tablet"]},"attrs":[{}],"properties":{"order":6820,"id":144,"name":"questionnaire-tablet","prevSize":32,"code":60076},"setIdx":0,"setId":0,"iconIdx":428},{"icon":{"paths":["M843.52 699.307h-160.853v-174.933c0.001-0.129 0.001-0.281 0.001-0.434 0-63.152-51.195-114.347-114.347-114.347-0.45 0-0.9 0.003-1.349 0.008l0.068-0.001h-110.080c-0.381-0.005-0.83-0.007-1.281-0.007-63.152 0-114.347 51.195-114.347 114.347 0 0.153 0 0.305 0.001 0.457l-0-0.024v50.773h-160.853c-63.388 0-114.773 51.386-114.773 114.773v0 280.747h892.587v-156.587c0-63.388-51.386-114.773-114.773-114.773h-0zM341.333 906.667h-213.333v-216.747c0.464-27.684 23.015-49.949 50.767-49.949 0.603 0 1.203 0.010 1.8 0.031l-0.087-0.002h160.853zM617.387 906.667h-213.333v-384c0-28.041 22.732-50.773 50.773-50.773v-0h110.080c28.041 0 50.773 22.732 50.773 50.773v-0 384zM893.867 906.667h-211.2v-143.36h161.707c0.254-0.005 0.553-0.007 0.853-0.007 28.041 0 50.773 22.732 50.773 50.773 0 0.003-0 0.005-0 0.008l0-0zM577.28 390.4c-10.104-0.242-19.604-2.576-28.165-6.582l0.432 0.182-37.547-18.347-42.667 18.347c-7.719 3.532-16.745 5.591-26.252 5.591-14.553 0-27.978-4.825-38.765-12.962l0.163 0.118c-15.902-12.121-26.060-31.073-26.060-52.398 0-2.736 0.167-5.432 0.492-8.080l-0.032 0.318 5.547-42.667-29.44-33.707c-10.823-11.315-17.485-26.689-17.485-43.618 0-7.774 1.405-15.22 3.975-22.098l-0.143 0.436c7.638-21.841 26.027-38.106 48.654-42.598l0.413-0.068 42.667-8.533 23.893-38.4c11.145-19.217 31.6-31.947 55.032-32l0.008-0c0.498-0.014 1.084-0.022 1.671-0.022 23.714 0 44.454 12.727 55.765 31.724l0.164 0.298 21.333 38.4 42.667 10.24c23.641 4.923 42.272 22.276 48.951 44.771l0.116 0.456c1.833 5.744 2.889 12.351 2.889 19.205 0 17.152-6.615 32.759-17.433 44.41l0.038-0.041-29.867 32 3.84 42.667c0.19 1.864 0.299 4.028 0.299 6.217 0 21.867-10.823 41.207-27.403 52.954l-0.202 0.136c-10.211 8.231-23.253 13.324-37.474 13.652l-0.072 0.001zM509.44 301.653c9.907 0.053 19.288 2.248 27.722 6.145l-0.415-0.172 39.68 18.773-3.84-42.667c-0.159-1.717-0.249-3.714-0.249-5.732 0-17.217 6.579-32.897 17.36-44.664l-0.045 0.049 29.867-32-42.667-11.52c-18.505-3.971-33.732-15.561-42.501-31.251l-0.165-0.322-21.333-38.4-24.32 37.973c-9.337 15.455-24.423 26.635-42.225 30.637l-0.442 0.083-42.667 8.107 28.16 34.56c10.127 11.216 16.323 26.15 16.323 42.532 0 2.906-0.195 5.766-0.572 8.568l0.036-0.327-5.12 42.667 42.667-16.213c7.174-3.851 15.62-6.318 24.59-6.82l0.157-0.007z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ranking"]},"attrs":[{}],"properties":{"order":6821,"id":143,"name":"ranking","prevSize":32,"code":60077},"setIdx":0,"setId":0,"iconIdx":429},{"icon":{"paths":["M970.667 512c0-70.827-59.733-133.12-154.88-175.36 11.093-103.68-13.227-186.453-74.24-221.867s-144.213-14.933-229.547 46.080c-85.333-61.013-168.107-81.493-229.12-46.080s-85.333 118.187-74.667 221.867c-95.147 42.667-154.88 104.533-154.88 175.36s59.307 133.12 154.453 175.36c0 3.84 0 8.107 0 12.373-8.533 101.547 18.773 176.213 76.8 209.493 19.357 11.275 42.607 17.931 67.411 17.931 0.601 0 1.201-0.004 1.8-0.012l-0.091 0.001c57.327-3.641 109.189-24.416 151.222-57.204l-0.608 0.457 9.387-6.827 9.387 6.827c41.424 32.331 93.286 53.106 149.817 56.706l0.797 0.041c0.435 0.005 0.949 0.008 1.464 0.008 25.029 0 48.505-6.652 68.755-18.284l-0.673 0.356c57.6-33.28 85.333-107.947 76.373-209.493 0-4.267 0-8.533 0-12.373 91.733-42.24 151.040-104.533 151.040-175.36zM672 161.28c0.391-0.007 0.853-0.012 1.315-0.012 12.965 0 25.155 3.324 35.762 9.165l-0.384-0.194c32.853 19.2 49.067 71.68 42.667 143.36-31.507-10.462-69.116-19.257-107.787-24.757l-3.573-0.417c-24.642-31.251-50.207-59.115-77.687-84.967l-0.393-0.366c30.721-23.339 68.784-38.541 110.208-41.768l0.725-0.045zM731.733 597.333c4.431 13.232 8.998 30.413 12.655 47.928l0.571 3.272c-13.008 4.606-30.003 9.452-47.335 13.418l-3.439 0.662c6.4-10.24 13.227-20.907 19.627-32s11.52-24.32 17.92-33.28zM658.347 597.333c-17.793 30.571-34.99 56.34-53.557 81.021l1.504-2.087c-27.961 3.711-60.654 6.025-93.813 6.396l-0.48 0.004c-33.296-0.063-66.052-2.077-98.242-5.932l3.948 0.385c-16.838-22.655-34.039-48.702-49.829-75.675l-2.224-4.112c-13.446-22.902-27.715-50.921-40.467-79.76l-2.199-5.573c14.95-34.411 29.219-62.43 44.906-89.525l-2.239 4.192c18.188-30.506 35.511-56.124 54.094-80.739l-1.614 2.232c27.349-3.586 59.851-6.044 92.771-6.807l1.095-0.020c33.255 0.151 65.883 2.007 98.024 5.485l-4.157-0.365c16.958 22.775 34.297 48.96 50.229 76.071l2.251 4.143c13.448 22.905 27.718 50.924 40.469 79.763l2.198 5.57c-14.951 34.413-29.221 62.431-44.907 89.527l2.24-4.194zM512 781.227c-12.8-11.52-25.6-23.893-37.973-37.12h75.947c-12.373 13.227-25.173 23.893-37.973 37.12zM310.187 628.48c6.4 11.093 13.227 21.76 19.627 32-20.77-4.628-37.766-9.474-54.377-15.15l3.604 1.070c4.347-20.102 8.905-36.542 14.251-52.622l-1.024 3.555q6.4 14.507 17.92 31.147zM292.267 428.8c-5.12-17.92-9.813-34.987-13.227-51.2 13.304-4.769 30.304-9.618 47.669-13.497l3.104-0.583c-6.4 10.24-13.227 20.907-19.627 32s-11.52 22.187-17.92 33.28zM512 243.627c12.373 11.093 24.747 23.040 37.12 36.267h-74.24c12.373-13.227 24.747-23.893 37.12-36.267zM713.813 395.52c-6.4-11.093-13.227-21.76-19.627-32 20.47 4.462 37.47 9.311 54.044 15.069l-3.271-0.989c-3.413 16.213-8.107 33.28-13.227 51.2-6.4-11.093-11.52-22.187-17.92-33.28zM314.88 170.667c9.978-5.65 21.913-8.979 34.626-8.979 0.577 0 1.152 0.007 1.726 0.021l-0.085-0.002c41.774 3.795 79.341 19.245 110.142 43.029l-0.489-0.363c-27.371 25.842-52.515 53.285-75.577 82.45l-1.223 1.603c-42.655 5.827-80.713 14.629-117.389 26.503l4.749-1.329c-5.973-71.68 10.24-124.16 43.52-142.933zM117.333 512c0-38.4 37.547-78.507 101.547-110.080 10.025 42.959 21.889 79.701 36.375 115.092l-1.815-5.012c-12.735 30.552-24.604 67.444-33.558 105.461l-1.002 5.045c-64-32-101.547-72.533-101.547-110.507zM314.88 853.333c-34.133-19.627-49.92-71.68-45.227-143.36 32.434 10.748 71.069 19.7 110.807 25.199l3.54 0.401c24.498 31.322 50.072 59.196 77.657 84.942l0.423 0.391c-60.587 40.107-113.92 52.053-147.2 32.427zM709.547 853.333c-33.707 19.627-85.333 7.253-146.347-32.427 28.008-26.138 53.582-54.011 76.885-83.75l1.195-1.584c42.82-5.829 81.026-14.632 117.853-26.507l-4.786 1.334c4.693 71.68-11.093 123.733-44.8 142.933zM805.12 621.653c-10.013-42.774-21.876-79.37-36.364-114.609l1.804 4.956c12.646-30.245 24.507-66.839 33.527-104.538l1.033-5.116c64 31.573 101.547 71.68 101.547 110.080s-37.547 78.080-101.547 109.653zM589.227 512c0 42.651-34.576 77.227-77.227 77.227s-77.227-34.576-77.227-77.227c0-42.651 34.576-77.227 77.227-77.227v0c42.651-0 77.227 34.576 77.227 77.227v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["react"]},"attrs":[{}],"properties":{"order":6822,"id":142,"name":"react","prevSize":32,"code":60078},"setIdx":0,"setId":0,"iconIdx":430},{"icon":{"paths":["M712.107 970.667h-400.213c-141.694-1.448-256-116.649-256-258.547 0-0.004 0-0.009 0-0.013l-0 0.001v-400.213c1.208-141.643 116.311-256 258.125-256 0.003 0 0.006 0 0.009 0l400.213-0c141.643 1.208 256 116.311 256 258.125 0 0.003-0 0.006-0 0.009l0-0v400.213c-1.207 141.732-116.264 256.19-258.111 256.427l-0.023 0zM311.893 117.333c-0-0-0-0-0-0-107.217 0-194.133 86.916-194.133 194.133 0 0.15 0 0.3 0.001 0.45l-0-0.024v400.213c-0 0-0 0-0 0 0 107.303 86.865 194.317 194.11 194.559l0.023 0h400.213c107.269-0.243 194.133-87.257 194.133-194.56 0-0-0-0-0-0l-0-0v-400.213c0-107.217-86.916-194.133-194.133-194.133l-0-0zM512 793.173c-36.319-0.055-68.027-19.747-85.081-49.024l-0.252-0.469-20.48-35.84-15.36 25.6c-11.824 19.586-32.993 32.48-57.173 32.48-36.76 0-66.56-29.8-66.56-66.56 0-0.019 0-0.037 0-0.056l-0 0.003v-352.427c0-64.566 52.341-116.907 116.907-116.907v0h256c0-0 0-0 0.001-0 64.651 0 117.090 52.289 117.332 116.883l0 0.023v352.427c-0.042 36.728-29.826 66.486-66.56 66.486-24.477 0-45.868-13.212-57.43-32.894l-0.17-0.313-14.507-24.747-20.48 35.84c-17.537 29.805-49.455 49.494-85.971 49.494-0.076 0-0.152-0-0.227-0l0.012 0zM405.333 640v0c0.005-0 0.010-0 0.016-0 22.409 0 41.957 12.252 52.309 30.424l0.156 0.296 23.040 40.107c6.273 10.504 17.581 17.429 30.507 17.429s24.234-6.925 30.417-17.267l0.090-0.162 22.613-39.68c10.552-18.716 30.301-31.148 52.954-31.148 0.133 0 0.267 0 0.4 0.001l-0.021-0c0.15-0.001 0.327-0.002 0.504-0.002 22.167 0 41.514 12.074 51.822 30.005l0.154 0.29 17.067 29.013h5.12v-352.427c-0.235-28.975-23.54-52.43-52.435-52.906l-0.045-0.001h-256c-0.127-0.001-0.278-0.002-0.428-0.002-29.306 0-53.091 23.637-53.331 52.886l-0 0.023v352.427h4.693l17.92-29.867c10.676-17.752 29.837-29.445 51.728-29.445 0.264 0 0.528 0.002 0.792 0.005l-0.040-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-square"]},"attrs":[{}],"properties":{"order":6823,"id":141,"name":"receipt-square","prevSize":32,"code":60079},"setIdx":0,"setId":0,"iconIdx":431},{"icon":{"paths":["M900.693 269.227c-8.045-13.073-21.583-22.098-37.317-23.872l-0.23-0.021c-1.847-0.221-3.985-0.348-6.153-0.348-14.062 0-26.882 5.314-36.562 14.044l0.049-0.043-125.013 116.48c-10.311 9.746-16.729 23.518-16.729 38.789 0 7.243 1.444 14.148 4.059 20.445l-0.13-0.353c8.428 19.778 13.425 42.768 13.653 66.899l0.001 0.088c-0.166 29.941-7.562 58.117-20.529 82.92l0.476-1c-4.175 7.359-6.636 16.164-6.636 25.543 0 13.291 4.941 25.428 13.086 34.674l-0.050-0.058 128 132.693c9.559 10.502 23.284 17.067 38.543 17.067 0.1 0 0.2-0 0.299-0.001l-0.015 0h3.84c16.095-1.312 29.994-9.705 38.717-22.023l0.11-0.164c50.204-72.268 80.206-161.859 80.206-258.458 0-90.042-26.067-173.996-71.067-244.727l1.101 1.852zM846.080 728.32l-113.92-122.027c15.339-30.436 24.322-66.336 24.322-104.335 0-30.935-5.953-60.479-16.776-87.549l0.561 1.591 113.067-106.667c35.362 57.843 56.542 127.716 57.172 202.491l0.001 0.176c0 0.1 0 0.219 0 0.338 0 80.366-24.047 155.115-65.338 217.446l0.911-1.463zM381.44 320v0c9.73 10.18 23.415 16.508 38.579 16.508 7.812 0 15.231-1.679 21.917-4.697l-0.336 0.136c20.977-9.238 45.433-14.614 71.145-14.614 32.492 0 62.979 8.586 89.316 23.614l-0.887-0.466c7.515 4.295 16.516 6.828 26.109 6.828 0.121 0 0.242-0 0.363-0.001l-0.019 0c0.070 0 0.153 0.001 0.236 0.001 13.785 0 26.318-5.358 35.631-14.106l-0.028 0.026 120.32-112.64c10.34-9.75 16.778-23.54 16.778-38.835 0-1.348-0.050-2.685-0.148-4.008l0.011 0.177c-1.036-15.984-9.14-29.884-21.188-38.725l-0.145-0.102c-74.106-53.597-166.803-85.728-267.006-85.728-85.602 0-165.727 23.45-234.301 64.277l2.107-1.162c-13.633 8.021-23.214 21.679-25.566 37.688l-0.034 0.285c-0.16 1.587-0.251 3.43-0.251 5.295 0 14.392 5.44 27.514 14.375 37.422l-0.044-0.050zM512 113.493c0.262-0.001 0.572-0.001 0.882-0.001 83.374 0 160.71 25.853 224.428 69.979l-1.31-0.858-109.653 102.827c-33.050-18.243-72.393-29.108-114.246-29.439l-0.101-0.001c-32.491 0.095-63.42 6.673-91.597 18.505l1.571-0.585-103.68-110.080c55.808-31.648 122.574-50.313 193.697-50.347l0.010-0zM651.947 678.4v0c-9.604-10.262-23.231-16.657-38.351-16.657-8.573 0-16.666 2.056-23.813 5.701l0.297-0.138c-22.772 11.505-49.639 18.243-78.080 18.243s-55.308-6.738-79.093-18.705l1.013 0.462c-6.85-3.508-14.943-5.564-23.517-5.564-13.847 0-26.442 5.363-35.82 14.125l0.030-0.028-135.68 128c-10.345 9.682-16.792 23.42-16.792 38.663 0 1.409 0.055 2.805 0.163 4.186l-0.012-0.183c0.839 16.163 8.991 30.264 21.186 39.151l0.147 0.102c73.938 53.532 166.448 85.629 266.456 85.629 96.343 0 185.729-29.788 259.45-80.655l-1.533 1c12.436-8.417 20.933-21.845 22.594-37.319l0.020-0.227c0.241-1.898 0.379-4.094 0.379-6.322 0-14.087-5.505-26.888-14.482-36.369l0.023 0.024zM512 910.507c-0.116 0-0.254 0-0.391 0-84.078 0-162.042-26.178-226.186-70.829l1.297 0.855 125.013-115.2c29.335 13.945 63.743 22.088 100.053 22.088s70.719-8.143 101.499-22.703l-1.445 0.615 113.493 121.6c-60.266 39.463-133.992 63.113-213.213 63.573l-0.121 0.001zM334.507 640c10.381-9.686 16.852-23.447 16.852-38.719 0-8.423-1.969-16.387-5.471-23.456l0.138 0.309c-11.225-22.689-17.829-49.389-17.92-77.623l-0-0.030c-0.001-0.206-0.001-0.451-0.001-0.695 0-32.64 8.543-63.285 23.516-89.82l-0.475 0.915c4.536-7.603 7.218-16.769 7.218-26.56 0-13.82-5.342-26.392-14.073-35.764l0.029 0.032-113.92-120.747c-9.496-10.597-23.224-17.235-38.503-17.235-1.465 0-2.916 0.061-4.351 0.181l0.188-0.013c-15.764 0.829-29.599 8.439-38.743 19.945l-0.083 0.108c-59.599 75.781-95.586 172.577-95.586 277.779 0 1.194 0.005 2.386 0.014 3.578l-0.001-0.183c-0 0.027-0 0.060-0 0.092 0 89.441 25.744 172.869 70.227 243.278l-1.107-1.877c8.045 13.073 21.583 22.098 37.317 23.872l0.23 0.021h6.827c0.174 0.002 0.379 0.003 0.584 0.003 13.946 0 26.643-5.353 36.146-14.117l-0.037 0.034 130.987-123.307zM267.52 501.333c-0 0.033-0 0.072-0 0.111 0 35.876 8.021 69.878 22.369 100.311l-0.609-1.436-118.613 113.067c-35.15-58-55.952-128.091-55.952-203.039 0-88.508 29.009-170.24 78.038-236.207l-0.753 1.060 106.667 111.36c-19.075 33-30.559 72.484-31.145 114.602l-0.002 0.171z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rescue"]},"attrs":[{}],"properties":{"order":6824,"id":140,"name":"rescue","prevSize":32,"code":60080},"setIdx":0,"setId":0,"iconIdx":432},{"icon":{"paths":["M799.147 369.067c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 72.107 70.827h-631.893l73.813-69.12c9.475-5.672 15.72-15.881 15.72-27.549 0-17.673-14.327-32-32-32-10.907 0-20.54 5.457-26.317 13.79l-0.069 0.106-128 125.44c-6.051 5.763-9.814 13.881-9.814 22.878 0 0.057 0 0.114 0 0.171l-0-0.009h-2.133c0.050 10.483 5.418 19.702 13.542 25.104l0.111 0.070 124.16 121.6c5.459 5.787 13.18 9.39 21.742 9.39 0.156 0 0.312-0.001 0.468-0.004l-0.024 0c0.122 0.002 0.265 0.003 0.409 0.003 17.673 0 32-14.327 32-32 0-9.045-3.753-17.213-9.786-23.033l-0.010-0.009-71.253-68.267h629.333l-71.68 70.4c-6.388 5.87-10.376 14.263-10.376 23.589 0 17.673 14.327 32 32 32 9.113 0 17.336-3.809 23.164-9.922l0.012-0.013 128-125.44c6.045-5.626 9.814-13.627 9.814-22.509 0-0.037-0-0.074-0-0.11l0 0.006c0-0.048 0-0.105 0-0.162 0-8.997-3.763-17.115-9.801-22.866l-0.013-0.012z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["right-left"]},"attrs":[{}],"properties":{"order":6825,"id":139,"name":"right-left","prevSize":32,"code":60081},"setIdx":0,"setId":0,"iconIdx":433},{"icon":{"paths":["M690.773 969.813h-357.547c-154.483-0.242-279.651-125.41-279.893-279.87l-0-0.024v-357.973c0.243-154.397 125.462-279.467 279.893-279.467l357.547 0c-0-0 0-0 0-0 154.431 0 279.65 125.069 279.893 279.443l0 0.024v357.973c-0.242 154.483-125.41 279.651-279.87 279.893l-0.024 0zM333.227 116.48c-0-0-0-0-0-0-119.085 0-215.65 96.416-215.893 215.444l-0 0.023v357.973c0.242 119.137 96.756 215.651 215.87 215.893l0.023 0h357.547c119.137-0.242 215.651-96.756 215.893-215.87l0-0.023v-357.973c-0.243-119.051-96.808-215.467-215.893-215.467-0 0-0 0-0 0l-0 0zM496.213 692.48l148.907-155.307c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-156.587-148.907c-7.685-7.376-18.139-11.917-29.653-11.917-23.666 0-42.851 19.185-42.851 42.851 0 12.151 5.058 23.121 13.183 30.919l0.015 0.014 125.44 119.467-119.467 124.587c-7.295 7.642-11.784 18.017-11.784 29.44 0 23.507 19.010 42.574 42.496 42.666l0.009 0c11.925-0.171 22.641-5.208 30.277-13.21l0.016-0.017z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["right-square"]},"attrs":[{}],"properties":{"order":6826,"id":138,"name":"right-square","prevSize":32,"code":60082},"setIdx":0,"setId":0,"iconIdx":434},{"icon":{"paths":["M438.187 810.667c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 222.72-225.707-222.72-220.587c-7.681-7.786-12.424-18.486-12.424-30.293 0-23.828 19.316-43.144 43.144-43.144 12.020 0 22.892 4.915 30.715 12.846l0.005 0.005 252.587 253.013c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002-252.587 252.587c-7.724 8.535-18.791 13.922-31.118 14.080l-0.028 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["right"]},"attrs":[{}],"properties":{"order":6827,"id":137,"name":"right","prevSize":32,"code":60083},"setIdx":0,"setId":0,"iconIdx":435},{"icon":{"paths":["M686.080 206.507c-65.217 1.589-117.478 54.835-117.478 120.286 0 34.012 14.113 64.729 36.802 86.612l0.036 0.035c21.204 19.076 49.405 30.744 80.331 30.744 66.451 0 120.32-53.869 120.32-120.32 0-32.73-13.069-62.408-34.273-84.1l0.022 0.023c-21.865-20.62-51.421-33.294-83.937-33.294-0.641 0-1.281 0.005-1.92 0.015l0.097-0.001zM728.747 365.653c-10.408 12.759-26.13 20.84-43.739 20.84-31.105 0-56.32-25.215-56.32-56.32 0-16.758 7.319-31.807 18.935-42.123l0.058-0.050c9.852-10.544 23.748-17.203 39.201-17.493l0.052-0.001c0.021-0 0.046-0 0.070-0 15.087 0 28.767 6.024 38.767 15.797l-0.010-0.010c10.425 9.884 16.948 23.796 17.067 39.231l0 0.022c0.059 0.967 0.093 2.098 0.093 3.236 0 14.133-5.206 27.051-13.805 36.939l0.058-0.069zM938.667 85.333c-18.947-18.723-45.004-30.289-73.762-30.289-6.655 0-13.165 0.619-19.476 1.803l0.651-0.102-153.173 26.88c-85.030 22.807-158.077 65.855-216.345 123.758l0.025-0.024c-33.257 36.111-63.779 75.858-90.575 118.197l-2.011 3.403c-165.973-14.933-319.573 225.707-325.973 238.080-2.715 4.373-4.325 9.678-4.325 15.36s1.609 10.987 4.397 15.486l-0.073-0.126c5.614 9.264 15.642 15.361 27.093 15.361 0.075 0 0.15-0 0.225-0.001l-0.012 0h153.173c-0.112 1.639-0.176 3.552-0.176 5.481 0 24.367 10.213 46.348 26.592 61.897l0.037 0.035 88.32 82.773c15.345 14.899 36.308 24.084 59.416 24.084 9.258 0 18.173-1.474 26.52-4.201l-0.603 0.171 15.787 160.853c1.298 11.144 8.394 20.371 18.15 24.669l0.197 0.077c3.651 1.554 7.894 2.489 12.346 2.56l0.028 0c7.035-0.026 13.544-2.259 18.875-6.042l-0.102 0.069c10.24-7.68 240.64-181.333 209.493-341.333 39.598-27.17 74.112-54.504 106.668-83.961l-0.854 0.761c60.76-59.587 104.038-136.796 121.556-223.349l0.47-2.784 27.307-139.52c0.924-5.124 1.453-11.023 1.453-17.044 0-28.703-12.010-54.601-31.278-72.943l-0.042-0.039zM256 554.667h-113.067c47.36-64.427 124.587-146.347 198.4-163.413l-32 62.72c-19.2 36.693-36.693 70.4-49.92 97.707zM512 879.787l-11.093-114.347 154.88-95.573c-11.093 74.667-86.613 157.867-143.787 209.92zM909.227 162.987l-27.307 140.8c-15.807 75.856-52.47 141.426-103.668 192.414l-0.012 0.012c-102.405 85.393-217.751 161.61-341.126 224.304l-10.447 4.816c-3.513 1.803-7.665 2.859-12.064 2.859-7.044 0-13.454-2.709-18.247-7.142l0.018 0.016-88.32-85.333c-4.915-4.674-7.972-11.262-7.972-18.564 0-3.95 0.894-7.69 2.492-11.031l-0.066 0.154 2.987-6.4c0.562-0.736 1.126-1.571 1.641-2.44l0.066-0.12 59.307-116.053c45.523-88.179 97.591-164.222 157.736-233.022l-1.149 1.342c49.672-49.216 111.67-86.075 180.95-105.534l2.944-0.706 151.893-26.88c2.195-0.4 4.722-0.629 7.302-0.629 11.608 0 22.134 4.636 29.826 12.157l-0.008-0.008c7.674 7.183 12.456 17.375 12.456 28.683 0 2.226-0.185 4.408-0.541 6.533l0.032-0.23z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rocket"]},"attrs":[{}],"properties":{"order":6828,"id":136,"name":"rocket","prevSize":32,"code":60084},"setIdx":0,"setId":0,"iconIdx":436},{"icon":{"paths":["M273.067 319.573c-35.346-0.001-63.999-28.654-63.999-64s28.654-64 64-64c35.346 0 64 28.654 64 64 0 0.15-0.001 0.3-0.002 0.45l0-0.023c-0.242 35.162-28.802 63.573-63.999 63.573-0.001 0-0.001-0-0.002-0l0 0zM946.347 802.133c-11.469 25.194-36.333 42.441-65.251 42.666l-0.029 0h-193.707v93.867c0 17.673-14.327 32-32 32v0h-298.667c-1.029 0.019-2.242 0.030-3.458 0.030-108.555 0-196.834-86.81-199.204-194.796l-0.004-0.221c2.374-108.207 90.653-195.017 199.208-195.017 1.216 0 2.43 0.011 3.641 0.033l-0.182-0.003h64c0.268 0.008 0.583 0.013 0.899 0.013 16.606 0 30.177-12.996 31.097-29.372l0.004-0.081c-0.915-16.229-14.298-29.042-30.674-29.042-0.466 0-0.93 0.010-1.391 0.031l0.066-0.002h-149.333s0 0 0 0c-21.553-0.233-40.844-9.721-54.121-24.671l-0.066-0.075-95.147-106.667c-31.908-35.658-51.413-82.998-51.413-134.893 0-111.93 90.737-202.667 202.667-202.667s202.667 90.737 202.667 202.667c0 51.895-19.505 99.235-51.584 135.087l0.171-0.194-60.587 67.84h56.747c1.888-0.136 4.090-0.213 6.31-0.213 51.605 0 93.44 41.835 93.44 93.44s-41.835 93.44-93.44 93.44c-2.22 0-4.423-0.077-6.605-0.23l0.294 0.016h-64c-1.16-0.036-2.524-0.056-3.893-0.056-73.132 0-132.665 58.226-134.769 130.849l-0.004 0.194c2.347 72.86 61.974 131.031 135.187 131.031 1.223 0 2.443-0.016 3.659-0.049l-0.18 0.004h266.667v-341.333c0-17.673 14.327-32 32-32s32 14.327 32 32v0h193.707c0.329-0.005 0.717-0.008 1.106-0.008 39.823 0 72.107 32.283 72.107 72.107 0 17-5.883 32.626-15.724 44.953l0.112-0.145-17.067 21.333 17.067 21.333c9.563 12.121 15.339 27.616 15.339 44.461 0 11.791-2.83 22.921-7.848 32.747l0.189-0.408zM263.68 454.827c5.547 6.4 10.24 6.4 15.787 0l95.573-106.667c21.992-24.439 35.443-56.945 35.443-92.592 0-76.144-61.373-137.953-137.349-138.661l-0.067-0c-0.043-0-0.093-0-0.144-0-11.606 0-22.885 1.4-33.677 4.040l0.967-0.2c-51.13 12.517-90.512 52.327-102.218 102.75l-0.182 0.93c-2.012 8.922-3.165 19.168-3.165 29.684 0 36.211 13.67 69.23 36.13 94.177l-0.113-0.127zM836.693 704.427l49.067-61.44c0.762-1.213 1.214-2.687 1.214-4.267s-0.452-3.054-1.233-4.301l0.020 0.034c-1.436-2.806-4.308-4.694-7.621-4.694-0.021 0-0.042 0-0.063 0l0.003-0h-190.72v149.333h193.707c0.018 0 0.039 0 0.059 0 3.312 0 6.184-1.887 7.598-4.645l0.022-0.048c0.762-1.213 1.214-2.687 1.214-4.267s-0.452-3.054-1.233-4.301l0.020 0.034z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["route"]},"attrs":[{}],"properties":{"order":6829,"id":135,"name":"route","prevSize":32,"code":60085},"setIdx":0,"setId":0,"iconIdx":437},{"icon":{"paths":["M256 657.92c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v-0zM426.667 657.92c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v-0zM597.333 657.92c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v-0zM853.333 497.92h-91.733v-355.84c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 355.84h-526.933c-64.801 0-117.333 52.532-117.333 117.333v0 170.667c-0 0.082-0 0.18-0 0.277 0 55.491 38.662 101.953 90.52 113.916l0.787 0.153c11.663 26.96 38.032 45.481 68.727 45.481 29.543 0 55.078-17.157 67.186-42.052l0.195-0.443h462.507c12.302 25.337 37.837 42.495 67.38 42.495 30.695 0 57.064-18.522 68.54-44.998l0.186-0.483c52.65-12.282 91.276-58.799 91.307-114.343l0-0.004v-170.667c-0-64.801-52.532-117.333-117.333-117.333v-0zM906.667 785.92c0 29.455-23.878 53.333-53.333 53.333v0c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023c0 11.947-21.333 11.947-21.333 0-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-512c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023c0 11.947-21.333 11.947-21.333 0-0.237-17.577-14.423-31.763-31.977-32l-0.023-0c-29.455 0-53.333-23.878-53.333-53.333v0-170.667c0-29.455 23.878-53.333 53.333-53.333v-0h682.667c29.455 0 53.333 23.878 53.333 53.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["router"]},"attrs":[{}],"properties":{"order":6830,"id":134,"name":"router","prevSize":32,"code":60086},"setIdx":0,"setId":0,"iconIdx":438},{"icon":{"paths":["M864 480h-704c-58.91 0-106.667-47.756-106.667-106.667v0-213.333c0-58.91 47.756-106.667 106.667-106.667v0h704c58.91 0 106.667 47.756 106.667 106.667v0 213.333c0 58.91-47.756 106.667-106.667 106.667v0zM160 117.333c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h704c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0zM864 970.667h-704c-58.91 0-106.667-47.756-106.667-106.667v0-213.333c0-58.91 47.756-106.667 106.667-106.667v0h704c58.91 0 106.667 47.756 106.667 106.667v0 213.333c0 58.91-47.756 106.667-106.667 106.667v0zM160 608c-23.564 0-42.667 19.103-42.667 42.667v0 213.333c0 23.564 19.103 42.667 42.667 42.667v0h704c23.564 0 42.667-19.103 42.667-42.667v0-213.333c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["row-horizontal"]},"attrs":[{}],"properties":{"order":6831,"id":133,"name":"row-horizontal","prevSize":32,"code":60087},"setIdx":0,"setId":0,"iconIdx":439},{"icon":{"paths":["M373.333 970.667h-213.333c-58.91 0-106.667-47.756-106.667-106.667v0-704c0-58.91 47.756-106.667 106.667-106.667v0h213.333c58.91 0 106.667 47.756 106.667 106.667v0 704c0 58.91-47.756 106.667-106.667 106.667v0zM160 117.333c-23.564 0-42.667 19.103-42.667 42.667v0 704c0 23.564 19.103 42.667 42.667 42.667v0h213.333c23.564 0 42.667-19.103 42.667-42.667v0-704c0-23.564-19.103-42.667-42.667-42.667v0zM864 970.667h-213.333c-58.91 0-106.667-47.756-106.667-106.667v0-704c0-58.91 47.756-106.667 106.667-106.667v0h213.333c58.91 0 106.667 47.756 106.667 106.667v0 704c0 58.91-47.756 106.667-106.667 106.667v0zM650.667 117.333c-23.564 0-42.667 19.103-42.667 42.667v0 704c0 23.564 19.103 42.667 42.667 42.667v0h213.333c23.564 0 42.667-19.103 42.667-42.667v0-704c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["row-vertical"]},"attrs":[{}],"properties":{"order":6832,"id":132,"name":"row-vertical","prevSize":32,"code":60088},"setIdx":0,"setId":0,"iconIdx":440},{"icon":{"paths":["M252.16 880.213c-0.065 0-0.143 0-0.22 0-84.343 0-153.877-63.401-163.545-145.144l-0.075-0.777-33.707-288c-0.563-5.119-0.884-11.056-0.884-17.068 0-52.943 24.917-100.066 63.663-130.283l0.368-0.276 256-197.973c27.702-21.243 62.852-34.042 100.992-34.042 40.553 0 77.726 14.47 106.639 38.528l-0.271-0.219 243.2 204.8c21.777 18.139 38.517 41.612 48.286 68.434l0.354 1.112c1.7 3.753 2.691 8.139 2.691 12.755 0 13.82-8.879 25.565-21.243 29.845l-0.222 0.067c-3.689 1.608-7.986 2.544-12.503 2.544-13.843 0-25.634-8.79-30.093-21.094l-0.071-0.223c-6.669-17.029-17.024-31.36-30.145-42.543l-0.148-0.123-241.067-208.64c-17.599-14.859-40.538-23.891-65.587-23.891-23.615 0-45.355 8.027-62.64 21.501l0.227-0.171-256 197.547c-23.885 18.919-39.070 47.92-39.070 80.468 0 4.12 0.243 8.183 0.716 12.176l-0.047-0.483 34.133 286.293c5.971 50.603 48.561 89.497 100.256 89.6l0.011 0h233.387c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-233.387zM869.973 920.747l49.92-40.107c30.038-24.556 49.249-61.382 49.919-102.714l0.001-0.112v-139.947c0.004-0.311 0.006-0.678 0.006-1.045 0-40.316-24.102-75.003-58.683-90.437l-0.629-0.251-105.387-46.507c-11.984-5.466-25.993-8.653-40.747-8.653s-28.762 3.186-41.376 8.908l0.63-0.256-109.653 50.347c-33.694 16.615-56.516 50.628-56.747 89.996l-0 0.031v139.52c-0.025 0.955-0.039 2.079-0.039 3.207 0 41.88 19.59 79.183 50.107 103.248l0.279 0.212 42.667 34.987c29.782 23.669 67.932 37.973 109.423 37.973 0.081 0 0.162-0 0.243-0l-0.012 0c0.257 0.001 0.56 0.002 0.864 0.002 41.49 0 79.599-14.48 109.548-38.662l-0.332 0.259zM780.373 558.507l104.96 46.080c12.648 5.458 21.339 17.822 21.339 32.215 0 0.224-0.002 0.448-0.006 0.672l0-0.033v139.52c-0.333 21.745-10.535 41.042-26.313 53.652l-0.14 0.108-49.493 42.667c-18.963 15.155-43.291 24.319-69.76 24.319s-50.797-9.164-69.985-24.493l0.225 0.173-42.667-34.56c-16.191-13.010-26.466-32.809-26.466-55.008 0-0.461 0.004-0.921 0.013-1.38l-0.001 0.069v-139.52c-0-0.003-0-0.007-0-0.012 0-13.988 8.31-26.035 20.263-31.474l0.217-0.088 109.653-50.773c4.276-1.889 9.263-2.989 14.507-2.989s10.23 1.1 14.742 3.082l-0.236-0.092z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["safe-home"]},"attrs":[{}],"properties":{"order":6833,"id":131,"name":"safe-home","prevSize":32,"code":60089},"setIdx":0,"setId":0,"iconIdx":441},{"icon":{"paths":["M588.8 455.253l19.2-16.213c6.961-6.026 11.339-14.875 11.339-24.747 0-18.045-14.628-32.673-32.673-32.673-8.173 0-15.645 3.001-21.374 7.961l0.041-0.035-23.467 20.48-232.96-233.813c-10.276-10.313-24.492-16.694-40.199-16.694-0.868 0-1.731 0.019-2.59 0.058l0.122-0.004c-16.328 0.842-30.644 8.79-40.017 20.787l-0.090 0.12c-102.827 130.987-68.267 341.333 79.36 498.347-14.279 22.957-25.832 49.52-33.253 77.757l-0.453 2.030c-69.624 10.495-125.882 58.5-148.087 122.433l-0.393 1.3c-2.206 6.443-3.48 13.867-3.48 21.588 0 14.764 4.658 28.441 12.584 39.64l-0.144-0.215c12.292 16.584 31.775 27.236 53.749 27.307l0.011 0h228.267c0.444 0.011 0.967 0.017 1.492 0.017 21.942 0 41.388-10.686 53.418-27.137l0.13-0.187c7.782-10.985 12.44-24.661 12.44-39.426 0-7.721-1.274-15.145-3.623-22.072l0.142 0.484c-21.773-62.973-75.068-109.745-140.521-121.853l-1.132-0.174c4.146-13.558 8.926-25.147 14.64-36.175l-0.56 1.188c77.876 68.609 179.726 111.649 291.542 115.182l0.724 0.018c1.554 0.030 3.386 0.047 5.222 0.047 66.711 0 128.171-22.482 177.217-60.283l-0.679 0.503c12.032-9.532 19.947-23.808 20.9-39.956l0.007-0.15c0.057-0.972 0.090-2.11 0.090-3.255 0-16.215-6.555-30.899-17.159-41.547l0.002 0.002zM418.133 902.827l30.293-10.24-32.427 14.080h-231.68l-2.133-3.84c17.885-48.3 63.555-82.104 117.12-82.104s99.235 33.804 116.84 81.242l0.28 0.862zM361.387 646.827c-128-128-167.253-309.76-90.453-418.133l506.88 505.6c-107.947 76.373-289.28 39.253-418.133-89.173zM566.187 264.533c-0-0.032-0-0.069-0-0.107 0-16.966 13.754-30.72 30.72-30.72 0.901 0 1.793 0.039 2.675 0.115l-0.115-0.008c51.12 3.066 96.765 24.288 131.055 57.239l-0.069-0.066c23.677 26.605 38.143 61.862 38.143 100.498 0 4.725-0.216 9.4-0.64 14.015l0.044-0.593c-0.474 17.068-14.423 30.723-31.562 30.723-0.154 0-0.308-0.001-0.461-0.003l0.023 0c-17.165-0.926-30.732-15.070-30.732-32.382 0-0.316 0.005-0.63 0.013-0.944l-0.001 0.046c3.84-96.853-96.853-103.68-107.947-103.68-17.334-0.437-31.218-14.592-31.218-31.99 0-0.754 0.026-1.502 0.077-2.243l-0.006 0.1zM919.040 403.2c0.002 0.13 0.003 0.284 0.003 0.438 0 17.374-13.846 31.514-31.106 31.988l-0.044 0.001c-0.769 0.066-1.665 0.103-2.569 0.103-17.409 0-31.572-13.902-31.99-31.211l-0.001-0.039c-4.693-233.387-248.747-256-259.413-256-16.587-1.312-29.55-15.095-29.55-31.906 0-0.934 0.040-1.859 0.118-2.773l-0.008 0.119c1.771-16.631 15.725-29.472 32.679-29.472 0.512 0 1.020 0.012 1.526 0.035l-0.072-0.003c110.080 8.96 315.733 86.187 320.427 318.72z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["satellite"]},"attrs":[{}],"properties":{"order":6834,"id":130,"name":"satellite","prevSize":32,"code":60090},"setIdx":0,"setId":0,"iconIdx":442},{"icon":{"paths":["M788.053 53.333h-293.547c-0.297-0.002-0.648-0.003-1-0.003-95.271 0-173.699 72.114-183.675 164.734l-0.071 0.816h-73.813c-0.511-0.005-1.115-0.008-1.719-0.008-101.285 0-183.534 81.507-184.733 182.508l-0.001 0.114v476.587c0.103 33.898 18.406 63.498 45.647 79.551l0.433 0.236c13.667 7.934 30.073 12.617 47.573 12.617s33.907-4.683 48.035-12.863l-0.461 0.247 176.64-99.413c4.396-2.629 9.696-4.183 15.36-4.183s10.964 1.554 15.499 4.26l-0.139-0.077 176.64 99.413c13.521 7.679 29.68 12.253 46.898 12.373l0.036 0c17.839-0.106 34.473-5.172 48.619-13.886l-0.406 0.233c27.715-15.919 46.080-45.35 46.080-79.071 0-0.102-0-0.203-0.001-0.305l0 0.016v-151.893l117.333 65.707c13.637 8.055 30.049 12.814 47.573 12.814s33.937-4.759 48.016-13.055l-0.443 0.241c27.717-15.919 46.083-45.351 46.083-79.072 0-0.251-0.001-0.502-0.003-0.753l0 0.038v-475.307c-1.2-101.114-83.449-182.621-184.734-182.621-0.604 0-1.208 0.003-1.811 0.009l0.092-0.001zM651.947 672v206.080c-0.118 10.421-5.879 19.47-14.365 24.247l-0.141 0.073c-4.446 2.707-9.822 4.31-15.573 4.31s-11.128-1.603-15.708-4.385l0.134 0.076-176.64-99.413c-13.46-7.635-29.564-12.136-46.72-12.136s-33.26 4.5-47.198 12.384l0.478-0.249-177.067 99.84c-4.467 2.623-9.839 4.173-15.573 4.173s-11.106-1.549-15.72-4.252l0.147 0.080c-8.628-4.85-14.388-13.899-14.507-24.303l-0-0.017v-477.013c1.192-65.768 54.787-118.626 120.728-118.626 0.607 0 1.212 0.004 1.817 0.013l-0.091-0.001h293.547c0.513-0.008 1.119-0.012 1.725-0.012 65.941 0 119.536 52.858 120.726 118.514l0.002 0.112zM910.507 712.107c-0.143 10.536-5.88 19.7-14.37 24.673l-0.137 0.074c-4.446 2.707-9.822 4.31-15.573 4.31s-11.128-1.603-15.708-4.385l0.134 0.076-148.907-83.2v-252.16c-1.2-101.114-83.449-182.621-184.734-182.621-0.604 0-1.208 0.003-1.811 0.009l0.092-0.001h-156.16c9.769-57.956 59.58-101.557 119.575-101.557 0.562 0 1.123 0.004 1.683 0.011l-0.085-0.001h293.547c0.513-0.008 1.119-0.012 1.725-0.012 65.941 0 119.536 52.858 120.726 118.514l0.002 0.112z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["save-2"]},"attrs":[{}],"properties":{"order":6835,"id":129,"name":"save-2","prevSize":32,"code":60091},"setIdx":0,"setId":0,"iconIdx":443},{"icon":{"paths":["M743.014 133.12h-502.989c-87.319-0-158.106 70.786-158.106 158.106l0 0v421.069c-0 87.319 70.786 158.106 158.106 158.106v0h11.878c-0 22.622 18.338 40.96 40.96 40.96s40.96-18.338 40.96-40.96v0h312.115c0 22.622 18.338 40.96 40.96 40.96s40.96-18.338 40.96-40.96v0h15.155c87.319 0 158.106-70.786 158.106-158.106v0-421.069c0-87.319-70.786-158.106-158.106-158.106v0zM839.68 712.294c0 53.387-43.279 96.666-96.666 96.666v0h-502.989c-53.387 0-96.666-43.279-96.666-96.666h0v-421.069c-0-53.387 43.279-96.666 96.666-96.666h502.989c53.387 0 96.666 43.279 96.666 96.666v0zM757.76 501.76c-0.1 18.048-7.966 34.238-20.423 45.415l-0.057 0.051v36.454c0 22.622-18.338 40.96-40.96 40.96s-40.96-18.338-40.96-40.96v0-36.454c-12.593-11.299-20.479-27.626-20.479-45.794 0-33.932 27.508-61.44 61.44-61.44s61.44 27.508 61.44 61.44c0 0.115-0 0.231-0.001 0.346l0-0.018z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["save-deposit"]},"attrs":[{}],"properties":{"order":6836,"id":128,"name":"save-deposit","prevSize":32,"code":60092},"setIdx":0,"setId":0,"iconIdx":444},{"icon":{"paths":["M396.373 490.667h-110.080c-52.077 0-94.293-42.217-94.293-94.293h-0v-110.080c0-52.077 42.217-94.293 94.293-94.293v0h110.080c52.077 0 94.293 42.217 94.293 94.293v-0 110.080c0 52.077-42.217 94.293-94.293 94.293v0zM286.293 256c-16.731 0-30.293 13.563-30.293 30.293v-0 110.080c0 16.731 13.563 30.293 30.293 30.293v0h110.080c16.731 0 30.293-13.563 30.293-30.293v0-110.080c0-16.731-13.563-30.293-30.293-30.293v0zM737.707 490.667h-110.080c-52.077 0-94.293-42.217-94.293-94.293v0-110.080c0-52.077 42.217-94.293 94.293-94.293v-0h110.080c52.077 0 94.293 42.217 94.293 94.293v-0 110.080c0 52.077-42.217 94.293-94.293 94.293v0zM627.627 256c-16.731 0-30.293 13.563-30.293 30.293v0 110.080c0 16.731 13.563 30.293 30.293 30.293v0h110.080c16.731 0 30.293-13.563 30.293-30.293v0-110.080c0-16.731-13.563-30.293-30.293-30.293v0zM396.373 832h-110.080c-52.077 0-94.293-42.217-94.293-94.293h-0v-110.080c0-52.077 42.217-94.293 94.293-94.293h110.080c52.077 0 94.293 42.217 94.293 94.293v0 110.080c0 52.077-42.217 94.293-94.293 94.293v0zM286.293 597.333c-16.731 0-30.293 13.563-30.293 30.293v0 110.080c0 16.731 13.563 30.293 30.293 30.293v0h110.080c16.731 0 30.293-13.563 30.293-30.293v0-110.080c0-16.731-13.563-30.293-30.293-30.293v0zM737.707 832h-110.080c-52.077 0-94.293-42.217-94.293-94.293v0-110.080c0-52.077 42.217-94.293 94.293-94.293v0h110.080c52.077 0 94.293 42.217 94.293 94.293v0 110.080c0 52.077-42.217 94.293-94.293 94.293v0zM627.627 597.333c-16.731 0-30.293 13.563-30.293 30.293v0 110.080c0 16.731 13.563 30.293 30.293 30.293v0h110.080c16.731 0 30.293-13.563 30.293-30.293v0-110.080c0-16.731-13.563-30.293-30.293-30.293v0zM115.627 384v-117.333c-0-0.002-0-0.004-0-0.005 0-83.674 67.468-151.59 150.971-152.314l0.069-0h98.56c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-98.56c-119.47-0-216.32 96.85-216.32 216.32h0v117.333c-0 17.673 14.327 32 32 32s32-14.327 32-32v0zM973.653 384v-117.333c0-0 0-0 0-0 0-119.32-96.607-216.077-215.87-216.32l-0.023-0h-136.107c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h136.107c83.94 0.243 151.893 68.345 151.893 152.319 0 0-0 0-0 0.001l-0 0v117.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM397.227 941.653c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-98.56c-84.124 0-152.32-68.196-152.32-152.32v0-117.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 117.333c-0 119.47 96.85 216.32 216.32 216.32v0h98.56c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM973.653 757.333v-117.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 117.333c0 0 0 0 0 0.001 0 83.974-67.953 152.077-151.87 152.319l-0.023 0h-136.107c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h136.107c119.287-0.243 215.893-96.999 215.893-216.32 0-0-0-0-0-0l-0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scan-barcode"]},"attrs":[{}],"properties":{"order":6837,"id":127,"name":"scan-barcode","prevSize":32,"code":60093},"setIdx":0,"setId":0,"iconIdx":445},{"icon":{"paths":["M197.12 873.813c-0.127 0.001-0.277 0.001-0.427 0.001-61.974 0-112.213-50.24-112.213-112.213s50.24-112.213 112.213-112.213c61.973 0 112.213 50.239 112.213 112.212l0 0c0 0 0 0.001 0 0.001 0 61.824-49.997 111.97-111.764 112.212l-0.023 0zM197.12 713.813c-0.126-0.001-0.275-0.002-0.425-0.002-26.627 0-48.213 21.586-48.213 48.213s21.586 48.213 48.213 48.213c26.627 0 48.213-21.586 48.213-48.213 0-0.149-0.001-0.299-0.002-0.448l0 0.023c0-26.392-21.395-47.787-47.787-47.787v0z","M826.88 873.813c-0.127 0.001-0.277 0.001-0.427 0.001-61.974 0-112.213-50.24-112.213-112.213s50.24-112.213 112.213-112.213c61.973 0 112.213 50.239 112.213 112.212l0 0c0.001 0.127 0.001 0.277 0.001 0.427 0 61.738-50.049 111.787-111.787 111.787-0 0-0.001-0-0.001-0l0 0zM826.88 713.813c-0.126-0.001-0.275-0.002-0.425-0.002-26.627 0-48.213 21.586-48.213 48.213s21.586 48.213 48.213 48.213c26.627 0 48.213-21.586 48.213-48.213 0-0.149-0.001-0.299-0.002-0.448l0 0.023c0-26.392-21.395-47.787-47.787-47.787v0z","M643.413 793.6h-426.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h408.32l116.48-229.547c5.282-10.481 15.959-17.545 28.286-17.545 5.25 0 10.2 1.281 14.556 3.548l-0.175-0.083c10.345 5.557 17.26 16.301 17.26 28.661 0 5.092-1.174 9.909-3.265 14.197l0.085-0.192-125.44 247.040c-5.443 10.712-16.38 17.923-29.002 17.923-0.154 0-0.308-0.001-0.461-0.003l0.023 0z","M820.053 771.413c-15.148-0.221-27.765-10.796-31.103-24.953l-0.044-0.22-118.613-532.907h-81.067c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h107.093c15.092 0.010 27.739 10.466 31.103 24.529l0.044 0.218 125.867 558.080c0.527 2.175 0.829 4.671 0.829 7.238 0 15.092-10.447 27.744-24.505 31.117l-0.218 0.044z","M374.187 793.6h-2.56c-16.956-0.893-30.367-14.859-30.367-31.958 0-0.765 0.027-1.524 0.080-2.276l-0.006 0.101c0.475-4.139 0.746-8.936 0.746-13.796 0-66.448-50.632-121.070-115.421-127.39l-0.525-0.041c-16.254-1.912-28.745-15.606-28.745-32.217 0-1.126 0.057-2.238 0.169-3.334l-0.011 0.138c1.863-16.063 15.388-28.416 31.799-28.416 1.425 0 2.828 0.093 4.203 0.274l-0.162-0.017c97.719 7.769 174.075 88.981 174.075 188.028 0 7.715-0.463 15.321-1.363 22.793l0.088-0.901c-1.577 16.341-15.239 29.014-31.86 29.014-0.049 0-0.098-0-0.147-0l0.008 0z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scooter-2"]},"attrs":[{},{},{},{},{}],"properties":{"order":6838,"id":126,"name":"scooter-2","prevSize":32,"code":60094},"setIdx":0,"setId":0,"iconIdx":446},{"icon":{"paths":["M817.92 594.347c-0.351-0.003-0.765-0.005-1.18-0.005-59.787 0-110 40.99-124.070 96.4l-0.191 0.885h-531.627c-10.316-1.619-18.114-10.443-18.114-21.089 0-3.854 1.022-7.468 2.809-10.589l-0.055 0.104 33.707-60.16c3.602-6.848 10.642-11.453 18.764-11.52l0.009-0h250.027l-8.533 29.013c-1.286 4.004-2.027 8.61-2.027 13.388 0 9.865 3.158 18.992 8.519 26.425l-0.092-0.133c8.225 10.914 20.917 18.082 35.307 18.769l0.107 0.004 68.267 2.987c1.129 0.053 2.453 0.084 3.784 0.084 33.991 0 63.34-19.874 77.061-48.635l0.221-0.515 42.667-88.32c5.232-10.735 8.29-23.355 8.29-36.69 0-8.204-1.158-16.137-3.319-23.646l0.148 0.602-38.4-122.453v-12.373l4.693-79.36c0.562-9.861 7.612-17.927 16.921-20.026l0.145-0.028 47.787-10.24v47.36h-8.533c-0.244-0.007-0.532-0.011-0.82-0.011-11.525 0-21.627 6.092-27.26 15.232l-0.079 0.138c-2.617 4.609-4.159 10.124-4.159 16s1.542 11.391 4.245 16.163l-0.085-0.163 113.493 202.24c5.657 9.541 15.902 15.837 27.618 15.837 17.673 0 32-14.327 32-32 0-5.483-1.379-10.643-3.809-15.154l0.084 0.17-91.733-156.587c10.424-5.277 17.453-15.893 17.493-28.155l0-0.005 2.56-98.987c0.010-0.374 0.016-0.813 0.016-1.254 0-15.047-6.773-28.511-17.436-37.512l-0.073-0.060c-8.218-7.048-18.982-11.338-30.747-11.338-4.236 0-8.343 0.556-12.251 1.6l0.331-0.075-67.413 14.080c-26.066 6.021-47.18 23.351-58.232 46.42l-0.222 0.513h-72.107c-0.001-0-0.002-0-0.003-0-17.437 0-31.573 14.136-31.573 31.573 0 0.15 0.001 0.3 0.003 0.449l-0-0.023c0 17.673 14.327 32 32 32v0h61.013l-2.987 49.92v5.12l2.133 17.92c-0.098 0.769-0.154 1.658-0.154 2.56s0.056 1.791 0.165 2.664l-0.011-0.104 35.84 128c0.804 2.224 1.268 4.791 1.268 7.467s-0.465 5.242-1.318 7.625l0.049-0.158-42.667 88.32c-3.702 7.394-11.22 12.381-19.902 12.381-0.203 0-0.406-0.003-0.608-0.008l0.030 0.001h-42.667l8.96-29.867c0.403-2.373 0.633-5.106 0.633-7.893s-0.23-5.52-0.673-8.182l0.040 0.289h5.12c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-402.773c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h6.4l-35.413 57.6c-6.612 11.839-10.506 25.975-10.506 41.019 0 33.896 19.763 63.175 48.394 76.946l0.512 0.222c6.818 64.875 61.225 114.999 127.338 114.999 62.933 0 115.258-45.417 125.987-105.263l0.115-0.776h313.173c15.191 54.959 64.75 94.644 123.577 94.644 70.692 0 128-57.308 128-128 0-69.137-54.814-125.472-123.354-127.917l-0.223-0.006zM253.013 790.613c-0.12 0.001-0.261 0.001-0.402 0.001-24.709 0-46.233-13.639-57.453-33.8l-0.171-0.335h115.627c-11.284 20.485-32.733 34.134-57.371 34.134-0.081 0-0.161-0-0.242-0l0.012 0zM817.92 790.613c-36.522-0.003-66.128-29.611-66.128-66.133 0-36.524 29.609-66.133 66.133-66.133s66.133 29.609 66.133 66.133c0 0.3-0.002 0.6-0.006 0.899l0-0.045c-0.715 36.061-30.001 65.048-66.111 65.28l-0.022 0zM402.347 459.093h-210.347c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h210.347c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM402.347 349.44h-210.347c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h210.347c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scooter"]},"attrs":[{}],"properties":{"order":6839,"id":125,"name":"scooter","prevSize":32,"code":60095},"setIdx":0,"setId":0,"iconIdx":447},{"icon":{"paths":["M764.587 53.333h-505.173c-113.717 0.242-205.838 92.363-206.080 206.057l-0 0.023v320.427c0.242 113.717 92.363 205.838 206.057 206.080l0.023 0h220.587v90.453h-152.747c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h369.493c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-152.747v-90.453h220.587c113.717-0.242 205.838-92.363 206.080-206.057l0-0.023v-320.427c-0.242-113.717-92.363-205.838-206.057-206.080l-0.023-0zM764.587 721.92h-505.173c-70.721-0.269-129.241-52.165-139.844-119.946l-0.103-0.801h785.067c-10.705 68.581-69.225 120.478-139.918 120.747l-0.028 0zM906.667 537.173h-789.333v-277.76c0-78.469 63.611-142.080 142.080-142.080v0h505.173c78.469 0 142.080 63.611 142.080 142.080v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["screen"]},"attrs":[{}],"properties":{"order":6840,"id":124,"name":"screen","prevSize":32,"code":60096},"setIdx":0,"setId":0,"iconIdx":448},{"icon":{"paths":["M912.64 741.973l-229.973-485.973c-1.133-2.397-2.291-5.365-3.264-8.416l-0.15-0.544h181.333c0.005 0 0.010 0 0.016 0 21.174 0 39.93-10.351 51.484-26.269l0.127-0.184c7.378-10.385 11.795-23.323 11.795-37.293 0-7.262-1.194-14.245-3.395-20.765l0.134 0.457c-21.908-64.259-81.743-109.654-152.18-109.654-0.199 0-0.398 0-0.597 0.001l0.031-0h-512c-88.37 0.305-159.89 72.013-159.89 160.426 0 24.793 5.624 48.273 15.667 69.233l-0.417-0.965 229.973 485.973c1.133 2.397 2.291 5.365 3.264 8.416l0.15 0.544h-164.267c-26.902 0.082-50.427 14.461-63.387 35.934l-0.187 0.333c-6.042 10.209-9.613 22.501-9.613 35.627s3.57 25.417 9.793 35.957l-0.18-0.33c27.21 50.997 79.995 85.155 140.775 85.333l0.025 0h510.293c88.37-0.305 159.89-72.013 159.89-160.426 0-24.793-5.624-48.273-15.667-69.233l0.417 0.965zM768 117.333c41.742 0.046 77.324 26.376 91.087 63.328l0.219 0.672h-432.64c-0.075 0.001-0.164 0.002-0.253 0.002-7.272 0-13.532-4.332-16.342-10.555l-0.046-0.113c-5.462-20.412-14.419-38.231-26.292-53.693l0.265 0.359zM170.667 855.893c-0.775-1.137-1.238-2.541-1.238-4.053s0.463-2.916 1.254-4.078l-0.016 0.025c1.747-2.99 4.893-4.996 8.516-5.12l0.017-0h166.827s0 2.133 0 2.987l-4.693 7.68c-1.788 3.8-3.636 7.016-5.71 10.068l0.163-0.254c-0.921 1.963-1.917 3.642-3.051 5.214l0.065-0.094-8.533 10.667s0 0 0 2.133c-3.867 3.779-8.045 7.281-12.479 10.449l-0.321 0.218h-3.84l-11.947 4.267-5.12 2.133c-3.423 1.59-7.419 2.915-11.585 3.777l-0.362 0.063h-5.12c-2.618 0.211-5.668 0.331-8.747 0.331s-6.128-0.12-9.146-0.356l0.399 0.025c-1.124 0.048-2.444 0.075-3.769 0.075-34.453 0-64.629-18.312-81.326-45.734l-0.238-0.42zM768 906.667h-384l2.56-3.84 5.12-6.827c3.069-4.812 6.065-10.416 8.638-16.247l0.322-0.819c1.507-2.636 2.945-5.732 4.127-8.951l0.14-0.435c0-5.973 4.267-12.373 5.973-18.773s0-5.973 0-8.96c1.767-8.909 2.847-19.216 2.985-29.75l0.001-0.117c0-0.085 0-0.186 0-0.288 0-24.852-5.666-48.38-15.776-69.364l0.416 0.958-227.84-487.253c-5.942-11.688-9.423-25.487-9.423-40.099 0-0.903 0.013-1.803 0.040-2.7l-0.003 0.132c-0-0.068-0-0.149-0-0.23 0-53.019 42.981-96 96-96 43.992 0 81.073 29.59 92.425 69.954l0.162 0.676c10.317 33.356 40.721 57.234 76.757 57.6l0.043 0h183.893c2.852 13.895 6.976 26.168 12.379 37.723l-0.432-1.029 230.827 485.973c5.942 11.688 9.423 25.487 9.423 40.099 0 0.903-0.013 1.803-0.040 2.7l0.003-0.132c0 0.003 0 0.006 0 0.009 0 52.569-42.254 95.27-94.652 95.991l-0.068 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scroll"]},"attrs":[{}],"properties":{"order":6841,"id":123,"name":"scroll","prevSize":32,"code":60097},"setIdx":0,"setId":0,"iconIdx":449},{"icon":{"paths":["M751.787 970.667h-479.573c-73.049 0-132.267-59.218-132.267-132.267v0-652.8c0-73.049 59.218-132.267 132.267-132.267v0h293.973c24.361 0.040 46.392 9.984 62.287 26.020l0.006 0.006 230.4 233.387c15.563 15.782 25.173 37.469 25.173 61.4 0 0.014-0 0.028-0 0.042l0-0.002v464.213c0 73.049-59.218 132.267-132.267 132.267v0zM272.213 117.333c-37.703 0-68.267 30.564-68.267 68.267v-0 652.8c0 37.703 30.564 68.267 68.267 68.267h479.573c37.703 0 68.267-30.564 68.267-68.267v0-464.213c-0.16-6.46-2.729-12.29-6.838-16.653l0.012 0.013-230.4-233.387c-4.242-4.219-10.090-6.827-16.547-6.827-0.033 0-0.065 0-0.098 0l0.005-0z","M850.773 394.667h-141.653c-0 0-0 0-0.001 0-90.808 0-164.45-73.493-164.693-164.244l-0-0.023v-145.067c-0-0.057-0.001-0.123-0.001-0.19 0-9.202 3.937-17.485 10.218-23.256l0.023-0.021c5.405-4.635 12.484-7.457 20.221-7.457 2.206 0 4.359 0.229 6.435 0.666l-0.203-0.036c18.208 3.305 33.991 11.982 46.066 24.306l0.014 0.014 230.4 233.387c11.185 11.422 19.286 25.907 22.929 42.079l0.111 0.587c0.475 2.052 0.747 4.408 0.747 6.828 0 17.437-14.136 31.573-31.573 31.573-0.113 0-0.225-0.001-0.338-0.002l0.017 0zM608.427 150.187v80.213c0.242 55.428 45.231 100.267 100.692 100.267 0 0 0.001-0 0.001-0l77.653 0z","M693.333 735.573l-88.747-85.333c19.288-26.507 30.934-59.66 31.146-95.522l0-0.051c0.007-0.557 0.010-1.215 0.010-1.873 0-94.257-76.41-170.667-170.667-170.667s-170.667 76.41-170.667 170.667c0 94.257 76.41 170.667 170.667 170.667 34.582 0 66.762-10.286 93.648-27.965l-0.644 0.398 91.307 85.333c5.741 5.54 13.565 8.954 22.186 8.96l0.001 0c0.099 0.001 0.216 0.002 0.333 0.002 9.026 0 17.13-3.947 22.68-10.21l0.028-0.032c5.159-5.661 8.319-13.222 8.319-21.522 0-8.948-3.673-17.039-9.594-22.846l-0.005-0.005zM363.52 554.667c0.008-57.491 46.615-104.093 104.107-104.093 57.497 0 104.107 46.61 104.107 104.107 0 56.896-45.642 103.133-102.31 104.091l-0.090 0.001c-0.381 0.005-0.83 0.008-1.281 0.008-57.585 0-104.294-46.563-104.532-104.092l-0-0.023z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-list"]},"attrs":[{},{},{}],"properties":{"order":6842,"id":122,"name":"search-list","prevSize":32,"code":60098},"setIdx":0,"setId":0,"iconIdx":450},{"icon":{"paths":["M305.067 311.040c17.007 0.193 30.857 13.449 31.995 30.194l0.005 0.1v341.333c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-341.333c1.143-16.845 14.993-30.1 31.981-30.293l0.019-0zM521.387 161.707c0.016-0.383 0.025-0.831 0.025-1.282 0-17.768-14.29-32.198-32.004-32.424l-0.021-0h-233.387c-112.188 1.204-202.671 92.43-202.671 204.789 0 0.454 0.001 0.908 0.004 1.361l-0-0.070v355.84c-0.003 0.384-0.004 0.837-0.004 1.291 0 112.359 90.482 203.585 202.557 204.788l0.114 0.001h223.573c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-223.573c-77.429-0.242-140.132-62.945-140.373-140.35l-0-0.023v-357.547c0.242-77.429 62.945-140.132 140.35-140.373l0.023-0h231.68c0.51 0.029 1.106 0.046 1.707 0.046 17.673 0 32-14.327 32-32 0-0.016-0-0.032-0-0.048l0 0.002zM970.667 332.373v355.84c0.014 0.892 0.022 1.944 0.022 2.998 0 112.366-90.492 203.595-202.576 204.788l-0.113 0.001h-103.68v9.813c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-785.92c0-17.673 14.327-32 32-32s32 14.327 32 32v0 8.107h103.68c112.188 1.204 202.671 92.43 202.671 204.789 0 0.454-0.001 0.908-0.004 1.361l0-0.070zM906.667 332.373c-1.181-76.104-62.563-137.486-138.555-138.665l-0.112-0.001h-103.68v636.587h103.68c77.429-0.242 140.132-62.945 140.373-140.35l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["security-check"]},"attrs":[{}],"properties":{"order":6843,"id":121,"name":"security-check","prevSize":32,"code":60099},"setIdx":0,"setId":0,"iconIdx":451},{"icon":{"paths":["M512 970.667c-0.042 0-0.091 0-0.14 0-42.687 0-81.837-15.142-112.373-40.347l0.3 0.24-195.84-160c-39.709-32.485-64.854-81.488-64.854-136.363 0-0.21 0-0.419 0.001-0.629l-0 0.032v-313.6c0.039-70.984 41.842-132.196 102.166-160.397l1.087-0.456 195.84-89.6c21.637-10.313 47.022-16.336 73.813-16.336s52.177 6.023 74.875 16.789l-1.062-0.453 195.84 89.6c61.412 28.658 103.214 89.869 103.253 160.848l0 0.005v313.6c0.001 0.177 0.001 0.387 0.001 0.597 0 54.876-25.145 103.879-64.541 136.115l-0.313 0.248-195.84 160c-30.236 24.965-69.386 40.107-112.073 40.107-0.049 0-0.099-0-0.148-0l0.008 0zM512 117.333c-17.069 0.129-33.191 4.049-47.608 10.958l0.675-0.291-195.84 89.173c-39.261 18.343-66.004 57.446-66.133 102.81l-0 0.017v313.6c0.813 34.593 17.218 65.196 42.433 85.155l0.233 0.178 195.84 160c19.344 15.951 44.382 25.625 71.68 25.625s52.336-9.674 71.873-25.78l-0.193 0.155 195.84-160c25.449-20.137 41.854-50.74 42.664-85.201l0.002-0.132v-313.6c-0.129-45.38-26.872-84.483-65.437-102.534l-0.696-0.293-198.4-89.173c-13.742-6.617-29.865-10.537-46.889-10.666l-0.044-0zM512 771.413c-107.52 0-191.573-61.013-191.573-139.093 5.296-63.148 50.935-114.287 110.831-127.818l0.956-0.182c-36.279-25.185-59.734-66.634-59.734-113.561 0-0.126 0-0.252 0.001-0.379l-0 0.020c0-77.055 62.465-139.52 139.52-139.52s139.52 62.465 139.52 139.52v-0c0 0.107 0 0.233 0 0.359 0 46.927-23.455 88.376-59.28 113.263l-0.454 0.298c60.852 13.713 106.491 64.852 111.751 127.478l0.035 0.522c0 78.080-84.053 139.093-191.573 139.093zM512 558.080c-67.84 0-128 34.987-128 74.667s59.733 75.093 128 75.093 128-34.987 128-75.093-60.16-75.093-128-75.093zM512 317.013c-41.289 0.242-74.667 33.769-74.667 75.092 0 41.473 33.62 75.093 75.093 75.093s75.093-33.62 75.093-75.092l0-0c0.001-0.127 0.001-0.277 0.001-0.428 0-41.473-33.62-75.093-75.093-75.093-0.15 0-0.301 0-0.451 0.001l0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["security-user"]},"attrs":[{}],"properties":{"order":6844,"id":120,"name":"security-user","prevSize":32,"code":60100},"setIdx":0,"setId":0,"iconIdx":452},{"icon":{"paths":["M610.56 972.8c-0.163 0.001-0.356 0.001-0.55 0.001-39.676 0-74.060-22.659-90.916-55.743l-0.267-0.578-92.16-177.493c-1.609-3.607-2.545-7.816-2.545-12.244 0-16.966 13.754-30.72 30.72-30.72 10.907 0 20.487 5.684 25.938 14.252l0.074 0.125 91.307 177.493c7.395 13.315 21.375 22.177 37.425 22.177 18.036 0 33.458-11.191 39.701-27.007l0.101-0.289 256-709.973c1.728-4.46 2.73-9.621 2.73-15.016 0-11.592-4.622-22.104-12.125-29.793l0.008 0.009c-7.69-7.546-18.238-12.203-29.873-12.203-4.568 0-8.969 0.718-13.095 2.047l0.302-0.084-710.4 253.44c-17 5.877-28.991 21.746-28.991 40.416 0 16.553 9.426 30.905 23.204 37.979l0.24 0.112 249.6 130.987c2.396 1.416 5.28 2.252 8.36 2.252 4.774 0 9.078-2.010 12.113-5.231l0.008-0.008 278.187-265.813c5.473-5.43 13.011-8.786 21.333-8.786s15.86 3.356 21.335 8.788l-0.002-0.002c5.144 5.599 8.298 13.098 8.298 21.333s-3.153 15.735-8.318 21.356l0.021-0.023-277.333 264.96c-14.050 14.040-33.455 22.723-54.888 22.723-13.328 0-25.871-3.358-36.831-9.273l0.412 0.203-250.453-128.427c-33.417-17.666-55.8-52.2-55.8-91.962 0-2.923 0.121-5.818 0.358-8.679l-0.025 0.375c2.141-42.478 29.861-77.964 67.977-91.511l0.716-0.222 709.973-253.44c9.769-3.442 21.033-5.43 32.761-5.43 28.884 0 54.951 12.059 73.442 31.418l0.037 0.039c18.769 18.828 30.374 44.807 30.374 73.496 0 12.983-2.377 25.411-6.719 36.873l0.238-0.716-256 709.973c-13.604 38.46-48.494 66.026-90.155 68.678l-0.298 0.015z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send"]},"attrs":[{}],"properties":{"order":6845,"id":119,"name":"send","prevSize":32,"code":60101},"setIdx":0,"setId":0,"iconIdx":453},{"icon":{"paths":["M373.333 945.067c-20.426-0.171-39.526-5.692-56.015-15.226l0.549 0.293-69.547-40.533c-25.255-14.64-43.857-38.388-51.451-66.646l-0.175-0.767c-2.513-8.823-3.958-18.955-3.958-29.425 0-20.593 5.59-39.881 15.335-56.429l-0.284 0.521 18.773-32c-8.29-12.081-16.518-26.050-23.798-40.577l-0.949-2.090h-38.4c-61.083-0.242-110.507-49.815-110.507-110.933 0-0.15 0-0.3 0.001-0.451l-0 0.023v-81.493c0.268-29.924 12.623-56.911 32.411-76.358l0.016-0.015c19.767-19.773 47.079-32.003 77.246-32.003 0.293 0 0.586 0.001 0.879 0.003l-0.045-0h37.547c8.207-16.502 16.576-30.472 25.884-43.735l-0.711 1.068-18.773-33.707c-9.092-15.667-14.458-34.474-14.458-54.534 0-41.371 22.823-77.412 56.565-96.219l0.56-0.286 69.973-40.107c15.606-8.899 34.293-14.145 54.205-14.145 41.388 0 77.483 22.666 96.548 56.262l0.287 0.55 18.347 32c6.758-0.408 14.658-0.64 22.613-0.64s15.856 0.232 23.696 0.691l-1.083-0.051 20.053-33.707c14.746-25.161 38.45-43.722 66.635-51.445l0.778-0.182c8.907-2.617 19.14-4.122 29.724-4.122 20.514 0 39.707 5.655 56.105 15.491l-0.496-0.276 69.547 40.107c33.345 19.549 55.383 55.212 55.383 96.022 0 20.413-5.514 39.539-15.133 55.968l0.283-0.524-18.347 32.427c8.797 12.244 17.302 26.212 24.743 40.813l0.857 1.854h38.4c60.95 0.723 110.081 50.3 110.081 111.353 0 0.153-0 0.305-0.001 0.458l0-0.024v82.347c-0.721 60.803-50.061 109.843-110.911 110.080l-0.023 0h-37.973c-7.988 15.728-15.783 28.851-24.315 41.434l0.849-1.327 19.2 33.707c8.899 15.606 14.145 34.293 14.145 54.205 0 41.388-22.666 77.483-56.262 96.548l-0.55 0.287-69.973 40.107c-15.637 8.995-34.384 14.3-54.369 14.3-41.38 0-77.447-22.744-96.384-56.412l-0.287-0.555-18.773-32c-7.155 0.61-15.483 0.957-23.893 0.957s-16.738-0.348-24.972-1.029l1.079 0.072-19.627 33.28c-19.362 34.11-55.437 56.747-96.799 56.747-0.019 0-0.038-0-0.058-0l0.003 0zM164.267 426.667c-0.032-0-0.069-0-0.107-0-12.863 0-24.549 5.037-33.194 13.246l0.021-0.020c-8.438 8.484-13.654 20.18-13.654 33.094 0 0.065 0 0.131 0 0.196l-0-0.010v80.213c1.596 24.343 21.532 43.537 46.040 43.946l0.040 0.001h58.88c0.149-0.003 0.324-0.004 0.5-0.004 13.054 0 24.233 8.031 28.865 19.422l0.075 0.208c10.767 25.083 23.634 46.714 38.906 66.384l-0.506-0.678c4.132 5.483 6.617 12.409 6.617 19.916 0 5.838-1.503 11.325-4.144 16.095l0.087-0.171-29.44 49.92c-3.856 6.917-6.127 15.175-6.127 23.962 0 4.217 0.523 8.311 1.507 12.222l-0.073-0.344c3.366 12.118 11.184 22.021 21.538 28.041l0.222 0.119 69.547 40.533c6.675 4.040 14.74 6.431 23.364 6.431 4.443 0 8.738-0.635 12.799-1.818l-0.323 0.081c12.19-3.48 22.185-11.255 28.465-21.546l0.121-0.214 29.44-51.2c5.839-9.653 16.28-16.007 28.205-16.007 1.337 0 2.656 0.080 3.951 0.235l-0.156-0.015c11.144 1.427 24.037 2.242 37.12 2.242s25.975-0.814 38.63-2.395l-1.51 0.154c1.48-0.249 3.185-0.392 4.924-0.392 11.54 0 21.614 6.276 26.996 15.601l0.080 0.151 29.013 50.347c8.241 14.233 23.397 23.655 40.754 23.655 8.551 0 16.568-2.287 23.472-6.282l-0.226 0.121 69.547-40.107c10.81-5.988 18.811-15.937 22.111-27.839l0.076-0.321c0.911-3.567 1.434-7.661 1.434-11.878 0-8.788-2.271-17.045-6.257-24.217l0.13 0.255-29.44-51.2c-3.298-4.994-5.261-11.121-5.261-17.707s1.963-12.713 5.337-17.828l-0.075 0.122c14.259-18.257 26.693-39.042 36.399-61.291l0.721-1.856c4.176-11.787 15.229-20.078 28.217-20.078 0.43 0 0.858 0.009 1.284 0.027l-0.061-0.002h58.027c0.565 0.024 1.228 0.038 1.894 0.038 24.903 0 45.357-19.049 47.585-43.371l0.014-0.187v-81.067c0-0.055 0-0.121 0-0.186 0-12.914-5.216-24.61-13.656-33.096l0.002 0.002c-8.297-8.655-19.942-14.044-32.847-14.080l-0.007-0h-58.453c-13.233-0.225-24.516-8.344-29.36-19.84l-0.080-0.213c-10.728-24.769-23.74-46.129-39.248-65.395l0.422 0.541c-4.080-5.365-6.537-12.158-6.537-19.525 0-6.011 1.636-11.64 4.486-16.466l-0.082 0.151 29.013-50.347c3.875-6.679 6.162-14.696 6.162-23.246 0-17.357-9.422-32.513-23.43-40.633l-0.225-0.12-69.547-41.813c-6.435-3.787-14.176-6.025-22.439-6.025-3.85 0-7.586 0.486-11.151 1.399l0.31-0.067c-12.228 3.396-22.251 11.196-28.466 21.544l-0.12 0.216-29.44 51.2c-5.627 9.672-15.943 16.070-27.753 16.070-1.498 0-2.971-0.103-4.414-0.302l0.167 0.019c-10.826-1.425-23.345-2.239-36.053-2.239s-25.228 0.814-37.507 2.391l1.454-0.153c-1.225 0.168-2.641 0.265-4.079 0.265-11.732 0-21.97-6.399-27.413-15.897l-0.081-0.154-30.72-50.773c-8.364-14.156-23.547-23.502-40.912-23.502-8.479 0-16.438 2.228-23.323 6.132l0.235-0.123-69.973 39.253c-14.338 8.322-23.825 23.602-23.825 41.099 0 8.404 2.189 16.297 6.028 23.14l-0.123-0.239 29.013 51.627c3.039 4.765 4.844 10.574 4.844 16.805 0 7.759-2.799 14.865-7.442 20.362l0.039-0.047c-14.664 18.525-27.509 39.577-37.641 62.112l-0.759 1.888c-4.838 11.613-16.096 19.627-29.226 19.627-0.075 0-0.15-0-0.225-0.001l0.012 0h-58.027zM512 682.667c-94.257 0-170.667-76.41-170.667-170.667s76.41-170.667 170.667-170.667c94.257 0 170.667 76.41 170.667 170.667v0c0 94.257-76.41 170.667-170.667 170.667v0zM512 405.333c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667c58.91 0 106.667-47.756 106.667-106.667v0c0-58.91-47.756-106.667-106.667-106.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-2"]},"attrs":[{}],"properties":{"order":6846,"id":118,"name":"setting-2","prevSize":32,"code":60102},"setIdx":0,"setId":0,"iconIdx":454},{"icon":{"paths":["M719.787 970.667h-415.573c-138.46-0.242-250.638-112.42-250.88-250.857l-0-0.023v-415.573c0.243-138.374 112.472-250.453 250.88-250.453l415.574 0c138.322 0 250.453 112.132 250.453 250.453v-0 415.573c0 0 0 0 0 0 0 138.407-112.080 250.637-250.43 250.88l-0.024 0zM304.213 117.333c-103.211-0-186.88 83.669-186.88 186.88v415.573c0.242 103.114 83.767 186.638 186.857 186.88l0.023 0h415.573c103.027-0.243 186.453-83.819 186.453-186.88 0-0-0-0-0-0l-0-0v-415.573c0-102.975-83.478-186.453-186.453-186.453v-0zM359.253 390.4c17.577-0.237 31.763-14.423 32-31.977l0-0.023v-123.733c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 123.733c0.237 17.577 14.423 31.763 31.977 32l0.023 0zM359.253 443.733c-81.348 0.857-146.964 67.002-146.964 148.472 0 70.117 48.601 128.882 113.954 144.445l1.010 0.203v52.907c-0 0.001-0 0.002-0 0.003 0 17.437 14.136 31.573 31.573 31.573 0.15 0 0.3-0.001 0.449-0.003l-0.023 0c17.577-0.237 31.763-14.423 32-31.977l0-0.023v-52.48c66.362-15.766 114.964-74.531 114.964-144.648 0-81.47-65.615-147.615-146.883-148.472l-0.081-0.001zM359.253 676.693c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333v0c0 47.128-38.205 85.333-85.333 85.333v0zM664.747 634.027c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023v123.733c-0 17.673 14.327 32 32 32s32-14.327 32-32v0-124.16c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0zM696.747 287.573v-52.907c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0c-0.127-0.002-0.277-0.003-0.427-0.003-17.437 0-31.573 14.136-31.573 31.573 0 0.001 0 0.002 0 0.003l-0-0v52.907c-67.118 15.193-116.48 74.328-116.48 144.991 0 82.003 66.477 148.48 148.48 148.48s148.48-66.477 148.48-148.48c0-70.663-49.362-129.797-115.486-144.801l-0.994-0.19zM664.747 516.693c-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c47.128 0 85.333 38.205 85.333 85.333v0c-0.242 46.944-38.354 84.907-85.332 84.907-0 0-0.001-0-0.001-0l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-3"]},"attrs":[{}],"properties":{"order":6847,"id":117,"name":"setting-3","prevSize":32,"code":60103},"setIdx":0,"setId":0,"iconIdx":455},{"icon":{"paths":["M432.213 96.427c-98.634 0.425-180.355 72.297-196.105 166.512l-0.161 1.168h-117.333c-0.389-0.017-0.846-0.027-1.305-0.027-17.232 0-31.283 13.621-31.973 30.684l-0.002 0.063c-0 0.001-0 0.002-0 0.003 0 17.759 14.276 32.183 31.977 32.424l0.023 0h118.613c15.766 95.393 97.643 167.253 196.304 167.253 109.809 0 198.827-89.018 198.827-198.827s-89.018-198.827-198.827-198.827c-0.013 0-0.026 0-0.039 0l0.002-0zM432.213 430.507c-74.698-0-135.253-60.555-135.253-135.253s60.555-135.253 135.253-135.253c74.698 0 135.253 60.555 135.253 135.253 0 0.15-0 0.3-0.001 0.45l0-0.023c-0.243 74.515-60.704 134.827-135.253 134.827-0 0-0-0-0-0l-0-0zM709.973 327.68c-17.673 0-32-14.327-32-32v0c-0.008-0.255-0.012-0.555-0.012-0.856 0-17.202 13.945-31.147 31.147-31.147 0.154 0 0.308 0.001 0.462 0.003l-0.023-0h195.84c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023c0 0.001 0 0.002 0 0.003 0 17.759-14.276 32.183-31.977 32.424l-0.023 0zM905.387 695.893v0h-116.907c-15.684-95.97-97.994-168.32-197.202-168.32-110.28 0-199.68 89.4-199.68 199.68s89.4 199.68 199.68 199.68c99.208 0 181.518-72.35 197.046-167.165l0.156-1.155h117.333c17.673 0 32-14.327 32-32v0c-0.932-17.159-15.073-30.72-32.382-30.72-0.016 0-0.032 0-0.047 0l0.002-0zM591.787 864c-0.507 0.007-1.107 0.011-1.707 0.011-74.698 0-135.253-60.555-135.253-135.253s60.555-135.253 135.253-135.253c74.695 0 135.247 60.549 135.253 135.242l0 0.001c-0.231 74.008-59.679 134.055-133.434 135.252l-0.112 0.001zM314.027 760.747v0h-195.413c-0.385 0.017-0.838 0.026-1.292 0.026-17.673 0-32-14.327-32-32 0-0.309 0.004-0.617 0.013-0.925l-0.001 0.045c0.237-17.577 14.423-31.763 31.977-32l0.023-0h195.413c0.13-0.002 0.284-0.003 0.438-0.003 17.202 0 31.147 13.945 31.147 31.147 0 0.301-0.004 0.601-0.013 0.9l0.001-0.044c0.008 0.268 0.013 0.582 0.013 0.898 0 17.077-13.377 31.030-30.224 31.952l-0.082 0.004z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-4"]},"attrs":[{}],"properties":{"order":6848,"id":116,"name":"setting-4","prevSize":32,"code":60104},"setIdx":0,"setId":0,"iconIdx":456},{"icon":{"paths":["M512 949.76c-0.261 0.001-0.57 0.002-0.88 0.002-37.535 0-72.702-10.14-102.91-27.83l0.963 0.521-200.96-116.053c-62.022-36.288-103.066-102.503-103.253-178.32l-0-0.027v-232.107c0.187-75.843 41.231-142.058 102.279-177.819l0.975-0.528 200.96-116.053c29.497-17.322 64.967-27.552 102.827-27.552s73.33 10.23 103.797 28.078l-0.971-0.525 200.96 116.053c62.022 36.288 103.066 102.503 103.253 178.32l0 0.027v232.107c-0.187 75.843-41.231 142.058-102.279 177.819l-0.975 0.528-200.96 116.053c-29.357 17.169-64.638 27.307-102.287 27.307-0.19 0-0.379-0-0.568-0.001l0.029 0zM512 139.093c-0.341-0.003-0.744-0.005-1.148-0.005-25.668 0-49.708 6.974-70.327 19.131l0.648-0.353-200.96 115.2c-41.93 25.213-69.548 70.467-69.548 122.172 0 0.249 0.001 0.498 0.002 0.747l-0-0.038v232.107c-0.001 0.21-0.002 0.459-0.002 0.708 0 51.705 27.619 96.959 68.908 121.814l0.64 0.358 200.96 116.053c20.327 11.891 44.757 18.912 70.827 18.912s50.499-7.021 71.501-19.276l-0.675 0.364 200.96-116.053c41.93-25.213 69.548-70.467 69.548-122.172 0-0.249-0.001-0.498-0.002-0.747l0 0.038v-232.107c0.001-0.21 0.002-0.459 0.002-0.708 0-51.705-27.619-96.959-68.908-121.814l-0.64-0.358-200.96-116.053c-19.971-11.804-44.011-18.778-69.679-18.778-0.404 0-0.807 0.002-1.209 0.005l0.062-0z","M512 686.080c-96.142 0-174.080-77.938-174.080-174.080s77.938-174.080 174.080-174.080c96.142 0 174.080 77.938 174.080 174.080v0c0 96.142-77.938 174.080-174.080 174.080h0zM512 401.92c-60.796 0-110.080 49.284-110.080 110.080s49.284 110.080 110.080 110.080c60.796 0 110.080-49.284 110.080-110.080v0c-0.241-60.698-49.382-109.839-110.057-110.080l-0.023-0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting"]},"attrs":[{},{}],"properties":{"order":6849,"id":115,"name":"setting","prevSize":32,"code":60105},"setIdx":0,"setId":0,"iconIdx":457},{"icon":{"paths":["M514.133 938.667c-0.236 0.001-0.515 0.001-0.794 0.001-58.822 0-114.595-13.052-164.582-36.417l2.389 1.003c-11.048-5.448-18.515-16.632-18.515-29.559 0-4.74 1.004-9.246 2.811-13.317l-0.083 0.209c5.305-11.108 16.448-18.646 29.353-18.646 4.824 0 9.402 1.053 13.516 2.942l-0.202-0.083c39.956 18.634 86.746 29.506 136.075 29.506 46.729 0 91.18-9.756 131.426-27.342l-2.115 0.824c3.407-1.328 7.351-2.098 11.475-2.098 17.909 0 32.427 14.518 32.427 32.427 0 12.603-7.19 23.527-17.692 28.893l-0.183 0.085c-45.187 19.96-97.881 31.579-153.289 31.579-0.709 0-1.418-0.002-2.126-0.006l0.109 0zM872.96 544c16.236-1.687 28.787-15.297 28.787-31.838 0-1.26-0.073-2.502-0.214-3.724l0.014 0.149c-12.032-111.345-69.233-207.361-152.631-270.655l-0.969-0.705c-4.861-3.065-10.775-4.883-17.113-4.883-17.909 0-32.427 14.518-32.427 32.427 0 9.544 4.123 18.125 10.685 24.059l0.028 0.025c70.204 53.42 117.833 133.387 127.869 224.67l0.131 1.464c1.775 16.296 15.397 28.883 31.987 29.013l0.013 0zM190.293 514.987c10.511-94.872 60.354-176.364 132.609-228.897l0.938-0.65c9.877-5.683 16.42-16.178 16.42-28.201 0-17.909-14.518-32.427-32.427-32.427-8.485 0-16.21 3.259-21.989 8.594l0.022-0.020c-86.82 64.006-145.763 161.502-157.717 273.057l-0.149 1.717c-0.128 1.073-0.2 2.315-0.2 3.575 0 16.542 12.551 30.152 28.649 31.827l0.138 0.012h3.413c15.934-0.752 28.812-12.896 30.705-28.431l0.015-0.156zM667.307 209.493c0-0.126 0.001-0.275 0.001-0.424 0-86.245-69.915-156.16-156.16-156.16s-156.16 69.915-156.16 156.16c0 86.245 69.915 156.16 156.16 156.16 0.3 0 0.599-0.001 0.899-0.003l-0.046 0c85.728-0.483 155.066-69.971 155.307-155.71l0-0.023zM603.307 209.493c-0.002 50.897-41.263 92.156-92.16 92.156-50.899 0-92.16-41.261-92.16-92.16s41.261-92.16 92.16-92.16c0.3 0 0.6 0.001 0.899 0.004l-0.046-0c50.53 0.483 91.307 41.558 91.307 92.156 0 0.001-0 0.003-0 0.004l0-0zM369.067 721.493c0.009-0.634 0.015-1.383 0.015-2.133 0-86.245-69.915-156.16-156.16-156.16s-156.16 69.915-156.16 156.16c0 86.245 69.915 156.16 156.16 156.16 0.145 0 0.29-0 0.435-0.001l-0.022 0c86.061-0.243 155.733-70.065 155.733-156.159 0-0-0-0-0-0.001l-0-0zM305.067 721.493c-1.194 49.972-41.987 90.026-92.135 90.026-50.899 0-92.16-41.261-92.16-92.16s41.261-92.16 92.16-92.16c0.141 0 0.283 0 0.424 0.001l-0.022-0c50.715 0.242 91.733 41.41 91.733 92.159 0 0-0 0.001-0 0.001l0-0zM966.827 721.493c0.009-0.634 0.015-1.383 0.015-2.133 0-86.245-69.915-156.16-156.16-156.16s-156.16 69.915-156.16 156.16c0 86.24 69.907 156.152 156.144 156.16l0.001 0c86.245 0 156.16-69.915 156.16-156.16v0zM902.827 721.493c-1.194 49.972-41.987 90.027-92.135 90.027-50.899 0-92.16-41.261-92.16-92.16 0-50.89 41.247-92.146 92.134-92.16l0.001-0c50.899 0 92.16 41.261 92.16 92.16v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["share"]},"attrs":[{}],"properties":{"order":6850,"id":114,"name":"share","prevSize":32,"code":60106},"setIdx":0,"setId":0,"iconIdx":458},{"icon":{"paths":["M781.653 159.147l-195.84-89.6c-21.637-10.313-47.022-16.336-73.813-16.336s-52.177 6.023-74.875 16.789l1.062-0.453-195.84 89.6c-61.412 28.658-103.214 89.869-103.253 160.848l-0 0.005v313.6c-0.001 0.177-0.001 0.387-0.001 0.597 0 54.876 25.145 103.879 64.541 136.115l0.313 0.248 195.84 160c30.287 24.96 69.483 40.097 112.213 40.097s81.926-15.136 112.517-40.34l-0.304 0.243 195.84-160c39.709-32.485 64.854-81.488 64.854-136.363 0-0.21-0-0.419-0.001-0.629l0 0.032v-313.6c-0.039-70.984-41.842-132.196-102.166-160.397l-1.087-0.456zM820.907 633.6c-0.813 34.593-17.218 65.196-42.433 85.155l-0.233 0.178-195.84 160c-19.372 15.877-44.402 25.501-71.68 25.501s-52.308-9.623-71.88-25.66l0.2 0.159-194.56-157.867c-25.449-20.137-41.854-50.74-42.664-85.201l-0.002-0.132v-315.733c0.37-45.645 27.63-84.835 66.7-102.537l0.714-0.289 195.84-89.173c13.774-6.468 29.913-10.244 46.933-10.244s33.16 3.775 47.625 10.534l-0.692-0.29 195.84 89.6c39.134 18.283 65.829 57.188 66.133 102.36l0 0.040zM619.52 451.413l-61.867 60.587 61.867 60.587c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.857 5.802-13.919 9.387-22.818 9.387-0.078 0-0.156-0-0.234-0.001l0.012 0c-0.097 0.001-0.211 0.002-0.325 0.002-8.521 0-16.242-3.421-21.866-8.965l0.004 0.004-62.293-61.44-62.293 61.44c-5.87 5.549-13.811 8.96-22.549 8.96-0.023 0-0.045-0-0.068-0l0.004 0c-0.066 0-0.144 0.001-0.222 0.001-8.899 0-16.962-3.585-22.821-9.39l0.002 0.002c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 62.293-60.587-61.867-60.587c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.902-5.708 13.954-9.225 22.827-9.225s16.924 3.517 22.836 9.234l-0.009-0.009 61.867 63.147 62.72-61.44c5.846-8.439 15.479-13.896 26.386-13.896 17.673 0 32 14.327 32 32 0 11.668-6.245 21.877-15.574 27.468l-0.145 0.081z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-cross"]},"attrs":[{}],"properties":{"order":6851,"id":113,"name":"shield-cross","prevSize":32,"code":60107},"setIdx":0,"setId":0,"iconIdx":459},{"icon":{"paths":["M458.667 971.093h-2.133c-38.637-2.099-73.495-16.743-100.949-39.89l0.256 0.21-196.267-160c-39.718-32.641-64.854-81.769-64.854-136.769 0-0.217 0-0.435 0.001-0.652l-0 0.034v-313.6c-0-0.018-0-0.038-0-0.059 0-71.096 41.801-132.43 102.167-160.763l1.086-0.458 196.267-89.6c21.637-10.313 47.022-16.336 73.813-16.336s52.177 6.023 74.875 16.789l-1.062-0.453 195.84 89.6c61.644 28.684 103.623 90.073 103.68 161.272l0 0.008v111.787c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-111.787c-0.066-45.516-26.814-84.768-65.438-102.959l-0.695-0.294-196.267-89.173c-13.84-6.477-30.052-10.256-47.147-10.256s-33.306 3.779-47.846 10.548l0.699-0.292-195.84 89.173c-39.319 18.485-66.068 57.738-66.133 103.245l-0 0.009v313.6c0.189 35.509 16.717 67.119 42.443 87.72l0.224 0.173 196.267 160c17.535 14.447 39.741 23.814 64.055 25.578l0.371 0.022c15.586 2.325 27.404 15.617 27.404 31.668 0 16.806-12.956 30.587-29.425 31.898l-0.112 0.007zM867.84 695.893c-0.243-119.051-96.808-215.467-215.893-215.467-119.235 0-215.893 96.659-215.893 215.893s96.659 215.893 215.893 215.893l-0-0c119.287-0.243 215.893-96.999 215.893-216.32 0-0-0-0-0-0l-0-0zM803.84 695.893c0 83.888-68.005 151.893-151.893 151.893s-151.893-68.005-151.893-151.893c0-83.888 68.005-151.893 151.893-151.893v0c83.888 0 151.893 68.005 151.893 151.893v-0zM856.32 859.307c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-search"]},"attrs":[{}],"properties":{"order":6852,"id":112,"name":"shield-search","prevSize":32,"code":60108},"setIdx":0,"setId":0,"iconIdx":460},{"icon":{"paths":["M884.48 633.6c-0.188 55.149-25.258 104.405-64.565 137.153l-0.289 0.234-195.84 159.573c-30.307 24.708-69.405 39.676-112 39.676s-81.693-14.968-112.323-39.931l0.323 0.255-66.56-54.187c-6.92-6.055-11.266-14.903-11.266-24.765 0-8.155 2.971-15.616 7.89-21.359l-0.037 0.045c5.985-7.019 14.837-11.442 24.721-11.442 8.198 0 15.686 3.042 21.396 8.060l-0.036-0.031 66.56 54.187c19.336 15.772 44.286 25.327 71.467 25.327s52.13-9.555 71.672-25.49l-0.206 0.163 195.84-160c25.404-20.174 41.791-50.755 42.664-85.191l0.003-0.142v-278.187c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM906.667 170.667l-744.533 741.973c-5.699 5.321-13.376 8.588-21.815 8.588-17.673 0-32-14.327-32-32 0-8.44 3.267-16.116 8.606-21.834l-0.017 0.019 96.427-92.16-5.12-4.267c-40.8-32.381-66.88-81.785-67.413-137.298l-0.001-0.088v-312.747c-0-0.094-0-0.205-0-0.316 0-70.583 41.002-131.589 100.487-160.499l1.060-0.465 195.84-89.173c21.57-10.305 46.882-16.324 73.6-16.324s52.030 6.019 74.654 16.775l-1.054-0.451 195.84 89.173c11.098 5.39 20.61 11.213 29.491 17.834l-0.478-0.34 51.2-49.067c5.611-9.735 15.962-16.184 27.818-16.184 17.673 0 32 14.327 32 32 0 11.201-5.755 21.058-14.47 26.776l-0.121 0.075zM256 729.6l507.307-506.027c-2.552-2.256-5.516-4.124-8.751-5.47l-0.209-0.077-195.413-90.027c-13.84-6.477-30.052-10.256-47.147-10.256s-33.306 3.779-47.846 10.548l0.699-0.292-195.413 90.027c-39.33 18.261-66.117 57.414-66.133 102.825l-0 0.002v312.747c1.245 34.494 17.528 64.949 42.453 85.166l0.214 0.168z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-slash"]},"attrs":[{}],"properties":{"order":6853,"id":111,"name":"shield-slash","prevSize":32,"code":60109},"setIdx":0,"setId":0,"iconIdx":461},{"icon":{"paths":["M512 970.667c-0.042 0-0.091 0-0.14 0-42.687 0-81.837-15.142-112.373-40.347l0.3 0.24-195.84-160c-39.709-32.485-64.854-81.488-64.854-136.363 0-0.21 0-0.419 0.001-0.629l-0 0.032v-313.6c0.039-70.984 41.842-132.196 102.166-160.397l1.087-0.456 195.84-89.6c21.637-10.313 47.022-16.336 73.813-16.336s52.177 6.023 74.875 16.789l-1.062-0.453 195.84 89.6c61.412 28.658 103.214 89.869 103.253 160.848l0 0.005v313.6c0.001 0.177 0.001 0.387 0.001 0.597 0 54.876-25.145 103.879-64.541 136.115l-0.313 0.248-195.84 160c-30.236 24.965-69.386 40.107-112.073 40.107-0.049 0-0.099-0-0.148-0l0.008 0zM512 117.333c-17.069 0.129-33.191 4.049-47.608 10.958l0.675-0.291-195.84 89.173c-39.261 18.343-66.004 57.446-66.133 102.81l-0 0.017v313.6c0.813 34.593 17.218 65.196 42.433 85.155l0.233 0.178 195.84 160c19.372 15.877 44.402 25.501 71.68 25.501s52.308-9.623 71.88-25.66l-0.2 0.159 195.84-160c25.449-20.137 41.854-50.74 42.664-85.201l0.002-0.132v-313.6c-0.129-45.38-26.872-84.483-65.437-102.534l-0.696-0.293-198.4-89.173c-13.742-6.617-29.865-10.537-46.889-10.666l-0.044-0zM477.867 621.653l178.347-173.653c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0-154.88 151.893-42.667-42.667c-5.733-9.178-15.779-15.193-27.231-15.193-17.673 0-32 14.327-32 32 0 10.586 5.141 19.972 13.062 25.797l0.089 0.062 65.28 66.987c5.852 6.010 14.003 9.755 23.029 9.813l0.011 0c8.743-0.199 16.58-3.923 22.174-9.8l0.012-0.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-tick"]},"attrs":[{}],"properties":{"order":6854,"id":110,"name":"shield-tick","prevSize":32,"code":60110},"setIdx":0,"setId":0,"iconIdx":462},{"icon":{"paths":["M498.773 970.667c-0.132 0-0.289 0.001-0.446 0.001-42.588 0-81.639-15.145-112.061-40.343l0.293 0.236-195.84-160c-38.469-32.461-62.736-80.703-62.736-134.612 0-0.826 0.006-1.65 0.017-2.473l-0.001 0.125v-313.6c-0.001-0.267-0.002-0.584-0.002-0.9 0-70.195 40.846-130.849 100.066-159.493l1.056-0.461 197.547-89.6c21.57-10.305 46.882-16.324 73.6-16.324s52.030 6.019 74.654 16.775l-1.054-0.451 194.133 89.6c61.585 28.541 103.56 89.781 103.68 160.838l0 0.016v313.6c-0.003 55.057-25.134 104.243-64.55 136.717l-0.304 0.243-196.267 160c-29.967 24.958-68.868 40.107-111.308 40.107-0.168 0-0.337-0-0.505-0.001l0.026 0zM498.773 117.333c-17.217 0.178-33.476 4.091-48.066 10.966l0.706-0.299-195.413 89.173c-39.33 18.261-66.117 57.414-66.133 102.825l-0 0.002v313.6c0.813 34.593 17.218 65.196 42.433 85.155l0.233 0.178 194.133 162.133c19.309 15.845 44.266 25.451 71.467 25.451s52.158-9.605 71.665-25.608l-0.198 0.158 198.4-160c25.449-20.137 41.854-50.74 42.664-85.201l0.002-0.132v-315.733c-0.129-45.38-26.872-84.483-65.437-102.534l-0.696-0.293-198.827-89.173c-13.748-6.579-29.863-10.494-46.874-10.666l-0.060-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield"]},"attrs":[{}],"properties":{"order":6855,"id":109,"name":"shield","prevSize":32,"code":60111},"setIdx":0,"setId":0,"iconIdx":463},{"icon":{"paths":["M874.667 491.52l-32-12.8v-146.347c-0.242-83.32-67.721-150.798-151.017-151.040l-0.023-0h-42.667v-46.933c0-44.772-36.295-81.067-81.067-81.067l-0-0h-115.2c-44.772 0-81.067 36.295-81.067 81.067v-0 46.933h-42.667c-81.852 2.141-147.415 68.899-147.627 151.019l-0 0.021v146.347l-32 12.8c-48.412 19.688-81.922 66.367-81.922 120.873 0 0.256 0.001 0.511 0.002 0.766l-0-0.039c0.242 197.521 160.419 357.549 357.973 357.549 0.45 0 0.9-0.001 1.35-0.002l-0.069 0h170.667c197.37-0.242 357.304-160.176 357.547-357.523l0-0.024c0.005-0.422 0.008-0.92 0.008-1.419 0-53.86-32.721-100.078-79.368-119.86l-0.853-0.321zM437.333 134.4c-0-9.426 7.641-17.067 17.067-17.067l0-0h115.2c9.426 0 17.067 7.641 17.067 17.067v-0 46.933h-149.333zM245.333 332.373c0-47.128 38.205-85.333 85.333-85.333v0h359.253c47.128 0 85.333 38.205 85.333 85.333v0 120.747l-204.8-82.773c-18.324-7.486-39.588-11.83-61.867-11.83s-43.542 4.345-62.99 12.233l1.123-0.403-204.8 82.773zM597.333 906.667h-170.667c-162.024-0.243-293.304-131.523-293.547-293.523l-0-0.023c-0-0.050-0-0.11-0-0.17 0-28.168 17.497-52.249 42.215-61.967l0.452-0.156 300.8-121.173c11.247-4.599 24.298-7.269 37.973-7.269s26.727 2.669 38.662 7.516l-0.689-0.247 300.8 121.173c25.17 9.875 42.667 33.956 42.667 62.124 0 0.060-0 0.119-0 0.179l0-0.009c-0.222 162.19-131.753 293.584-293.973 293.584-1.65 0-3.298-0.014-4.942-0.041l0.248 0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ship"]},"attrs":[{}],"properties":{"order":6856,"id":108,"name":"ship","prevSize":32,"code":60112},"setIdx":0,"setId":0,"iconIdx":464},{"icon":{"paths":["M950.187 440.747c0-4.267 2.56-8.107 3.413-12.373 1.848-6.077 3.347-13.31 4.21-20.737l0.056-0.596v-9.813c0.509-4.862 0.8-10.504 0.8-16.213s-0.291-11.352-0.858-16.912l0.058 0.698-16.213-128c-4.647-39.384-19.977-74.51-42.977-103.227l0.31 0.4c-38.302-48.15-96.838-78.787-162.536-78.933l-0.024-0h-437.76c-106.594 0.376-194.367 80.466-206.835 183.747l-0.098 1-14.933 134.827c-0.51 4.671-0.8 10.088-0.8 15.573s0.291 10.902 0.858 16.237l-0.057-0.664v9.387c0.856 7.33 2.355 13.975 4.472 20.338l-0.205-0.711c1.044 4.93 2.221 9.074 3.638 13.106l-0.224-0.732c0 4.693 3.84 8.96 5.973 13.653s3.413 8.96 5.973 13.227v261.973c0.242 129.505 105.161 234.424 234.643 234.667l0.023 0h370.773c129.603 0 234.667-105.064 234.667-234.667v0-266.667c2.093-3.648 3.973-7.883 5.411-12.317l0.135-0.483c2.762-4.43 5.474-9.615 7.805-15.004l0.301-0.782zM736.853 116.053c45.65 0.113 86.33 21.293 112.846 54.329l0.22 0.284c15.943 19.73 26.799 44.189 30.219 70.972l0.074 0.708 16.213 128c0.307 3.133 0.482 6.773 0.482 10.453s-0.175 7.32-0.518 10.911l0.035-0.458v7.68c0.097 1.721 0.152 3.734 0.152 5.76s-0.055 4.039-0.164 6.038l0.012-0.278c0 3.413-2.133 7.253-3.84 11.093-0.587 2.129-1.315 3.971-2.211 5.712l0.077-0.165c-2.229 5.26-4.657 9.747-7.451 13.971l0.198-0.318c-3.413 4.693-6.4 9.387-9.813 13.653-19.939 22.454-48.842 36.568-81.044 36.693l-0.022 0c-0.933 0.029-2.030 0.046-3.131 0.046-55.255 0-100.736-41.846-106.481-95.576l-0.041-0.47-13.227-152.32-10.667-128zM597.333 116.053v11.947l21.76 256c0.256 2.687 0.402 5.81 0.402 8.967 0 26.194-10.045 50.043-26.492 67.903l0.064-0.070c-18.781 19.299-45.006 31.272-74.027 31.272s-55.246-11.973-74.004-31.249l-0.023-0.023c-17.034-17.996-27.508-42.355-27.508-69.159 0-2.238 0.073-4.459 0.217-6.66l-0.016 0.3 8.96-177.493 5.973-91.733zM154.027 246.613c8.012-73.547 69.659-130.311 144.615-130.56l0.025-0h72.533l-17.92 282.88c-3.46 52.947-47.193 94.598-100.681 94.72l-0.012 0h-13.227c-29.801-0.084-56.557-13.047-75.010-33.612l-0.083-0.094c-3.079-3.519-5.9-7.427-8.338-11.587l-0.195-0.36c-2.596-3.906-5.024-8.393-7.041-13.098l-0.212-0.556c-0.077-0.577-0.12-1.243-0.12-1.92s0.044-1.343 0.129-1.997l-0.008 0.077c-1.513-3.27-2.832-7.114-3.76-11.108l-0.080-0.412c-0.116-1.405-0.182-3.042-0.182-4.693s0.066-3.288 0.196-4.907l-0.014 0.213c-0.098-1.213-0.154-2.627-0.154-4.053s0.056-2.84 0.166-4.238l-0.012 0.185c-0.305-2.879-0.479-6.219-0.479-9.6s0.174-6.721 0.514-10.012l-0.034 0.412zM435.627 907.947v-85.333c0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333v0 85.333zM703.147 907.947h-34.133v-85.333c0-81.768-66.286-148.053-148.053-148.053s-148.053 66.286-148.053 148.053v85.333h-42.667c-94.257 0-170.667-76.41-170.667-170.667v0-202.667c22.688 13.143 49.858 21.021 78.843 21.333l0.091 0.001h13.227c54.303-0.277 102.322-26.929 131.938-67.791l0.329-0.476c3.992 6.252 8.209 11.691 12.868 16.714l-0.068-0.074c29.994 32.14 72.604 52.175 119.893 52.175s89.899-20.035 119.805-52.079l0.089-0.096c4.503-5.194 8.852-10.899 12.836-16.87l0.391-0.623c30.863 42.864 80.626 70.447 136.83 70.447 32.221 0 62.325-9.065 87.9-24.784l-0.73 0.417v204.373c0 94.257-76.41 170.667-170.667 170.667h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shop"]},"attrs":[{}],"properties":{"order":6857,"id":107,"name":"shop","prevSize":32,"code":60113},"setIdx":0,"setId":0,"iconIdx":465},{"icon":{"paths":["M534.613 971.093h-305.92c-100.619 0-182.187-81.568-182.187-182.187v0-373.333c0-100.619 81.568-182.187 182.187-182.187v-0h192.427c0.061-0 0.134-0 0.207-0 53.665 0 101.924 23.149 135.335 60.006l0.137 0.154 113.493 128c28.486 31.847 46.047 73.989 46.506 120.225l0.001 0.095v247.040c0 100.619-81.568 182.187-182.187 182.187h-0zM228.693 298.667c-0.002-0-0.004-0-0.007-0-64.823 0-117.456 52.187-118.179 116.838l-0.001 0.068v373.333c0 65.273 52.914 118.187 118.187 118.187l-0 0h305.92c65.273-0 118.187-52.914 118.187-118.187v0-247.040c0-0.123 0.001-0.268 0.001-0.413 0-30.27-11.504-57.853-30.379-78.616l0.085 0.095-113.067-128c-21.739-22.396-52.126-36.294-85.759-36.294-0.9 0-1.799 0.010-2.694 0.030l0.133-0.002zM977.493 609.707v-248.32c-0.125-46.79-17.746-89.441-46.662-121.777l0.155 0.177-113.493-128c-33.547-36.257-81.377-58.88-134.492-58.88-0.118 0-0.236 0-0.353 0l0.018-0h-193.28c-0.086-0-0.188-0-0.291-0-69.733 0-130.316 39.178-160.938 96.723l-0.478 0.984c-1.589 3.67-2.514 7.943-2.514 12.433 0 17.673 14.327 32 32 32 11.191 0 21.040-5.744 26.759-14.445l0.075-0.121c20.032-38.064 59.313-63.574 104.553-63.574 0.143 0 0.286 0 0.429 0.001l-0.022-0h193.707c33.912 0.786 64.183 15.738 85.238 39.146l0.095 0.108 113.493 128c18.793 20.784 30.293 48.473 30.293 78.848 0 0.030-0 0.060-0 0.090l0-0.005v247.040c-1.647 63.397-52.972 114.274-116.391 115.199l-0.089 0.001c-17.673 0-32 14.327-32 32s14.327 32 32 32v0c0.001 0 0.003 0 0.004 0 100.169 0 181.457-80.84 182.182-180.838l0-0.069z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["simcard-2"]},"attrs":[{}],"properties":{"order":6858,"id":106,"name":"simcard-2","prevSize":32,"code":60114},"setIdx":0,"setId":0,"iconIdx":466},{"icon":{"paths":["M705.707 970.667h-387.413c-122.672-0.242-222.051-99.622-222.293-222.27l-0-0.023v-472.747c0.242-122.672 99.622-222.051 222.27-222.293l0.023-0h243.627c65.754 0.256 124.751 28.967 165.356 74.449l0.191 0.218 143.787 160c35.21 39.109 56.747 91.134 56.747 148.19 0 0.102-0 0.204-0 0.306l0-0.016v312.747c-0.725 122.305-99.92 221.2-222.27 221.44l-0.023 0zM318.293 117.333c-87.423 0-158.293 70.87-158.293 158.293h0v472.747c0 87.423 70.87 158.293 158.293 158.293h387.413c87.423 0 158.293-70.87 158.293-158.293v0-312.747c0-0.010 0-0.022 0-0.034 0-40.732-15.384-77.87-40.659-105.922l0.126 0.142-143.787-159.147c-29.134-32.243-71.085-52.431-117.751-52.48l-0.009-0zM593.92 373.333h-163.84c-90.153 0.242-163.171 73.26-163.413 163.39l-0 0.023v121.173c0.242 90.153 73.26 163.171 163.39 163.413l0.023 0h163.84c90.153-0.242 163.171-73.26 163.413-163.39l0-0.023v-121.173c-0.242-90.153-73.26-163.171-163.39-163.413l-0.023-0zM693.333 536.747v25.173h-149.333v-124.587h49.92c54.904-0 99.413 44.509 99.413 99.413v0zM430.080 437.333h49.92v124.587h-149.333v-25.173c-0-54.904 44.509-99.413 99.413-99.413l0 0zM330.667 657.92v-32h149.333v131.413h-49.92c-54.904 0-99.413-44.509-99.413-99.413l0-0zM593.92 757.333h-49.92v-131.413h149.333v32c0 54.904-44.509 99.413-99.413 99.413h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["simcard"]},"attrs":[{}],"properties":{"order":6859,"id":105,"name":"simcard","prevSize":32,"code":60115},"setIdx":0,"setId":0,"iconIdx":467},{"icon":{"paths":["M499.2 970.667h-187.733c-141.548-1.446-255.766-116.412-256-258.11l-0-0.023v-187.733c0.234-141.721 114.451-256.687 255.863-258.132l0.137-0.001h187.733c142.466 0.243 257.891 115.668 258.133 258.11l0 0.023v187.733c-0.243 142.466-115.668 257.891-258.11 258.133l-0.023 0zM311.467 330.667c-107.217 0-194.133 86.916-194.133 194.133h0v187.733c0 107.217 86.916 194.133 194.133 194.133v0h187.733c107.217 0 194.133-86.916 194.133-194.133v-187.733c0-107.217-86.916-194.133-194.133-194.133v-0zM841.813 579.84c74.38-22.541 127.654-90.336 128-170.626l0-0.041v-177.92c0-98.263-79.657-177.92-177.92-177.92v0h-176.64c-81.718 0.722-150.229 56.424-170.384 131.877l-0.283 1.243c-0.659 2.433-1.038 5.225-1.038 8.107 0 17.775 14.409 32.184 32.184 32.184 14.894 0 27.424-10.117 31.096-23.853l0.051-0.225c12.975-49.448 57.269-85.333 109.944-85.333 0.048 0 0.095 0 0.143 0l177.486-0c62.819 0.241 113.679 51.101 113.92 113.897l0 0.023v177.493c-0.412 51.705-34.824 95.263-81.958 109.443l-0.816 0.211c-13.422 4.006-23.040 16.24-23.040 30.72 0 17.673 14.327 32 32 32l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["size"]},"attrs":[{}],"properties":{"order":6860,"id":104,"name":"size","prevSize":32,"code":60116},"setIdx":0,"setId":0,"iconIdx":468},{"icon":{"paths":["M404.48 962.56c-62.681 0-113.493-50.813-113.493-113.493v0-193.28c0-62.681 50.813-113.493 113.493-113.493s113.493 50.813 113.493 113.493v0 193.28c0 62.681-50.813 113.493-113.493 113.493v0zM404.48 606.293c-27.334 0-49.493 22.159-49.493 49.493v0 193.28c0 27.334 22.159 49.493 49.493 49.493s49.493-22.159 49.493-49.493v0-193.28c0-27.334-22.159-49.493-49.493-49.493v0zM622.507 485.547c-62.583-0.241-113.252-50.91-113.493-113.47l-0-0.023v-193.28c0-62.681 50.813-113.493 113.493-113.493s113.493 50.813 113.493 113.493v0 193.28c-0.241 62.583-50.91 113.252-113.47 113.493l-0.023 0zM622.507 129.28c-27.334 0-49.493 22.159-49.493 49.493v0 193.28c0 27.334 22.159 49.493 49.493 49.493s49.493-22.159 49.493-49.493v-193.28c0.011-0.381 0.017-0.83 0.017-1.28 0-27.334-22.159-49.493-49.493-49.493-0.006 0-0.012 0-0.017 0l0.001-0zM857.6 745.387h-192.853c-62.681 0-113.493-50.813-113.493-113.493s50.813-113.493 113.493-113.493v0h192.853c62.681 0 113.493 50.813 113.493 113.493s-50.813 113.493-113.493 113.493v0zM664.747 582.4c-27.334 0-49.493 22.159-49.493 49.493s22.159 49.493 49.493 49.493h192.853c27.334 0 49.493-22.159 49.493-49.493s-22.159-49.493-49.493-49.493h-0zM359.253 507.307h-192.853c-62.681 0-113.493-50.813-113.493-113.493s50.813-113.493 113.493-113.493v0h192.853c62.681 0 113.493 50.813 113.493 113.493s-50.813 113.493-113.493 113.493v0zM166.4 344.32c-27.334 0-49.493 22.159-49.493 49.493s22.159 49.493 49.493 49.493h192.853c27.334 0 49.493-22.159 49.493-49.493s-22.159-49.493-49.493-49.493h0zM438.187 250.88h-54.187c-0.448 0.007-0.978 0.011-1.508 0.011-52.028 0-94.916-39.127-100.847-89.561l-0.046-0.477c-0.197-2.332-0.309-5.046-0.309-7.787 0-54.198 43.936-98.133 98.133-98.133 1.61 0 3.21 0.039 4.801 0.115l-0.225-0.009c50.911 5.976 90.038 48.865 90.038 100.892 0 0.53-0.004 1.059-0.012 1.587l0.001-0.080v55.893c0.002 0.133 0.003 0.291 0.003 0.449 0 20.052-15.899 36.39-35.778 37.096l-0.065 0.002zM377.173 118.613c-0.238-0.006-0.519-0.009-0.801-0.009-9.123 0-17.41 3.579-23.533 9.409l0.014-0.013c-7.116 6.358-11.574 15.562-11.574 25.807 0 0.678 0.019 1.35 0.058 2.018l-0.004-0.092c3.195 18.010 18.731 31.511 37.419 31.511 1.851 0 3.671-0.132 5.451-0.388l-0.204 0.024h29.44v-29.44c0.017-0.417 0.026-0.907 0.026-1.398 0-18.484-13.357-33.849-30.946-36.968l-0.226-0.033h-5.12zM163.84 737.707c-0.111 0-0.242 0.001-0.373 0.001-53.962 0-97.707-43.745-97.707-97.707 0-3.004 0.136-5.977 0.401-8.912l-0.028 0.378c5.951-50.936 48.852-90.092 100.899-90.092 1.278 0 2.551 0.024 3.818 0.070l-0.183-0.005h54.187c20.501 0 37.12 16.619 37.12 37.12h-0v56.32c0.010 0.522 0.015 1.138 0.015 1.756 0 52.397-39.852 95.486-90.898 100.61l-0.424 0.034zM128 636.587c-0.092 0.938-0.144 2.028-0.144 3.131 0 18.851 15.282 34.133 34.133 34.133 1.102 0 2.192-0.052 3.268-0.154l-0.137 0.011c17.847-3.335 31.175-18.791 31.175-37.36 0-0.516-0.010-1.029-0.031-1.54l0.002 0.073v-29.44h-25.6c-0.438-0.018-0.951-0.028-1.467-0.028-18.569 0-34.025 13.328-37.323 30.94l-0.037 0.235zM648.107 969.387c-16.63-0.025-32.335-3.962-46.251-10.938l0.598 0.272c-31.37-15.99-52.48-48.052-52.48-85.044 0-0.102 0-0.203 0-0.305l-0 0.016v-62.72c0-20.501 16.619-37.12 37.12-37.12v0h56.32c0.448-0.007 0.978-0.011 1.508-0.011 52.028 0 94.916 39.127 100.847 89.561l0.046 0.477c0.196 2.331 0.308 5.044 0.308 7.783 0 33.669-16.883 63.395-42.644 81.175l-0.33 0.215c-15.016 10.094-33.418 16.253-53.235 16.638l-0.099 0.002zM630.187 901.12c5.279 3.298 11.691 5.253 18.56 5.253s13.281-1.956 18.71-5.34l-0.15 0.087c9.129-6.312 15.034-16.724 15.034-28.515 0-0.926-0.036-1.844-0.108-2.751l0.008 0.12c-3.335-17.847-18.791-31.175-37.36-31.175-0.516 0-1.029 0.010-1.54 0.031l0.073-0.002h-29.44v35.413c-0.010 0.296-0.016 0.644-0.016 0.993 0 11.804 6.477 22.095 16.071 27.512l0.158 0.082zM857.6 484.693h-54.187c-20.501-0-37.12-16.619-37.12-37.12l0 0v-56.32c-0.011-0.562-0.018-1.224-0.018-1.888 0-51.945 39.168-94.742 89.581-100.469l0.464-0.043c2.258-0.184 4.888-0.289 7.542-0.289 54.433 0 98.56 44.127 98.56 98.56 0 2.654-0.105 5.284-0.311 7.886l0.022-0.344c-5.973 50.914-48.863 90.045-100.893 90.045-0.68 0-1.358-0.007-2.035-0.020l0.101 0.002zM828.587 420.693h29.013c0.544 0.028 1.181 0.044 1.822 0.044 18.491 0 33.86-13.367 36.972-30.965l0.033-0.226c0.106-0.989 0.166-2.136 0.166-3.298 0-9.248-3.821-17.604-9.971-23.574l-0.008-0.008c-6.463-6.358-15.337-10.283-25.127-10.283-0.617 0-1.23 0.016-1.839 0.046l0.085-0.003c-17.87 3.521-31.163 19.064-31.163 37.712 0 0.392 0.006 0.783 0.018 1.172l-0.001-0.057z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slack"]},"attrs":[{}],"properties":{"order":6861,"id":103,"name":"slack","prevSize":32,"code":60117},"setIdx":0,"setId":0,"iconIdx":469},{"icon":{"paths":["M844.373 195.413h-46.507c-7.87-80.053-74.842-142.088-156.302-142.088-0.55 0-1.099 0.003-1.648 0.008l0.084-0.001h-256c-0.35-0.003-0.763-0.004-1.177-0.004-81.544 0-148.609 61.994-156.635 141.421l-0.054 0.663h-46.507c-70.692 0-128 57.308-128 128v0 380.587c0 70.692 57.308 128 128 128v0h46.507c9.696 78.501 75.98 138.674 156.318 138.674 0.545 0 1.089-0.003 1.632-0.008l-0.083 0.001h256c81.398-0.076 148.291-62.079 156.108-141.431l0.052-0.649h46.507c70.692 0 128-57.308 128-128v0-378.88c-0.948-69.365-56.928-125.345-126.203-126.292l-0.090-0.001zM119.040 702.293v-380.587c0.217-33.722 27.013-61.116 60.479-62.29l0.108-0.003h42.667v505.173h-42.667c-34.307-0.24-62.053-27.987-62.293-62.27l-0-0.023zM640 906.667h-256c-51.744-0.241-93.626-42.123-93.867-93.844l-0-0.023v-599.467c-0.010-0.508-0.015-1.107-0.015-1.708 0-51.932 41.983-94.059 93.86-94.292l0.022-0h256c0.385-0.006 0.84-0.009 1.296-0.009 52.077 0 94.293 42.217 94.293 94.293 0 0.603-0.006 1.205-0.017 1.806l0.001-0.090v601.6c-1.423 50.968-43.079 91.742-94.259 91.742-0.462 0-0.924-0.003-1.384-0.010l0.070 0.001zM904.96 702.293c-0.24 34.307-27.987 62.053-62.27 62.293l-0.023 0h-43.093v-505.173h44.8c34.307 0.24 62.053 27.987 62.293 62.27l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-horizontal-2"]},"attrs":[{}],"properties":{"order":6862,"id":102,"name":"slider-horizontal-2","prevSize":32,"code":60118},"setIdx":0,"setId":0,"iconIdx":470},{"icon":{"paths":["M701.013 938.667h-378.027c-87.561-0.242-158.478-71.159-158.72-158.697l-0-0.023v-535.893c0.242-87.561 71.159-158.478 158.697-158.72l0.023-0h378.027c87.561 0.242 158.478 71.159 158.72 158.697l0 0.023v535.893c-0.242 87.561-71.159 158.478-158.697 158.72l-0.023 0zM322.987 149.333c-52.215 0.241-94.479 42.505-94.72 94.697l-0 0.023v535.893c0.241 52.215 42.505 94.479 94.697 94.72l0.023 0h378.027c52.215-0.241 94.479-42.505 94.72-94.697l0-0.023v-535.893c-0.241-52.215-42.505-94.479-94.697-94.72l-0.023-0zM117.333 799.573v-575.147c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 575.147c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM970.667 799.573v-575.147c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 575.147c0 17.673 14.327 32 32 32s32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-horizontal"]},"attrs":[{}],"properties":{"order":6863,"id":101,"name":"slider-horizontal","prevSize":32,"code":60119},"setIdx":0,"setId":0,"iconIdx":471},{"icon":{"paths":["M779.947 859.733h-535.893c-87.561-0.242-158.478-71.159-158.72-158.697l-0-0.023v-378.027c0.242-87.561 71.159-158.478 158.697-158.72l0.023-0h535.893c87.561 0.242 158.478 71.159 158.72 158.697l0 0.023v378.027c-0.242 87.561-71.159 158.478-158.697 158.72l-0.023 0zM244.053 228.267c-52.215 0.241-94.479 42.505-94.72 94.697l-0 0.023v378.027c0.241 52.215 42.505 94.479 94.697 94.72l0.023 0h535.893c52.215-0.241 94.479-42.505 94.72-94.697l0-0.023v-378.027c-0.241-52.215-42.505-94.479-94.697-94.72l-0.023-0zM831.573 85.333c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-575.147c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h575.147c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM831.573 938.667c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-575.147c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h575.147c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-vertical-2"]},"attrs":[{}],"properties":{"order":6864,"id":100,"name":"slider-vertical-2","prevSize":32,"code":60120},"setIdx":0,"setId":0,"iconIdx":472},{"icon":{"paths":["M828.587 226.133v-46.507c0-70.692-57.308-128-128-128v0h-378.88c-70.692 0-128 57.308-128 128v0 46.507c-79.263 8.69-140.383 75.272-140.383 156.13 0 0.611 0.003 1.22 0.010 1.829l-0.001-0.093v256c-0.005 0.465-0.008 1.014-0.008 1.564 0 81.46 62.034 148.432 141.439 156.251l0.649 0.052v46.507c0 70.692 57.308 128 128 128v0h380.587c70.692 0 128-57.308 128-128v0-46.507c78.467-9.493 138.678-75.684 138.678-155.939 0-0.678-0.004-1.354-0.013-2.030l0.001 0.103v-256c0.005-0.465 0.008-1.014 0.008-1.564 0-81.46-62.034-148.432-141.439-156.251l-0.649-0.052zM259.413 179.627c0.24-34.307 27.987-62.053 62.27-62.293l0.023-0h380.587c34.307 0.24 62.053 27.987 62.293 62.27l0 0.023v42.667h-505.173zM764.587 844.373c-0.24 34.307-27.987 62.053-62.27 62.293l-0.023 0h-380.587c-34.307-0.24-62.053-27.987-62.293-62.27l-0-0.023v-44.8h505.173zM906.667 640c-0.241 51.744-42.123 93.626-93.844 93.867l-0.023 0h-599.467c-0.508 0.010-1.107 0.015-1.708 0.015-51.932 0-94.059-41.983-94.292-93.86l-0-0.022v-256c-0.006-0.385-0.009-0.84-0.009-1.296 0-52.077 42.217-94.293 94.293-94.293 0.603 0 1.205 0.006 1.806 0.017l-0.090-0.001h601.6c50.968 1.423 91.742 43.079 91.742 94.259 0 0.462-0.003 0.924-0.010 1.384l0.001-0.070z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-vertical"]},"attrs":[{}],"properties":{"order":6865,"id":99,"name":"slider-vertical","prevSize":32,"code":60121},"setIdx":0,"setId":0,"iconIdx":473},{"icon":{"paths":["M85.333 853.333c-17.673 0-32-14.327-32-32v0-619.947c0-17.673 14.327-32 32-32s32 14.327 32 32v0 621.227c-0.706 17.114-14.751 30.72-31.974 30.72-0.009 0-0.018-0-0.027-0l0.001 0zM970.667 821.333v-619.947c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 621.227c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM849.493 270.933v482.987c-0.099 56.748-22.34 108.282-58.542 146.441l0.089-0.094c-1.848 2.544-3.667 4.769-5.601 6.887l0.055-0.061-6.4 5.547c-38.566 35.727-90.285 57.737-147.142 58.026l-0.058 0h-239.787c-56.915-0.289-108.634-22.3-147.342-58.157l0.142 0.13-6.4-5.547c-1.879-2.057-3.698-4.282-5.392-6.605l-0.154-0.222c-36.113-38.065-58.354-89.599-58.453-146.327l-0-0.020v-482.987c0.242-120.080 97.52-217.358 217.577-217.6l0.023-0h239.787c120.080 0.242 217.358 97.52 217.6 217.577l0 0.023zM631.040 906.667c40.608-0.605 77.333-16.745 104.596-42.726l-0.063 0.059 4.693-3.84 3.84-4.693c26.002-26.994 42.174-63.615 42.666-104.011l0.001-0.096v-49.92h-548.267v51.627c0.492 40.491 16.664 77.113 42.712 104.154l-0.046-0.048 3.84 4.693 4.693 3.84c27.2 25.922 63.925 42.062 104.415 42.665l0.119 0.001zM785.493 637.44v-366.507c0-84.831-68.769-153.6-153.6-153.6h-239.787c-84.831 0-153.6 68.769-153.6 153.6v0 366.507z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider"]},"attrs":[{}],"properties":{"order":6866,"id":98,"name":"slider","prevSize":32,"code":60122},"setIdx":0,"setId":0,"iconIdx":474},{"icon":{"paths":["M756.907 906.667h-489.813c-117.821 0-213.333-95.513-213.333-213.333v0-362.24c0-117.821 95.513-213.333 213.333-213.333v0h489.813c117.821 0 213.333 95.513 213.333 213.333v0 361.813c0 0.127 0 0.277 0 0.427 0 117.821-95.513 213.333-213.333 213.333-0 0-0-0-0-0l-0-0zM267.093 181.333c-82.71 0-149.76 67.050-149.76 149.76v0 361.813c0 82.71 67.050 149.76 149.76 149.76v0h489.813c82.71 0 149.76-67.050 149.76-149.76v0-361.813c0-82.71-67.050-149.76-149.76-149.76v0zM605.44 520.107l140.373-119.040c6.824-6.049 11.104-14.836 11.104-24.623 0-7.83-2.739-15.021-7.312-20.665l0.048 0.062c-5.972-6.772-14.669-11.021-24.358-11.021-7.971 0-15.271 2.876-20.917 7.647l0.048-0.040-140.373 119.040c-14.075 11.908-32.432 19.147-52.48 19.147s-38.405-7.239-52.6-19.246l0.12 0.099-144.213-119.467c-5.676-4.956-13.152-7.978-21.333-7.978-17.956 0-32.511 14.556-32.511 32.511 0 9.774 4.313 18.541 11.14 24.5l0.038 0.033 145.92 119.893c25.030 21.475 57.815 34.548 93.653 34.548s68.624-13.073 93.847-34.71l-0.194 0.162z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sms"]},"attrs":[{}],"properties":{"order":6867,"id":97,"name":"sms","prevSize":32,"code":60123},"setIdx":0,"setId":0,"iconIdx":475},{"icon":{"paths":["M512 776.107c-0.479 0.006-1.045 0.009-1.612 0.009-31.298 0-60.322-9.74-84.205-26.354l0.484 0.319c-14.614-10.499-32.742-16.976-52.356-17.491l-0.124-0.003h-5.12c-1.079 0.056-2.343 0.089-3.614 0.089-16.093 0-30.983-5.15-43.111-13.892l0.218 0.15c-6.398-5.763-10.855-13.57-12.342-22.385l-0.032-0.228-11.52-4.267-17.493-5.973c-11.093-4.693-33.707-13.227-34.987-37.973s24.747-39.68 37.12-45.653c17.173-8.872 31.456-21.108 42.434-35.938l0.232-0.329 6.827-8.107c5.852-6.894 10.277-15.194 12.701-24.309l0.099-0.438-9.387-5.547-11.52-7.68c-17.482-9.6-30.335-25.798-35.305-45.156l-0.108-0.497c-0.473-2.456-0.744-5.28-0.744-8.168 0-10.852 3.822-20.812 10.194-28.606l-0.064 0.081c8.989-11.116 22.626-18.165 37.909-18.165 5.836 0 11.431 1.028 16.616 2.912l-0.338-0.107v-25.173c0-82.475 66.859-149.333 149.333-149.333v0h18.773c82.291 0.243 148.907 67.008 148.907 149.333 0 0-0 0-0 0.001l-0 0v24.747c3.905-1.007 8.389-1.584 13.007-1.584 11.035 0 21.299 3.298 29.861 8.963l-0.202-0.125c12.451 8.747 20.488 23.046 20.488 39.222 0 0.311-0.003 0.621-0.009 0.931l0.001-0.046c0 31.147-30.72 49.92-53.76 63.573v0l7.68 16.64c15.266 24.607 37.116 43.848 63.099 55.531l0.901 0.362h3.84c15.27 6.722 25.738 21.721 25.738 39.164 0 2.442-0.205 4.837-0.599 7.167l0.035-0.251c-2.56 15.36-15.787 34.56-60.16 42.667h-5.12c-5.245 20.872-23.845 36.081-45.997 36.081-1.682 0-3.344-0.088-4.98-0.259l0.204 0.017c-1.526-0.074-3.315-0.117-5.113-0.117-25.055 0-48.192 8.211-66.867 22.090l0.3-0.213c-22.611 15.024-50.331 24.066-80.148 24.32l-0.066 0zM370.347 668.16h6.827c33.058 1.054 63.383 11.924 88.383 29.772l-0.49-0.332c13.075 8.557 29.089 13.649 46.293 13.649s33.219-5.091 46.62-13.849l-0.327 0.2c26.977-19.211 60.528-30.829 96.775-31.146l0.078-0.001c5.7-12.127 15.614-21.486 27.811-26.331l0.349-0.122c-22.618-16.124-40.797-37.033-53.312-61.336l-0.448-0.957c-14.080-30.293-28.587-61.44 0-85.333h-3.84c-10.689-7.849-17.55-20.369-17.55-34.491 0-0.775 0.021-1.545 0.061-2.309l-0.005 0.107v-58.453c0-47.128-38.205-85.333-85.333-85.333v0h-18.773c-47.128 0-85.333 38.205-85.333 85.333v0 81.067l-15.787 12.373-3.84 2.133c8.797 7.755 14.36 19 14.506 31.548l0 0.026c-2.027 29.195-13.3 55.425-30.877 76.136l0.157-0.189-6.827 7.68c-10.052 12.037-21.258 22.566-33.606 31.631l-0.527 0.369c6.191 2.593 11.533 5.742 16.373 9.506l-0.16-0.119c5.65 5.005 10.034 11.311 12.696 18.455l0.104 0.318zM512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["snapchat"]},"attrs":[{}],"properties":{"order":6868,"id":96,"name":"snapchat","prevSize":32,"code":60124},"setIdx":0,"setId":0,"iconIdx":476},{"icon":{"paths":["M682.667 799.573h-341.333c-64.013-0.723-115.627-52.784-115.627-116.9 0-0.002 0-0.005 0-0.007l-0 0v-341.333c-0-0.002-0-0.005-0-0.007 0-64.116 51.614-116.176 115.558-116.899l0.068-0.001h256c0.127-0 0.277-0.001 0.427-0.001 64.566 0 116.907 52.341 116.907 116.907 0 0-0 0.001-0 0.001l0-0v81.92c0.232 9.095 7.545 16.408 16.618 16.64l0.022 0c37.703 0 68.267 30.564 68.267 68.267v0 174.507c0 64.566-52.341 116.907-116.907 116.907v0zM341.333 287.573c-28.9 0.715-52.055 24.312-52.055 53.318 0 0.155 0.001 0.311 0.002 0.466l-0-0.024v341.333c0.229 28.829 23.297 52.195 51.987 52.905l0.066 0.001h341.333c0.001 0 0.001 0 0.002 0 29.305 0 53.090-23.636 53.331-52.884l0-0.023v-174.507c0-2.592-2.101-4.693-4.693-4.693v0c-44.301 0-80.213-35.913-80.213-80.213l-0 0v-81.92c0-0.001 0-0.001 0-0.002 0-29.455-23.878-53.333-53.333-53.333-0.15 0-0.3 0.001-0.45 0.002l0.023-0zM422.4 394.24h89.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-88.747c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM593.067 628.48h-166.4c-1.107 0.136-2.389 0.213-3.689 0.213-17.673 0-32-14.327-32-32s14.327-32 32-32c1.3 0 2.582 0.078 3.841 0.228l-0.152-0.015h167.253c1.107-0.136 2.389-0.213 3.689-0.213 17.673 0 32 14.327 32 32s-14.327 32-32 32c-1.3 0-2.582-0.078-3.841-0.228l0.152 0.015zM341.333 971.093c-157.151-0.481-284.474-127.504-285.44-284.495l-0-0.092-2.56-345.173c-0.001-0.256-0.001-0.559-0.001-0.861 0-157.13 126.774-284.651 283.62-285.858l0.115-0.001h346.027c157.151 0.481 284.474 127.504 285.44 284.495l0 0.092v343.893c0.002 0.383 0.003 0.837 0.003 1.291 0 157.216-126.724 284.835-283.599 286.281l-0.137 0.001-343.467 0.427zM685.653 117.76v0h-346.027c-0.129-0-0.281-0-0.433-0-122.534 0-221.867 99.333-221.867 221.867 0 0.6 0.002 1.2 0.007 1.799l-0.001-0.092v344.32c0.481 122.405 99.82 221.447 222.292 221.447 0.601 0 1.201-0.002 1.801-0.007l345.934-2.133c121.931-0.484 220.588-99.44 220.588-221.438 0-0.301-0.001-0.601-0.002-0.902l0 0.047v-344.32c-0.485-121.93-99.44-220.587-221.438-220.587-0.001 0-0.001 0-0.002 0l-0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["social-media"]},"attrs":[{}],"properties":{"order":6869,"id":95,"name":"social-media","prevSize":32,"code":60125},"setIdx":0,"setId":0,"iconIdx":477},{"icon":{"paths":["M332.8 1019.733c-0.36 0.004-0.785 0.006-1.21 0.006-32.879 0-62.634-13.378-84.118-34.987l-0.006-0.006-29.867-29.867c-22.136-21.701-35.857-51.915-35.857-85.333s13.722-63.632 35.838-85.314l0.020-0.019 234.667-234.667c10.057-10.041 16.278-23.92 16.278-39.253s-6.221-29.213-16.278-39.253l-0.001-0.001-234.667-234.667c-22.136-21.701-35.857-51.915-35.857-85.333s13.722-63.632 35.838-85.314l0.020-0.019 29.867-29.867c21.75-22.030 51.948-35.676 85.333-35.676s63.583 13.645 85.321 35.663l0.013 0.013 298.667 298.667 88.747 92.16c22.136 21.701 35.857 51.915 35.857 85.333s-13.722 63.632-35.838 85.314l-0.020 0.019-388.267 388.267c-21.403 21.106-50.812 34.14-83.266 34.14-0.427 0-0.853-0.002-1.278-0.007l0.065 0.001zM332.8 68.267c-15.448 0.171-29.343 6.681-39.233 17.045l-0.020 0.022-29.867 29.867c-10.057 10.041-16.278 23.92-16.278 39.253s6.221 29.213 16.278 39.253l0.001 0.001 234.667 234.667c22.136 21.701 35.857 51.915 35.857 85.333s-13.722 63.632-35.838 85.314l-0.020 0.019-234.667 234.667c-10.057 10.041-16.278 23.92-16.278 39.253s6.221 29.213 16.278 39.253l0.001 0.001 29.867 29.867c10.216 9.663 24.041 15.605 39.253 15.605s29.037-5.941 39.28-15.63l-0.027 0.025 388.267-388.267c10.057-10.041 16.278-23.92 16.278-39.253s-6.221-29.213-16.278-39.253l-0.001-0.001-388.267-389.973c-9.911-10.386-23.805-16.895-39.222-17.066l-0.032-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["soft-2"]},"attrs":[{}],"properties":{"order":6870,"id":94,"name":"soft-2","prevSize":32,"code":60126},"setIdx":0,"setId":0,"iconIdx":478},{"icon":{"paths":["M785.493 53.333h-546.987c-102.171 0.242-184.931 83.003-185.173 185.15l-0 0.023v546.987c0.242 102.171 83.003 184.931 185.15 185.173l0.023 0h546.987c102.171-0.242 184.931-83.003 185.173-185.15l0-0.023v-546.987c-0.242-102.171-83.003-184.931-185.15-185.173l-0.023-0zM544 906.667v-495.36c-0-0.001-0-0.003-0-0.005 0-10.454 8.355-18.956 18.751-19.195l0.022-0h55.893c10.419 0.239 18.773 8.741 18.773 19.195 0 0.002-0 0.003-0 0.005l0-0v495.36zM906.667 785.493c-0 66.922-54.251 121.173-121.173 121.173l0 0h-85.333v-495.36c0.001-0.13 0.001-0.283 0.001-0.437 0-45.265-36.333-82.043-81.427-82.763l-0.068-0.001h-55.893c-0.012-0-0.026-0-0.040-0-45.714 0-82.773 37.059-82.773 82.773 0 0.9 0.014 1.797 0.043 2.69l-0.003-0.13v493.227h-241.493c-66.922-0-121.173-54.251-121.173-121.173v0-546.987c0-66.922 54.251-121.173 121.173-121.173v0h546.987c66.922 0 121.173 54.251 121.173 121.173h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["soft-3"]},"attrs":[{}],"properties":{"order":6871,"id":93,"name":"soft-3","prevSize":32,"code":60127},"setIdx":0,"setId":0,"iconIdx":479},{"icon":{"paths":["M384 714.667c-0.359 0.002-0.783 0.004-1.207 0.004-111.223 0-201.387-90.164-201.387-201.387s90.164-201.387 201.387-201.387c40.739 0 78.652 12.097 110.345 32.894l-0.764-0.471c5.396 3.92 8.864 10.21 8.864 17.31 0 11.782-9.551 21.333-21.333 21.333-3.888 0-7.534-1.040-10.673-2.858l0.103 0.055c-24.055-15.521-53.441-24.746-84.982-24.746-87.423 0-158.293 70.87-158.293 158.293 0 87.3 70.67 158.093 157.923 158.293l0.019 0c26.864-0.047 52.133-6.833 74.22-18.758l-0.833 0.411c2.906-1.565 6.359-2.485 10.027-2.485 11.858 0 21.472 9.613 21.472 21.472 0 8.19-4.586 15.31-11.33 18.93l-0.115 0.056c-27.11 14.436-59.271 22.95-93.412 23.040l-0.028 0zM384 443.733c-38.636 0.012-69.953 31.335-69.953 69.973 0 38.645 31.328 69.973 69.973 69.973s69.973-31.328 69.973-69.973c0-0.6-0.008-1.198-0.023-1.795l0.002 0.088c-0.718-37.856-31.575-68.268-69.535-68.268-0.154 0-0.308 0.001-0.462 0.002l0.024-0zM642.987 410.027c-3.94-5.048-10.025-8.263-16.861-8.263-4.918 0-9.447 1.664-13.055 4.46l0.049-0.036-32.853 25.6v-8.533c0-11.782-9.551-21.333-21.333-21.333v0c-11.782 0-21.333 9.551-21.333 21.333v0 190.293c0.234 11.687 9.647 21.099 21.311 21.333l0.022 0c11.782 0 21.333-9.551 21.333-21.333v0-128l59.733-45.653c4.743-3.941 7.74-9.842 7.74-16.442 0-5.105-1.793-9.792-4.784-13.464l0.031 0.039zM844.373 538.027h-133.547c1.632 30.264 26.57 54.187 57.095 54.187 0.027 0 0.055-0 0.082-0l-0.004 0h61.013c11.782 0 21.333 9.551 21.333 21.333v0c0 11.782-9.551 21.333-21.333 21.333v0h-61.013c-55.985-2.211-100.534-48.131-100.534-104.457 0-4.237 0.252-8.415 0.742-12.519l-0.048 0.496c-0.17-2.284-0.267-4.948-0.267-7.635 0-57.114 43.836-103.99 99.699-108.817l0.408-0.028c56.271 4.856 100.107 51.731 100.107 108.845 0 2.687-0.097 5.35-0.288 7.988l0.021-0.354c0 0.032 0 0.069 0 0.107 0 11.782-9.551 21.333-21.333 21.333-0.751 0-1.494-0.039-2.225-0.115l0.092 0.008zM820.48 495.36c-4.428-26.637-25.605-47.234-52.17-50.74l-0.31-0.033c-28.184 2.95-50.536 24.574-54.573 52.147l-0.040 0.333zM968.96 510.293c-0.97-251.637-205.185-455.253-456.957-455.253-252.372 0-456.96 204.588-456.96 456.96 0 252.371 204.586 456.958 456.957 456.96l0 0c252.274-0.243 456.717-204.686 456.96-456.937l0-0.023zM904.96 510.293c0.002 0.507 0.004 1.107 0.004 1.707 0 217.026-175.934 392.96-392.96 392.96s-392.96-175.934-392.96-392.96c0-217.025 175.932-392.958 392.956-392.96l-0 0c216.928 0.243 392.717 176.032 392.96 392.937l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["soft"]},"attrs":[{}],"properties":{"order":6872,"id":92,"name":"soft","prevSize":32,"code":60128},"setIdx":0,"setId":0,"iconIdx":480},{"icon":{"paths":["M869.12 775.68c-0.107 0.001-0.234 0.002-0.361 0.002-9.103 0-17.241-4.131-22.641-10.621l-0.039-0.048c-4.595-5.282-7.397-12.232-7.397-19.835 0-9.092 4.006-17.249 10.348-22.802l0.035-0.030c37.512-33.518 61.013-82.038 61.013-136.048 0-0.021-0-0.041-0-0.062l0 0.003v-287.573c0.001-0.255 0.002-0.556 0.002-0.858 0-99.463-80.268-180.178-179.56-180.902l-0.069-0h-285.44c-0.59-0.007-1.286-0.011-1.983-0.011-46.46 0-88.711 18.024-120.141 47.461l0.097-0.090c-5.425 5.534-12.979 8.964-21.333 8.964s-15.908-3.43-21.329-8.959l-0.005-0.005c-5.236-5.559-8.453-13.071-8.453-21.333s3.217-15.774 8.468-21.349l-0.015 0.016c42.404-40.89 100.175-66.093 163.832-66.133l285.448-0c133.294 0.726 241.068 108.948 241.068 242.343 0 0.301-0.001 0.602-0.002 0.904l0-0.047v289.28c-0.601 71.508-31.862 135.596-81.262 179.85l-0.231 0.204c-5.339 4.68-12.348 7.57-20.030 7.68l-0.023 0zM810.667 741.547c0.002 0.382 0.004 0.834 0.004 1.286 0 124.762-100.657 226.015-225.192 226.98l-0.092 0.001h-306.773c-124.627-0.965-225.284-102.218-225.284-226.98 0-0.452 0.001-0.904 0.004-1.356l-0 0.070v-296.107c-0.002-0.382-0.004-0.834-0.004-1.286 0-124.762 100.657-226.015 225.192-226.98l0.092-0.001h224.427c1.154-0.191 2.484-0.3 3.84-0.3s2.686 0.109 3.982 0.319l-0.142-0.019h2.987c3.257 1.692 6.061 3.68 8.558 5.996l-0.025-0.022 277.76 281.173c5.228 5.558 8.44 13.064 8.44 21.32 0 2.425-0.277 4.785-0.801 7.050l0.041-0.21c0.093 0.768 0.145 1.658 0.145 2.56s-0.053 1.792-0.156 2.666l0.010-0.106zM531.2 413.867c0 47.128 38.205 85.333 85.333 85.333v0h90.453l-175.787-177.067zM749.227 741.547v-181.76h-134.4c-0.127 0-0.278 0.001-0.429 0.001-80.118 0-145.067-64.949-145.067-145.067 0-0.3 0.001-0.6 0.003-0.9l-0 0.046v-135.253h-190.72c-91.113 0.724-164.696 74.753-164.696 165.968 0 0.302 0.001 0.603 0.002 0.905l-0-0.047v296.107c-0.001 0.255-0.002 0.556-0.002 0.858 0 91.215 73.582 165.245 164.627 165.968l0.069 0h305.92c91.113-0.724 164.696-74.753 164.696-165.968 0-0.302-0.001-0.603-0.002-0.905l0 0.047z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["some-files"]},"attrs":[{}],"properties":{"order":6873,"id":91,"name":"some-files","prevSize":32,"code":60129},"setIdx":0,"setId":0,"iconIdx":481},{"icon":{"paths":["M684.8 970.667h-343.467c-157.782-0.242-285.624-128.084-285.867-285.843l-0-0.024v-343.467c-0.003-0.507-0.005-1.107-0.005-1.707 0-157.967 127.938-286.053 285.849-286.293l0.023-0h345.6c157.013 1.446 283.738 129.065 283.738 286.282 0 0.604-0.002 1.208-0.006 1.811l0-0.093v345.6c-1.447 156.865-128.83 283.498-285.844 283.733l-0.023 0zM341.333 117.333c-0.637-0.007-1.39-0.010-2.144-0.010-122.534 0-221.867 99.333-221.867 221.867 0 0.754 0.004 1.507 0.011 2.259l-0.001-0.115v345.6c1.201 121.617 100.069 219.744 221.857 219.744 0.754 0 1.507-0.004 2.259-0.011l-0.115 0.001h345.6c122.436-0.242 221.624-99.431 221.867-221.844l0-0.023v-343.467c-0.242-122.436-99.431-221.624-221.844-221.867l-0.023-0zM796.587 337.92c0-17.673-14.327-32-32-32v0h-505.173c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h505.173c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM711.253 519.253c0-17.673-14.327-32-32-32v0h-334.507c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h334.507c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM592.213 700.587c0-17.673-14.327-32-32-32v0h-96.427c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h96.427c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sort"]},"attrs":[{}],"properties":{"order":6874,"id":90,"name":"sort","prevSize":32,"code":60130},"setIdx":0,"setId":0,"iconIdx":482},{"icon":{"paths":["M670.293 970.667h-316.587c-97.791 0-177.067-79.275-177.067-177.067h-0v-563.2c0-97.791 79.275-177.067 177.067-177.067h316.587c97.791 0 177.067 79.275 177.067 177.067v0 563.2c0 97.791-79.275 177.067-177.067 177.067v0zM353.707 117.333c-62.445 0-113.067 50.622-113.067 113.067h0v563.2c-0 62.445 50.622 113.067 113.067 113.067v0h316.587c62.445 0 113.067-50.622 113.067-113.067v0-563.2c0-62.445-50.622-113.067-113.067-113.067v0zM512 268.8c-32.282 0.001-58.452 26.171-58.452 58.453s26.17 58.453 58.453 58.453c32.283 0 58.453-26.17 58.453-58.453 0-0.15-0.001-0.3-0.002-0.45l0 0.023c0-0.001 0-0.001 0-0.002 0-32.047-25.979-58.027-58.027-58.027-0.15 0-0.3 0.001-0.45 0.002l0.023-0zM512 797.867c-85.774 0-155.307-69.533-155.307-155.307s69.533-155.307 155.307-155.307c85.774 0 155.307 69.533 155.307 155.307v0c-0.242 85.676-69.631 155.065-155.284 155.307l-0.023 0zM512 551.253c-50.427 0-91.307 40.879-91.307 91.307s40.879 91.307 91.307 91.307c50.427 0 91.307-40.879 91.307-91.307v0c0-50.427-40.879-91.307-91.307-91.307v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["speaker"]},"attrs":[{}],"properties":{"order":6875,"id":89,"name":"speaker","prevSize":32,"code":60131},"setIdx":0,"setId":0,"iconIdx":483},{"icon":{"paths":["M738.56 471.893c-0.068 0.001-0.147 0.001-0.227 0.001-7.577 0-14.514-2.743-19.87-7.291l0.044 0.037c-186.453-151.467-426.667-53.76-429.653-52.48-3.655 1.567-7.908 2.478-12.373 2.478-17.746 0-32.131-14.386-32.131-32.131 0-13.28 8.056-24.678 19.548-29.574l0.21-0.080c11.093-4.693 278.187-113.92 494.933 62.293 7.162 5.913 11.692 14.793 11.692 24.73 0 7.821-2.806 14.987-7.466 20.546l0.041-0.050c-5.756 7.056-14.45 11.525-24.189 11.525-0.196 0-0.392-0.002-0.587-0.005l0.029 0zM709.12 568.747c2.798-4.695 4.453-10.354 4.453-16.4 0-10.765-5.246-20.305-13.321-26.203l-0.092-0.064c-62.085-44.965-139.771-71.926-223.753-71.926-53.046 0-103.579 10.756-149.539 30.206l2.519-0.947c-10.6 5.361-17.741 16.171-17.741 28.648 0 5.102 1.194 9.925 3.318 14.206l-0.084-0.186c5.218 10.669 15.992 17.887 28.453 17.887 5.184 0 10.076-1.249 14.392-3.463l-0.178 0.083c35.374-14.604 76.447-23.084 119.501-23.084 70.493 0 135.677 22.733 188.619 61.269l-0.92-0.638c4.961 3.17 11 5.071 17.48 5.12l0.013 0c0.094 0.001 0.205 0.002 0.316 0.002 11.099 0 20.86-5.726 26.49-14.386l0.075-0.122zM658.347 691.627c3.137-4.821 5.003-10.72 5.003-17.055 0-10.503-5.129-19.809-13.019-25.549l-0.091-0.063c-51.24-34.378-114.307-54.868-182.159-54.868-38.676 0-75.797 6.657-110.28 18.888l2.306-0.713c-8.637 5.821-14.242 15.566-14.242 26.62 0 17.673 14.327 32 32 32 2.17 0 4.29-0.216 6.34-0.628l-0.205 0.034c25.469-8.917 54.832-14.067 85.397-14.067 54.272 0 104.751 16.239 146.844 44.123l-0.988-0.615c4.983 3.604 11.178 5.819 17.883 5.973l0.037 0.001c10.456-0.529 19.547-5.935 25.103-13.972l0.071-0.108zM512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["spotify"]},"attrs":[{}],"properties":{"order":6876,"id":88,"name":"spotify","prevSize":32,"code":60132},"setIdx":0,"setId":0,"iconIdx":484},{"icon":{"paths":["M549.12 840.107c-29.867 0-61.013 0-94.293-4.693-16.393-1.522-29.127-15.209-29.127-31.871 0-0.947 0.041-1.884 0.122-2.81l-0.008 0.12c1.949-16.456 15.817-29.097 32.638-29.097 0.827 0 1.646 0.031 2.457 0.090l-0.108-0.006c195.84 17.92 328.96-20.48 394.667-113.493 93.44-131.84 37.547-343.893 0-445.867-69.12 100.267-161.707 142.933-428.8 180.48-63.322 3.586-118.339 36.227-152.322 84.694l-0.425 0.639c-42.667 72.96-23.040 170.667-12.373 213.333 25.393 4.928 54.595 7.747 84.455 7.747 189.924 0 353.21-114.057 425.097-277.411l1.168-2.976c4.816-12.020 16.368-20.355 29.867-20.355 17.722 0 32.089 14.367 32.089 32.089 0 4.223-0.816 8.256-2.299 11.949l0.077-0.216c-85.193 190.262-272.868 320.418-490.944 320.418-37.656 0-74.405-3.881-109.87-11.264l3.48 0.606c-11.557-2.045-20.848-10.060-24.676-20.684l-0.070-0.223c-2.56-6.4-59.307-165.973 11.947-285.013 43.451-65.615 114.505-109.949 196.215-116.422l0.905-0.058c302.080-42.667 351.573-87.467 416.853-203.947 5.431-10.003 15.856-16.681 27.84-16.681 0.563 0 1.122 0.015 1.677 0.044l-0.078-0.003c12.323 0.564 22.779 8.016 27.651 18.575l0.082 0.198c6.4 14.507 161.707 360.533 14.933 567.467-68.267 96-188.587 144.64-358.827 144.64zM731.307 914.773c11.271-5.116 18.968-16.272 18.968-29.226 0-17.673-14.327-32-32-32-6.589 0-12.713 1.992-17.803 5.405l0.115-0.073c-54.78 30.615-120.192 48.643-189.815 48.643-217.968 0-394.667-176.698-394.667-394.667s176.698-394.667 394.667-394.667c72.375 0 140.201 19.482 198.518 53.487l-1.876-1.011c4.59 2.694 10.109 4.284 16 4.284 17.683 0 32.018-14.335 32.018-32.018 0-11.792-6.375-22.096-15.867-27.652l-0.151-0.082c-65.299-37.911-143.689-60.285-227.305-60.285-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c80.353 0 155.88-20.662 221.557-56.964l-2.359 1.196z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["spring-framework"]},"attrs":[{}],"properties":{"order":6877,"id":87,"name":"spring-framework","prevSize":32,"code":60133},"setIdx":0,"setId":0,"iconIdx":485},{"icon":{"paths":["M690.773 970.667h-357.547c-154.581-0-279.893-125.313-279.893-279.893l0 0v-357.547c-0-154.581 125.313-279.893 279.893-279.893l0 0h357.547c154.581-0 279.893 125.313 279.893 279.893l0 0v357.547c-0 154.581-125.313 279.893-279.893 279.893l0 0zM333.227 117.333c-119.137 0.242-215.651 96.756-215.893 215.87l-0 0.023v357.547c0.242 119.137 96.756 215.651 215.87 215.893l0.023 0h357.547c119.137-0.242 215.651-96.756 215.893-215.87l0-0.023v-357.547c-0.242-119.137-96.756-215.651-215.87-215.893l-0.023-0zM373.333 719.36c8.071-5.883 13.256-15.303 13.256-25.936 0-6.19-1.758-11.97-4.801-16.867l0.079 0.136-107.52-161.28 109.653-166.827c2.822-4.634 4.493-10.239 4.493-16.233 0-11.014-5.639-20.711-14.188-26.36l-0.118-0.073c-4.681-2.898-10.357-4.615-16.435-4.615-10.885 0-20.484 5.509-26.161 13.89l-0.071 0.111-122.453 183.040c-3.298 4.994-5.261 11.121-5.261 17.707s1.963 12.713 5.337 17.828l-0.075-0.122 119.467 176.64c5.685 8.751 15.397 14.467 26.447 14.507l0.006 0c6.827-0.138 13.149-2.186 18.486-5.631l-0.139 0.084zM695.040 710.4l119.467-176.64c3.298-4.994 5.261-11.121 5.261-17.707s-1.963-12.713-5.337-17.828l0.075 0.122-119.040-184.32c-5.747-8.493-15.346-14.001-26.232-14.001-6.078 0-11.754 1.717-16.571 4.693l0.136-0.078c-8.667 5.723-14.306 15.419-14.306 26.433 0 5.995 1.671 11.599 4.572 16.373l-0.079-0.14 107.947 166.827-107.52 159.573c-2.965 4.761-4.722 10.541-4.722 16.731 0 10.632 5.185 20.053 13.165 25.872l0.091 0.063c5.079 3.288 11.24 5.326 17.862 5.545l0.058 0.002c0.232 0.006 0.505 0.010 0.778 0.010 9.802 0 18.561-4.467 24.352-11.476l0.043-0.053zM502.187 700.16l87.467-361.387c0.561-2.243 0.882-4.817 0.882-7.467 0-17.689-14.34-32.029-32.029-32.029-15.040 0-27.658 10.366-31.101 24.343l-0.046 0.22-85.333 361.387c-0.598 2.297-0.941 4.934-0.941 7.651 0 14.896 10.315 27.382 24.193 30.706l0.215 0.043c1.082 0.613 2.35 1.189 3.67 1.654l0.17 0.052c0.472 0.025 1.025 0.039 1.581 0.039 15.268 0 28.039-10.693 31.232-24.999l0.040-0.213z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["square-brackets"]},"attrs":[{}],"properties":{"order":6878,"id":86,"name":"square-brackets","prevSize":32,"code":60134},"setIdx":0,"setId":0,"iconIdx":486},{"icon":{"paths":["M309.76 970.667c-29.16-0.033-56.031-9.811-77.535-26.253l0.309 0.227c-33.221-25.677-54.406-65.535-54.406-110.341 0-4.716 0.235-9.377 0.693-13.973l-0.047 0.58 15.36-161.707c0.035-0.389 0.055-0.841 0.055-1.298 0-3.932-1.478-7.519-3.908-10.236l0.013 0.015-104.96-121.173c-20.195-24.037-32.464-55.321-32.464-89.47 0-15.451 2.512-30.316 7.149-44.208l-0.285 0.985c14.168-45.467 50.682-80.002 96.363-91.118l0.917-0.188 152.747-34.56c3.954-1.301 7.199-3.855 9.345-7.184l0.042-0.069 79.36-139.947c21.823-41.213 64.435-68.812 113.493-68.812s91.671 27.599 113.158 68.118l0.336 0.694 79.36 139.947c2.187 3.398 5.432 5.952 9.263 7.218l0.124 0.035 152.747 34.56c46.598 11.305 83.112 45.84 97.024 90.357l0.256 0.949c4.352 12.907 6.864 27.772 6.864 43.223 0 34.149-12.269 65.433-32.639 89.684l0.175-0.214-103.68 121.173c-2.417 2.702-3.895 6.289-3.895 10.222 0 0.457 0.020 0.909 0.059 1.356l-0.004-0.058 15.36 161.707c0.412 4.015 0.646 8.677 0.646 13.393 0 44.806-21.185 84.663-54.086 110.102l-0.321 0.238c-21.211 16.19-48.093 25.941-77.252 25.941-19.167 0-37.35-4.213-53.673-11.763l0.792 0.329-144.64-63.147c-1.755-0.813-3.809-1.287-5.973-1.287s-4.218 0.474-6.063 1.324l0.090-0.037-143.36 63.147c-15.533 7.252-33.721 11.495-52.898 11.52l-0.009 0zM512 114.773c-26.713 0.195-49.93 14.971-62.107 36.757l-0.186 0.363-79.36 139.947c-10.046 18.011-27.059 31.112-47.299 35.746l-0.487 0.094-151.893 34.987c-26.003 5.633-46.486 24.699-54.052 49.409l-0.135 0.511c-2.344 7.011-3.696 15.083-3.696 23.472 0 18.929 6.886 36.25 18.291 49.593l-0.088-0.105 104.107 121.173c11.592 13.921 18.628 31.99 18.628 51.703 0 2.376-0.102 4.728-0.302 7.052l0.021-0.302-15.36 161.707c-0.334 2.668-0.525 5.755-0.525 8.887 0 24.515 11.681 46.302 29.781 60.098l0.184 0.135c11.597 8.978 26.348 14.391 42.363 14.391 10.475 0 20.409-2.316 29.319-6.464l-0.428 0.179 143.787-64.853c8.642-4.047 18.765-6.408 29.44-6.408s20.798 2.362 29.876 6.591l-0.436-0.182 143.787 64.853c8.481 3.969 18.415 6.285 28.89 6.285 16.015 0 30.766-5.413 42.523-14.51l-0.16 0.119c18.208-13.935 29.834-35.677 29.834-60.134 0-2.714-0.143-5.395-0.422-8.035l0.028 0.329-15.36-161.707c-0.179-2.022-0.282-4.374-0.282-6.75 0-19.713 7.036-37.783 18.734-51.835l-0.106 0.131 104.107-121.173c11.317-13.239 18.203-30.559 18.203-49.488 0-8.388-1.352-16.461-3.851-24.011l0.155 0.54c-7.306-25.751-27.897-45.348-53.706-51.11l-0.48-0.090-153.173-34.987c-20.728-4.728-37.741-17.829-47.598-35.472l-0.189-0.368-78.080-139.947c-12.363-22.149-35.581-36.925-62.266-37.12l-0.027-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["star"]},"attrs":[{}],"properties":{"order":6879,"id":85,"name":"star","prevSize":32,"code":60135},"setIdx":0,"setId":0,"iconIdx":487},{"icon":{"paths":["M632.747 970.667c-22.12-0.029-42.392-7.92-58.177-21.028l0.15 0.121c-21.164-17.346-34.562-43.488-34.562-72.759 0-0.221 0.001-0.441 0.002-0.661l-0 0.034v-210.773c-0.007-0.511-0.011-1.113-0.011-1.717 0-74.102 59.592-134.286 133.467-135.242l0.090-0.001h204.373c28.492 0.071 53.921 13.121 70.699 33.547l0.127 0.16c13.432 16.387 21.574 37.561 21.574 60.636 0 6.015-0.553 11.901-1.611 17.609l0.091-0.592c-16.3 83.679-55.446 156.361-110.622 213.453l0.115-0.12c-54.648 56.504-125.547 96.976-205.158 113.879l-2.629 0.467c-5.259 1.529-11.378 2.594-17.682 2.975l-0.238 0.011zM675.413 592.64c-38.62 0.943-69.568 32.474-69.568 71.233 0 0.607 0.008 1.213 0.023 1.816l-0.002-0.089v210.773c-0.005 0.196-0.007 0.427-0.007 0.659 0 9.361 4.306 17.715 11.046 23.191l0.055 0.043c4.769 3.986 10.966 6.407 17.729 6.407 1.726 0 3.416-0.158 5.055-0.46l-0.17 0.026c67.769-14.985 126.085-48.731 170.987-95.462l0.107-0.112c46.831-48.099 80.102-109.619 93.504-178.249l0.363-2.231c0.338-1.734 0.531-3.728 0.531-5.766 0-7.734-2.781-14.819-7.397-20.308l0.039 0.048c-4.977-6.432-12.663-10.562-21.316-10.667l-0.017-0zM392.533 970.667c-2.752 0.315-5.942 0.494-9.173 0.494s-6.421-0.18-9.559-0.529l0.386 0.035c-82.69-18.114-153.762-59.612-208.029-117.136l-0.184-0.197c-55.343-56.86-94.662-129.577-110.504-210.695l-0.429-2.639c-1.169-5.569-1.838-11.969-1.838-18.525 0-23.052 8.272-44.173 22.010-60.554l-0.119 0.146c17.065-20.6 42.63-33.643 71.242-33.707l0.011-0h204.8c74.199 0.96 133.979 61.333 133.979 135.669 0 0.454-0.002 0.907-0.007 1.36l0.001-0.069v210.773c0 0.024 0 0.052 0 0.079 0 29.526-13.57 55.882-34.814 73.171l-0.172 0.136c-15.36 13.415-35.467 21.742-57.508 22.185l-0.092 0.001zM146.347 592.64c-8.816 0.033-16.657 4.174-21.715 10.607l-0.045 0.060c-4.577 5.442-7.358 12.526-7.358 20.26 0 2.039 0.193 4.033 0.562 5.964l-0.031-0.198c14.097 71.337 47.968 133.17 95.607 181.367l-0.033-0.034c46.197 47.552 106 81.655 173.121 96.025l2.239 0.402c1.469 0.276 3.158 0.433 4.884 0.433 6.763 0 12.96-2.421 17.773-6.443l-0.044 0.036c7.026-5.659 11.492-14.252 11.52-23.889l0-0.005v-211.627c0.008-0.387 0.012-0.843 0.012-1.3 0-38.992-31.133-70.712-69.897-71.658l-0.088-0.002zM864.427 471.893h-704.853c-0.28 0.003-0.612 0.004-0.943 0.004-31.913 0-60.472-14.359-79.569-36.97l-0.127-0.155c-11.323-13.884-18.183-31.797-18.183-51.312 0-6.312 0.718-12.457 2.076-18.356l-0.106 0.549c42.667-180.907 230.4-312.32 449.28-312.32s407.893 131.413 449.28 312.32c1.252 5.351 1.969 11.496 1.969 17.808 0 19.515-6.86 37.429-18.3 51.46l0.117-0.148c-19.148 22.762-47.646 37.126-79.499 37.126-0.401 0-0.802-0.002-1.201-0.007l0.061 0.001zM512 117.333c-189.44 0-352 110.507-386.987 262.827-0.144 0.842-0.226 1.813-0.226 2.802 0 4.508 1.705 8.618 4.506 11.72l-0.014-0.015c7.080 8.135 17.451 13.248 29.016 13.248 0.449 0 0.897-0.008 1.342-0.023l-0.065 0.002h704.853c0.584 0.031 1.267 0.048 1.955 0.048 11.757 0 22.319-5.113 29.585-13.237l0.034-0.038c2.542-3.123 4.082-7.151 4.082-11.538 0-1.049-0.088-2.077-0.257-3.077l0.015 0.108c-35.84-152.32-198.4-262.827-387.84-262.827z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status"]},"attrs":[{}],"properties":{"order":6880,"id":84,"name":"status","prevSize":32,"code":60136},"setIdx":0,"setId":0,"iconIdx":488},{"icon":{"paths":["M684.8 970.667h-343.467c-157.782-0.242-285.624-128.084-285.867-285.843l-0-0.024v-343.467c-0.003-0.507-0.005-1.107-0.005-1.707 0-157.967 127.938-286.053 285.849-286.293l0.023-0h345.6c157.013 1.446 283.738 129.065 283.738 286.282 0 0.604-0.002 1.208-0.006 1.811l0-0.093v345.6c-1.447 156.865-128.83 283.498-285.844 283.733l-0.023 0zM341.333 117.333c-0.637-0.007-1.39-0.010-2.144-0.010-122.534 0-221.867 99.333-221.867 221.867 0 0.754 0.004 1.507 0.011 2.259l-0.001-0.115v345.6c1.201 121.617 100.069 219.744 221.857 219.744 0.754 0 1.507-0.004 2.259-0.011l-0.115 0.001h345.6c122.436-0.242 221.624-99.431 221.867-221.844l0-0.023v-343.467c-0.242-122.436-99.431-221.624-221.844-221.867l-0.023-0zM564.48 565.333c0-17.673-14.327-32-32-32v0h-314.027c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h311.893c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM839.68 565.333c0-17.673-14.327-32-32-32v0h-139.093c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h136.96c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM839.68 715.093c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-314.027c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h311.893c17.673 0 32-14.327 32-32v0zM389.547 715.093c0.002-0.148 0.004-0.323 0.004-0.498 0-17.673-14.327-32-32-32-0.752 0-1.498 0.026-2.237 0.077l0.1-0.006h-136.96c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h136.96c0.127 0.002 0.277 0.003 0.427 0.003 17.437 0 31.573-14.136 31.573-31.573 0-0.001-0-0.002-0-0.003l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["subtitle"]},"attrs":[{}],"properties":{"order":6881,"id":83,"name":"subtitle","prevSize":32,"code":60137},"setIdx":0,"setId":0,"iconIdx":489},{"icon":{"paths":["M512 85.333c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023v53.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0-52.48c0.002-0.128 0.003-0.278 0.003-0.429 0-17.76-14.277-32.185-31.98-32.424l-0.023-0z","M790.187 201.387c-8.801 0.197-16.738 3.738-22.624 9.397l0.011-0.011-35.413 35.84c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0 35.84-35.84c5.807-5.858 9.396-13.923 9.396-22.827s-3.588-16.969-9.398-22.829l0.002 0.002c-5.786-5.793-13.78-9.379-22.612-9.387l-0.002-0z","M233.387 201.387c-8.801 0.197-16.738 3.738-22.624 9.397l0.011-0.011c-5.585 5.878-9.021 13.844-9.021 22.613s3.436 16.736 9.034 22.627l-0.013-0.014 35.84 35.413c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-35.84-35.413c-5.976-5.742-14.084-9.305-23.024-9.387l-0.016-0z","M905.813 480h-50.347c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h50.347c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z","M170.667 480h-52.48c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h52.48c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z","M754.773 722.773c-0.044-0-0.097-0-0.149-0-8.788 0-16.737 3.59-22.461 9.384l-0.003 0.003c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 35.413 35.413c5.858 5.807 13.923 9.396 22.827 9.396s16.969-3.588 22.829-9.398l-0.002 0.002c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-35.84-35.413c-5.727-5.797-13.676-9.387-22.464-9.387-0.052 0-0.105 0-0.157 0l0.008-0z","M269.227 722.773c-0.044-0-0.097-0-0.149-0-8.788 0-16.737 3.59-22.461 9.384l-0.003 0.003-35.84 35.84c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.858 5.807 13.923 9.396 22.827 9.396s16.969-3.588 22.829-9.398l-0.002 0.002 35.413-35.413c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.727-5.797-13.676-9.387-22.464-9.387-0.052 0-0.105 0-0.157 0l0.008-0z","M512 823.467c-17.673 0-32 14.327-32 32v0 50.347c0 17.673 14.327 32 32 32s32-14.327 32-32v0-50.347c0-17.673-14.327-32-32-32v0z","M512 327.253c101.797 0 184.32 82.523 184.32 184.32s-82.523 184.32-184.32 184.32c-101.647 0-184.077-82.28-184.319-183.87l-0-0.023c-0-0-0-0-0-0 0-101.883 82.471-184.503 184.296-184.746l0.024-0zM512 263.253c-137.143 0-248.32 111.177-248.32 248.32s111.177 248.32 248.32 248.32c136.993 0 248.077-110.934 248.32-247.87l0-0.023c0-0 0-0 0-0 0-137.229-111.125-248.503-248.297-248.746l-0.023-0z"],"attrs":[{},{},{},{},{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sun"]},"attrs":[{},{},{},{},{},{},{},{},{}],"properties":{"order":6882,"id":82,"name":"sun","prevSize":32,"code":60138},"setIdx":0,"setId":0,"iconIdx":490},{"icon":{"paths":["M512 972.8v0c-36.204-0.505-68.701-15.964-91.669-40.463l-0.065-0.070-72.96-78.933c-11.417-12.276-27.629-19.959-45.636-20.053l-0.017-0h-49.067c-86.383-0.242-156.345-70.204-156.587-156.563l-0-0.023v-469.333c0.483-86.2 70.353-155.92 156.564-156.16l0.023-0h518.827c86.383 0.242 156.345 70.204 156.587 156.563l0 0.023v469.333c-0.242 86.383-70.204 156.345-156.563 156.587l-0.023 0h-46.080c-16.867 0.824-31.868 8.191-42.638 19.596l-0.028 0.030-77.227 80.64c-23.288 23.966-55.826 38.837-91.836 38.837-0.564 0-1.127-0.004-1.689-0.011l0.085 0.001zM252.587 115.2c-51.134 0-92.587 41.452-92.587 92.587v0 469.333c0.959 50.395 42.037 90.88 92.571 90.88 0.006 0 0.011-0 0.017-0l49.066 0c36.811 0.845 69.665 17.102 92.481 42.546l0.106 0.12 72.533 78.507c11.321 12.092 27.382 19.627 45.203 19.627 0.009 0 0.017-0 0.026-0l-0.001 0c17.884-0.762 33.961-7.925 46.124-19.241l-0.044 0.041 77.227-78.933c22.353-24.974 54.165-41.082 89.755-42.657l0.271-0.010h42.667c51.134 0 92.587-41.452 92.587-92.587v0-469.333c-0.902-49.232-40.095-89.021-89.003-90.875l-0.171-0.005zM440.747 610.987h-118.187c-31.544-0.042-57.099-25.624-57.099-57.173 0-14.602 5.474-27.925 14.482-38.030l-0.050 0.057c16.431-17.036 34.44-32.335 53.859-45.736l1.181-0.77c32.853-25.6 73.813-57.6 73.813-85.333 0.029-0.547 0.046-1.187 0.046-1.83 0-9.901-3.921-18.886-10.296-25.487l0.010 0.011c-6.95-6.619-16.378-10.692-26.757-10.692-0.493 0-0.984 0.009-1.473 0.027l0.071-0.002c-21.208-0-38.4 17.192-38.4 38.4v0c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c0.632-56.778 46.806-102.562 103.674-102.562 28.248 0 53.857 11.297 72.557 29.619l-0.018-0.017c17.7 18.564 28.592 43.757 28.592 71.493 0 0.366-0.002 0.731-0.006 1.096l0-0.056c0 58.027-52.48 98.56-98.56 134.4-13.227 10.24-26.027 20.053-35.413 29.013h101.973c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM729.6 486.827h-17.067v-149.333c0.005-0.265 0.008-0.578 0.008-0.891 0-22.161-14.565-40.92-34.644-47.227l-0.351-0.095c-4.43-1.413-9.525-2.228-14.811-2.228-17.157 0-32.31 8.582-41.4 21.688l-0.109 0.166-109.227 163.413c-5.585 7.859-8.929 17.65-8.929 28.222 0 8.578 2.201 16.642 6.070 23.658l-0.128-0.253c8.18 15.698 24.12 26.351 42.596 26.878l0.070 0.002h96.853v28.16c-0.002 0.127-0.003 0.277-0.003 0.427 0 17.437 14.136 31.573 31.573 31.573 0.001 0 0.002-0 0.003-0l-0 0c0.001 0 0.002 0 0.003 0 17.523 0 31.757-14.085 31.997-31.551l0-0.023v-28.587h17.493c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM648.533 486.827h-70.827l71.68-102.827z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["support-24"]},"attrs":[{}],"properties":{"order":6883,"id":81,"name":"support-24","prevSize":32,"code":60139},"setIdx":0,"setId":0,"iconIdx":491},{"icon":{"paths":["M258.56 469.333h501.76c109.477-5.145 196.289-95.155 196.289-205.44s-86.811-200.295-195.828-205.423l-0.461-0.017h-501.76c-109.477 5.145-196.289 95.155-196.289 205.44s86.811 200.295 195.828 205.423l0.461 0.017zM258.56 121.6h501.76c2.329-0.136 5.053-0.213 7.795-0.213 78.704 0 142.507 63.802 142.507 142.507s-63.802 142.507-142.507 142.507c-2.742 0-5.466-0.077-8.17-0.23l0.375 0.017h-501.76c-75.278-4.25-134.712-66.331-134.712-142.293s59.434-138.043 134.337-142.276l0.375-0.017zM667.307 264.107c-0.001-0.127-0.001-0.277-0.001-0.427 0-43.594 35.34-78.933 78.933-78.933 0 0 0.001 0 0.001 0l-0 0c43.829 0 79.36 35.531 79.36 79.36v0 0c-3.123 41.255-37.364 73.545-79.147 73.545s-76.024-32.29-79.13-73.278l-0.016-0.267zM353.28 749.227c0.211 2.428 0.331 5.253 0.331 8.107s-0.12 5.679-0.356 8.471l0.025-0.365c-3.123 41.255-37.364 73.545-79.147 73.545s-76.024-32.29-79.13-73.278l-0.016-0.267c-0.311-2.434-0.489-5.249-0.489-8.107s0.178-5.673 0.523-8.437l-0.034 0.33c7.4-36.535 39.253-63.652 77.44-63.652s70.040 27.117 77.354 63.145l0.086 0.507zM760.32 559.787h-501.76c-109.477 5.145-196.289 95.155-196.289 205.44s86.811 200.295 195.828 205.423l0.461 0.017h501.76c109.477-5.145 196.289-95.155 196.289-205.44s-86.811-200.295-195.828-205.423l-0.461-0.017zM760.32 907.52h-501.76c-75.278-4.25-134.712-66.331-134.712-142.293s59.434-138.043 134.337-142.276l0.375-0.017h501.76c2.329-0.136 5.053-0.213 7.795-0.213 78.704 0 142.507 63.802 142.507 142.507s-63.802 142.507-142.507 142.507c-2.742 0-5.466-0.077-8.17-0.23l0.375 0.017z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["switch"]},"attrs":[{}],"properties":{"order":6884,"id":80,"name":"switch","prevSize":32,"code":60140},"setIdx":0,"setId":0,"iconIdx":492},{"icon":{"paths":["M907.093 332.373l-47.36-48.213-63.573-63.573-103.68-104.533c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 26.027 26.027-72.107 72.107-66.133-66.133c-13.749-15.539-33.739-25.285-56.005-25.285-41.237 0-74.667 33.429-74.667 74.667 0 22.266 9.747 42.256 25.206 55.936l0.079 0.069 6.827 6.827-215.893 216.32c-16.896 16.713-27.358 39.9-27.358 65.53 0 10.443 1.737 20.48 4.938 29.839l-0.193-0.649 26.027 78.080-148.907 148.48c-13.475 13.57-21.803 32.266-21.803 52.907s8.328 39.337 21.807 52.911l-0.004-0.004c13.57 13.475 32.266 21.803 52.907 21.803s39.337-8.328 52.911-21.807l-0.004 0.004 148.48-148.907 78.080 26.027c8.71 3.008 18.747 4.745 29.19 4.745 25.63 0 48.817-10.463 65.522-27.35l0.008-0.008 215.893-215.893 6.827 6.827c13.745 13.082 32.386 21.13 52.907 21.13s39.162-8.048 52.939-21.16l-0.032 0.030c13.45-13.502 21.766-32.126 21.766-52.693s-8.316-39.192-21.768-52.696l0.002 0.002-66.133-66.133 71.253-71.253 26.027 25.6c5.729 5.95 13.723 9.685 22.589 9.813l0.024 0c8.801-0.197 16.738-3.738 22.624-9.397l-0.011 0.011c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0zM785.493 549.12c-1.595 2.621-4.436 4.345-7.68 4.345s-6.085-1.724-7.658-4.305l-0.022-0.040-29.44-29.44c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l-238.933 238.506c-5.103 5.136-12.17 8.315-19.979 8.315-3.234 0-6.34-0.545-9.232-1.548l0.198 0.060-96.427-32c-3.053-1.066-6.573-1.682-10.237-1.682-8.831 0-16.827 3.577-22.617 9.362l0-0-162.56 162.987c-1.72 2.426-4.518 3.99-7.68 3.99s-5.96-1.564-7.66-3.961l-0.020-0.029c-1.82-2.029-2.933-4.724-2.933-7.68s1.113-5.651 2.943-7.691l-0.009 0.011 162.987-162.987c5.784-5.79 9.362-13.785 9.362-22.616 0-3.664-0.616-7.184-1.749-10.462l0.068 0.225-32-95.147c-1.013-2.785-1.598-6-1.598-9.352 0-7.864 3.223-14.975 8.421-20.084l0.004-0.004 238.507-239.36c5.887-5.741 9.539-13.751 9.539-22.613s-3.652-16.872-9.532-22.607l-0.007-0.006-29.44-27.307c-1.82-2.029-2.933-4.724-2.933-7.68s1.113-5.651 2.943-7.691l-0.009 0.011c1.853-1.851 4.412-2.996 7.238-2.996 0.156 0 0.31 0.003 0.464 0.010l-0.022-0.001c0.113-0.005 0.246-0.008 0.38-0.008 2.712 0 5.155 1.15 6.869 2.989l0.005 0.006 295.68 295.68c1.271 1.781 2.032 4.001 2.032 6.4s-0.761 4.619-2.055 6.434l0.023-0.034zM719.36 378.453l-72.96-73.813 71.68-71.68 32.427 32.427 40.533 42.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["syringe"]},"attrs":[{}],"properties":{"order":6885,"id":79,"name":"syringe","prevSize":32,"code":60141},"setIdx":0,"setId":0,"iconIdx":493},{"icon":{"paths":["M686.933 970.667h-349.867c-0.897 0.010-1.957 0.016-3.019 0.016-153.558 0-278.321-123.283-280.712-276.271l-0.003-0.225v-324.267c2.391-152.98 126.964-276.075 280.288-276.075 1.212 0 2.421 0.008 3.629 0.023l-0.184-0.002h128c17.437 0 31.573 14.136 31.573 31.573s-14.136 31.573-31.573 31.573v-0h-128c-0.766-0.010-1.67-0.015-2.575-0.015-118.34 0-214.442 95.214-215.877 213.213l-0.001 0.135v324.267c1.437 118.135 97.538 213.349 215.878 213.349 0.905 0 1.809-0.006 2.712-0.017l-0.137 0.001h349.867c0.766 0.010 1.67 0.015 2.575 0.015 118.34 0 214.442-95.214 215.877-213.213l0.001-0.135v-324.693c1.94-16.464 15.813-29.115 32.64-29.115s30.7 12.651 32.625 28.961l0.015 0.155v324.267c-2.394 153.213-127.157 276.496-280.714 276.496-1.061 0-2.121-0.006-3.18-0.018l0.161 0.001zM672 412.587l25.173-19.627c1.506-0.988 3.351-1.576 5.333-1.576s3.828 0.588 5.371 1.599l-0.037-0.023 25.173 19.627c12.499 9.898 28.493 15.878 45.885 15.878 11.708 0 22.784-2.71 32.633-7.538l-0.438 0.194c25.303-11.046 42.667-35.849 42.667-64.707 0-0.051-0-0.103-0-0.154l0 0.008v-228.267c-0.719-39.977-33.295-72.108-73.376-72.108-0.154 0-0.308 0-0.461 0.001l0.024-0h-154.027c-0.13-0.001-0.284-0.001-0.438-0.001-40.081 0-72.657 32.131-73.375 72.041l-0.001 0.067v230.4c0.4 28.778 17.599 53.444 42.215 64.669l0.451 0.184c9.505 4.518 20.646 7.185 32.403 7.253l0.024 0c17.235-0.915 32.766-7.54 44.897-18.001l-0.097 0.081zM656.213 343.467l-24.747 19.627c-1.346 0.791-2.965 1.258-4.693 1.258s-3.347-0.467-4.738-1.282l0.044 0.024c-2.798-1.318-4.7-4.115-4.7-7.356 0-0.114 0.002-0.227 0.007-0.34l-0.001 0.016v-227.413c0-4.713 3.821-8.533 8.533-8.533v0h153.173c4.713 0 8.533 3.821 8.533 8.533v0 0 230.4c0.004 0.097 0.006 0.21 0.006 0.324 0 3.241-1.902 6.038-4.65 7.335l-0.049 0.021c-1.346 0.791-2.965 1.258-4.693 1.258s-3.347-0.467-4.738-1.282l0.044 0.024-24.747-19.2c-13.085-10.831-30.040-17.401-48.53-17.401-16.511 0-31.798 5.239-44.29 14.146l0.233-0.158zM591.36 532.053c-0.476-17.538-14.807-31.573-32.415-31.573-0.004 0-0.008 0-0.012 0l-217.599-0c-0.134-0.002-0.293-0.003-0.452-0.003-17.46 0-31.696 13.799-32.399 31.086l-0.002 0.064c0.239 17.726 14.664 32.003 32.424 32.003 0.151 0 0.302-0.001 0.452-0.003l-0.023 0h217.6c0.003 0 0.007 0 0.011 0 17.609 0 31.939-14.036 32.414-31.529l0.001-0.044zM689.92 692.48c-0.476-17.538-14.807-31.573-32.415-31.573-0.004 0-0.008 0-0.012 0l-344.746-0c-0.003-0-0.007-0-0.011-0-17.609 0-31.939 14.036-32.414 31.529l-0.001 0.044c0.241 17.724 14.665 32 32.424 32 0.001 0 0.002-0 0.003-0l344.747 0c0.001 0 0.002 0 0.003 0 17.759 0 32.183-14.276 32.424-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-book"]},"attrs":[{}],"properties":{"order":6886,"id":78,"name":"tablet-book","prevSize":32,"code":60142},"setIdx":0,"setId":0,"iconIdx":494},{"icon":{"paths":["M634.453 664.32c-5.931 6.31-14.331 10.241-23.649 10.241-0.086 0-0.172-0-0.257-0.001l0.013 0c-8.894-0.003-16.992-3.407-23.065-8.983l0.025 0.023-64.427-61.867-61.013 64.853c-5.74 6.554-14.124 10.67-23.469 10.67-0.149 0-0.298-0.001-0.447-0.003l0.022 0c-18.338-0.055-33.183-14.934-33.183-33.28 0-8.742 3.37-16.696 8.882-22.635l-0.019 0.021 61.44-65.28-65.28-62.293c-5.983-6.016-9.682-14.309-9.682-23.467s3.699-17.451 9.683-23.468l-0.001 0.001c6.061-5.883 14.34-9.51 23.467-9.51s17.406 3.627 23.475 9.519l-0.008-0.008 64.427 61.867 61.013-64.853c6.045-6.433 14.608-10.44 24.107-10.44 18.255 0 33.053 14.798 33.053 33.053 0 8.756-3.405 16.717-8.962 22.631l0.016-0.017-61.867 63.573 64.853 61.867c6.499 6.089 10.548 14.725 10.548 24.307 0 9.164-3.704 17.463-9.696 23.481l0.001-0.001zM943.36 703.147v-311.467c-0.135-98.207-52.831-184.077-131.461-230.999l-1.232-0.681c-5.463-4.084-12.351-6.54-19.812-6.54-18.38 0-33.28 14.9-33.28 33.28 0 13.505 8.044 25.131 19.602 30.348l0.21 0.085c60.588 35.547 100.638 100.344 100.693 174.498l0 0.008v311.467c-0.243 111.039-90.313 200.96-201.386 200.96-0 0-0-0-0-0l-328.107-0c-0 0-0 0-0 0-111.073 0-201.143-89.921-201.386-200.937l-0-0.023v-311.467c0.242-74.216 40.423-138.994 100.165-173.99l0.955-0.517c10.275-5.905 17.083-16.819 17.083-29.322 0-6.34-1.75-12.271-4.794-17.337l0.085 0.152c-5.774-9.942-16.371-16.52-28.506-16.52-6.168 0-11.939 1.7-16.87 4.656l0.149-0.083c-81.143 47.181-134.827 133.714-134.827 232.786 0 0.061 0 0.122 0 0.183l-0-0.009v311.467c0.484 147.702 120.211 267.278 267.923 267.52l0.023 0h326.827c147.736-0.242 267.462-119.818 267.947-267.474l0-0.046zM717.227 170.667v-42.667c0.001-0.127 0.001-0.277 0.001-0.427 0-41.002-33.238-74.24-74.24-74.24-0 0-0.001 0-0.001 0l-241.92 0c-41.237 0-74.667 33.429-74.667 74.667v0 42.667c0 41.237 33.429 74.667 74.667 74.667v0h241.92c0 0 0.001 0 0.001 0 41.002 0 74.24-33.238 74.24-74.24 0-0.15-0-0.3-0.001-0.45l0 0.023zM642.987 119.893c4.477 0 8.107 3.629 8.107 8.107v0 42.667c0 0.003 0 0.007 0 0.011 0 4.563-3.581 8.289-8.086 8.522l-0.021 0.001h-241.92c-4.713-0-8.533-3.821-8.533-8.533l-0 0v-42.667c-0-0.003-0-0.007-0-0.011 0-4.477 3.629-8.107 8.107-8.107 0.15 0 0.299 0.004 0.447 0.012l-0.021-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-delete"]},"attrs":[{}],"properties":{"order":6887,"id":77,"name":"tablet-delete","prevSize":32,"code":60143},"setIdx":0,"setId":0,"iconIdx":495},{"icon":{"paths":["M671.147 969.387h-318.293c-146.15-0.243-264.533-118.776-264.533-264.96 0-0 0-0 0-0l-0 0v-315.733c-0.002-0.392-0.003-0.856-0.003-1.32 0-111.003 68.702-205.96 165.905-244.668l1.778-0.625c3.662-1.557 7.922-2.462 12.393-2.462 13.731 0 25.468 8.534 30.198 20.588l0.076 0.22c1.681 3.763 2.66 8.154 2.66 12.774 0 13.567-8.443 25.163-20.362 29.818l-0.218 0.075c-75.494 29.491-128.002 101.653-128.002 186.078 0 0.282 0.001 0.564 0.002 0.845l-0-0.044v315.733c0.241 110.74 89.827 200.476 200.487 200.96l0.046 0h318.293c110.803-0.243 200.533-90.122 200.533-200.96 0-0-0-0-0-0l-0-0v-316.587c0.001-0.278 0.002-0.606 0.002-0.935 0-84.503-52.491-156.747-126.647-185.902l-1.356-0.47c-12.544-4.521-21.351-16.32-21.351-30.176 0-17.673 14.327-32 32-32 4.801 0 9.355 1.057 13.442 2.952l-0.198-0.082c99.193 39.090 168.111 134.080 168.111 245.167 0 0.509-0.001 1.017-0.004 1.525l0-0.078v315.307c0 0.127 0 0.277 0 0.427 0 146.098-118.436 264.533-264.533 264.533-0 0-0-0-0-0l0 0zM706.987 170.667v-42.667c-0.24-40.669-33.144-73.573-73.79-73.813l-0.023-0h-242.347c-40.669 0.24-73.573 33.144-73.813 73.79l-0 0.023v42.667c-0 0-0 0.001-0 0.001 0 40.852 32.996 73.997 73.79 74.239l0.023 0h242.347c40.818-0.242 73.813-33.387 73.813-74.239 0-0-0-0.001-0-0.001l0 0zM633.173 118.613c5.42 0 9.813 4.394 9.813 9.813v0 42.24c0 5.42-4.394 9.813-9.813 9.813v0h-242.347c-5.42 0-9.813-4.394-9.813-9.813v0-42.667c0-5.42 4.394-9.813 9.813-9.813v0zM397.227 448.853c-0.035-0-0.076-0-0.117-0-10.307 0-19.492 4.809-25.431 12.306l-0.052 0.067c-3.492 5.052-5.578 11.309-5.578 18.052 0 9.874 4.472 18.703 11.501 24.573l0.051 0.041 177.067 139.093-95.147 23.467c-14.252 3.435-24.676 16.076-24.676 31.151 0 17.498 14.045 31.716 31.476 31.996l0.026 0h7.68l160-39.253c1.849-1.036 4.006-1.786 6.298-2.121l0.102-0.012c10.523-5.658 17.623-16.473 17.919-28.973l0.001-0.040v-170.667c0.008-0.262 0.013-0.571 0.013-0.881 0-16.966-13.754-30.72-30.72-30.72-0.455 0-0.907 0.010-1.357 0.029l0.064-0.002c-0.255-0.008-0.555-0.012-0.856-0.012-17.202 0-31.147 13.945-31.147 31.147 0 0.154 0.001 0.308 0.003 0.462l-0-0.023v104.533l-177.92-137.813c-5.232-3.995-11.864-6.4-19.058-6.4-0.050 0-0.1 0-0.15 0l0.008-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-down"]},"attrs":[{}],"properties":{"order":6888,"id":76,"name":"tablet-down","prevSize":32,"code":60144},"setIdx":0,"setId":0,"iconIdx":496},{"icon":{"paths":["M456.533 682.667l-104.107-125.867c-4.297-5.5-6.89-12.512-6.89-20.13 0-9.812 4.301-18.619 11.121-24.639l0.036-0.031c5.727-4.797 13.174-7.71 21.301-7.71 10.055 0 19.068 4.459 25.171 11.508l0.035 0.042 77.653 92.587 119.467-155.307c6.095-7.919 15.578-12.972 26.24-12.972 18.239 0 33.025 14.786 33.025 33.025 0 7.577-2.552 14.558-6.843 20.131l0.057-0.077-144.64 188.587c-5.946 7.826-15.148 12.912-25.55 13.225l-0.050 0.001c-10.442-0.148-19.743-4.904-25.984-12.321l-0.043-0.053zM933.547 704.427v-312.747c-0.233-98.488-53.482-184.488-132.711-230.995l-1.263-0.685c-5.743-4.848-13.228-7.794-21.402-7.794-18.38 0-33.28 14.9-33.28 33.28 0 14.746 9.59 27.251 22.873 31.62l0.235 0.067c60.588 35.547 100.638 100.344 100.693 174.498l0 0.008v311.467c-0.243 111.039-90.313 200.96-201.386 200.96-0 0-0-0-0-0l-328.533-0c-0 0-0 0-0 0-111.073 0-201.143-89.921-201.386-200.937l-0-0.023v-311.467c0.242-74.216 40.423-138.994 100.165-173.99l0.955-0.517c10.275-5.905 17.083-16.819 17.083-29.322 0-6.34-1.75-12.271-4.794-17.337l0.085 0.152c-5.774-9.942-16.371-16.52-28.506-16.52-6.168 0-11.939 1.7-16.87 4.656l0.149-0.083c-80.896 47.134-134.401 133.466-134.401 232.295 0 0.234 0 0.468 0.001 0.701l-0-0.036v311.467c0.243 147.65 119.871 267.278 267.497 267.52l0.023 0h326.827c147.736-0.242 267.462-119.818 267.947-267.474l0-0.046zM707.413 170.667v-42.667c0.001-0.127 0.001-0.277 0.001-0.427 0-41.002-33.238-74.24-74.24-74.24-0 0-0.001 0-0.001 0l-241.92 0c-41.237 0-74.667 33.429-74.667 74.667v0 42.667c0 41.237 33.429 74.667 74.667 74.667v0h241.92c0 0 0.001 0 0.001 0 41.002 0 74.24-33.238 74.24-74.24 0-0.15-0-0.3-0.001-0.45l0 0.023zM633.173 119.893c3.893 0.639 6.827 3.98 6.827 8.005 0 0.036-0 0.071-0.001 0.107l0-0.005v42.667c0 0.003 0 0.007 0 0.011 0 4.563-3.581 8.289-8.086 8.522l-0.021 0.001h-240.64c-4.13-0.644-7.254-4.176-7.254-8.437 0-0.034 0-0.068 0.001-0.102l-0 0.005v-42.667c-0-0.003-0-0.007-0-0.011 0-4.477 3.629-8.107 8.107-8.107 0.15 0 0.299 0.004 0.447 0.012l-0.021-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-ok"]},"attrs":[{}],"properties":{"order":6889,"id":75,"name":"tablet-ok","prevSize":32,"code":60145},"setIdx":0,"setId":0,"iconIdx":497},{"icon":{"paths":["M524.8 545.28h-201.813c-18.38 0-33.28-14.9-33.28-33.28s14.9-33.28 33.28-33.28v0h201.813c18.38 0 33.28 14.9 33.28 33.28s-14.9 33.28-33.28 33.28v0zM734.293 666.027c0-18.38-14.9-33.28-33.28-33.28v0h-378.027c-18.38 0-33.28 14.9-33.28 33.28h0c-0 0.001-0 0.002-0 0.003 0 18.144 14.709 32.853 32.853 32.853 0.15 0 0.3-0.001 0.449-0.003l-0.023 0h378.027c0.127 0.002 0.277 0.003 0.427 0.003 18.144 0 32.853-14.709 32.853-32.853 0-0.001-0-0.002-0-0.003l0 0zM943.36 703.147v-311.467c-0.135-98.207-52.831-184.077-131.461-230.999l-1.232-0.681c-5.463-4.084-12.351-6.54-19.812-6.54-18.38 0-33.28 14.9-33.28 33.28 0 13.505 8.044 25.131 19.602 30.348l0.21 0.085c60.588 35.547 100.638 100.344 100.693 174.498l0 0.008v311.467c-0.243 111.039-90.313 200.96-201.386 200.96-0 0-0-0-0-0l-328.107-0c-0 0-0 0-0 0-111.073 0-201.143-89.921-201.386-200.937l-0-0.023v-311.467c0.242-74.216 40.423-138.994 100.165-173.99l0.955-0.517c10.275-5.905 17.083-16.819 17.083-29.322 0-6.34-1.75-12.271-4.794-17.337l0.085 0.152c-5.774-9.942-16.371-16.52-28.506-16.52-6.168 0-11.939 1.7-16.87 4.656l0.149-0.083c-81.143 47.181-134.827 133.714-134.827 232.786 0 0.061 0 0.122 0 0.183l-0-0.009v311.467c0.484 147.702 120.211 267.278 267.923 267.52l0.023 0h326.827c147.736-0.242 267.462-119.818 267.947-267.474l0-0.046zM717.227 170.667v-42.667c0.001-0.127 0.001-0.277 0.001-0.427 0-41.002-33.238-74.24-74.24-74.24-0 0-0.001 0-0.001 0l-241.92 0c-41.237 0-74.667 33.429-74.667 74.667v0 42.667c0 41.237 33.429 74.667 74.667 74.667v0h241.92c0 0 0.001 0 0.001 0 41.002 0 74.24-33.238 74.24-74.24 0-0.15-0-0.3-0.001-0.45l0 0.023zM642.987 119.893c4.477 0 8.107 3.629 8.107 8.107v0 42.667c0 0.003 0 0.007 0 0.011 0 4.563-3.581 8.289-8.086 8.522l-0.021 0.001h-241.92c-4.713-0-8.533-3.821-8.533-8.533l-0 0v-42.667c-0-0.003-0-0.007-0-0.011 0-4.477 3.629-8.107 8.107-8.107 0.15 0 0.299 0.004 0.447 0.012l-0.021-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-text-down"]},"attrs":[{}],"properties":{"order":6890,"id":74,"name":"tablet-text-down","prevSize":32,"code":60146},"setIdx":0,"setId":0,"iconIdx":498},{"icon":{"paths":["M517.547 701.44h-202.24c-18.38 0-33.28-14.9-33.28-33.28s14.9-33.28 33.28-33.28v0h202.24c18.38-0 33.28 14.9 33.28 33.28s-14.9 33.28-33.28 33.28v0zM727.893 512c0-18.38-14.9-33.28-33.28-33.28v0h-379.307c-18.38-0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28v0h379.307c18.38 0 33.28-14.9 33.28-33.28h-0zM950.613 703.573v-310.613c-0.282-98.822-53.68-185.11-133.136-231.846l-1.264-0.688c-4.826-2.871-10.642-4.569-16.853-4.569-18.429 0-33.369 14.94-33.369 33.369 0 12.217 6.566 22.901 16.361 28.715l0.154 0.085c60.869 35.515 101.12 100.506 101.12 174.898 0 0.012-0 0.025-0 0.037l0-0.002v312.32c0 0.001 0 0.003 0 0.004 0 111.244-89.818 201.51-200.891 202.236l-0.069 0h-329.387c-111.511-0.243-201.813-90.696-201.813-202.24 0-0 0-0 0-0.001l-0 0v-312.32c0.199-74.575 40.56-139.678 100.588-174.841l0.959-0.519c10.292-5.793 17.129-16.647 17.129-29.098 0-6.618-1.932-12.785-5.262-17.967l0.080 0.132c-5.774-9.942-16.371-16.52-28.506-16.52-6.168 0-11.939 1.7-16.87 4.656l0.149-0.083c-80.931 47.547-134.402 134.17-134.402 233.281 0 0.337 0.001 0.674 0.002 1.011l-0-0.052v312.32c0.242 148.356 120.443 268.557 268.776 268.8l0.024 0h328.533c147.99-0.726 267.706-120.742 267.947-268.777l0-0.023zM725.333 170.667v-42.667c0.001-0.127 0.001-0.277 0.001-0.427 0-41.237-33.429-74.667-74.667-74.667-0 0-0.001 0-0.001 0l-244.48-0c-41.473 0-75.093 33.62-75.093 75.093h-0v42.667c-0.001 0.127-0.001 0.277-0.001 0.427 0 41.473 33.62 75.093 75.093 75.093 0 0 0.001-0 0.001-0l242.773 0c0.51 0.013 1.11 0.020 1.712 0.020 41.237 0 74.667-33.429 74.667-74.667 0-0.307-0.002-0.613-0.006-0.92l0 0.047zM650.667 119.467c4.526 0.234 8.107 3.96 8.107 8.523 0 0.004-0 0.007-0 0.011l0-0.001v42.667c0 0.003 0 0.007 0 0.011 0 4.563-3.581 8.289-8.086 8.522l-0.021 0.001h-244.48c-4.713-0-8.533-3.821-8.533-8.533v0-42.667c0-4.713 3.821-8.533 8.533-8.533v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-text-up"]},"attrs":[{}],"properties":{"order":6891,"id":73,"name":"tablet-text-up","prevSize":32,"code":60147},"setIdx":0,"setId":0,"iconIdx":499},{"icon":{"paths":["M671.147 969.387h-318.293c-146.15-0.243-264.533-118.776-264.533-264.96 0-0 0-0 0-0l-0 0v-315.733c-0.002-0.392-0.003-0.856-0.003-1.32 0-111.003 68.702-205.96 165.905-244.668l1.778-0.625c3.662-1.557 7.922-2.462 12.393-2.462 13.731 0 25.468 8.534 30.198 20.588l0.076 0.22c1.681 3.763 2.66 8.154 2.66 12.774 0 13.567-8.443 25.163-20.362 29.818l-0.218 0.075c-75.494 29.491-128.002 101.653-128.002 186.078 0 0.282 0.001 0.564 0.002 0.845l-0-0.044v315.733c0.241 110.74 89.827 200.476 200.487 200.96l0.046 0h318.293c110.803-0.243 200.533-90.122 200.533-200.96 0-0-0-0-0-0l-0-0v-316.587c0.001-0.278 0.002-0.606 0.002-0.935 0-84.503-52.491-156.747-126.647-185.902l-1.356-0.47c-12.544-4.521-21.351-16.32-21.351-30.176 0-17.673 14.327-32 32-32 4.801 0 9.355 1.057 13.442 2.952l-0.198-0.082c99.193 39.090 168.111 134.080 168.111 245.167 0 0.509-0.001 1.017-0.004 1.525l0-0.078v315.307c0 0.127 0 0.277 0 0.427 0 146.098-118.436 264.533-264.533 264.533-0 0-0-0-0-0l0 0zM706.987 170.667v-42.667c-0.24-40.669-33.144-73.573-73.79-73.813l-0.023-0h-242.347c-40.669 0.24-73.573 33.144-73.813 73.79l-0 0.023v42.667c-0 0-0 0.001-0 0.001 0 40.852 32.996 73.997 73.79 74.239l0.023 0h242.347c40.818-0.242 73.813-33.387 73.813-74.239 0-0-0-0.001-0-0.001l0 0zM633.173 118.613c5.42 0 9.813 4.394 9.813 9.813v0 42.24c0 5.42-4.394 9.813-9.813 9.813v0h-242.347c-5.42 0-9.813-4.394-9.813-9.813v0-42.667c0-5.42 4.394-9.813 9.813-9.813v0zM626.773 729.6c0.035 0 0.076 0 0.117 0 10.307 0 19.492-4.809 25.431-12.306l0.052-0.067c3.492-5.052 5.578-11.309 5.578-18.052 0-9.874-4.472-18.703-11.501-24.573l-0.051-0.041-177.067-139.52 95.147-23.040c14.252-3.435 24.676-16.076 24.676-31.151 0-17.498-14.045-31.716-31.476-31.996l-0.026-0c-1.154-0.201-2.484-0.316-3.84-0.316s-2.686 0.115-3.979 0.336l0.139-0.020-160 39.253h-6.4c-10.648 5.519-17.821 16.417-17.92 29l-0 0.013v170.667c-0.009 0.269-0.013 0.585-0.013 0.902 0 16.731 13.563 30.293 30.293 30.293 0.605 0 1.206-0.018 1.802-0.053l-0.082 0.004c0.383 0.017 0.832 0.027 1.283 0.027 16.966 0 30.72-13.754 30.72-30.72 0-0.159-0.001-0.319-0.004-0.477l0 0.024v-102.827l178.347 137.813c5.068 4.248 11.659 6.829 18.853 6.829 0.122 0 0.244-0.001 0.365-0.002l-0.019 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-up"]},"attrs":[{}],"properties":{"order":6892,"id":72,"name":"tablet-up","prevSize":32,"code":60148},"setIdx":0,"setId":0,"iconIdx":500},{"icon":{"paths":["M721.92 970.667h-419.84c-90.153-0.242-163.171-73.26-163.413-163.39l-0-0.023v-590.507c0.242-90.153 73.26-163.171 163.39-163.413l0.023-0h419.84c90.153 0.242 163.171 73.26 163.413 163.39l0 0.023v590.507c-0.242 90.153-73.26 163.171-163.39 163.413l-0.023 0zM302.080 117.333c-54.807 0.241-99.172 44.606-99.413 99.39l-0 0.023v590.507c0.241 54.807 44.606 99.172 99.39 99.413l0.023 0h419.84c54.807-0.241 99.172-44.606 99.413-99.39l0-0.023v-590.507c-0.241-54.807-44.606-99.172-99.39-99.413l-0.023-0zM626.773 234.667c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-165.547c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h165.547c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM512 855.467c-58.91 0-106.667-47.756-106.667-106.667s47.756-106.667 106.667-106.667c58.91 0 106.667 47.756 106.667 106.667v0c0 58.91-47.756 106.667-106.667 106.667v0zM512 706.133c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet"]},"attrs":[{}],"properties":{"order":6893,"id":71,"name":"tablet","prevSize":32,"code":60149},"setIdx":0,"setId":0,"iconIdx":501},{"icon":{"paths":["M760.747 896h-334.080c-61.015-0.135-115.921-26.175-154.325-67.7l-0.128-0.14-163.413-176.64c-34.456-37.104-55.599-86.986-55.599-141.806 0-53.258 19.954-101.854 52.795-138.722l-0.183 0.209 150.187-172.373c38.788-43.542 95.013-70.832 157.613-70.832 0.539 0 1.078 0.002 1.616 0.006l-0.082-0h345.6c115.936 0 209.92 93.984 209.92 209.92v0 348.16c-0.242 115.838-94.082 209.678-209.897 209.92l-0.023 0zM415.147 192c-0.040-0-0.087-0-0.134-0-43.552 0-82.648 19.080-109.384 49.337l-0.136 0.156-151.467 170.667c-23.26 25.69-37.496 59.929-37.496 97.493s14.236 71.804 37.607 97.617l-0.111-0.124 162.133 176.213c26.62 29.91 65.223 48.658 108.205 48.658 0.809 0 1.617-0.007 2.424-0.020l-0.122 0.002h335.787c80.589 0 145.92-65.331 145.92-145.92v0-348.16c0-0.003 0-0.006 0-0.010 0-80.589-65.331-145.92-145.92-145.92-0.6 0-1.199 0.004-1.798 0.011l0.091-0.001zM621.653 506.027l77.227-79.36c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.698-5.319-13.373-8.584-21.81-8.584-9.686 0-18.367 4.303-24.235 11.103l-0.035 0.041-75.947 78.080-76.373-78.080c-5.672-9.475-15.881-15.72-27.549-15.72-17.673 0-32 14.327-32 32 0 10.907 5.457 20.54 13.79 26.317l0.106 0.069 77.227 79.36-77.227 78.933c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.741 5.887 13.751 9.539 22.613 9.539s16.872-3.652 22.607-9.532l0.006-0.007 76.373-78.080 75.947 78.080c5.852 6.010 14.003 9.755 23.029 9.813l0.011 0c0.132 0.002 0.288 0.003 0.444 0.003 8.562 0 16.283-3.603 21.728-9.375l0.014-0.015c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tag-cross"]},"attrs":[{}],"properties":{"order":6894,"id":70,"name":"tag-cross","prevSize":32,"code":60150},"setIdx":0,"setId":0,"iconIdx":502},{"icon":{"paths":["M544 134.4v-49.067c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 49.067c-168.392 17.872-298.465 159.048-298.667 330.646l-0 0.020v341.333c0.243 90.538 73.694 163.84 164.266 163.84 0 0 0-0 0.001-0l337.067 0c0 0 0 0 0.001 0 90.572 0 164.023-73.302 164.266-163.817l0-0.023v-341.333c-0.424-172.951-132.71-314.873-301.618-330.568l-1.316-0.099zM481.707 282.453c3.972 13.213 16.028 22.674 30.293 22.674s26.322-9.461 30.235-22.451l0.058-0.224c0.308 1.668 0.484 3.587 0.484 5.547s-0.176 3.879-0.514 5.742l0.029-0.195c0 17.909-14.518 32.427-32.427 32.427s-32.427-14.518-32.427-32.427v-0c0.779-4.185 2.266-7.91 4.345-11.227l-0.078 0.134zM780.373 805.547c-0.22 54.307-43.581 98.414-97.575 99.837l-0.132 0.003h-339.2c-0 0-0.001 0-0.001 0-55.226 0-100.023-44.648-100.266-99.817l-0-0.023v-341.333c0.341-136.904 102.976-249.732 235.494-266.108l1.306-0.132v4.267c-37.847 13.597-64.427 49.176-64.427 90.962 0 53.255 43.172 96.427 96.427 96.427s96.427-43.172 96.427-96.427c0-41.786-26.58-77.365-63.754-90.751l-0.672-0.211v-4.267c134.045 16.535 236.8 129.712 236.8 266.888 0 0.072-0 0.144-0 0.216l0-0.011zM625.92 709.12c0.043 1.030 0.067 2.238 0.067 3.452 0 40.843-27.591 75.242-65.151 85.576l-0.623 0.146v27.733c0 10.368-8.405 18.773-18.773 18.773v-0h-25.6c-10.368 0-18.773-8.405-18.773-18.773l-0-0v-26.88c-25.839-5.963-48.304-17.884-66.711-34.266l0.151 0.132c-3.706-3.369-6.024-8.21-6.024-13.592 0-4.029 1.299-7.754 3.5-10.781l-0.037 0.053 16.213-24.32c3.008-4.082 7.516-6.909 12.696-7.667l0.104-0.013c0.64-0.070 1.382-0.109 2.134-0.109 4.843 0 9.301 1.647 12.846 4.411l-0.047-0.035c13.873 13.776 32.71 22.569 53.593 23.461l0.167 0.006c25.6 0 28.587-13.227 28.587-24.747 0-20.907-16.213-29.867-45.227-42.667s-73.813-37.547-73.813-92.587c-0.040-0.976-0.063-2.121-0.063-3.272 0-38.793 25.886-71.54 61.326-81.91l0.603-0.151v-30.293c0-10.368 8.405-18.773 18.773-18.773v-0h25.6c10.368 0 18.773 8.405 18.773 18.773v-0 27.307c21.934 6.302 40.587 18.19 54.952 34.035l0.088 0.098c3.096 3.277 4.998 7.71 4.998 12.587s-1.903 9.309-5.007 12.595l0.008-0.009-18.773 20.907c-3.218 3.557-7.695 5.924-12.722 6.394l-0.078 0.006c-5.443-0.028-10.39-2.132-14.094-5.559l0.014 0.013c-9.224-11.391-23.165-18.648-38.806-18.773l-0.021-0c-0.905-0.136-1.95-0.214-3.013-0.214-11.782 0-21.333 9.551-21.333 21.333 0 0.375 0.010 0.749 0.029 1.119l-0.002-0.052c0 14.933 12.373 22.613 40.533 36.267 44.759 12.834 77.321 52.485 79.352 100.043l0.008 0.224z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tag"]},"attrs":[{}],"properties":{"order":6895,"id":69,"name":"tag","prevSize":32,"code":60151},"setIdx":0,"setId":0,"iconIdx":503},{"icon":{"paths":["M945.493 379.307c-0.746-58.762-31.604-110.155-77.825-139.542l-0.681-0.405-269.653-171.947c-25.681-16.295-56.959-25.968-90.496-25.968-35.468 0-68.408 10.819-95.702 29.337l0.598-0.382-258.987 175.787c-45.032 30.44-74.246 81.313-74.246 139.008 0 0.48 0.002 0.96 0.006 1.439l-0-0.073c0.463 58.273 30.059 109.535 74.923 139.991l0.597 0.382 52.48 34.987v191.573c-0.001 0.221-0.002 0.482-0.002 0.743 0 74.691 46.358 138.555 111.871 164.388l1.198 0.416 132.267 51.627c19.461 7.958 42.044 12.577 65.707 12.577s46.246-4.619 66.898-13.005l-1.192 0.428 122.453-49.493c65.815-26.815 111.361-90.301 111.361-164.425 0-0.244-0-0.489-0.001-0.733l0 0.038v-197.12l28.587-19.627v95.147c0 17.673 14.327 32 32 32s32-14.327 32-32v0-148.907c22.355-28.583 35.847-65.039 35.847-104.646 0-0.56-0.003-1.12-0.008-1.679l0.001 0.085zM753.067 755.627c0.003 0.328 0.005 0.716 0.005 1.104 0 47.065-28.756 87.413-69.657 104.433l-0.748 0.276-122.453 49.493c-12.643 5.123-27.308 8.096-42.667 8.096s-30.024-2.973-43.45-8.374l0.783 0.278-133.547-51.627c-42.755-16.49-72.537-57.25-72.537-104.965 0-0.298 0.001-0.597 0.003-0.894l-0 0.046v-149.333l148.48 98.987c26.438 18.317 59.194 29.26 94.507 29.26s68.069-10.944 95.063-29.624l-0.556 0.364 145.493-99.413zM571.733 648.96c-16.423 11.334-36.754 18.104-58.667 18.104s-42.244-6.77-59.016-18.332l0.35 0.228-264.96-175.36c-28.704-19.040-47.37-51.215-47.37-87.75 0-36.175 18.3-68.075 46.148-86.948l0.369-0.236 258.56-175.787c16.257-10.928 36.275-17.442 57.813-17.442s41.556 6.514 58.189 17.68l269.704 170.429c28.771 18.132 47.811 49.422 48.638 85.213l0.002 0.12c0.044 1.135 0.069 2.468 0.069 3.807 0 35.837-17.961 67.48-45.372 86.417l-0.351 0.229z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["teacher"]},"attrs":[{}],"properties":{"order":6896,"id":68,"name":"teacher","prevSize":32,"code":60152},"setIdx":0,"setId":0,"iconIdx":504},{"icon":{"paths":["M896 290.987c-5.862 8.3-15.415 13.654-26.219 13.654-0.082 0-0.165-0-0.247-0.001l0.013 0c-6.131-0.571-11.668-2.724-16.315-6.042l0.101 0.069c-93.421-69.383-211.015-111.070-338.347-111.070s-244.926 41.687-339.881 112.158l1.534-1.088c-5.101 3.502-11.409 5.593-18.205 5.593-9.744 0-18.484-4.298-24.429-11.102l-0.033-0.038c-3.588-5.099-5.735-11.439-5.735-18.279 0-9.75 4.36-18.481 11.237-24.35l0.044-0.037c3.413-2.987 360.107-275.627 751.36 0 6.169 5.913 10.002 14.22 10.002 23.423 0 6.337-1.818 12.25-4.961 17.245l0.079-0.135zM725.333 492.373c0.009 0 0.020 0 0.031 0 10.737 0 20.223-5.36 25.927-13.55l0.068-0.103c3.724-5.163 5.956-11.618 5.956-18.594 0-10.796-5.347-20.344-13.536-26.139l-0.1-0.067c-64.449-46.502-145.023-74.376-232.107-74.376s-167.658 27.873-233.287 75.185l1.18-0.81c-7.341 5.914-11.998 14.902-11.998 24.978 0 7.516 2.591 14.426 6.929 19.887l-0.050-0.066c5.977 6.842 14.717 11.14 24.461 11.14 6.796 0 13.104-2.091 18.316-5.664l-0.11 0.072c53.588-39.634 120.974-63.439 193.92-63.439s140.333 23.805 194.815 64.070l-0.895-0.632c5.448 4.829 12.588 7.859 20.43 8.105l0.050 0.001zM410.027 632.747c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0c15.75-14.779 37.001-23.857 60.373-23.857s44.624 9.078 60.421 23.901l-0.048-0.044c5.314 4.515 12.253 7.26 19.833 7.26 0.227 0 0.454-0.002 0.681-0.007l-0.034 0.001c0.032 0 0.071 0 0.109 0 17.673 0 32-14.327 32-32 0-9.713-4.328-18.416-11.16-24.284l-0.043-0.036c-26.798-24.198-62.483-39.004-101.625-39.004-41.12 0-78.424 16.34-105.773 42.881l0.038-0.037zM857.6 882.773h-686.933c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h686.933c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tech-wifi"]},"attrs":[{}],"properties":{"order":6897,"id":67,"name":"tech-wifi","prevSize":32,"code":60153},"setIdx":0,"setId":0,"iconIdx":505},{"icon":{"paths":["M746.667 970.667c-0.063 0-0.138 0-0.213 0-109.298 0-200.278-78.43-219.73-182.080l-0.216-1.387c-2.442-12.115-3.84-26.042-3.84-40.295 0-0.084 0-0.167 0-0.251l-0 0.013c0-17.673 14.327-32 32-32s32 14.327 32 32v0c-0 0.071-0 0.155-0 0.238 0 10.17 0.932 20.123 2.714 29.778l-0.154-1.003c14.268 74.942 79.267 130.831 157.319 130.831 88.366 0 160-71.634 160-160 0-75.767-52.664-139.233-123.383-155.791l-1.082-0.214c-10.638-2.428-22.859-3.826-35.404-3.84l-0.009-0c-17.673 0-32-14.327-32-32s14.327-32 32-32v0c0.375-0.002 0.818-0.004 1.262-0.004 16.959 0 33.445 2.023 49.23 5.842l-1.425-0.291c100.628 23.4 174.463 112.304 174.463 218.454 0 123.546-100.020 223.732-223.504 223.999l-0.026 0zM277.333 970.667c-0.268 0.001-0.585 0.002-0.902 0.002-123.712 0-224-100.288-224-224 0-107.565 75.817-197.421 176.926-219.045l1.469-0.263c13.952-2.92 30.010-4.625 46.454-4.693l0.052-0c17.673 0 32 14.327 32 32s-14.327 32-32 32v0c-11.827 0.087-23.313 1.326-34.418 3.609l1.138-0.196c-72.866 15.953-126.607 79.939-126.607 156.477 0 88.366 71.634 160 160 160 78.069 0 143.078-55.912 157.169-129.877l0.158-0.999c1.629-8.652 2.56-18.604 2.56-28.775 0-0.084-0-0.168-0-0.251l0 0.013c0-17.673 14.327-32 32-32s32 14.327 32 32v0c0 0.071 0 0.154 0 0.238 0 14.253-1.398 28.18-4.064 41.651l0.224-1.356c-19.669 105.037-110.649 183.467-219.947 183.467-0.075 0-0.15-0-0.225-0l0.012 0zM746.667 501.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0c11.515-0.062 22.704-1.302 33.5-3.605l-1.073 0.192c73.338-15.58 127.562-79.797 127.562-156.677 0-88.366-71.634-160-160-160-75.997 0-139.619 52.984-155.94 124.028l-0.208 1.076c-2.441 10.342-3.84 22.216-3.84 34.418 0 0.050 0 0.1 0 0.15l-0-0.008c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c0.015-17.235 1.879-34.026 5.404-50.196l-0.284 1.556c23.046-101.092 112.178-175.395 218.663-175.395 123.712 0 224 100.288 224 224 0 107.622-75.898 197.518-177.089 219.080l-1.467 0.262c-13.505 3.046-29.088 4.9-45.066 5.118l-0.161 0.002zM277.333 501.333c-16.497-0.068-32.554-1.773-48.071-4.962l1.564 0.269c-102.578-21.887-178.395-111.744-178.395-219.308 0-123.712 100.288-224 224-224 0.317 0 0.634 0.001 0.951 0.002l-0.049-0c106.334 0.554 195.228 74.554 218.577 173.831l0.303 1.529c3.241 14.615 5.105 31.406 5.12 48.629l0 0.011c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c0-0.042 0-0.092 0-0.142 0-12.201-1.399-24.076-4.046-35.472l0.206 1.054c-16.601-72.026-80.177-124.916-156.106-124.916-88.366 0-160 71.634-160 160 0 76.559 53.771 140.559 125.607 156.295l1.059 0.195c9.967 2.088 21.453 3.326 33.212 3.413l0.068 0c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM746.667 842.667c-0.050 0-0.109 0-0.168 0-49.261 0-89.857-37.104-95.364-84.889l-0.042-0.445-20.053-20.48c-19.786-20.689-46.1-34.988-75.625-39.584l-0.748-0.096c-13.2-1.834-28.451-2.881-43.947-2.881s-30.747 1.047-45.687 3.074l1.74-0.193c-29.746 4.851-55.575 18.955-75.052 39.21l-0.042 0.044-20.053 20.48c-5.412 48.366-46.073 85.624-95.438 85.624-53.019 0-96-42.981-96-96 0-49.364 37.259-90.026 85.188-95.398l0.436-0.040 20.48-20.053c21.010-19.693 35.6-46.009 40.43-75.605l0.103-0.768c1.834-13.2 2.881-28.451 2.881-43.947s-1.047-30.747-3.074-45.687l0.193 1.74c-4.851-29.746-18.955-55.575-39.21-75.052l-0.044-0.042-20.48-20.053c-48.427-5.349-85.756-46.041-85.756-95.452 0-53.019 42.981-96 96-96 49.822 0 90.779 37.952 95.538 86.523l0.031 0.395 20.053 20.48c19.832 20.529 46.145 34.683 75.636 39.161l0.737 0.092c13.2 1.834 28.451 2.881 43.947 2.881s30.747-1.047 45.687-3.074l-1.74 0.193c29.746-4.851 55.575-18.955 75.052-39.21l0.042-0.044 20.053-20.48c5.412-48.366 46.073-85.624 95.438-85.624 53.019 0 96 42.981 96 96 0 49.364-37.259 90.026-85.188 95.398l-0.436 0.040-20.48 20.053c-20.933 19.746-35.501 46.036-40.425 75.588l-0.108 0.785c-1.834 13.2-2.881 28.451-2.881 43.947s1.047 30.747 3.074 45.687l-0.193-1.74c4.851 29.746 18.955 55.575 39.21 75.052l0.044 0.042 20.48 20.053c49.028 4.726 87.051 45.714 87.051 95.582 0 53.019-42.981 96-96 96-0.454 0-0.907-0.003-1.36-0.009l0.069 0.001zM512 629.333c18.583 0.081 36.793 1.319 54.661 3.645l-2.181-0.232c44.166 7.096 82.585 27.783 111.753 57.566l0.034 0.034 29.44 29.44c5.811 5.985 9.394 14.161 9.394 23.174 0 0.253-0.003 0.505-0.008 0.757l0.001-0.037s0 3.84 0 4.693c1.367 16.537 15.125 29.44 31.897 29.44 0.036 0 0.072-0 0.108-0l-0.006 0c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-4.693c-8.833-0.008-16.828-3.594-22.613-9.386l-0-0-29.44-29.44c-29.817-29.202-50.504-67.621-57.448-110.641l-0.152-1.146c-2.046-15.693-3.213-33.844-3.213-52.267s1.168-36.573 3.433-54.381l-0.22 2.114c7.616-43.907 28.539-81.982 58.399-110.881l0.055-0.053 29.44-29.44c5.73-5.815 13.692-9.418 22.494-9.418 0.492 0 0.981 0.011 1.468 0.034l-0.069-0.003h5.12c16.341-1.577 29.014-15.239 29.014-31.86 0-0.049-0-0.098-0-0.147l0 0.008c0-17.673-14.327-32-32-32s-32 14.327-32 32v0c0.045 0.67 0.070 1.453 0.070 2.241 0 9.145-3.425 17.489-9.062 23.821l0.031-0.036-29.44 29.44c-29.153 29.891-67.596 50.599-110.657 57.452l-1.129 0.148c-15.757 2.038-33.982 3.201-52.48 3.201s-36.723-1.163-54.608-3.42l2.128 0.219c-44.122-6.973-82.541-27.516-111.764-57.15l-0.023-0.023-29.44-29.44c-5.811-5.985-9.394-14.161-9.394-23.174 0-0.253 0.003-0.505 0.008-0.757l-0.001 0.037s0-3.84 0-4.693c-1.367-16.537-15.125-29.44-31.897-29.44-0.036 0-0.072 0-0.108 0l0.006-0c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023c0.475 17.775 14.997 32.003 32.842 32.003 0.154 0 0.308-0.001 0.461-0.003l-0.023 0c0.212-0.004 0.462-0.007 0.712-0.007 9.214 0 17.635 3.396 24.079 9.005l-0.044-0.038 29.44 29.44c29.817 29.202 50.504 67.621 57.448 110.641l0.152 1.146c2.046 15.693 3.213 33.844 3.213 52.267s-1.168 36.573-3.433 54.381l0.22-2.114c-6.975 44.259-27.514 82.815-57.159 112.199l-0.014 0.014-29.44 29.44c-6.047 5.812-14.277 9.391-23.343 9.391-0.193 0-0.387-0.002-0.579-0.005l0.029 0h-5.12c-16.341 1.577-29.014 15.239-29.014 31.86 0 0.049 0 0.098 0 0.147l-0-0.008c0 17.673 14.327 32 32 32s32-14.327 32-32v0c-0.045-0.67-0.070-1.453-0.070-2.241 0-9.145 3.425-17.489 9.062-23.821l-0.031 0.036 29.44-29.44c29.153-29.891 67.596-50.599 110.657-57.452l1.129-0.148c15.561-2.215 33.739-3.603 52.196-3.837l0.284-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["technology-2"]},"attrs":[{}],"properties":{"order":6898,"id":66,"name":"technology-2","prevSize":32,"code":60154},"setIdx":0,"setId":0,"iconIdx":506},{"icon":{"paths":["M810.667 557.227h-12.8c-99.303 24.261-180.104 89.14-225.231 175.594l-0.903 1.899-32.427 82.773v-170.667h2.133l67.84-34.133c23.444-11.754 39.255-35.598 39.255-63.136 0-0.154-0-0.308-0.001-0.461l0 0.024v-75.52c0.004-0.268 0.006-0.584 0.006-0.9 0-8.269-1.568-16.172-4.424-23.427l0.151 0.434c52.763-40.884 86.4-104.263 86.4-175.499 0-122.298-99.142-221.44-221.44-221.44s-221.44 99.142-221.44 221.44c0 71.236 33.637 134.616 85.895 175.122l0.505 0.377c-2.435 7.011-3.841 15.092-3.841 23.501 0 0.138 0 0.276 0.001 0.414l-0-0.021v76.8c-0.001 0.13-0.001 0.284-0.001 0.438 0 27.537 15.811 51.382 38.849 62.951l0.405 0.184 67.84 34.133v135.253l-18.773-47.787c-46.029-88.354-126.83-153.232-223.776-177.005l-2.358-0.489c-1.983-0.201-4.285-0.315-6.613-0.315s-4.631 0.114-6.901 0.338l0.287-0.023c-31.98 0.696-57.638 26.785-57.638 58.867 0 4.388 0.48 8.663 1.39 12.777l-0.073-0.391c34.174 139.927 150.63 245.010 294.069 261.82l1.611 0.154h18.773v49.067c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v-47.787l32.427-2.133c145.050-16.963 261.506-122.046 295.192-259.617l0.488-2.356c0.846-3.741 1.331-8.037 1.331-12.447 0-31.486-24.714-57.199-55.801-58.801l-0.143-0.006zM221.44 617.387c80.15 19.979 145.469 72.043 182.725 141.421l0.742 1.513 25.173 64.427c-102.914-25.507-182.509-104.676-208.215-205.396l-0.425-1.964zM346.027 276.053c0-89.308 72.399-161.707 161.707-161.707s161.707 72.399 161.707 161.707c0 89.308-72.399 161.707-161.707 161.707v0c-0.001 0-0.003 0-0.005 0-89.308 0-161.707-72.399-161.707-161.707 0-0.45 0.002-0.9 0.006-1.349l-0 0.069zM434.347 561.92c-4.532-1.765-7.685-6.095-7.685-11.161 0-0.126 0.002-0.252 0.006-0.377l-0 0.018v-69.12c23.66 9.453 51.083 14.935 79.787 14.935s56.126-5.482 81.279-15.457l-1.492 0.522v69.12c-0.132 4.437-2.663 8.253-6.336 10.209l-0.064 0.031-68.267 34.133c-1.478 0.824-3.242 1.309-5.12 1.309s-3.642-0.485-5.174-1.337l0.054 0.028zM597.333 824.747l25.173-64.427c37.951-70.771 103.085-122.792 181.080-142.513l1.96-0.42c-26.237 102.488-105.572 181.538-206.248 206.94l-1.965 0.42z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["technology-3"]},"attrs":[{}],"properties":{"order":6899,"id":65,"name":"technology-3","prevSize":32,"code":60155},"setIdx":0,"setId":0,"iconIdx":507},{"icon":{"paths":["M592.64 840.107v98.56c-0.241 17.017-14.092 30.72-31.144 30.72-0.001 0-0.002-0-0.003-0l-70.4 0c-0.763 0.024-1.66 0.038-2.56 0.038-47.128 0-85.333-38.205-85.333-85.333 0-0.014 0-0.027 0-0.041l-0 0.002v-26.453c-14.689-4.924-26.68-9.831-38.305-15.383l2.038 0.876-18.773 18.347c-16.161 15.276-38.024 24.667-62.080 24.667s-45.919-9.391-62.123-24.707l0.043 0.040-50.773-50.773c-15.979-15.525-25.894-37.218-25.894-61.227s9.915-45.701 25.873-61.207l0.020-0.020 18.773-18.347c-5.547-11.947-10.667-23.893-14.933-35.84h-26.453c-0.011 0-0.024 0-0.037 0-47.642 0-86.431-37.905-87.853-85.202l-0.003-0.131v-72.107c1.425-47.428 40.214-85.333 87.856-85.333 0.013 0 0.026 0 0.039 0l26.451-0c4.267-11.947 9.387-23.893 14.933-35.84l-18.773-18.347c-16.375-15.579-26.56-37.533-26.56-61.867s10.185-46.288 26.524-61.833l0.036-0.034 50.773-50.773c16.161-15.276 38.024-24.667 62.080-24.667s45.919 9.391 62.123 24.707l-0.043-0.040 18.773 18.347c9.586-4.675 21.577-9.583 33.889-13.799l2.378-0.708v-26.453c-0-0.011-0-0.025-0-0.038 0-47.128 38.205-85.333 85.333-85.333 0.9 0 1.797 0.014 2.691 0.042l-0.131-0.003h70.4c0.001-0 0.002-0 0.003-0 17.052 0 30.903 13.703 31.143 30.697l0 0.023v101.547c-0.239 16.783-13.9 30.296-30.717 30.296-0.151 0-0.302-0.001-0.452-0.003l0.023 0c-0.127 0.002-0.277 0.003-0.427 0.003-16.731 0-30.293-13.563-30.293-30.293 0-0.001 0-0.002 0-0.003l-0 0v-72.533h-39.68c-0.127-0.002-0.277-0.004-0.427-0.004-14.138 0-25.6 11.462-25.6 25.6 0 0.001 0 0.002 0 0.004l-0-0v48.64c-0.239 13.953-9.616 25.653-22.393 29.385l-0.22 0.055c-25.241 7.112-47.194 16.275-67.722 27.691l1.589-0.811c-4.020 2.027-8.761 3.214-13.78 3.214-8.202 0-15.663-3.17-21.225-8.352l0.019 0.017-34.56-34.133c-4.828-4.392-11.273-7.082-18.347-7.082s-13.519 2.689-18.369 7.101l0.022-0.020-52.907 50.347c-4.758 4.586-7.713 11.015-7.713 18.133s2.955 13.547 7.705 18.126l0.008 0.007 34.56 34.133c5.305 5.45 8.576 12.903 8.576 21.12 0 5.751-1.603 11.128-4.385 15.708l0.076-0.134c-11.055 18.883-20.375 40.708-26.833 63.73l-0.474 1.976c-4.099 12.874-15.893 22.059-29.852 22.187l-0.015 0h-48.213c-0.127-0.002-0.277-0.004-0.427-0.004-14.138 0-25.6 11.462-25.6 25.6 0 0.001 0 0.002 0 0.004l-0-0v70.827c-0 0.001-0 0.002-0 0.004 0 14.138 11.462 25.6 25.6 25.6 0.15 0 0.3-0.001 0.449-0.004l-0.022 0h49.067c13.974 0.128 25.768 9.313 29.805 21.963l0.062 0.224c6.642 24.979 15.686 46.825 27.18 67.1l-0.727-1.393c2.511 4.318 3.994 9.503 3.994 15.034 0 8.485-3.488 16.154-9.108 21.654l-0.005 0.005-34.56 34.133c-4.758 4.586-7.713 11.015-7.713 18.133s2.955 13.547 7.705 18.126l0.008 0.007 50.773 50.347c4.828 4.392 11.273 7.082 18.347 7.082s13.519-2.689 18.369-7.101l-0.022 0.020 34.56-34.133c5.63-5.598 13.391-9.059 21.96-9.059 5.567 0 10.793 1.461 15.315 4.019l-0.155-0.081c18.939 10.605 40.893 19.768 63.937 26.344l2.196 0.536c12.997 3.787 22.375 15.487 22.613 29.413l0 0.027v48.64c-0 0.001-0 0.002-0 0.004 0 14.138 11.462 25.6 25.6 25.6 0.15 0 0.3-0.001 0.449-0.004l-0.022 0h39.68v-69.547c-0-0.001-0-0.002-0-0.003 0-16.731 13.563-30.293 30.293-30.293 0.15 0 0.3 0.001 0.449 0.003l-0.023-0c0.383-0.017 0.832-0.027 1.283-0.027 16.826 0 30.492 13.527 30.717 30.299l0 0.021zM955.307 498.773c-1.24 53-44.499 95.491-97.682 95.491-39.891 0-74.199-23.906-89.379-58.174l-0.247-0.624c-2.751 1.306-5.972 2.087-9.371 2.133l-0.016 0h-104.96c-13.165 38.63-49.132 65.92-91.474 65.92-53.255 0-96.427-43.172-96.427-96.427s43.172-96.427 96.427-96.427c42.341 0 78.309 27.29 91.272 65.241l0.201 0.679h109.653c10.403-43.38 48.856-75.125 94.723-75.125 53.437 0 96.811 43.086 97.276 96.414l0 0.044zM597.333 506.453c-0.239-19.375-16.002-34.989-35.411-34.989-0.151 0-0.302 0.001-0.452 0.003l0.023-0c-1.165-0.136-2.514-0.213-3.881-0.213-19.558 0-35.413 15.855-35.413 35.413s15.855 35.413 35.413 35.413c1.367 0 2.717-0.077 4.044-0.228l-0.162 0.015c0.001 0 0.002 0 0.003 0 19.644 0 35.597-15.804 35.837-35.391l0-0.023zM893.44 498.347c0.002-0.127 0.003-0.277 0.003-0.427 0-19.558-15.855-35.413-35.413-35.413s-35.413 15.855-35.413 35.413c0 19.557 15.854 35.412 35.411 35.413l0 0c0.001 0 0.002 0 0.003 0 19.408 0 35.17-15.613 35.411-34.964l0-0.023zM961.28 810.667c0 57.025-46.228 103.253-103.253 103.253s-103.253-46.228-103.253-103.253h0c0.149-9.324 1.541-18.262 4.018-26.738l-0.178 0.712-89.6-78.080h-135.68c-2.766 0.136-6.008 0.213-9.267 0.213-111.223 0-201.387-90.164-201.387-201.387s90.164-201.387 201.387-201.387c3.259 0 6.501 0.077 9.722 0.231l-0.455-0.017h123.307l104.107-85.333c-3.534-9.488-5.701-20.449-5.971-31.88l-0.002-0.12c-0-57.025 46.228-103.253 103.253-103.253s103.253 46.228 103.253 103.253v0c-0.722 56.472-46.67 101.973-103.245 101.973-0.003 0-0.006-0-0.008-0l0 0c-0 0-0.001 0-0.001 0-23.028 0-44.259-7.698-61.258-20.66l0.246 0.18-109.227 90.453c-5.247 4.5-12.115 7.243-19.624 7.253l-0.002 0h-134.827c-2.308-0.136-5.007-0.213-7.724-0.213-77.29 0-139.947 62.656-139.947 139.947s62.656 139.947 139.947 139.947c2.717 0 5.416-0.077 8.095-0.23l-0.371 0.017h149.333c7.826 0.229 14.942 3.090 20.536 7.725l-0.056-0.045 90.88 79.787c17.545-14.859 40.435-23.894 65.435-23.894 0.096 0 0.191 0 0.286 0l-0.015-0c55.794 0.712 100.834 45.753 101.546 101.479l0.001 0.068zM816.64 185.6c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667c0-23.564-19.103-42.667-42.667-42.667v0c-23.564 0-42.667 19.103-42.667 42.667v0zM899.413 810.667c0.034-0.637 0.053-1.383 0.053-2.133 0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.545 19.072 42.636 42.61 42.667l0.003 0c0.016 0 0.035 0 0.053 0 22.814 0 41.446-17.905 42.609-40.43l0.004-0.104z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["technology-4"]},"attrs":[{}],"properties":{"order":6900,"id":64,"name":"technology-4","prevSize":32,"code":60156},"setIdx":0,"setId":0,"iconIdx":508},{"icon":{"paths":["M605.013 311.467h-194.133c-0-0-0.001-0-0.001-0-57.111 0-103.437 46.176-103.679 103.23l-0 0.023v194.56c0.242 57.077 46.568 103.253 103.679 103.253 0 0 0.001-0 0.001-0l194.133 0c0 0 0.001 0 0.001 0 57.111 0 103.437-46.176 103.679-103.23l0-0.023v-194.56c-0.242-57.077-46.568-103.253-103.679-103.253-0 0-0.001 0-0.001 0l0-0zM637.867 610.133c-0.241 17.96-14.856 32.427-32.851 32.427-0.001 0-0.002-0-0.003-0l-194.133 0c-0.001 0-0.002 0-0.003 0-17.994 0-32.61-14.467-32.85-32.404l-0-0.023v-195.413c1.153-17.203 15.39-30.72 32.784-30.72 0.024 0 0.049 0 0.073 0l-0.004-0h194.133c0.001-0 0.002-0 0.003-0 17.994 0 32.61 14.467 32.85 32.404l0 0.023zM936.533 572.16h-64.853v-119.467h63.573c19.558 0 35.413-15.855 35.413-35.413s-15.855-35.413-35.413-35.413h-63.573v-59.307c0-94.257-76.41-170.667-170.667-170.667v0h-58.88v-63.147c0-19.558-15.855-35.413-35.413-35.413s-35.413 15.855-35.413 35.413v-0 64.853h-118.613v-64.853c-3.991-15.51-17.852-26.787-34.347-26.787s-30.355 11.277-34.293 26.541l-0.054 0.246v64.853h-62.72c-94.257-0-170.667 76.41-170.667 170.667v0 59.733h-61.867c-19.558 0-35.413 15.855-35.413 35.413s15.855 35.413 35.413 35.413h63.573v118.613h-63.573c-19.558 0-35.413 15.855-35.413 35.413s15.855 35.413 35.413 35.413h63.573v59.733c0 94.257 76.41 170.667 170.667 170.667v0h61.013v62.293c0 19.558 15.855 35.413 35.413 35.413s35.413-15.855 35.413-35.413v0-64h118.613v62.293c0 19.558 15.855 35.413 35.413 35.413s35.413-15.855 35.413-35.413v-62.293h60.587c94.257 0 170.667-76.41 170.667-170.667v0-60.16h63.573c19.558 0 35.413-15.855 35.413-35.413s-15.855-35.413-35.413-35.413h0zM800.853 704c-0.241 54.1-44.033 97.892-98.11 98.133l-0.023 0h-381.44c-54.1-0.241-97.892-44.033-98.133-98.11l-0-0.023v-381.44c0-54.198 43.936-98.133 98.133-98.133l-0-0h381.44c54.198 0 98.133 43.936 98.133 98.133v-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["technology"]},"attrs":[{}],"properties":{"order":6901,"id":63,"name":"technology","prevSize":32,"code":60157},"setIdx":0,"setId":0,"iconIdx":509},{"icon":{"paths":["M650.667 74.667h-277.333c-82.475 0-149.333 66.859-149.333 149.333v0 576c0 82.475 66.859 149.333 149.333 149.333v0h277.333c82.475 0 149.333-66.859 149.333-149.333v0-576c0-82.475-66.859-149.333-149.333-149.333v0zM736 800c0 47.128-38.205 85.333-85.333 85.333v0h-277.333c-47.128 0-85.333-38.205-85.333-85.333v0-576c0-47.128 38.205-85.333 85.333-85.333v0h96v10.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-10.667h96c47.128 0 85.333 38.205 85.333 85.333v0zM619.947 360.96c-28.651-21.776-64.923-34.886-104.256-34.886-95.67 0-173.227 77.556-173.227 173.227 0 43.069 15.718 82.467 41.73 112.771l-0.194-0.231 79.36 88.747c12.379 13.604 30.157 22.108 49.92 22.108s37.541-8.505 49.871-22.054l0.049-0.054 76.8-88.747c26.511-30.497 42.67-70.607 42.67-114.491 0-0.399-0.001-0.798-0.004-1.197l0 0.061c0.017-0.904 0.027-1.971 0.027-3.040 0-53.178-24.322-100.676-62.449-131.976l-0.298-0.238zM593.493 569.173l-85.333 88.747-79.36-88.747c-17.221-19.51-27.734-45.296-27.734-73.537 0-8.412 0.933-16.607 2.701-24.486l-0.14 0.743c9.33-40.522 40.342-71.96 79.892-81.763l0.748-0.157c8.308-1.833 17.875-2.917 27.682-2.986l0.051-0c0.122-0 0.266-0.001 0.41-0.001 25.646 0 49.186 9.014 67.625 24.047l-0.194-0.153c25.875 19.79 42.454 50.604 42.667 85.299l0 0.035c-0.359 28.22-11.323 53.811-29.081 73.034l0.068-0.074zM564.907 496.213c0 29.22-23.687 52.907-52.907 52.907s-52.907-23.687-52.907-52.907c0-29.22 23.687-52.907 52.907-52.907v0c29.123 0.24 52.667 23.784 52.907 52.884l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["telephone-geolocation"]},"attrs":[{}],"properties":{"order":6902,"id":62,"name":"telephone-geolocation","prevSize":32,"code":60158},"setIdx":0,"setId":0,"iconIdx":510},{"icon":{"paths":["M426.667 53.333h-256c-41.193 0.058-74.565 33.465-74.565 74.667 0 29.57 17.189 55.125 42.12 67.219l0.444 0.194v615.253c0 88.366 71.634 160 160 160s160-71.634 160-160v0-615.253c25.376-12.288 42.565-37.843 42.565-67.413 0-41.201-33.371-74.608-74.559-74.667l-0.006-0zM170.667 117.333h256c5.891 0 10.667 4.776 10.667 10.667s-4.776 10.667-10.667 10.667v0c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023v181.333h-192v-181.333c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0c-5.891 0-10.667-4.776-10.667-10.667s4.776-10.667 10.667-10.667v0zM394.667 810.667c0 53.019-42.981 96-96 96s-96-42.981-96-96v0-394.667h192zM853.333 53.333h-256c-41.193 0.058-74.565 33.465-74.565 74.667 0 29.57 17.189 55.125 42.12 67.219l0.444 0.194v615.253c0 88.366 71.634 160 160 160s160-71.634 160-160v0-615.253c25.376-12.288 42.565-37.843 42.565-67.413 0-41.201-33.371-74.608-74.559-74.667l-0.006-0zM597.333 117.333h256c5.891 0 10.667 4.776 10.667 10.667s-4.776 10.667-10.667 10.667v0c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023v394.667h-192v-394.667c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0c-5.891 0-10.667-4.776-10.667-10.667s4.776-10.667 10.667-10.667v0zM821.333 810.667c0 53.019-42.981 96-96 96s-96-42.981-96-96v0-181.333h192z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["test-tubes"]},"attrs":[{}],"properties":{"order":6903,"id":61,"name":"test-tubes","prevSize":32,"code":60159},"setIdx":0,"setId":0,"iconIdx":511},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM747.947 405.333c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-407.893c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.893c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM918.613 618.667c0-17.673-14.327-32-32-32v0h-747.947c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h746.667c17.673 0 32-14.327 32-32v0zM747.947 832c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-407.893c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.893c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-align-center"]},"attrs":[{}],"properties":{"order":6904,"id":60,"name":"text-align-center","prevSize":32,"code":60160},"setIdx":0,"setId":0,"iconIdx":512},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM917.333 405.333c0-17.673-14.327-32-32-32v0h-746.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h746.667c17.673 0 32-14.327 32-32v0zM917.333 618.667c0-17.673-14.327-32-32-32v0h-746.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h746.667c17.673 0 32-14.327 32-32v0zM578.133 832c0-17.673-14.327-32-32-32v0h-407.467c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.467c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-align-justify-center"]},"attrs":[{}],"properties":{"order":6905,"id":59,"name":"text-align-justify-center","prevSize":32,"code":60161},"setIdx":0,"setId":0,"iconIdx":513},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM578.133 405.333c0-17.673-14.327-32-32-32v0h-407.467c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.467c17.673 0 32-14.327 32-32v0zM919.467 618.667c0-17.673-14.327-32-32-32v0h-748.8c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h746.667c17.673 0 32-14.327 32-32v0zM580.267 832c0-17.673-14.327-32-32-32v0h-409.6c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.467c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-align-left"]},"attrs":[{}],"properties":{"order":6906,"id":58,"name":"text-align-left","prevSize":32,"code":60162},"setIdx":0,"setId":0,"iconIdx":514},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM917.333 405.333c0-17.673-14.327-32-32-32v0h-407.467c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.467c17.673 0 32-14.327 32-32v0zM917.333 618.667c0-17.673-14.327-32-32-32v0h-746.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h746.667c17.673 0 32-14.327 32-32v0zM917.333 832c0-17.673-14.327-32-32-32v0h-407.467c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.467c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-align-right"]},"attrs":[{}],"properties":{"order":6907,"id":57,"name":"text-align-right","prevSize":32,"code":60163},"setIdx":0,"setId":0,"iconIdx":515},{"icon":{"paths":["M642.133 485.973c19.61-21.977 31.594-51.125 31.594-83.073 0-0.795-0.007-1.588-0.022-2.379l0.002 0.119c0-70.692-57.308-128-128-128v0h-204.373c-17.673 0-32 14.327-32 32v0 411.307c0 17.673 14.327 32 32 32v0h230.4c0.241 0.001 0.526 0.002 0.811 0.002 77.762 0 140.8-63.038 140.8-140.8 0-52.514-28.749-98.314-71.368-122.518l-0.697-0.364zM374.187 338.347h170.667c32.253 3.839 57.024 31.027 57.024 64s-24.771 60.161-56.719 63.97l-0.306 0.030h-170.667zM572.587 685.653h-198.4v-154.453h198.4c42.651 0 77.227 34.576 77.227 77.227s-34.576 77.227-77.227 77.227v0zM684.8 53.333h-343.467c-0.508-0.003-1.11-0.005-1.712-0.005-158.115 0-286.293 128.178-286.293 286.293 0 0.602 0.002 1.203 0.006 1.804l-0-0.093v345.6c1.446 157.013 129.065 283.738 286.282 283.738 0.604 0 1.208-0.002 1.811-0.006l-0.093 0h345.6c157.782-0.242 285.624-128.084 285.867-285.843l0-0.024v-343.467c0.003-0.508 0.005-1.11 0.005-1.712 0-158.115-128.178-286.293-286.293-286.293-0.602 0-1.203 0.002-1.804 0.006l0.093-0zM906.667 684.8c-0.242 122.436-99.431 221.624-221.844 221.867l-0.023 0h-343.467c-122.436-0.242-221.624-99.431-221.867-221.844l-0-0.023v-343.467c-0.004-0.507-0.007-1.107-0.007-1.707 0-122.621 99.285-222.054 221.85-222.293l0.023-0h345.6c121.666 1.442 219.74 100.407 219.74 222.279 0 0.605-0.002 1.21-0.007 1.814l0.001-0.092z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-bold"]},"attrs":[{}],"properties":{"order":6908,"id":56,"name":"text-bold","prevSize":32,"code":60164},"setIdx":0,"setId":0,"iconIdx":516},{"icon":{"paths":["M878.933 251.733h-485.12c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h485.12c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM690.773 433.067c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-264.96c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h264.96c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM910.933 646.4c0-17.673-14.327-32-32-32v0h-485.12c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h485.12c17.673 0 32-14.327 32-32v0zM690.773 859.733c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-264.96c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h264.96c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM200.533 164.267c-30.633 0-55.467 24.833-55.467 55.467s24.833 55.467 55.467 55.467c30.633 0 55.467-24.833 55.467-55.467h0c-0-30.633-24.833-55.467-55.467-55.467l0-0zM200.533 590.933c-30.633 0-55.467 24.833-55.467 55.467s24.833 55.467 55.467 55.467c30.633 0 55.467-24.833 55.467-55.467h0c-0-30.633-24.833-55.467-55.467-55.467h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-circle"]},"attrs":[{}],"properties":{"order":6909,"id":55,"name":"text-circle","prevSize":32,"code":60165},"setIdx":0,"setId":0,"iconIdx":517},{"icon":{"paths":["M684.8 42.667h-343.467c-157.782 0.242-285.624 128.084-285.867 285.843l-0 0.024v345.6c1.447 156.865 128.83 283.498 285.844 283.733l0.023 0h345.6c157.782-0.242 285.624-128.084 285.867-285.843l0-0.024v-345.6c-1.446-157.013-129.065-283.738-286.282-283.738-0.604 0-1.208 0.002-1.811 0.006l0.093-0zM906.667 674.133c-0.483 122.339-99.528 221.384-221.82 221.867l-0.046 0h-343.467c-122.339-0.483-221.384-99.528-221.867-221.82l-0-0.046v-347.733c0.242-122.436 99.431-221.624 221.844-221.867l0.023-0h345.6c122.436 0.242 221.624 99.431 221.867 221.844l0 0.023zM682.667 306.347c0 17.673-14.327 32-32 32v0h-77.653l-57.173 347.307h74.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-210.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h71.253l57.173-347.307h-67.84c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h210.773c17.394 0.471 31.343 14.569 31.573 31.978l0 0.022z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-italic"]},"attrs":[{}],"properties":{"order":6910,"id":54,"name":"text-italic","prevSize":32,"code":60166},"setIdx":0,"setId":0,"iconIdx":518},{"icon":{"paths":["M875.947 275.627h-485.12c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h485.12c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM687.36 456.96c0.002-0.128 0.003-0.279 0.003-0.43 0-17.437-14.136-31.573-31.573-31.573-0.151 0-0.302 0.001-0.452 0.003l0.023-0h-264.533c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h264.533c17.673 0 32-14.327 32-32v0zM907.947 670.293c0-17.673-14.327-32-32-32v0h-485.12c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h485.12c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM687.36 883.627c0.002-0.128 0.003-0.279 0.003-0.43 0-17.437-14.136-31.573-31.573-31.573-0.151 0-0.302 0.001-0.452 0.003l0.023-0h-264.533c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h264.533c17.673 0 32-14.327 32-32v0zM252.16 346.453v-206.080c-0.146-13.955-9.085-25.785-21.533-30.223l-0.227-0.070c-3.036-1.053-6.534-1.661-10.175-1.661-10.224 0-19.328 4.795-25.186 12.258l-0.052 0.069-72.107 92.587c-3.777 5.14-6.044 11.594-6.044 18.577 0 9.635 4.315 18.261 11.119 24.053l0.045 0.037c5.146 3.687 11.569 5.895 18.508 5.895 9.626 0 18.26-4.251 24.126-10.977l0.033-0.038 14.933-18.773v114.347c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM294.827 773.12c0-17.673-14.327-32-32-32v0h-42.667l61.013-102.827c2.848-4.625 4.579-10.205 4.693-16.182l0-0.031c1.221-5.41 1.92-11.623 1.92-18 0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 6.377 0.699 12.59 2.026 18.567l-0.106-0.567c0 17.673 14.327 32 32 32s32-14.327 32-32v0c-0.029-0.393-0.045-0.852-0.045-1.314 0-10.604 8.596-19.2 19.2-19.2 8.638 0 15.944 5.704 18.356 13.552l0.036 0.136-85.333 141.653c-2.695 4.59-4.287 10.109-4.287 16s1.592 11.41 4.369 16.151l-0.082-0.151c5.711 9.761 16.143 16.213 28.082 16.213 0.027 0 0.055-0 0.082-0l-0.004 0h97.28c0.148 0.003 0.324 0.004 0.499 0.004 17.437 0 31.573-14.136 31.573-31.573 0-0.752-0.026-1.498-0.078-2.237l0.006 0.1z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-number"]},"attrs":[{}],"properties":{"order":6911,"id":53,"name":"text-number","prevSize":32,"code":60167},"setIdx":0,"setId":0,"iconIdx":519},{"icon":{"paths":["M684.8 53.333h-343.467c-0.508-0.003-1.11-0.005-1.712-0.005-158.115 0-286.293 128.178-286.293 286.293 0 0.602 0.002 1.203 0.006 1.804l-0-0.093v345.6c1.446 157.013 129.065 283.738 286.282 283.738 0.604 0 1.208-0.002 1.811-0.006l-0.093 0h345.6c157.782-0.242 285.624-128.084 285.867-285.843l0-0.024v-343.467c0.003-0.508 0.005-1.11 0.005-1.712 0-158.115-128.178-286.293-286.293-286.293-0.602 0-1.203 0.002-1.804 0.006l0.093-0zM906.667 684.8c-0.242 122.436-99.431 221.624-221.844 221.867l-0.023 0h-343.467c-122.436-0.242-221.624-99.431-221.867-221.844l-0-0.023v-343.467c-0.004-0.507-0.007-1.107-0.007-1.707 0-122.621 99.285-222.054 221.85-222.293l0.023-0h345.6c121.666 1.442 219.74 100.407 219.74 222.279 0 0.605-0.002 1.21-0.007 1.814l0.001-0.092zM791.040 544c0 17.673-14.327 32-32 32v0h-110.507c2.916 9.698 4.625 20.849 4.693 32.39l0 0.037c0 70.692-57.308 128-128 128v0h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h128c0.086 0 0.188 0.001 0.29 0.001 35.346 0 64-28.654 64-64 0-11.956-3.278-23.146-8.985-32.721l0.162 0.293h-315.733c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h104.96c-27.447-23.371-44.849-57.83-45.226-96.362l-0-0.065c-0-70.692 57.308-128 128-128v0h128c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-128c-2.222-0.272-4.794-0.427-7.402-0.427-35.582 0-64.427 28.845-64.427 64.427s28.845 64.427 64.427 64.427c2.608 0 5.181-0.155 7.708-0.456l-0.306 0.030h72.107c0.198-0.001 0.433-0.002 0.667-0.002 32.527 0 62.22 12.133 84.801 32.119l-0.135-0.117h150.187c17.159 0.932 30.72 15.073 30.72 32.382 0 0.016-0 0.032-0 0.047l0-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-strikethrough"]},"attrs":[{}],"properties":{"order":6912,"id":52,"name":"text-strikethrough","prevSize":32,"code":60168},"setIdx":0,"setId":0,"iconIdx":520},{"icon":{"paths":["M684.8 970.667h-343.467c-157.782-0.242-285.624-128.084-285.867-285.843l-0-0.024v-343.467c-0.003-0.507-0.005-1.107-0.005-1.707 0-157.967 127.938-286.053 285.849-286.293l0.023-0h345.6c157.013 1.446 283.738 129.065 283.738 286.282 0 0.604-0.002 1.208-0.006 1.811l0-0.093v345.6c-1.447 156.865-128.83 283.498-285.844 283.733l-0.023 0zM341.333 117.333c-0.509-0.004-1.111-0.007-1.713-0.007-122.769 0-222.293 99.524-222.293 222.293 0 0.602 0.002 1.204 0.007 1.805l-0.001-0.092v345.6c1.442 121.666 100.407 219.74 222.279 219.74 0.605 0 1.21-0.002 1.814-0.007l-0.092 0.001h345.6c122.436-0.242 221.624-99.431 221.867-221.844l0-0.023v-343.467c-0.242-122.436-99.431-221.624-221.844-221.867l-0.023-0zM697.173 760.32c0.002-0.128 0.003-0.279 0.003-0.43 0-17.437-14.136-31.573-31.573-31.573-0.151 0-0.302 0.001-0.452 0.003l0.023-0h-304.213c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h302.080c17.673 0 32-14.327 32-32v0zM697.173 474.027v-210.347c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 210.347c0.032 1.070 0.050 2.329 0.050 3.593 0 68.309-53.508 124.12-120.897 127.806l-0.327 0.014c-66.755-4.797-119.094-60.131-119.094-127.69 0-1.309 0.020-2.614 0.059-3.914l-0.005 0.191v-210.347c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 210.347c-0.062 1.811-0.098 3.941-0.098 6.078 0 102.408 81.26 185.838 182.818 189.326l0.32 0.009c101.878-3.497 183.138-86.927 183.138-189.335 0-2.137-0.035-4.266-0.106-6.387l0.008 0.309z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-underline"]},"attrs":[{}],"properties":{"order":6913,"id":51,"name":"text-underline","prevSize":32,"code":60169},"setIdx":0,"setId":0,"iconIdx":521},{"icon":{"paths":["M512 970.667c-0.912 0.027-1.986 0.042-3.063 0.042-32.547 0-61.832-13.962-82.193-36.224l-0.077-0.085c-20.373-24.092-32.757-55.509-32.757-89.819 0-3.376 0.12-6.724 0.356-10.040l-0.025 0.446v-578.987h-152.747c-2.099 0.127-4.554 0.2-7.025 0.2-29.812 0-57.161-10.543-78.523-28.104l0.215 0.171c-19.7-17.799-32.027-43.44-32.027-71.959 0-0.802 0.010-1.602 0.029-2.399l-0.002 0.118c-0.027-0.847-0.042-1.843-0.042-2.842 0-29.127 12.858-55.251 33.207-73.006l0.115-0.098c21.383-16.625 48.613-26.653 78.184-26.653 2.515 0 5.013 0.073 7.492 0.216l-0.343-0.016h538.88c1.675-0.078 3.639-0.123 5.613-0.123 30.258 0 58.063 10.499 79.973 28.052l-0.253-0.196c19.708 17.942 32.028 43.701 32.028 72.339 0 0.819-0.010 1.635-0.030 2.449l0.002-0.121c0.013 0.582 0.020 1.267 0.020 1.954 0 28.918-12.673 54.875-32.769 72.622l-0.104 0.090c-21.567 17.112-49.181 27.453-79.211 27.453-2.154 0-4.295-0.053-6.422-0.158l0.299 0.012h-153.6v578.987c0.317 3.566 0.498 7.715 0.498 11.906 0 33.319-11.435 63.967-30.594 88.235l0.229-0.301c-20.204 22.102-49.161 35.912-81.343 35.912-1.403 0-2.8-0.026-4.191-0.078l0.201 0.006zM241.493 117.333c-1.622-0.14-3.51-0.219-5.416-0.219-13.888 0-26.789 4.226-37.487 11.463l0.236-0.151c-6.891 5.905-11.231 14.618-11.231 24.344 0 1.043 0.050 2.075 0.147 3.092l-0.010-0.13c-0.054 0.713-0.085 1.545-0.085 2.384 0 9.679 4.132 18.394 10.729 24.475l0.023 0.021c10.421 7.092 23.285 11.323 37.137 11.323 1.946 0 3.873-0.084 5.777-0.247l-0.248 0.017h217.173v640c-0.242 2.368-0.38 5.118-0.38 7.9 0 18.199 5.904 35.020 15.901 48.65l-0.161-0.23c8.968 9.499 21.647 15.412 35.706 15.412 0.797 0 1.59-0.019 2.379-0.057l-0.111 0.004c0.811 0.050 1.759 0.079 2.714 0.079 13.578 0 25.809-5.766 34.379-14.983l0.027-0.029c9.578-13.603 15.307-30.515 15.307-48.766 0-2.81-0.136-5.588-0.401-8.329l0.027 0.348v-640h217.6c1.594 0.138 3.448 0.217 5.322 0.217 13.979 0 26.931-4.394 37.552-11.875l-0.207 0.138c6.858-5.829 11.181-14.462 11.181-24.104 0-0.827-0.032-1.646-0.094-2.457l0.007 0.108c0.162-1.241 0.254-2.676 0.254-4.133 0-9.192-3.68-17.525-9.646-23.606l0.005 0.005c-10.581-7.070-23.595-11.282-37.591-11.282-1.786 0-3.556 0.069-5.308 0.203l0.232-0.014z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text"]},"attrs":[{}],"properties":{"order":6914,"id":50,"name":"text","prevSize":32,"code":60170},"setIdx":0,"setId":0,"iconIdx":522},{"icon":{"paths":["M768 315.307l-60.16-59.307c-13.502-13.45-32.126-21.766-52.693-21.766s-39.192 8.316-52.696 21.768l0.002-0.002-121.173 119.893c-13.682 13.475-22.159 32.201-22.159 52.907s8.477 39.432 22.149 52.897l0.009 0.009 60.587 60.587c13.501 13.447 32.124 21.76 52.688 21.76 0.077 0 0.154-0 0.231-0l-0.012 0c0.043 0 0.095 0 0.146 0 20.453 0 38.963-8.319 52.331-21.757l0.003-0.003 120.747-121.173c13.475-13.57 21.803-32.266 21.803-52.907s-8.328-39.337-21.807-52.911l0.004 0.004zM725.333 375.893l-121.6 121.173c-5.12 5.547-9.387 5.547-14.933 0l-60.587-60.587c-2.069-1.922-3.372-4.645-3.413-7.672l-0-0.008c-0-0.014-0-0.031-0-0.047 0-3.028 1.314-5.749 3.404-7.624l0.010-0.008 119.467-122.453c1.136-0.473 2.456-0.747 3.84-0.747s2.704 0.275 3.908 0.772l-0.068-0.025c0.060-0.001 0.131-0.002 0.202-0.002 2.766 0 5.265 1.145 7.049 2.986l0.003 0.003 62.72 58.88c1.82 2.029 2.933 4.724 2.933 7.68s-1.113 5.651-2.943 7.691l0.009-0.011zM956.16 230.827c-40.589-66.944-95.189-121.545-160.041-160.953l-2.092-1.181c-17.073-10.255-37.676-16.32-59.695-16.32-33.179 0-63.142 13.772-84.484 35.911l-0.034 0.036-15.36 14.933-170.667 170.667c-29.239 28.226-54.439 60.355-74.829 95.613l-1.117 2.094-96.427 173.653c-17.495 31.468-38.044 58.543-61.864 82.344l-50.776 50.776-90.88 89.6c-21.42 21.473-34.665 51.11-34.665 83.84 0 65.566 53.152 118.719 118.719 118.719 32.836 0 62.559-13.331 84.051-34.876l0.002-0.002 88.747-90.88 50.773-50.773c24.008-23.588 51.035-44.229 80.416-61.261l1.931-1.033 173.653-96.427c36.823-20.582 68.52-44.665 96.432-72.538l-0.005 0.005 185.6-185.6c13.992-13.836 24.601-31.062 30.496-50.348l0.224-0.852c3.708-10.921 5.848-23.501 5.848-36.581 0-21.56-5.815-41.761-15.962-59.121l0.3 0.556zM901.12 263.68c2.638 4.551 4.702 9.83 5.908 15.427l0.065 0.359c0.1 0.769 0.157 1.658 0.157 2.56s-0.057 1.791-0.168 2.664l0.011-0.104c0.204 1.728 0.32 3.731 0.32 5.76s-0.116 4.032-0.342 6l0.022-0.24c0.086 0.895 0.134 1.935 0.134 2.987s-0.049 2.092-0.144 3.118l0.010-0.132c-1.134 4.162-2.299 7.569-3.644 10.883l0.231-0.643c-0.924 2.138-1.923 3.96-3.068 5.676l0.081-0.129c-0.755 1.461-1.605 2.72-2.583 3.868l0.023-0.028-196.267-193.707 7.68-5.12h3.84c5.535-2.427 11.987-3.84 18.768-3.84 0.002 0 0.003 0 0.005 0l-0-0c1.346-0.203 2.9-0.319 4.48-0.319s3.134 0.116 4.652 0.34l-0.172-0.021h5.12c5.021 1.338 9.42 3.236 13.456 5.675l-0.229-0.129c57.898 34.559 105.069 81.457 138.945 137.315l1.002 1.779zM209.067 890.453c-9.898 9.314-23.267 15.037-37.973 15.037s-28.075-5.723-38.002-15.063l0.028 0.027c-9.704-9.725-15.705-23.148-15.705-37.973s6.001-28.249 15.706-37.974l-0.001 0.001 68.267-68.267 75.52 75.947zM702.72 517.547c-23.804 23.823-50.879 44.372-80.495 60.917l-1.851 0.95-173.227 96.427c-36.932 20.855-68.752 45.064-96.88 72.987l0.027-0.027-28.16 28.16-75.52-75.947 28.16-28.16c27.868-27.907 51.952-59.604 71.409-94.248l1.124-2.179 96.427-173.653c17.807-31.401 38.474-58.456 62.303-82.356l149.324-149.75 197.973 197.547z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["thermometer"]},"attrs":[{}],"properties":{"order":6915,"id":49,"name":"thermometer","prevSize":32,"code":60171},"setIdx":0,"setId":0,"iconIdx":523},{"icon":{"paths":["M645.547 800h-267.093c-61.641-0.241-111.545-50.146-111.787-111.763l-0-0.023v-352.427c0.241-61.641 50.146-111.545 111.763-111.787l0.023-0h267.093c61.641 0.241 111.545 50.146 111.787 111.763l0 0.023v352.427c-0.241 61.641-50.146 111.545-111.763 111.787l-0.023 0zM378.453 288c-26.392 0-47.787 21.395-47.787 47.787v0 352.427c0 26.392 21.395 47.787 47.787 47.787h267.093c26.392 0 47.787-21.395 47.787-47.787v0-352.427c0-26.392-21.395-47.787-47.787-47.787v0zM426.667 464.213h170.667c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-53.333v-56.32c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 56.32h-53.333c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM597.333 528.213h-170.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h53.76v87.893c0 17.673 14.327 32 32 32s32-14.327 32-32v0-87.893h52.907c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM685.227 970.667h-346.88c-158.169-0.241-286.296-128.518-286.296-286.72 0-0.45 0.001-0.9 0.003-1.35l-0 0.070v-341.333c-0.002-0.38-0.003-0.83-0.003-1.28 0-158.202 128.128-286.479 286.274-286.72l0.023-0h347.307c158.169 0.241 286.296 128.518 286.296 286.72 0 0.45-0.001 0.9-0.003 1.35l0-0.070v341.333c0.002 0.38 0.003 0.83 0.003 1.28 0 158.202-128.128 286.479-286.274 286.72l-0.023 0zM337.92 117.333c-122.639 0.483-221.87 100.012-221.87 222.718 0 0.451 0.001 0.901 0.004 1.351l-0-0.069v341.333c0.242 122.672 99.622 222.051 222.27 222.293l0.023 0h347.307c122.672-0.242 222.051-99.622 222.293-222.27l0-0.023v-341.333c-0.242-122.672-99.622-222.051-222.27-222.293l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["theta"]},"attrs":[{}],"properties":{"order":6916,"id":48,"name":"theta","prevSize":32,"code":60172},"setIdx":0,"setId":0,"iconIdx":524},{"icon":{"paths":["M410.453 970.667c-0.26 0.001-0.568 0.001-0.876 0.001-61.864 0-119.336-18.809-167.007-51.021l1.056 0.673c-81.795-55.009-134.893-147.217-134.893-251.826 0-154.161 115.315-281.388 264.393-300.129l1.487-0.152h26.027c37.727 0.259 69.248 26.523 77.545 61.75l0.108 0.544c1.484 4.564 2.409 9.827 2.558 15.283l0.002 0.077v56.747c0 0.022 0 0.049 0 0.075 0 41.451-32.657 75.274-73.645 77.145l-0.168 0.006c-47.092 3.588-84.105 42.082-85.331 89.481l-0.002 0.119c-0 0.101-0.001 0.221-0.001 0.341 0 34.020 18.96 63.611 46.889 78.785l0.471 0.234 5.973 3.413c10.852 4.505 23.45 7.161 36.657 7.253l0.036 0c0 0 0.001 0 0.001 0 49.57 0 89.783-40.063 90.026-89.577l0-0.023v-538.88c0-42.887 34.767-77.653 77.653-77.653v0h57.6c36.712 1.232 67.45 25.472 78.336 58.703l0.171 0.603c0.958 2.366 1.839 5.22 2.49 8.159l0.070 0.374c9.743 46.589 37.395 85.405 75.265 109.671l0.682 0.409c15.902 10.743 34.389 19.238 54.203 24.463l1.264 0.283c30.211 5.906 54.098 27.945 62.574 56.6l0.146 0.573c2.433 6.542 3.84 14.099 3.84 21.986 0 0.071-0 0.141-0 0.212l0-0.011v55.893c-0.121 41.617-33.886 75.307-75.52 75.307-3.46 0-6.866-0.233-10.203-0.683l0.389 0.043c-43.909-6.213-83.593-18.936-119.962-37.273l2.202 1.006v229.12c0.012 1.014 0.019 2.212 0.019 3.411 0 159.189-120.414 290.254-275.126 307.081l-1.373 0.121zM402.347 433.067v0c-3.128-0.235-6.775-0.368-10.453-0.368s-7.326 0.134-10.937 0.397l0.484-0.028c-117.204 14.965-206.885 114.084-206.885 234.15 0 81.284 41.103 152.968 103.658 195.401l0.827 0.529c37.016 24.868 82.587 39.691 131.621 39.691 7.136 0 14.2-0.314 21.176-0.929l-0.904 0.064c121.788-13.973 215.494-116.471 215.494-240.854 0-1.275-0.010-2.547-0.029-3.817l0.002 0.192v-351.147l52.48 37.547c39.609 28.565 87.354 48.402 139.126 55.7l1.674 0.193c0.988 0.537 2.164 0.853 3.413 0.853s2.425-0.316 3.452-0.872l-0.038 0.019c1.828-1.418 2.993-3.615 2.993-6.084 0-0.111-0.002-0.222-0.007-0.332l0.001 0.016v-63.573c-1.695-5.485-6.234-9.597-11.851-10.652l-0.095-0.015c-28.859-5.844-54.46-16.364-77.303-30.844l0.93 0.551c-54.197-33.691-93.469-87.036-108.057-149.848l-0.317-1.618v-4.267c-1.381-7.258-7.452-12.746-14.886-13.224l-0.048-0.002h-60.16c-0.13-0.006-0.282-0.009-0.436-0.009-5.891 0-10.667 4.776-10.667 10.667 0 0.153 0.003 0.306 0.010 0.457l-0.001-0.022v537.173c-0.483 86.2-70.353 155.92-156.564 156.16l-0.023 0c-1.497 0.052-3.255 0.082-5.021 0.082-23.075 0-44.968-5.060-64.63-14.131l0.958 0.396h-2.987c-51.055-26.499-85.334-78.965-85.334-139.436 0-0.179 0-0.359 0.001-0.538l-0 0.028c0.109-84.808 66.537-154.067 150.202-158.702l0.411-0.018c5.94-0.236 10.667-5.108 10.667-11.085 0-0.003-0-0.006-0-0.009l0 0v-56.747c-2.133-6.4-5.973-11.093-11.947-11.093z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tiktok"]},"attrs":[{}],"properties":{"order":6917,"id":47,"name":"tiktok","prevSize":32,"code":60173},"setIdx":0,"setId":0,"iconIdx":525},{"icon":{"paths":["M512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c0-253.315-205.352-458.667-458.667-458.667v0zM512 906.667c-218.439-0-395.519-177.081-395.519-395.52s177.080-395.52 395.52-395.52c218.44 0 395.52 177.080 395.52 395.52 0 0.3-0 0.6-0.001 0.9l0-0.046c-0.243 218.342-177.178 395.277-395.497 395.52l-0.023 0zM725.333 512c0 17.437-14.136 31.573-31.573 31.573v-0h-181.76c-17.437 0-31.573-14.136-31.573-31.573h0v-259.413c0-17.437 14.136-31.573 31.573-31.573s31.573 14.136 31.573 31.573v-0 227.84h151.467c16.878 0.706 30.293 14.56 30.293 31.547 0 0.009-0 0.018-0 0.027l0-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["time"]},"attrs":[{}],"properties":{"order":6918,"id":46,"name":"time","prevSize":32,"code":60174},"setIdx":0,"setId":0,"iconIdx":526},{"icon":{"paths":["M506.027 970.667c-0.253 0.001-0.553 0.001-0.853 0.001-215.848 0-390.827-174.979-390.827-390.827s174.979-390.827 390.827-390.827c215.847 0 390.826 174.979 390.827 390.826l-0-0c-0.241 215.451-174.59 390.1-389.904 390.826l-0.069 0zM506.027 253.013c-180.501 0-326.827 146.325-326.827 326.827s146.325 326.827 326.827 326.827c180.501 0 326.827-146.325 326.827-326.827v0c-0.243-180.404-146.423-326.584-326.804-326.827l-0.023-0zM544 546.133v-182.187c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 182.187c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM646.827 119.467c0.029-0.51 0.045-1.108 0.045-1.709 0-17.775-14.301-32.209-32.025-32.424l-0.020-0h-217.6c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h217.6c0.008 0 0.017 0 0.026 0 17.223 0 31.268-13.606 31.972-30.656l0.002-0.064z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["timer"]},"attrs":[{}],"properties":{"order":6919,"id":45,"name":"timer","prevSize":32,"code":60175},"setIdx":0,"setId":0,"iconIdx":527},{"icon":{"paths":["M651.947 790.187c-19.181-0.022-37.137-5.249-52.536-14.344l0.483 0.264-269.227-155.307c-37.69-22.214-62.582-62.6-62.582-108.8s24.891-86.586 61.995-108.48l0.587-0.32 269.227-155.307c14.932-8.769 32.888-13.948 52.053-13.948 57.45 0 104.031 46.535 104.107 103.967l0 0.007v348.16c-0.241 57.399-46.707 103.865-104.084 104.107l-0.023 0zM362.667 458.667c-18.387 10.95-30.513 30.726-30.513 53.333s12.126 42.383 30.23 53.177l0.284 0.157 269.227 155.307c5.752 3.378 12.67 5.373 20.053 5.373s14.301-1.995 20.243-5.476l-0.189 0.102c12.056-6.855 20.055-19.612 20.055-34.238 0-0.113-0-0.226-0.001-0.339l0 0.017v-348.16c0-0.022 0-0.048 0-0.074 0-14.696-7.989-27.526-19.862-34.384l-0.191-0.102c-5.752-3.378-12.67-5.373-20.053-5.373s-14.301 1.995-20.243 5.476l0.189-0.102z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["to-left"]},"attrs":[{}],"properties":{"order":6920,"id":44,"name":"to-left","prevSize":32,"code":60176},"setIdx":0,"setId":0,"iconIdx":528},{"icon":{"paths":["M372.053 790.187c-57.399-0.241-103.865-46.707-104.107-104.084l-0-0.023v-348.16c0.075-57.44 46.657-103.974 104.107-103.974 19.166 0 37.121 5.179 52.545 14.214l-0.491-0.266 269.227 155.307c37.69 22.214 62.582 62.6 62.582 108.8s-24.891 86.586-61.995 108.48l-0.587 0.32-269.227 155.307c-14.917 8.831-32.872 14.058-52.047 14.080l-0.006 0zM372.48 298.667c-7.545 0.103-14.59 2.148-20.687 5.656l0.207-0.11c-12.056 6.855-20.055 19.612-20.055 34.238 0 0.113 0 0.226 0.001 0.339l-0-0.017v348.16c-0.001 0.096-0.001 0.209-0.001 0.322 0 14.626 7.999 27.383 19.861 34.136l0.194 0.101c5.752 3.378 12.67 5.373 20.053 5.373s14.301-1.995 20.243-5.476l-0.189 0.102 269.227-155.307c18.387-10.95 30.513-30.726 30.513-53.333s-12.126-42.383-30.23-53.177l-0.284-0.157-269.227-156.16c-5.321-2.966-11.672-4.712-18.43-4.712-0.421 0-0.84 0.007-1.257 0.020l0.061-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["to-right"]},"attrs":[{}],"properties":{"order":6921,"id":43,"name":"to-right","prevSize":32,"code":60177},"setIdx":0,"setId":0,"iconIdx":529},{"icon":{"paths":["M589.227 893.44h-154.453c-210.663 0-381.44-170.777-381.44-381.44s170.777-381.44 381.44-381.44v0h154.453c210.663 0 381.44 170.777 381.44 381.44s-170.777 381.44-381.44 381.44v0zM434.773 194.56c-175.317 0-317.44 142.123-317.44 317.44s142.123 317.44 317.44 317.44h154.453c175.317 0 317.44-142.123 317.44-317.44s-142.123-317.44-317.44-317.44v0zM434.773 730.453c-0.631 0.007-1.377 0.010-2.123 0.010-121.827 0-220.587-98.76-220.587-220.587s98.76-220.587 220.587-220.587c121.827 0 220.587 98.76 220.587 220.587 0 0.746-0.004 1.492-0.011 2.237l0.001-0.113c-1.444 120.812-99.601 218.221-220.564 218.453l-0.022 0zM434.773 353.28c-0.63-0.009-1.374-0.014-2.119-0.014-86.48 0-156.587 70.106-156.587 156.587s70.106 156.587 156.587 156.587c85.725 0 155.361-68.887 156.571-154.325l0.001-0.114c0.009-0.634 0.015-1.383 0.015-2.133 0-86.48-70.106-156.587-156.587-156.587-0.005 0-0.010 0-0.015 0l0.001-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-off-circle"]},"attrs":[{}],"properties":{"order":6922,"id":42,"name":"toggle-off-circle","prevSize":32,"code":60178},"setIdx":0,"setId":0,"iconIdx":530},{"icon":{"paths":["M760.747 893.44h-497.493c-0 0-0.001 0-0.002 0-115.936 0-209.92-93.984-209.92-209.92 0-0.3 0.001-0.6 0.002-0.9l-0 0.046v-341.333c-0.001-0.253-0.002-0.553-0.002-0.853 0-115.936 93.984-209.92 209.92-209.92 0.001 0 0.001 0 0.002 0l497.493-0c0-0 0.001-0 0.002-0 115.936 0 209.92 93.984 209.92 209.92 0 0.3-0.001 0.6-0.002 0.9l0-0.046v341.333c0.001 0.253 0.002 0.553 0.002 0.853 0 115.936-93.984 209.92-209.92 209.92-0.001 0-0.001-0-0.002-0l0 0zM263.253 194.56c-0.001-0-0.002-0-0.002-0-80.589 0-145.92 65.331-145.92 145.92 0 0.3 0.001 0.6 0.003 0.899l-0-0.046v341.333c0 80.589 65.331 145.92 145.92 145.92v0h497.493c80.589 0 145.92-65.331 145.92-145.92v-341.333c0-80.589-65.331-145.92-145.92-145.92h-0zM494.507 720.213h-163.413c-76.486-0.242-138.425-62.181-138.667-138.643l-0-0.023v-154.88c0.961-75.936 62.626-137.152 138.644-137.387l0.023-0h163.413c76.040 0.235 137.706 61.451 138.666 137.296l0.001 0.091v153.6c0.002 0.254 0.003 0.554 0.003 0.854 0 76.67-62.033 138.852-138.646 139.093l-0.023 0zM331.093 353.28c-0.13-0.001-0.284-0.001-0.438-0.001-40.788 0-73.937 32.704-74.655 73.321l-0.001 0.067v153.6c0 41.237 33.429 74.667 74.667 74.667v0h163.413c41.14-0.241 74.426-33.526 74.667-74.644l0-0.023v-153.6c0-41.237-33.429-74.667-74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-off"]},"attrs":[{}],"properties":{"order":6923,"id":41,"name":"toggle-off","prevSize":32,"code":60179},"setIdx":0,"setId":0,"iconIdx":531},{"icon":{"paths":["M589.227 893.44h-154.453c-210.663 0-381.44-170.777-381.44-381.44s170.777-381.44 381.44-381.44v0h154.453c210.663 0 381.44 170.777 381.44 381.44s-170.777 381.44-381.44 381.44v0zM434.773 194.56c-175.317 0-317.44 142.123-317.44 317.44s142.123 317.44 317.44 317.44h154.453c175.317 0 317.44-142.123 317.44-317.44s-142.123-317.44-317.44-317.44v0zM591.36 730.453c-0.377 0.002-0.823 0.004-1.27 0.004-121.827 0-220.587-98.76-220.587-220.587s98.76-220.587 220.587-220.587c121.827 0 220.587 98.76 220.587 220.587 0 0.749-0.004 1.497-0.011 2.244l0.001-0.114c-1.435 120.366-98.87 217.502-219.216 218.453l-0.091 0.001zM591.36 353.28c-86.474 0.008-156.572 70.111-156.572 156.587 0 86.48 70.106 156.587 156.587 156.587 85.73 0 155.369-68.895 156.571-154.34l0.001-0.113c0.009-0.634 0.015-1.383 0.015-2.133 0-86.48-70.106-156.587-156.587-156.587-0.005 0-0.010 0-0.015 0l0.001-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-on-circle"]},"attrs":[{}],"properties":{"order":6924,"id":40,"name":"toggle-on-circle","prevSize":32,"code":60180},"setIdx":0,"setId":0,"iconIdx":532},{"icon":{"paths":["M760.747 893.44h-497.493c-0 0-0.001 0-0.002 0-115.936 0-209.92-93.984-209.92-209.92 0-0.3 0.001-0.6 0.002-0.9l-0 0.046v-341.333c-0.001-0.253-0.002-0.553-0.002-0.853 0-115.936 93.984-209.92 209.92-209.92 0.001 0 0.001 0 0.002 0l497.493-0c0-0 0.001-0 0.002-0 115.936 0 209.92 93.984 209.92 209.92 0 0.3-0.001 0.6-0.002 0.9l0-0.046v341.333c0.001 0.253 0.002 0.553 0.002 0.853 0 115.936-93.984 209.92-209.92 209.92-0.001 0-0.001-0-0.002-0l0 0zM263.253 194.56c-0.001-0-0.002-0-0.002-0-80.589 0-145.92 65.331-145.92 145.92 0 0.3 0.001 0.6 0.003 0.899l-0-0.046v341.333c0 80.589 65.331 145.92 145.92 145.92v0h497.493c80.589 0 145.92-65.331 145.92-145.92v-341.333c0-80.589-65.331-145.92-145.92-145.92h-0zM692.907 720.213h-163.413c-76.486-0.242-138.425-62.181-138.667-138.643l-0-0.023v-154.88c0.242-76.486 62.181-138.425 138.643-138.667l0.023-0h163.413c76.486 0.242 138.425 62.181 138.667 138.643l0 0.023v153.6c0.002 0.254 0.003 0.554 0.003 0.854 0 76.67-62.033 138.852-138.646 139.093l-0.023 0zM529.493 353.28c-0.003-0-0.007-0-0.011-0-40.787 0-73.936 32.704-74.655 73.319l-0.001 0.067v153.6c0 41.237 33.429 74.667 74.667 74.667v0h163.413c0.006 0 0.013 0 0.019 0 40.873 0 74.119-32.654 75.072-73.298l0.002-0.089v-154.88c0-41.237-33.429-74.667-74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-on"]},"attrs":[{}],"properties":{"order":6925,"id":39,"name":"toggle-on","prevSize":32,"code":60181},"setIdx":0,"setId":0,"iconIdx":533},{"icon":{"paths":["M417.28 490.667v-101.547c0-0 0-0.001 0-0.001 0-33.547-27.074-60.77-60.564-61.012l-0.023-0h-110.507c-0-0-0.001-0-0.002-0-33.461 0-60.587 27.126-60.587 60.587 0 0.15 0.001 0.3 0.002 0.45l-0-0.023v101.547c0 33.461 27.126 60.587 60.587 60.587v0h110.507c33.364-0.24 60.347-27.223 60.587-60.564l0-0.023zM353.28 487.253h-103.68v-95.147h103.68zM517.973 640h79.36c33.225 0 60.16-26.935 60.16-60.16v0-191.147c0-0 0-0.001 0-0.002 0-33.311-26.883-60.343-60.137-60.585l-0.023-0h-79.36c-33.277 0.242-60.16 27.274-60.16 60.585 0 0.001 0 0.001 0 0.002l-0-0v192c0.481 32.856 27.229 59.307 60.154 59.307 0.002 0 0.004-0 0.006-0l-0 0zM521.813 391.253h71.253v184.747h-71.253zM869.12 682.667h-81.92c16.397-22.861 26.221-51.403 26.221-82.24 0-9.852-1.003-19.47-2.912-28.757l0.158 0.917-56.747-269.653c-14.261-65.461-71.654-113.783-140.358-113.92l-0.015-0h-378.453c-73.573 0.241-134.080 55.866-142.022 127.353l-0.058 0.647-32.853 269.227c-0.649 5.124-1.020 11.052-1.020 17.067 0 79.084 64.036 143.211 143.085 143.36l0.014 0h31.147c3.429 49.506 44.43 88.366 94.507 88.366s91.077-38.861 94.49-88.070l0.016-0.296h446.72c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM327.68 770.987c-17.202 0-31.147-13.945-31.147-31.147s13.945-31.147 31.147-31.147c17.202 0 31.147 13.945 31.147 31.147v0c0 17.202-13.945 31.147-31.147 31.147h-0zM327.68 642.987c-29.591 1.845-55.31 16.955-71.487 39.399l-0.193 0.281h-53.76c-23.598-0.009-44.773-10.373-59.231-26.793l-0.075-0.087c-12.316-13.686-19.848-31.889-19.848-51.852 0-3.531 0.236-7.007 0.692-10.413l-0.044 0.398 32.853-269.227c3.832-40.328 37.506-71.63 78.502-71.68l378.458-0c38.015 0.186 69.731 26.93 77.556 62.619l0.097 0.528 55.467 269.227c1.374 5.512 2.163 11.84 2.163 18.352 0 43.594-35.34 78.933-78.933 78.933-0.31 0-0.62-0.002-0.93-0.005l0.047 0h-267.52c-17.212-22.38-43.754-36.85-73.702-37.545l-0.112-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trailer"]},"attrs":[{}],"properties":{"order":6926,"id":38,"name":"trailer","prevSize":32,"code":60182},"setIdx":0,"setId":0,"iconIdx":534},{"icon":{"paths":["M684.8 970.667h-343.467c-157.782-0.242-285.624-128.084-285.867-285.843l-0-0.024v-343.467c-0.003-0.507-0.005-1.107-0.005-1.707 0-157.967 127.938-286.053 285.849-286.293l0.023-0h345.6c157.013 1.446 283.738 129.065 283.738 286.282 0 0.604-0.002 1.208-0.006 1.811l0-0.093v345.6c-1.447 156.865-128.83 283.498-285.844 283.733l-0.023 0zM341.333 117.333c-0.637-0.007-1.39-0.010-2.144-0.010-122.534 0-221.867 99.333-221.867 221.867 0 0.754 0.004 1.507 0.011 2.259l-0.001-0.115v345.6c1.201 121.617 100.069 219.744 221.857 219.744 0.754 0 1.507-0.004 2.259-0.011l-0.115 0.001h345.6c122.436-0.242 221.624-99.431 221.867-221.844l0-0.023v-343.467c-0.242-122.436-99.431-221.624-221.844-221.867l-0.023-0zM426.667 785.067h180.907c0.909 0.033 1.976 0.052 3.048 0.052 46.197 0 84.228-34.961 89.078-79.869l0.035-0.396 14.507-213.333c0.032-0.539 0.050-1.169 0.050-1.804 0-17.025-13.121-30.986-29.803-32.322l-0.114-0.007c-0.779-0.068-1.685-0.107-2.601-0.107-16.875 0-30.658 13.238-31.53 29.896l-0.003 0.078-14.080 213.333c-3.070 11.715-13.563 20.218-26.041 20.218-1.047 0-2.080-0.060-3.096-0.176l0.124 0.012h-181.333c-14.507 0-29.013-8.96-29.867-20.053l-17.067-217.6c-1.071-16.565-14.77-29.596-31.511-29.596-2.135 0-4.221 0.212-6.237 0.616l0.202-0.034c-16.327 1.074-29.163 14.58-29.163 31.083 0 1.074 0.054 2.135 0.16 3.181l-0.011-0.132 17.067 217.6c5.681 44.989 43.708 79.434 89.78 79.434 1.287 0 2.568-0.027 3.843-0.080l-0.182 0.006zM714.667 346.027c-26.453-4.693-52.48-4.693-77.653-8.96l-6.4-42.667c-5.483-37.926-37.133-66.934-75.813-68.263l-0.134-0.004h-85.333c-38.652 1.607-70.024 30.777-75.049 68.289l-0.044 0.405-7.253 42.667c-45.653 3.84-75.093 8.107-78.080 8.96-15.401 2.273-27.087 15.398-27.087 31.253 0 2.228 0.231 4.402 0.67 6.499l-0.036-0.205c2.561 15.327 15.726 26.864 31.585 26.864 1.804 0 3.573-0.149 5.295-0.436l-0.187 0.026c58.005-8.517 124.968-13.381 193.067-13.381s135.060 4.864 200.558 14.263l-7.491-0.882h4.693c0.124 0.002 0.271 0.003 0.417 0.003 15.63 0 28.608-11.358 31.13-26.27l0.026-0.186c0.348-1.784 0.548-3.836 0.548-5.934 0-16.144-11.798-29.533-27.242-32.014l-0.186-0.025zM452.693 331.947l4.693-26.453c0-9.813 7.68-15.36 12.373-15.36h85.333c5.12 0 11.093 5.973 12.373 15.36l4.267 26.453h-119.040z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trash-square"]},"attrs":[{}],"properties":{"order":6927,"id":37,"name":"trash-square","prevSize":32,"code":60183},"setIdx":0,"setId":0,"iconIdx":535},{"icon":{"paths":["M353.28 970.667c-74.063-0.721-134.481-58.171-139.918-130.942l-0.028-0.471-31.147-445.44c-0.045-0.638-0.071-1.383-0.071-2.133 0-17.712 14.359-32.071 32.071-32.071 16.962 0 30.848 13.167 31.995 29.838l0.005 0.1 30.293 445.44c3.197 40.24 36.638 71.683 77.423 71.683 0.231 0 0.462-0.001 0.692-0.003l-0.035 0 322.133-3.84c40.742-0.415 73.86-32.491 75.939-72.773l0.008-0.187 25.173-440.32c1.355-17.022 15.502-30.322 32.756-30.322 0.485 0 0.967 0.010 1.446 0.031l-0.068-0.002c16.753 1.127 29.916 14.992 29.916 31.932 0 0.624-0.018 1.244-0.053 1.86l0.004-0.085-25.173 440.747c-4.573 73.685-64.841 131.874-138.972 133.118l-0.121 0.002-322.133 3.84zM639.147 548.267c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-190.293c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h190.293c0.254 0.007 0.553 0.011 0.853 0.011 17.673 0 32-14.327 32-32 0-0.004-0-0.008-0-0.012l0 0.001zM605.867 706.133c0-17.673-14.327-32-32-32v0h-123.733c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h123.733c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM896 278.187c-2.174 15.506-15.351 27.308-31.284 27.308-0.102 0-0.203-0-0.305-0.001l0.015 0h-4.693c-104.274-15.111-224.676-23.739-347.093-23.739-122.416 0-242.816 8.628-360.626 25.31l13.533-1.571c-1.659 0.301-3.569 0.473-5.519 0.473-16.118 0-29.489-11.759-32.002-27.166l-0.025-0.187c-0.261-1.536-0.41-3.304-0.41-5.108 0-15.859 11.537-29.024 26.676-31.559l0.187-0.026c5.547 0 64.427-10.24 157.013-17.493l15.36-80.213c10.184-52.102 55.47-90.88 109.814-90.88 0.093 0 0.187 0 0.28 0l-0.014-0h150.613c0.158-0.001 0.346-0.001 0.533-0.001 54.649 0 100.14 39.215 109.865 91.041l0.108 0.693 14.507 79.36c50.773 4.267 102.827 9.387 156.16 17.493 15.695 2.223 27.634 15.567 27.634 31.701 0 1.611-0.119 3.194-0.349 4.741l0.021-0.175zM493.227 217.173h152.747l-11.093-60.587c-4.183-22.441-23.593-39.21-46.929-39.253l-0.005-0h-150.613c-0.021-0-0.045-0-0.069-0-23.306 0-42.75 16.536-47.238 38.516l-0.053 0.31-11.52 61.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trash"]},"attrs":[{}],"properties":{"order":6928,"id":36,"name":"trash","prevSize":32,"code":60184},"setIdx":0,"setId":0,"iconIdx":536},{"icon":{"paths":["M833.28 675.413l-139.093-193.707h5.547c0.099 0 0.215 0.001 0.332 0.001 41.709 0 75.52-33.811 75.52-75.52 0-16.677-5.405-32.091-14.56-44.586l0.148 0.212-187.733-260.693c-13.693-19.203-35.89-31.575-60.977-31.575-0.163 0-0.325 0.001-0.488 0.002l0.025-0c-0.098-0-0.214-0.001-0.331-0.001-25.032 0-47.22 12.179-60.961 30.935l-0.148 0.212-187.733 261.12c-9.006 12.283-14.412 27.697-14.412 44.374 0 41.709 33.811 75.52 75.52 75.52 0.117 0 0.233-0 0.35-0.001l-0.018 0h5.547l-139.093 193.707c-10.611 14.54-16.978 32.767-16.978 52.48 0 49.453 40.065 89.549 89.506 89.6l216.751 0v104.96c0 17.673 14.327 32 32 32s32-14.327 32-32v0-104.96h216.747c49.446-0.051 89.511-40.147 89.511-89.6 0-19.713-6.366-37.94-17.155-52.735l0.177 0.255zM313.6 411.307c-1.048-1.703-1.67-3.765-1.67-5.973s0.621-4.271 1.698-6.023l-0.029 0.050 187.733-261.12c2.028-2.915 5.361-4.8 9.135-4.8 0.54 0 1.071 0.039 1.591 0.113l-0.059-0.007c0.096-0.003 0.209-0.005 0.322-0.005 3.73 0 7.030 1.841 9.041 4.664l0.023 0.034 187.733 261.12c1.048 1.703 1.67 3.765 1.67 5.973s-0.621 4.271-1.698 6.023l0.029-0.050c-1.807 3.821-5.63 6.417-10.059 6.417-0.214 0-0.426-0.006-0.637-0.018l0.029 0.001h-374.187c-0.181 0.011-0.394 0.017-0.607 0.017-4.429 0-8.252-2.596-10.031-6.349l-0.029-0.067zM782.933 739.413c-4.078 8.396-12.54 14.082-22.331 14.082-0.099 0-0.199-0.001-0.298-0.002l0.015 0h-497.067c-0.084 0.001-0.183 0.002-0.283 0.002-9.79 0-18.253-5.685-22.266-13.935l-0.064-0.147c-2.393-3.822-3.812-8.465-3.812-13.44s1.419-9.618 3.875-13.548l-0.063 0.108 166.4-230.827h206.507l166.4 230.827c3.585 4.371 5.758 10.020 5.758 16.176 0 3.883-0.864 7.563-2.411 10.86l0.066-0.157z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tree"]},"attrs":[{}],"properties":{"order":6929,"id":35,"name":"tree","prevSize":32,"code":60185},"setIdx":0,"setId":0,"iconIdx":537},{"icon":{"paths":["M632.32 613.12c-0.163 0.001-0.356 0.002-0.55 0.002-25.985 0-49.492-10.607-66.429-27.727l-0.008-0.008c-17.415-17.057-28.299-40.723-28.586-66.933l-0-0.054v-187.307c-0.001-0.127-0.001-0.277-0.001-0.428 0-52.398 42.356-94.904 94.698-95.146l0.023-0h85.333c51.605 0.946 93.161 42.652 93.866 94.226l0.001 0.067v186.88c0.001 0.128 0.001 0.279 0.001 0.43 0 52.484-42.305 95.087-94.675 95.569l-0.046 0h-83.627zM713.813 298.667h-82.773c-17.253 0.241-31.147 14.283-31.147 31.57 0 0.001 0 0.002 0 0.003l-0-0v186.88c0.079 8.687 3.654 16.523 9.384 22.184l0.003 0.003c5.91 5.246 13.626 8.576 22.11 8.957l0.077 0.003h82.347c17.253-0.241 31.147-14.283 31.147-31.57 0-0.001-0-0.002-0-0.003l0 0v-186.88c-0.028-8.696-3.616-16.548-9.381-22.181l-0.006-0.006c-5.491-5.535-13.099-8.961-21.509-8.961-0.088 0-0.177 0-0.265 0.001l0.014-0zM365.227 796.16h-52.48c-0.004 0-0.008 0-0.013 0-61.738 0-111.787-50.049-111.787-111.787 0-0.6 0.005-1.199 0.014-1.797l-0.001 0.090v-334.080c0-61.738 50.049-111.787 111.787-111.787v0h52.48c61.738 0 111.787 50.049 111.787 111.787v0 334.080c0.008 0.508 0.013 1.107 0.013 1.707 0 61.738-50.049 111.787-111.787 111.787-0.005 0-0.009-0-0.014-0l0.001 0zM312.747 300.8c-26.392 0-47.787 21.395-47.787 47.787h0v334.080c-0 26.392 21.395 47.787 47.787 47.787l0-0h52.48c26.392 0 47.787-21.395 47.787-47.787v-334.080c0-26.392-21.395-47.787-47.787-47.787v0zM667.307 964.267h-311.467c-164.949 0-298.667-133.718-298.667-298.667v0-313.173c0-164.949 133.718-298.667 298.667-298.667v0h311.467c164.949 0 298.667 133.718 298.667 298.667v0 311.467c-0.237 165.197-133.606 299.165-298.552 300.373l-0.115 0.001zM355.84 116.48c-130.212 0.242-235.704 105.734-235.947 235.923l-0 0.024v311.467c-0 0-0 0-0 0 0 130.395 105.585 236.13 235.923 236.373l0.023 0h311.467c130.545 0 236.373-105.828 236.373-236.373v0-311.467c-0.243-130.362-105.978-235.947-236.373-235.947-0 0-0 0-0 0l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trello"]},"attrs":[{}],"properties":{"order":6930,"id":34,"name":"trello","prevSize":32,"code":60186},"setIdx":0,"setId":0,"iconIdx":538},{"icon":{"paths":["M948.053 678.4l-289.707-501.76c-30.368-49.983-84.517-82.861-146.347-82.861s-115.979 32.879-145.92 82.106l-0.427 0.755-289.707 501.333c-13.628 23.967-21.662 52.652-21.662 83.215 0 93.472 75.143 169.393 168.317 170.651l0.119 0.001h578.56c0.211 0.001 0.461 0.002 0.711 0.002 48.863 0 92.819-21.007 123.33-54.482l0.119-0.132c27.654-30.226 44.597-70.653 44.597-115.038 0-30.794-8.156-59.683-22.424-84.625l0.44 0.836zM602.88 209.067l289.707 501.76c9.2 15.136 14.645 33.436 14.645 53.008 0 17.090-4.152 33.211-11.503 47.408l0.271-0.576-350.293-247.040v-402.347c24.654 8.404 44.605 25.173 56.907 46.85l0.266 0.51zM133.547 710.827l287.573-502.187c12.954-22.478 33.543-39.325 58.152-47.16l0.728-0.2v402.773l-352 246.613c-7.191-13.678-11.411-29.886-11.411-47.079 0-19.654 5.514-38.021 15.080-53.636l-0.256 0.449zM224.853 868.267c-17.59-0.018-34.182-4.274-48.815-11.801l0.601 0.281 207.36-145.92 128-90.88 336.213 236.8c-13.617 6.994-29.711 11.093-46.763 11.093-0.060 0-0.12-0-0.18-0l0.009 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["triangle"]},"attrs":[{}],"properties":{"order":6931,"id":33,"name":"triangle","prevSize":32,"code":60187},"setIdx":0,"setId":0,"iconIdx":539},{"icon":{"paths":["M485.547 170.667h-350.293c-45.636 1.884-81.92 39.337-81.92 85.265 0 0.024 0 0.048 0 0.072l-0-0.004v418.133c-0 0.020-0 0.044-0 0.068 0 45.928 36.283 83.381 81.75 85.259l0.17 0.006h61.44c7.579 51.414 51.393 90.43 104.32 90.43s96.741-39.016 104.25-89.856l0.070-0.574h80.213c45.636-1.884 81.92-39.337 81.92-85.265 0-0.024-0-0.048-0-0.072l0 0.004v-418.133c0-0.020 0-0.044 0-0.068 0-45.928-36.283-83.381-81.75-85.259l-0.17-0.006zM117.333 256c-0.056-0.572-0.087-1.237-0.087-1.909 0-10.524 7.776-19.231 17.895-20.691l0.112-0.013h350.293c10.232 1.473 18.007 10.181 18.007 20.705 0 0.672-0.032 1.337-0.094 1.992l0.006-0.084v242.347h-384zM300.8 789.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667h-0zM503.467 675.413c0.056 0.572 0.087 1.237 0.087 1.909 0 10.524-7.776 19.231-17.895 20.691l-0.112 0.013h-91.733c-17.911-33.74-52.824-56.327-93.013-56.327s-75.103 22.587-92.738 55.76l-0.275 0.567h-72.533c-10.232-1.473-18.007-10.181-18.007-20.705 0-0.672 0.032-1.337 0.094-1.992l-0.006 0.084v-111.787h386.133zM954.027 469.333l-92.16-131.84c-14.938-21.617-39.517-35.65-67.384-35.84l-0.029-0h-101.973c-0.016-0-0.034-0-0.052-0-47.128 0-85.333 38.205-85.333 85.333 0 1.050 0.019 2.096 0.057 3.137l-0.004-0.151v283.733c-0.005 0.346-0.008 0.754-0.008 1.163 0 33.564 18.813 62.734 46.47 77.539l0.471 0.23c3.214 55.608 49.094 99.486 105.221 99.486 52.809 0 96.547-38.843 104.2-89.517l0.072-0.582h22.187c0.016 0 0.034 0 0.052 0 47.128 0 85.333-38.205 85.333-85.333 0-1.050-0.019-2.096-0.057-3.137l0.004 0.151v-152.32c-0.333-19.554-6.677-37.564-17.257-52.332l0.19 0.279zM760.747 789.333c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM906.667 673.707c0.051 0.567 0.079 1.228 0.079 1.894 0 11.464-8.531 20.936-19.59 22.413l-0.116 0.013h-33.707c-17.921-33.706-52.816-56.265-92.981-56.265-35.052 0-66.091 17.182-85.154 43.584l-0.212 0.309c-1.759-3.482-2.846-7.572-2.985-11.901l-0.001-0.046v-283.733c-0.030-0.439-0.047-0.952-0.047-1.468 0-11.688 8.703-21.344 19.983-22.839l0.117-0.013h101.973c6.274 0.202 11.73 3.525 14.889 8.46l0.044 0.073 92.587 130.987c2.944 4.547 4.694 10.106 4.694 16.073 0 0.049-0 0.099-0 0.148l0-0.008z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["truck"]},"attrs":[{}],"properties":{"order":6932,"id":32,"name":"truck","prevSize":32,"code":60188},"setIdx":0,"setId":0,"iconIdx":540},{"icon":{"paths":["M273.92 971.947c-121.334-0.479-219.623-98.468-220.586-219.641l-0.001-0.092-2.56-475.733c-0-0.129-0-0.281-0-0.433 0-121.698 98.172-220.467 219.642-221.433l478.385-2.561c121.518 0.238 220.048 98.319 221.013 219.641l0.001 0.092 2.56 475.733c0 0.129 0 0.281 0 0.433 0 121.698-98.172 220.467-219.642 221.433l-478.385 2.561zM748.8 116.053l-477.867 2.56c-86.349 0.483-156.162 70.594-156.162 157.011 0 0.301 0.001 0.601 0.003 0.902l-0-0.046 2.56 475.307c0.242 86.297 70.255 156.161 156.586 156.161 0.15 0 0.3-0 0.45-0.001l-0.023 0 477.867-2.56c86.349-0.483 156.162-70.594 156.162-157.011 0-0.301-0.001-0.601-0.003-0.902l0 0.046-1.707-475.307c-0.723-86.252-70.693-155.921-156.99-156.16l-0.023-0zM605.867 495.36h-207.36c-11.782 0-21.333 9.551-21.333 21.333v0 30.72c0 11.782 9.551 21.333 21.333 21.333v0h64v227.84c0 11.782 9.551 21.333 21.333 21.333v0h36.267c11.782 0 21.333-9.551 21.333-21.333v0-227.84h64.427c11.782 0 21.333-9.551 21.333-21.333v0-30.72c-0.234-11.687-9.647-21.099-21.311-21.333l-0.022-0zM768 618.24c-39.253-15.36-42.667-23.467-42.667-34.133s8.533-20.48 31.573-20.48c0.206-0.002 0.45-0.003 0.694-0.003 15.385 0 29.847 3.953 42.425 10.899l-0.453-0.229c2.611 1.332 5.694 2.113 8.96 2.113s6.349-0.781 9.074-2.166l-0.114 0.053c5.863-2.201 10.366-6.844 12.331-12.656l0.042-0.144 9.813-29.44c0.725-2.076 1.144-4.47 1.144-6.962 0-7.869-4.177-14.763-10.435-18.584l-0.096-0.054c-19.879-10.258-43.386-16.273-68.299-16.273-1.489 0-2.973 0.021-4.452 0.064l0.217-0.005c-3.092-0.334-6.678-0.525-10.309-0.525-54.767 0-99.407 43.355-101.472 97.617l-0.006 0.188c0 67.84 66.133 91.733 87.467 98.987 39.253 14.933 39.253 26.027 39.253 35.84 0 23.040-23.467 26.453-37.547 26.453-19.375-0.057-37.481-5.443-52.944-14.766l0.464 0.26c-2.756-1.288-5.983-2.040-9.387-2.040s-6.631 0.752-9.526 2.098l0.139-0.058c-6.258 2.406-10.986 7.555-12.765 13.933l-0.035 0.147-9.387 30.293c-0.535 1.798-0.844 3.863-0.844 6 0 7.386 3.68 13.913 9.307 17.846l0.070 0.047c23.301 13.452 51.25 21.389 81.053 21.389 1.505 0 3.006-0.020 4.501-0.060l-0.221 0.005c82.773 0 119.467-51.2 119.467-101.973-1.422-51.178-37.974-93.422-86.332-103.556l-0.708-0.124z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ts"]},"attrs":[{}],"properties":{"order":6933,"id":31,"name":"ts","prevSize":32,"code":60189},"setIdx":0,"setId":0,"iconIdx":541},{"icon":{"paths":["M377.173 971.093h-57.173c-0 0-0.001 0-0.001 0-43.122 0-78.080-34.958-78.080-78.080 0-0.15 0-0.3 0.001-0.45l-0 0.023v-39.253c0-8.012-6.495-14.507-14.507-14.507v0h-74.24c-43.261-0.241-78.266-35.246-78.507-78.484l-0-0.023v-531.627c0.303-15.922 5.198-30.641 13.411-42.96l-0.184 0.293 64.853-98.133c14.267-21.199 38.163-34.965 65.277-34.987l652.803-0c43.358-0 78.507 35.149 78.507 78.507h0v442.88c-0.222 21.635-8.976 41.183-23.050 55.477l0.010-0.010-186.88 186.453c-14.214 14.175-33.807 22.964-55.452 23.040l-0.015 0h-168.107c-0.101-0.003-0.221-0.004-0.34-0.004-4.989 0-9.39 2.519-12.001 6.354l-0.032 0.050-61.013 93.013c-14.348 19.754-37.371 32.45-63.359 32.45-0.675 0-1.349-0.009-2.020-0.026l0.099 0.002zM218.027 117.76c-4.937 0.106-9.272 2.592-11.915 6.352l-0.032 0.048-64.853 96.427c-1.601 2.254-2.56 5.063-2.56 8.095 0 0.004 0 0.008 0 0.012l-0-0.001v532.053c0.23 7.918 6.589 14.276 14.485 14.506l0.022 0h74.24c0-0 0.001-0 0.001-0 43.208 0 78.263 34.906 78.505 78.057l0 0.023v38.827c-0 0.002-0 0.004-0 0.006 0 7.862 6.254 14.263 14.058 14.5l0.022 0.001h57.173c0.101 0.003 0.221 0.004 0.34 0.004 4.989 0 9.39-2.519 12.001-6.354l0.032-0.050 61.013-89.6c14.218-20.966 37.935-34.561 64.828-34.561 0.159 0 0.318 0 0.477 0.001l-0.024-0h166.827c3.993-0.059 7.598-1.676 10.242-4.269l-0.002 0.002 186.88-186.453c2.462-2.718 4.042-6.275 4.265-10.196l0.002-0.044v-443.733c-0-8.012-6.495-14.507-14.507-14.507h0zM426.667 604.16h-32.427c-35.111 0-63.573-28.463-63.573-63.573v0-231.68c0-35.111 28.463-63.573 63.573-63.573v0h32.427c0-0 0.001-0 0.001-0 35.196 0 63.757 28.411 63.998 63.55l0 0.023v231.68c-0.242 35.162-28.802 63.573-63.999 63.573-0.001 0-0.001-0-0.002-0l0 0zM426.667 540.16v0zM426.667 308.907h-32.427v231.253h32.427zM670.293 607.573h-30.293c-35.111 0-63.573-28.463-63.573-63.573h0v-233.813c-0-35.111 28.463-63.573 63.573-63.573h33.707c0-0 0.001-0 0.001-0 35.196 0 63.757 28.411 63.998 63.55l0 0.023v231.68c-0.222 35.178-28.79 63.609-63.999 63.609-0.751 0-1.498-0.013-2.243-0.039l0.108 0.003zM670.293 543.573v0zM670.293 312.32h-30.293v229.547h33.28z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["twitch"]},"attrs":[{}],"properties":{"order":6934,"id":30,"name":"twitch","prevSize":32,"code":60190},"setIdx":0,"setId":0,"iconIdx":542},{"icon":{"paths":["M964.267 201.387c-9.669-20.004-29.036-33.966-51.828-35.825l-0.225-0.015c-10.405-0.957-22.503-1.503-34.728-1.503-20.111 0-39.876 1.477-59.194 4.329l2.189-0.265c-38.514-34.73-89.701-56.061-145.867-56.32l-0.053-0c-0.031-0-0.067-0-0.103-0-87.708 0-163.297 51.892-197.739 126.649l-0.558 1.351c-11.369 26.558-17.979 57.463-17.979 89.911 0 1.841 0.021 3.677 0.064 5.507l-0.005-0.272c-116.795-14.812-218.792-69.028-294.189-148.682l-0.211-0.225c-10.809-10.804-25.739-17.487-42.229-17.487-5.621 0-11.061 0.776-16.218 2.228l0.421-0.101c-20.397 5.072-36.372 20.199-42.552 39.687l-0.115 0.42c-6.156 18.576-9.708 39.96-9.708 62.173 0 43.094 13.366 83.066 36.178 115.997l-0.443-0.676c-5.578 2.459-10.37 5.611-14.548 9.424l0.041-0.037c-10.7 9.431-17.414 23.166-17.414 38.47 0 3.906 0.437 7.71 1.266 11.366l-0.065-0.343c10.174 55.818 41.27 102.974 84.695 133.967l0.638 0.433-5.12 8.107c-4.521 7.853-7.187 17.268-7.187 27.307s2.667 19.454 7.33 27.577l-0.143-0.27c22.514 39.050 55.873 69.662 95.959 88.199l1.321 0.548c-9.85 5.274-22.078 10.87-34.645 15.787l-2.475 0.853c-20.569 5.923-44.7 10.31-69.509 12.289l-1.318 0.085c-27.777 2.808-49.276 26.069-49.276 54.352 0 22.373 13.453 41.604 32.712 50.044l0.351 0.137c64.599 28.853 139.991 45.656 219.307 45.656 0.6 0 1.2-0.001 1.799-0.003l-0.093 0c1.532 0.015 3.341 0.024 5.152 0.024 306.334 0 554.667-248.333 554.667-554.667 0-2.109-0.012-4.215-0.035-6.319l0.003 0.321c0.102-1.467 0.16-3.18 0.16-4.907s-0.058-3.439-0.172-5.137l0.012 0.23c25.311-22.601 47.525-47.796 66.498-75.391l0.915-1.409c6.735-9.977 10.751-22.271 10.751-35.504 0-10.217-2.394-19.874-6.651-28.442l0.167 0.372zM202.667 624.64c13.745-1.212 26.373-3.627 38.516-7.176l-1.396 0.35 110.507-29.867-110.080-33.28c-53.287-11.931-95.37-50.618-111.908-100.9l-0.306-1.074c11.998 2.844 25.815 4.547 40.005 4.693l0.101 0.001h87.893l-69.547-56.747c-41.385-29.051-68.102-76.56-68.102-130.309 0-12.033 1.339-23.752 3.876-35.019l-0.201 1.061c93.887 96.535 222.406 158.964 365.453 167.185l1.481 0.068c51.2 2.56 71.68 61.867 72.533 101.12-2.788 67.955-40.887 126.42-96.335 157.802l-0.945 0.492c-32.794 16.373-71.439 25.957-112.322 25.957-10.184 0-20.23-0.595-30.104-1.751l1.199 0.114c-49.593-0.001-93.441-24.598-120.011-62.258l-0.309-0.462zM839.68 302.507l-12.8 10.24v16.64c0 7.253 0 14.507 0 22.187 0.017 1.523 0.027 3.323 0.027 5.125 0 271.459-220.061 491.52-491.52 491.52-0.759 0-1.519-0.002-2.277-0.005l0.117 0c-0.473 0.002-1.033 0.003-1.593 0.003-57.642 0-112.985-9.845-164.438-27.946l3.471 1.064c18.765-2.483 35.502-6.216 51.667-11.25l-2.173 0.583c41.902-14.76 78.208-34.553 110.646-59.176l-0.993 0.723h21.333c4.014 0.211 8.714 0.331 13.442 0.331 48.796 0 94.607-12.779 134.269-35.173l-1.365 0.709c74.746-43.669 124.901-122.316 127.988-212.905l0.012-0.428c0.085-1.967 0.133-4.275 0.133-6.595 0-68.562-42.335-127.237-102.29-151.31l-1.097-0.389c-0.137-2.722-0.216-5.911-0.216-9.117 0-24.635 4.619-48.192 13.039-69.85l-0.45 1.314c24.234-54.26 77.722-91.39 139.882-91.39 44.127 0 83.883 18.711 111.767 48.632l0.084 0.091 12.373 13.227 17.92-3.84c18.479-3.799 39.716-5.974 61.462-5.974 10.057 0 20.005 0.465 29.824 1.375l-1.259-0.094c-19.248 27.395-41.353 50.99-66.332 71.168l-0.655 0.512z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["twitter"]},"attrs":[{}],"properties":{"order":6935,"id":29,"name":"twitter","prevSize":32,"code":60191},"setIdx":0,"setId":0,"iconIdx":543},{"icon":{"paths":["M795.034 181.862h-454.246c-73.653 0.414-133.496 58.967-135.981 132.072l-0.006 0.228h-16.384c-0.001-0-0.002-0-0.002-0-75.494 0-136.749 60.968-137.213 136.353l-0 0.044v254.362c0.232 75.463 61.344 136.574 136.784 136.806l0.022 0h454.246c73.515-0.405 133.276-58.734 135.98-131.644l0.007-0.247h16.384c0.001 0 0.002 0 0.002 0 75.494 0 136.749-60.968 137.213-136.353l0-0.044v-254.771c-0.232-75.463-61.344-136.574-136.784-136.806l-0.022-0zM188.006 375.603h454.246c41.388 0.228 74.906 33.602 75.366 74.913l0 0.044v60.621h-604.979v-60.621c0.232-41.447 33.886-74.957 75.365-74.957 0 0 0.001 0 0.001 0l-0-0zM717.619 703.283c0 41.624-33.743 75.366-75.366 75.366h-454.246c-41.624 0-75.366-33.743-75.366-75.366v0-129.843h604.979v132.301zM870.4 573.44c-0 41.624-33.743 75.366-75.366 75.366h-16.794v-198.246c-0.232-75.463-61.344-136.574-136.784-136.806l-0.022-0h-376.013c2.861-39.418 35.484-70.33 75.354-70.451l0.012-0h454.246c41.624 0 75.366 33.743 75.366 75.366h0zM673.792 658.227c0 16.966-13.754 30.72-30.72 30.72v0h-49.562c-16.966 0-30.72-13.754-30.72-30.72s13.754-30.72 30.72-30.72v0h49.562c0.001-0 0.002-0 0.003-0 16.822 0 30.486 13.521 30.717 30.289l0 0.022zM335.872 658.227c0 16.966-13.754 30.72-30.72 30.72v0h-117.965c-16.966 0-30.72-13.754-30.72-30.72s13.754-30.72 30.72-30.72v0h117.965c0.001-0 0.002-0 0.003-0 16.822 0 30.486 13.521 30.717 30.289l0 0.022z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["two-credit-cart"]},"attrs":[{}],"properties":{"order":6936,"id":28,"name":"two-credit-cart","prevSize":32,"code":60192},"setIdx":0,"setId":0,"iconIdx":544},{"icon":{"paths":["M690.773 970.667h-357.547c-154.581-0-279.893-125.313-279.893-279.893l0 0v-357.547c-0-154.581 125.313-279.893 279.893-279.893l0 0h357.547c154.581-0 279.893 125.313 279.893 279.893l0 0v357.547c-0 154.581-125.313 279.893-279.893 279.893l0 0zM333.227 117.333c-119.137 0.242-215.651 96.756-215.893 215.87l-0 0.023v357.547c0.242 119.137 96.756 215.651 215.87 215.893l0.023 0h357.547c119.137-0.242 215.651-96.756 215.893-215.87l0-0.023v-357.547c-0.242-119.137-96.756-215.651-215.87-215.893l-0.023-0zM325.973 664.32l119.040-176.64c3.298-4.994 5.261-11.121 5.261-17.707s-1.963-12.713-5.337-17.828l0.075 0.122-118.613-184.32c-5.928-8.516-15.669-14.019-26.696-14.019-5.871 0-11.378 1.561-16.129 4.289l0.158-0.084c-8.415 5.849-13.854 15.468-13.854 26.358 0 6.017 1.661 11.646 4.548 16.454l-0.081-0.145 105.813 168.533-107.52 159.573c-2.885 4.712-4.593 10.416-4.593 16.519 0 10.761 5.311 20.281 13.455 26.082l0.098 0.066c4.912 3.357 10.95 5.411 17.459 5.546l0.034 0.001c0.376 0.016 0.818 0.025 1.261 0.025 10.444 0 19.719-5.003 25.56-12.744l0.059-0.081zM756.48 738.56c0-17.673-14.327-32-32-32v0h-251.733c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h252.587c17.254-0.239 31.15-14.282 31.15-31.57 0-0.151-0.001-0.302-0.003-0.452l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["underlining"]},"attrs":[{}],"properties":{"order":6937,"id":27,"name":"underlining","prevSize":32,"code":60193},"setIdx":0,"setId":0,"iconIdx":545},{"icon":{"paths":["M611.84 760.747l-67.84 69.12-2.133-625.493 68.693 69.973c5.661 5.795 13.554 9.388 22.287 9.388 0.115 0 0.23-0.001 0.344-0.002l-0.017 0c0.019 0 0.042 0 0.064 0 8.738 0 16.679-3.411 22.564-8.975l-0.016 0.015c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-125.44-128c-5.984-5.521-14.010-8.906-22.827-8.906s-16.843 3.385-22.85 8.927l0.023-0.021-125.44 128c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0 72.533-74.24 2.133 635.733-72.533-75.52c-5.729-5.462-13.505-8.824-22.065-8.824-17.673 0-32 14.327-32 32 0 8.348 3.197 15.949 8.432 21.647l-0.021-0.023 125.44 128c5.754 5.912 13.732 9.634 22.58 9.813l0.033 0.001c9.019-0.157 17.14-3.879 23.038-9.812l0.002-0.002 125.44-128c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.79-5.785-13.786-9.362-22.617-9.362-9.042 0-17.208 3.75-23.027 9.779l-0.009 0.009z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["up-down"]},"attrs":[{}],"properties":{"order":6938,"id":26,"name":"up-down","prevSize":32,"code":60194},"setIdx":0,"setId":0,"iconIdx":546},{"icon":{"paths":["M970.667 331.947v357.973c-0.242 154.483-125.41 279.651-279.87 279.893l-0.024 0h-357.547c-154.483-0.242-279.651-125.41-279.893-279.87l-0-0.024v-357.973c0.243-154.397 125.462-279.467 279.893-279.467l357.547 0c-0-0 0-0 0-0 154.431 0 279.65 125.069 279.893 279.443l0 0.024zM117.333 689.92c0.242 119.137 96.756 215.651 215.87 215.893l0.023 0h357.547c119.137-0.242 215.651-96.756 215.893-215.87l0-0.023v-357.973c-0.243-119.051-96.808-215.467-215.893-215.467-0 0-0 0-0 0l-357.547 0c-0-0-0-0-0-0-119.085 0-215.65 96.416-215.893 215.444l-0 0.023zM693.76 526.507l-155.733-148.907c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002-148.907 157.013c-8.695 7.842-14.136 19.148-14.136 31.725 0 23.564 19.103 42.667 42.667 42.667 13.215 0 25.026-6.008 32.853-15.441l0.057-0.070 121.6-124.16 125.013 119.467c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002c7.393-7.661 11.947-18.104 11.947-29.61 0-0.090-0-0.18-0.001-0.27l0 0.014c-0.113-13.013-6.034-24.621-15.293-32.372l-0.067-0.054z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["up-square"]},"attrs":[{}],"properties":{"order":6939,"id":25,"name":"up-square","prevSize":32,"code":60195},"setIdx":0,"setId":0,"iconIdx":547},{"icon":{"paths":["M761.6 617.387c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003-224-224.427-224.427 224.427c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 256-256c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002 256 256c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003c-7.72 7.716-18.383 12.488-30.161 12.488-1.098 0-2.186-0.041-3.263-0.123l0.143 0.009z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["up"]},"attrs":[{}],"properties":{"order":6940,"id":24,"name":"up","prevSize":32,"code":60196},"setIdx":0,"setId":0,"iconIdx":548},{"icon":{"paths":["M349.013 626.347l-97.707 34.56c-1.539 0.285-3.311 0.449-5.12 0.449s-3.581-0.163-5.3-0.476l0.18 0.027c-12.813-0.84-23.475-9.207-27.663-20.687l-0.070-0.219-35.84-94.293c-1.361-3.494-2.149-7.538-2.149-11.766 0-13.929 8.557-25.859 20.7-30.82l0.222-0.080c3.753-1.7 8.139-2.691 12.755-2.691 13.82 0 25.565 8.879 29.845 21.243l0.067 0.222 10.24 26.88s0-3.84 0-5.547c21.514-39.579 57.113-69.208 99.911-82.451l1.209-0.322c13.977-4.227 30.039-6.661 46.67-6.661 29.87 0 57.906 7.85 82.158 21.6l-0.828-0.432c9.717 5.825 16.121 16.301 16.121 28.273 0 5.238-1.226 10.191-3.407 14.585l0.086-0.191c-5.453 9.924-15.836 16.538-27.764 16.538-5.457 0-10.591-1.384-15.069-3.821l0.166 0.083c-14.539-8.101-31.892-12.87-50.359-12.87-38.326 0-71.855 20.542-90.176 51.217l-0.265 0.479 22.187-7.68c3.657-1.603 7.919-2.536 12.398-2.536 14.235 0 26.269 9.42 30.21 22.366l0.059 0.224c1.606 3.741 2.541 8.095 2.541 12.668 0 15.72-11.040 28.861-25.79 32.092l-0.217 0.040zM605.013 765.013l-32-100.267c-2.935-8.537-9.038-15.334-16.87-19.115l-0.196-0.085c-3.695-1.729-8.023-2.739-12.587-2.739s-8.892 1.009-12.773 2.817l0.187-0.078-92.16 37.12c-11.97 5.218-20.186 16.948-20.186 30.596 0 4.343 0.832 8.492 2.345 12.296l-0.079-0.225c4.265 12.456 15.872 21.251 29.533 21.251 4.767 0 9.284-1.071 13.323-2.985l-0.189 0.081 19.627-7.68c-18.343 31.304-51.818 51.993-90.124 51.993-18.609 0-36.077-4.882-51.194-13.436l0.518 0.27c-4.24-2.177-9.252-3.453-14.561-3.453-11.955 0-22.4 6.47-28.022 16.099l-0.083 0.154c-2.016 4.165-3.195 9.059-3.195 14.228 0 11.99 6.34 22.498 15.851 28.356l0.144 0.082c23.429 13.124 51.413 20.853 81.203 20.853 63.15 0 118.188-34.733 147.053-86.138l0.438-0.848 6.827 20.48c3.837 13.162 15.792 22.615 29.955 22.615 0.119 0 0.237-0.001 0.356-0.002l-0.018 0c1.475 0.292 3.171 0.459 4.907 0.459s3.431-0.167 5.073-0.486l-0.167 0.027c12.194-4.844 20.658-16.541 20.658-30.216 0-4.331-0.849-8.464-2.39-12.241l0.078 0.217zM970.667 446.72c0.116-0.96 0.182-2.072 0.182-3.2s-0.066-2.24-0.195-3.333l0.013 0.133c0.661-2.445 1.040-5.252 1.040-8.147 0-8.779-3.488-16.742-9.155-22.581l0.008 0.008-341.333-346.88c-2.609-2.542-5.734-4.569-9.2-5.91l-0.186-0.063s0 0-2.987 0c-1.218-0.19-2.623-0.298-4.053-0.298s-2.835 0.108-4.207 0.317l0.154-0.019h-275.627c-149.82 1.44-270.831 122.75-271.786 272.549l-0 0.091v365.227c-0.003 0.511-0.005 1.114-0.005 1.719 0 150.619 121.377 272.889 271.655 274.334l0.137 0.001h376.32c150.415-1.445 271.792-123.715 271.792-274.335 0-0.604-0.002-1.208-0.006-1.811l0 0.093zM629.333 164.267l232.107 235.947h-122.88c-59.722-0.481-107.95-49.007-107.95-108.797 0-0.301 0.001-0.602 0.004-0.903l-0 0.046zM700.16 905.813h-375.040c-114.967-0.963-207.794-94.384-207.794-209.486 0-0.603 0.003-1.204 0.008-1.806l-0.001 0.092v-365.227c-0.004-0.509-0.007-1.111-0.007-1.714 0-115.102 92.827-208.524 207.702-209.486l0.092-0.001h241.493v170.667c-0.001 0.261-0.002 0.57-0.002 0.879 0 94.857 76.055 171.95 170.512 173.625l0.157 0.002h170.667v229.547c0.014 0.896 0.022 1.954 0.022 3.014 0 114.743-92.061 207.984-206.349 209.89l-0.179 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["update-file"]},"attrs":[{}],"properties":{"order":6941,"id":23,"name":"update-file","prevSize":32,"code":60197},"setIdx":0,"setId":0,"iconIdx":549},{"icon":{"paths":["M943.36 372.907c0.114-1.088 0.18-2.349 0.18-3.627s-0.065-2.539-0.193-3.783l0.013 0.156c-9.909-149.311-133.264-266.717-284.123-267.093l-0.037-0h-213.333c-21.268-26.858-53.522-44.213-89.862-45.223l-0.164-0.004h-92.16c-116.171 0-210.347 94.175-210.347 210.347v0 464.64c0 133.844 108.502 242.347 242.347 242.347v0h432.64c133.844 0 242.347-108.502 242.347-242.347v0-244.053c0-0.13 0-0.285 0-0.439 0-40.556-10.105-78.753-27.933-112.209l0.626 1.288zM849.92 274.773c-34.877-20.519-76.8-32.699-121.556-32.853l-0.044-0h-135.68c-0.049 0-0.107 0-0.166 0-49.841 0-92.502-30.741-110.057-74.297l-0.284-0.797v-2.987h179.627c80.324 0.854 150.183 44.845 187.596 109.871l0.564 1.063zM905.387 728.32c0 97.791-79.275 177.067-177.067 177.067v0h-432.64c-97.791 0-177.067-79.275-177.067-177.067v0-464.64c-0-80.118 64.949-145.067 145.067-145.067h92.16c0.135-0.001 0.295-0.002 0.455-0.002 22.473 0 41.673 14.011 49.341 33.774l0.123 0.361 15.36 38.4c27.718 68.487 93.636 115.943 170.653 116.053l0.014 0h135.68c97.791 0 177.067 79.275 177.067 177.067v0zM462.933 579.413l-99.84 34.987c-1.604 0.293-3.449 0.46-5.333 0.46s-3.73-0.167-5.522-0.488l0.189 0.028c-0.488 0.026-1.059 0.040-1.634 0.040-12.442 0-23.289-6.828-29-16.941l-0.086-0.166-36.267-95.147c-0.734-2.589-1.155-5.563-1.155-8.636 0-18.144 14.709-32.853 32.853-32.853 12.734 0 23.776 7.245 29.229 17.838l0.086 0.184 10.24 27.307c0.587-2.297 1.317-4.285 2.22-6.174l-0.086 0.201c30.061-53.923 86.747-89.794 151.811-89.794 30.375 0 58.925 7.818 83.746 21.552l-0.89-0.452c10.192 5.633 16.98 16.317 16.98 28.587 0 17.979-14.575 32.553-32.553 32.553-5.709 0-11.075-1.47-15.74-4.052l0.167 0.085c-14.837-8.174-32.52-12.983-51.327-12.983-39.036 0-73.232 20.72-92.191 51.762l-0.269 0.474 22.613-8.107c3.774-1.638 8.17-2.592 12.789-2.592 18.144 0 32.853 14.709 32.853 32.853 0 14.95-9.985 27.567-23.65 31.547l-0.232 0.058zM725.333 718.933l-32.853-100.693c-2.926-8.661-9.021-15.589-16.873-19.538l-0.194-0.088c-3.846-1.63-8.319-2.578-13.013-2.578s-9.167 0.948-13.238 2.662l0.225-0.084-94.72 36.693c-11.113 5.425-18.633 16.643-18.633 29.616 0 18.144 14.709 32.853 32.853 32.853 3.452 0 6.78-0.532 9.906-1.52l-0.233 0.063 20.053-8.107c-19.228 31.516-53.424 52.237-92.46 52.237-18.806 0-36.49-4.809-51.887-13.265l0.56 0.282c-4.24-2.177-9.252-3.453-14.561-3.453-11.955 0-22.4 6.47-28.022 16.099l-0.083 0.154c-2.095 4.203-3.321 9.155-3.321 14.394 0 11.972 6.403 22.448 15.972 28.19l0.149 0.083c23.822 13.425 52.3 21.334 82.625 21.334 0.202 0 0.404-0 0.606-0.001l-0.031 0c64.092-0.242 120.013-34.998 150.167-86.639l0.446-0.828 6.4 20.48c4.542 13.142 16.736 22.444 31.126 22.613l0.020 0c1.539 0.294 3.31 0.462 5.12 0.462s3.581-0.168 5.297-0.49l-0.177 0.028c12.169-4.856 20.611-16.541 20.611-30.198 0-3.857-0.673-7.557-1.909-10.989l0.071 0.226z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["update-folder"]},"attrs":[{}],"properties":{"order":6942,"id":22,"name":"update-folder","prevSize":32,"code":60198},"setIdx":0,"setId":0,"iconIdx":550},{"icon":{"paths":["M503.467 567.040c-134.551 0-243.627-109.075-243.627-243.627s109.075-243.627 243.627-243.627c134.551 0 243.627 109.075 243.627 243.627v0c0 134.551-109.075 243.627-243.627 243.627v0zM503.467 143.787c-0.127-0-0.277-0.001-0.427-0.001-99.205 0-179.627 80.422-179.627 179.627s80.422 179.627 179.627 179.627c99.205 0 179.626-80.421 179.627-179.626l0-0c-0.241-98.958-80.276-179.143-179.154-179.626l-0.046-0zM155.307 917.76c24.747-146.773 174.507-256 348.16-256 0.156-0 0.34-0 0.525-0 32.337 0 63.803 3.732 93.99 10.788l-2.781-0.548c2.715 0.832 5.836 1.312 9.068 1.312 17.673 0 32-14.327 32-32 0-15.904-11.602-29.098-26.803-31.58l-0.185-0.025c-31.779-7.85-68.266-12.36-105.805-12.373l-0.009-0c-204.8 0-381.013 132.693-411.307 309.76-0.223 1.43-0.351 3.079-0.351 4.758 0 15.922 11.475 29.164 26.606 31.906l0.198 0.030h5.547c15.44-0.145 28.256-11.203 31.114-25.824l0.033-0.202zM651.52 908.8c-0.019 0-0.040 0-0.062 0-17.728 0-33.739-7.356-45.146-19.181l-0.018-0.019c-10.265-11.25-16.552-26.284-16.552-42.785 0-4.336 0.434-8.57 1.261-12.662l-0.069 0.408 12.8-60.587c3.417-15.875 11.262-29.553 22.164-40.085l0.023-0.022 145.92-136.533c13.676-12.508 31.965-20.172 52.045-20.172 1.504 0 2.998 0.043 4.48 0.128l-0.205-0.009c21.475 1.389 40.482 10.941 54.144 25.554l0.043 0.046 27.733 29.867c14.078 14.249 22.774 33.842 22.774 55.467s-8.696 41.218-22.781 55.475l0.008-0.008-145.92 136.107c-11.298 10.648-26.013 17.783-42.333 19.597l-0.333 0.030-61.44 8.533zM822.187 641.707c-0.108-0.004-0.234-0.006-0.361-0.006-2.987 0-5.708 1.136-7.754 3.001l0.009-0.008-144.213 136.107c-1.633 1.585-2.83 3.612-3.395 5.888l-0.018 0.085-12.8 61.013 58.88-11.52c2.502-0.291 4.709-1.375 6.404-2.991l-0.004 0.004 145.493-136.107c2.427-2.705 3.911-6.299 3.911-10.24s-1.484-7.535-3.924-10.254l0.013 0.014-28.16-29.867c-2.774-3.025-6.693-4.961-11.065-5.119l-0.028-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-edit"]},"attrs":[{}],"properties":{"order":6943,"id":21,"name":"user-edit","prevSize":32,"code":60199},"setIdx":0,"setId":0,"iconIdx":551},{"icon":{"paths":["M972.8 682.667v-344.747c-0.968-157.38-128.773-284.587-286.288-284.587-0.002 0-0.004 0-0.006 0l-347.306-0c-0.508-0.003-1.11-0.005-1.712-0.005-158.115 0-286.293 128.178-286.293 286.293 0 0.602 0.002 1.203 0.006 1.804l-0-0.093v344.747c1.037 115.282 70.052 214.195 168.859 258.686l1.807 0.728c8.107 3.413 16.213 6.827 24.32 9.387h2.987l25.173 6.827h3.84c7.68 0 15.787 2.56 23.893 3.84h5.12c8.96 0 18.347 0 27.733 0h353.707c9.387 0 19.2 0 28.587 0h7.253c8.358-0.833 15.775-2.037 23.037-3.652l-1.277 0.239h3.84l25.173-6.827c9.387-2.987 18.773-6.827 27.733-10.667l26.88-11.947c23.168-13.692 43.186-29.229 61.031-46.951l-0.017 0.017c50.658-51.481 81.935-122.165 81.935-200.154 0-1.033-0.005-2.066-0.016-3.096l0.001 0.157zM334.933 907.093c-11.515-0.062-22.704-1.302-33.5-3.605l1.073 0.192c-5.909-0.611-11.271-1.663-16.449-3.149l0.663 0.163-9.813-4.693c43.841-86.935 132.412-145.519 234.667-145.519s190.826 58.584 233.98 144.020l0.687 1.499-9.387 2.987-10.667 2.133c-11.496 2.602-24.735 4.15-38.316 4.266l-346.538 2.134zM804.267 871.253c-53.483-109.873-164.296-184.251-292.48-184.251s-238.997 74.378-291.635 182.331l-0.845 1.921c-61.479-39.726-101.756-107.677-102.399-185.077l-0.001-0.096-1.707-344.747c-0-0.129-0-0.281-0-0.433 0-122.405 98.745-221.747 220.922-222.713l0.092-0.001h347.307c122.225 0.238 221.328 98.892 222.293 220.922l0.001 0.092v344.747c0.005 0.539 0.007 1.175 0.007 1.813 0 60.771-24.622 115.791-64.435 155.629l0.001-0.001c-10.935 11.127-23.099 20.986-36.29 29.373l-0.83 0.493zM512 262.827c-102.975 0-186.453 83.478-186.453 186.453s83.478 186.453 186.453 186.453c102.975 0 186.453-83.478 186.453-186.453v0c0-102.975-83.478-186.453-186.453-186.453v-0zM512 571.733c-67.629-0-122.453-54.824-122.453-122.453s54.824-122.453 122.453-122.453c67.629 0 122.453 54.824 122.453 122.453v0c-0.242 67.532-54.922 122.212-122.43 122.453l-0.023 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-square"]},"attrs":[{}],"properties":{"order":6944,"id":20,"name":"user-square","prevSize":32,"code":60200},"setIdx":0,"setId":0,"iconIdx":552},{"icon":{"paths":["M490.24 564.907c134.316-0 243.2-108.884 243.2-243.2s-108.884-243.2-243.2-243.2c-134.316 0-243.2 108.884-243.2 243.2 0 0.15 0 0.3 0 0.45l-0-0.023c-0 0-0 0-0 0 0 134.080 108.693 242.773 242.773 242.773 0.15 0 0.3-0 0.45-0l-0.023 0zM490.24 142.933c98.969-0 179.2 80.231 179.2 179.2s-80.231 179.2-179.2 179.2c-98.969 0-179.2-80.231-179.2-179.2v0c0-98.969 80.231-179.2 179.2-179.2v0zM743.68 543.147c-0.12-0-0.262-0-0.404-0-57.657 0-109.57 24.595-145.82 63.865l-0.123 0.135c-32.234-7.95-69.285-12.605-107.392-12.799l-0.128-0.001c-203.947 0-380.16 132.693-410.027 309.333-0.31 1.662-0.488 3.574-0.488 5.528 0 15.651 11.388 28.642 26.33 31.14l0.185 0.026h5.547c15.673-0.149 28.676-11.394 31.541-26.25l0.033-0.204c24.32-145.92 173.653-256 346.88-256 24.595 0.247 48.475 2.565 71.69 6.788l-2.57-0.388c-10.514 23.334-16.64 50.585-16.64 79.267 0 0.033 0 0.065 0 0.098l-0-0.005c0 110.987 89.973 200.96 200.96 200.96s200.96-89.973 200.96-200.96c0-110.987-89.973-200.96-200.96-200.96v0zM743.68 881.067c-0.127 0-0.277 0.001-0.427 0.001-75.641 0-136.96-61.319-136.96-136.96s61.319-136.96 136.96-136.96c75.641 0 136.96 61.319 136.96 136.959l0 0c0 0 0 0 0 0.001 0 75.491-61.076 136.717-136.51 136.959l-0.023 0zM829.013 677.973c6.935 5.755 11.318 14.375 11.318 24.020 0 7.029-2.328 13.514-6.256 18.726l0.057-0.079-71.68 91.733c-5.965 7.439-14.996 12.208-25.146 12.373l-0.027 0c-10.077-0.036-19.023-4.851-24.691-12.297l-0.056-0.076-52.053-66.133c-3.678-5.096-5.883-11.468-5.883-18.354 0-9.757 4.425-18.48 11.379-24.271l0.051-0.041c5.133-3.87 11.618-6.198 18.647-6.198 9.645 0 18.265 4.384 23.979 11.267l0.041 0.051 26.88 34.56 48.64-60.587c5.835-7.164 14.656-11.703 24.537-11.703 7.541 0 14.465 2.644 19.895 7.055l-0.058-0.046z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-tick"]},"attrs":[{}],"properties":{"order":6945,"id":19,"name":"user-tick","prevSize":32,"code":60201},"setIdx":0,"setId":0,"iconIdx":553},{"icon":{"paths":["M512 540.587c-134.549-0.003-243.621-109.077-243.621-243.627 0-134.551 109.075-243.627 243.627-243.627s243.627 109.075 243.627 243.627c0 0.6-0.002 1.2-0.007 1.799l0.001-0.092c-0.967 133.815-109.669 241.92-243.621 241.92-0.002 0-0.004-0-0.006-0l0 0zM512 117.333c-99.202 0.005-179.619 80.424-179.619 179.627 0 99.205 80.422 179.627 179.627 179.627 98.605 0 178.653-79.452 179.618-177.829l0.001-0.091c0.003-0.38 0.005-0.83 0.005-1.28 0-99.292-80.372-179.813-179.608-180.053l-0.023-0zM840.533 970.667h-657.067c-0.254 0.003-0.555 0.004-0.855 0.004-25.901 0-49.106-11.539-64.756-29.758l-0.095-0.113c-11.182-12.923-17.995-29.894-17.995-48.457 0-4.132 0.338-8.185 0.987-12.133l-0.058 0.43c29.867-177.067 206.933-310.613 411.307-310.613s381.44 133.547 411.307 310.613c0.591 3.518 0.928 7.571 0.928 11.703 0 18.563-6.813 35.534-18.074 48.551l0.079-0.094c-15.745 18.332-38.951 29.871-64.851 29.871-0.301 0-0.601-0.002-0.901-0.005l0.046 0zM512 634.027c-173.653 0-323.413 110.507-348.16 256-0.049 0.375-0.076 0.808-0.076 1.248 0 2.642 1.001 5.051 2.644 6.868l-0.008-0.009c4.002 4.47 9.791 7.269 16.233 7.269 0.293 0 0.585-0.006 0.875-0.017l-0.042 0.001h657.067c0.249 0.010 0.54 0.016 0.833 0.016 6.442 0 12.231-2.8 16.215-7.249l0.018-0.021c1.635-1.808 2.636-4.216 2.636-6.859 0-0.44-0.028-0.873-0.082-1.299l0.005 0.051c-24.747-145.493-174.507-256-348.16-256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user"]},"attrs":[{}],"properties":{"order":6946,"id":18,"name":"user","prevSize":32,"code":60202},"setIdx":0,"setId":0,"iconIdx":554},{"icon":{"paths":["M512 970.667c-33.332-0.027-63.5-13.556-85.332-35.412l-0.001-0.001-60.16-60.16c-2.153-2.111-5.105-3.415-8.362-3.415-0.060 0-0.12 0-0.18 0.001l0.009-0h-85.333c-66.503-0.243-120.32-54.209-120.32-120.746 0-0 0-0.001 0-0.001l-0 0v-85.333c0.001-0.051 0.001-0.111 0.001-0.171 0-3.257-1.303-6.209-3.416-8.364l0.002 0.002-60.16-59.733c-21.72-21.893-35.143-52.045-35.143-85.333s13.423-63.441 35.151-85.341l-0.008 0.008 60.16-60.16c2.111-2.153 3.415-5.105 3.415-8.362 0-0.060-0-0.12-0.001-0.18l0 0.009v-85.333c0.243-66.503 54.209-120.32 120.746-120.32 0 0 0.001 0 0.001 0l85.333-0c0.051 0.001 0.111 0.001 0.171 0.001 3.257 0 6.209-1.303 8.364-3.416l-0.002 0.002 59.733-60.16c21.893-21.72 52.045-35.143 85.333-35.143s63.441 13.423 85.341 35.151l-0.008-0.008 60.16 60.16c2.153 2.111 5.105 3.415 8.362 3.415 0.060 0 0.12-0 0.18-0.001l-0.009 0h85.333c66.503 0.243 120.32 54.209 120.32 120.746 0 0-0 0.001-0 0.001l0-0v85.333c-0.001 0.051-0.001 0.111-0.001 0.171 0 3.257 1.303 6.209 3.416 8.364l-0.002-0.002 60.16 59.733c21.72 21.893 35.143 52.045 35.143 85.333s-13.423 63.441-35.151 85.341l0.008-0.008-60.16 60.16c-2.111 2.153-3.415 5.105-3.415 8.362 0 0.060 0 0.12 0.001 0.18l-0-0.009v85.333c-0 66.687-54.060 120.747-120.747 120.747v0h-85.333c-0.051-0.001-0.111-0.001-0.171-0.001-3.257 0-6.209 1.303-8.364 3.416l0.002-0.002-59.733 59.733c-21.834 21.857-52.001 35.386-85.328 35.413l-0.005 0zM273.067 216.32c-31.243 0.24-56.507 25.503-56.747 56.724l-0 0.023v85.333c0.003 0.244 0.005 0.533 0.005 0.821 0 20.722-8.49 39.461-22.181 52.929l-0.010 0.010-60.16 59.733c-10.258 10.267-16.601 24.446-16.601 40.107s6.344 29.839 16.602 40.107l-0-0 60.16 60.16c13.703 13.543 22.189 32.338 22.189 53.115 0 0.227-0.001 0.453-0.003 0.679l0-0.035v85.333c0.477 31.060 25.651 56.084 56.724 56.32l0.023 0h85.333c0.244-0.003 0.533-0.005 0.821-0.005 20.722 0 39.461 8.49 52.929 22.181l0.010 0.010 60.16 60.16c10.267 10.258 24.446 16.601 40.107 16.601s29.839-6.344 40.107-16.602l-0 0 60.16-60.16c13.543-13.703 32.338-22.189 53.115-22.189 0.227 0 0.453 0.001 0.679 0.003l-0.035-0h85.333c31.243-0.24 56.507-25.503 56.747-56.724l0-0.023v-85.333c-0.003-0.244-0.005-0.533-0.005-0.821 0-20.722 8.49-39.461 22.181-52.929l0.010-0.010 60.16-60.16c10.258-10.267 16.601-24.446 16.601-40.107s-6.344-29.839-16.602-40.107l0 0-61.013-59.733c-13.66-13.812-22.12-32.792-22.187-53.747l-0-0.013v-85.333c-0.477-31.060-25.651-56.084-56.724-56.32l-0.023-0h-85.333c-0.192 0.002-0.418 0.003-0.645 0.003-20.777 0-39.572-8.486-53.108-22.182l-0.007-0.007-59.733-60.16c-10.267-10.258-24.446-16.601-40.107-16.601s-29.839 6.344-40.107 16.602l0-0-60.16 60.16c-13.478 13.701-32.217 22.191-52.939 22.191-0.289 0-0.577-0.002-0.865-0.005l0.044 0zM480.853 640l209.493-204.373c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0-186.453 181.333-78.507-79.787c-5.87-6.388-14.263-10.376-23.589-10.376-17.673 0-32 14.327-32 32 0 9.113 3.809 17.336 9.922 23.164l0.013 0.012 101.12 103.253c5.729 5.95 13.723 9.685 22.589 9.813l0.024 0c8.9-0.077 16.91-3.825 22.601-9.8l0.012-0.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["verify"]},"attrs":[{}],"properties":{"order":6947,"id":17,"name":"verify","prevSize":32,"code":60203},"setIdx":0,"setId":0,"iconIdx":555},{"icon":{"paths":["M374.784 348.979c-3.013-3.647-4.841-8.37-4.841-13.519 0-11.763 9.536-21.299 21.299-21.299 0.118 0 0.235 0.001 0.353 0.003l-0.018-0h202.342c11.946 0.058 21.607 9.755 21.607 21.709 0 4.948-1.655 9.509-4.442 13.16l0.039-0.053-99.123 132.71c-4.008 5.171-10.221 8.468-17.203 8.468s-13.195-3.297-17.166-8.418l-0.037-0.049zM711.475 378.061c-4.995-3.66-11.262-5.856-18.042-5.856-10.248 0-19.323 5.018-24.904 12.73l-0.062 0.090-176.947 242.074-177.357-242.483c-5.492-8.872-15.17-14.694-26.208-14.694-16.966 0-30.72 13.754-30.72 30.72 0 7.857 2.95 15.026 7.803 20.458l-0.026-0.030 204.8 276.070c5.631 7.605 14.511 12.526 24.549 12.697l0.027 0c0.157 0.003 0.341 0.005 0.526 0.005 10.071 0 18.979-4.979 24.397-12.61l0.062-0.093 200.704-276.070c3.333-4.841 5.324-10.83 5.324-17.285 0-10.719-5.49-20.156-13.811-25.652l-0.115-0.071zM491.52 952.32c-243.182 0-440.32-197.138-440.32-440.32s197.138-440.32 440.32-440.32c243.182 0 440.32 197.138 440.32 440.32v0c-0.233 243.088-197.232 440.087-440.298 440.32l-0.022 0zM491.52 133.12c-209.25 0-378.88 169.63-378.88 378.88s169.63 378.88 378.88 378.88c209.25 0 378.88-169.63 378.88-378.88v0c-0.233-209.156-169.724-378.647-378.857-378.88l-0.023-0z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["vibe"]},"attrs":[{}],"properties":{"order":6948,"id":16,"name":"vibe","prevSize":32,"code":60204},"setIdx":0,"setId":0,"iconIdx":556},{"icon":{"paths":["M557.653 973.653h-85.333c-0.657 0.021-1.429 0.033-2.204 0.033-41.237 0-74.667-33.429-74.667-74.667 0-26.202 13.497-49.252 33.917-62.577l0.287-0.176c-61.954-16.228-114.85-48.788-155.538-92.799l-0.195-0.214c-0.358 6.677-1.425 12.948-3.133 18.948l0.146-0.602c-5.208 19.579-17.648 35.633-34.215 45.464l-0.345 0.19c-10.536 5.742-23.076 9.119-36.405 9.119-27.537 0-51.708-14.413-65.381-36.106l-0.188-0.319-42.667-74.24c-6.657-10.91-10.598-24.108-10.598-38.226 0-41.002 33.238-74.24 74.24-74.24 7.739 0 15.202 1.184 22.217 3.381l-0.526-0.142c7.604 1.842 14.298 4.78 20.304 8.686l-0.251-0.153c-8.126-27.876-12.801-59.899-12.801-93.013s4.675-65.137 13.4-95.444l-0.599 2.431c-10.974 6.353-24.143 10.102-38.187 10.102s-27.213-3.749-38.56-10.3l0.373 0.199c-21.973-13.263-36.44-37.012-36.44-64.139 0-13.431 3.546-26.033 9.753-36.922l-0.193 0.368 42.667-74.24c13.008-22.626 37.042-37.617 64.578-37.617 34.509 0 63.519 23.545 71.841 55.447l0.114 0.516c1.561 5.399 2.629 11.67 2.977 18.131l0.009 0.216c41.557-44.676 95.359-77.437 156.063-92.956l2.231-0.484c-20.935-13.365-34.617-36.476-34.617-62.782 0-41.002 33.238-74.24 74.24-74.24 1.071 0 2.136 0.023 3.196 0.068l-0.151-0.005h81.92c40.309 1.188 72.533 34.149 72.533 74.636 0 0.011-0 0.021-0 0.032l0-0.002c0.014 0.533 0.022 1.16 0.022 1.789 0 25.909-13.505 48.664-33.859 61.609l-0.296 0.176c63.554 17.614 117.515 52.228 158.413 98.631l0.307 0.355c-0.063-1.136-0.099-2.465-0.099-3.802 0-27.060 14.646-50.7 36.444-63.424l0.348-0.188c10.386-6.083 22.87-9.675 36.193-9.675 7.171 0 14.098 1.041 20.64 2.979l-0.513-0.13c19.944 4.491 36.482 16.568 46.753 32.971l0.181 0.309 42.667 70.827c6.374 10.803 10.14 23.804 10.14 37.684 0 6.777-0.898 13.344-2.58 19.588l0.121-0.526c-8.781 32.178-37.748 55.443-72.15 55.443-15.586 0-30.056-4.775-42.028-12.943l0.258 0.166-3.413 2.133c8.396 27.988 13.228 60.15 13.228 93.44s-4.832 65.452-13.833 95.822l0.606-2.382 4.693 2.56c10.914-6.856 24.182-10.923 38.4-10.923s27.486 4.067 38.705 11.101l-0.305-0.178c22.46 13.154 37.306 37.167 37.306 64.647 0 13.743-3.713 26.618-10.19 37.679l0.191-0.353-42.667 70.827c-13.633 22.157-37.749 36.707-65.265 36.707-13.464 0-26.114-3.484-37.097-9.599l0.389 0.199c-22.447-13.262-37.266-37.335-37.266-64.87 0-1.645 0.053-3.279 0.157-4.898l-0.011 0.221c-41.393 45.755-95.377 79.401-156.481 95.499l-2.239 0.501c21.842 13.291 36.207 36.968 36.207 64 0 41.216-33.396 74.633-74.604 74.667l-0.003 0zM504.32 816.64v39.68c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0c-5.891 0-10.667 4.776-10.667 10.667s4.776 10.667 10.667 10.667v0h85.333c5.891 0 10.667-4.776 10.667-10.667s-4.776-10.667-10.667-10.667v0c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-39.68s0-2.56 0-3.413c-0.064-0.757-0.1-1.639-0.1-2.53 0-15.901 11.598-29.093 26.795-31.579l0.185-0.025c70.438-11.186 130.387-49.168 170.165-102.969l0.502-0.711c5.913-7.403 14.939-12.104 25.063-12.104 6.554 0 12.647 1.97 17.721 5.351l-0.117-0.073 2.56 2.133 39.68 22.613c9.485 5.67 15.737 15.884 15.737 27.559 0 5.532-1.404 10.736-3.874 15.275l0.084-0.168c-0.598 1.291-0.947 2.801-0.947 4.393 0 5.891 4.776 10.667 10.667 10.667 3.533 0 6.665-1.718 8.606-4.363l0.021-0.030 42.667-70.827c0.911-1.575 1.448-3.465 1.448-5.48 0-3.979-2.095-7.468-5.241-9.426l-0.047-0.027c-1.414-0.702-3.080-1.112-4.842-1.112-3.838 0-7.222 1.95-9.213 4.913l-0.025 0.040c-5.828 8.59-15.546 14.159-26.565 14.159-5.932 0-11.488-1.614-16.25-4.427l0.149 0.081-39.68-22.613h-4.267c-11.942-4.824-20.216-16.321-20.216-29.751 0-4.674 1.002-9.115 2.804-13.118l-0.081 0.202c11.351-29.005 17.929-62.587 17.929-97.707s-6.578-68.702-18.57-99.583l0.641 1.877c-1.72-3.801-2.722-8.241-2.722-12.916 0-13.43 8.273-24.927 20.001-29.674l0.215-0.077 42.667-24.747c4.495-2.609 9.89-4.149 15.645-4.149 11.403 0 21.393 6.045 26.943 15.104l0.079 0.138c1.962 2.675 5.094 4.393 8.627 4.393 5.891 0 10.667-4.776 10.667-10.667 0-1.592-0.349-3.102-0.974-4.459l0.027 0.066-42.667-70.827c-1.291-2.533-3.579-4.401-6.332-5.105l-0.068-0.015c-1.204-0.466-2.597-0.737-4.053-0.737s-2.849 0.27-4.132 0.763l0.079-0.027c-3.069 1.909-5.081 5.263-5.081 9.087 0 1.827 0.459 3.547 1.269 5.050l-0.028-0.057c2.354 4.312 3.738 9.446 3.738 14.903 0 11.928-6.614 22.311-16.375 27.681l-0.163 0.082-38.4 25.6v2.133c-4.956 3.307-11.050 5.277-17.604 5.277-10.124 0-19.15-4.701-25.013-12.040l-0.049-0.064c-40.156-54.65-100.167-92.685-169.204-103.491l-1.462-0.189c-16.243-1.567-28.861-15.073-29.013-31.558l-0-0.015v-45.653c-0.002-0.128-0.003-0.278-0.003-0.43 0-17.288 13.895-31.332 31.127-31.57l0.023-0c5.798-0.226 10.441-4.869 10.666-10.646l0.001-0.021c0-5.891-4.776-10.667-10.667-10.667v0h-81.92c-5.891 0-10.667 4.776-10.667 10.667v0c-0 5.655 4.585 10.24 10.24 10.24h0c16.731 1.152 29.867 15.006 29.867 31.929 0 0.025-0 0.050-0 0.075l0-0.004v46.080c-0.073 16.109-12.039 29.402-27.566 31.554l-0.168 0.019c-70.344 10.619-130.343 48.214-170.177 101.712l-0.49 0.688c-5.914 7.24-14.841 11.826-24.839 11.826-6.648 0-12.823-2.027-17.939-5.497l0.112 0.072-7.253-3.413-34.133-19.627c-9.414-5.787-15.598-16.030-15.598-27.718 0-5.463 1.351-10.61 3.736-15.125l-0.085 0.177c0.891-1.525 1.418-3.358 1.418-5.313 0-3.896-2.089-7.305-5.209-9.166l-0.049-0.027c-1.204-0.466-2.597-0.737-4.053-0.737s-2.849 0.27-4.132 0.763l0.079-0.027c-2.734 0.669-4.987 2.366-6.374 4.648l-0.026 0.045-42.667 74.24c-0.891 1.525-1.418 3.358-1.418 5.313 0 3.896 2.089 7.305 5.209 9.166l0.049 0.027c1.497 0.803 3.274 1.274 5.162 1.274 3.907 0 7.341-2.019 9.318-5.071l0.026-0.043c5.787-9.414 16.030-15.598 27.718-15.598 5.463 0 10.61 1.351 15.125 3.736l-0.177-0.085 36.693 21.333c12.614 4.78 21.418 16.761 21.418 30.799 0 4.269-0.814 8.348-2.296 12.090l0.078-0.222c-11.874 29.734-18.76 64.196-18.76 100.267s6.886 70.532 19.415 102.143l-0.656-1.876c1.674 3.783 2.648 8.196 2.648 12.835 0 13.316-8.027 24.758-19.506 29.75l-0.209 0.081h-4.693l-34.133 20.053c-4.371 2.387-9.575 3.791-15.107 3.791-11.675 0-21.89-6.252-27.479-15.591l-0.081-0.146c-1.286-2.438-3.598-4.188-6.345-4.685l-0.055-0.008c-1.204-0.466-2.597-0.737-4.053-0.737s-2.849 0.27-4.132 0.763l0.079-0.027c-3.168 1.888-5.258 5.297-5.258 9.193 0 1.956 0.526 3.788 1.445 5.364l-0.027-0.051 42.667 74.24c1.888 3.168 5.297 5.258 9.193 5.258 1.956 0 3.788-0.526 5.364-1.445l-0.051 0.027c3.168-1.888 5.258-5.297 5.258-9.193 0-1.956-0.526-3.788-1.445-5.364l0.027 0.051c-2.301-4.339-3.651-9.486-3.651-14.949 0-11.688 6.183-21.931 15.457-27.637l0.14-0.080 34.133-19.627 2.987-2.56c5.004-3.398 11.179-5.426 17.827-5.426 9.998 0 18.926 4.586 24.794 11.768l0.045 0.057c40.791 54.632 101.632 92.347 171.424 102.24l1.376 0.16c15.771 2.15 27.795 15.532 27.795 31.723 0 0.698-0.022 1.391-0.066 2.078l0.005-0.094s2.133-2.133 2.133-0.853zM557.227 810.667v0zM248.747 653.653v0zM636.16 546.56c-6.912 5.831-11.273 14.497-11.273 24.182 0 17.437 14.136 31.573 31.573 31.573s31.573-14.136 31.573-31.573c0-7.577-2.669-14.531-7.118-19.972l0.045 0.056c-5.982-6.946-14.788-11.316-24.614-11.316-7.661 0-14.702 2.657-20.251 7.099l0.064-0.050zM624.64 351.147c-28.513-0-51.627 23.114-51.627 51.627s23.114 51.627 51.627 51.627c28.513 0 51.627-23.114 51.627-51.627v0c0-28.513-23.114-51.627-51.627-51.627v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["virus"]},"attrs":[{}],"properties":{"order":6949,"id":15,"name":"virus","prevSize":32,"code":60205},"setIdx":0,"setId":0,"iconIdx":557},{"icon":{"paths":["M740.267 163.84l-213.333 366.933c-3.527 8.482-11.746 14.338-21.333 14.338s-17.807-5.856-21.277-14.185l-0.056-0.152-213.333-366.933zM960.427 145.92c-15.708-27.699-44.994-46.083-78.573-46.083-0.277 0-0.553 0.001-0.829 0.004l0.042-0h-742.4c-48.179 0.475-87.053 39.643-87.053 87.889 0 16.009 4.28 31.019 11.759 43.947l-0.226-0.423 374.613 648.96c14.525 27.551 42.974 46.011 75.733 46.011s61.208-18.46 75.509-45.546l0.224-0.465 371.2-642.987c7.856-13.054 12.503-28.811 12.503-45.653s-4.647-32.6-12.729-46.059l0.226 0.406zM904.96 205.227l-371.2 642.987c-3.977 7.249-11.558 12.081-20.267 12.081s-16.289-4.832-20.207-11.961l-0.060-0.119-374.613-648.96c-1.869-3.327-2.969-7.303-2.969-11.536 0-12.89 10.207-23.396 22.979-23.876l0.044-0.001h63.147l230.4 398.933c15.027 25.695 42.485 42.682 73.91 42.682 0.566 0 1.131-0.006 1.695-0.016l-0.084 0.001c0.605 0.015 1.317 0.024 2.032 0.024 31.429 0 58.889-16.991 73.697-42.288l0.218-0.403 230.4-398.933h66.987c0.076-0.001 0.166-0.001 0.256-0.001 10.155 0 18.995 5.632 23.567 13.942l0.070 0.139c2.429 3.883 3.869 8.6 3.869 13.653s-1.44 9.77-3.933 13.763l0.064-0.11z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["vue"]},"attrs":[{}],"properties":{"order":6950,"id":14,"name":"vue","prevSize":32,"code":60206},"setIdx":0,"setId":0,"iconIdx":558},{"icon":{"paths":["M514.133 970.667v0c-10.393-0.028-19.568-5.212-25.108-13.128l-0.066-0.099-357.547-537.173c-3.434-4.845-5.489-10.878-5.489-17.391 0-10.513 5.355-19.774 13.486-25.207l0.11-0.069c4.812-3.461 10.824-5.535 17.32-5.535 10.642 0 19.984 5.566 25.274 13.945l0.073 0.123 332.8 499.2 328.533-493.227c5.188-9.676 15.232-16.145 26.786-16.145 16.731 0 30.293 13.563 30.293 30.293 0 7.475-2.708 14.318-7.195 19.601l0.036-0.043-354.133 531.627c-5.605 8.015-14.781 13.199-25.169 13.227l-0.004 0zM561.493 734.293l305.92-471.893c6.063-9.065 9.675-20.216 9.675-32.21 0-10.246-2.636-19.877-7.268-28.25l0.152 0.3c-10.037-18.695-29.329-31.263-51.584-31.573l-0.042-0h-58.88c-0.070-0-0.152-0-0.234-0-20.13 0-37.866 10.25-48.273 25.816l-0.133 0.211-199.68 298.667-199.253-298.667c-10.725-15.79-28.598-26.027-48.862-26.027-0.072 0-0.144 0-0.215 0l0.011-0h-53.333c-22.024 0.099-41.161 12.364-51.047 30.416l-0.153 0.304c-5.242 8.513-8.348 18.827-8.348 29.867s3.106 21.354 8.491 30.117l-0.143-0.25 304.213 472.747c10.684 16.351 28.812 27.066 49.457 27.306l0.036 0c20.629-0.059 38.774-10.641 49.356-26.659l0.137-0.221zM259.84 235.52l202.24 303.787c11.238 15.085 29.024 24.749 49.067 24.749s37.829-9.664 48.951-24.588l0.115-0.162 202.24-303.787h48.213l-298.667 456.96-292.693-456.96zM561.92 341.333l131.413-197.12c3.687-5.237 5.892-11.747 5.892-18.773s-2.205-13.537-5.962-18.878l0.070 0.104c-5.913-7.405-14.94-12.108-25.066-12.108-3.863 0-7.567 0.685-10.996 1.939l0.222-0.071-65.28 22.613v-6.827c0-32.754-26.552-59.307-59.307-59.307v0h-39.253c-32.754 0-59.307 26.552-59.307 59.307v0 6.4l-68.267-23.467c-3.050-1.032-6.562-1.628-10.214-1.628-10.335 0-19.555 4.772-25.577 12.232l-0.049 0.063c-3.578 5.27-5.712 11.773-5.712 18.773s2.134 13.503 5.788 18.892l-0.076-0.118 130.133 197.973c11.097 16.482 29.686 27.18 50.773 27.18s39.676-10.698 50.635-26.963l0.138-0.217zM454.4 193.707c3.035 1.008 6.53 1.589 10.16 1.589 7.047 0 13.583-2.19 18.963-5.927l-0.11 0.072c8.249-5.825 13.587-15.296 13.653-26.016l0-0.010v-46.507h29.867v46.507c0.266 17.704 14.681 31.954 32.423 31.954 3.664 0 7.187-0.608 10.472-1.728l-0.228 0.068 17.493-6.4-75.093 113.92-76.8-114.347z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["vuesax"]},"attrs":[{}],"properties":{"order":6951,"id":13,"name":"vuesax","prevSize":32,"code":60207},"setIdx":0,"setId":0,"iconIdx":559},{"icon":{"paths":["M234.701 423.117c-16.966 0-30.72 13.754-30.72 30.72s13.754 30.72 30.72 30.72v0h252.314c16.966 0 30.72-13.754 30.72-30.72s-13.754-30.72-30.72-30.72v0z","M863.027 464.896h-87.245c-63.34-0-114.688 51.348-114.688 114.688s51.348 114.688 114.688 114.688v0h87.245c38.004 0 68.813-30.809 68.813-68.813v0-92.979c-0.69-37.472-31.23-67.584-68.802-67.584-0.004 0-0.008 0-0.012 0l0.001-0zM870.4 625.459c0 4.072-3.301 7.373-7.373 7.373v0h-87.245c-29.408 0-53.248-23.84-53.248-53.248s23.84-53.248 53.248-53.248l87.245 0c4.072 0 7.373 3.301 7.373 7.373v0z","M823.296 749.568v0c-2.53-0.741-5.437-1.167-8.443-1.167-13.804 0-25.51 8.985-29.588 21.427l-0.062 0.22c-16.031 49.863-61.743 85.422-115.847 86.015l-0.070 0.001h-435.405c-67.865 0-122.88-55.015-122.88-122.88v0-305.152c0.195-0.613 0.308-1.317 0.308-2.048s-0.113-1.435-0.321-2.097l0.013 0.049c1.152-66.978 55.718-120.832 122.863-120.832 0.006 0 0.012 0 0.018 0l434.175-0c0.116-0 0.253-0.001 0.39-0.001 56.032 0 103.126 38.269 116.571 90.095l0.184 0.837c3.5 13.478 15.557 23.268 29.901 23.268 17.036 0 30.846-13.81 30.846-30.846 0-2.692-0.345-5.303-0.993-7.792l0.047 0.214c-20.865-79.262-91.72-136.832-176.084-137.216l-0.044-0h-26.214c-15.787-77.318-83.046-134.737-163.793-135.168l-0.047-0h-258.048c-93.416 0.231-169.11 75.781-169.574 169.12l-0 0.044v458.752c-0 0.122-0 0.266-0 0.41 0 100.748 81.556 182.448 182.25 182.681l0.022 0h435.405c0.194 0.001 0.423 0.001 0.653 0.001 81.664 0 150.728-53.948 173.497-128.149l0.339-1.285c0.895-2.752 1.411-5.918 1.411-9.204 0-13.667-8.925-25.249-21.264-29.237l-0.217-0.061zM112.64 275.661c0.463-59.451 48.65-107.495 108.112-107.725l0.022-0h256.41c0.229-0.002 0.501-0.003 0.772-0.003 47.182 0 87.226 30.566 101.409 72.976l0.219 0.755h-345.702c-102.4 0-122.88 49.971-122.88 49.971z"],"attrs":[{},{},{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet"]},"attrs":[{},{},{}],"properties":{"order":6952,"id":12,"name":"wallet","prevSize":32,"code":60208},"setIdx":0,"setId":0,"iconIdx":560},{"icon":{"paths":["M772.693 887.893h-247.893c-0.096 0.001-0.21 0.001-0.323 0.001-19.187 0-36.098-9.742-46.057-24.549l-0.126-0.198-128-184.32c-6.213-8.969-9.925-20.081-9.925-32.060 0-9.652 2.41-18.741 6.66-26.698l-0.149 0.305c9.7-18.117 28.34-30.323 49.866-30.719l0.054-0.001h177.067l-222.72-381.013c-4.856-8.19-7.726-18.053-7.726-28.587 0-31.34 25.406-56.747 56.747-56.747 0.016 0 0.033 0 0.049 0l232.958-0c34.948 0.066 65.488 18.88 82.104 46.917l0.243 0.443 247.467 426.667c4.778 8.175 7.599 17.998 7.599 28.48 0 12.168-3.801 23.448-10.281 32.718l0.122-0.185-141.227 205.227c-10.376 14.763-27.326 24.298-46.503 24.32l-0.003 0zM528.64 823.893h239.36l136.533-197.547-244.48-423.68c-5.351-9.486-15.363-15.787-26.846-15.787-0.012 0-0.024 0-0.036 0l-220.158-0 223.573 380.587c4.857 8.19 7.727 18.054 7.727 28.588 0 31.207-25.19 56.53-56.347 56.745l-0.020 0h-176.213zM238.080 857.173c-0.005 0-0.011 0-0.016 0-20.478 0-38.616-10.019-49.78-25.422l-0.123-0.178-122.88-170.667c-7.003-9.936-11.193-22.292-11.193-35.627s4.19-25.691 11.325-35.824l-0.132 0.197 140.373-205.653c11.187-16.205 29.478-26.816 50.272-27.305l0.074-0.001h197.973c0.478-0.013 1.040-0.020 1.605-0.020 23.957 0 44.899 12.905 56.256 32.142l0.166 0.304c5.545 9.281 8.823 20.471 8.823 32.427s-3.278 23.146-8.985 32.72l0.162-0.293-220.587 372.48c-10.368 17.596-28.885 29.424-50.227 30.289l-0.12 0.004zM256 420.693l-139.093 206.507 122.88 166.827 215.893-372.48z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wanchain"]},"attrs":[{}],"properties":{"order":6953,"id":11,"name":"wanchain","prevSize":32,"code":60209},"setIdx":0,"setId":0,"iconIdx":561},{"icon":{"paths":["M871.68 836.693c0.034 1.096 0.053 2.384 0.053 3.678 0 35.612-14.543 67.827-38.014 91.030l-0.012 0.012c-24.439 24.26-58.107 39.254-95.276 39.254-0.105 0-0.209-0-0.314-0l0.016 0h-451.84c-0.156 0.001-0.341 0.001-0.525 0.001-71.72 0-130.193-56.717-133.013-127.745l-0.008-0.256v-19.2c0.836-78.061 35.191-147.935 89.328-196.030l0.272-0.237 115.627-104.107c3.819-2.912 6.258-7.465 6.258-12.587s-2.439-9.674-6.22-12.559l-0.038-0.028-116.053-104.107c-5.236-5.559-8.453-13.071-8.453-21.333s3.217-15.774 8.468-21.349l-0.015 0.016c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 113.92 100.267c16.477 14.465 26.822 35.571 26.822 59.093s-10.345 44.629-26.734 59.017l-0.089 0.076-115.627 104.107c-42.080 36.226-68.686 89.416-69.12 148.831l-0 0.076v18.347c1.417 37.292 31.99 66.987 69.5 66.987 0.017 0 0.033-0 0.050-0l452.264 0c38.461-0.242 69.547-31.477 69.547-69.972 0-0-0-0.001-0-0.001l0 0v-14.507c-0.23-59.794-26.874-113.319-68.864-149.544l-0.256-0.216-115.627-104.107c-16.228-14.592-26.388-35.656-26.388-59.093s10.16-44.502 26.316-59.029l0.073-0.064 115.2-103.68c42.010-36.446 68.579-89.734 69.119-149.239l0.001-0.094v-13.653c-0.241-37.991-31.094-68.695-69.119-68.695-0.15 0-0.301 0-0.451 0.001l0.023-0h-451.84c-0.127-0.001-0.277-0.001-0.428-0.001-38.024 0-68.877 30.704-69.119 68.672l-0 0.023v13.653c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-13.653c0.722-72.733 59.852-131.416 132.687-131.416 0.302 0 0.604 0.001 0.906 0.003l-0.046-0h451.84c0.255-0.002 0.557-0.003 0.859-0.003 72.835 0 131.965 58.683 132.687 131.348l0.001 0.068v13.653c-0.806 77.803-35.185 147.419-89.313 195.165l-0.287 0.248-115.627 104.107c-3.659 2.996-5.975 7.513-5.975 12.572 0 0.080 0.001 0.16 0.002 0.24l-0-0.012c-0 0.002-0 0.005-0 0.007 0 4.995 2.32 9.449 5.942 12.342l0.032 0.024 115.627 104.107c54.415 47.994 88.794 117.61 89.599 195.272l0.001 0.142zM336.64 761.173l103.253-104.533c19.245-18.632 45.508-30.115 74.453-30.115s55.208 11.483 74.482 30.143l-0.029-0.028 102.827 104.533c9.3 9.206 15.059 21.975 15.059 36.089 0 7.48-1.618 14.582-4.522 20.976l0.13-0.319c-8.216 18.399-26.299 31.017-47.343 31.147l-0.017 0h-281.173c-0.112 0.001-0.245 0.001-0.378 0.001-28.513 0-51.627-23.114-51.627-51.627 0-14.139 5.683-26.95 14.89-36.273l-0.005 0.005zM401.493 786.347h225.707l-85.333-85.333c-7.533-6.819-17.572-10.993-28.587-10.993s-21.054 4.173-28.623 11.025l0.036-0.032z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["watch"]},"attrs":[{}],"properties":{"order":6954,"id":10,"name":"watch","prevSize":32,"code":60210},"setIdx":0,"setId":0,"iconIdx":562},{"icon":{"paths":["M512 970.667c-0.118 0-0.258 0-0.398 0-80.464 0-156.052-20.875-221.644-57.504l2.309 1.184-128 34.987c-6.088 1.81-13.083 2.852-20.321 2.852-13.74 0-26.603-3.754-37.62-10.293l0.341 0.187c-22.307-13.294-37.017-37.291-37.017-64.724 0-7.34 1.053-14.435 3.017-21.14l-0.133 0.531 34.56-128c-36.033-64.096-57.259-140.692-57.259-222.246 0-254.022 205.925-459.947 459.947-459.947s459.947 205.925 459.947 459.947c0 123.159-48.406 235.012-127.23 317.571l0.169-0.178c-82.814 88.985-200.028 145.001-330.345 146.77l-0.322 0.003zM300.8 845.653l11.52 6.827c56.522 32.734 124.35 52.051 196.69 52.051 219.618 0 397.653-178.035 397.653-397.653 0-6.452-0.154-12.868-0.458-19.245l0.034 0.901c-7.383-115.576-63.251-216.787-147.287-284.417l-0.767-0.597c-66.502-52.635-151.593-84.435-244.11-84.435-218.204 0-395.093 176.889-395.093 395.093 0 71.852 19.18 139.224 52.7 197.275l-1.016-1.907 6.827 11.093-42.667 154.027c-0.588 1.252-0.931 2.719-0.931 4.267s0.343 3.015 0.958 4.33l-0.026-0.063c0.8 1.45 1.963 2.613 3.37 3.391l0.044 0.022c1.179 0.611 2.574 0.969 4.053 0.969s2.874-0.358 4.103-0.993l-0.050 0.024zM626.773 760.32c-46.651-3.548-89.088-18.983-125.078-43.25l0.918 0.583c-86.216-52.573-155.727-124.68-203.743-210.448l-1.484-2.885c-46.080-90.88-42.667-159.147 12.373-209.92 15.058-15.1 35.203-25.122 57.644-27.277l0.382-0.030c3.283-0.57 7.064-0.896 10.92-0.896 22.819 0 42.973 11.41 55.068 28.835l0.145 0.221 61.867 93.013c1.693 5.456 3.183 12.088 4.177 18.88l0.090 0.747c0.136 1.472 0.213 3.182 0.213 4.911 0 12.042-3.751 23.209-10.149 32.394l0.122-0.185c0 2.133-12.373 14.933-20.907 25.173 24.481 32.718 52.616 60.853 84.258 84.562l1.075 0.771c7.253-6.827 16.64-14.933 23.893-20.48 9.927-6.986 22.269-11.165 35.586-11.165 9.374 0 18.264 2.070 26.238 5.779l-0.384-0.16 4.693 2.987 89.6 61.867c6.35 5.815 11.969 12.246 16.82 19.25l0.247 0.377c4.798 9.553 7.608 20.817 7.608 32.737 0 7.338-1.065 14.427-3.048 21.122l0.133-0.525c-8.316 30.962-28.722 56.105-55.717 70.533l-0.603 0.294c-20.802 12.792-45.984 20.4-72.938 20.48l-0.022 0zM378.027 328.96c-9.926 0.689-18.651 5.323-24.708 12.328l-0.038 0.045c-21.333 19.2-40.107 52.053 0 133.547 43.435 77.553 104.422 140.59 177.842 185.205l2.211 1.248c71.68 42.667 103.253 39.253 133.12 21.76 14.774-6.908 25.114-21.092 26.443-37.814l0.010-0.16-2.56-2.56-76.8-53.76c-9.041 7.189-17.119 14.59-24.652 22.513l-0.094 0.1c-7.817 8.426-18.95 13.681-31.31 13.681-7.445 0-14.445-1.907-20.538-5.259l0.221 0.111c-52.821-33.53-96.677-76.298-130.423-126.437l-0.991-1.563c-3.709-6.196-5.903-13.668-5.903-21.653 0-11.897 4.869-22.657 12.724-30.395l0.005-0.005 22.613-26.453-53.76-82.347zM543.573 565.76v0zM458.24 454.827v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["whatsapp"]},"attrs":[{}],"properties":{"order":6955,"id":9,"name":"whatsapp","prevSize":32,"code":60211},"setIdx":0,"setId":0,"iconIdx":563},{"icon":{"paths":["M270.933 963.413c-92.282-0.034-168.37-69.322-179.116-158.712l-0.084-0.861-37.547-320.853c-0.791-6.359-1.242-13.72-1.242-21.185 0-57.971 27.203-109.588 69.54-142.783l0.395-0.298 285.867-220.587c30.3-23.319 68.783-37.372 110.548-37.372 44.413 0 85.115 15.892 116.728 42.3l-0.289-0.235 270.933 228.267c39.717 33.258 64.795 82.864 64.795 138.328 0 11.432-1.065 22.615-3.102 33.456l0.175-1.117-53.333 308.907c-14.822 85.771-88.668 150.187-177.559 150.187-0.127 0-0.254-0-0.381-0l0.020 0h-465.92zM737.28 930.56v0zM519.253 124.587c-0.049-0-0.108-0-0.166-0-26.901 0-51.664 9.153-71.345 24.514l0.257-0.193-285.867 220.587c-26.729 21.286-43.711 53.827-43.711 90.335 0 5.459 0.38 10.829 1.114 16.085l-0.069-0.607 37.547 321.28c7.064 58.169 56.129 102.8 115.624 102.827l465.923 0c0.053 0 0.116 0 0.179 0 57.617 0 105.427-41.987 114.502-97.033l0.092-0.674 53.333-312.747c1.098-5.995 1.726-12.894 1.726-19.94 0-35.585-16.016-67.43-41.233-88.718l-0.173-0.142-272.64-228.267c-20.161-16.985-46.422-27.307-75.093-27.307v0zM512 660.48c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM619.093 640c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-27.933-29.7-67.487-48.198-111.36-48.198s-83.427 18.497-111.286 48.119l-0.074 0.079c-4.517 5.476-7.257 12.564-7.257 20.292 0 17.673 14.327 32 32 32 7.622 0 14.621-2.665 20.117-7.113l-0.060 0.047c16.513-17.96 40.12-29.175 66.347-29.175s49.834 11.215 66.288 29.11l0.059 0.065c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0zM710.4 535.467c4.834-5.574 7.78-12.9 7.78-20.914 0-9.709-4.324-18.408-11.151-24.277l-0.042-0.036c-203.52-176.213-397.653 0-399.787 0-8.397 5.851-13.824 15.46-13.824 26.337 0 17.673 14.327 32 32 32 9.806 0 18.581-4.411 24.451-11.356l0.039-0.047c41.247-37.948 96.52-61.21 157.227-61.21s115.98 23.263 157.392 61.36l-0.165-0.15c5.598 4.732 12.898 7.608 20.869 7.608 9.689 0 18.385-4.249 24.327-10.986l0.031-0.035z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wifi-home"]},"attrs":[{}],"properties":{"order":6956,"id":8,"name":"wifi-home","prevSize":32,"code":60212},"setIdx":0,"setId":0,"iconIdx":564},{"icon":{"paths":["M684.8 970.667h-343.467c-157.782-0.242-285.624-128.084-285.867-285.843l-0-0.024v-343.467c-0.003-0.507-0.005-1.107-0.005-1.707 0-157.967 127.938-286.053 285.849-286.293l0.023-0h345.6c157.013 1.446 283.738 129.065 283.738 286.282 0 0.604-0.002 1.208-0.006 1.811l0-0.093v345.6c-1.447 156.865-128.83 283.498-285.844 283.733l-0.023 0zM341.333 117.333c-0.637-0.007-1.39-0.010-2.144-0.010-122.534 0-221.867 99.333-221.867 221.867 0 0.754 0.004 1.507 0.011 2.259l-0.001-0.115v345.6c1.201 121.617 100.069 219.744 221.857 219.744 0.754 0 1.507-0.004 2.259-0.011l-0.115 0.001h345.6c122.436-0.242 221.624-99.431 221.867-221.844l0-0.023v-343.467c-0.242-122.436-99.431-221.624-221.844-221.867l-0.023-0zM634.453 686.507c3.221-4.868 5.14-10.843 5.14-17.266 0-10.377-5.006-19.585-12.736-25.341l-0.084-0.060c-30.781-22.955-69.566-36.753-111.573-36.753s-80.793 13.797-112.071 37.107l0.497-0.354c-7.466 5.922-12.212 14.993-12.212 25.173 0 17.702 14.35 32.052 32.052 32.052 7.522 0 14.439-2.591 19.906-6.929l-0.066 0.051c20.237-14.905 45.66-23.854 73.173-23.854s52.936 8.949 73.517 24.095l-0.343-0.241c5.248 3.667 11.743 5.89 18.753 5.973l0.021 0c9.917-0.764 18.486-5.942 23.825-13.551l0.068-0.102zM730.453 558.507c3.398-5.004 5.426-11.179 5.426-17.827 0-9.998-4.586-18.926-11.768-24.794l-0.057-0.045c-57.494-45.583-131.093-73.128-211.126-73.128-77.823 0-149.564 26.045-206.981 69.893l0.826-0.606c-6.961 6.026-11.339 14.875-11.339 24.747 0 18.045 14.628 32.673 32.673 32.673 8.173 0 15.645-3.001 21.374-7.961l-0.041 0.035c45.029-34.118 101.992-54.652 163.75-54.652 65.65 0 125.881 23.204 172.939 61.858l-0.475-0.379c5.315 3.918 11.97 6.305 19.177 6.4l0.023 0c9.972-1.138 18.427-6.774 23.389-14.798l0.078-0.135zM793.173 419.84c3.308-4.914 5.28-10.967 5.28-17.48 0-10.252-4.886-19.362-12.457-25.13l-0.077-0.056c-75.019-56.673-169.847-90.773-272.64-90.773s-197.621 34.1-273.79 91.605l1.15-0.832c-6.961 6.026-11.339 14.875-11.339 24.747 0 18.045 14.628 32.673 32.673 32.673 8.173 0 15.645-3.001 21.374-7.961l-0.041 0.035c64.169-49.928 145.901-80.047 234.667-80.047s170.497 30.119 235.532 80.694l-0.865-0.648c5.106 3.659 11.458 5.883 18.325 5.973l0.022 0c8.188-1.146 15.219-5.375 20.003-11.454l0.050-0.066z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wifi-square"]},"attrs":[{}],"properties":{"order":6957,"id":7,"name":"wifi-square","prevSize":32,"code":60213},"setIdx":0,"setId":0,"iconIdx":565},{"icon":{"paths":["M512 970.667c-64.801 0-117.333-52.532-117.333-117.333s52.532-117.333 117.333-117.333c64.801 0 117.333 52.532 117.333 117.333v0c0 64.801-52.532 117.333-117.333 117.333v0zM512 800c-29.455 0-53.333 23.878-53.333 53.333s23.878 53.333 53.333 53.333c29.455 0 53.333-23.878 53.333-53.333v0c0-29.455-23.878-53.333-53.333-53.333v0zM630.187 730.88l-26.88-17.493c-25.864-16.61-57.433-26.479-91.307-26.479s-65.442 9.868-91.988 26.887l0.681-0.409-26.88 17.493-52.48-83.2c-7.851-11.507-12.537-25.718-12.537-41.023 0-7.587 1.151-14.906 3.289-21.79l-0.139 0.52c6.037-20.664 20.458-37.177 39.232-45.893l0.448-0.187c41.728-19.403 90.582-30.723 142.080-30.723s100.351 11.319 144.209 31.606l-2.129-0.883c19.222 8.903 33.643 25.416 39.551 45.567l0.129 0.513c1.398 5.354 2.2 11.5 2.2 17.834 0 16.792-5.64 32.267-15.129 44.633l0.129-0.174zM512 622.080c35.669 0.036 69.417 8.217 99.499 22.783l-1.366-0.596 20.907-31.573c0.641-1.446 1.014-3.133 1.014-4.907s-0.373-3.461-1.046-4.986l0.031 0.079c-0.624-2.515-2.359-4.531-4.641-5.526l-0.052-0.020c-33.964-15.763-73.722-24.958-115.627-24.958s-81.662 9.195-117.365 25.678l1.738-0.72c-2.335 1.016-4.070 3.031-4.682 5.491l-0.012 0.056c-0.641 1.446-1.014 3.133-1.014 4.907s0.373 3.461 1.046 4.986l-0.031-0.079 20.907 31.573c28.789-14.009 62.63-22.198 98.384-22.198 0.812 0 1.623 0.004 2.433 0.013l-0.124-0.001zM145.067 350.293l-55.467-85.333c-7.624-11.599-12.162-25.819-12.162-41.098 0-6.003 0.7-11.843 2.024-17.441l-0.102 0.512c5.372-20.784 18.633-37.804 36.32-48.015l0.373-0.199c113.691-66.258 250.251-105.373 395.947-105.373s282.256 39.114 399.752 107.415l-3.806-2.042c18.060 10.409 31.322 27.43 36.575 47.677l0.118 0.536c1.221 5.086 1.922 10.926 1.922 16.929 0 15.279-4.537 29.498-12.338 41.384l0.176-0.286-55.467 85.333-25.6-17.92c-96.174-63.88-214.311-101.924-341.333-101.924s-245.159 38.045-343.637 103.361l2.304-1.437zM512 167.253c0.242-0 0.528-0 0.814-0 127.95 0 247.678 35.2 350.029 96.445l-3.11-1.725 20.907-32c0.529-1.195 0.836-2.588 0.836-4.053s-0.308-2.859-0.862-4.119l0.026 0.066c-0.447-3.372-1.995-6.32-4.264-8.53l-0.003-0.003c-104.91-59.808-230.524-95.068-364.373-95.068s-259.462 35.259-368.059 96.996l3.685-1.929c-2.785 1.796-4.884 4.447-5.943 7.578l-0.030 0.102c-0.529 1.195-0.836 2.588-0.836 4.053s0.308 2.859 0.862 4.119l-0.026-0.066 20.907 32c98.904-58.999 218.122-93.878 345.488-93.878 1.39 0 2.779 0.004 4.167 0.012l-0.215-0.001zM269.653 540.587l-55.467-85.333c-7.441-11.579-11.862-25.714-11.862-40.881 0-6.234 0.747-12.294 2.156-18.095l-0.107 0.522c5.335-20.788 18.805-37.742 36.731-47.591l0.389-0.196c78.414-42.112 171.571-66.854 270.507-66.854s192.092 24.742 273.62 68.376l-3.114-1.522c18.315 10.045 31.785 26.999 37.006 47.266l0.114 0.521c1.551 5.75 2.443 12.351 2.443 19.161 0 14.862-4.245 28.733-11.589 40.466l0.187-0.32-55.467 85.333-26.88-17.493c-60.884-39.725-135.416-63.354-215.467-63.354s-154.583 23.628-217.002 64.291l1.535-0.938zM512 394.667c0.021-0 0.045-0 0.069-0 81.925 0 158.823 21.519 225.352 59.212l-2.274-1.186 20.907-31.573c0.54-1.26 0.853-2.727 0.853-4.267s-0.314-3.006-0.881-4.339l0.027 0.073c-0.652-3.094-2.521-5.661-5.072-7.226l-0.048-0.028c-69.658-37.28-152.378-59.178-240.213-59.178s-170.554 21.899-242.998 60.534l2.784-1.356c-2.599 1.593-4.468 4.16-5.107 7.181l-0.013 0.072c-0.553 1.19-0.876 2.584-0.876 4.053s0.323 2.863 0.901 4.114l-0.025-0.061 20.907 31.573c64.073-36.251 140.709-57.612 222.334-57.612 1.186 0 2.371 0.005 3.554 0.014l-0.181-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wifi"]},"attrs":[{}],"properties":{"order":6958,"id":6,"name":"wifi","prevSize":32,"code":60214},"setIdx":0,"setId":0,"iconIdx":566},{"icon":{"paths":["M208.213 971.52h-3.84c-44.804-1.068-84.774-20.898-112.508-51.903l-0.132-0.15c-24.022-27.883-38.651-64.452-38.651-104.438 0-45.447 18.898-86.481 49.265-115.671l0.053-0.050 198.4-197.973c18.085-17.746 29.294-42.443 29.294-69.759 0-4.136-0.257-8.212-0.756-12.212l0.049 0.478c-2.078-13.736-3.265-29.587-3.265-45.714 0-177.674 144.033-321.707 321.707-321.707 2.198 0 4.391 0.022 6.578 0.066l-0.327-0.005c42.267 0.804 76.222 35.257 76.222 77.64 0 21.515-8.75 40.987-22.885 55.050l-0.003 0.003-122.453 122.453c-6.573 6.369-10.653 15.277-10.653 25.139 0 5.108 1.095 9.961 3.062 14.336l-0.089-0.221c21.024 43.84 55.573 78.389 98.165 98.872l1.249 0.541c4.073 1.797 8.822 2.843 13.815 2.843 9.798 0 18.655-4.027 25.006-10.517l0.006-0.006 122.88-122.88c14.025-13.89 33.328-22.472 54.635-22.472 42.237 0 76.598 33.721 77.629 75.709l0.002 0.096c0.039 1.86 0.061 4.053 0.061 6.251 0 177.674-144.033 321.707-321.707 321.707-16.127 0-31.978-1.187-47.468-3.478l1.754 0.213c-3.362-0.408-7.255-0.641-11.202-0.641-27.549 0-52.447 11.352-70.271 29.634l-0.020 0.021-203.093 202.667c-28.21 28.443-67.299 46.058-110.502 46.080l-0.004 0zM647.68 118.187c-0.862-0.010-1.88-0.016-2.899-0.016-141.385 0-256 114.615-256 256 0 13.558 1.054 26.871 3.085 39.859l-0.186-1.443c0.828 6.148 1.301 13.254 1.301 20.471 0 45.086-18.451 85.862-48.215 115.19l-0.020 0.019-197.12 196.267c-18.556 17.813-30.085 42.823-30.085 70.526 0 23.497 8.295 45.058 22.115 61.912l-0.137-0.172c16.329 18.363 39.803 30.066 66.020 30.718l0.114 0.002c0.487 0.009 1.062 0.014 1.639 0.014 25.835 0 49.232-10.437 66.205-27.325l-0.004 0.004 203.093-202.667c28.962-29.853 69.454-48.38 114.273-48.38 7.549 0 14.976 0.526 22.245 1.542l-0.838-0.096c11.572 1.853 24.912 2.912 38.501 2.912 141.385 0 256-114.615 256-256 0-2.524-0.037-5.040-0.109-7.546l0.008 0.368c0-0.002 0-0.005 0-0.007 0-5.618-3.503-10.418-8.443-12.335l-0.090-0.031c-1.515-0.683-3.285-1.081-5.148-1.081-3.69 0-7.016 1.562-9.352 4.060l-0.007 0.007-122.88 122.88c-17.89 18.172-42.756 29.432-70.252 29.432-15.24 0-29.672-3.459-42.554-9.634l0.593 0.256c-56.156-27.493-100.507-71.844-127.284-126.385l-0.716-1.615c-5.951-12.347-9.428-26.848-9.428-42.161 0-27.576 11.277-52.519 29.47-70.468l0.011-0.011 122.453-122.453c2.556-2.277 4.158-5.578 4.158-9.252 0-1.908-0.432-3.715-1.203-5.329l0.032 0.075c-2.044-4.961-6.791-8.413-12.358-8.533l-0.015-0zM236.8 845.227l235.52-235.52c7.295-7.642 11.784-18.017 11.784-29.44s-4.489-21.798-11.8-29.457l0.016 0.017c-7.616-7.174-17.907-11.582-29.227-11.582s-21.611 4.408-29.248 11.602l0.022-0.020-235.947 235.947c-7.174 7.616-11.582 17.907-11.582 29.227s4.408 21.611 11.602 29.248l-0.020-0.022c7.642 7.295 18.017 11.784 29.44 11.784s21.798-4.489 29.457-11.8l-0.017 0.016z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wrench"]},"attrs":[{}],"properties":{"order":6959,"id":5,"name":"wrench","prevSize":32,"code":60215},"setIdx":0,"setId":0,"iconIdx":567},{"icon":{"paths":["M512 970.667c-253.315 0-458.667-205.352-458.667-458.667s205.352-458.667 458.667-458.667c253.315 0 458.667 205.352 458.667 458.667v0c-0.243 253.217-205.45 458.424-458.644 458.667l-0.023 0zM512 117.333c-217.968 0-394.667 176.698-394.667 394.667s176.698 394.667 394.667 394.667c217.968 0 394.667-176.698 394.667-394.667v0c-0.243-217.87-176.796-394.424-394.643-394.667l-0.024-0zM702.72 665.6c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-243.2c0-17.673 14.327-32 32-32s32 14.327 32 32v0 243.2c0 17.673-14.327 32-32 32v-0zM612.693 633.6v-128c0.006-0.512 0.010-1.117 0.010-1.722 0-79.607-63.935-144.282-143.258-145.477l-0.112-0.001h-148.053c-17.673 0-32 14.327-32 32v0 243.2c0 17.673 14.327 32 32 32s32-14.327 32-32v-211.2h116.053c44.91 0.241 81.253 36.583 81.493 81.47l0 0.023v128c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM580.693 633.6h-97.707v-121.6c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 121.6c0 17.673 14.327 32 32 32s32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["xaomi"]},"attrs":[{}],"properties":{"order":6960,"id":4,"name":"xaomi","prevSize":32,"code":60216},"setIdx":0,"setId":0,"iconIdx":568},{"icon":{"paths":["M971.093 337.067c-0.968-157.38-128.773-284.587-286.288-284.587-0.002 0-0.004 0-0.006 0l-347.306-0c-0.003-0-0.007-0-0.011-0-158.115 0-286.293 128.178-286.293 286.293 0 0.9 0.004 1.799 0.012 2.697l-0.001-0.137v344.747c0.471 157.759 128.468 285.466 286.292 285.466 1.35 0 2.699-0.009 4.045-0.028l-0.204 0.002h346.88c157.385-0.962 284.598-128.769 284.598-286.288 0-0.902-0.004-1.803-0.012-2.703l0.001 0.138zM843.093 839.68c-39.882 40.58-95.256 65.823-156.528 66.133l-345.232 1.707c-0.001 0-0.002 0-0.004 0-122.319 0-221.563-98.796-222.289-220.944l-0-0.069-3.84-345.173c-0-0.129-0-0.281-0-0.433 0-122.405 98.745-221.747 220.922-222.713l0.092-0.001h347.307c0.001-0 0.002-0 0.004-0 122.319 0 221.563 98.796 222.289 220.944l0 0.069v344.747c0.014 0.933 0.022 2.034 0.022 3.138 0 59.278-23.428 113.085-61.529 152.666l0.067-0.070zM517.547 381.44l-100.693 130.56 100.693 128c3.502 5.101 5.593 11.409 5.593 18.205 0 9.744-4.298 18.484-11.102 24.429l-0.038 0.033c-5.332 4.254-12.17 6.827-19.608 6.827-0.007 0-0.013-0-0.020-0l0.001 0c-0.035 0-0.076 0-0.117 0-10.307 0-19.492-4.809-25.431-12.306l-0.052-0.067-90.453-113.92-90.453 116.48c-5.89 7.534-14.967 12.34-25.168 12.373l-0.005 0c-0.070 0.001-0.154 0.001-0.237 0.001-17.673 0-32-14.327-32-32 0-7.62 2.664-14.619 7.111-20.114l100.219-127.94-100.267-128c-4.865-5.712-7.824-13.177-7.824-21.333 0-18.224 14.773-32.997 32.997-32.997 10.068 0 19.082 4.509 25.135 11.617l0.039 0.047 90.453 116.48 90.453-116.48c5.925-7.612 15.090-12.462 25.387-12.462 17.722 0 32.089 14.367 32.089 32.089 0 7.425-2.522 14.261-6.756 19.699l0.054-0.072zM764.587 329.813c-0.128-0.002-0.279-0.003-0.43-0.003-17.437 0-31.573 14.136-31.573 31.573 0 0.151 0.001 0.302 0.003 0.452l-0-0.023v116.907h-42.667c-58.91-0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667h74.667c17.673 0 32-14.327 32-32v0-298.667c-0.241-17.489-14.474-31.573-31.997-31.573-0.001 0-0.002 0-0.003 0l0-0zM732.587 628.48h-42.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h42.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["xd"]},"attrs":[{}],"properties":{"order":6961,"id":3,"name":"xd","prevSize":32,"code":60217},"setIdx":0,"setId":0,"iconIdx":569},{"icon":{"paths":["M715.162 641.434c-16.966 0-30.72-13.754-30.72-30.72v0-142.541l-111.002 64.307v79.053c0 16.966-13.754 30.72-30.72 30.72s-30.72-13.754-30.72-30.72v0-97.485c0.037-11.356 6.23-21.257 15.416-26.545l0.149-0.079 172.032-99.123c4.374-2.71 9.68-4.316 15.36-4.316s10.986 1.606 15.487 4.389l-0.127-0.073c9.334 5.367 15.528 15.268 15.565 26.619l0 0.005v195.789c-0.228 16.874-13.846 30.492-30.698 30.72l-0.022 0zM469.402 609.075v-96.256c-0.037-11.356-6.23-21.257-15.416-26.545l-0.149-0.079-170.394-99.123c-4.374-2.71-9.68-4.316-15.36-4.316s-10.986 1.606-15.487 4.389l0.127-0.073c-9.219 5.299-15.373 15.017-15.564 26.188l-0 0.027v195.789c0 16.966 13.754 30.72 30.72 30.72s30.72-13.754 30.72-30.72v0-142.541l111.002 65.946v78.643c0 16.966 13.754 30.72 30.72 30.72s30.72-13.754 30.72-30.72v0zM489.882 952.32c-242.477-0.931-438.682-197.711-438.682-440.317 0-243.182 197.138-440.32 440.32-440.32 243.181 0 440.318 197.136 440.32 440.317l0 0c-0.233 243.088-197.232 440.087-440.298 440.32l-0.022 0zM489.882 133.12c-209.25 0-378.88 169.63-378.88 378.88s169.63 378.88 378.88 378.88c209.25 0 378.88-169.63 378.88-378.88v0c-0.229-208.582-168.79-377.718-377.13-378.88l-0.111-0z"],"attrs":[{}],"width":983,"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["xmr"]},"attrs":[{}],"properties":{"order":6962,"id":2,"name":"xmr","prevSize":32,"code":60218},"setIdx":0,"setId":0,"iconIdx":570},{"icon":{"paths":["M679.253 640c-9.404-107.353-42.289-205.325-93.461-291.127l1.728 3.127c-41.82-69.863-95.62-128.154-159.14-173.764l-1.713-1.17c-62.717-44.456-140.812-71.065-225.122-71.065-52.791 0-103.146 10.433-149.114 29.349l2.609-0.951c-10.581 4.749-17.983 14.863-18.768 26.785l-0.005 0.095c-19.627 273.067 213.333 329.813 366.507 367.36 142.933 34.56 198.827 103.68 213.333 123.733-0.784 64.847-27.561 123.292-70.373 165.52l-0.027 0.026c-41.262 45.738-97.048 77.669-160.047 88.51l-1.66 0.236c-1.667-11.255-2.619-24.245-2.619-37.458 0-66.204 23.896-126.826 63.533-173.713l-0.328 0.398 25.173-32.853c3.522-5.067 5.626-11.349 5.626-18.123 0-17.673-14.327-32-32-32-9.756 0-18.493 4.366-24.362 11.251l-0.037 0.045c-7.68 10.24-15.787 20.48-24.747 31.573-47.802 56.352-76.869 129.907-76.869 210.252 0 30.080 4.074 59.209 11.701 86.864l-0.538-2.289c4.491 12.441 16.139 21.199 29.85 21.333l0.016 0h3.84c91.978-4.761 173.485-45.985 231.004-109.374l0.249-0.279c53.213-53.008 86.14-126.347 86.14-207.377 0-5.247-0.138-10.461-0.411-15.64l0.030 0.723zM418.133 469.333c-182.187-42.667-322.133-93.867-318.72-280.32 30.671-10.555 66.013-16.65 102.778-16.65 70.191 0 135.193 22.214 188.36 59.994l-1.005-0.678c101.964 76.62 175.975 185.599 206.993 311.499l0.793 3.808c-51.053-35.646-111.098-62.564-175.843-77.024l-3.357-0.63zM768 635.307c-7.213-0.142-14.089-1.38-20.535-3.554l0.481 0.141c-23.291-7.523-40.283-27.956-42.647-52.658l-0.019-0.248c-4.942-69.965-23.307-134.576-52.531-192.794l1.331 2.927c-17.971-30.226-28.593-66.641-28.593-105.538 0-19.994 2.807-39.333 8.048-57.644l-0.361 1.475c24.961-94.459 105.327-164.598 203.428-174.007l0.945-0.073c0.738-0.061 1.598-0.096 2.466-0.096 6.74 0 12.987 2.112 18.115 5.71l-0.101-0.067c65.666 39.256 111.757 105.45 123.139 182.93l0.168 1.39c17.067 144.213-96.427 294.4-165.973 371.2-11.171 12.85-27.543 20.927-45.802 20.927-0.548 0-1.094-0.007-1.638-0.022l0.080 0.002zM832 118.613c-66.857 10.562-119.985 59.397-136.699 122.992l-0.261 1.168c-3.605 12.168-5.679 26.148-5.679 40.613 0 29.238 8.475 56.496 23.103 79.452l-0.357-0.599c30.305 61.332 50.334 132.888 55.786 208.484l0.108 1.863c59.307-69.547 161.28-202.667 147.2-321.707-8.045-55.433-38.88-102.403-82.521-131.835l-0.679-0.432z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["yii"]},"attrs":[{}],"properties":{"order":6963,"id":1,"name":"yii","prevSize":32,"code":60219},"setIdx":0,"setId":0,"iconIdx":571},{"icon":{"paths":["M445.44 669.44c-0.127 0.001-0.277 0.001-0.428 0.001-42.415 0-76.8-34.385-76.8-76.8 0-0.15 0-0.301 0.001-0.451l-0 0.023v-160c-0.001-0.168-0.002-0.367-0.002-0.566 0-42.651 34.576-77.227 77.227-77.227 14.828 0 28.68 4.179 40.443 11.424l-0.334-0.191 132.693 79.787c22.716 13.823 37.656 38.447 37.656 66.56s-14.94 52.737-37.313 66.366l-0.343 0.194-132.693 79.787c-11.258 6.967-24.909 11.096-39.525 11.096-0.205 0-0.409-0.001-0.613-0.002l0.031 0zM445.44 418.56c-0.002-0-0.004-0-0.007-0-7.305 0-13.227 5.922-13.227 13.227 0 0.15 0.002 0.3 0.007 0.448l-0.001-0.022v160c-0.005 0.136-0.008 0.295-0.008 0.455 0 4.815 2.75 8.987 6.765 11.032l0.070 0.032c1.886 1.156 4.17 1.841 6.613 1.841s4.727-0.685 6.669-1.873l-0.056 0.032 133.12-80.213c3.827-2.462 6.325-6.699 6.325-11.52s-2.498-9.058-6.271-11.487l-133.174-80.246c-1.906-1.075-4.186-1.708-6.613-1.708-0.075 0-0.15 0.001-0.225 0.002l0.011-0zM728.32 885.333h-432.64c-133.747-0.242-242.104-108.6-242.347-242.323l-0-0.023v-261.973c0.242-133.747 108.6-242.104 242.323-242.347l0.023-0h432.64c133.747 0.242 242.104 108.6 242.347 242.323l0 0.023v261.973c-0.242 133.747-108.6 242.104-242.323 242.347l-0.023 0zM295.68 202.667c-98.401 0.242-178.105 79.946-178.347 178.323l-0 0.023v261.973c0 98.498 79.849 178.347 178.347 178.347v0h432.64c98.498 0 178.347-79.849 178.347-178.347v0-261.973c-0.242-98.401-79.946-178.105-178.323-178.347l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["youtube"]},"attrs":[{}],"properties":{"order":6964,"id":0,"name":"youtube","prevSize":32,"code":60220},"setIdx":0,"setId":0,"iconIdx":572}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon","name":"icomoon"},"historySize":50,"showCodes":true,"gridSize":16}} \ No newline at end of file diff --git a/src/_metronic/assets/keenicons/outline/style.css b/src/_metronic/assets/keenicons/outline/style.css new file mode 100644 index 0000000..e177252 --- /dev/null +++ b/src/_metronic/assets/keenicons/outline/style.css @@ -0,0 +1,1746 @@ +@font-face { + font-family: 'keenicons-outline'; + src: url('fonts/keenicons-outline.eot?fzo4bm'); + src: url('fonts/keenicons-outline.eot?fzo4bm#iefix') format('embedded-opentype'), + url('fonts/keenicons-outline.ttf?fzo4bm') format('truetype'), + url('fonts/keenicons-outline.woff?fzo4bm') format('woff'), + url('fonts/keenicons-outline.svg?fzo4bm#keenicons-outline') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +.ki-outline { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'keenicons-outline' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ki-abstract-1.ki-outline:before { + content: "\e900"; +} +.ki-abstract-2.ki-outline:before { + content: "\e901"; +} +.ki-abstract-3.ki-outline:before { + content: "\e902"; +} +.ki-abstract-4.ki-outline:before { + content: "\e903"; +} +.ki-abstract-5.ki-outline:before { + content: "\e904"; +} +.ki-abstract-6.ki-outline:before { + content: "\e905"; +} +.ki-abstract-7.ki-outline:before { + content: "\e906"; +} +.ki-abstract-8.ki-outline:before { + content: "\e907"; +} +.ki-abstract-9.ki-outline:before { + content: "\e908"; +} +.ki-abstract-10.ki-outline:before { + content: "\e909"; +} +.ki-abstract-11.ki-outline:before { + content: "\e90a"; +} +.ki-abstract-12.ki-outline:before { + content: "\e90b"; +} +.ki-abstract-13.ki-outline:before { + content: "\e90c"; +} +.ki-abstract-14.ki-outline:before { + content: "\e90d"; +} +.ki-abstract-15.ki-outline:before { + content: "\e90e"; +} +.ki-abstract-16.ki-outline:before { + content: "\e90f"; +} +.ki-abstract-17.ki-outline:before { + content: "\e910"; +} +.ki-abstract-18.ki-outline:before { + content: "\e911"; +} +.ki-abstract-19.ki-outline:before { + content: "\e912"; +} +.ki-abstract-20.ki-outline:before { + content: "\e913"; +} +.ki-abstract-21.ki-outline:before { + content: "\e914"; +} +.ki-abstract-22.ki-outline:before { + content: "\e915"; +} +.ki-abstract-23.ki-outline:before { + content: "\e916"; +} +.ki-abstract-24.ki-outline:before { + content: "\e917"; +} +.ki-abstract-25.ki-outline:before { + content: "\e918"; +} +.ki-abstract-26.ki-outline:before { + content: "\e919"; +} +.ki-abstract-27.ki-outline:before { + content: "\e91a"; +} +.ki-abstract-28.ki-outline:before { + content: "\e91b"; +} +.ki-abstract-29.ki-outline:before { + content: "\e91c"; +} +.ki-abstract-30.ki-outline:before { + content: "\e91d"; +} +.ki-abstract-31.ki-outline:before { + content: "\e91e"; +} +.ki-abstract-32.ki-outline:before { + content: "\e91f"; +} +.ki-abstract-33.ki-outline:before { + content: "\e920"; +} +.ki-abstract-34.ki-outline:before { + content: "\e921"; +} +.ki-abstract-35.ki-outline:before { + content: "\e922"; +} +.ki-abstract-36.ki-outline:before { + content: "\e923"; +} +.ki-abstract-37.ki-outline:before { + content: "\e924"; +} +.ki-abstract-38.ki-outline:before { + content: "\e925"; +} +.ki-abstract-39.ki-outline:before { + content: "\e926"; +} +.ki-abstract-40.ki-outline:before { + content: "\e927"; +} +.ki-abstract-41.ki-outline:before { + content: "\e928"; +} +.ki-abstract-42.ki-outline:before { + content: "\e929"; +} +.ki-abstract-43.ki-outline:before { + content: "\e92a"; +} +.ki-abstract-44.ki-outline:before { + content: "\e92b"; +} +.ki-abstract-45.ki-outline:before { + content: "\e92c"; +} +.ki-abstract-46.ki-outline:before { + content: "\e92d"; +} +.ki-abstract-47.ki-outline:before { + content: "\e92e"; +} +.ki-abstract-48.ki-outline:before { + content: "\e92f"; +} +.ki-abstract-49.ki-outline:before { + content: "\e930"; +} +.ki-abstract.ki-outline:before { + content: "\e931"; +} +.ki-add-files.ki-outline:before { + content: "\e932"; +} +.ki-add-folder.ki-outline:before { + content: "\e933"; +} +.ki-add-item.ki-outline:before { + content: "\e934"; +} +.ki-add-notepad.ki-outline:before { + content: "\e935"; +} +.ki-address-book.ki-outline:before { + content: "\e936"; +} +.ki-airplane-square.ki-outline:before { + content: "\e937"; +} +.ki-airplane.ki-outline:before { + content: "\e938"; +} +.ki-airpod.ki-outline:before { + content: "\e939"; +} +.ki-android.ki-outline:before { + content: "\e93a"; +} +.ki-angular.ki-outline:before { + content: "\e93b"; +} +.ki-apple.ki-outline:before { + content: "\e93c"; +} +.ki-archive-tick.ki-outline:before { + content: "\e93d"; +} +.ki-archive.ki-outline:before { + content: "\e93e"; +} +.ki-arrow-circle-left.ki-outline:before { + content: "\e93f"; +} +.ki-arrow-circle-right.ki-outline:before { + content: "\e940"; +} +.ki-arrow-diagonal.ki-outline:before { + content: "\e941"; +} +.ki-arrow-down-left.ki-outline:before { + content: "\e942"; +} +.ki-arrow-down-refraction.ki-outline:before { + content: "\e943"; +} +.ki-arrow-down-right.ki-outline:before { + content: "\e944"; +} +.ki-arrow-down.ki-outline:before { + content: "\e945"; +} +.ki-arrow-left.ki-outline:before { + content: "\e946"; +} +.ki-arrow-mix.ki-outline:before { + content: "\e947"; +} +.ki-arrow-right-left.ki-outline:before { + content: "\e948"; +} +.ki-arrow-right.ki-outline:before { + content: "\e949"; +} +.ki-arrow-two-diagonals.ki-outline:before { + content: "\e94a"; +} +.ki-arrow-up-down.ki-outline:before { + content: "\e94b"; +} +.ki-arrow-up-left.ki-outline:before { + content: "\e94c"; +} +.ki-arrow-up-refraction.ki-outline:before { + content: "\e94d"; +} +.ki-arrow-up-right.ki-outline:before { + content: "\e94e"; +} +.ki-arrow-up.ki-outline:before { + content: "\e94f"; +} +.ki-arrow-zigzag.ki-outline:before { + content: "\e950"; +} +.ki-arrows-circle.ki-outline:before { + content: "\e951"; +} +.ki-arrows-loop.ki-outline:before { + content: "\e952"; +} +.ki-artificial-intelligence.ki-outline:before { + content: "\e953"; +} +.ki-auto-brightness.ki-outline:before { + content: "\e954"; +} +.ki-avalanche.ki-outline:before { + content: "\e955"; +} +.ki-award.ki-outline:before { + content: "\e956"; +} +.ki-badge.ki-outline:before { + content: "\e957"; +} +.ki-bandage.ki-outline:before { + content: "\e958"; +} +.ki-bank.ki-outline:before { + content: "\e959"; +} +.ki-barcode.ki-outline:before { + content: "\e95a"; +} +.ki-basket-ok.ki-outline:before { + content: "\e95b"; +} +.ki-basket.ki-outline:before { + content: "\e95c"; +} +.ki-behance.ki-outline:before { + content: "\e95d"; +} +.ki-bill.ki-outline:before { + content: "\e95e"; +} +.ki-binance-usd.ki-outline:before { + content: "\e95f"; +} +.ki-binance.ki-outline:before { + content: "\e960"; +} +.ki-bitcoin.ki-outline:before { + content: "\e961"; +} +.ki-black-down.ki-outline:before { + content: "\e962"; +} +.ki-black-left-line.ki-outline:before { + content: "\e963"; +} +.ki-black-left.ki-outline:before { + content: "\e964"; +} +.ki-black-right-line.ki-outline:before { + content: "\e965"; +} +.ki-black-right.ki-outline:before { + content: "\e966"; +} +.ki-black-up.ki-outline:before { + content: "\e967"; +} +.ki-bluetooth.ki-outline:before { + content: "\e968"; +} +.ki-book-open.ki-outline:before { + content: "\e969"; +} +.ki-book-square.ki-outline:before { + content: "\e96a"; +} +.ki-book.ki-outline:before { + content: "\e96b"; +} +.ki-bookmark-2.ki-outline:before { + content: "\e96c"; +} +.ki-bookmark.ki-outline:before { + content: "\e96d"; +} +.ki-bootstrap.ki-outline:before { + content: "\e96e"; +} +.ki-briefcase.ki-outline:before { + content: "\e96f"; +} +.ki-brifecase-cros.ki-outline:before { + content: "\e970"; +} +.ki-brifecase-tick.ki-outline:before { + content: "\e971"; +} +.ki-brifecase-timer.ki-outline:before { + content: "\e972"; +} +.ki-brush.ki-outline:before { + content: "\e973"; +} +.ki-bucket-square.ki-outline:before { + content: "\e974"; +} +.ki-bucket.ki-outline:before { + content: "\e975"; +} +.ki-burger-menu-1.ki-outline:before { + content: "\e976"; +} +.ki-burger-menu-2.ki-outline:before { + content: "\e977"; +} +.ki-burger-menu-3.ki-outline:before { + content: "\e978"; +} +.ki-burger-menu-4.ki-outline:before { + content: "\e979"; +} +.ki-burger-menu-5.ki-outline:before { + content: "\e97a"; +} +.ki-burger-menu-6.ki-outline:before { + content: "\e97b"; +} +.ki-burger-menu.ki-outline:before { + content: "\e97c"; +} +.ki-bus.ki-outline:before { + content: "\e97d"; +} +.ki-calculator.ki-outline:before { + content: "\e97e"; +} +.ki-calendar-2.ki-outline:before { + content: "\e97f"; +} +.ki-calendar-8.ki-outline:before { + content: "\e980"; +} +.ki-calendar-add.ki-outline:before { + content: "\e981"; +} +.ki-calendar-edit.ki-outline:before { + content: "\e982"; +} +.ki-calendar-remove.ki-outline:before { + content: "\e983"; +} +.ki-calendar-search.ki-outline:before { + content: "\e984"; +} +.ki-calendar-tick.ki-outline:before { + content: "\e985"; +} +.ki-calendar.ki-outline:before { + content: "\e986"; +} +.ki-call.ki-outline:before { + content: "\e987"; +} +.ki-capsule.ki-outline:before { + content: "\e988"; +} +.ki-car-2.ki-outline:before { + content: "\e989"; +} +.ki-car-3.ki-outline:before { + content: "\e98a"; +} +.ki-car.ki-outline:before { + content: "\e98b"; +} +.ki-category.ki-outline:before { + content: "\e98c"; +} +.ki-cd.ki-outline:before { + content: "\e98d"; +} +.ki-celsius.ki-outline:before { + content: "\e98e"; +} +.ki-chart-line-down-2.ki-outline:before { + content: "\e98f"; +} +.ki-chart-line-down.ki-outline:before { + content: "\e990"; +} +.ki-chart-line-star.ki-outline:before { + content: "\e991"; +} +.ki-chart-line-up-2.ki-outline:before { + content: "\e992"; +} +.ki-chart-line-up.ki-outline:before { + content: "\e993"; +} +.ki-chart-line.ki-outline:before { + content: "\e994"; +} +.ki-chart-pie-3.ki-outline:before { + content: "\e995"; +} +.ki-chart-pie-4.ki-outline:before { + content: "\e996"; +} +.ki-chart-pie-simple.ki-outline:before { + content: "\e997"; +} +.ki-chart-pie-too.ki-outline:before { + content: "\e998"; +} +.ki-chart-simple-2.ki-outline:before { + content: "\e999"; +} +.ki-chart-simple-3.ki-outline:before { + content: "\e99a"; +} +.ki-chart-simple.ki-outline:before { + content: "\e99b"; +} +.ki-chart.ki-outline:before { + content: "\e99c"; +} +.ki-check-circle.ki-outline:before { + content: "\e99d"; +} +.ki-check-square.ki-outline:before { + content: "\e99e"; +} +.ki-check.ki-outline:before { + content: "\e99f"; +} +.ki-cheque.ki-outline:before { + content: "\e9a0"; +} +.ki-chrome.ki-outline:before { + content: "\e9a1"; +} +.ki-classmates.ki-outline:before { + content: "\e9a2"; +} +.ki-click.ki-outline:before { + content: "\e9a3"; +} +.ki-clipboard.ki-outline:before { + content: "\e9a4"; +} +.ki-cloud-add.ki-outline:before { + content: "\e9a5"; +} +.ki-cloud-change.ki-outline:before { + content: "\e9a6"; +} +.ki-cloud-download.ki-outline:before { + content: "\e9a7"; +} +.ki-cloud.ki-outline:before { + content: "\e9a8"; +} +.ki-code.ki-outline:before { + content: "\e9a9"; +} +.ki-coffee.ki-outline:before { + content: "\e9aa"; +} +.ki-color-swatch.ki-outline:before { + content: "\e9ab"; +} +.ki-colors-square.ki-outline:before { + content: "\e9ac"; +} +.ki-compass.ki-outline:before { + content: "\e9ad"; +} +.ki-copy-success.ki-outline:before { + content: "\e9ae"; +} +.ki-copy.ki-outline:before { + content: "\e9af"; +} +.ki-courier-express.ki-outline:before { + content: "\e9b0"; +} +.ki-courier.ki-outline:before { + content: "\e9b1"; +} +.ki-credit-cart.ki-outline:before { + content: "\e9b2"; +} +.ki-cross-circle.ki-outline:before { + content: "\e9b3"; +} +.ki-cross-square.ki-outline:before { + content: "\e9b4"; +} +.ki-cross.ki-outline:before { + content: "\e9b5"; +} +.ki-crown-2.ki-outline:before { + content: "\e9b6"; +} +.ki-crown.ki-outline:before { + content: "\e9b7"; +} +.ki-css.ki-outline:before { + content: "\e9b8"; +} +.ki-cube-2.ki-outline:before { + content: "\e9b9"; +} +.ki-cube-3.ki-outline:before { + content: "\e9ba"; +} +.ki-cup.ki-outline:before { + content: "\e9bb"; +} +.ki-dash.ki-outline:before { + content: "\e9bc"; +} +.ki-data.ki-outline:before { + content: "\e9bd"; +} +.ki-delete-files.ki-outline:before { + content: "\e9be"; +} +.ki-delete-folder.ki-outline:before { + content: "\e9bf"; +} +.ki-delivery-2.ki-outline:before { + content: "\e9c0"; +} +.ki-delivery-3.ki-outline:before { + content: "\e9c1"; +} +.ki-delivery-24.ki-outline:before { + content: "\e9c2"; +} +.ki-delivery-door.ki-outline:before { + content: "\e9c3"; +} +.ki-delivery-geolocation.ki-outline:before { + content: "\e9c4"; +} +.ki-delivery-time.ki-outline:before { + content: "\e9c5"; +} +.ki-delivery.ki-outline:before { + content: "\e9c6"; +} +.ki-design-2.ki-outline:before { + content: "\e9c7"; +} +.ki-design-frame.ki-outline:before { + content: "\e9c8"; +} +.ki-design-mask.ki-outline:before { + content: "\e9c9"; +} +.ki-design.ki-outline:before { + content: "\e9ca"; +} +.ki-devices-2.ki-outline:before { + content: "\e9cb"; +} +.ki-devices.ki-outline:before { + content: "\e9cc"; +} +.ki-diamonds.ki-outline:before { + content: "\e9cd"; +} +.ki-directbox-default.ki-outline:before { + content: "\e9ce"; +} +.ki-disconnect.ki-outline:before { + content: "\e9cf"; +} +.ki-discount.ki-outline:before { + content: "\e9d0"; +} +.ki-disk.ki-outline:before { + content: "\e9d1"; +} +.ki-dislike.ki-outline:before { + content: "\e9d2"; +} +.ki-dj.ki-outline:before { + content: "\e9d3"; +} +.ki-document.ki-outline:before { + content: "\e9d4"; +} +.ki-dollar.ki-outline:before { + content: "\e9d5"; +} +.ki-dots-circle-vertical.ki-outline:before { + content: "\e9d6"; +} +.ki-dots-circle.ki-outline:before { + content: "\e9d7"; +} +.ki-dots-horizontal.ki-outline:before { + content: "\e9d8"; +} +.ki-dots-square-vertical.ki-outline:before { + content: "\e9d9"; +} +.ki-dots-square.ki-outline:before { + content: "\e9da"; +} +.ki-dots-vertical.ki-outline:before { + content: "\e9db"; +} +.ki-double-check-circle.ki-outline:before { + content: "\e9dc"; +} +.ki-double-check.ki-outline:before { + content: "\e9dd"; +} +.ki-double-down.ki-outline:before { + content: "\e9de"; +} +.ki-double-left-arrow.ki-outline:before { + content: "\e9df"; +} +.ki-double-left.ki-outline:before { + content: "\e9e0"; +} +.ki-double-right-arrow.ki-outline:before { + content: "\e9e1"; +} +.ki-double-right.ki-outline:before { + content: "\e9e2"; +} +.ki-double-up.ki-outline:before { + content: "\e9e3"; +} +.ki-down-square.ki-outline:before { + content: "\e9e4"; +} +.ki-down.ki-outline:before { + content: "\e9e5"; +} +.ki-dribbble.ki-outline:before { + content: "\e9e6"; +} +.ki-drop.ki-outline:before { + content: "\e9e7"; +} +.ki-dropbox.ki-outline:before { + content: "\e9e8"; +} +.ki-educare.ki-outline:before { + content: "\e9e9"; +} +.ki-electricity.ki-outline:before { + content: "\e9ea"; +} +.ki-electronic-clock.ki-outline:before { + content: "\e9eb"; +} +.ki-element-1.ki-outline:before { + content: "\e9ec"; +} +.ki-element-2.ki-outline:before { + content: "\e9ed"; +} +.ki-element-3.ki-outline:before { + content: "\e9ee"; +} +.ki-element-4.ki-outline:before { + content: "\e9ef"; +} +.ki-element-5.ki-outline:before { + content: "\e9f0"; +} +.ki-element-6.ki-outline:before { + content: "\e9f1"; +} +.ki-element-7.ki-outline:before { + content: "\e9f2"; +} +.ki-element-8.ki-outline:before { + content: "\e9f3"; +} +.ki-element-9.ki-outline:before { + content: "\e9f4"; +} +.ki-element-10.ki-outline:before { + content: "\e9f5"; +} +.ki-element-11.ki-outline:before { + content: "\e9f6"; +} +.ki-element-12.ki-outline:before { + content: "\e9f7"; +} +.ki-element-equal.ki-outline:before { + content: "\e9f8"; +} +.ki-element-plus.ki-outline:before { + content: "\e9f9"; +} +.ki-emoji-happy.ki-outline:before { + content: "\e9fa"; +} +.ki-enjin-coin.ki-outline:before { + content: "\e9fb"; +} +.ki-entrance-left.ki-outline:before { + content: "\e9fc"; +} +.ki-entrance-right.ki-outline:before { + content: "\e9fd"; +} +.ki-eraser.ki-outline:before { + content: "\e9fe"; +} +.ki-euro.ki-outline:before { + content: "\e9ff"; +} +.ki-exit-down.ki-outline:before { + content: "\ea00"; +} +.ki-exit-left.ki-outline:before { + content: "\ea01"; +} +.ki-exit-right-corner.ki-outline:before { + content: "\ea02"; +} +.ki-exit-right.ki-outline:before { + content: "\ea03"; +} +.ki-exit-up.ki-outline:before { + content: "\ea04"; +} +.ki-external-drive.ki-outline:before { + content: "\ea05"; +} +.ki-eye-slash.ki-outline:before { + content: "\ea06"; +} +.ki-eye.ki-outline:before { + content: "\ea07"; +} +.ki-facebook.ki-outline:before { + content: "\ea08"; +} +.ki-faceid.ki-outline:before { + content: "\ea09"; +} +.ki-fasten.ki-outline:before { + content: "\ea0a"; +} +.ki-fat-rows.ki-outline:before { + content: "\ea0b"; +} +.ki-feather.ki-outline:before { + content: "\ea0c"; +} +.ki-figma.ki-outline:before { + content: "\ea0d"; +} +.ki-file-added.ki-outline:before { + content: "\ea0e"; +} +.ki-file-deleted.ki-outline:before { + content: "\ea0f"; +} +.ki-file-down.ki-outline:before { + content: "\ea10"; +} +.ki-file-left.ki-outline:before { + content: "\ea11"; +} +.ki-file-right.ki-outline:before { + content: "\ea12"; +} +.ki-file-sheet.ki-outline:before { + content: "\ea13"; +} +.ki-file-up.ki-outline:before { + content: "\ea14"; +} +.ki-file.ki-outline:before { + content: "\ea15"; +} +.ki-files-tablet.ki-outline:before { + content: "\ea16"; +} +.ki-filter-edit.ki-outline:before { + content: "\ea17"; +} +.ki-filter-search.ki-outline:before { + content: "\ea18"; +} +.ki-filter-square.ki-outline:before { + content: "\ea19"; +} +.ki-filter-tablet.ki-outline:before { + content: "\ea1a"; +} +.ki-filter-tick.ki-outline:before { + content: "\ea1b"; +} +.ki-filter.ki-outline:before { + content: "\ea1c"; +} +.ki-finance-calculator.ki-outline:before { + content: "\ea1d"; +} +.ki-financial-schedule.ki-outline:before { + content: "\ea1e"; +} +.ki-fingerprint-scanning.ki-outline:before { + content: "\ea1f"; +} +.ki-flag.ki-outline:before { + content: "\ea20"; +} +.ki-flash-circle.ki-outline:before { + content: "\ea21"; +} +.ki-flask.ki-outline:before { + content: "\ea22"; +} +.ki-focus.ki-outline:before { + content: "\ea23"; +} +.ki-folder-added.ki-outline:before { + content: "\ea24"; +} +.ki-folder-down.ki-outline:before { + content: "\ea25"; +} +.ki-folder-up.ki-outline:before { + content: "\ea26"; +} +.ki-folder.ki-outline:before { + content: "\ea27"; +} +.ki-frame.ki-outline:before { + content: "\ea28"; +} +.ki-gear.ki-outline:before { + content: "\ea29"; +} +.ki-general-mouse.ki-outline:before { + content: "\ea2a"; +} +.ki-geolocation-home.ki-outline:before { + content: "\ea2b"; +} +.ki-geolocation.ki-outline:before { + content: "\ea2c"; +} +.ki-ghost.ki-outline:before { + content: "\ea2d"; +} +.ki-gift.ki-outline:before { + content: "\ea2e"; +} +.ki-github.ki-outline:before { + content: "\ea2f"; +} +.ki-glass.ki-outline:before { + content: "\ea30"; +} +.ki-google-play.ki-outline:before { + content: "\ea31"; +} +.ki-google.ki-outline:before { + content: "\ea32"; +} +.ki-graph-2.ki-outline:before { + content: "\ea33"; +} +.ki-graph-3.ki-outline:before { + content: "\ea34"; +} +.ki-graph-4.ki-outline:before { + content: "\ea35"; +} +.ki-graph-up.ki-outline:before { + content: "\ea36"; +} +.ki-graph.ki-outline:before { + content: "\ea37"; +} +.ki-grid-2.ki-outline:before { + content: "\ea38"; +} +.ki-grid-frame.ki-outline:before { + content: "\ea39"; +} +.ki-grid.ki-outline:before { + content: "\ea3a"; +} +.ki-handcart.ki-outline:before { + content: "\ea3b"; +} +.ki-happy-emoji.ki-outline:before { + content: "\ea3c"; +} +.ki-heart-circle.ki-outline:before { + content: "\ea3d"; +} +.ki-heart.ki-outline:before { + content: "\ea3e"; +} +.ki-home-1.ki-outline:before { + content: "\ea3f"; +} +.ki-home-2.ki-outline:before { + content: "\ea40"; +} +.ki-home-3.ki-outline:before { + content: "\ea41"; +} +.ki-home.ki-outline:before { + content: "\ea42"; +} +.ki-html.ki-outline:before { + content: "\ea43"; +} +.ki-icon.ki-outline:before { + content: "\ea44"; +} +.ki-illustrator.ki-outline:before { + content: "\ea45"; +} +.ki-information-2.ki-outline:before { + content: "\ea46"; +} +.ki-information-3.ki-outline:before { + content: "\ea47"; +} +.ki-information-4.ki-outline:before { + content: "\ea48"; +} +.ki-information-5.ki-outline:before { + content: "\ea49"; +} +.ki-information.ki-outline:before { + content: "\ea4a"; +} +.ki-instagram.ki-outline:before { + content: "\ea4b"; +} +.ki-joystick.ki-outline:before { + content: "\ea4c"; +} +.ki-js-2.ki-outline:before { + content: "\ea4d"; +} +.ki-js.ki-outline:before { + content: "\ea4e"; +} +.ki-kanban.ki-outline:before { + content: "\ea4f"; +} +.ki-key-square.ki-outline:before { + content: "\ea50"; +} +.ki-key.ki-outline:before { + content: "\ea51"; +} +.ki-keyboard.ki-outline:before { + content: "\ea52"; +} +.ki-laptop.ki-outline:before { + content: "\ea53"; +} +.ki-laravel.ki-outline:before { + content: "\ea54"; +} +.ki-left-square.ki-outline:before { + content: "\ea55"; +} +.ki-left.ki-outline:before { + content: "\ea56"; +} +.ki-like-2.ki-outline:before { + content: "\ea57"; +} +.ki-like-folder.ki-outline:before { + content: "\ea58"; +} +.ki-like-shapes.ki-outline:before { + content: "\ea59"; +} +.ki-like-tag.ki-outline:before { + content: "\ea5a"; +} +.ki-like.ki-outline:before { + content: "\ea5b"; +} +.ki-loading.ki-outline:before { + content: "\ea5c"; +} +.ki-lock-2.ki-outline:before { + content: "\ea5d"; +} +.ki-lock-3.ki-outline:before { + content: "\ea5e"; +} +.ki-lock.ki-outline:before { + content: "\ea5f"; +} +.ki-logistic.ki-outline:before { + content: "\ea60"; +} +.ki-lots-shopping.ki-outline:before { + content: "\ea61"; +} +.ki-lovely.ki-outline:before { + content: "\ea62"; +} +.ki-lts.ki-outline:before { + content: "\ea63"; +} +.ki-magnifier.ki-outline:before { + content: "\ea64"; +} +.ki-map.ki-outline:before { + content: "\ea65"; +} +.ki-mask.ki-outline:before { + content: "\ea66"; +} +.ki-maximize.ki-outline:before { + content: "\ea67"; +} +.ki-medal-star.ki-outline:before { + content: "\ea68"; +} +.ki-menu.ki-outline:before { + content: "\ea69"; +} +.ki-message-add.ki-outline:before { + content: "\ea6a"; +} +.ki-message-edit.ki-outline:before { + content: "\ea6b"; +} +.ki-message-minus.ki-outline:before { + content: "\ea6c"; +} +.ki-message-notif.ki-outline:before { + content: "\ea6d"; +} +.ki-message-programming.ki-outline:before { + content: "\ea6e"; +} +.ki-message-question.ki-outline:before { + content: "\ea6f"; +} +.ki-message-text-2.ki-outline:before { + content: "\ea70"; +} +.ki-message-text.ki-outline:before { + content: "\ea71"; +} +.ki-messages.ki-outline:before { + content: "\ea72"; +} +.ki-microsoft.ki-outline:before { + content: "\ea73"; +} +.ki-milk.ki-outline:before { + content: "\ea74"; +} +.ki-minus-circle.ki-outline:before { + content: "\ea75"; +} +.ki-minus-folder.ki-outline:before { + content: "\ea76"; +} +.ki-minus-square.ki-outline:before { + content: "\ea77"; +} +.ki-minus.ki-outline:before { + content: "\ea78"; +} +.ki-monitor-mobile.ki-outline:before { + content: "\ea79"; +} +.ki-moon.ki-outline:before { + content: "\ea7a"; +} +.ki-more-2.ki-outline:before { + content: "\ea7b"; +} +.ki-mouse-circle.ki-outline:before { + content: "\ea7c"; +} +.ki-mouse-square.ki-outline:before { + content: "\ea7d"; +} +.ki-mouse.ki-outline:before { + content: "\ea7e"; +} +.ki-nexo.ki-outline:before { + content: "\ea7f"; +} +.ki-night-day.ki-outline:before { + content: "\ea80"; +} +.ki-note-2.ki-outline:before { + content: "\ea81"; +} +.ki-note.ki-outline:before { + content: "\ea82"; +} +.ki-notepad-bookmark.ki-outline:before { + content: "\ea83"; +} +.ki-notepad-edit.ki-outline:before { + content: "\ea84"; +} +.ki-notepad.ki-outline:before { + content: "\ea85"; +} +.ki-notification-2.ki-outline:before { + content: "\ea86"; +} +.ki-notification-bing.ki-outline:before { + content: "\ea87"; +} +.ki-notification-circle.ki-outline:before { + content: "\ea88"; +} +.ki-notification-favorite.ki-outline:before { + content: "\ea89"; +} +.ki-notification-on.ki-outline:before { + content: "\ea8a"; +} +.ki-notification-status.ki-outline:before { + content: "\ea8b"; +} +.ki-notification.ki-outline:before { + content: "\ea8c"; +} +.ki-ocean.ki-outline:before { + content: "\ea8d"; +} +.ki-office-bag.ki-outline:before { + content: "\ea8e"; +} +.ki-package.ki-outline:before { + content: "\ea8f"; +} +.ki-pails.ki-outline:before { + content: "\ea90"; +} +.ki-paintbucket.ki-outline:before { + content: "\ea91"; +} +.ki-paper-clip.ki-outline:before { + content: "\ea92"; +} +.ki-parcel-tracking.ki-outline:before { + content: "\ea93"; +} +.ki-parcel.ki-outline:before { + content: "\ea94"; +} +.ki-password-check.ki-outline:before { + content: "\ea95"; +} +.ki-paypal.ki-outline:before { + content: "\ea96"; +} +.ki-pencil.ki-outline:before { + content: "\ea97"; +} +.ki-people.ki-outline:before { + content: "\ea98"; +} +.ki-percentage.ki-outline:before { + content: "\ea99"; +} +.ki-phone.ki-outline:before { + content: "\ea9a"; +} +.ki-photoshop.ki-outline:before { + content: "\ea9b"; +} +.ki-picture.ki-outline:before { + content: "\ea9c"; +} +.ki-pill.ki-outline:before { + content: "\ea9d"; +} +.ki-pin.ki-outline:before { + content: "\ea9e"; +} +.ki-plus-circle.ki-outline:before { + content: "\ea9f"; +} +.ki-plus-square.ki-outline:before { + content: "\eaa0"; +} +.ki-plus.ki-outline:before { + content: "\eaa1"; +} +.ki-pointers.ki-outline:before { + content: "\eaa2"; +} +.ki-price-tag.ki-outline:before { + content: "\eaa3"; +} +.ki-printer.ki-outline:before { + content: "\eaa4"; +} +.ki-profile-circle.ki-outline:before { + content: "\eaa5"; +} +.ki-profile-user.ki-outline:before { + content: "\eaa6"; +} +.ki-pulse.ki-outline:before { + content: "\eaa7"; +} +.ki-purchase.ki-outline:before { + content: "\eaa8"; +} +.ki-python.ki-outline:before { + content: "\eaa9"; +} +.ki-question-2.ki-outline:before { + content: "\eaaa"; +} +.ki-question.ki-outline:before { + content: "\eaab"; +} +.ki-questionnaire-tablet.ki-outline:before { + content: "\eaac"; +} +.ki-ranking.ki-outline:before { + content: "\eaad"; +} +.ki-react.ki-outline:before { + content: "\eaae"; +} +.ki-receipt-square.ki-outline:before { + content: "\eaaf"; +} +.ki-rescue.ki-outline:before { + content: "\eab0"; +} +.ki-right-left.ki-outline:before { + content: "\eab1"; +} +.ki-right-square.ki-outline:before { + content: "\eab2"; +} +.ki-right.ki-outline:before { + content: "\eab3"; +} +.ki-rocket.ki-outline:before { + content: "\eab4"; +} +.ki-route.ki-outline:before { + content: "\eab5"; +} +.ki-router.ki-outline:before { + content: "\eab6"; +} +.ki-row-horizontal.ki-outline:before { + content: "\eab7"; +} +.ki-row-vertical.ki-outline:before { + content: "\eab8"; +} +.ki-safe-home.ki-outline:before { + content: "\eab9"; +} +.ki-satellite.ki-outline:before { + content: "\eaba"; +} +.ki-save-2.ki-outline:before { + content: "\eabb"; +} +.ki-save-deposit.ki-outline:before { + content: "\eabc"; +} +.ki-scan-barcode.ki-outline:before { + content: "\eabd"; +} +.ki-scooter-2.ki-outline:before { + content: "\eabe"; +} +.ki-scooter.ki-outline:before { + content: "\eabf"; +} +.ki-screen.ki-outline:before { + content: "\eac0"; +} +.ki-scroll.ki-outline:before { + content: "\eac1"; +} +.ki-search-list.ki-outline:before { + content: "\eac2"; +} +.ki-security-check.ki-outline:before { + content: "\eac3"; +} +.ki-security-user.ki-outline:before { + content: "\eac4"; +} +.ki-send.ki-outline:before { + content: "\eac5"; +} +.ki-setting-2.ki-outline:before { + content: "\eac6"; +} +.ki-setting-3.ki-outline:before { + content: "\eac7"; +} +.ki-setting-4.ki-outline:before { + content: "\eac8"; +} +.ki-setting.ki-outline:before { + content: "\eac9"; +} +.ki-share.ki-outline:before { + content: "\eaca"; +} +.ki-shield-cross.ki-outline:before { + content: "\eacb"; +} +.ki-shield-search.ki-outline:before { + content: "\eacc"; +} +.ki-shield-slash.ki-outline:before { + content: "\eacd"; +} +.ki-shield-tick.ki-outline:before { + content: "\eace"; +} +.ki-shield.ki-outline:before { + content: "\eacf"; +} +.ki-ship.ki-outline:before { + content: "\ead0"; +} +.ki-shop.ki-outline:before { + content: "\ead1"; +} +.ki-simcard-2.ki-outline:before { + content: "\ead2"; +} +.ki-simcard.ki-outline:before { + content: "\ead3"; +} +.ki-size.ki-outline:before { + content: "\ead4"; +} +.ki-slack.ki-outline:before { + content: "\ead5"; +} +.ki-slider-horizontal-2.ki-outline:before { + content: "\ead6"; +} +.ki-slider-horizontal.ki-outline:before { + content: "\ead7"; +} +.ki-slider-vertical-2.ki-outline:before { + content: "\ead8"; +} +.ki-slider-vertical.ki-outline:before { + content: "\ead9"; +} +.ki-slider.ki-outline:before { + content: "\eada"; +} +.ki-sms.ki-outline:before { + content: "\eadb"; +} +.ki-snapchat.ki-outline:before { + content: "\eadc"; +} +.ki-social-media.ki-outline:before { + content: "\eadd"; +} +.ki-soft-2.ki-outline:before { + content: "\eade"; +} +.ki-soft-3.ki-outline:before { + content: "\eadf"; +} +.ki-soft.ki-outline:before { + content: "\eae0"; +} +.ki-some-files.ki-outline:before { + content: "\eae1"; +} +.ki-sort.ki-outline:before { + content: "\eae2"; +} +.ki-speaker.ki-outline:before { + content: "\eae3"; +} +.ki-spotify.ki-outline:before { + content: "\eae4"; +} +.ki-spring-framework.ki-outline:before { + content: "\eae5"; +} +.ki-square-brackets.ki-outline:before { + content: "\eae6"; +} +.ki-star.ki-outline:before { + content: "\eae7"; +} +.ki-status.ki-outline:before { + content: "\eae8"; +} +.ki-subtitle.ki-outline:before { + content: "\eae9"; +} +.ki-sun.ki-outline:before { + content: "\eaea"; +} +.ki-support-24.ki-outline:before { + content: "\eaeb"; +} +.ki-switch.ki-outline:before { + content: "\eaec"; +} +.ki-syringe.ki-outline:before { + content: "\eaed"; +} +.ki-tablet-book.ki-outline:before { + content: "\eaee"; +} +.ki-tablet-delete.ki-outline:before { + content: "\eaef"; +} +.ki-tablet-down.ki-outline:before { + content: "\eaf0"; +} +.ki-tablet-ok.ki-outline:before { + content: "\eaf1"; +} +.ki-tablet-text-down.ki-outline:before { + content: "\eaf2"; +} +.ki-tablet-text-up.ki-outline:before { + content: "\eaf3"; +} +.ki-tablet-up.ki-outline:before { + content: "\eaf4"; +} +.ki-tablet.ki-outline:before { + content: "\eaf5"; +} +.ki-tag-cross.ki-outline:before { + content: "\eaf6"; +} +.ki-tag.ki-outline:before { + content: "\eaf7"; +} +.ki-teacher.ki-outline:before { + content: "\eaf8"; +} +.ki-tech-wifi.ki-outline:before { + content: "\eaf9"; +} +.ki-technology-2.ki-outline:before { + content: "\eafa"; +} +.ki-technology-3.ki-outline:before { + content: "\eafb"; +} +.ki-technology-4.ki-outline:before { + content: "\eafc"; +} +.ki-technology.ki-outline:before { + content: "\eafd"; +} +.ki-telephone-geolocation.ki-outline:before { + content: "\eafe"; +} +.ki-test-tubes.ki-outline:before { + content: "\eaff"; +} +.ki-text-align-center.ki-outline:before { + content: "\eb00"; +} +.ki-text-align-justify-center.ki-outline:before { + content: "\eb01"; +} +.ki-text-align-left.ki-outline:before { + content: "\eb02"; +} +.ki-text-align-right.ki-outline:before { + content: "\eb03"; +} +.ki-text-bold.ki-outline:before { + content: "\eb04"; +} +.ki-text-circle.ki-outline:before { + content: "\eb05"; +} +.ki-text-italic.ki-outline:before { + content: "\eb06"; +} +.ki-text-number.ki-outline:before { + content: "\eb07"; +} +.ki-text-strikethrough.ki-outline:before { + content: "\eb08"; +} +.ki-text-underline.ki-outline:before { + content: "\eb09"; +} +.ki-text.ki-outline:before { + content: "\eb0a"; +} +.ki-thermometer.ki-outline:before { + content: "\eb0b"; +} +.ki-theta.ki-outline:before { + content: "\eb0c"; +} +.ki-tiktok.ki-outline:before { + content: "\eb0d"; +} +.ki-time.ki-outline:before { + content: "\eb0e"; +} +.ki-timer.ki-outline:before { + content: "\eb0f"; +} +.ki-to-left.ki-outline:before { + content: "\eb10"; +} +.ki-to-right.ki-outline:before { + content: "\eb11"; +} +.ki-toggle-off-circle.ki-outline:before { + content: "\eb12"; +} +.ki-toggle-off.ki-outline:before { + content: "\eb13"; +} +.ki-toggle-on-circle.ki-outline:before { + content: "\eb14"; +} +.ki-toggle-on.ki-outline:before { + content: "\eb15"; +} +.ki-trailer.ki-outline:before { + content: "\eb16"; +} +.ki-trash-square.ki-outline:before { + content: "\eb17"; +} +.ki-trash.ki-outline:before { + content: "\eb18"; +} +.ki-tree.ki-outline:before { + content: "\eb19"; +} +.ki-trello.ki-outline:before { + content: "\eb1a"; +} +.ki-triangle.ki-outline:before { + content: "\eb1b"; +} +.ki-truck.ki-outline:before { + content: "\eb1c"; +} +.ki-ts.ki-outline:before { + content: "\eb1d"; +} +.ki-twitch.ki-outline:before { + content: "\eb1e"; +} +.ki-twitter.ki-outline:before { + content: "\eb1f"; +} +.ki-two-credit-cart.ki-outline:before { + content: "\eb20"; +} +.ki-underlining.ki-outline:before { + content: "\eb21"; +} +.ki-up-down.ki-outline:before { + content: "\eb22"; +} +.ki-up-square.ki-outline:before { + content: "\eb23"; +} +.ki-up.ki-outline:before { + content: "\eb24"; +} +.ki-update-file.ki-outline:before { + content: "\eb25"; +} +.ki-update-folder.ki-outline:before { + content: "\eb26"; +} +.ki-user-edit.ki-outline:before { + content: "\eb27"; +} +.ki-user-square.ki-outline:before { + content: "\eb28"; +} +.ki-user-tick.ki-outline:before { + content: "\eb29"; +} +.ki-user.ki-outline:before { + content: "\eb2a"; +} +.ki-verify.ki-outline:before { + content: "\eb2b"; +} +.ki-vibe.ki-outline:before { + content: "\eb2c"; +} +.ki-virus.ki-outline:before { + content: "\eb2d"; +} +.ki-vue.ki-outline:before { + content: "\eb2e"; +} +.ki-vuesax.ki-outline:before { + content: "\eb2f"; +} +.ki-wallet.ki-outline:before { + content: "\eb30"; +} +.ki-wanchain.ki-outline:before { + content: "\eb31"; +} +.ki-watch.ki-outline:before { + content: "\eb32"; +} +.ki-whatsapp.ki-outline:before { + content: "\eb33"; +} +.ki-wifi-home.ki-outline:before { + content: "\eb34"; +} +.ki-wifi-square.ki-outline:before { + content: "\eb35"; +} +.ki-wifi.ki-outline:before { + content: "\eb36"; +} +.ki-wrench.ki-outline:before { + content: "\eb37"; +} +.ki-xaomi.ki-outline:before { + content: "\eb38"; +} +.ki-xd.ki-outline:before { + content: "\eb39"; +} +.ki-xmr.ki-outline:before { + content: "\eb3a"; +} +.ki-yii.ki-outline:before { + content: "\eb3b"; +} +.ki-youtube.ki-outline:before { + content: "\eb3c"; +} diff --git a/src/_metronic/assets/keenicons/solid/Read Me.txt b/src/_metronic/assets/keenicons/solid/Read Me.txt new file mode 100644 index 0000000..8491652 --- /dev/null +++ b/src/_metronic/assets/keenicons/solid/Read Me.txt @@ -0,0 +1,7 @@ +Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures. + +To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts + +You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects. + +You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection. diff --git a/src/_metronic/assets/keenicons/solid/demo-files/demo.css b/src/_metronic/assets/keenicons/solid/demo-files/demo.css new file mode 100644 index 0000000..39b8991 --- /dev/null +++ b/src/_metronic/assets/keenicons/solid/demo-files/demo.css @@ -0,0 +1,152 @@ +body { + padding: 0; + margin: 0; + font-family: sans-serif; + font-size: 1em; + line-height: 1.5; + color: #555; + background: #fff; +} +h1 { + font-size: 1.5em; + font-weight: normal; +} +small { + font-size: .66666667em; +} +a { + color: #e74c3c; + text-decoration: none; +} +a:hover, a:focus { + box-shadow: 0 1px #e74c3c; +} +.bshadow0, input { + box-shadow: inset 0 -2px #e7e7e7; +} +input:hover { + box-shadow: inset 0 -2px #ccc; +} +input, fieldset { + font-family: sans-serif; + font-size: 1em; + margin: 0; + padding: 0; + border: 0; +} +input { + color: inherit; + line-height: 1.5; + height: 1.5em; + padding: .25em 0; +} +input:focus { + outline: none; + box-shadow: inset 0 -2px #449fdb; +} +.glyph { + font-size: 16px; + width: 15em; + padding-bottom: 1em; + margin-right: 4em; + margin-bottom: 1em; + float: left; + overflow: hidden; +} +.liga { + width: 80%; + width: calc(100% - 2.5em); +} +.talign-right { + text-align: right; +} +.talign-center { + text-align: center; +} +.bgc1 { + background: #f1f1f1; +} +.fgc1 { + color: #999; +} +.fgc0 { + color: #000; +} +p { + margin-top: 1em; + margin-bottom: 1em; +} +.mvm { + margin-top: .75em; + margin-bottom: .75em; +} +.mtn { + margin-top: 0; +} +.mtl, .mal { + margin-top: 1.5em; +} +.mbl, .mal { + margin-bottom: 1.5em; +} +.mal, .mhl { + margin-left: 1.5em; + margin-right: 1.5em; +} +.mhmm { + margin-left: 1em; + margin-right: 1em; +} +.mls { + margin-left: .25em; +} +.ptl { + padding-top: 1.5em; +} +.pbs, .pvs { + padding-bottom: .25em; +} +.pvs, .pts { + padding-top: .25em; +} +.unit { + float: left; +} +.unitRight { + float: right; +} +.size1of2 { + width: 50%; +} +.size1of1 { + width: 100%; +} +.clearfix:before, .clearfix:after { + content: " "; + display: table; +} +.clearfix:after { + clear: both; +} +.hidden-true { + display: none; +} +.textbox0 { + width: 3em; + background: #f1f1f1; + padding: .25em .5em; + line-height: 1.5; + height: 1.5em; +} +#testDrive { + display: block; + padding-top: 24px; + line-height: 1.5; +} +.fs0 { + font-size: 16px; +} +.fs1 { + font-size: 32px; +} + diff --git a/src/_metronic/assets/keenicons/solid/demo-files/demo.js b/src/_metronic/assets/keenicons/solid/demo-files/demo.js new file mode 100644 index 0000000..6f45f1c --- /dev/null +++ b/src/_metronic/assets/keenicons/solid/demo-files/demo.js @@ -0,0 +1,30 @@ +if (!('boxShadow' in document.body.style)) { + document.body.setAttribute('class', 'noBoxShadow'); +} + +document.body.addEventListener("click", function(e) { + var target = e.target; + if (target.tagName === "INPUT" && + target.getAttribute('class').indexOf('liga') === -1) { + target.select(); + } +}); + +(function() { + var fontSize = document.getElementById('fontSize'), + testDrive = document.getElementById('testDrive'), + testText = document.getElementById('testText'); + function updateTest() { + testDrive.innerHTML = testText.value || String.fromCharCode(160); + if (window.icomoonLiga) { + window.icomoonLiga(testDrive); + } + } + function updateSize() { + testDrive.style.fontSize = fontSize.value + 'px'; + } + fontSize.addEventListener('change', updateSize, false); + testText.addEventListener('input', updateTest, false); + testText.addEventListener('change', updateTest, false); + updateSize(); +}()); diff --git a/src/_metronic/assets/keenicons/solid/demo.html b/src/_metronic/assets/keenicons/solid/demo.html new file mode 100644 index 0000000..69e3cd6 --- /dev/null +++ b/src/_metronic/assets/keenicons/solid/demo.html @@ -0,0 +1,8060 @@ + + + + + IcoMoon Demo + + + + + +
+

Font Name: KeenIcons (Glyphs: 573)

+
+
+

Grid Size: 24

+
+
+ + ki-solid ki-abstract-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-7 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-8 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-9 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-10 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-11 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-12 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-13 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-14 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-15 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-16 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-17 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-18 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-19 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-20 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-21 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-22 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-23 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-24 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-25 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-26 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-27 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-28 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-29 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-30 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-31 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-32 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-33 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-34 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-35 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-36 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-37 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-38 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-39 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-40 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-41 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-42 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-43 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-44 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-45 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-46 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-47 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-48 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract-49 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-abstract +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-add-files +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-add-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-add-item +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-add-notepad +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-address-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-airplane-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-airplane +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-airpod +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-android +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-angular +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-apple +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-archive-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-archive +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-circle-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-circle-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-diagonal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-down-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-down-refraction +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-down-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-mix +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-right-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-two-diagonals +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-up-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-up-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-up-refraction +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-up-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrow-zigzag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrows-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-arrows-loop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-artificial-intelligence +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-auto-brightness +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-avalanche +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-award +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-badge +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bandage +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bank +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-barcode +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-basket-ok +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-basket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-behance +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bill +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-binance-usd +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-binance +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bitcoin +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-black-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-black-left-line +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-black-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-black-right-line +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-black-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-black-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bluetooth +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-book-open +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-book-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bookmark-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bootstrap +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-briefcase +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-brifecase-cros +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-brifecase-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-brifecase-timer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-brush +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bucket-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bucket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-burger-menu-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-burger-menu-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-burger-menu-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-burger-menu-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-burger-menu-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-burger-menu-6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-burger-menu +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-bus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-calendar-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-calendar-8 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-calendar-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-calendar-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-calendar-remove +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-calendar-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-calendar-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-calendar +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-call +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-capsule +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-car-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-car-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-car +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-category +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cd +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-celsius +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-line-down-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-line-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-line-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-line-up-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-line-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-line +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-pie-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-pie-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-pie-simple +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-pie-too +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-simple-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-simple-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart-simple +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-check-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-check-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cheque +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-chrome +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-classmates +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-click +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-clipboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cloud-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cloud-change +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cloud-download +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cloud +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-code +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-coffee +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-color-swatch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-colors-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-compass +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-copy-success +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-copy +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-courier-express +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-courier +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-credit-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cross-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cross-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cross +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-crown-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-crown +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-css +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cube-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cube-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-cup +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-data +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-delete-files +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-delete-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-delivery-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-delivery-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-delivery-24 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-delivery-door +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-delivery-geolocation +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-delivery-time +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-delivery +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-design-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-design-frame +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-design-mask +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-design +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-devices-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-devices +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-diamonds +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-directbox-default +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-disconnect +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-discount +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-disk +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dislike +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dj +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-document +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dollar +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dots-circle-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dots-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dots-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dots-square-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dots-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dots-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-double-check-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-double-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-double-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-double-left-arrow +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-double-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-double-right-arrow +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-double-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-double-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-down-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dribbble +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-drop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-dropbox +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-educare +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-electricity +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-electronic-clock +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-6 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-7 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-8 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-9 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-10 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-11 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-12 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-equal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-element-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-emoji-happy +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-enjin-coin +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-entrance-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-entrance-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-eraser +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-euro +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-exit-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-exit-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-exit-right-corner +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-exit-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-exit-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-external-drive +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-eye-slash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-eye +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-facebook +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-faceid +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-fasten +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-fat-rows +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-feather +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-figma +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-file-added +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-file-deleted +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-file-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-file-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-file-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-file-sheet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-file-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-file +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-files-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-filter-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-filter-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-filter-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-filter-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-filter-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-filter +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-finance-calculator +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-financial-schedule +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-fingerprint-scanning +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-flag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-flash-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-flask +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-focus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-folder-added +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-folder-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-folder-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-frame +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-gear +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-general-mouse +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-geolocation-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-geolocation +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-ghost +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-gift +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-github +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-glass +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-google-play +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-google +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-graph-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-graph-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-graph-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-graph-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-graph +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-grid-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-grid-frame +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-grid +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-handcart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-happy-emoji +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-heart-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-heart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-home-1 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-home-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-home-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-html +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-icon +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-illustrator +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-information-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-information-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-information-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-information-5 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-information +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-instagram +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-joystick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-js-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-js +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-kanban +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-key-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-key +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-keyboard +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-laptop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-laravel +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-left-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-like-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-like-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-like-shapes +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-like-tag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-like +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-loading +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-lock-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-lock-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-lock +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-logistic +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-lots-shopping +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-lovely +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-lts +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-magnifier +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-map +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-mask +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-maximize +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-medal-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-menu +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-message-add +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-message-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-message-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-message-notif +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-message-programming +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-message-question +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-message-text-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-message-text +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-messages +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-microsoft +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-milk +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-minus-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-minus-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-minus-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-minus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-monitor-mobile +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-moon +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-more-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-mouse-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-mouse-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-mouse +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-nexo +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-night-day +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-note-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-note +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-notepad-bookmark +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-notepad-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-notepad +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-notification-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-notification-bing +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-notification-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-notification-favorite +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-notification-on +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-notification-status +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-notification +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-ocean +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-office-bag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-package +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-pails +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-paintbucket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-paper-clip +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-parcel-tracking +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-parcel +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-password-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-paypal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-pencil +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-people +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-percentage +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-phone +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-photoshop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-picture +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-pill +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-pin +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-plus-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-plus-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-plus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-pointers +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-price-tag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-printer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-profile-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-profile-user +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-pulse +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-purchase +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-python +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-question-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-question +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-questionnaire-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-ranking +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-react +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-receipt-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-rescue +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-right-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-right-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-rocket +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-route +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-router +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-row-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-row-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-safe-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-satellite +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-save-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-save-deposit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-scan-barcode +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-scooter-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-scooter +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-screen +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-scroll +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-search-list +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-security-check +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-security-user +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-send +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-setting-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-setting-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-setting-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-setting +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-share +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-shield-cross +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-shield-search +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-shield-slash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-shield-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-shield +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-ship +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-shop +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-simcard-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-simcard +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-size +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-slack +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-slider-horizontal-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-slider-horizontal +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-slider-vertical-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-slider-vertical +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-slider +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-sms +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-snapchat +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-social-media +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-soft-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-soft-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-soft +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-some-files +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-sort +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-speaker +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-spotify +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-spring-framework +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-square-brackets +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-star +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-status +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-subtitle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-sun +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-support-24 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-switch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-syringe +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tablet-book +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tablet-delete +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tablet-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tablet-ok +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tablet-text-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tablet-text-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tablet-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tablet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tag-cross +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tag +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-teacher +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tech-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-technology-2 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-technology-3 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-technology-4 +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-technology +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-telephone-geolocation +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-test-tubes +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text-align-center +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text-align-justify-center +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text-align-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text-align-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text-bold +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text-italic +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text-number +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text-strikethrough +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text-underline +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-text +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-thermometer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-theta +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tiktok +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-time +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-timer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-to-left +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-to-right +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-toggle-off-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-toggle-off +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-toggle-on-circle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-toggle-on +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-trailer +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-trash-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-trash +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-tree +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-trello +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-triangle +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-truck +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-ts +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-twitch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-twitter +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-two-credit-cart +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-underlining +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-up-down +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-up-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-up +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-update-file +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-update-folder +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-user-edit +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-user-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-user-tick +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-user +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-verify +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-vibe +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-virus +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-vue +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-vuesax +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-wallet +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-wanchain +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-watch +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-whatsapp +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-wifi-home +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-wifi-square +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-wifi +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-wrench +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-xaomi +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-xd +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-xmr +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-yii +
+
+ + +
+
+ liga: + +
+
+
+
+ + ki-solid ki-youtube +
+
+ + +
+
+ liga: + +
+
+
+ + +
+

Font Test Drive

+ + +
  +
+
+ +
+

Generated by IcoMoon

+
+ + + + diff --git a/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.eot b/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.eot new file mode 100644 index 0000000..50811e6 Binary files /dev/null and b/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.eot differ diff --git a/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.svg b/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.svg new file mode 100644 index 0000000..7791426 --- /dev/null +++ b/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.svg @@ -0,0 +1,583 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.ttf b/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.ttf new file mode 100644 index 0000000..f6c8ac6 Binary files /dev/null and b/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.ttf differ diff --git a/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.woff b/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.woff new file mode 100644 index 0000000..496ed26 Binary files /dev/null and b/src/_metronic/assets/keenicons/solid/fonts/keenicons-solid.woff differ diff --git a/src/_metronic/assets/keenicons/solid/selection.json b/src/_metronic/assets/keenicons/solid/selection.json new file mode 100644 index 0000000..58d8ffc --- /dev/null +++ b/src/_metronic/assets/keenicons/solid/selection.json @@ -0,0 +1 @@ +{"IcoMoonType":"selection","icons":[{"icon":{"paths":["M492.373 904.107l-145.92-219.307c-7.808-11.571-12.464-25.828-12.464-41.173s4.656-29.603 12.631-41.438l-0.168 0.264 141.227-213.333c1.82-2.841 2.902-6.308 2.902-10.027s-1.081-7.185-2.947-10.102l0.045 0.075-103.68-151.467c-6.397-9.584-10.208-21.368-10.208-34.042 0-21.261 10.725-40.018 27.060-51.154l0.214-0.138 42.667-28.587c9.584-6.397 21.368-10.208 34.042-10.208 21.261 0 40.018 10.725 51.154 27.060l0.138 0.214 148.48 220.587c7.808 11.571 12.464 25.828 12.464 41.173s-4.656 29.603-12.631 41.438l0.168-0.264-141.227 213.333c-1.82 2.841-2.902 6.308-2.902 10.027s1.081 7.185 2.947 10.102l-0.045-0.075 103.68 149.333c6.397 9.584 10.208 21.368 10.208 34.042 0 21.261-10.725 40.018-27.060 51.154l-0.214 0.138-42.667 28.587c-10.030 7.304-22.596 11.686-36.185 11.686-21.525 0-40.483-10.993-51.565-27.671l-0.142-0.228z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-1"]},"attrs":[{}],"properties":{"order":6965,"id":572,"name":"abstract-1","prevSize":32,"code":59648},"setIdx":0,"setId":0,"iconIdx":0},{"icon":{"paths":["M768 256v256c0 141.385-114.615 256-256 256s-256-114.615-256-256v0-256h512zM896 85.333h-768c-23.564 0-42.667 19.103-42.667 42.667v0 384c0 235.641 191.025 426.667 426.667 426.667v0 0c235.641 0 426.667-191.025 426.667-426.667v0-384c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-2"]},"attrs":[{}],"properties":{"order":6966,"id":571,"name":"abstract-2","prevSize":32,"code":59649},"setIdx":0,"setId":0,"iconIdx":1},{"icon":{"paths":["M926.293 481.707l-384-384c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003-384 384c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003 384 384c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 384-384c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003zM512 308.907l117.76 117.76h-235.52zM512 715.093l-117.76-117.76h235.52z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-3"]},"attrs":[{}],"properties":{"order":6967,"id":570,"name":"abstract-3","prevSize":32,"code":59650},"setIdx":0,"setId":0,"iconIdx":2},{"icon":{"paths":["M512 308.907l203.093 203.093-203.093 203.093-203.093-203.093 203.093-203.093zM512 85.333c-0.073-0-0.16-0.001-0.247-0.001-11.721 0-22.338 4.726-30.049 12.377l0.003-0.003-384 384c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003 384 384c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 384-384c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-384-384c-7.709-7.648-18.326-12.374-30.047-12.374-0.087 0-0.173 0-0.26 0.001l0.013-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-4"]},"attrs":[{}],"properties":{"order":6968,"id":569,"name":"abstract-4","prevSize":32,"code":59651},"setIdx":0,"setId":0,"iconIdx":3},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM682.667 640c0 23.564-19.103 42.667-42.667 42.667v0h-256c-23.564 0-42.667-19.103-42.667-42.667v0-256c0-23.564 19.103-42.667 42.667-42.667v0h256c23.564 0 42.667 19.103 42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-5"]},"attrs":[{}],"properties":{"order":6969,"id":568,"name":"abstract-5","prevSize":32,"code":59652},"setIdx":0,"setId":0,"iconIdx":4},{"icon":{"paths":["M810.667 426.667h-8.107c4.977-12.646 7.936-27.286 8.106-42.596l0.001-0.071c0-70.692-57.308-128-128-128v0c-26.776 0.075-51.603 8.359-72.112 22.468l0.432-0.281c-37.668-63.804-106.077-105.932-184.326-105.932-117.262 0-212.427 94.609-213.327 211.659l-0.001 0.086c0.149 15.183 1.695 29.91 4.516 44.179l-0.249-1.512h-4.267c-70.692 0-128 57.308-128 128s57.308 128 128 128v0h170.667l189.44 189.44c7.053 7.194 16.872 11.654 27.734 11.654 21.443 0 38.827-17.383 38.827-38.827 0-0.047-0-0.094-0-0.141l0 0.007v-162.133h170.667c70.692 0 128-57.308 128-128s-57.308-128-128-128v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-6"]},"attrs":[{}],"properties":{"order":6970,"id":567,"name":"abstract-6","prevSize":32,"code":59653},"setIdx":0,"setId":0,"iconIdx":5},{"icon":{"paths":["M512 271.36l208.64 120.32v240.64l-208.64 120.32-208.64-120.32v-240.64l208.64-120.32zM512 85.333c-0.145-0.001-0.316-0.002-0.488-0.002-13.006 0-25.198 3.485-35.694 9.571l0.342-0.183-305.493 177.92c-21.568 12.521-35.84 35.509-35.84 61.83 0 0.013 0 0.026 0 0.039l-0-0.002v354.987c-0 0.011-0 0.024-0 0.037 0 26.321 14.272 49.309 35.5 61.647l0.34 0.183 307.627 177.92c10.31 5.919 22.668 9.41 35.84 9.41s25.53-3.491 36.197-9.598l-0.357 0.188 307.627-177.92c21.568-12.521 35.84-35.509 35.84-61.83 0-0.013-0-0.026-0-0.039l0 0.002v-354.987c0-0.011 0-0.024 0-0.037 0-26.321-14.272-49.309-35.5-61.647l-0.34-0.183-309.76-177.92c-10.154-5.904-22.346-9.388-35.352-9.388-0.172 0-0.343 0.001-0.514 0.002l0.026-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-7"]},"attrs":[{}],"properties":{"order":6971,"id":566,"name":"abstract-7","prevSize":32,"code":59654},"setIdx":0,"setId":0,"iconIdx":6},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM512 256c-141.385 0-256 114.615-256 256s114.615 256 256 256c141.385 0 256-114.615 256-256v0c0-141.385-114.615-256-256-256v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-8"]},"attrs":[{}],"properties":{"order":6972,"id":565,"name":"abstract-8","prevSize":32,"code":59655},"setIdx":0,"setId":0,"iconIdx":7},{"icon":{"paths":["M725.333 298.667v426.667h-426.667v-426.667h426.667zM853.333 128h-682.667c-23.564 0-42.667 19.103-42.667 42.667v0 682.667c0 23.564 19.103 42.667 42.667 42.667v0h682.667c23.564 0 42.667-19.103 42.667-42.667v0-682.667c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-9"]},"attrs":[{}],"properties":{"order":6973,"id":564,"name":"abstract-9","prevSize":32,"code":59656},"setIdx":0,"setId":0,"iconIdx":8},{"icon":{"paths":["M853.333 426.667h-256v-256c0-23.564-19.103-42.667-42.667-42.667v0h-85.333c-23.564 0-42.667 19.103-42.667 42.667v0 256h-256c-23.564 0-42.667 19.103-42.667 42.667v0 85.333c0 23.564 19.103 42.667 42.667 42.667v0h256v256c0 23.564 19.103 42.667 42.667 42.667v0h85.333c23.564 0 42.667-19.103 42.667-42.667v0-256h256c23.564 0 42.667-19.103 42.667-42.667v0-85.333c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-10"]},"attrs":[{}],"properties":{"order":6974,"id":563,"name":"abstract-10","prevSize":32,"code":59657},"setIdx":0,"setId":0,"iconIdx":9},{"icon":{"paths":["M632.747 512l180.907-180.907c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-60.16-60.16c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003-180.907 180.907-180.907-180.907c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003-60.16 60.16c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003 180.907 180.907-180.907 180.907c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003 60.16 60.16c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 180.907-180.907 180.907 180.907c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 60.16-60.16c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-11"]},"attrs":[{}],"properties":{"order":6975,"id":562,"name":"abstract-11","prevSize":32,"code":59658},"setIdx":0,"setId":0,"iconIdx":10},{"icon":{"paths":["M554.667 938.667h-85.333c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h85.333c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM776.533 457.813l110.507-64c12.853-7.512 21.35-21.244 21.35-36.96 0-7.747-2.064-15.011-5.673-21.273l0.11 0.207-42.667-74.24c-7.53-12.777-21.22-21.215-36.882-21.215-7.952 0-15.395 2.175-21.768 5.963l0.197-0.108-110.507 64c-12.853 7.512-21.35 21.244-21.35 36.96 0 7.747 2.064 15.011 5.673 21.273l-0.11-0.207 42.667 74.24c7.53 12.777 21.22 21.215 36.882 21.215 7.952 0 15.395-2.175 21.768-5.963l-0.197 0.108zM332.8 310.187l-110.507-64c-6.176-3.68-13.62-5.855-21.572-5.855-15.661 0-29.352 8.438-36.773 21.016l-0.109 0.199-42.667 74.24c-3.499 6.055-5.563 13.32-5.563 21.067 0 15.716 8.497 29.448 21.148 36.851l0.202 0.109 110.507 64c6.176 3.68 13.62 5.855 21.572 5.855 15.661 0 29.352-8.438 36.773-21.016l0.109-0.199 42.667-74.24c3.499-6.055 5.563-13.32 5.563-21.067 0-15.716-8.497-29.448-21.148-36.851l-0.202-0.109zM554.667 298.667h-85.333c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h85.333c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM222.293 777.813l110.507-64c12.853-7.512 21.35-21.244 21.35-36.96 0-7.747-2.064-15.011-5.673-21.273l0.11 0.207-42.667-74.24c-7.53-12.777-21.22-21.215-36.882-21.215-7.952 0-15.395 2.175-21.768 5.963l0.197-0.108-110.507 64c-12.853 7.512-21.35 21.244-21.35 36.96 0 7.747 2.064 15.011 5.673 21.273l-0.11-0.207 42.667 74.24c7.53 12.777 21.22 21.215 36.882 21.215 7.952 0 15.395-2.175 21.768-5.963l-0.197 0.108zM887.040 630.187l-110.507-64c-6.176-3.68-13.62-5.855-21.572-5.855-15.661 0-29.352 8.438-36.773 21.016l-0.109 0.199-42.667 74.24c-3.499 6.055-5.563 13.32-5.563 21.067 0 15.716 8.497 29.448 21.148 36.851l0.202 0.109 110.507 64c6.176 3.68 13.62 5.855 21.572 5.855 15.661 0 29.352-8.438 36.773-21.016l0.109-0.199 42.667-74.24c3.499-6.055 5.563-13.32 5.563-21.067 0-15.716-8.497-29.448-21.148-36.851l-0.202-0.109z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-12"]},"attrs":[{}],"properties":{"order":6976,"id":561,"name":"abstract-12","prevSize":32,"code":59659},"setIdx":0,"setId":0,"iconIdx":11},{"icon":{"paths":["M512 221.867l251.307 145.067v290.133l-251.307 145.067-251.307-145.067v-290.133l251.307-145.067zM512 85.333c-13.167 0.132-25.498 3.595-36.225 9.584l0.385-0.198-305.493 177.92c-21.568 12.521-35.84 35.509-35.84 61.83 0 0.013 0 0.026 0 0.039l-0-0.002v354.987c-0 0.011-0 0.024-0 0.037 0 26.321 14.272 49.309 35.5 61.647l0.34 0.183 307.627 177.92c10.31 5.919 22.668 9.41 35.84 9.41s25.53-3.491 36.197-9.598l-0.357 0.188 307.627-177.92c21.568-12.521 35.84-35.509 35.84-61.83 0-0.013-0-0.026-0-0.039l0 0.002v-354.987c0-0.011 0-0.024 0-0.037 0-26.321-14.272-49.309-35.5-61.647l-0.34-0.183-309.76-177.92c-10.343-5.791-22.673-9.254-35.8-9.386l-0.040-0zM512 440.747c-39.352 0-71.253 31.901-71.253 71.253s31.901 71.253 71.253 71.253c39.352 0 71.253-31.901 71.253-71.253v0c0-39.352-31.901-71.253-71.253-71.253v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-13"]},"attrs":[{}],"properties":{"order":6977,"id":560,"name":"abstract-13","prevSize":32,"code":59660},"setIdx":0,"setId":0,"iconIdx":12},{"icon":{"paths":["M896 298.667h-768c-23.564 0-42.667-19.103-42.667-42.667v0-85.333c0-23.564 19.103-42.667 42.667-42.667v0h768c23.564 0 42.667 19.103 42.667 42.667v0 85.333c0 23.564-19.103 42.667-42.667 42.667v0zM938.667 554.667v-85.333c0-23.564-19.103-42.667-42.667-42.667v0h-768c-23.564 0-42.667 19.103-42.667 42.667v0 85.333c0 23.564 19.103 42.667 42.667 42.667v0h768c23.564 0 42.667-19.103 42.667-42.667v0zM896 896h-768c-23.564 0-42.667-19.103-42.667-42.667v0-85.333c0-23.564 19.103-42.667 42.667-42.667v0h768c23.564 0 42.667 19.103 42.667 42.667v0 85.333c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-14"]},"attrs":[{}],"properties":{"order":6978,"id":559,"name":"abstract-14","prevSize":32,"code":59661},"setIdx":0,"setId":0,"iconIdx":13},{"icon":{"paths":["M516.267 935.253l-75.52-33.707c-14.379-7.065-24.101-21.605-24.101-38.416 0-5.842 1.174-11.409 3.299-16.479l-0.105 0.281 16.64-37.973c18.593-38.613 29.458-83.958 29.458-131.84s-10.864-93.227-30.262-133.703l0.804 1.863c-27.681-58.299-43.844-126.675-43.844-198.827s16.163-140.527 45.067-201.704l-1.223 2.877 16.64-37.547c6.995-14.574 21.636-24.458 38.586-24.458 5.777 0 11.285 1.148 16.31 3.228l-0.283-0.104 75.52 33.707c14.379 7.065 24.101 21.605 24.101 38.416 0 5.842-1.174 11.409-3.299 16.479l0.105-0.281-16.64 36.267c-18.593 38.613-29.458 83.958-29.458 131.84s10.864 93.227 30.262 133.703l-0.804-1.863c27.681 58.299 43.844 126.675 43.844 198.827s-16.163 140.527-45.067 201.704l1.223-2.877-16.64 37.547c-6.684 15.361-21.729 25.907-39.237 25.907-5.531 0-10.815-1.052-15.665-2.968l0.289 0.101zM864.853 913.92l16.64-37.547c27.573-58.319 43.67-126.693 43.67-198.827s-16.097-140.507-44.896-201.725l1.225 2.898c-18.593-38.613-29.458-83.958-29.458-131.84s10.864-93.227 30.262-133.703l-0.804 1.863 17.067-37.973c2.020-4.789 3.194-10.356 3.194-16.198 0-16.811-9.722-31.351-23.85-38.304l-0.251-0.111-75.52-33.707c-4.742-1.977-10.25-3.125-16.027-3.125-16.95 0-31.591 9.884-38.475 24.202l-0.111 0.256-17.067 37.547c-27.681 58.299-43.844 126.675-43.844 198.827s16.163 140.527 45.067 201.704l-1.223-2.877c18.593 38.613 29.458 83.958 29.458 131.84s-10.864 93.227-30.262 133.703l0.804-1.863-16.64 37.973c-2.020 4.789-3.194 10.356-3.194 16.198 0 16.811 9.722 31.351 23.85 38.304l0.251 0.111 75.52 33.707c4.742 1.977 10.25 3.125 16.027 3.125 16.95 0 31.591-9.884 38.475-24.202l0.111-0.256zM276.48 913.92l17.067-37.547c27.681-58.299 43.844-126.675 43.844-198.827s-16.163-140.527-45.067-201.704l1.223 2.877c-18.845-38.838-29.86-84.479-29.86-132.693s11.015-93.855 30.666-134.544l-0.806 1.85 16.64-37.973c2.020-4.789 3.194-10.356 3.194-16.198 0-16.811-9.722-31.351-23.85-38.304l-0.251-0.111-75.947-32c-4.742-1.977-10.25-3.125-16.027-3.125-16.95 0-31.591 9.884-38.475 24.202l-0.111 0.256-16.64 37.547c-27.573 58.319-43.67 126.693-43.67 198.827s16.097 140.507 44.896 201.725l-1.225-2.898c18.593 38.613 29.458 83.958 29.458 131.84s-10.864 93.227-30.262 133.703l0.804-1.863-17.067 37.973c-2.020 4.789-3.194 10.356-3.194 16.198 0 16.811 9.722 31.351 23.85 38.304l0.251 0.111 75.52 33.707c4.84 2.069 10.472 3.272 16.385 3.272 17.007 0 31.69-9.95 38.544-24.347l0.111-0.258z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-15"]},"attrs":[{}],"properties":{"order":6979,"id":558,"name":"abstract-15","prevSize":32,"code":59662},"setIdx":0,"setId":0,"iconIdx":14},{"icon":{"paths":["M88.747 516.267l33.707-75.52c7.065-14.379 21.605-24.101 38.416-24.101 5.842 0 11.409 1.174 16.479 3.299l-0.281-0.105 37.973 16.64c38.613 18.593 83.958 29.458 131.84 29.458s93.227-10.864 133.703-30.262l-1.863 0.804c58.299-27.681 126.675-43.844 198.827-43.844s140.527 16.163 201.704 45.067l-2.877-1.223 37.547 16.64c14.574 6.995 24.458 21.636 24.458 38.586 0 5.777-1.148 11.285-3.228 16.31l0.104-0.283-33.707 75.52c-7.065 14.379-21.605 24.101-38.416 24.101-5.842 0-11.409-1.174-16.479-3.299l0.281 0.105-36.267-16.64c-38.613-18.593-83.958-29.458-131.84-29.458s-93.227 10.864-133.703 30.262l1.863-0.804c-58.299 27.681-126.675 43.844-198.827 43.844s-140.527-16.163-201.704-45.067l2.877 1.223-37.547-16.64c-15.361-6.684-25.907-21.729-25.907-39.237 0-5.531 1.052-10.815 2.968-15.665l-0.101 0.289zM110.080 864.853l37.547 16.64c58.319 27.573 126.693 43.67 198.827 43.67s140.507-16.097 201.725-44.896l-2.898 1.225c38.613-18.593 83.958-29.458 131.84-29.458s93.227 10.864 133.703 30.262l-1.863-0.804 37.973 17.067c4.789 2.020 10.356 3.194 16.198 3.194 16.811 0 31.351-9.722 38.304-23.85l0.111-0.251 33.707-75.52c1.977-4.742 3.125-10.25 3.125-16.027 0-16.95-9.884-31.591-24.202-38.475l-0.256-0.111-37.547-17.067c-58.299-27.681-126.675-43.844-198.827-43.844s-140.527 16.163-201.704 45.067l2.877-1.223c-38.613 18.593-83.958 29.458-131.84 29.458s-93.227-10.864-133.703-30.262l1.863 0.804-37.973-16.64c-4.789-2.020-10.356-3.194-16.198-3.194-16.811 0-31.351 9.722-38.304 23.85l-0.111 0.251-33.707 75.947c-1.886 4.642-2.981 10.028-2.981 15.669 0 16.894 9.819 31.495 24.061 38.407l0.254 0.111zM110.080 276.48l37.547 17.067c58.299 27.681 126.675 43.844 198.827 43.844s140.527-16.163 201.704-45.067l-2.877 1.223c38.613-18.593 83.958-29.458 131.84-29.458s93.227 10.864 133.703 30.262l-1.863-0.804 37.973 16.64c4.789 2.020 10.356 3.194 16.198 3.194 16.811 0 31.351-9.722 38.304-23.85l0.111-0.251 33.707-75.947c1.977-4.742 3.125-10.25 3.125-16.027 0-16.95-9.884-31.591-24.202-38.475l-0.256-0.111-37.547-16.64c-58.319-27.573-126.693-43.67-198.827-43.67s-140.507 16.097-201.725 44.896l2.898-1.225c-38.957 18.979-84.754 30.074-133.143 30.074-48.039 0-93.524-10.935-134.101-30.453l1.857 0.805-37.973-17.067c-4.789-2.020-10.356-3.194-16.198-3.194-16.811 0-31.351 9.722-38.304 23.85l-0.111 0.251-32 75.52c-1.977 4.742-3.125 10.25-3.125 16.027 0 16.95 9.884 31.591 24.202 38.475l0.256 0.111z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-16"]},"attrs":[{}],"properties":{"order":6980,"id":557,"name":"abstract-16","prevSize":32,"code":59663},"setIdx":0,"setId":0,"iconIdx":15},{"icon":{"paths":["M456.107 456.107c113.362-114.412 266.992-188.756 437.856-199.999l2.037-0.107c23.939-1.83 42.67-21.704 42.67-45.954 0-0.194-0.001-0.389-0.004-0.582l0 0.029v-81.493c0-23.564-19.103-42.667-42.667-42.667v0c-438.548 22.091-788.575 372.119-810.585 808.635l-0.082 2.032c0 23.564 19.103 42.667 42.667 42.667v0h82.773c23.94-0.39 43.417-18.977 45.217-42.51l0.010-0.156c11.35-172.9 85.694-326.53 200.055-439.842l0.052-0.051zM637.013 637.013c67.144-67.691 157.024-112.741 257.226-122.738l1.76-0.142c23.457-1.988 41.852-21.122 42.665-44.722l0.002-0.078v-85.333c0-0.051 0-0.112 0-0.173 0-23.564-19.103-42.667-42.667-42.667-1.352 0-2.689 0.063-4.009 0.186l0.169-0.013c-294.573 22.833-527.993 256.254-550.699 548.777l-0.128 2.049c-0.11 1.151-0.173 2.488-0.173 3.84 0 23.564 19.103 42.667 42.667 42.667 0.061 0 0.122-0 0.183-0l-0.009 0h85.333c0.047 0 0.103 0 0.159 0 24.333 0 44.302-18.688 46.336-42.495l0.012-0.172c9.648-101.768 54.115-191.65 121.188-259.001l-0.014 0.014zM697.173 697.173c50.669-50.601 117.17-85.359 191.433-96.205l1.847-0.221c1.666-0.231 3.592-0.362 5.548-0.362 23.564 0 42.667 19.103 42.667 42.667 0 0.127-0.001 0.255-0.002 0.382l0-0.019v81.92c-0.425 22.867-16.848 41.777-38.524 46.031l-0.303 0.049c-63.716 15.042-112.957 64.284-127.769 126.841l-0.231 1.159c-4.155 22.3-23.344 38.997-46.479 39.253l-0.027 0h-82.347c-0.108 0.001-0.235 0.002-0.362 0.002-23.564 0-42.667-19.103-42.667-42.667 0-1.956 0.132-3.882 0.387-5.768l-0.024 0.22c11.191-76.154 46.094-142.655 96.846-193.273l0.007-0.007z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-17"]},"attrs":[{}],"properties":{"order":6981,"id":556,"name":"abstract-17","prevSize":32,"code":59664},"setIdx":0,"setId":0,"iconIdx":16},{"icon":{"paths":["M768 938.667h-512c-22.117-1.748-39.402-20.126-39.402-42.542 0-8.97 2.768-17.293 7.496-24.162l-0.094 0.144 220.16-274.773c15.749-20.492 40.267-33.569 67.84-33.569s52.091 13.077 67.691 33.368l0.149 0.201 220.587 275.627c4.29 6.544 6.843 14.561 6.843 23.175 0 22.368-17.213 40.717-39.116 42.521l-0.154 0.010zM768 85.333h-512c-22.117 1.748-39.402 20.126-39.402 42.542 0 8.97 2.768 17.293 7.496 24.162l-0.094-0.144 220.16 274.773c15.749 20.492 40.267 33.569 67.84 33.569s52.091-13.077 67.691-33.368l0.149-0.201 220.587-275.627c4.29-6.544 6.843-14.561 6.843-23.175 0-22.368-17.213-40.717-39.116-42.521l-0.154-0.010z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-18"]},"attrs":[{}],"properties":{"order":6982,"id":555,"name":"abstract-18","prevSize":32,"code":59665},"setIdx":0,"setId":0,"iconIdx":17},{"icon":{"paths":["M933.973 842.667c3.060 5.13 4.869 11.314 4.869 17.92 0 19.558-15.855 35.413-35.413 35.413-0.062 0-0.123-0-0.185-0l0.009 0h-391.253l226.133-392.107zM285.867 503.893l-195.84 338.773c-3.060 5.13-4.869 11.314-4.869 17.92 0 19.558 15.855 35.413 35.413 35.413 0.062 0 0.123-0 0.185-0l-0.009 0h391.253zM541.867 165.12l195.413 338.773h-451.413l195.413-338.773c6.225-10.71 17.645-17.796 30.72-17.796s24.495 7.086 30.629 17.627l0.091 0.169z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-19"]},"attrs":[{}],"properties":{"order":6983,"id":554,"name":"abstract-19","prevSize":32,"code":59666},"setIdx":0,"setId":0,"iconIdx":18},{"icon":{"paths":["M725.333 880.213c-61.029 36.611-134.632 58.316-213.294 58.453l-0.039 0c-235.641 0-426.667-191.025-426.667-426.667s191.025-426.667 426.667-426.667v0c78.702 0.137 152.305 21.842 215.251 59.517l-1.917-1.064c-31.903-9.913-68.591-15.675-106.608-15.787l-0.058-0c-212.077 0-384 171.923-384 384s171.923 384 384 384v0c38.076-0.112 74.764-5.873 109.327-16.49l-2.66 0.703zM618.667 192c-158.962 0.179-290.764 116.237-315.486 268.237l-0.247 1.843h2.133c23.273-94.507 107.295-163.499 207.431-163.499 117.821 0 213.333 95.513 213.333 213.333s-95.513 213.333-213.333 213.333c-90.487 0-167.816-56.337-198.826-135.848l-0.499-1.453h-5.12c35.346 141.161 161.086 244.053 310.857 244.053 176.731 0 320-143.269 320-320s-143.269-320-320-320c-0.086 0-0.171 0-0.257 0l0.013-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-20"]},"attrs":[{}],"properties":{"order":6984,"id":553,"name":"abstract-20","prevSize":32,"code":59667},"setIdx":0,"setId":0,"iconIdx":19},{"icon":{"paths":["M399.36 756.053v0c-33.503-5.364-62.749-20.648-85.366-42.699l0.033 0.032c-20.911-21.152-35.958-48.143-42.476-78.309l-0.19-1.051c-2.193-9.756-3.449-20.961-3.449-32.459 0-20.741 4.088-40.527 11.503-58.597l-0.374 1.029c4.228-10.223 8.803-18.92 14.063-27.137l-0.409 0.684c6.161-10.018 13.071-18.692 20.896-26.442l0.011-0.011c21.561-21.221 49.193-36.334 80.054-42.498l1.013-0.169c8.745-1.902 18.791-2.992 29.091-2.992 0.423 0 0.845 0.002 1.267 0.005l-0.064-0h1.707c31.986 0.283 61.538 10.465 85.806 27.624l-0.473-0.317c25.097 17.564 44.415 41.83 55.533 70.209l0.36 1.044c7.534 2.11 16.196 3.352 25.138 3.413l0.036 0c15.425-0.258 30.051-3.368 43.475-8.824l-0.808 0.29c14.584-6.238 27.042-14.73 37.552-25.179l-0.006 0.006c10.45-10.364 18.941-22.683 24.882-36.367l0.291-0.753c5.29-12.587 8.544-27.191 8.957-42.504l0.003-0.163v-13.227c-14.009-21.655-29.196-40.503-46.116-57.636l0.036 0.036c-5.973-5.973-34.133-29.867-35.413-30.72-54.537-42.628-123.688-68.879-198.911-70.395l-0.343-0.005h-7.68c-15.208 0.162-29.996 1.242-44.51 3.189l1.843-0.202-17.067 3.413-29.44 6.827-18.347 6.4-26.88 10.667-16.64 6.4c-3.788 1.647-6.87 3.216-9.851 4.941l0.464-0.248c-5.973 2.987-11.52 7.253-17.067 10.667l-9.387 5.547c-39.612 27.078-72.292 61.256-96.882 100.969l-0.825 1.431c-29.238 47.628-47.25 104.945-49.055 166.329l-0.012 0.498c-0.131 3.502-0.206 7.616-0.206 11.747 0 56.847 14.126 110.394 39.059 157.323l-0.881-1.816c53.794 103.343 156.837 174.524 277.165 182.559l1.022 0.055c6.521 0.449 14.133 0.705 21.805 0.705 114.154 0 215.070-56.675 276.147-143.422l0.714-1.070c-31.843 10.533-68.552 17.021-106.646 17.912l-0.448 0.008c-71.877-1.068-138.638-22.055-195.275-57.667l1.569 0.92z","M905.387 276.907c-42.178-86.206-117.438-150.741-208.806-177.74l-2.394-0.607c-27.751-8.328-59.641-13.122-92.65-13.122-16.534 0-32.787 1.203-48.676 3.525l1.806-0.217c-98.438 13.518-182.018 67.893-234.337 145.162l-0.756 1.184c32.067-9.742 68.924-15.354 107.090-15.36l0.004-0c0.382-0.001 0.835-0.002 1.288-0.002 72.425 0 140.065 20.482 197.445 55.971l-1.613-0.929c33.561 5.126 62.867 20.459 85.348 42.681l-0.015-0.015c20.985 20.955 36.052 47.83 42.483 77.906l0.184 1.027c2.193 9.756 3.449 20.961 3.449 32.459 0 20.741-4.088 40.527-11.503 58.597l0.374-1.029c-2.587 6.856-5.314 12.619-8.438 18.128l0.331-0.635c2.77-4.562 5.622-10.024 8.144-15.665l0.389-0.975c-8.529 21.377-20.518 39.667-35.456 55.084l0.042-0.044c-28.294 28.088-67.273 45.447-110.305 45.447-65.825 0-122.163-40.616-145.32-98.154l-0.374-1.053-26.453-2.987c-0.214-0.001-0.467-0.002-0.72-0.002-16.254 0-31.701 3.456-45.646 9.673l0.713-0.284c-14.959 6.373-27.715 15.163-38.384 26.011l-0.016 0.016c-10.355 11.025-18.727 24.056-24.456 38.427l-0.291 0.827c-4.685 11.966-7.4 25.821-7.4 40.311 0 2.029 0.053 4.046 0.158 6.049l-0.012-0.28v10.667c13.481 21.539 28.121 40.249 44.486 57.291l-0.112-0.118c40.983 40.886 92.42 71.311 149.953 86.92l2.367 0.547c25.599 4.782 55.103 7.572 85.239 7.68l0.094 0c46.26-0.303 90.211-9.843 130.212-26.863l-2.212 0.836c42.767-18.029 79.216-43.123 109.594-74.18l0.059-0.060c34.842-31.22 62.827-69.32 81.937-112.243l0.837-2.104c16.276-38.247 25.737-82.737 25.737-129.436 0-53.317-12.332-103.754-34.3-148.613l0.883 1.996z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-21"]},"attrs":[{},{}],"properties":{"order":6985,"id":552,"name":"abstract-21","prevSize":32,"code":59668},"setIdx":0,"setId":0,"iconIdx":20},{"icon":{"paths":["M779.947 426.667h-267.947v-272.64c-2.873-21.022-20.712-37.047-42.295-37.047-13.879 0-26.209 6.626-34.001 16.888l-0.077 0.106-228.693 399.787c-3.443 6.017-5.473 13.225-5.473 20.907 0 23.538 19.061 42.625 42.589 42.667l0.004 0h267.947v272.64c2.873 21.022 20.712 37.047 42.295 37.047 13.879 0 26.209-6.626 34.001-16.888l0.077-0.106 228.693-399.787c3.443-6.017 5.473-13.225 5.473-20.907 0-23.538-19.061-42.625-42.589-42.667l-0.004-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-22"]},"attrs":[{}],"properties":{"order":6986,"id":551,"name":"abstract-22","prevSize":32,"code":59669},"setIdx":0,"setId":0,"iconIdx":21},{"icon":{"paths":["M892.16 380.16h-256l-81.493-244.053c-6.11-19.042-23.66-32.583-44.373-32.583s-38.263 13.541-44.282 32.254l-0.091 0.329-77.653 244.053h-256c-0.524-0.021-1.139-0.033-1.757-0.033-25.685 0-46.507 20.822-46.507 46.507 0 16.175 8.257 30.421 20.786 38.753l0.171 0.107 207.787 150.613-79.787 242.773c-1.481 4.345-2.336 9.35-2.336 14.556 0 25.685 20.822 46.507 46.507 46.507 10.35 0 19.91-3.381 27.636-9.098l-0.126 0.089 207.36-150.613 207.36 150.613c7.6 5.628 17.16 9.009 27.51 9.009 25.685 0 46.507-20.822 46.507-46.507 0-5.205-0.855-10.211-2.433-14.883l0.096 0.328-79.36-244.053 207.787-150.613c11.613-8.558 19.064-22.182 19.064-37.547 0-25.637-20.744-46.429-46.363-46.506l-0.007-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-23"]},"attrs":[{}],"properties":{"order":6987,"id":550,"name":"abstract-23","prevSize":32,"code":59670},"setIdx":0,"setId":0,"iconIdx":22},{"icon":{"paths":["M104.96 518.4c-11.744 6.93-19.498 19.519-19.498 33.92s7.755 26.99 19.316 33.82l0.183 0.1 150.613 85.333v174.080c-0 0.041-0 0.090-0 0.139 0 21.679 17.574 39.253 39.253 39.253 7.226 0 13.997-1.953 19.812-5.359l-0.185 0.1 151.040-85.333v-239.787l-209.493-123.307z","M919.040 518.4l-150.613-85.333-209.92 121.6v241.92l151.040 85.333c5.63 3.306 12.4 5.259 19.627 5.259 21.679 0 39.253-17.574 39.253-39.253 0-0.049-0-0.098-0-0.147l0 0.008v-174.507l150.613-85.333c12.605-6.702 21.042-19.752 21.042-34.773s-8.437-28.071-20.831-34.67l-0.212-0.103z","M662.613 142.507l-150.613 87.040-150.613-85.333c-5.63-3.306-12.4-5.259-19.627-5.259-21.679 0-39.253 17.574-39.253 39.253 0 0.049 0 0.098 0 0.147l-0-0.008v172.373l209.493 120.747 209.493-120.747v-174.080c0-0.041 0-0.090 0-0.139 0-21.679-17.574-39.253-39.253-39.253-7.226 0-13.997 1.953-19.812 5.359l0.185-0.1z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-24"]},"attrs":[{},{},{}],"properties":{"order":6988,"id":549,"name":"abstract-24","prevSize":32,"code":59671},"setIdx":0,"setId":0,"iconIdx":23},{"icon":{"paths":["M896 627.2l-213.333 123.307c-12.239 7.187-26.957 11.432-42.667 11.432s-30.427-4.245-43.069-11.651l0.403 0.218-213.333-123.307c-25.304-14.8-42.154-41.643-42.666-72.461l-0.001-0.072v-247.467c-0-0.101-0.001-0.22-0.001-0.339 0-31.419 16.98-58.872 42.265-73.683l0.403-0.218 213.333-122.88c12.239-7.187 26.957-11.432 42.667-11.432s30.427 4.245 43.069 11.651l-0.403-0.218 213.333 122.88c25.687 15.029 42.667 42.482 42.667 73.901 0 0.119-0 0.238-0.001 0.357l0-0.018v247.467c-0.513 30.891-17.363 57.733-42.264 72.315l-0.403 0.218zM362.667 664.32c-38.193-22.344-63.548-62.987-64-109.589l-0-0.064v-157.44c-15.719 0.029-30.434 4.303-43.066 11.738l0.4-0.218-128 73.813c-25.186 14.727-41.996 41.381-42.665 72.012l-0.002 0.094v148.053c0.033 31.385 17.005 58.799 42.264 73.595l0.403 0.218 128 76.8c12.239 7.187 26.957 11.432 42.667 11.432s30.427-4.245 43.069-11.651l-0.403 0.218 128-73.813c13.692-8.219 24.697-19.634 32.197-33.252l0.229-0.454zM853.333 768c-12.239-7.187-26.957-11.432-42.667-11.432-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333 0-0.031-0-0.061-0-0.092l0 0.005c-0.033-31.385-17.005-58.799-42.264-73.595l-0.403-0.218z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-25"]},"attrs":[{}],"properties":{"order":6989,"id":548,"name":"abstract-25","prevSize":32,"code":59672},"setIdx":0,"setId":0,"iconIdx":24},{"icon":{"paths":["M469.333 469.333l-352-140.373c-19.070-7.736-32.273-26.113-32.273-47.573s13.204-39.838 31.931-47.45l0.343-0.123 352-139.947c12.64-5.143 27.305-8.128 42.667-8.128s30.026 2.985 43.446 8.406l-0.779-0.278 350.72 139.947c19.070 7.736 32.273 26.113 32.273 47.573s-13.204 39.838-31.931 47.45l-0.343 0.123-350.72 140.373c-12.667 4.95-27.332 7.819-42.667 7.819s-30-2.869-43.488-8.099l0.821 0.28zM907.947 695.040l-54.613-21.76-264.107 105.813c-22.496 9.178-48.599 14.505-75.947 14.505s-53.45-5.327-77.328-14.999l1.381 0.495-266.667-105.813-54.613 21.76c-19.070 7.736-32.273 26.113-32.273 47.573s13.204 39.838 31.931 47.45l0.343 0.123 353.28 139.947c12.995 5.466 28.1 8.643 43.947 8.643s30.952-3.176 44.713-8.927l-0.766 0.284 350.72-139.947c18.733-7.889 31.646-26.096 31.646-47.319 0-21.707-13.508-40.259-32.577-47.708l-0.348-0.12zM907.947 464.64l-113.493-44.8-222.72 89.173c-17.683 7.298-38.213 11.535-59.733 11.535s-42.051-4.237-60.803-11.923l1.070 0.388-222.72-89.173-112.213 44.8c-18.787 7.865-31.746 26.099-31.746 47.36s12.959 39.495 31.408 47.234l0.337 0.126 352 140.373c13.025 5.261 28.129 8.313 43.947 8.313s30.922-3.052 44.757-8.6l-0.81 0.287 350.72-140.373c18.449-8.013 31.118-26.076 31.118-47.097 0-21.508-13.262-39.918-32.054-47.5l-0.344-0.123z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-26"]},"attrs":[{}],"properties":{"order":6990,"id":547,"name":"abstract-26","prevSize":32,"code":59673},"setIdx":0,"setId":0,"iconIdx":25},{"icon":{"paths":["M682.667 256l225.707 225.707c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003-140.373 140.373-256-256zM115.627 542.293l225.707 225.707 170.667-170.667-256-256-140.373 140.373c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003zM768 682.667l-225.707 225.707c-7.733 7.795-18.45 12.621-30.293 12.621s-22.56-4.826-30.291-12.618l-0.003-0.003-140.373-140.373 256-256zM481.707 115.627l-225.707 225.707 170.667 170.667 256-256-140.373-140.373c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-27"]},"attrs":[{}],"properties":{"order":6991,"id":546,"name":"abstract-27","prevSize":32,"code":59674},"setIdx":0,"setId":0,"iconIdx":26},{"icon":{"paths":["M85.333 277.333c0-106.039 85.961-192 192-192s192 85.961 192 192c0 106.039-85.961 192-192 192v0c-0.127 0-0.277 0-0.427 0-105.803 0-191.573-85.77-191.573-191.573 0-0.15 0-0.3 0.001-0.45l-0 0.023zM746.667 469.333c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192v0c-0 0.127-0 0.277-0 0.427 0 105.803 85.77 191.573 191.573 191.573 0.15 0 0.3-0 0.45-0.001l-0.023 0zM85.333 746.667c0-106.039 85.961-192 192-192s192 85.961 192 192c0 106.039-85.961 192-192 192v0c-0.127 0-0.277 0-0.427 0-105.803 0-191.573-85.77-191.573-191.573 0-0.15 0-0.3 0.001-0.45l-0 0.023zM554.667 746.667c0-106.039 85.961-192 192-192s192 85.961 192 192c0 106.039-85.961 192-192 192v0c-0.127 0-0.277 0-0.427 0-105.803 0-191.573-85.77-191.573-191.573 0-0.15 0-0.3 0.001-0.45l-0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-28"]},"attrs":[{}],"properties":{"order":6992,"id":545,"name":"abstract-28","prevSize":32,"code":59675},"setIdx":0,"setId":0,"iconIdx":27},{"icon":{"paths":["M320 213.333c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667v0c58.91 0 106.667 47.756 106.667 106.667v0zM512 106.667c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667c58.91 0 106.667-47.756 106.667-106.667v0c0-58.91-47.756-106.667-106.667-106.667v0zM917.333 213.333c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667v0c58.91 0 106.667 47.756 106.667 106.667v0zM320 512c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667v0c58.91 0 106.667 47.756 106.667 106.667v0zM618.667 512c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667v0c58.91 0 106.667 47.756 106.667 106.667v0zM917.333 512c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667v0c58.91 0 106.667 47.756 106.667 106.667v0zM320 810.667c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667v0c58.91 0 106.667 47.756 106.667 106.667v0zM618.667 810.667c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667v0c58.91 0 106.667 47.756 106.667 106.667v0zM917.333 810.667c0 58.91-47.756 106.667-106.667 106.667s-106.667-47.756-106.667-106.667c0-58.91 47.756-106.667 106.667-106.667v0c58.91 0 106.667 47.756 106.667 106.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-29"]},"attrs":[{}],"properties":{"order":6993,"id":544,"name":"abstract-29","prevSize":32,"code":59676},"setIdx":0,"setId":0,"iconIdx":28},{"icon":{"paths":["M256 170.667c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0zM512 426.667c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM256 512c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0zM938.667 512c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0zM597.333 170.667c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0zM938.667 170.667c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0zM597.333 853.333c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0zM256 853.333c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0zM938.667 853.333c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-30"]},"attrs":[{}],"properties":{"order":6994,"id":543,"name":"abstract-30","prevSize":32,"code":59677},"setIdx":0,"setId":0,"iconIdx":29},{"icon":{"paths":["M512 85.333c-235.487 0.205-426.307 191.152-426.307 426.667 0 87.723 26.473 169.262 71.867 237.065l-0.973-1.544 240.213-138.667v-291.84l337.92 194.987-521.387 302.507c77.129 76.726 183.467 124.154 300.883 124.154 235.641 0 426.667-191.025 426.667-426.667s-191.025-426.667-426.667-426.667c-0.779 0-1.558 0.002-2.336 0.006l0.12-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-31"]},"attrs":[{}],"properties":{"order":6995,"id":542,"name":"abstract-31","prevSize":32,"code":59678},"setIdx":0,"setId":0,"iconIdx":30},{"icon":{"paths":["M909.227 356.267c-63.947-160.009-217.64-270.996-397.255-270.996-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c117.812 0 224.472-47.749 301.682-124.951l-0.001 0.001c77.468-76.866 125.424-183.378 125.424-301.090 0-56.28-10.962-109.999-30.869-159.14l1.018 2.843zM512 753.493l-241.493-241.493 241.493-241.493 241.493 241.493z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-32"]},"attrs":[{}],"properties":{"order":6996,"id":541,"name":"abstract-32","prevSize":32,"code":59679},"setIdx":0,"setId":0,"iconIdx":31},{"icon":{"paths":["M938.667 512c-0.004 78.548-21.232 152.138-58.263 215.346l1.090-2.013-246.187-426.667h246.187c35.941 61.196 57.17 134.785 57.173 213.332l0 0.001zM142.507 298.667l123.307 213.333 246.187-426.667c-157.090 0.004-294.35 84.903-368.403 211.32l-1.090 2.014zM142.507 725.333c75.143 128.43 212.403 213.329 369.492 213.333l0.001 0 123.307-213.333zM881.493 298.667h-492.8l123.307-213.333c157.090 0.004 294.35 84.903 368.403 211.32l1.090 2.014zM142.507 298.667c-35.937 61.196-57.162 134.786-57.162 213.333s21.225 152.137 58.253 215.347l-1.090-2.014h246.187zM758.187 512l-246.187 426.667c157.090-0.004 294.35-84.903 368.403-211.32l1.090-2.014z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-33"]},"attrs":[{}],"properties":{"order":6997,"id":540,"name":"abstract-33","prevSize":32,"code":59680},"setIdx":0,"setId":0,"iconIdx":32},{"icon":{"paths":["M512 85.333c78.548 0.004 152.138 21.232 215.346 58.263l-2.013-1.090-90.027 156.16h-246.613l-90.027-156.16c61.196-35.941 134.785-57.17 213.332-57.173l0.001-0zM938.667 512c-0.004 157.090-84.903 294.35-211.32 368.403l-2.014 1.090-90.027-156.16 122.88-213.333h180.48zM265.813 512l122.88 213.333-90.027 156.16c-128.43-75.143-213.329-212.403-213.333-369.492l-0-0.001h180.48zM758.187 469.333h177.92c-13.187-125.214-78.782-232.894-174.125-302.080l-1.235-0.853-88.32 153.6-12.373 21.333 73.387 128zM597.333 746.667l-11.947-21.333h-147.627l-11.947 21.333-88.747 154.027c51.362 23.978 111.514 37.968 174.933 37.968s123.571-13.991 177.537-39.054l-2.604 1.085zM265.813 469.333h24.747l73.387-128-12.373-21.333-88.32-153.6c-96.578 70.040-162.173 177.72-175.201 301.078l-0.159 1.856z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-34"]},"attrs":[{}],"properties":{"order":6998,"id":539,"name":"abstract-34","prevSize":32,"code":59681},"setIdx":0,"setId":0,"iconIdx":33},{"icon":{"paths":["M93.867 428.8c38.525-186.462 194.676-326.937 385.992-341.248l1.421-0.085-103.253 102.4 97.28 112.213c-65.521 11.886-119.712 52.324-150.056 107.69l-0.557 1.11-130.987 117.76zM829.44 494.507l-124.16 104.96c-29.138 63.559-86.798 109.666-156.138 122.257l-1.302 0.196 98.133 111.787-103.68 104.96c192.915-14.207 349.273-154.742 387.361-338.57l0.479-2.764zM597.333 93.867c186.462 38.525 326.937 194.676 341.248 385.992l0.085 1.421-104.107-102.827-112.64 95.573c-13.102-68.075-57.088-123.728-116.493-152.617l-1.267-0.556-109.227-128zM529.067 830.293l-112.64-128c-60.141-30.684-103.218-87.412-114.599-154.907l-0.175-1.253-111.36 100.267-104.96-103.68c14.396 192.737 154.871 348.888 338.57 386.935l2.764 0.479z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-35"]},"attrs":[{}],"properties":{"order":6999,"id":538,"name":"abstract-35","prevSize":32,"code":59682},"setIdx":0,"setId":0,"iconIdx":34},{"icon":{"paths":["M512 758.187v-246.187l213.333 123.307c42.649 25.051 70.827 70.696 70.827 122.921 0 78.469-63.611 142.080-142.080 142.080s-142.080-63.611-142.080-142.080c0-0.015 0-0.029 0-0.044l-0 0.002zM298.667 635.307l213.333-123.307-213.333-123.307c-20.484-12.070-45.129-19.2-71.44-19.2-78.704 0-142.507 63.802-142.507 142.507s63.802 142.507 142.507 142.507c26.31 0 50.955-7.13 72.108-19.563l-0.669 0.363zM512 265.813v246.187l213.333-123.307c42.649-25.051 70.827-70.696 70.827-122.921 0-78.469-63.611-142.080-142.080-142.080s-142.080 63.611-142.080 142.080c0 0.015 0 0.029 0 0.044l-0-0.002zM298.667 388.693c-42.649-25.051-70.827-70.696-70.827-122.921 0-78.469 63.611-142.080 142.080-142.080s142.080 63.611 142.080 142.080c0 0.015-0 0.029-0 0.044l0-0.002v246.187l-213.333-123.307zM725.333 635.307c20.269 11.805 44.613 18.773 70.585 18.773 78.469 0 142.080-63.611 142.080-142.080s-63.611-142.080-142.080-142.080c-25.972 0-50.316 6.968-71.264 19.138l0.68-0.364-213.333 123.307 213.333 123.307zM298.667 635.307c-42.649 25.051-70.827 70.696-70.827 122.921 0 78.469 63.611 142.080 142.080 142.080s142.080-63.611 142.080-142.080c0-0.015-0-0.029-0-0.044l0 0.002v-246.187l-213.333 123.307z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-36"]},"attrs":[{}],"properties":{"order":7000,"id":537,"name":"abstract-36","prevSize":32,"code":59683},"setIdx":0,"setId":0,"iconIdx":35},{"icon":{"paths":["M831.147 327.68v0c-0.523-117.424-95.834-212.412-213.331-212.412-38.928 0-75.422 10.427-106.839 28.64l1.024-0.548c-30.394-17.666-66.887-28.092-105.815-28.092-117.497 0-212.808 94.988-213.331 212.363l-0 0.050c-63.798 37.67-105.922 106.076-105.922 184.32s42.123 146.65 104.93 183.777l0.992 0.543c0.523 117.424 95.834 212.412 213.331 212.412 38.928 0 75.422-10.427 106.839-28.64l-1.024 0.548c30.394 17.666 66.887 28.092 105.815 28.092 117.497 0 212.808-94.988 213.331-212.363l0-0.050c63.798-37.67 105.922-106.076 105.922-184.32s-42.123-146.65-104.93-183.777l-0.992-0.543zM418.133 396.8c25.271-21.094 58.050-33.959 93.829-34.133l0.038-0c19.074 0.108 37.242 3.858 53.886 10.59l-0.979-0.35c49.177 18.959 85.17 62.038 93.751 114.343l0.116 0.857c1.421 7.070 2.343 15.301 2.556 23.708l0.004 0.186c-0.107 46.476-21.613 87.908-55.183 114.979l-0.283 0.221c-25.271 21.094-58.050 33.959-93.829 34.133l-0.038 0c-19.074-0.108-37.242-3.858-53.886-10.59l0.979 0.35c-58.193-20.833-99.078-75.501-99.078-139.718 0-47.024 21.923-88.927 56.105-116.047l0.306-0.234z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-37"]},"attrs":[{}],"properties":{"order":7001,"id":536,"name":"abstract-37","prevSize":32,"code":59684},"setIdx":0,"setId":0,"iconIdx":36},{"icon":{"paths":["M326.4 666.88l178.773-309.76 128 224.427h247.893l-226.987-395.52c-15.028-25.691-42.483-42.675-73.906-42.675-0.418 0-0.835 0.003-1.251 0.009l0.063-0.001h-197.547l-277.76 480c-6.953 12.297-11.051 27.003-11.051 42.667s4.097 30.37 11.279 43.106l-0.228-0.44 98.56 170.667h554.667c0.479 0.010 1.044 0.015 1.61 0.015 31.425 0 58.883-16.987 73.692-42.279l0.218-0.403 98.56-170.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-38"]},"attrs":[{}],"properties":{"order":7002,"id":535,"name":"abstract-38","prevSize":32,"code":59685},"setIdx":0,"setId":0,"iconIdx":37},{"icon":{"paths":["M372.48 256c-22.73-12.955-49.714-25.726-77.677-36.531l-4.243-1.442c42.072-45.59 87.858-86.504 137.294-122.732l2.653-1.854c24.453-5.053 52.596-7.999 81.409-8.106l0.084-0c29.333 0.084 57.925 3.031 85.579 8.576l-2.806-0.469c-85.573 44.102-158.881 98.345-222.206 162.471l-0.088 0.089zM512 358.4c78.232-74.272 174.48-130.34 281.476-160.954l4.817-1.179c-24.887-23.008-52.887-43.255-83.145-59.909l-2.189-1.104c-103.498 39.126-192.029 96.249-265.981 168.269l0.167-0.162c23.938 18.145 45.078 36.173 65.145 55.317l-0.292-0.277zM298.667 853.333q0 13.653 0 26.88c-34.867-19.754-64.881-42.836-91.271-69.51l-0.036-0.036c-11.388-42.529-37.637-77.662-72.714-100.287l-0.672-0.406c-16.559-30.737-29.941-66.358-38.303-103.871l-0.523-2.795c116.878 25.117 203.255 127.447 203.52 249.998l0 0.029zM453.547 420.693c-78.216-74.878-177.255-128.609-287.565-151.648l-3.849-0.672c-15.761 22.847-30.062 48.951-41.603 76.498l-1.064 2.862c111.917 17.013 209.583 68.424 284.164 142.937l-0.004-0.004c16.442-26.573 32.898-49.41 50.771-71.034l-0.851 1.060zM93.44 430.080c-5.076 24.592-8.023 52.887-8.107 81.855l-0 0.065v2.56c100.707 13.082 186.37 68.393 239.875 147.284l0.765 1.196c10.957-36.729 22.848-67.571 36.78-97.266l-1.793 4.253c-67.198-75.667-160.402-126.94-265.481-139.744l-2.039-0.202zM469.333 853.333c0.412-255.786 188.328-467.559 433.625-505.239l2.855-0.361c-12.612-30.581-26.916-56.828-43.638-81.291l0.971 1.504c-275.186 57.006-479.078 297.376-479.147 585.379l-0 0.007c0 22.613 0 44.8 3.84 66.987 25.811 7.976 56.002 13.87 87.116 16.528l1.631 0.112c-4.362-24.979-6.989-53.896-7.252-83.377l-0.002-0.25zM816.64 810.667c11.388-42.529 37.637-77.662 72.714-100.287l0.672-0.406c16.559-30.737 29.941-66.358 38.303-103.871l0.523-2.795c-116.878 25.117-203.255 127.447-203.52 249.998l-0 0.029q0 13.653 0 26.88c34.867-19.754 64.881-42.836 91.271-69.51l0.036-0.036zM640 853.333c0.162-173.343 129.512-316.425 296.952-338.165l1.714-0.182v-2.987c-0.083-29.033-3.031-57.328-8.574-84.681l0.467 2.761c-212.667 26.348-375.656 205.943-375.656 423.606 0 28.856 2.865 57.043 8.325 84.292l-0.456-2.725c31.72-3.438 60.635-9.899 88.245-19.198l-2.912 0.851c-4.394-18.772-7.305-40.605-8.090-62.979l-0.017-0.594z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-39"]},"attrs":[{}],"properties":{"order":7003,"id":534,"name":"abstract-39","prevSize":32,"code":59686},"setIdx":0,"setId":0,"iconIdx":38},{"icon":{"paths":["M677.973 640c2.971-11.785 4.681-25.317 4.693-39.246l0-0.008c0.003-0.39 0.005-0.85 0.005-1.311 0-31.002-8.566-60.003-23.46-84.765l0.415 0.743c-30.029-51.324-84.857-85.267-147.617-85.333l-0.009-0c-9.839 0.464-18.954 1.379-27.921 2.744l1.468-0.184c-170.667 21.76-287.147 172.8-374.613 319.573l353.28-613.973c9.666-16.686 27.436-27.73 47.787-27.73s38.121 11.044 47.645 27.466l0.141 0.264 12.8 22.613c82.347 146.347 152.747 319.147 105.387 479.147zM930.987 782.933l-358.4-622.080c82.347 146.347 152.747 319.147 105.387 479.147-0.062 0.83-0.097 1.797-0.097 2.773s0.035 1.944 0.104 2.902l-0.007-0.128c-3.827 14.294-8.929 26.774-15.371 38.409l0.438-0.863c-29.822 52.338-85.248 87.055-148.782 87.055-0.794 0-1.586-0.005-2.377-0.016l0.12 0.001c-0.191 0.001-0.418 0.001-0.644 0.001-39.221 0-75.289-13.5-103.81-36.107l0.347 0.266c119.893 115.2 308.48 130.133 475.307 130.133 0.073 0 0.159 0.001 0.245 0.001 30.398 0 55.040-24.642 55.040-55.040 0-10.22-2.785-19.789-7.638-27.989l0.14 0.255zM442.027 864.427h-301.227c-0.073 0-0.159 0.001-0.245 0.001-30.398 0-55.040-24.642-55.040-55.040 0-10.22 2.785-19.789 7.638-27.989l-0.14 0.255 17.92-30.72c87.467-146.773 203.093-298.667 374.613-319.573-113.92 16.213-170.667 132.693-152.32 237.227 6.613 42.366 20.218 80.432 39.694 114.727l-0.868-1.66c18.985 32.19 42.269 59.551 69.487 82.376l0.487 0.397z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-40"]},"attrs":[{}],"properties":{"order":7004,"id":533,"name":"abstract-40","prevSize":32,"code":59687},"setIdx":0,"setId":0,"iconIdx":39},{"icon":{"paths":["M929.28 245.333v0l-118.613-117.333c-11.967-12.393-28.73-20.088-47.29-20.088-7.033 0-13.809 1.105-20.162 3.151l0.465-0.129c-118.613 42.667-437.333 34.56-499.627-16.64v0l-116.053 119.040c-12.325 11.958-19.973 28.675-19.973 47.178 0 7.39 1.22 14.495 3.469 21.124l-0.136-0.463c17.721 63.037 27.908 135.429 27.908 210.2 0 5.903-0.063 11.791-0.19 17.663l0.015-0.876c0 162.133-29.867 253.867-42.667 270.507v0l116.907 117.333c11.967 12.393 28.73 20.088 47.29 20.088 7.033 0 13.809-1.105 20.162-3.151l-0.465 0.129c118.613-40.533 437.333-34.56 499.627 16.64v0l116.053-119.040c12.393-11.967 20.088-28.73 20.088-47.29 0-7.033-1.105-13.809-3.151-20.162l0.129 0.465c-40.96-117.333-34.987-436.053 16.213-498.347zM685.227 685.227c-51.854-7.638-111.711-11.999-172.587-11.999s-120.733 4.362-179.276 12.789l6.689-0.79c7.372-49.682 11.582-107.026 11.582-165.353 0-4.269-0.023-8.533-0.068-12.791l0.005 0.651c0.016-2.39 0.026-5.216 0.026-8.044 0-56.731-3.73-112.591-10.959-167.347l0.694 6.431c51.127 7.875 110.107 12.373 170.137 12.373 0.186 0 0.372-0 0.558-0l-0.029 0c0.412 0.001 0.9 0.001 1.387 0.001 60.627 0 120.203-4.498 178.413-13.18l-6.573 0.805c-7.74 52.048-12.16 112.121-12.16 173.227s4.42 121.178 12.959 179.917l-0.798-6.69z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-41"]},"attrs":[{}],"properties":{"order":7005,"id":532,"name":"abstract-41","prevSize":32,"code":59688},"setIdx":0,"setId":0,"iconIdx":40},{"icon":{"paths":["M938.667 341.333h-597.333l170.667-170.667h298.667c0.070-0 0.153-0 0.236-0 28.166 0 52.56 16.149 64.428 39.694l0.189 0.414zM150.613 813.227c12.057 23.958 36.451 40.107 64.617 40.107 0.083 0 0.166-0 0.249-0l-0.013 0h298.667l170.667-170.667h-599.467zM813.227 873.387c23.41-11.77 39.357-35.298 40.105-62.622l0.002-0.098v-298.667l-170.667-170.667v597.333zM210.773 150.613c-23.958 12.057-40.107 36.451-40.107 64.617 0 0.083 0 0.166 0 0.249l-0-0.013v298.667l170.667 170.667v-599.467zM938.667 341.333l-85.333 170.667-170.667-170.667zM341.333 682.667l-170.667-170.667-85.333 170.667zM682.667 682.667l-170.667 170.667 170.667 85.333zM341.333 341.333l170.667-170.667-170.667-85.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-42"]},"attrs":[{}],"properties":{"order":7006,"id":531,"name":"abstract-42","prevSize":32,"code":59689},"setIdx":0,"setId":0,"iconIdx":41},{"icon":{"paths":["M341.333 85.333v597.333h-256v-314.027c-0-0.027-0-0.058-0-0.090 0-18.122 7.336-34.531 19.201-46.418l-0.001 0.001zM682.667 341.333v597.333l236.8-236.8c11.864-11.886 19.2-28.295 19.2-46.417 0-0.032-0-0.063-0-0.095l0 0.005v-314.027zM938.667 341.333h-597.333v-256h314.027c0.027-0 0.058-0 0.090-0 18.122 0 34.531 7.336 46.418 19.201l-0.001-0.001zM85.333 682.667l236.8 236.8c11.886 11.864 28.295 19.2 46.417 19.2 0.032 0 0.063-0 0.095-0l-0.005 0h314.027v-256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-43"]},"attrs":[{}],"properties":{"order":7007,"id":530,"name":"abstract-43","prevSize":32,"code":59690},"setIdx":0,"setId":0,"iconIdx":42},{"icon":{"paths":["M891.733 350.72l-806.4 161.28v-208.213c0.066-28.151 20.022-51.621 46.555-57.108l0.378-0.065 747.52-149.333c3.078-0.693 6.613-1.090 10.241-1.090 26.863 0 48.64 21.777 48.64 48.64 0 0.083-0 0.167-0.001 0.25l0-0.013v148.48c-0.066 28.151-20.022 51.621-46.555 57.108l-0.378 0.065zM938.667 720.213v-208.213l-806.4 161.28c-26.911 5.552-46.867 29.023-46.933 57.166l-0 0.007v148.48c-0 0.070-0.001 0.154-0.001 0.237 0 26.863 21.777 48.64 48.64 48.64 3.628 0 7.163-0.397 10.564-1.15l-0.323 0.060 747.52-149.333c26.911-5.552 46.867-29.023 46.933-57.166l0-0.007z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-44"]},"attrs":[{}],"properties":{"order":7008,"id":529,"name":"abstract-44","prevSize":32,"code":59691},"setIdx":0,"setId":0,"iconIdx":43},{"icon":{"paths":["M341.333 938.667c-23.564 0-42.667-19.103-42.667-42.667v0-512c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 512c0 23.564-19.103 42.667-42.667 42.667v0zM213.333 597.333v-341.333c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 341.333c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0zM512 853.333c-23.564 0-42.667-19.103-42.667-42.667v0-682.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 682.667c0 23.564-19.103 42.667-42.667 42.667v0zM682.667 725.333c-23.564 0-42.667-19.103-42.667-42.667v0-469.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 469.333c0 23.564-19.103 42.667-42.667 42.667v0zM853.333 810.667c-23.564 0-42.667-19.103-42.667-42.667v0-341.333c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 341.333c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-45"]},"attrs":[{}],"properties":{"order":7009,"id":528,"name":"abstract-45","prevSize":32,"code":59692},"setIdx":0,"setId":0,"iconIdx":44},{"icon":{"paths":["M512 938.667l354.56-354.56c5.547 160.427-102.827 300.373-354.56 354.56zM822.613 414.72c-24.68-49.572-53.095-92.304-86.076-131.027l0.743 0.894-225.28 227.413v213.333zM389.973 176.64c-38.395 33.109-72.894 68.42-104.199 106.459l-1.188 1.487 227.413 227.413v-213.333zM512 85.333v213.333l122.027-122.027c-36.236-31.739-76.066-61.803-118.009-88.877l-4.018-2.429zM157.44 584.107l354.56 354.56v-213.333l-310.613-310.613c-25.021 49.338-40.917 107.173-43.908 168.398l-0.038 0.988z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-46"]},"attrs":[{}],"properties":{"order":7010,"id":527,"name":"abstract-46","prevSize":32,"code":59693},"setIdx":0,"setId":0,"iconIdx":45},{"icon":{"paths":["M228.267 529.067c13.391-22.798 37.79-37.861 65.707-37.861s52.316 15.063 65.513 37.505l0.194 0.356 64.427 110.933 64 111.36c6.551 10.995 10.423 24.245 10.423 38.4 0 41.944-34.002 75.947-75.947 75.947-0.064 0-0.129-0-0.193-0l0.010 0h-256c-41.916-0.037-75.882-34.025-75.882-75.947 0-13.981 3.778-27.080 10.369-38.332l-0.194 0.358 63.573-111.787zM924.16 751.787l-160.427-277.76-160-277.76c-13.5-22.776-37.955-37.806-65.92-37.806s-52.42 15.030-65.726 37.453l-0.194 0.353-147.627 256c31.313 8.129 56.933 28.181 72.234 54.899l0.299 0.567 64 111.36 64.427 111.36c10.072 16.992 16.024 37.454 16.024 59.307s-5.952 42.315-16.324 59.854l0.299-0.547c-3.992 6.252-8.209 11.691-12.868 16.714l0.068-0.074h346.027c41.916-0.037 75.882-34.025 75.882-75.947 0-13.981-3.778-27.080-10.369-38.332l0.194 0.358z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-47"]},"attrs":[{}],"properties":{"order":7011,"id":526,"name":"abstract-47","prevSize":32,"code":59694},"setIdx":0,"setId":0,"iconIdx":46},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 369.493c-17.673 0-32-14.327-32-32s14.327-32 32-32v0c114.050 0 206.507 92.456 206.507 206.507s-92.456 206.507-206.507 206.507v0c-17.673 0-32-14.327-32-32s14.327-32 32-32v0c78.704 0 142.507-63.802 142.507-142.507s-63.802-142.507-142.507-142.507v0zM512 841.813c-182.053-0.243-329.571-147.76-329.813-329.79l-0-0.023c0-17.673 14.327-32 32-32s32 14.327 32 32v0c0 146.805 119.009 265.813 265.813 265.813s265.813-119.009 265.813-265.813c0-146.805-119.009-265.813-265.813-265.813v0c-17.673 0-32-14.327-32-32s14.327-32 32-32v0c182.151 0 329.813 147.662 329.813 329.813s-147.662 329.813-329.813 329.813v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-48"]},"attrs":[{}],"properties":{"order":7012,"id":525,"name":"abstract-48","prevSize":32,"code":59695},"setIdx":0,"setId":0,"iconIdx":47},{"icon":{"paths":["M345.6 544h123.733v163.413c-0.241 21.73-17.913 39.253-39.678 39.253-0.001 0-0.002-0-0.002-0l-110.507 0c-129.184-0.243-233.814-105.022-233.814-234.24 0-0.15 0-0.3 0-0.451l-0 0.023c-0-0.127-0-0.277-0-0.427 0-129.217 104.63-233.997 233.79-234.24l0.023-0h111.36c0.001-0 0.001-0 0.002-0 21.765 0 39.437 17.523 39.678 39.231l0 0.023v163.413h-124.587c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM704.853 277.333h-110.933c-21.679 0-39.253 17.574-39.253 39.253h-0v163.413h128c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-128v163.413c0 21.679 17.574 39.253 39.253 39.253h110.933c129.184-0.243 233.814-105.022 233.814-234.24 0-0.15-0-0.3-0-0.451l0 0.023c0-0.127 0-0.277 0-0.427 0-129.217-104.63-233.997-233.79-234.24l-0.023-0zM469.333 480v64h85.333v-64z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract-49"]},"attrs":[{}],"properties":{"order":7013,"id":524,"name":"abstract-49","prevSize":32,"code":59696},"setIdx":0,"setId":0,"iconIdx":48},{"icon":{"paths":["M441.6 916.907l-291.84-291.84c-15.088-14.997-24.427-35.764-24.427-58.712 0-11.616 2.393-22.674 6.712-32.706l-0.206 0.538 17.493-42.667c13.253-30.271 42.744-51.138 77.165-51.626l0.062-0.001h420.693l-185.6-183.893c-13.45-13.502-21.766-32.126-21.766-52.693s8.316-39.192 21.768-52.696l-0.002 0.002 15.36-14.933c13.405-13.658 32.061-22.124 52.693-22.124s39.288 8.465 52.682 22.112l0.011 0.011 291.84 290.987c15.088 14.997 24.427 35.764 24.427 58.712 0 11.616-2.393 22.674-6.712 32.706l0.206-0.538-17.493 42.667c-13.373 30.097-42.834 50.79-77.174 51.2l-0.053 0h-420.693l185.6 185.6c13.475 13.57 21.803 32.266 21.803 52.907s-8.328 39.337-21.807 52.911l0.004-0.004-15.36 14.933c-13.457 13.197-31.91 21.342-52.265 21.342-20.78 0-39.578-8.489-53.114-22.188l-0.007-0.007z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["abstract"]},"attrs":[{}],"properties":{"order":7014,"id":523,"name":"abstract","prevSize":32,"code":59697},"setIdx":0,"setId":0,"iconIdx":49},{"icon":{"paths":["M981.333 404.053h-201.813c-77.668-2.813-139.562-66.454-139.562-144.551 0-1.232 0.015-2.46 0.046-3.684l-0.004 0.181c0.11-0.641 0.173-1.38 0.173-2.133s-0.063-1.492-0.184-2.211l0.011 0.078v-205.227zM981.333 469.333h-201.813c-112.698-3.534-202.712-95.74-202.712-208.97 0-1.534 0.017-3.064 0.049-4.591l-0.004 0.227v-210.347h-208.64c-131.855 1.675-238.099 108.954-238.099 241.048 0 1.057 0.007 2.111 0.020 3.165l-0.002-0.16v291.413c24.583-9.696 53.056-15.317 82.842-15.317 99.777 0 184.823 63.074 217.44 151.525l0.518 1.606c9.641 25.286 15.224 54.529 15.224 85.077 0 34.615-7.169 67.555-20.103 97.418l0.612-1.588h317.44c131.484-2.151 237.246-109.242 237.246-241.036 0-1.061-0.007-2.12-0.021-3.177l0.002 0.16zM213.333 631.467c-95.906 0-173.653 77.747-173.653 173.653s77.747 173.653 173.653 173.653v0c95.906 0 173.653-77.747 173.653-173.653s-77.747-173.653-173.653-173.653v0zM276.907 837.973h-34.56v32.853c0.002 0.128 0.003 0.279 0.003 0.43 0 17.202-13.945 31.147-31.147 31.147-0.151 0-0.302-0.001-0.452-0.003l0.023 0c-0.001 0-0.002 0-0.003 0-17.673 0-32-14.327-32-32 0-0.15 0.001-0.3 0.003-0.449l-0 0.023v-32.427h-32c-16.464-1.94-29.115-15.813-29.115-32.64s12.651-30.7 28.961-32.625l0.155-0.015h32v-32c-0.136-1.107-0.213-2.389-0.213-3.689 0-17.673 14.327-32 32-32s32 14.327 32 32c0 1.3-0.078 2.582-0.228 3.841l0.015-0.152v32.427h32.427c16.464 1.94 29.115 15.813 29.115 32.64s-12.651 30.7-28.961 32.625l-0.155 0.015z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-files"]},"attrs":[{}],"properties":{"order":7015,"id":522,"name":"add-files","prevSize":32,"code":59698},"setIdx":0,"setId":0,"iconIdx":50},{"icon":{"paths":["M713.387 261.12h-125.867c-0.002 0-0.005 0-0.008 0-46.67 0-86.661-28.6-103.401-69.23l-0.271-0.743-14.507-35.84c-16.715-41.261-56.417-69.858-102.812-69.973l-0.015-0h-85.333c-0.127-0-0.277-0-0.427-0-107.924 0-195.413 87.49-195.413 195.413 0 0 0 0 0 0l0 0v434.773c1.207 123.498 101.601 223.147 225.27 223.147 0.004 0 0.007-0 0.011-0l402.773 0c0.003 0 0.007 0 0.010 0 123.669 0 224.063-99.649 225.269-223.032l0.001-0.114v-229.12c0-0.127 0-0.277 0-0.427 0-124.183-100.67-224.853-224.853-224.853-0.15 0-0.3 0-0.45 0l0.023-0zM609.28 602.453h-66.133v65.28c0.008 0.258 0.012 0.561 0.012 0.865 0 16.435-13.088 29.813-29.409 30.281l-0.043 0.001c-0.004 0-0.008 0-0.012 0-16.43 0-29.806-13.081-30.28-29.396l-0.001-0.044v-67.84h-68.267c-16.731 0-30.293-13.563-30.293-30.293s13.563-30.293 30.293-30.293v0h65.707v-65.707c-0.008-0.258-0.012-0.561-0.012-0.865 0-16.435 13.088-29.813 29.409-30.281l0.043-0.001c0.51-0.032 1.106-0.050 1.707-0.050 16.259 0 29.44 13.181 29.44 29.44 0 0.017-0 0.035-0 0.052l0-0.003v67.84h68.267c16.731-0 30.293 13.563 30.293 30.293s-13.563 30.293-30.293 30.293v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-folder"]},"attrs":[{}],"properties":{"order":7016,"id":521,"name":"add-folder","prevSize":32,"code":59699},"setIdx":0,"setId":0,"iconIdx":51},{"icon":{"paths":["M386.987 682.667h-173.653c-70.692 0-128-57.308-128-128v0-341.333c0-70.692 57.308-128 128-128v0h234.24c70.692 0 128 57.308 128 128v0 64.427c-104.411 1.204-188.589 86.126-188.589 190.708 0 0.304 0.001 0.608 0.002 0.912l-0-0.047zM938.667 469.333v341.333c0 70.692-57.308 128-128 128v0h-232.96c-70.692 0-128-57.308-128-128v0-341.333c0-70.692 57.308-128 128-128v0h232.96c70.692 0 128 57.308 128 128v0zM805.547 640c0-17.673-14.327-32-32-32v0h-37.547v-37.547c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 37.547h-37.547c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h37.547v37.547c0 17.673 14.327 32 32 32s32-14.327 32-32v0-37.547h37.547c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-item"]},"attrs":[{}],"properties":{"order":7017,"id":520,"name":"add-item","prevSize":32,"code":59700},"setIdx":0,"setId":0,"iconIdx":52},{"icon":{"paths":["M352.853 155.307c-4.275-0.305-9.264-0.479-14.293-0.479s-10.018 0.174-14.96 0.516l0.667-0.037v-35.84c0-17.673 14.327-32 32-32s32 14.327 32 32v0 35.84zM699.733 155.307v-35.84c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 35.84h35.413c10.14 0.063 20.044 0.836 29.731 2.273l-1.144-0.139zM903.68 388.267v315.307c0.009 0.761 0.014 1.66 0.014 2.56 0 128.425-104.109 232.533-232.533 232.533-0.005 0-0.010-0-0.015-0l-318.292 0c-128.477-0.243-232.533-104.449-232.533-232.96 0-0 0-0 0-0l-0 0v-317.44c-0-0.017-0-0.037-0-0.057 0-118.348 88.412-216.046 202.792-230.649l1.155-0.12v40.107c0 17.673 14.327 32 32 32s32-14.327 32-32v0-42.667h247.467v42.667c0 17.673 14.327 32 32 32s32-14.327 32-32v0-40.107c115.498 14.523 203.947 112.128 203.947 230.392 0 0.153-0 0.306-0 0.458l0-0.024zM640 548.693c0.002-0.128 0.003-0.279 0.003-0.43 0-16.582-13.322-30.052-29.847-30.29l-0.022-0h-68.267v-67.84c0-0.008 0-0.018 0-0.027 0-16.495-13.372-29.867-29.867-29.867-0.45 0-0.898 0.010-1.343 0.030l0.063-0.002c-16.412 0.699-29.453 14.173-29.453 30.694 0 0.309 0.005 0.617 0.014 0.925l-0.001-0.045v65.28h-66.133c-16.731 0-30.293 13.563-30.293 30.293s13.563 30.293 30.293 30.293v0h68.267v67.84c0.476 16.359 13.851 29.44 30.281 29.44 0.004 0 0.008-0 0.013-0l-0.001 0c16.365-0.469 29.452-13.847 29.452-30.282 0-0.304-0.004-0.607-0.013-0.909l0.001 0.044v-65.707h65.707c0.258 0.008 0.561 0.012 0.865 0.012 16.435 0 29.813-13.088 30.281-29.409l0.001-0.043z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["add-notepad"]},"attrs":[{}],"properties":{"order":7018,"id":519,"name":"add-notepad","prevSize":32,"code":59701},"setIdx":0,"setId":0,"iconIdx":53},{"icon":{"paths":["M666.453 938.667h-436.907c-67.865 0-122.88-55.015-122.88-122.88h0v-607.573c0-67.865 55.015-122.88 122.88-122.88v0h436.907c67.865 0 122.88 55.015 122.88 122.88v0 607.573c0 67.865-55.015 122.88-122.88 122.88v0zM448 298.667c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM587.52 682.667c0.768 0.049 1.666 0.077 2.57 0.077 23.564 0 42.667-19.103 42.667-42.667 0-5.233-0.942-10.246-2.666-14.879l0.096 0.295c-30.862-67.529-97.822-113.608-175.544-113.608-2.336 0-4.662 0.042-6.978 0.124l0.335-0.009c-1.578-0.046-3.436-0.073-5.299-0.073-77.616 0-144.524 45.852-175.112 111.946l-0.496 1.193c-11.093 27.733 11.52 57.6 65.28 57.6zM874.667 469.333h-42.667v170.667h42.667c23.564 0 42.667-19.103 42.667-42.667v0-85.333c0-23.564-19.103-42.667-42.667-42.667v0zM874.667 213.333h-42.667v170.667h42.667c23.564 0 42.667-19.103 42.667-42.667v0-85.333c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["address-book"]},"attrs":[{}],"properties":{"order":7019,"id":518,"name":"address-book","prevSize":32,"code":59702},"setIdx":0,"setId":0,"iconIdx":54},{"icon":{"paths":["M938.667 337.493c-2.163-139.724-115.937-252.16-255.971-252.16-0.010 0-0.020 0-0.031 0l-346.452-0c-139.165 2.872-250.88 116.364-250.88 255.949 0 0.018 0 0.036 0 0.054l-0-0.003v344.747c1.925 139.909 115.793 252.587 255.977 252.587 0.008 0 0.016-0 0.024-0l346.879 0c140.095-1.687 253.013-115.648 253.013-255.983 0-0.006-0-0.012-0-0.018l0 0.001zM802.133 564.053c-0.2 15.87-13.112 28.659-29.011 28.659-4.003 0-7.817-0.811-11.286-2.277l0.19 0.071-155.733-67.84c-2.266-0.989-4.906-1.565-7.681-1.565-10.79 0-19.546 8.707-19.626 19.478l-0 0.008v107.093c-0 0.037-0 0.081-0 0.125 0 6.133 2.813 11.608 7.219 15.207l0.035 0.028 69.12 56.32c6.133 5.155 10.056 12.768 10.239 21.302l0.001 0.031v64c-1.070 14.436-13.046 25.743-27.662 25.743-5.574 0-10.765-1.645-15.112-4.475l0.107 0.065-93.44-75.947c-4.54-3.773-10.429-6.064-16.853-6.064s-12.314 2.29-16.897 6.098l0.043-0.035-94.72 75.947c-4.657 3.664-10.606 5.877-17.072 5.877-15.133 0-27.435-12.12-27.728-27.183l-0-0.027v-63.573c-0.002-0.117-0.003-0.256-0.003-0.394 0-8.528 3.791-16.171 9.78-21.335l0.036-0.031 75.093-61.013c4.441-3.627 7.254-9.103 7.254-15.235 0-0.044-0-0.088-0-0.131l0 0.007v-104.107c-0.080-10.779-8.836-19.485-19.626-19.485-2.775 0-5.415 0.576-7.807 1.614l0.127-0.049-159.573 69.547c-3.279 1.395-7.092 2.205-11.095 2.205-15.899 0-28.811-12.788-29.011-28.64l-0-0.019v-67.413c-0.005-0.201-0.008-0.438-0.008-0.675 0-11.861 7.118-22.060 17.315-26.559l0.186-0.073 197.973-85.333c6.839-3.038 11.523-9.771 11.523-17.598 0-0.113-0.001-0.226-0.003-0.339l0 0.017v-103.68c-0-0.029-0-0.063-0-0.097 0-14.597 5.864-27.825 15.366-37.456l-0.006 0.006 19.627-20.053c7.753-7.924 18.556-12.837 30.507-12.837s22.753 4.913 30.499 12.83l0.008 0.008 19.627 20.053c9.496 9.625 15.36 22.852 15.36 37.45 0 0.034-0 0.068-0 0.102l0-0.005v105.387c-0 0.014-0 0.030-0 0.046 0 7.901 4.669 14.712 11.399 17.824l0.122 0.050 194.133 85.333c10.326 4.549 17.42 14.664 17.493 26.444l0 0.009z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airplane-square"]},"attrs":[{}],"properties":{"order":7020,"id":517,"name":"airplane-square","prevSize":32,"code":59703},"setIdx":0,"setId":0,"iconIdx":55},{"icon":{"paths":["M876.373 456.533l-258.987-112.64c-9.281-4.163-15.656-13.268-15.787-23.877l-0-0.017v-140.8c0.011-0.459 0.017-1 0.017-1.543 0-19.379-7.83-36.93-20.5-49.66l0.003 0.003-26.453-25.6c-10.308-10.515-24.66-17.032-40.533-17.032s-30.225 6.518-40.524 17.023l-0.009 0.009-25.6 25.6c-13.167 12.806-21.337 30.693-21.337 50.487 0 0.251 0.001 0.501 0.004 0.751l-0-0.038v138.24c-0.075 10.42-6.066 19.423-14.779 23.823l-0.154 0.070-264.107 115.2c-13.432 6.048-22.614 19.316-22.614 34.729 0 0.091 0 0.181 0.001 0.272l-0-0.014v90.027c-0.001 0.077-0.001 0.168-0.001 0.259 0 20.972 17.001 37.973 37.973 37.973 5.56 0 10.841-1.195 15.6-3.342l-0.239 0.097 213.333-92.587c3.135-1.444 6.803-2.286 10.667-2.286 14.374 0 26.027 11.653 26.027 26.027 0 0.054-0 0.108-0 0.161l0-0.008v138.667c0.001 0.097 0.002 0.211 0.002 0.325 0 8.158-3.816 15.425-9.761 20.113l-0.054 0.041-100.693 81.493c-8.271 6.858-13.534 17.096-13.653 28.566l-0 0.020v85.333c0.028 20.244 16.445 36.645 36.693 36.645 8.952 0 17.155-3.206 23.525-8.532l-0.058 0.047 123.733-101.12c6.114-5.003 14.010-8.035 22.613-8.035s16.5 3.032 22.677 8.085l-0.064-0.051 124.16 101.12c6.241 5.068 14.283 8.137 23.042 8.137 20.126 0 36.467-16.203 36.691-36.276l0-0.021v-85.333c-0.119-11.491-5.382-21.728-13.591-28.537l-0.062-0.050-92.16-75.52c-5.989-4.565-9.815-11.703-9.815-19.735 0-0.112 0.001-0.224 0.002-0.336l-0 0.017v-142.507c0.040-14.579 11.868-26.382 26.453-26.382 3.697 0 7.217 0.758 10.412 2.128l-0.172-0.066 207.36 90.453c4.52 2.051 9.801 3.246 15.361 3.246 20.972 0 37.973-17.001 37.973-37.973 0-0.091-0-0.182-0.001-0.273l0 0.014v-90.027c0.001-0.077 0.001-0.167 0.001-0.258 0-15.413-9.182-28.681-22.375-34.632l-0.239-0.097z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airplane"]},"attrs":[{}],"properties":{"order":7021,"id":516,"name":"airplane","prevSize":32,"code":59704},"setIdx":0,"setId":0,"iconIdx":56},{"icon":{"paths":["M737.28 399.787h180.053v354.56c0 0.127 0 0.277 0 0.427 0 101.561-82.332 183.893-183.893 183.893-0.15 0-0.3-0-0.45-0.001l0.023 0h-442.027c-0.127 0-0.277 0-0.427 0-101.561 0-183.893-82.332-183.893-183.893 0-0.15 0-0.3 0.001-0.45l-0 0.023v-354.56h180.053c14.257 40.798 52.411 69.541 97.279 69.547l256.001 0c44.869-0.005 83.023-28.749 97.060-68.826l0.22-0.721zM733.013 85.333h-442.027c-0.127-0-0.277-0-0.427-0-101.561 0-183.893 82.332-183.893 183.893 0 0.15 0 0.3 0.001 0.45l-0-0.023v66.133h180.053c13.69-41.51 52.008-70.99 97.249-71.253l0.031-0h256c45.445 0.070 83.972 29.609 97.499 70.527l0.208 0.726h179.627v-66.133c0-0.127 0-0.277 0-0.427 0-101.561-82.332-183.893-183.893-183.893-0.15 0-0.3 0-0.45 0.001l0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["airpod"]},"attrs":[{}],"properties":{"order":7022,"id":515,"name":"airpod","prevSize":32,"code":59705},"setIdx":0,"setId":0,"iconIdx":57},{"icon":{"paths":["M725.333 472.32v250.027c-0.242 48.83-39.882 88.32-88.746 88.32-0 0-0.001-0-0.001-0l-249.173 0c-0 0-0.001 0-0.001 0-48.863 0-88.503-39.49-88.746-88.297l-0-0.023v-250.027c0.242-48.83 39.882-88.32 88.746-88.32 0 0 0.001 0 0.001 0l249.173-0c0-0 0.001-0 0.001-0 48.863 0 88.503 39.49 88.746 88.297l0 0.023zM213.333 668.16v-170.667c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 170.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0zM387.413 810.667v0 85.333c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-85.333zM636.587 810.667h-81.92v85.333c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-85.333zM896 668.16v-170.667c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 170.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0zM590.080 323.84c0.409 0.008 0.891 0.012 1.375 0.012 41.305 0 75.036-32.427 77.124-73.213l0.008-0.186c-1.427-91.511-75.944-165.147-167.661-165.147-1.057 0-2.112 0.010-3.164 0.029l0.158-0.002c-0.894-0.017-1.949-0.027-3.006-0.027-91.717 0-166.234 73.636-167.659 165.013l-0.002 0.134c2.096 40.972 35.827 73.399 77.132 73.399 0.483 0 0.966-0.004 1.447-0.013l-0.072 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["android"]},"attrs":[{}],"properties":{"order":7023,"id":514,"name":"android","prevSize":32,"code":59706},"setIdx":0,"setId":0,"iconIdx":58},{"icon":{"paths":["M507.733 345.6l85.333 178.347h-166.4zM876.8 328.96l-32 364.8c-4.585 47.804-31.756 88.406-70.582 111.418l-0.672 0.368-193.28 113.493c-20.929 12.291-46.097 19.55-72.96 19.55s-52.031-7.259-73.649-19.922l0.689 0.373-193.707-113.493c-38.939-23.694-65.61-64.22-69.931-111.216l-0.042-0.571-32.853-364.8c-0.386-3.955-0.607-8.55-0.607-13.196 0-61.073 38.077-113.253 91.786-134.096l0.981-0.335 225.707-85.333c15.34-5.885 33.085-9.293 51.627-9.293s36.286 3.408 52.643 9.633l-1.017-0.34 225.707 85.333c54.695 21.602 92.686 74.004 92.686 135.28 0 4.346-0.191 8.648-0.565 12.897l0.039-0.55zM735.573 676.267l-199.253-420.267c-4.481-10.894-15.012-18.424-27.301-18.424-0.753 0-1.499 0.028-2.237 0.084l0.098-0.006c-0.001-0-0.002-0-0.003-0-12.728 0-23.673 7.635-28.505 18.574l-0.079 0.199-130.987 287.147-60.587 133.12c-1.847 3.921-2.925 8.517-2.925 13.365 0 13.019 7.775 24.223 18.935 29.22l0.203 0.081c3.711 1.886 8.091 2.991 12.73 2.991 0.175 0 0.349-0.002 0.523-0.005l-0.026 0c12.83-0.052 23.873-7.646 28.931-18.575l0.082-0.198 52.48-115.2h225.28l55.040 115.627c4.638 12.32 16.325 20.926 30.023 20.926 17.673 0 32-14.327 32-32 0-5.986-1.643-11.587-4.504-16.379l0.081 0.146z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["angular"]},"attrs":[{}],"properties":{"order":7024,"id":513,"name":"angular","prevSize":32,"code":59707},"setIdx":0,"setId":0,"iconIdx":59},{"icon":{"paths":["M652.8 217.6c-23.12 29.663-54.804 51.675-91.317 62.4l-1.27 0.32c-2.696 0.845-5.796 1.332-9.010 1.332-17.202 0-31.147-13.945-31.147-31.147 0-0.619 0.018-1.233 0.054-1.842l-0.004 0.084c4.665-38.392 20.004-72.532 42.923-100.158l-0.256 0.318c23.14-27.437 52.919-48.562 86.892-60.983l1.428-0.457c3.414-1.377 7.373-2.176 11.518-2.176 17.437 0 31.573 14.136 31.573 31.573 0 1.823-0.155 3.611-0.451 5.349l0.026-0.187c-6.246 36.698-21.327 69.093-42.978 95.973l0.311-0.399zM801.28 430.933c7.988-7.763 12.945-18.608 12.945-30.612 0-13.974-6.718-26.38-17.101-34.162l-0.111-0.079c-28.391-23.46-64.152-38.952-103.349-42.61l-0.758-0.057c-58.027-3.84-104.96 34.133-160.853 34.133s-90.453-34.133-152.32-34.133c-71.181 4.586-132.119 44.517-165.871 102.273l-0.529 0.98c-58.88 88.747-48.64 256 44.8 401.92 33.707 51.627 78.507 110.080 137.387 110.080 52.053 0 66.56-33.707 137.387-33.707s85.333 34.133 136.107 33.707c58.88 0 105.813-64.853 139.52-116.48 11.789-17.183 23.427-37.024 33.679-57.675l1.308-2.912c2.274-5.049 3.599-10.946 3.599-17.151 0-14.906-7.644-28.027-19.225-35.656l-0.16-0.099c-49.044-32.312-80.966-87.135-80.966-149.414 0-50.371 20.882-95.864 54.461-128.296l0.052-0.050z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["apple"]},"attrs":[{}],"properties":{"order":7025,"id":512,"name":"apple","prevSize":32,"code":59708},"setIdx":0,"setId":0,"iconIdx":60},{"icon":{"paths":["M692.907 78.080h-361.813c-104.763 0.242-189.625 85.104-189.867 189.844l-0 0.023v601.173c0.351 42.148 34.6 76.179 76.797 76.179 13.967 0 27.062-3.728 38.347-10.244l-0.371 0.197 217.6-124.587c11.025-6.429 24.269-10.224 38.4-10.224s27.375 3.795 38.769 10.422l-0.369-0.198 217.6 124.587c11.016 6.469 24.262 10.29 38.401 10.29 42.283 0 76.585-34.17 76.799-76.403l0-0.020v-601.173c-0.243-104.913-85.347-189.867-190.293-189.867-0 0-0 0-0.001 0l0-0zM666.453 396.8l-170.667 170.667c-5.875 5.648-13.812 9.189-22.575 9.386l-0.038 0.001c-8.483-0.028-16.164-3.444-21.764-8.964l0.004 0.004-67.413-64.427c-4.212-5.367-6.756-12.219-6.756-19.665 0-17.673 14.327-32 32-32 6.478 0 12.506 1.925 17.543 5.233l-0.121-0.075 44.8 42.667 149.333-148.053c5.846-8.439 15.479-13.896 26.386-13.896 17.673 0 32 14.327 32 32 0 11.668-6.245 21.877-15.574 27.468l-0.145 0.081z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive-tick"]},"attrs":[{}],"properties":{"order":7026,"id":511,"name":"archive-tick","prevSize":32,"code":59709},"setIdx":0,"setId":0,"iconIdx":61},{"icon":{"paths":["M829.013 430.080h-634.027c-0 0-0.001 0-0.001 0-60.56 0-109.653-49.093-109.653-109.653 0-0.15 0-0.3 0.001-0.45l-0 0.023v-128c1.666-59.261 50.103-106.667 109.613-106.667 0.014 0 0.029 0 0.043 0l634.024-0c0.006-0 0.013-0 0.021-0 59.81 0 108.435 47.885 109.631 107.408l0.002 0.112v128c-0.242 60.376-49.243 109.227-109.653 109.227-0 0-0.001-0-0.001-0l-0-0zM829.013 430.080v0zM831.573 493.653v350.293c-0 53.491-43.363 96.853-96.853 96.853l0 0h-445.44c-53.491-0-96.853-43.363-96.853-96.853v0-350.293h640zM640 643.413c0-17.673-14.327-32-32-32v0h-154.88c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h153.173c0.383 0.016 0.831 0.025 1.282 0.025 17.768 0 32.198-14.29 32.424-32.004l0-0.021z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["archive"]},"attrs":[{}],"properties":{"order":7027,"id":510,"name":"archive","prevSize":32,"code":59710},"setIdx":0,"setId":0,"iconIdx":62},{"icon":{"paths":["M758.187 141.653h-368.213c-101.033 1.907-182.205 84.259-182.205 185.569 0 0.911 0.007 1.821 0.020 2.728l-0.002-0.137v213.333l-66.56-69.12c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 122.88 128c5.899 6.064 14.137 9.826 23.253 9.826s17.355-3.762 23.246-9.819l0.007-0.007 122.88-128c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0-72.96 73.813v-218.027c-0.008-0.515-0.012-1.124-0.012-1.733 0-66.733 53.381-120.999 119.773-122.425l0.133-0.002h368.213c66.71 1.192 120.332 55.552 120.332 122.435 0 0.606-0.004 1.212-0.013 1.816l0.001-0.091v380.16c0.008 0.511 0.012 1.114 0.012 1.718 0 66.798-53.671 121.060-120.242 122.014l-0.090 0.001h-368.213c-51.063-0.324-94.524-32.52-111.514-77.68l-0.273-0.826c-4.458-11.818-15.673-20.070-28.815-20.070-4.065 0-7.946 0.79-11.498 2.224l0.206-0.074c-11.883 4.988-20.077 16.529-20.077 29.983 0 4.582 0.95 8.942 2.665 12.894l-0.081-0.21c26.158 70.057 92.508 119.040 170.298 119.040 0.13 0 0.259-0 0.389-0l-0.020 0h368.213c101.169-1.433 182.631-83.781 182.631-185.156 0-0.906-0.007-1.811-0.019-2.714l0.002 0.137v-381.44c0.011-0.764 0.018-1.665 0.018-2.568 0-101.91-82.136-184.637-183.82-185.592l-0.091-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-circle-left"]},"attrs":[{}],"properties":{"order":7028,"id":509,"name":"arrow-circle-left","prevSize":32,"code":59711},"setIdx":0,"setId":0,"iconIdx":63},{"icon":{"paths":["M886.613 474.027l-66.56 69.973v-213.333c0.021-1.040 0.033-2.266 0.033-3.495 0-100.565-79.982-182.449-179.805-185.511l-0.282-0.007h-370.347c-100.986 1.667-182.211 83.923-182.211 185.15 0 1.058 0.009 2.115 0.027 3.169l-0.002-0.159v380.16c-0.001 0.261-0.002 0.569-0.002 0.877 0 101.219 81.212 183.47 182.031 185.147l0.157 0.002h370.347c0.11 0 0.239 0 0.369 0 77.79 0 144.14-48.983 169.887-117.789l0.411-1.252c1.633-3.742 2.584-8.102 2.584-12.684 0-13.454-8.194-24.995-19.863-29.903l-0.213-0.080c-3.345-1.361-7.226-2.15-11.292-2.15-13.142 0-24.357 8.253-28.745 19.859l-0.070 0.211c-16.451 47.625-60.8 81.263-113.039 81.493l-0.028 0h-370.347c-66.661-0.955-120.332-55.217-120.332-122.015 0-0.604 0.004-1.207 0.013-1.81l-0.001 0.091v-380.16c-0.008-0.513-0.012-1.118-0.012-1.725 0-66.883 53.622-121.242 120.22-122.433l0.112-0.002h370.347c66.524 1.428 119.906 55.694 119.906 122.427 0 0.609-0.004 1.218-0.013 1.825l0.001-0.092v218.027l-70.4-73.813c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 122.88 128c5.899 6.064 14.137 9.826 23.253 9.826s17.355-3.762 23.246-9.819l0.007-0.007 122.88-128c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0c-5.914-7.327-14.894-11.975-24.96-11.975s-19.046 4.648-24.912 11.914l-0.048 0.061z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-circle-right"]},"attrs":[{}],"properties":{"order":7029,"id":508,"name":"arrow-circle-right","prevSize":32,"code":59712},"setIdx":0,"setId":0,"iconIdx":64},{"icon":{"paths":["M787.2 200.96h-179.2c-17.673 0-32 14.327-32 32s14.327 32 32 32v0 0h103.253l-446.72 451.413v-104.533c0-0.001 0-0.002 0-0.003 0-17.759-14.276-32.183-31.977-32.424l-0.023-0c-0.525-0.033-1.139-0.051-1.758-0.051-16.731 0-30.293 13.563-30.293 30.293 0 0.618 0.019 1.232 0.055 1.842l-0.004-0.084-2.133 179.2c0.082 8.956 3.644 17.064 9.397 23.051l-0.011-0.011c5.786 5.793 13.78 9.379 22.612 9.387l3.842 0 175.787-2.133c0.003 0 0.007 0 0.012 0 17.437 0 31.573-14.136 31.573-31.573 0-0.3-0.004-0.599-0.013-0.897l0.001 0.044c-0.241-17.489-14.474-31.573-31.997-31.573-0.001 0-0.002 0-0.003 0l-97.707-0 442.88-443.307v98.56c-0 0.003-0 0.007-0 0.011 0 17.609 14.036 31.939 31.529 32.414l0.044 0.001c17.577-0.237 31.763-14.423 32-31.977l0-0.023v-179.2c0.024-0.471 0.037-1.022 0.037-1.577 0-8.181-2.914-15.681-7.762-21.519l0.045 0.055c-6.231-5.571-14.412-9.077-23.404-9.385l-0.062-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-diagonal"]},"attrs":[{}],"properties":{"order":7030,"id":507,"name":"arrow-diagonal","prevSize":32,"code":59713},"setIdx":0,"setId":0,"iconIdx":65},{"icon":{"paths":["M764.587 776.533c0 23.564-19.103 42.667-42.667 42.667v0h-358.4c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h256l-285.867-285.44c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002 285.44 285.013v-256c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-left"]},"attrs":[{}],"properties":{"order":7031,"id":506,"name":"arrow-down-left","prevSize":32,"code":59714},"setIdx":0,"setId":0,"iconIdx":66},{"icon":{"paths":["M901.547 480c-17.538 0.476-31.573 14.807-31.573 32.415 0 0.004 0 0.008 0 0.012l-0-0.001v92.587l-229.973-221.013c-5.761-4.738-13.212-7.61-21.333-7.61s-15.572 2.872-21.392 7.657l0.059-0.047-166.4 154.88-264.96-261.12c-6.084-6.008-14.449-9.719-23.68-9.719s-17.596 3.711-23.683 9.723l0.003-0.003c-5.909 6.128-9.55 14.479-9.55 23.68s3.641 17.552 9.56 23.69l-0.010-0.010 288 283.733c6.036 5.76 14.231 9.305 23.253 9.305s17.217-3.545 23.267-9.318l-0.013 0.013 164.693-157.44 220.16 213.333h-121.173c-17.267 0.842-31.116 14.395-32.42 31.458l-0.007 0.116c-0.002 0.128-0.003 0.278-0.003 0.429 0 17.524 14.086 31.758 31.554 31.997l186.903 2.134c0.001 0 0.002 0 0.003 0 17.673 0 32-14.327 32-32 0-0.15-0.001-0.3-0.003-0.449l0 0.023v-186.88c-0.933-17.631-15.456-31.573-33.236-31.573-0.015 0-0.031 0-0.046 0l0.002-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-refraction"]},"attrs":[{}],"properties":{"order":7032,"id":505,"name":"arrow-down-refraction","prevSize":32,"code":59715},"setIdx":0,"setId":0,"iconIdx":67},{"icon":{"paths":["M743.253 755.2c-2.56 19.666-19.208 34.698-39.366 34.698-1.162 0-2.312-0.050-3.449-0.148l0.148 0.010h-359.253c-5.85-0.139-11.404-1.222-16.575-3.102l0.362 0.115c-9.654-3.297-17.428-9.964-22.084-18.566l-0.103-0.208c-2.263-3.663-3.788-8.012-4.256-12.673l-0.010-0.127v-289.28c2.344-19.646 18.906-34.732 38.992-34.732 1.294 0 2.573 0.063 3.835 0.185l-0.16-0.013c1.101-0.11 2.381-0.172 3.675-0.172 20.086 0 36.648 15.086 38.974 34.546l0.018 0.186v206.080l285.44-230.4c8.24-6.357 18.713-10.19 30.080-10.19s21.84 3.832 30.195 10.275l-0.115-0.086c7.624 5.483 12.53 14.328 12.53 24.32s-4.906 18.837-12.441 24.259l-0.089 0.061-285.013 230.4h256c1.101-0.11 2.381-0.172 3.675-0.172 20.086 0 36.648 15.086 38.974 34.546l0.018 0.186z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down-right"]},"attrs":[{}],"properties":{"order":7033,"id":504,"name":"arrow-down-right","prevSize":32,"code":59716},"setIdx":0,"setId":0,"iconIdx":68},{"icon":{"paths":["M733.013 484.267l-178.347 180.48v-403.627c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 403.627l-182.187-180.48c-7.753-7.753-18.463-12.548-30.293-12.548-23.661 0-42.841 19.181-42.841 42.841 0 11.83 4.795 22.541 12.548 30.293l0 0 253.44 253.013c3.804 3.896 8.336 7.062 13.38 9.279l0.274 0.107c5.128 2.166 11.091 3.424 17.347 3.424 0.351 0 0.702-0.004 1.051-0.012l-0.052 0.001c0.155 0.002 0.339 0.003 0.523 0.003 5.649 0 11.042-1.098 15.977-3.092l-0.286 0.102c5.317-2.325 9.849-5.491 13.645-9.378l0.008-0.008 253.44-253.013c7.753-7.753 12.548-18.463 12.548-30.293 0-23.661-19.181-42.841-42.841-42.841-11.83 0-22.541 4.795-30.293 12.548l-0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-down"]},"attrs":[{}],"properties":{"order":7034,"id":503,"name":"arrow-down","prevSize":32,"code":59717},"setIdx":0,"setId":0,"iconIdx":69},{"icon":{"paths":["M763.307 469.333h-403.627l180.48-180.48c4.464-6.637 7.124-14.81 7.124-23.605 0-23.564-19.103-42.667-42.667-42.667-9.226 0-17.768 2.928-24.748 7.907l0.13-0.088-253.44 253.44c-7.546 7.161-12.47 17.022-13.219 28.029l-0.007 0.131c0.012 6.014 1.266 11.732 3.52 16.916l-0.107-0.276c2.2 5.299 5.227 9.831 8.968 13.662l-0.008-0.008 253.44 253.44c7.715 7.662 18.344 12.397 30.080 12.397 23.577 0 42.691-19.113 42.691-42.691 0-11.842-4.821-22.557-12.608-30.291l-0.002-0.002-179.627-180.48h403.627c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-left"]},"attrs":[{}],"properties":{"order":7035,"id":502,"name":"arrow-left","prevSize":32,"code":59718},"setIdx":0,"setId":0,"iconIdx":70},{"icon":{"paths":["M930.56 243.627c5.585 5.878 9.021 13.844 9.021 22.613s-3.436 16.736-9.034 22.627l0.013-0.014-113.067 116.907c-5.516 5.711-13.211 9.287-21.742 9.386l-0.018 0c-8.531-0.198-16.195-3.75-21.757-9.383l-0.003-0.003c-5.585-5.878-9.021-13.844-9.021-22.613s3.436-16.736 9.034-22.627l-0.013 0.014 55.893-58.453h-113.493l-469.333 482.133c-5.459 5.785-13.179 9.387-21.739 9.387-0.007 0-0.015-0-0.022-0l-108.799 0c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h96.853l209.493-217.6-209.493-216.32h-96.853c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h108.373c0.006-0 0.014-0 0.021-0 8.561 0 16.28 3.602 21.725 9.372l0.014 0.015 220.16 228.267 213.333-221.013c5.732-5.624 13.525-9.165 22.144-9.386l0.042-0.001h132.267l-56.32-62.72c-5.585-5.878-9.021-13.844-9.021-22.613s3.436-16.736 9.034-22.627l-0.013 0.014c5.473-5.43 13.011-8.786 21.333-8.786s15.86 3.356 21.335 8.788l-0.002-0.002zM820.907 618.24c-5.473-5.43-13.011-8.786-21.333-8.786s-15.86 3.356-21.335 8.788l0.002-0.002c-5.585 5.878-9.021 13.844-9.021 22.613s3.436 16.736 9.034 22.627l-0.013-0.014 56.32 58.453h-101.973l-106.667-109.653c-5.473-5.43-13.011-8.786-21.333-8.786s-15.86 3.356-21.335 8.788l0.002-0.002c-5.682 5.835-9.186 13.815-9.186 22.613s3.504 16.778 9.193 22.62l-0.007-0.007 115.627 119.040c5.516 5.711 13.211 9.287 21.742 9.386l0.018 0h113.493l-59.733 61.867c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.321 5.78 12.924 9.389 21.37 9.389 0.137 0 0.274-0.001 0.411-0.003l-0.021 0c0.006 0 0.014 0 0.021 0 8.561 0 16.28-3.602 21.725-9.372l0.014-0.015 112.64-116.907c5.585-5.878 9.021-13.844 9.021-22.613s-3.436-16.736-9.034-22.627l0.013 0.014z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-mix"]},"attrs":[{}],"properties":{"order":7036,"id":501,"name":"arrow-mix","prevSize":32,"code":59719},"setIdx":0,"setId":0,"iconIdx":71},{"icon":{"paths":["M938.667 733.44c0 0.001 0 0.002 0 0.003 0 17.523-14.085 31.757-31.551 31.997l-0.023 0-713.813 2.56 68.693 73.387c5.682 5.835 9.186 13.815 9.186 22.613s-3.504 16.778-9.193 22.62l0.007-0.007c-5.57 5.23-13.068 8.464-21.32 8.533l-0.014 0c-0.573 0.036-1.243 0.056-1.918 0.056-10.202 0-19.318-4.65-25.344-11.947l-0.045-0.056-118.187-128c-5.057-5.635-8.149-13.123-8.149-21.333s3.092-15.698 8.175-21.363l-0.026 0.030 118.187-115.2c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.236 5.559 8.453 13.071 8.453 21.333s-3.217 15.774-8.468 21.349l0.015-0.016-61.013 62.293h709.12c0.003-0 0.007-0 0.011-0 17.373 0 31.513 13.845 31.988 31.103l0.001 0.044zM810.667 186.027c-5.518-5.331-13.042-8.616-21.333-8.616s-15.816 3.285-21.342 8.624l0.009-0.008c-5.057 5.635-8.149 13.123-8.149 21.333s3.092 15.698 8.175 21.363l-0.026-0.030 63.147 64h-711.68c-16.014 1.912-28.311 15.413-28.311 31.787s12.297 29.874 28.159 31.772l0.152 0.015h715.093l-63.573 64c-5.656 5.767-9.147 13.676-9.147 22.4s3.491 16.633 9.152 22.405l-0.005-0.005c5.526 6.009 13.413 9.773 22.179 9.813l0.007 0c1.215 0.175 2.618 0.275 4.044 0.275 6.668 0 12.826-2.185 17.796-5.878l-0.080 0.057 114.347-114.773c5.813-5.795 9.41-13.81 9.41-22.665 0-0.432-0.009-0.862-0.026-1.29l0.002 0.061c-0.082-8.956-3.644-17.064-9.397-23.051l0.011 0.011z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-right-left"]},"attrs":[{}],"properties":{"order":7037,"id":500,"name":"arrow-right-left","prevSize":32,"code":59720},"setIdx":0,"setId":0,"iconIdx":72},{"icon":{"paths":["M802.56 530.347c2.222-4.828 3.518-10.476 3.518-16.427s-1.296-11.598-3.621-16.677l0.103 0.25c-2.2-5.299-5.227-9.831-8.968-13.662l0.008 0.008-253.44-253.44c-7.412-6.377-17.129-10.259-27.753-10.259-23.564 0-42.667 19.103-42.667 42.667 0 10.624 3.883 20.341 10.307 27.809l-0.047-0.056 180.48 178.773h-404.48c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h403.627l-180.48 180.48c-7.789 7.736-12.611 18.452-12.611 30.293 0 23.577 19.113 42.691 42.691 42.691 11.736 0 22.365-4.735 30.082-12.4l-0.002 0.002 253.44-253.44c3.928-3.329 7.202-7.284 9.703-11.732l0.111-0.214z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-right"]},"attrs":[{}],"properties":{"order":7038,"id":499,"name":"arrow-right","prevSize":32,"code":59721},"setIdx":0,"setId":0,"iconIdx":73},{"icon":{"paths":["M795.307 444.587v0c17.673 0 32-14.327 32-32v0l2.133-179.2c-0.008-8.833-3.594-16.828-9.386-22.613l-0-0c-5.182-5.814-12.691-9.457-21.052-9.457-0.7 0-1.393 0.026-2.080 0.076l0.092-0.005h-179.2c-0.003-0-0.007-0-0.012-0-17.437 0-31.573 14.136-31.573 31.573 0 0.3 0.004 0.599 0.013 0.897l-0.001-0.044c0.241 17.489 14.474 31.573 31.997 31.573 0.001 0 0.002-0 0.003-0l90.453 0-196.693 197.973-195.84-197.12h89.6c0.001 0 0.002 0 0.003 0 17.523 0 31.757-14.085 31.997-31.551l0-0.023c0.007-0.254 0.012-0.553 0.012-0.853 0-17.437-14.136-31.573-31.573-31.573-0.004 0-0.008 0-0.012 0l-179.199-0c-0.381-0.017-0.827-0.027-1.275-0.027-8.574 0-16.304 3.613-21.751 9.399l-0.014 0.015c-5.742 5.976-9.305 14.084-9.387 23.024l-0 0.016 2.133 179.2c0 17.673 14.327 32 32 32v0 0c17.724-0.241 32-14.665 32-32.424 0-0.001-0-0.002-0-0.003l0 0-1.28-114.773 209.92 210.347-206.080 205.653v-102.827c0.002-0.128 0.003-0.278 0.003-0.429 0-17.524-14.086-31.758-31.554-31.997l-0.023-0c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023v179.2c0.082 8.956 3.644 17.064 9.397 23.051l-0.011-0.011c5.786 5.793 13.78 9.379 22.612 9.387l0.002 0 179.2-2.133c0.003 0 0.007 0 0.012 0 17.437 0 31.573-14.136 31.573-31.573 0-0.3-0.004-0.599-0.013-0.897l0.001 0.044c-0.476-17.538-14.807-31.573-32.415-31.573-0.004 0-0.008 0-0.012 0l-98.986-0 200.96-202.24 202.667 203.947h-100.267c-17.576 0.452-31.736 14.463-32.425 31.936l-0.002 0.064c-0.002 0.127-0.003 0.277-0.003 0.427 0 17.437 14.136 31.573 31.573 31.573 0.001 0 0.002-0 0.003-0l-0 0 179.2 2.133c8.833-0.008 16.828-3.594 22.613-9.386l0-0c5.742-5.976 9.305-14.084 9.387-23.024l0-0.016v-179.2c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 101.547l-203.093-204.373 206.933-208.213v111.36c0.66 16.782 13.979 30.25 30.639 31.143l0.081 0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-two-diagonals"]},"attrs":[{}],"properties":{"order":7039,"id":498,"name":"arrow-two-diagonals","prevSize":32,"code":59722},"setIdx":0,"setId":0,"iconIdx":74},{"icon":{"paths":["M853.333 787.2c0.020 0.417 0.031 0.907 0.031 1.399 0 8.803-3.603 16.765-9.414 22.491l-0.004 0.004-122.027 119.040c-5.318 5.757-12.906 9.35-21.333 9.35s-16.015-3.593-21.315-9.33l-0.018-0.020-110.080-116.48c-5.585-5.878-9.021-13.844-9.021-22.613s3.436-16.736 9.034-22.627l-0.013 0.014c5.259-5.877 12.866-9.558 21.333-9.558s16.075 3.681 21.309 9.531l0.024 0.027 58.453 61.44v-711.68c-0.136-1.077-0.213-2.324-0.213-3.589 0-16.731 13.563-30.293 30.293-30.293s30.293 13.563 30.293 30.293c0 1.265-0.078 2.511-0.228 3.736l0.015-0.147v715.947l69.973-69.12c5.318-5.757 12.906-9.35 21.333-9.35s16.015 3.593 21.315 9.33l0.018 0.020c6.088 5.522 9.974 13.376 10.239 22.14l0.001 0.047zM341.333 94.72c-5.325-5.821-12.954-9.458-21.433-9.458-0.716 0-1.425 0.026-2.128 0.077l0.094-0.005c-8.549 0.099-16.244 3.676-21.751 9.378l-0.009 0.009-115.627 120.747c-4.972 5.669-8.006 13.147-8.006 21.333s3.033 15.664 8.038 21.37l-0.032-0.037c5.425 5.531 12.977 8.96 21.329 8.96 0.002 0 0.003-0 0.005-0l-0 0c8.432-0.010 16.020-3.616 21.315-9.366l0.019-0.020 61.013-61.44v711.253c0 16.731 13.563 30.293 30.293 30.293s30.293-13.563 30.293-30.293v0-717.653l60.587 63.573c5.374 5.643 12.944 9.152 21.333 9.152s15.959-3.509 21.322-9.14l0.011-0.012c5.057-5.635 8.149-13.123 8.149-21.333s-3.092-15.698-8.175-21.363l0.026 0.030z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-down"]},"attrs":[{}],"properties":{"order":7040,"id":497,"name":"arrow-up-down","prevSize":32,"code":59723},"setIdx":0,"setId":0,"iconIdx":75},{"icon":{"paths":["M733.867 332.8c0-23.564-19.103-42.667-42.667-42.667v0h-358.4c-5.873 0.073-11.435 1.322-16.489 3.52l0.275-0.107c-10.46 4.422-18.618 12.58-22.935 22.76l-0.105 0.28c-2.092 4.778-3.34 10.34-3.413 16.186l-0 0.027v358.4c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-256l285.44 285.013c7.736 7.789 18.452 12.611 30.293 12.611 23.577 0 42.691-19.113 42.691-42.691 0-11.736-4.735-22.365-12.4-30.082l0.002 0.002-285.44-284.587h256c23.194-0.479 41.813-19.394 41.813-42.658 0-0.003-0-0.006-0-0.009l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-left"]},"attrs":[{}],"properties":{"order":7041,"id":496,"name":"arrow-up-left","prevSize":32,"code":59724},"setIdx":0,"setId":0,"iconIdx":76},{"icon":{"paths":["M907.093 271.787h-189.44c-17.49 0.239-31.576 14.473-31.576 31.997 0 0.151 0.001 0.302 0.003 0.452l-0-0.023c-0.008 0.269-0.013 0.584-0.013 0.902 0 16.966 13.754 30.72 30.72 30.72 0.605 0 1.206-0.017 1.802-0.052l-0.082 0.004h101.973l-217.6 213.333-166.827-159.573c-6.016-5.983-14.309-9.682-23.467-9.682s-17.451 3.699-23.468 9.683l0.001-0.001-291.84 288c-6.033 6.152-9.757 14.588-9.757 23.893s3.724 17.742 9.763 23.899l-0.005-0.005c6.311 6.041 14.876 9.772 24.312 9.813l0.008 0c0.048 0 0.105 0 0.162 0 8.997 0 17.115-3.763 22.866-9.801l0.012-0.013 268.373-264.107 166.827 159.147c6.061 5.883 14.34 9.51 23.467 9.51s17.406-3.627 23.475-9.519l-0.008 0.008 247.893-241.493v114.347c-0 0.001-0 0.002-0 0.003 0 17.523 14.085 31.757 31.551 31.997l0.023 0c0.001 0 0.002 0 0.003 0 17.523 0 31.757-14.085 31.997-31.551l0-0.023 0.427-189.44c-0.082-8.956-3.644-17.064-9.397-23.051l0.011 0.011c-5.459-5.787-13.18-9.39-21.742-9.39-0.156 0-0.312 0.001-0.468 0.004l0.024-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-refraction"]},"attrs":[{}],"properties":{"order":7042,"id":495,"name":"arrow-up-refraction","prevSize":32,"code":59725},"setIdx":0,"setId":0,"iconIdx":77},{"icon":{"paths":["M707.413 293.547c-4.778-2.092-10.34-3.34-16.186-3.413l-0.027-0h-358.4c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h256l-285.867 285.44c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002 285.44-285.013v256c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-359.253c-0.091-17.632-10.863-32.726-26.172-39.149l-0.281-0.105z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up-right"]},"attrs":[{}],"properties":{"order":7043,"id":494,"name":"arrow-up-right","prevSize":32,"code":59726},"setIdx":0,"setId":0,"iconIdx":78},{"icon":{"paths":["M793.6 484.267l-253.44-253.013c-3.714-4.030-8.274-7.221-13.404-9.298l-0.249-0.089c-4.257-1.884-9.201-3.11-14.393-3.408l-0.114-0.005c-6.014 0.012-11.732 1.266-16.916 3.52l0.276-0.107c-5.379 2.166-9.939 5.356-13.63 9.361l-0.023 0.026-255.147 253.013c-7.753 7.753-12.548 18.463-12.548 30.293 0 23.661 19.181 42.841 42.841 42.841 11.83 0 22.541-4.795 30.293-12.548l-0 0 182.187-180.48v403.627c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-403.627l180.053 180.48c7.709 7.648 18.326 12.374 30.047 12.374 0.087 0 0.173-0 0.26-0.001l-0.013 0c0.073 0 0.16 0.001 0.247 0.001 11.721 0 22.338-4.726 30.049-12.377l-0.003 0.003c7.299-7.643 11.791-18.021 11.791-29.448 0-12.272-5.181-23.334-13.475-31.118l-0.023-0.021z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-up"]},"attrs":[{}],"properties":{"order":7044,"id":493,"name":"arrow-up","prevSize":32,"code":59727},"setIdx":0,"setId":0,"iconIdx":79},{"icon":{"paths":["M744.533 630.187c-5.951-5.951-14.172-9.632-23.253-9.632-18.162 0-32.885 14.723-32.885 32.885 0 9.081 3.681 17.302 9.632 23.253l-0-0 72.107 72.533h-456.533c-1.947 0.136-4.219 0.213-6.509 0.213-54.904 0-99.413-44.509-99.413-99.413s44.509-99.413 99.413-99.413c2.29 0 4.563 0.077 6.814 0.23l-0.305-0.017h409.6c90.005-1.56 162.37-74.889 162.37-165.12 0-91.206-73.937-165.143-165.143-165.143-0.975 0-1.948 0.008-2.919 0.025l0.146-0.002h-461.653l72.533-72.533c5.983-6.016 9.682-14.309 9.682-23.467s-3.699-17.451-9.683-23.468l0.001 0.001c-5.948-5.959-14.17-9.645-23.253-9.645s-17.306 3.686-23.253 9.645l-0.001 0.001-128 128c-6.057 5.897-9.814 14.131-9.814 23.241 0 0.079 0 0.158 0.001 0.237l-0-0.012c0.037 9.175 3.782 17.468 9.812 23.465l0.001 0.001 128 128c5.899 6.064 14.137 9.826 23.253 9.826s17.355-3.762 23.246-9.819l0.007-0.007c5.959-5.948 9.645-14.17 9.645-23.253s-3.686-17.306-9.645-23.253l-0.001-0.001-72.533-71.68h461.653c54.904-0 99.413 44.509 99.413 99.413s-44.509 99.413-99.413 99.413h-409.6c-90.005 1.56-162.37 74.889-162.37 165.12 0 91.206 73.937 165.143 165.143 165.143 0.975 0 1.948-0.008 2.919-0.025l-0.146 0.002h456.533l-72.107 72.533c-5.959 5.948-9.645 14.17-9.645 23.253s3.686 17.306 9.645 23.253l0.001 0.001c5.899 6.064 14.137 9.826 23.253 9.826s17.355-3.762 23.246-9.819l0.007-0.007 128-128c5.959-5.948 9.645-14.17 9.645-23.253s-3.686-17.306-9.645-23.253l-0.001-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrow-zigzag"]},"attrs":[{}],"properties":{"order":7045,"id":492,"name":"arrow-zigzag","prevSize":32,"code":59728},"setIdx":0,"setId":0,"iconIdx":80},{"icon":{"paths":["M204.8 451.84c-3.241 15.006-16.401 26.087-32.149 26.087-0.698 0-1.391-0.022-2.079-0.065l0.094 0.005h-7.253c-14.942-3.291-25.957-16.42-25.957-32.121 0-2.528 0.285-4.989 0.826-7.353l-0.042 0.221c42.648-180.797 202.171-313.455 392.849-314.453l0.111-0c113.825 0.005 216.574 47.427 289.571 123.591l0.136 0.143v-117.333c0-18.38 14.9-33.28 33.28-33.28s33.28 14.9 33.28 33.28l-0-0v198.4c-0.241 18.196-15.047 32.853-33.277 32.853-0.001 0-0.002-0-0.003-0l-199.68 0c-1.129 0.136-2.437 0.213-3.762 0.213-18.38 0-33.28-14.9-33.28-33.28s14.9-33.28 33.28-33.28c1.326 0 2.633 0.078 3.918 0.228l-0.156-0.015h123.307c-61.48-65.334-148.515-106.020-245.052-106.020-159.441 0-292.96 110.984-327.518 259.912l-0.443 2.268zM901.547 567.893c-2.019-0.435-4.339-0.685-6.717-0.685-15.902 0-29.199 11.153-32.496 26.064l-0.041 0.221c-32.248 154.473-167.291 268.849-329.047 268.849-98.446 0-186.997-42.365-248.416-109.858l-0.243-0.271h128c18.38 0 33.28-14.9 33.28-33.28h0c0-0.001 0-0.002 0-0.003 0-18.144-14.709-32.853-32.853-32.853-0.15 0-0.3 0.001-0.449 0.003l0.023-0h-185.6c-18.144 0-32.853 14.709-32.853 32.853v0 192c-0.136 1.129-0.213 2.437-0.213 3.762 0 18.38 14.9 33.28 33.28 33.28s33.28-14.9 33.28-33.28c0-1.326-0.078-2.633-0.228-3.918l0.015 0.156v-89.6c71.49 66.437 167.626 107.208 273.285 107.208 193.163 0 354.499-136.265 393.127-317.911l0.468-2.63c0.669-2.46 1.053-5.284 1.053-8.198 0-15.868-11.398-29.074-26.453-31.878l-0.2-0.031z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrows-circle"]},"attrs":[{}],"properties":{"order":7046,"id":491,"name":"arrows-circle","prevSize":32,"code":59729},"setIdx":0,"setId":0,"iconIdx":81},{"icon":{"paths":["M857.173 535.040v109.653c0.013 0.769 0.020 1.677 0.020 2.587 0 89.208-71.481 161.72-160.291 163.384l-0.156 0.002h-421.12l60.16 68.267c5.585 5.878 9.021 13.844 9.021 22.613s-3.436 16.736-9.034 22.627l0.013-0.014c-5.319 5.275-12.643 8.534-20.728 8.534-0.063 0-0.126-0-0.188-0.001l0.010 0c-8.991-0.028-17.056-3.969-22.586-10.208l-0.028-0.032-113.067-128c-4.891-5.702-7.869-13.17-7.869-21.333s2.977-15.632 7.906-21.377l-0.037 0.044 112.64-115.2c5.473-5.43 13.011-8.786 21.333-8.786s15.86 3.356 21.335 8.788l-0.002-0.002c5.493 5.918 8.863 13.872 8.863 22.613s-3.37 16.696-8.882 22.634l0.019-0.021-65.28 65.28h426.667c54.925-1.191 98.995-45.998 98.995-101.098 0-0.458-0.003-0.915-0.009-1.371l0.001 0.069v-109.653c0-16.966 13.754-30.72 30.72-30.72s30.72 13.754 30.72 30.72v0zM729.173 100.267c-5.473-5.43-13.011-8.786-21.333-8.786s-15.86 3.356-21.335 8.788l0.002-0.002c-5.585 5.878-9.021 13.844-9.021 22.613s3.436 16.736 9.034 22.627l-0.013-0.014 62.72 64.427h-419.413c-88.454 2.603-159.168 74.93-159.168 163.773 0 0.923 0.008 1.845 0.023 2.765l-0.002-0.138v103.253c-0.002 0.13-0.003 0.284-0.003 0.438 0 17.138 13.655 31.088 30.679 31.561l0.044 0.001c17.254-0.239 31.15-14.282 31.15-31.57 0-0.151-0.001-0.302-0.003-0.452l0 0.023v-103.253c-0.015-0.639-0.023-1.392-0.023-2.147 0-54.784 43.936-99.306 98.494-100.251l0.089-0.001h426.667l-62.72 64c-5.682 5.835-9.186 13.815-9.186 22.613s3.504 16.778 9.193 22.62l-0.007-0.007c5.459 5.785 13.179 9.387 21.739 9.387 0.007 0 0.015-0 0.022-0l-0.001 0c7.848-0.14 14.914-3.375 20.052-8.532l0.001-0.001 113.067-115.2c5.545-5.684 8.965-13.462 8.965-22.040 0-0.202-0.002-0.403-0.006-0.604l0 0.030c0.004-0.195 0.007-0.424 0.007-0.654 0-8.687-3.416-16.577-8.978-22.398l0.012 0.012z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["arrows-loop"]},"attrs":[{}],"properties":{"order":7047,"id":490,"name":"arrows-loop","prevSize":32,"code":59730},"setIdx":0,"setId":0,"iconIdx":82},{"icon":{"paths":["M853.333 677.547c-10.207 9.6-22.652 16.944-36.461 21.16l-0.659 0.173c-5.387 0.916-11.592 1.44-17.92 1.44s-12.533-0.524-18.575-1.53l0.655 0.090c-62.105-7.444-116.316-17.328-169.375-30.162l9.801 2.002c-13.641-3.197-29.304-5.030-45.395-5.030-31.186 0-60.764 6.885-87.298 19.217l1.279-0.534c-6.487 4.673-13.888 9.207-21.62 13.189l-0.993 0.465c-8.303 3.524-17.941 5.693-28.051 5.971l-0.109 0.002c-0.937 0.027-2.041 0.042-3.147 0.042-36.548 0-69.236-16.53-90.994-42.522l-0.152-0.186c-13.639-19.558-21.792-43.825-21.792-69.996 0-13.091 2.040-25.706 5.82-37.544l-0.241 0.873c-9.029 1.632-19.421 2.565-30.031 2.565-22.159 0-43.368-4.071-62.919-11.505l1.216 0.406c-31.884-9.565-58.916-27.217-79.631-50.595l-0.155-0.179c-59.307-77.227-17.92-174.507 49.92-229.973 54.681-45.574 122.514-77.183 197.016-88.468l2.237-0.279v42.667l-69.547 75.947c-6.364-2.104-13.692-3.348-21.301-3.413l-0.032-0c-0.398-0.007-0.867-0.011-1.337-0.011-44.772 0-81.067 36.295-81.067 81.067s36.295 81.067 81.067 81.067c44.772 0 81.067-36.295 81.067-81.067 0-14.747-3.937-28.573-10.818-40.487l0.208 0.391 72.96-76.8c4.95-5.536 8.007-12.855 8.106-20.886l0-0.020v-64.427h37.547c19.627 0 42.667 2.56 61.013 4.693v213.333l-25.173 29.013c-7.205-2.393-15.523-3.928-24.15-4.261l-0.17-0.005c-0.635-0.018-1.383-0.028-2.133-0.028-44.772 0-81.067 36.295-81.067 81.067s36.295 81.067 81.067 81.067c44.762 0 81.051-36.279 81.067-81.037l0-0.002c0-0.063 0-0.138 0-0.213 0-13.673-3.476-26.533-9.593-37.746l0.206 0.413 31.573-36.693c4.763-5.212 7.681-12.181 7.681-19.831 0-0.078-0-0.157-0.001-0.235l0 0.012v-213.333c19.134 4.043 35.828 9.336 51.775 16.054l-1.855-0.694c18.701 8.272 34.672 17.254 49.671 27.549l-1.031-0.669v231.68c-29.319 12.508-49.496 41.089-49.496 74.383 0 0.25 0.001 0.499 0.003 0.748l-0-0.038c-0.136 1.74-0.213 3.769-0.213 5.815 0 43.829 35.531 79.36 79.36 79.36s79.36-35.531 79.36-79.36c0-2.046-0.077-4.075-0.23-6.082l0.016 0.267c0.002-0.211 0.003-0.46 0.003-0.71 0-33.294-20.177-61.876-48.97-74.184l-0.526-0.2v-186.027c14.204 13.418 27.445 27.334 39.917 41.928l0.616 0.739c44.499 49.558 73.278 114.034 78.030 185.089l0.050 0.937c0.427 64 6.827 129.28-46.080 174.080zM516.267 674.987h5.973zM469.333 697.6c5.732-3.155 10.472-6.122 15.042-9.314l-0.535 0.354c-4.035 2.838-8.774 5.805-13.666 8.53l-0.84 0.43zM460.8 701.013v0h3.413zM550.827 668.587v0zM581.973 668.587v0zM798.293 701.013h-2.987zM774.827 761.173c-46.956-4.542-89.243-11.768-130.446-21.769l6.286 1.289-42.667-8.533c-11.778-2.13-25.355-3.37-39.215-3.413l-0.038-0c-2.054-0.14-4.451-0.22-6.867-0.22-16.071 0-31.315 3.54-44.995 9.882l0.662-0.275-5.547 3.413c-5.615 3.955-12.043 7.786-18.757 11.128l-0.87 0.392 6.827 5.547c41.072 21.884 75.672 50.49 103.63 84.731l0.477 0.602c11.947 19.2 20.907 40.107 31.573 60.16 6.193 13.526 15.854 24.558 27.861 32.248l0.299 0.179c4.157 2.383 9.138 3.789 14.448 3.789 9.837 0 18.546-4.824 23.892-12.236l0.060-0.087c2.284-5.059 3.615-10.968 3.615-17.188 0-1.46-0.073-2.902-0.216-4.325l0.015 0.179c0-31.573-6.827-73.387 18.773-97.28 17.92-16.64 42.667-25.173 54.613-46.507zM618.667 672.427l79.36 16.213zM780.8 121.6c0.136-1.070 0.213-2.308 0.213-3.563 0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867c0 1.256 0.078 2.494 0.228 3.709l-0.015-0.145v106.24c22.195 14.802 41.565 30.241 59.538 47.149l-0.231-0.215zM465.067 170.667v-49.067c0.136-1.070 0.213-2.308 0.213-3.563 0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867c0 1.256 0.078 2.494 0.228 3.709l-0.015-0.145v55.040c17.301-3.076 37.737-5.219 58.531-5.952l0.776-0.022zM622.933 121.6c0.136-1.070 0.213-2.308 0.213-3.563 0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867c0 1.256 0.078 2.494 0.228 3.709l-0.015-0.145v54.187c22.572 2.279 42.765 5.738 62.471 10.452l-3.164-0.639z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["artificial-intelligence"]},"attrs":[{}],"properties":{"order":7048,"id":489,"name":"artificial-intelligence","prevSize":32,"code":59731},"setIdx":0,"setId":0,"iconIdx":83},{"icon":{"paths":["M512 426.667l46.080 98.56h-92.16zM912.64 574.293l-59.307 60.587c-7.905 7.75-12.805 18.541-12.805 30.475 0 0.236 0.002 0.472 0.006 0.707l-0-0.036v85.333c-0 49.013-39.733 88.747-88.747 88.747v0h-85.333c-0.2-0.003-0.435-0.005-0.671-0.005-11.935 0-22.725 4.9-30.468 12.798l-0.007 0.007-60.16 60.16c-16.057 16.040-38.23 25.96-62.72 25.96s-46.663-9.92-62.721-25.961l0.001 0.001-60.587-59.733c-7.75-7.905-18.541-12.805-30.475-12.805-0.236 0-0.472 0.002-0.707 0.006l0.036-0h-85.333c-48.831-0.24-88.324-39.881-88.324-88.746 0-0.3 0.001-0.6 0.004-0.9l-0 0.046v-85.333c0.003-0.2 0.005-0.435 0.005-0.671 0-11.935-4.9-22.725-12.798-30.468l-0.007-0.007-60.16-59.733c-16.040-16.057-25.96-38.23-25.96-62.72s9.92-46.663 25.961-62.721l-0.001 0.001 59.307-60.16c7.905-7.75 12.805-18.541 12.805-30.475 0-0.236-0.002-0.472-0.006-0.707l0 0.036v-85.333c0.24-48.831 39.881-88.324 88.746-88.324 0.3 0 0.6 0.001 0.9 0.004l-0.046-0h85.333c12.14-0.166 23.030-5.377 30.696-13.627l0.024-0.027 60.16-60.16c16.057-16.040 38.23-25.96 62.72-25.96s46.663 9.92 62.721 25.961l-0.001-0.001 60.16 60.16c7.75 7.905 18.541 12.805 30.475 12.805 0.236 0 0.472-0.002 0.707-0.006l-0.036 0h85.333c48.831 0.24 88.324 39.881 88.324 88.746 0 0.3-0.001 0.6-0.004 0.9l0-0.046v85.333c-0.003 0.2-0.005 0.435-0.005 0.671 0 11.935 4.9 22.725 12.798 30.468l0.007 0.007 60.16 60.16c15.913 16.035 25.748 38.122 25.748 62.507s-9.834 46.472-25.753 62.512l0.006-0.006zM690.773 659.627l-149.76-321.707c-5.815-10.207-16.624-16.977-29.013-16.977s-23.198 6.77-28.927 16.813l-0.086 0.164-149.76 321.28c-2.031 4.054-3.22 8.834-3.22 13.891 0 12.729 7.533 23.699 18.384 28.695l0.196 0.081c4.006 1.94 8.713 3.074 13.685 3.074 12.747 0 23.754-7.454 28.899-18.24l0.083-0.193 44.8-96.427h151.893l44.8 96.427c5.335 10.886 16.303 18.267 29.003 18.347l0.011 0c0.157 0.003 0.342 0.005 0.528 0.005 4.773 0 9.288-1.104 13.304-3.070l-0.179 0.079c11.071-5.194 18.601-16.247 18.601-29.060 0-5.108-1.197-9.936-3.325-14.22l0.084 0.186z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["auto-brightness"]},"attrs":[{}],"properties":{"order":7049,"id":488,"name":"auto-brightness","prevSize":32,"code":59732},"setIdx":0,"setId":0,"iconIdx":84},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM469.333 688.213c-15.657 26.928-44.355 44.753-77.22 44.8l-0.007 0h-120.32c-0.231 0.011-0.501 0.017-0.772 0.017-9.661 0-17.493-7.832-17.493-17.493 0-3.314 0.922-6.413 2.523-9.055l-0.044 0.078 122.88-213.333 114.773-198.4c4.954-8.028 13.702-13.297 23.68-13.297s18.726 5.27 23.611 13.178l0.069 0.119 51.627 89.173c7.435 12.739 11.824 28.044 11.824 44.373s-4.389 31.634-12.053 44.798l0.229-0.425-66.987 116.053zM744.107 742.827h-149.76c-0.268 0.009-0.583 0.015-0.9 0.015-15.081 0-27.307-12.226-27.307-27.307 0-5.742 1.772-11.070 4.8-15.467l-0.060 0.092 74.24-128c4.849-8.046 13.539-13.344 23.467-13.344s18.618 5.298 23.398 13.221l0.069 0.123 36.693 64 37.12 64c2.967 4.305 4.74 9.633 4.74 15.375 0 15.081-12.226 27.307-27.307 27.307-0.316 0-0.632-0.005-0.945-0.016l0.046 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["avalanche"]},"attrs":[{}],"properties":{"order":7050,"id":487,"name":"avalanche","prevSize":32,"code":59733},"setIdx":0,"setId":0,"iconIdx":85},{"icon":{"paths":["M530.773 203.52c-6.403-1.616-13.757-2.548-21.326-2.56l-0.008-0c7.659 0.185 14.998 1.108 22.083 2.702l-0.749-0.142zM413.44 162.987c27.914-16.627 61.555-26.456 97.491-26.456 0.376 0 0.752 0.001 1.127 0.003l-0.058-0c0.008-0 0.018-0 0.027-0 34.502 0 66.86 9.182 94.763 25.237l-0.924-0.49 156.16 88.747v-42.667c-1.893-67.803-57.309-122.046-125.394-122.046-0.766 0-1.531 0.007-2.294 0.021l0.115-0.002h-244.907c-0.002-0-0.004-0-0.007-0-68.829 0-124.71 55.434-125.433 124.091l-0.001 0.069v42.667zM264.107 325.12v0l77.227-44.8zM477.44 205.227h11.093zM541.867 205.227c11.193 3.003 20.979 7.087 30.056 12.271l-0.616-0.324c-8.586-5.038-18.511-9.264-28.985-12.165l-0.881-0.208zM738.133 311.040l21.76 12.373zM849.92 689.493c0 0.018 0 0.040 0 0.061 0 46.257-24.537 86.784-61.306 109.273l-0.561 0.319-210.347 123.307c-18.043 10.642-39.754 16.929-62.933 16.929s-44.891-6.287-63.521-17.249l0.588 0.32-213.333-119.893c-38.026-21.854-63.288-62.132-63.573-108.333l-0-0.040v-243.627c-0-0.046-0-0.1-0-0.154 0-45.906 24.166-86.168 60.471-108.758l0.543-0.315 210.347-123.733c18.102-10.403 39.801-16.54 62.933-16.54s44.831 6.136 63.558 16.87l-0.625-0.33 213.333 119.893c37.786 22.295 62.898 62.541 63.572 108.704l0.001 0.096zM621.227 508.587l-42.667-13.227c-6.783-1.821-12.413-5.926-16.15-11.422l-0.063-0.098-25.173-37.12c-5.444-7.977-14.492-13.145-24.747-13.145s-19.302 5.168-24.68 13.042l-0.066 0.103-25.6 36.693c-3.877 5.515-9.476 9.592-16.005 11.469l-0.208 0.051-42.667 12.8c-12.744 3.598-21.928 15.123-21.928 28.792 0 6.855 2.309 13.171 6.193 18.211l-0.052-0.070 26.88 35.413c3.995 5.232 6.4 11.864 6.4 19.058 0 0.050-0 0.1-0 0.15l0-0.008v44.8c-0.007 0.241-0.011 0.524-0.011 0.809 0 16.495 13.372 29.867 29.867 29.867 3.52 0 6.897-0.609 10.033-1.727l-0.209 0.065 42.667-14.507c2.983-1.115 6.429-1.76 10.027-1.76s7.044 0.645 10.23 1.826l-0.204-0.066 42.667 14.933c3.050 1.15 6.575 1.816 10.256 1.816 16.495 0 29.867-13.372 29.867-29.867 0-0.339-0.006-0.676-0.017-1.012l0.001 0.049v-42.667c-0.030-0.493-0.048-1.070-0.048-1.65 0-6.644 2.266-12.758 6.068-17.612l-0.047 0.063 27.307-35.413c4.342-5.151 6.98-11.862 6.98-19.189 0-14.741-10.679-26.987-24.722-29.425l-0.178-0.026z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["award"]},"attrs":[{}],"properties":{"order":7051,"id":486,"name":"award","prevSize":32,"code":59734},"setIdx":0,"setId":0,"iconIdx":86},{"icon":{"paths":["M697.6 125.013h-371.2c-133.293 0.727-241.067 108.949-241.067 242.343 0 0.001 0 0.002 0 0.004l-0-0v289.28c0 133.844 108.502 242.347 242.347 242.347v0h371.2c132.739-1.447 239.787-109.389 239.787-242.333 0-0.005-0-0.009-0-0.014l0 0v-289.28c0-0.001 0-0.002 0-0.003 0-133.394-107.774-241.617-240.997-242.343l-0.069-0zM349.44 288.853c61.031 0 110.507 49.476 110.507 110.507s-49.476 110.507-110.507 110.507c-61.031 0-110.507-49.476-110.507-110.507v0c0-61.031 49.476-110.507 110.507-110.507v0zM349.44 754.773c-90.88 0-164.267-48.213-164.267-107.947s73.387-107.52 164.267-107.52 162.56 48.213 162.56 107.52-72.107 107.947-162.56 107.947zM791.467 635.733h-149.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h149.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM807.68 471.893h-226.56c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h226.56c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["badge"]},"attrs":[{}],"properties":{"order":7052,"id":485,"name":"badge","prevSize":32,"code":59735},"setIdx":0,"setId":0,"iconIdx":87},{"icon":{"paths":["M929.707 298.667c-50.996-84.379-119.863-153.11-201.729-202.467l-2.645-1.479c-9.655-5.953-21.356-9.481-33.881-9.481-17.901 0-34.118 7.205-45.912 18.873l0.006-0.006-541.44 541.013c-12.076 11.855-19.561 28.352-19.561 46.597 0 12.416 3.466 24.023 9.484 33.905l-0.163-0.288c48.298 86.913 118.011 156.763 202.173 203.876l2.627 1.351c9.074 5.082 19.912 8.075 31.449 8.075 17.837 0 34.004-7.154 45.787-18.75l-0.009 0.008 544-542.72c11.538-11.765 18.659-27.898 18.659-45.694 0-12.088-3.285-23.408-9.012-33.117l0.166 0.305zM405.76 587.093c-7.686 7.52-18.216 12.16-29.829 12.16-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c11.614 0 22.144 4.64 29.837 12.168l-0.008-0.008c7.924 7.753 12.837 18.556 12.837 30.507s-4.913 22.753-12.83 30.499l-0.008 0.008zM497.067 678.4c-7.686 7.52-18.216 12.16-29.829 12.16-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c11.614 0 22.144 4.64 29.837 12.168l-0.008-0.008c7.924 7.753 12.837 18.556 12.837 30.507s-4.913 22.753-12.83 30.499l-0.008 0.008zM497.067 495.787c-7.686 7.52-18.216 12.16-29.829 12.16-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c11.614 0 22.144 4.64 29.837 12.168l-0.008-0.008c7.924 7.753 12.837 18.556 12.837 30.507s-4.913 22.753-12.83 30.499l-0.008 0.008zM588.373 587.093c-7.686 7.52-18.216 12.16-29.829 12.16-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c11.614 0 22.144 4.64 29.837 12.168l-0.008-0.008c7.924 7.753 12.837 18.556 12.837 30.507s-4.913 22.753-12.83 30.499l-0.008 0.008zM588.373 404.48c-7.686 7.52-18.216 12.16-29.829 12.16-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c11.614 0 22.144 4.64 29.837 12.168l-0.008-0.008c7.924 7.753 12.837 18.556 12.837 30.507s-4.913 22.753-12.83 30.499l-0.008 0.008zM679.68 495.787c-7.686 7.52-18.216 12.16-29.829 12.16-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c11.614 0 22.144 4.64 29.837 12.168l-0.008-0.008c7.924 7.753 12.837 18.556 12.837 30.507s-4.913 22.753-12.83 30.499l-0.008 0.008z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bandage"]},"attrs":[{}],"properties":{"order":7053,"id":484,"name":"bandage","prevSize":32,"code":59736},"setIdx":0,"setId":0,"iconIdx":88},{"icon":{"paths":["M878.507 399.36h-58.027v380.16c0.002 0.127 0.002 0.277 0.002 0.427 0 20.501-16.619 37.12-37.12 37.12-0.001 0-0.002-0-0.003-0l-65.28 0c-0.001 0-0.002 0-0.002 0-20.501 0-37.12-16.619-37.12-37.12 0-0.15 0.001-0.3 0.003-0.449l-0 0.023v-380.16h-99.413v380.16c0.002 0.127 0.002 0.277 0.002 0.427 0 20.501-16.619 37.12-37.12 37.12-0.001 0-0.002-0-0.003-0l-64.853 0c-0.001 0-0.002 0-0.002 0-20.501 0-37.12-16.619-37.12-37.12 0-0.15 0.001-0.3 0.003-0.449l-0 0.023v-380.16h-104.533v380.16c0.002 0.128 0.002 0.278 0.002 0.429 0 20.501-16.619 37.12-37.12 37.12-0.151 0-0.302-0.001-0.452-0.003l0.023 0h-64.853c-0.001 0-0.002 0-0.002 0-20.501 0-37.12-16.619-37.12-37.12 0-0.15 0.001-0.3 0.003-0.449l-0 0.023v-380.16h-52.907c-58.027 0-82.347-61.44-35.84-90.453l330.24-203.093c20.505-12.833 45.417-20.443 72.107-20.443s51.602 7.611 72.685 20.78l-0.578-0.337 330.24 203.093c46.507 29.013 24.32 90.453-35.84 90.453zM938.667 938.667c0-17.673-14.327-32-32-32v0h-804.693c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h804.267c0.001 0 0.002 0 0.003 0 17.759 0 32.183-14.276 32.424-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bank"]},"attrs":[{}],"properties":{"order":7054,"id":483,"name":"bank","prevSize":32,"code":59737},"setIdx":0,"setId":0,"iconIdx":89},{"icon":{"paths":["M710.827 133.973h-396.373c-127.938 6.215-229.314 111.455-229.314 240.373 0 3.395 0.070 6.774 0.21 10.135l-0.016-0.481v258.133c-0.241 4.029-0.378 8.741-0.378 13.485 0 128.983 101.478 234.264 228.951 240.361l0.547 0.021h396.373c127.463-7.048 228.154-112.125 228.154-240.721 0-4.324-0.114-8.621-0.339-12.889l0.025 0.597v-258.987c0.115-2.778 0.18-6.038 0.18-9.313 0-128.548-100.617-233.596-227.392-240.685l-0.628-0.028zM298.667 685.653c0.008 0.268 0.013 0.583 0.013 0.899 0 16.842-13.186 30.603-29.798 31.524l-0.082 0.004c-16.654-0.691-29.894-14.36-29.894-31.121 0-0.459 0.010-0.916 0.030-1.37l-0.002 0.065v-360.533c-0.017-0.389-0.027-0.846-0.027-1.305 0-16.761 13.24-30.43 29.832-31.119l0.062-0.002c16.693 0.924 29.879 14.686 29.879 31.528 0 0.316-0.005 0.631-0.014 0.945l0.001-0.046zM426.667 685.653c0 16.495-13.372 29.867-29.867 29.867s-29.867-13.372-29.867-29.867l-0-0v-180.053c0-16.495 13.372-29.867 29.867-29.867s29.867 13.372 29.867 29.867v0zM426.667 386.987c0 16.495-13.372 29.867-29.867 29.867s-29.867-13.372-29.867-29.867l-0-0v-61.867c0-16.495 13.372-29.867 29.867-29.867s29.867 13.372 29.867 29.867v0zM554.667 685.653c0 16.495-13.372 29.867-29.867 29.867s-29.867-13.372-29.867-29.867l-0-0v-360.533c0-16.495 13.372-29.867 29.867-29.867s29.867 13.372 29.867 29.867v0zM682.667 675.413c0 16.495-13.372 29.867-29.867 29.867s-29.867-13.372-29.867-29.867l-0-0v-62.293c0-16.495 13.372-29.867 29.867-29.867s29.867 13.372 29.867 29.867v0zM682.667 494.933c0 16.495-13.372 29.867-29.867 29.867s-29.867-13.372-29.867-29.867l-0-0v-180.053c0-16.495 13.372-29.867 29.867-29.867s29.867 13.372 29.867 29.867v0zM810.667 685.653c0 16.495-13.372 29.867-29.867 29.867s-29.867-13.372-29.867-29.867v-360.533c0-16.495 13.372-29.867 29.867-29.867s29.867 13.372 29.867 29.867v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["barcode"]},"attrs":[{}],"properties":{"order":7055,"id":482,"name":"barcode","prevSize":32,"code":59738},"setIdx":0,"setId":0,"iconIdx":90},{"icon":{"paths":["M938.667 321.28c0.024 0.777 0.037 1.691 0.037 2.608 0 49.155-39.024 89.194-87.781 90.828l-0.15 0.004h-677.547c-48.907-1.638-87.931-41.678-87.931-90.832 0-0.917 0.014-1.831 0.041-2.741l-0.003 0.134c-0.024-0.777-0.037-1.691-0.037-2.608 0-49.155 39.024-89.194 87.781-90.828l0.15-0.004h60.587l80.213-128c5.723-8.667 15.419-14.306 26.433-14.306 5.995 0 11.599 1.671 16.373 4.572l-0.14-0.079c8.957 5.964 14.778 16.019 14.778 27.434 0 6.433-1.849 12.435-5.045 17.502l0.080-0.136-56.747 93.013h402.347l-58.453-92.587c-2.563-4.57-4.072-10.030-4.072-15.842 0-11.035 5.44-20.799 13.785-26.757l0.1-0.068c4.614-2.732 10.169-4.346 16.101-4.346 11.019 0 20.738 5.57 26.494 14.047l0.072 0.112 80.213 128h62.72c49.638 0.721 89.6 41.129 89.6 90.871 0 0.003-0 0.006-0 0.010l0-0.001zM183.467 479.573h657.493l-50.347 337.067c-10.014 68.419-67.609 120.574-137.665 122.024l-0.149 0.002h-277.76c-69.694-1.707-126.902-53.047-137.704-119.926l-0.109-0.82zM402.347 686.933l73.387 74.667c5.635 5.057 13.123 8.149 21.333 8.149s15.698-3.092 21.363-8.175l-0.030 0.026 155.307-143.36c6.471-5.948 10.512-14.452 10.512-23.901 0-8.384-3.181-16.024-8.403-21.78l0.024 0.027c-5.741-5.887-13.751-9.539-22.613-9.539s-16.872 3.652-22.607 9.532l-0.006 0.007-132.693 122.453-50.347-55.040c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.983 6.016-9.682 14.309-9.682 23.467s3.699 17.451 9.683 23.468l-0.001-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["basket-ok"]},"attrs":[{}],"properties":{"order":7056,"id":481,"name":"basket-ok","prevSize":32,"code":59739},"setIdx":0,"setId":0,"iconIdx":91},{"icon":{"paths":["M938.667 321.28c0.024 0.773 0.037 1.682 0.037 2.595 0 49.304-39.263 89.439-88.228 90.842l-0.129 0.003h-676.693c-49.094-1.406-88.357-41.541-88.357-90.845 0-0.913 0.013-1.822 0.040-2.728l-0.003 0.133c-0.024-0.773-0.037-1.682-0.037-2.595 0-49.304 39.263-89.439 88.228-90.842l0.129-0.003h60.16l80.213-128c5.828-8.59 15.546-14.159 26.565-14.159 5.932 0 11.488 1.614 16.25 4.427l-0.149-0.081c9.040 5.855 14.937 15.892 14.937 27.306 0 6.497-1.911 12.547-5.201 17.62l0.077-0.126-56.747 93.013h402.347l-58.027-92.587c-2.638-4.624-4.193-10.161-4.193-16.061 0-10.903 5.311-20.565 13.487-26.541l0.093-0.065c4.614-2.732 10.169-4.346 16.101-4.346 11.019 0 20.738 5.57 26.494 14.047l0.072 0.112 80.64 128h62.293c49.638 0.721 89.6 41.129 89.6 90.871 0 0.003-0 0.006-0 0.010l0-0.001zM183.893 479.573h657.067l-50.347 337.067c-10.014 68.419-67.609 120.574-137.665 122.024l-0.149 0.002h-277.76c-69.652-1.562-126.831-53.014-137.284-119.947l-0.103-0.8zM579.413 738.56c0 17.673 14.327 32 32 32s32-14.327 32-32v0-156.16c0-17.673-14.327-32-32-32s-32 14.327-32 32v0zM380.587 738.56c0 17.673 14.327 32 32 32s32-14.327 32-32v0-156.16c0-17.673-14.327-32-32-32s-32 14.327-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["basket"]},"attrs":[{}],"properties":{"order":7057,"id":480,"name":"basket","prevSize":32,"code":59740},"setIdx":0,"setId":0,"iconIdx":92},{"icon":{"paths":["M477.867 321.28c16.052 20.563 25.738 46.776 25.738 75.252 0 2.045-0.050 4.079-0.149 6.099l0.011-0.285c0.024 0.893 0.038 1.945 0.038 2.999 0 27.988-9.659 53.72-25.825 74.044l0.187-0.243c-9.878 13.031-22.827 23.239-37.793 29.636l-0.607 0.231c25.134 8.089 45.788 24.183 59.473 45.226l0.261 0.428c13.397 21.755 21.334 48.113 21.334 76.326 0 0.167-0 0.333-0.001 0.5l0-0.026c0.023 0.919 0.036 2.002 0.036 3.088 0 29.352-9.623 56.456-25.886 78.33l0.249-0.351c-9.449 17.333-22.399 31.647-37.993 42.401l-0.407 0.265c-16.882 12.27-36.993 21.223-58.791 25.448l-0.943 0.152c-21.585 4.923-46.551 8.004-72.144 8.527l-0.389 0.006h-196.267c-0.792 0.056-1.716 0.087-2.647 0.087-22.15 0-40.107-17.956-40.107-40.107 0-0.932 0.032-1.856 0.094-2.771l-0.007 0.124v-433.92c-0.056-0.792-0.087-1.716-0.087-2.647 0-22.15 17.956-40.107 40.107-40.107 0.932 0 1.856 0.032 2.771 0.094l-0.124-0.007h213.333c4.519-0.432 9.771-0.678 15.081-0.678 47.72 0 90.796 19.884 121.395 51.818l0.057 0.060zM192 359.68v115.2h128c1.378 0.064 2.994 0.1 4.618 0.1 18.636 0 36.155-4.779 51.4-13.178l-0.551 0.278c13.091-10.163 21.435-25.902 21.435-43.59 0-1.176-0.037-2.344-0.11-3.502l0.008 0.158c0.279-1.832 0.438-3.946 0.438-6.097 0-19.154-12.622-35.361-30.002-40.756l-0.302-0.081c-19.156-5.261-41.179-8.365-63.9-8.533l-0.1-0.001zM192 560.213v140.8h128c19.826-0.081 38.895-3.196 56.808-8.902l-1.341 0.369c20.643-12.521 34.226-34.872 34.226-60.395 0-1.268-0.034-2.528-0.1-3.78l0.007 0.175c0.054-0.927 0.084-2.012 0.084-3.104 0-23.271-13.903-43.294-33.855-52.218l-0.363-0.145c-15.263-5.385-32.863-8.508-51.189-8.533l-0.011-0zM836.267 410.88c27.764 12.65 50.766 31.547 67.932 54.987l0.335 0.48c16.072 22.794 26.804 50.433 29.808 80.351l0.058 0.716c0 8.533 4.267 21.333 4.267 34.133 0.056 0.792 0.087 1.716 0.087 2.647 0 22.15-17.956 40.107-40.107 40.107-0.932 0-1.856-0.032-2.771-0.094l0.124 0.007h-238.933c-0.043 1.049-0.067 2.28-0.067 3.516 0 32.488 16.889 61.032 42.366 77.33l0.368 0.22c15.571 8.078 33.996 12.816 53.527 12.816 0.682 0 1.363-0.006 2.042-0.017l-0.102 0.001c24.679-0.947 46.962-10.487 64.106-25.693l-0.106 0.093c11.954-10.75 27.851-17.325 45.283-17.325 2.083 0 4.144 0.094 6.18 0.278l-0.262-0.019h25.6c14.664 0.236 26.46 12.179 26.46 26.877 0 5.934-1.923 11.419-5.179 15.865l0.053-0.076c-37.945 51.593-98.239 84.834-166.321 85.333l-0.079 0c-0.15 0-0.329 0.001-0.507 0.001-51.536 0-98.944-17.673-136.494-47.29l0.468 0.356c-37.246-33.781-60.541-82.363-60.541-136.385 0-6.062 0.293-12.055 0.866-17.966l-0.059 0.751c-0.542-5.4-0.851-11.67-0.851-18.013 0-105.567 85.579-191.147 191.147-191.147 2.1 0 4.191 0.034 6.274 0.101l-0.304-0.008c1.837-0.063 3.996-0.099 6.164-0.099 28.7 0 55.923 6.325 80.35 17.658l-1.181-0.492zM682.667 496.213c-15.526 15.223-25.256 36.31-25.599 59.669l-0.001 0.064h174.933c-0.344-23.424-10.074-44.51-25.586-59.72l-0.014-0.014c-16.365-12.779-37.066-20.708-59.593-21.33l-0.14-0.003c-0.169-0.001-0.369-0.002-0.569-0.002-23.948 0-46.022 8.020-63.684 21.521l0.253-0.186zM663.467 338.347h162.133c18.851 0 34.133-15.282 34.133-34.133s-15.282-34.133-34.133-34.133v0h-162.133c-0.128-0.002-0.278-0.003-0.429-0.003-18.616 0-33.707 15.091-33.707 33.707 0 0.151 0.001 0.302 0.003 0.452l-0-0.023c4.267 21.333 17.067 34.133 34.133 34.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["behance"]},"attrs":[{}],"properties":{"order":7058,"id":479,"name":"behance","prevSize":32,"code":59741},"setIdx":0,"setId":0,"iconIdx":93},{"icon":{"paths":["M896 363.52v23.893c-0.013 0-0.029 0-0.046 0-69.492 0-126.050-55.378-127.951-124.411l-0.004-0.176h42.667c48.217 4.828 85.551 45.192 85.551 94.275 0 2.258-0.079 4.498-0.234 6.717l0.017-0.299zM256 262.827h-42.667c-48.217 4.828-85.551 45.192-85.551 94.275 0 2.258 0.079 4.498 0.234 6.717l-0.017-0.299v23.893c0.013 0 0.029 0 0.046 0 69.492 0 126.050-55.378 127.951-124.411l0.004-0.176zM768 761.173h42.667c48.217-4.828 85.551-45.192 85.551-94.275 0-2.258-0.079-4.498-0.234-6.717l0.017 0.299v-23.893c-0.013-0-0.029-0-0.046-0-69.492 0-126.050 55.378-127.951 124.411l-0.004 0.176zM128 636.587v23.893c-0.139 1.92-0.218 4.16-0.218 6.418 0 49.084 37.334 89.447 85.154 94.243l0.397 0.032h42.667c-1.904-69.209-58.462-124.587-127.954-124.587-0.016 0-0.032 0-0.048 0l0.003-0zM896 430.080v163.84c-0.010-0-0.022-0-0.034-0-93.056 0-168.718 74.477-170.63 167.075l-0.003 0.178h-426.667c-1.915-92.777-77.576-167.253-170.633-167.253-0.012 0-0.024 0-0.036 0l0.002-0v-163.84c0.010 0 0.022 0 0.034 0 93.056 0 168.718-74.477 170.63-167.075l0.003-0.178h426.667c1.915 92.777 77.576 167.253 170.633 167.253 0.012 0 0.024-0 0.036-0l-0.002 0zM640 512c0.103-1.973 0.161-4.284 0.161-6.608 0-72.289-56.533-131.374-127.8-135.455l-0.361-0.017c-71.628 4.098-128.161 63.183-128.161 135.472 0 2.324 0.058 4.635 0.174 6.931l-0.013-0.323c-0.103 1.973-0.161 4.284-0.161 6.608 0 72.289 56.533 131.374 127.8 135.455l0.361 0.017c71.628-4.098 128.161-63.183 128.161-135.472 0-2.324-0.058-4.635-0.174-6.931l0.013 0.323z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bill"]},"attrs":[{}],"properties":{"order":7059,"id":478,"name":"bill","prevSize":32,"code":59742},"setIdx":0,"setId":0,"iconIdx":94},{"icon":{"paths":["M500.907 910.080l-53.76-54.187c-6.464-6.353-10.47-15.188-10.47-24.96s4.006-18.607 10.465-24.955l0.005-0.005 366.080-366.080c6.353-6.464 15.188-10.47 24.96-10.47s18.607 4.006 24.955 10.465l0.005 0.005 54.187 53.76c6.286 6.513 10.16 15.391 10.16 25.173s-3.873 18.661-10.17 25.184l0.010-0.011-366.080 366.080c-6.513 6.286-15.391 10.16-25.173 10.16s-18.661-3.873-25.184-10.17l0.011 0.010zM384 743.253l366.933-366.080c6.36-6.4 10.292-15.221 10.292-24.96s-3.931-18.56-10.293-24.962l0.002 0.002-54.187-54.187c-6.4-6.36-15.221-10.292-24.96-10.292s-18.56 3.931-24.962 10.293l0.002-0.002-366.080 366.933c-6.488 6.421-10.505 15.328-10.505 25.173s4.017 18.752 10.502 25.17l0.003 0.003 53.76 53.76c6.328 5.983 14.889 9.662 24.31 9.662 9.85 0 18.761-4.021 25.18-10.512l0.003-0.003zM384 410.453l199.68-199.68c6.488-6.421 10.505-15.328 10.505-25.173s-4.017-18.752-10.502-25.17l-0.003-0.003-53.333-53.76c-6.513-6.286-15.391-10.16-25.173-10.16s-18.661 3.873-25.184 10.17l0.011-0.010-199.68 199.68c-6.286 6.513-10.16 15.391-10.16 25.173s3.873 18.661 10.17 25.184l-0.010-0.011 54.187 53.76c6.332 6.336 15.082 10.255 24.747 10.255s18.415-3.919 24.747-10.255l0-0zM167.68 418.987l-53.333 53.76c-6.488 6.421-10.505 15.328-10.505 25.173s4.017 18.752 10.502 25.17l0.003 0.003 53.76 53.76c6.513 6.286 15.391 10.16 25.173 10.16s18.661-3.873 25.184-10.17l-0.011 0.010 53.76-53.76c6.286-6.513 10.16-15.391 10.16-25.173s-3.873-18.661-10.17-25.184l0.010 0.011-54.187-53.76c-6.353-6.464-15.188-10.47-24.96-10.47s-18.607 4.006-24.955 10.465l-0.005 0.005z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["binance-usd"]},"attrs":[{}],"properties":{"order":7060,"id":477,"name":"binance-usd","prevSize":32,"code":59743},"setIdx":0,"setId":0,"iconIdx":95},{"icon":{"paths":["M597.333 532.907l-66.133 66.987c-5.318 5.757-12.906 9.35-21.333 9.35s-16.015-3.593-21.315-9.33l-0.018-0.020-61.867-66.987c-5.643-5.374-9.152-12.944-9.152-21.333s3.509-15.959 9.14-21.322l0.012-0.011 64-66.133c5.318-5.757 12.906-9.35 21.333-9.35s16.015 3.593 21.315 9.33l0.018 0.020 64 66.987c5.381 5.336 8.713 12.732 8.713 20.907s-3.331 15.57-8.711 20.905l-0.002 0.002zM266.667 490.24l-65.28-66.56c-5.318-5.757-12.906-9.35-21.333-9.35s-16.015 3.593-21.315 9.33l-0.018 0.020-64.853 66.987c-5.43 5.473-8.786 13.011-8.786 21.333s3.356 15.86 8.788 21.335l-0.002-0.002 66.133 66.56c5.259 5.877 12.866 9.558 21.333 9.558s16.075-3.681 21.309-9.531l0.024-0.027 66.133-66.56c5.058-5.4 8.165-12.681 8.165-20.689 0-8.646-3.622-16.446-9.432-21.966l-0.013-0.012zM928 490.24l-65.28-66.56c-5.318-5.757-12.906-9.35-21.333-9.35s-16.015 3.593-21.315 9.33l-0.018 0.020-64.853 66.987c-5.43 5.473-8.786 13.011-8.786 21.333s3.356 15.86 8.788 21.335l-0.002-0.002 66.133 66.56c5.318 5.757 12.906 9.35 21.333 9.35s16.015-3.593 21.315-9.33l0.018-0.020 66.133-66.56c5.083-5.465 8.202-12.817 8.202-20.897 0-8.722-3.634-16.594-9.471-22.186l-0.011-0.011zM531.2 267.093l134.4 135.253c5.374 5.643 12.944 9.152 21.333 9.152s15.959-3.509 21.322-9.14l0.011-0.012 46.080-46.933c5.43-5.473 8.786-13.011 8.786-21.333s-3.356-15.86-8.788-21.335l0.002 0.002-213.333-215.893c-7.562-6.936-17.684-11.186-28.8-11.186s-21.238 4.251-28.831 11.215l0.031-0.028-213.333 216.32c-5.43 5.473-8.786 13.011-8.786 21.333s3.356 15.86 8.788 21.335l-0.002-0.002 45.227 46.507c5.374 5.643 12.944 9.152 21.333 9.152s15.959-3.509 21.322-9.14l0.011-0.012 132.693-135.253c5.267-5.357 12.593-8.677 20.693-8.677s15.426 3.32 20.689 8.673l0.004 0.004zM665.173 621.227l-133.973 135.68c-5.318 5.757-12.906 9.35-21.333 9.35s-16.015-3.593-21.315-9.33l-0.018-0.020-131.84-135.68c-5.318-5.757-12.906-9.35-21.333-9.35s-16.015 3.593-21.315 9.33l-0.018 0.020-45.227 46.507c-5.43 5.473-8.786 13.011-8.786 21.333s3.356 15.86 8.788 21.335l-0.002-0.002 213.333 216.747c7.562 6.936 17.684 11.186 28.8 11.186s21.238-4.251 28.831-11.215l-0.031 0.028 213.333-216.747c5.43-5.473 8.786-13.011 8.786-21.333s-3.356-15.86-8.788-21.335l-46.078-46.505c-5.247-5.229-12.486-8.462-20.48-8.462s-15.233 3.233-20.481 8.463l0.001-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["binance"]},"attrs":[{}],"properties":{"order":7061,"id":476,"name":"binance","prevSize":32,"code":59744},"setIdx":0,"setId":0,"iconIdx":96},{"icon":{"paths":["M712.533 603.307c0 0 0 0.001 0 0.002 0 33.311-26.883 60.343-60.137 60.585l-0.023 0h-256v-120.747h256c33.225 0 60.16 26.935 60.16 60.16v0zM657.067 421.973v-6.827c-0.242-31.392-25.746-56.747-57.172-56.747-0.001 0-0.001 0-0.002 0l0-0-201.813-2.56v123.307h201.813c31.479-0.24 56.934-25.694 57.173-57.151l0-0.023zM938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM776.533 603.307c-0.030-51.134-30.966-95.036-75.14-114.038l-0.807-0.309c12.774-18.807 20.418-41.998 20.48-66.971l0-0.016v-6.827c0-66.687-54.060-120.747-120.747-120.747h-35.84v-55.893c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 54.613h-54.187v-56.32c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 55.040h-102.4c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h54.187v124.16h-54.613c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h54.613v120.747h-54.613c-17.673-0-32 14.327-32 32s14.327 32 32 32h104.533v57.6c0 17.673 14.327 32 32 32s32-14.327 32-32v0-58.453h54.187v59.307c0 17.673 14.327 32 32 32s32-14.327 32-32v0-59.307h87.893c67.883-1.199 122.453-56.511 122.453-124.568 0-0.006-0-0.013-0-0.019l0 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bitcoin"]},"attrs":[{}],"properties":{"order":7062,"id":475,"name":"bitcoin","prevSize":32,"code":59745},"setIdx":0,"setId":0,"iconIdx":97},{"icon":{"paths":["M689.92 590.080h-147.627v-347.733c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 347.733h-147.2c-0.070-0.001-0.153-0.001-0.236-0.001-11.075 0-20.053 8.978-20.053 20.053 0 5.703 2.38 10.849 6.202 14.501l0.008 0.007 179.2 179.2c3.64 3.697 8.699 5.988 14.293 5.988s10.653-2.291 14.291-5.985l0.003-0.003 179.2-179.2c3.829-3.659 6.209-8.805 6.209-14.508 0-11.075-8.978-20.053-20.053-20.053-0.083 0-0.166 0.001-0.249 0.002l0.013-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-down"]},"attrs":[{}],"properties":{"order":7063,"id":474,"name":"black-down","prevSize":32,"code":59746},"setIdx":0,"setId":0,"iconIdx":98},{"icon":{"paths":["M889.6 512c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0h-348.16v138.667c0.033 0.475 0.052 1.030 0.052 1.589 0 13.432-10.888 24.32-24.32 24.32-7.336 0-13.914-3.248-18.373-8.386l-0.025-0.030-170.667-170.667c-4.324-4.388-6.994-10.415-6.994-17.067s2.67-12.679 6.997-17.070l-0.003 0.003 170.667-170.667c4.483-5.138 11.043-8.367 18.356-8.367 13.432 0 24.32 10.888 24.32 24.32 0 0.241-0.004 0.482-0.011 0.722l0.001-0.035v137.813h348.16c17.726 0.239 32.003 14.664 32.003 32.424 0 0.151-0.001 0.302-0.003 0.452l0-0.023zM166.4 206.507c-17.673 0-32 14.327-32 32v0 546.987c0 17.673 14.327 32 32 32s32-14.327 32-32v0-546.987c0.002-0.128 0.003-0.279 0.003-0.43 0-17.437-14.136-31.573-31.573-31.573-0.151 0-0.302 0.001-0.452 0.003l0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-left-line"]},"attrs":[{}],"properties":{"order":7064,"id":473,"name":"black-left-line","prevSize":32,"code":59747},"setIdx":0,"setId":0,"iconIdx":99},{"icon":{"paths":["M779.947 479.147h-347.733v-147.2c0.001-0.068 0.001-0.148 0.001-0.229 0-11.075-8.978-20.053-20.053-20.053-5.489 0-10.462 2.205-14.084 5.778l0.002-0.002-179.627 179.627c-3.57 3.619-5.774 8.592-5.774 14.080s2.205 10.461 5.777 14.082l-0.002-0.002 179.627 179.627c3.619 3.57 8.593 5.776 14.081 5.776 11.075 0 20.053-8.978 20.053-20.053 0-0.081-0-0.161-0.001-0.241l0 0.012v-147.2h347.733c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-left"]},"attrs":[{}],"properties":{"order":7065,"id":472,"name":"black-left","prevSize":32,"code":59748},"setIdx":0,"setId":0,"iconIdx":100},{"icon":{"paths":["M725.333 508.16c4.324 4.388 6.994 10.415 6.994 17.067s-2.67 12.679-6.997 17.070l0.003-0.003-170.667 170.667c-4.484 5.15-11.050 8.386-18.373 8.386-13.432 0-24.32-10.888-24.32-24.32 0-0.398 0.010-0.795 0.029-1.188l-0.002 0.056v-139.093h-345.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h348.16v-137.387c-0.017-0.338-0.026-0.734-0.026-1.133 0-13.432 10.888-24.32 24.32-24.32 7.323 0 13.889 3.236 18.348 8.357l0.025 0.029zM857.6 205.653c-0.128-0.002-0.279-0.003-0.43-0.003-17.437 0-31.573 14.136-31.573 31.573 0 0.151 0.001 0.302 0.003 0.452l-0-0.023v547.413c0 17.673 14.327 32 32 32s32-14.327 32-32v0-547.413c0-17.673-14.327-32-32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-right-line"]},"attrs":[{}],"properties":{"order":7066,"id":471,"name":"black-right-line","prevSize":32,"code":59749},"setIdx":0,"setId":0,"iconIdx":101},{"icon":{"paths":["M623.787 317.44c-3.619-3.57-8.593-5.776-14.081-5.776-11.075 0-20.053 8.978-20.053 20.053 0 0.081 0 0.161 0.001 0.241l-0-0.012v147.2h-347.733c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h347.733v147.2c-0.001 0.068-0.001 0.148-0.001 0.229 0 11.075 8.978 20.053 20.053 20.053 5.489 0 10.462-2.205 14.084-5.778l-0.002 0.002 179.627-179.627c3.57-3.619 5.774-8.592 5.774-14.080s-2.205-10.461-5.777-14.082l0.002 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-right"]},"attrs":[{}],"properties":{"order":7067,"id":470,"name":"black-right","prevSize":32,"code":59750},"setIdx":0,"setId":0,"iconIdx":102},{"icon":{"paths":["M527.36 221.013c-4.388-4.324-10.415-6.994-17.067-6.994s-12.679 2.67-17.070 6.997l0.003-0.003-168.533 170.667c-5.665 4.412-9.274 11.234-9.274 18.899 0 13.196 10.697 23.893 23.893 23.893 0.862 0 1.713-0.046 2.552-0.135l-0.104 0.009h136.96v346.027c0 17.673 14.327 32 32 32s32-14.327 32-32v0-349.44h136.533c0.734 0.080 1.586 0.126 2.448 0.126 13.196 0 23.893-10.697 23.893-23.893 0-7.665-3.609-14.487-9.221-18.859l-0.053-0.040z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["black-up"]},"attrs":[{}],"properties":{"order":7068,"id":469,"name":"black-up","prevSize":32,"code":59751},"setIdx":0,"setId":0,"iconIdx":103},{"icon":{"paths":["M550.4 566.613l96 85.333-96 73.387zM550.4 290.133v164.267l96.427-89.173zM938.667 308.907v405.76c0 123.712-100.288 224-224 224v0h-405.333c-123.712 0-224-100.288-224-224v0-405.76c0.243-123.528 100.438-223.573 224-223.573 0 0 0 0 0 0l405.333-0c0-0 0-0 0-0 123.562 0 223.757 100.045 224 223.55l0 0.023zM728.32 655.36c0.012-0.319 0.018-0.694 0.018-1.071 0-9.412-4.118-17.862-10.652-23.647l-0.033-0.029-133.973-118.613 134.4-124.16c6.322-5.863 10.265-14.214 10.265-23.486 0-0.443-0.009-0.885-0.027-1.324l0.002 0.063c-0.501-9.71-5.201-18.231-12.305-23.841l-0.068-0.052-177.92-139.52c-5.36-4.194-12.198-6.726-19.627-6.726-17.638 0-31.942 14.269-32 31.894l-0 0.005v198.827l-124.587-111.36c-5.638-5.050-13.125-8.138-21.333-8.138-17.69 0-32.031 14.341-32.031 32.031 0 9.482 4.12 18.002 10.668 23.867l0.030 0.027 167.253 149.333v2.56l-167.68 156.587c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0 124.16-114.773v191.573c-0.002 0.115-0.002 0.251-0.002 0.387 0 12.4 7.246 23.107 17.735 28.119l0.188 0.081c4.102 2.093 8.937 3.347 14.058 3.413l0.022 0c0.005 0 0.012 0 0.019 0 7.438 0 14.276-2.572 19.672-6.876l-0.064 0.049 177.92-137.813c6.087-5.738 10.060-13.661 10.661-22.508l0.006-0.105z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bluetooth"]},"attrs":[{}],"properties":{"order":7069,"id":468,"name":"bluetooth","prevSize":32,"code":59752},"setIdx":0,"setId":0,"iconIdx":104},{"icon":{"paths":["M480 223.147h-2.987c-87.327-51.938-189.467-89.771-298.401-107.289l-4.959-0.658c-3.462-0.553-7.454-0.869-11.52-0.869-42.415 0-76.8 34.385-76.8 76.8 0 0.006 0 0.011 0 0.017l-0-0.001v529.493c-0 0.048-0 0.105-0 0.161 0 37.574 27.287 68.776 63.125 74.869l0.448 0.063c123.224 22.483 233.249 60.722 334.723 113.191l-6.617-3.111h2.987zM233.387 320.853h96.853c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-96.853c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM361.387 512.853h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h128c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM938.667 188.16v534.187c0.003 0.243 0.004 0.53 0.004 0.817 0 36.883-26.441 67.591-61.401 74.202l-0.47 0.074c-123.52 20.478-234.344 58.283-335.972 111.298l6.159-2.925h-2.987v-682.667h2.987c86.908-51.299 188.231-89.542 296.122-108.833l5.531-0.82c3.852-0.681 8.288-1.071 12.814-1.071 42.127 0 76.376 33.732 77.211 75.659l0.001 0.078z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book-open"]},"attrs":[{}],"properties":{"order":7070,"id":467,"name":"book-open","prevSize":32,"code":59753},"setIdx":0,"setId":0,"iconIdx":105},{"icon":{"paths":["M725.333 85.333h-426.667c-117.821 0-213.333 95.513-213.333 213.333v0 426.667c0 117.821 95.513 213.333 213.333 213.333v0h426.667c117.821 0 213.333-95.513 213.333-213.333v0-426.667c0-117.821-95.513-213.333-213.333-213.333v0zM490.667 763.733v0c-60.426-31.39-130.508-55.827-204.326-69.662l-4.741-0.738c-24.097-2.672-42.667-22.923-42.667-47.512 0-0.097 0-0.193 0.001-0.29l-0 0.015v-338.347c-0-0.074-0.001-0.161-0.001-0.248 0-27.099 21.968-49.067 49.067-49.067 2.864 0 5.67 0.245 8.399 0.716l-0.292-0.042c72.534 11.59 137.599 35.507 195.914 69.694l-2.634-1.427zM784.213 645.973c0.001 0.12 0.002 0.263 0.002 0.405 0 23.695-16.944 43.433-39.376 47.759l-0.306 0.049c-78.745 12.806-149.457 36.941-214.168 70.95l3.821-1.83v-436.053c55.034-32.947 119.168-57.741 187.495-70.678l3.651-0.575c2.438-0.426 5.246-0.669 8.11-0.669 27.12 0 49.145 21.812 49.489 48.85l0 0.033z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book-square"]},"attrs":[{}],"properties":{"order":7071,"id":466,"name":"book-square","prevSize":32,"code":59754},"setIdx":0,"setId":0,"iconIdx":106},{"icon":{"paths":["M149.333 790.613v-25.6c0-69.043 55.97-125.013 125.013-125.013v0h600.32v150.613c-0.241 81.821-66.625 148.056-148.479 148.056-0.3 0-0.6-0.001-0.9-0.003l0.046 0h-426.667c-0.254 0.002-0.554 0.002-0.854 0.002-81.854 0-148.238-66.235-148.479-148.033l-0-0.023zM874.667 233.387v341.333h-600.32c-48.321 0.579-92.165 19.283-125.148 49.615l0.134-0.122v-390.827c0.241-81.821 66.625-148.056 148.479-148.056 0.3 0 0.6 0.001 0.9 0.003l-0.046-0h426.667c0.254-0.002 0.554-0.002 0.854-0.002 81.854 0 148.238 66.235 148.479 148.033l0 0.023zM584.107 450.987c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-204.373c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h204.373c17.673 0 32-14.327 32-32h-0zM707.413 298.667c0-17.673-14.327-32-32-32v0h-327.68c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h327.68c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["book"]},"attrs":[{}],"properties":{"order":7072,"id":465,"name":"book","prevSize":32,"code":59755},"setIdx":0,"setId":0,"iconIdx":107},{"icon":{"paths":["M623.36 590.933l-63.573-36.267c-13.655-8.258-30.15-13.144-47.787-13.144s-34.132 4.886-48.206 13.379l0.419-0.235-63.573 37.973c-9.875 5.994-21.811 9.542-34.575 9.542-37.231 0-67.413-30.182-67.413-67.413 0-0.505 0.006-1.008 0.017-1.51l-0.001 0.075v-341.333c0.483-59.014 48.435-106.667 107.517-106.667 0.001 0 0.002 0 0.004 0l213.333-0c58.643 0.961 105.813 48.725 105.813 107.506 0 0.005-0 0.010-0 0.014l0-0.001v341.333c-0.635 36.743-30.569 66.285-67.404 66.285-12.762 0-24.696-3.546-34.87-9.707l0.301 0.169zM789.333 228.693v304.64c0 0.027 0 0.059 0 0.091 0 72.578-58.836 131.413-131.413 131.413-25.063 0-48.488-7.016-68.417-19.192l0.577 0.328-63.147-37.973c-4.238-2.689-9.399-4.286-14.933-4.286s-10.696 1.596-15.049 4.354l0.115-0.068-63.147 37.973c-19.352 11.848-42.777 18.865-67.84 18.865-72.578 0-131.413-58.836-131.413-131.413 0-0.032 0-0.064 0-0.096l-0 0.005v-304.64c-88.209 35.625-149.32 120.541-149.333 219.732l-0 0.002v253.44c-0 0.127-0 0.277-0 0.427 0 130.545 105.828 236.373 236.373 236.373 0.15 0 0.3-0 0.45-0l-0.023 0h379.733c0.127 0 0.277 0 0.427 0 130.545 0 236.373-105.828 236.373-236.373 0-0.15-0-0.3-0-0.45l0 0.023v-253.44c-0.013-99.192-61.124-184.109-147.748-219.166l-1.585-0.567z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bookmark-2"]},"attrs":[{}],"properties":{"order":7073,"id":464,"name":"bookmark-2","prevSize":32,"code":59756},"setIdx":0,"setId":0,"iconIdx":108},{"icon":{"paths":["M938.667 341.333v345.6c-2.382 138.807-114.881 250.558-253.754 251.733l-0.113 0.001h-343.467c-0.003 0-0.006 0-0.009 0-140.635 0-254.783-113.402-255.99-253.752l-0.001-0.115v-343.467c-0-0.138-0-0.301-0-0.464 0-105.488 63.803-196.074 154.923-235.272l1.664-0.637c2.13-0.995 4.625-1.576 7.256-1.576 9.661 0 17.493 7.832 17.493 17.493 0 0.104-0.001 0.208-0.003 0.311l0-0.016v415.573c-0.001 0.128-0.001 0.279-0.001 0.43 0 56.79 46.037 102.827 102.827 102.827 0.3 0 0.6-0.001 0.9-0.004l-0.046 0c0.063 0 0.138 0 0.213 0 15.408 0 30.008-3.461 43.065-9.648l-0.612 0.261 98.56-42.667 98.56 42.667c12.445 5.926 27.045 9.387 42.453 9.387 0.075 0 0.15-0 0.225-0l-0.012 0c0.255 0.002 0.556 0.004 0.857 0.004 56.491 0 102.342-45.554 102.823-101.931l0-0.046v-416.853c-0.002-0.088-0.003-0.192-0.003-0.296 0-9.661 7.832-17.493 17.493-17.493 2.631 0 5.126 0.581 7.364 1.621l-0.108-0.045c93.243 39.635 157.44 130.454 157.44 236.267 0 0.037-0 0.075-0 0.112l0-0.005zM370.347 574.72c0.011 0 0.024 0 0.037 0 6.188 0 12.046-1.417 17.266-3.943l-0.237 0.103 107.52-47.787c5.026-2.251 10.893-3.562 17.067-3.562s12.040 1.311 17.338 3.67l-0.271-0.108 107.52 47.787c4.983 2.423 10.841 3.84 17.029 3.84 0.013 0 0.026-0 0.039-0l-0.002 0c0.257 0.006 0.559 0.010 0.863 0.010 21.147 0 38.345-16.906 38.817-37.939l0.001-0.044v-433.493c0.003-0.127 0.005-0.277 0.005-0.427 0-9.661-7.832-17.493-17.493-17.493-0.002 0-0.004 0-0.005 0l-327.68-0c-9.661 0-17.493 7.832-17.493 17.493v0 433.92c0.473 21.077 17.671 37.983 38.817 37.983 0.303 0 0.606-0.003 0.907-0.010l-0.045 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bookmark"]},"attrs":[{}],"properties":{"order":7074,"id":463,"name":"bookmark","prevSize":32,"code":59757},"setIdx":0,"setId":0,"iconIdx":109},{"icon":{"paths":["M585.813 426.667c0 0.001 0 0.001 0 0.002 0 30.955-24.973 56.077-55.87 56.318l-0.023 0h-91.733v-112.64h91.733c0-0 0.001-0 0.002-0 30.869 0 55.893 25.024 55.893 55.893 0 0.15-0.001 0.3-0.002 0.45l0-0.023zM529.92 546.987h-91.733v111.787h91.733c30.869 0 55.893-25.024 55.893-55.893s-25.024-55.893-55.893-55.893h-0zM981.333 454.827v112.213c-70.692 0-128 57.308-128 128v0 49.493c-0.241 83.706-68.154 151.469-151.893 151.469-0.3 0-0.6-0.001-0.9-0.003l0.046 0h-377.173c-0.253 0.002-0.553 0.002-0.853 0.002-83.888 0-151.893-68.005-151.893-151.893 0-0.001 0-0.002 0-0.003l-0 0v-49.493c0-70.692-57.308-128-128-128v0 0-111.787c70.692 0 128-57.308 128-128v0-46.933c-0-0.001-0-0.002-0-0.002 0-83.888 68.005-151.893 151.893-151.893 0.3 0 0.6 0.001 0.9 0.003l-0.046-0h377.173c0.253-0.002 0.553-0.002 0.853-0.002 83.888 0 151.893 68.005 151.893 151.893 0 0.001-0 0.002-0 0.003l0-0v47.36c0 70.692 57.308 128 128 128v0zM612.267 514.56c23.894-21.988 38.813-53.412 38.813-88.32 0-66.211-53.67-119.886-119.879-119.893l-125.014-0c-0.128-0.002-0.279-0.003-0.43-0.003-17.437 0-31.573 14.136-31.573 31.573 0 0.151 0.001 0.302 0.003 0.452l-0-0.023v352c-0.002 0.128-0.003 0.279-0.003 0.43 0 17.437 14.136 31.573 31.573 31.573 0.151 0 0.302-0.001 0.452-0.003l-0.023 0h123.733c66.215 0 119.893-53.678 119.893-119.893v0c0-0.093 0-0.204 0-0.314 0-34.681-14.938-65.873-38.73-87.493l-0.097-0.087z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bootstrap"]},"attrs":[{}],"properties":{"order":7075,"id":462,"name":"bootstrap","prevSize":32,"code":59758},"setIdx":0,"setId":0,"iconIdx":110},{"icon":{"paths":["M768 221.013h-68.693v-42.667c0-63.859-51.768-115.627-115.627-115.627h-144.64c-0.006-0-0.013-0-0.020-0-63.109 0-114.409 50.559-115.605 113.381l-0.002 0.112v42.667h-65.28c-65.457 0.577-122.394 36.498-152.715 89.582l-0.458 0.871c-8.394 14.38-15.143 31.029-19.371 48.658l-0.255 1.262c-3.195 12.52-5.029 26.893-5.029 41.695 0 5.751 0.277 11.437 0.818 17.045l-0.056-0.713 6.4 61.44c75.968 57.848 168.027 98.582 268.31 114.738l3.477 0.462c1.669 66.096 55.647 119.040 121.99 119.040 0.013 0 0.026-0 0.039-0l47.358 0c66.122-0.204 119.897-52.784 122.022-118.418l0.005-0.195c110.549-16.224 208.525-60.737 289.124-125.893l-1.124 0.88 2.987-35.84 2.133-18.347c0.472-4.861 0.741-10.508 0.741-16.219 0-97.773-78.866-177.126-176.453-177.914l-0.075-0zM389.547 178.347c-0-28.513 23.114-51.627 51.627-51.627v0h144.64c28.513 0 51.627 23.114 51.627 51.627v0 42.667h-250.027zM531.627 651.093h-49.493c-27.807-0.644-50.699-20.899-55.415-47.439l-0.051-0.348c-0.197-1.855-0.31-4.008-0.31-6.187s0.113-4.331 0.332-6.452l-0.022 0.265v-101.547h164.267v101.547c0.199 1.919 0.312 4.146 0.312 6.4s-0.113 4.481-0.335 6.676l0.023-0.276c-5.79 26.171-28.796 45.456-56.305 45.456-1.808 0-3.596-0.083-5.361-0.246l0.227 0.017zM929.28 554.667l-20.053 213.333c-8.574 90.563-84.24 160.854-176.323 160.854-0.111 0-0.223-0-0.334-0l0.017 0h-436.48c-91.163-0.126-166.209-68.96-176.14-157.487l-0.073-0.806-22.613-207.36c66.831 41.438 144.765 72.842 227.982 89.684l4.551 0.769c25.431 60.294 84.007 101.867 152.306 101.973l0.014 0h47.36c0.317 0.002 0.691 0.003 1.065 0.003 68.173 0 126.672-41.422 151.702-100.471l0.406-1.079c93.314-18.191 176.121-52.818 249.192-101.011l-2.579 1.598z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["briefcase"]},"attrs":[{}],"properties":{"order":7076,"id":461,"name":"briefcase","prevSize":32,"code":59759},"setIdx":0,"setId":0,"iconIdx":111},{"icon":{"paths":["M579.413 635.733c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0-22.187-22.187-22.613 22.187c-5.528 5.793-13.308 9.394-21.93 9.394-0.24 0-0.48-0.003-0.719-0.008l0.036 0.001c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 22.613-22.187-22.613-22.613c-5.321-5.699-8.588-13.376-8.588-21.815 0-17.673 14.327-32 32-32 8.44 0 16.116 3.267 21.834 8.606l-0.019-0.017 22.613 22.613 22.187-22.613c5.699-5.321 13.376-8.588 21.815-8.588 17.673 0 32 14.327 32 32 0 8.44-3.267 16.116-8.606 21.834l0.017-0.019-22.187 22.613zM942.080 430.933v0l-3.413 54.613c-64.474 52.332-142.070 91.201-226.985 111.031l-3.841 0.756c0 5.12 0 9.813 0 15.36 0 109.102-88.445 197.547-197.547 197.547s-197.547-88.445-197.547-197.547v0c-0.11-2.039-0.173-4.425-0.173-6.827s0.063-4.788 0.187-7.158l-0.014 0.332c-85.805-19.895-161.079-56-225.894-105.174l1.467 1.067-6.4-61.44c-0.509-4.735-0.8-10.227-0.8-15.787s0.291-11.052 0.857-16.462l-0.057 0.675c1.432-18.613 5.38-35.872 11.519-52.052l-0.426 1.279c3.888-10.268 7.907-18.843 12.478-27.068l-0.531 1.041c5.881-10 12.228-18.655 19.339-26.612l-0.139 0.159 3.84-4.693c7.149-7.698 14.818-14.69 23.030-21.011l0.436-0.323 4.267-2.987c7.261-4.731 15.665-9.294 24.431-13.19l1.169-0.464 4.693-2.56c8.611-3.868 18.852-7.379 29.451-9.977l1.269-0.263h7.253c10.18-2.258 21.939-3.647 33.989-3.838l0.144-0.002h65.28v-47.36c0-63.859 51.768-115.627 115.627-115.627v0h144.213c0-0 0-0 0.001-0 63.944 0 115.81 51.716 116.052 115.603l0 0.023v45.227h66.133c0.313-0.002 0.683-0.003 1.053-0.003 63.958 0 120.014 33.828 151.254 84.568l0.44 0.768c5.351 9.203 10.518 20.027 14.828 31.275l0.532 1.579c5.932 17.028 9.358 36.655 9.358 57.083 0 6.041-0.3 12.013-0.885 17.9l0.060-0.744zM387.413 237.227h247.893v-45.227c-0.242-28.564-23.453-51.627-52.052-51.627-0.001 0-0.001 0-0.002 0l-144.213-0c-28.513 0-51.627 23.114-51.627 51.627h0zM645.547 613.547c0-73.756-59.791-133.547-133.547-133.547s-133.547 59.791-133.547 133.547c0 73.756 59.791 133.547 133.547 133.547h0c73.658-0.242 133.305-59.888 133.547-133.523l0-0.023zM512 875.093c-131.824-0.272-240.771-97.867-258.824-224.738l-0.163-1.395c-59.332-18.239-110.947-42.169-158.476-72.006l2.743 1.606 22.613 210.347c9.605 89.576 84.785 158.72 176.114 158.72 0.035 0 0.070-0 0.105-0l436.475 0c92.137-0.038 167.858-70.275 176.583-160.128l0.057-0.726 20.053-215.467c-45.542 30.071-97.977 55.42-153.724 73.394l-4.569 1.273c-16.662 129.637-126.197 228.836-258.957 229.12l-0.029 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brifecase-cros"]},"attrs":[{}],"properties":{"order":7077,"id":460,"name":"brifecase-cros","prevSize":32,"code":59760},"setIdx":0,"setId":0,"iconIdx":112},{"icon":{"paths":["M493.227 694.613c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003-39.68-38.827c-9.475-5.672-15.72-15.881-15.72-27.549 0-17.673 14.327-32 32-32 10.907 0 20.54 5.457 26.317 13.79l0.069 0.106 18.773 17.92 71.253-64c5.638-5.050 13.125-8.138 21.333-8.138 17.69 0 32.031 14.341 32.031 32.031 0 9.482-4.12 18.002-10.668 23.867l-0.030 0.027-92.16 82.773c-5.366 5.45-12.689 8.958-20.829 9.383l-0.078 0.003zM942.080 430.933v0l-3.413 54.613c-64.474 52.332-142.070 91.201-226.985 111.031l-3.841 0.756c0 5.12 0 9.813 0 15.36 0 109.102-88.445 197.547-197.547 197.547s-197.547-88.445-197.547-197.547v0c-0.11-2.039-0.173-4.425-0.173-6.827s0.063-4.788 0.187-7.158l-0.014 0.332c-85.805-19.895-161.079-56-225.894-105.174l1.467 1.067-6.4-61.44c-0.509-4.735-0.8-10.227-0.8-15.787s0.291-11.052 0.857-16.462l-0.057 0.675c1.432-18.613 5.38-35.872 11.519-52.052l-0.426 1.279c3.888-10.268 7.907-18.843 12.478-27.068l-0.531 1.041c5.881-10 12.228-18.655 19.339-26.612l-0.139 0.159 3.84-4.693c7.149-7.698 14.818-14.69 23.030-21.011l0.436-0.323 4.267-2.987c7.261-4.731 15.665-9.294 24.431-13.19l1.169-0.464 4.693-2.56c8.611-3.868 18.852-7.379 29.451-9.977l1.269-0.263h7.253c10.18-2.258 21.939-3.647 33.989-3.838l0.144-0.002h65.28v-47.36c0-63.859 51.768-115.627 115.627-115.627v0h144.213c0-0 0-0 0.001-0 63.944 0 115.81 51.716 116.052 115.603l0 0.023v45.227h66.133c0.313-0.002 0.683-0.003 1.053-0.003 63.958 0 120.014 33.828 151.254 84.568l0.44 0.768c5.351 9.203 10.518 20.027 14.828 31.275l0.532 1.579c5.932 17.028 9.358 36.655 9.358 57.083 0 6.041-0.3 12.013-0.885 17.9l0.060-0.744zM387.413 237.227h247.893v-45.227c-0.242-28.564-23.453-51.627-52.052-51.627-0.001 0-0.001 0-0.002 0l-144.213-0c-28.513 0-51.627 23.114-51.627 51.627h0zM645.547 613.547c0-73.756-59.791-133.547-133.547-133.547s-133.547 59.791-133.547 133.547c0 73.756 59.791 133.547 133.547 133.547v0c73.658-0.242 133.305-59.888 133.547-133.523l0-0.023zM512 875.093c-131.824-0.272-240.771-97.867-258.824-224.738l-0.163-1.395c-59.332-18.239-110.947-42.169-158.476-72.006l2.743 1.606 22.613 210.347c9.605 89.576 84.785 158.72 176.114 158.72 0.035 0 0.070-0 0.105-0l436.475 0c92.137-0.038 167.858-70.275 176.583-160.128l0.057-0.726 20.053-215.467c-45.542 30.071-97.977 55.42-153.724 73.394l-4.569 1.273c-16.662 129.637-126.197 228.836-258.957 229.12l-0.029 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brifecase-tick"]},"attrs":[{}],"properties":{"order":7078,"id":459,"name":"brifecase-tick","prevSize":32,"code":59761},"setIdx":0,"setId":0,"iconIdx":113},{"icon":{"paths":["M942.080 430.933c0.525-5.144 0.825-11.115 0.825-17.157 0-20.428-3.426-40.056-9.735-58.34l0.377 1.256c-4.842-12.826-10.009-23.65-15.953-33.97l0.593 1.117c-31.679-51.508-87.736-85.336-151.694-85.336-0.37 0-0.74 0.001-1.11 0.003l0.057-0h-66.133v-46.507c-0.242-63.911-52.108-115.627-116.053-115.627-0 0-0 0-0.001 0l-144.213 0c-63.859 0-115.627 51.768-115.627 115.627v0 45.227h-65.28c-12.195 0.193-23.954 1.582-35.308 4.055l1.175-0.215h-7.253c-11.868 2.861-22.109 6.372-31.903 10.707l1.183-0.467-4.693 4.693c-9.72 4.652-17.97 9.483-25.778 14.904l0.605-0.397-4.267 2.987c-8.649 6.643-16.317 13.635-23.36 21.217l-0.107 0.116-4.267 3.84c-6.963 7.687-13.304 16.201-18.788 25.291l-0.412 0.736c-4.040 7.184-8.058 15.758-11.474 24.631l-0.472 1.395c-5.714 14.901-9.661 32.161-11.054 50.136l-0.040 0.637c-0.509 4.735-0.8 10.227-0.8 15.787s0.291 11.052 0.857 16.462l-0.057-0.675 6.4 61.44c64.116 48.929 140.437 85.513 223.437 104.616l3.976 0.77c-0.11 2.039-0.173 4.425-0.173 6.827s0.063 4.788 0.187 7.158l-0.014-0.332c0 109.102 88.445 197.547 197.547 197.547s197.547-88.445 197.547-197.547v0c0-5.547 0-10.24 0-15.36 87.703-21.299 164.222-60.38 228.833-113.431l-0.993 0.791 5.12-54.613zM387.413 192c0-28.513 23.114-51.627 51.627-51.627h144.213c0.001-0 0.001-0 0.002-0 28.598 0 51.81 23.063 52.051 51.604l0 0.023v45.227h-247.893zM512 746.667c-0.126 0-0.276 0.001-0.426 0.001-73.991 0-133.973-59.982-133.973-133.973s59.982-133.973 133.973-133.973c73.991 0 133.973 59.982 133.973 133.973 0 0.15-0 0.3-0.001 0.449l0-0.023c0 0.127 0.001 0.277 0.001 0.427 0 73.756-59.791 133.547-133.547 133.547-0 0-0-0-0-0l-0-0zM770.987 645.547c60.316-19.247 112.751-44.596 160.725-76.17l-2.432 1.503-20.053 215.467c-8.782 90.578-84.503 160.815-176.636 160.853l-436.484 0c-0.030 0-0.065 0-0.1 0-91.329 0-166.508-69.144-176.046-157.94l-0.068-0.78-22.613-210.347c44.787 28.231 96.402 52.161 151.072 69.152l4.661 1.248c17.751 128.477 126.843 226.351 258.795 226.351 133.010 0 242.793-99.45 259.046-228.049l0.133-1.288zM550.4 554.667v64.427c-0.131 11.158-5.805 20.964-14.392 26.807l-0.114 0.073-61.013 36.693c-4.468 3.213-10.049 5.138-16.080 5.138-0.347 0-0.692-0.006-1.036-0.019l0.050 0.001c-0.039 0-0.085 0-0.131 0-17.673 0-32-14.327-32-32 0-11.221 5.775-21.092 14.515-26.805l0.122-0.075 46.080-29.44v-44.8c0-17.673 14.327-32 32-32s32 14.327 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brifecase-timer"]},"attrs":[{}],"properties":{"order":7079,"id":458,"name":"brifecase-timer","prevSize":32,"code":59762},"setIdx":0,"setId":0,"iconIdx":114},{"icon":{"paths":["M918.187 106.24c-12.364-12.855-29.71-20.84-48.921-20.84-13.514 0-26.105 3.951-36.681 10.762l0.268-0.162c-144.931 87.657-269.841 188.81-379.374 304.655l-0.786 0.839c-65.141 68.091-124.090 143.18-175.288 223.682l-3.486 5.864c-103.253 8.96-155.733 103.68-188.587 240.64-1.3 4.421-2.047 9.5-2.047 14.754 0 29.926 24.26 54.187 54.187 54.187 5.132 0 10.097-0.713 14.802-2.047l-0.382 0.092c136.96-31.573 233.387-85.333 240.213-188.587v0c86.463-54.384 161.586-113.5 229.939-179.577l-0.392 0.377c117.051-110.187 218.366-235.124 301.501-372.305l4.419-7.855c6.716-10.304 10.711-22.916 10.711-36.461 0-18.79-7.688-35.785-20.090-48.011l-0.008-0.008zM402.347 667.307l-45.227-44.8c33.046-48.077 65.701-89.81 100.671-129.453l-1.257 1.453 73.813 73.387c-38.151 33.522-79.878 66.171-123.414 96.4l-4.586 3.014z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["brush"]},"attrs":[{}],"properties":{"order":7080,"id":457,"name":"brush","prevSize":32,"code":59763},"setIdx":0,"setId":0,"iconIdx":115},{"icon":{"paths":["M712.533 85.333h-401.067c-0.127-0-0.277-0-0.427-0-124.654 0-225.707 101.052-225.707 225.707 0 0.15 0 0.3 0 0.45l-0-0.023v401.067c-0 0.127-0 0.277-0 0.427 0 124.654 101.052 225.707 225.707 225.707 0.15 0 0.3-0 0.45-0l-0.023 0h401.067c0.127 0 0.277 0 0.427 0 124.654 0 225.707-101.052 225.707-225.707 0-0.15-0-0.3-0-0.45l0 0.023v-401.067c0-0.127 0-0.277 0-0.427 0-124.654-101.052-225.707-225.707-225.707-0.15 0-0.3 0-0.45 0l0.023-0zM371.2 679.253l-97.28-96c-16.29-16.42-26.357-39.034-26.357-64s10.067-47.58 26.363-64.006l-0.006 0.006 134.827-134.827-24.747-26.453c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 74.24 76.373 155.733 155.307c4.928 5.066 7.966 11.991 7.966 19.627s-3.039 14.561-7.973 19.633l0.006-0.006-160 160c-16.51 16.442-39.281 26.606-64.427 26.606s-47.917-10.165-64.43-26.61l0.003 0.003zM712.533 758.187c-0.519 0.015-1.129 0.024-1.741 0.024-34.84 0-63.221-27.654-64.389-62.21l-0.003-0.107c4.578-36.866 19.958-69.49 42.828-95.332l-0.161 0.186c5.672-7.3 14.453-11.952 24.32-11.952s18.648 4.652 24.268 11.882l0.052 0.069c23.065 25.612 38.528 58.483 42.596 94.799l0.070 0.775c-1.072 34.743-29.494 62.499-64.398 62.499-1.812 0-3.607-0.075-5.381-0.222l0.232 0.015z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bucket-square"]},"attrs":[{}],"properties":{"order":7081,"id":456,"name":"bucket-square","prevSize":32,"code":59764},"setIdx":0,"setId":0,"iconIdx":116},{"icon":{"paths":["M713.387 907.52c0 0.001 0 0.002 0 0.003 0 17.052-13.703 30.903-30.697 31.143l-0.023 0h-526.933c-17.202 0-31.147-13.945-31.147-31.147s13.945-31.147 31.147-31.147v0h526.933c17.017 0.241 30.72 14.092 30.72 31.144 0 0.001-0 0.002-0 0.003l0-0zM841.387 612.693c-8.432-10.781-21.441-17.646-36.053-17.646s-27.622 6.865-35.978 17.546l-0.076 0.1c-33.090 38.107-55.41 86.382-61.747 139.563l-0.12 1.237c3.486 51.113 45.802 91.254 97.493 91.254s94.007-40.141 97.477-90.952l0.017-0.302c-5.25-54.374-27.129-102.834-60.419-141.105l0.259 0.305zM128 538.453c-5.321-13.829-8.403-29.828-8.403-46.547 0-37.248 15.298-70.923 39.954-95.084l0.022-0.022 221.867-221.867-36.693-36.693c-2.728-4.536-4.341-10.010-4.341-15.861 0-17.202 13.945-31.147 31.147-31.147 5.851 0 11.325 1.613 16.002 4.42l-0.141-0.079 63.573 63.573s0 0 0 0l275.2 274.773c5.786 6.087 9.665 14.037 10.65 22.86l0.016 0.18c0.614 2.628 0.965 5.646 0.965 8.747s-0.352 6.118-1.018 9.016l0.052-0.27c-2.010 6.303-5.228 11.726-9.412 16.241l0.025-0.028-118.613 118.187-116.053 120.747c-6.338 6.238-13.318 11.862-20.819 16.752l-0.514 0.314c-6.764 4.826-14.507 8.995-22.758 12.136l-0.709 0.237c-13.966 5.695-30.172 9-47.149 9-1.125 0-2.246-0.015-3.363-0.043l0.165 0.003c-9.087-0.062-17.944-0.836-26.579-2.267l0.979 0.134c-27.399-5.553-51.111-18.698-69.547-37.121l0.001 0.001-142.933-141.653c-6.376-6.476-12.138-13.593-17.169-21.235l-0.325-0.525-2.133-3.84c-4.263-6.13-8.252-13.132-11.601-20.486l-0.345-0.847s0-0.853 0-1.707zM203.947 442.027c-11.198 11.008-18.589 25.857-20.035 42.411l-0.018 0.256 480.427-22.613-237.653-240.64z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bucket"]},"attrs":[{}],"properties":{"order":7082,"id":455,"name":"bucket","prevSize":32,"code":59765},"setIdx":0,"setId":0,"iconIdx":117},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM682.667 691.2h-339.2c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h339.2c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM389.973 512c0-17.673 14.327-32 32-32v0h180.053c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-180.053c-17.673 0-32-14.327-32-32v0zM682.667 396.8h-339.2c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h339.2c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-1"]},"attrs":[{}],"properties":{"order":7083,"id":454,"name":"burger-menu-1","prevSize":32,"code":59766},"setIdx":0,"setId":0,"iconIdx":118},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM326.4 744.533c-26.914-0.243-48.638-22.117-48.638-49.065 0-27.099 21.968-49.067 49.067-49.067s49.067 21.968 49.067 49.067c0 0.149-0.001 0.299-0.002 0.448l0-0.023c-0.24 26.915-22.115 48.642-49.065 48.642-0.151 0-0.301-0.001-0.451-0.002l0.023 0zM326.4 561.067c-26.729-0.48-48.213-22.261-48.213-49.059 0-27.099 21.968-49.067 49.067-49.067 27.096 0 49.062 21.964 49.067 49.059l0 0c0 0.001 0 0.001 0 0.002 0 27.099-21.968 49.067-49.067 49.067-0.15 0-0.3-0.001-0.45-0.002l0.023 0zM326.4 377.173c-26.354-0.946-47.36-22.538-47.36-49.037 0-27.099 21.968-49.067 49.067-49.067 27.088 0 49.050 21.951 49.067 49.035l0 0.002c-0.242 27.15-22.307 49.067-49.491 49.067-0.001 0-0.001-0-0.002-0l0 0zM512 744.533c-26.914-0.243-48.638-22.117-48.638-49.065 0-27.099 21.968-49.067 49.067-49.067s49.067 21.968 49.067 49.067c0 0.149-0.001 0.299-0.002 0.448l0-0.023c-0.24 26.915-22.115 48.642-49.065 48.642-0.151 0-0.301-0.001-0.451-0.002l0.023 0zM512 561.067c-0.127 0.001-0.277 0.002-0.427 0.002-27.099 0-49.067-21.968-49.067-49.067s21.968-49.067 49.067-49.067c27.098 0 49.066 21.967 49.067 49.065l0 0c0.001 0.127 0.002 0.277 0.002 0.427 0 26.863-21.777 48.64-48.64 48.64-0.001 0-0.001-0-0.002-0l0 0zM512 377.173c-26.915-0.242-48.64-22.116-48.64-49.065 0-27.099 21.968-49.067 49.067-49.067s49.066 21.967 49.067 49.065l0 0c-0.242 27.15-22.307 49.067-49.491 49.067-0.001 0-0.001-0-0.002-0l0 0zM696.32 744.533c-26.914-0.243-48.638-22.117-48.638-49.065 0-27.099 21.968-49.067 49.067-49.067s49.067 21.968 49.067 49.067c0 0.149-0.001 0.299-0.002 0.448l0-0.023c-0.24 26.915-22.115 48.642-49.065 48.642-0.151 0-0.301-0.001-0.451-0.002l0.023 0zM696.32 561.067c-26.542-0.714-47.787-22.401-47.787-49.050 0-27.099 21.968-49.067 49.067-49.067 27.093 0 49.057 21.958 49.067 49.049l0 0.001c0 0.001 0 0.001 0 0.002 0 27.099-21.968 49.067-49.067 49.067-0.15 0-0.3-0.001-0.45-0.002l0.023 0zM696.32 377.173c-26.915-0.242-48.64-22.116-48.64-49.065 0-27.099 21.968-49.067 49.067-49.067s49.066 21.967 49.067 49.065l0 0c-0.228 26.709-21.578 48.357-48.147 49.065l-0.066 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-2"]},"attrs":[{}],"properties":{"order":7084,"id":453,"name":"burger-menu-2","prevSize":32,"code":59767},"setIdx":0,"setId":0,"iconIdx":119},{"icon":{"paths":["M213.333 132.693c-43.135 1.193-77.648 36.445-77.648 79.758 0 44.065 35.722 79.787 79.787 79.787 43.755 0 79.284-35.221 79.781-78.858l0-0.047c0.001-0.132 0.001-0.288 0.001-0.445 0-44.301-35.913-80.213-80.213-80.213-0.601 0-1.199 0.007-1.797 0.020l0.089-0.002zM512 132.693c-41.61 2.991-74.233 37.482-74.233 79.593 0 44.065 35.722 79.787 79.787 79.787 43.697 0 79.189-35.127 79.779-78.684l0.001-0.056c0.001-0.135 0.001-0.295 0.001-0.455 0-44.301-35.913-80.213-80.213-80.213-0.751 0-1.499 0.010-2.244 0.031l0.11-0.002zM814.933 132.693c-42.379 2.108-75.941 36.982-75.941 79.694 0 44.065 35.722 79.787 79.787 79.787 43.732 0 79.247-35.184 79.781-78.79l0-0.050c0.001-0.127 0.001-0.277 0.001-0.428 0-44.301-35.913-80.213-80.213-80.213-0.15 0-0.301 0-0.451 0.001l0.023-0zM213.333 432.64c-43.696 0.483-78.932 36.018-78.932 79.782 0 44.065 35.722 79.787 79.787 79.787s79.787-35.722 79.787-79.787c0-0.148-0-0.297-0.001-0.445l0 0.023c-0.482-43.933-36.208-79.361-80.209-79.361-0.152 0-0.303 0-0.455 0.001l0.023-0zM514.133 432.64c-43.696 0.483-78.932 36.018-78.932 79.782 0 44.065 35.722 79.787 79.787 79.787s79.787-35.722 79.787-79.787c0-0.148-0-0.297-0.001-0.445l0 0.023c-0.482-43.933-36.208-79.361-80.209-79.361-0.152 0-0.303 0-0.455 0.001l0.023-0zM816.64 432.64c-0.126-0.001-0.276-0.001-0.426-0.001-44.065 0-79.787 35.722-79.787 79.787s35.722 79.787 79.787 79.787c44.065 0 79.787-35.722 79.787-79.787 0-0.15-0-0.299-0.001-0.449l0 0.023c-0.477-43.636-35.724-78.883-79.315-79.36l-0.045-0zM213.333 732.16c-44.061 0.006-79.776 35.725-79.776 79.787 0 44.065 35.722 79.787 79.787 79.787s79.787-35.722 79.787-79.787c0-0.45-0.004-0.899-0.011-1.348l0.001 0.068c-0.953-43.418-36.261-78.278-79.765-78.507l-0.022-0zM512 732.16c-43.32 0.962-78.070 36.307-78.070 79.768 0 44.065 35.722 79.787 79.787 79.787s79.787-35.722 79.787-79.787c0-0.444-0.004-0.886-0.011-1.328l0.001 0.067c-0.951-43.565-36.491-78.517-80.195-78.517-0.456 0-0.912 0.004-1.366 0.011l0.068-0.001zM814.933 732.16c-43.507 0.726-78.497 36.165-78.497 79.776 0 44.065 35.722 79.787 79.787 79.787s79.787-35.722 79.787-79.787c0-0.446-0.004-0.892-0.011-1.337l0.001 0.067c-0.956-43.56-36.495-78.507-80.195-78.507-0.006 0-0.013 0-0.019 0l0.001-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-3"]},"attrs":[{}],"properties":{"order":7085,"id":452,"name":"burger-menu-3","prevSize":32,"code":59768},"setIdx":0,"setId":0,"iconIdx":120},{"icon":{"paths":["M879.36 575.147c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0h-665.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h665.6c17.673 0 32 14.327 32 32v0zM847.36 833.707h-665.6c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h665.6c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM181.76 316.587h588.373l-52.907 52.907c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0 107.52-107.52c2.69-2.42 4.962-5.236 6.741-8.368l0.086-0.165c1.413-3.676 2.232-7.929 2.232-12.373s-0.819-8.697-2.313-12.616l0.081 0.243c-1.712-3.968-4.012-7.363-6.833-10.246l0.006 0.006-107.52-109.227c-5.699-5.321-13.376-8.588-21.815-8.588-17.673 0-32 14.327-32 32 0 8.44 3.267 16.116 8.606 21.834l-0.017-0.019 52.907 52.907h-588.373c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-4"]},"attrs":[{}],"properties":{"order":7086,"id":451,"name":"burger-menu-4","prevSize":32,"code":59769},"setIdx":0,"setId":0,"iconIdx":121},{"icon":{"paths":["M746.667 544h-469.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h469.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM876.8 802.56c0-17.673-14.327-32-32-32v0h-665.6c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h665.6c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM876.8 221.44c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-665.6c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h665.6c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-5"]},"attrs":[{}],"properties":{"order":7087,"id":450,"name":"burger-menu-5","prevSize":32,"code":59770},"setIdx":0,"setId":0,"iconIdx":122},{"icon":{"paths":["M844.8 544h-665.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h665.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM778.667 802.56c0-17.673-14.327-32-32-32v0h-469.333c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h469.333c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM778.667 221.44c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-469.333c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h469.333c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu-6"]},"attrs":[{}],"properties":{"order":7088,"id":449,"name":"burger-menu-6","prevSize":32,"code":59771},"setIdx":0,"setId":0,"iconIdx":123},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM701.013 734.72h-244.48c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h244.48c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM712.96 544h-360.96c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h360.96c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM712.96 353.28h-143.787c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h143.787c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["burger-menu"]},"attrs":[{}],"properties":{"order":7089,"id":448,"name":"burger-menu","prevSize":32,"code":59772},"setIdx":0,"setId":0,"iconIdx":124},{"icon":{"paths":["M200.107 362.667h623.787c16.259 0 29.44 13.181 29.44 29.44h-0v111.787c0 16.259-13.181 29.44-29.44 29.44l-0 0h-623.787c-16.259 0-29.44-13.181-29.44-29.44v0-111.787c0-16.259 13.181-29.44 29.44-29.44v0zM853.333 200.107v90.453c0 16.259-13.181 29.44-29.44 29.44h-623.787c-16.259 0-29.44-13.181-29.44-29.44v0-90.453c-0.001-0.127-0.001-0.277-0.001-0.427 0-63.152 51.195-114.347 114.347-114.347 0.15 0 0.301 0 0.451 0.001l-0.023-0h453.12c0.127-0.001 0.277-0.001 0.427-0.001 63.152 0 114.347 51.195 114.347 114.347 0 0.15-0 0.301-0.001 0.451l0-0.023zM651.947 213.333c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-207.787c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h207.787c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM853.333 605.44v218.453c0.001 0.127 0.001 0.277 0.001 0.427 0 63.152-51.195 114.347-114.347 114.347-0.15 0-0.301-0-0.451-0.001l0.023 0h-453.12c-0.127 0.001-0.277 0.001-0.427 0.001-63.152 0-114.347-51.195-114.347-114.347 0-0.15 0-0.301 0.001-0.451l-0 0.023v-218.453c-0-16.259 13.181-29.44 29.44-29.44v0h623.787c16.259 0 29.44 13.181 29.44 29.44h-0zM394.667 746.667c0-29.455-23.878-53.333-53.333-53.333s-53.333 23.878-53.333 53.333c0 29.455 23.878 53.333 53.333 53.333v0c29.455 0 53.333-23.878 53.333-53.333v0zM736 746.667c0-29.455-23.878-53.333-53.333-53.333s-53.333 23.878-53.333 53.333c0 29.455 23.878 53.333 53.333 53.333v0c29.455 0 53.333-23.878 53.333-53.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["bus"]},"attrs":[{}],"properties":{"order":7090,"id":447,"name":"bus","prevSize":32,"code":59773},"setIdx":0,"setId":0,"iconIdx":125},{"icon":{"paths":["M722.347 85.333h-420.693c-95.906 0-173.653 77.747-173.653 173.653v0 506.027c0 95.906 77.747 173.653 173.653 173.653v0h420.693c95.906 0 173.653-77.747 173.653-173.653v0-506.027c0-95.906-77.747-173.653-173.653-173.653v0zM462.507 722.773c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.577 6.294-13.681 10.242-22.707 10.242-0.117 0-0.234-0.001-0.35-0.002l0.018 0c-8.453-0.689-15.908-4.482-21.318-10.224l-0.015-0.016-26.027-25.173-26.027 25.173c-5.784 5.468-13.58 8.862-22.167 8.96l-0.019 0c-0.129 0.002-0.281 0.003-0.434 0.003-17.673 0-32-14.327-32-32 0-9.264 3.936-17.608 10.227-23.451l0.020-0.018 23.893-22.613-23.893-23.040c-9.178-5.733-15.193-15.779-15.193-27.231 0-17.673 14.327-32 32-32 10.586 0 19.972 5.141 25.797 13.062l0.062 0.089 26.027 24.747 26.027-24.747c4.779-2.994 10.586-4.769 16.807-4.769 17.673 0 32 14.327 32 32 0 7.087-2.304 13.635-6.203 18.938l0.062-0.089-23.893 23.040zM618.24 788.48c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM703.573 696.747c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 0.001 0 0.001 0 0.002 0 23.414-18.86 42.423-42.217 42.664l-0.023 0zM768 395.093c0 41.002-33.238 74.24-74.24 74.24v0h-363.52c-41.002 0-74.24-33.238-74.24-74.24v0-107.52c0-41.002 33.238-74.24 74.24-74.24v0h363.52c41.002 0 74.24 33.238 74.24 74.24v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calculator"]},"attrs":[{}],"properties":{"order":7091,"id":446,"name":"calculator","prevSize":32,"code":59774},"setIdx":0,"setId":0,"iconIdx":126},{"icon":{"paths":["M889.6 322.133c1.432 3.674 2.261 7.927 2.261 12.374 0 19.323-15.664 34.987-34.987 34.987-0.045 0-0.090-0-0.135-0l0.007 0h-682.667c-23.141-0.546-41.692-19.434-41.692-42.656 0-5.529 1.052-10.812 2.966-15.66l-0.101 0.289c26.346-62.321 77.346-109.837 140.445-130.939l1.635-0.474v-66.987c0.704-15.463 13.412-27.733 28.985-27.733 0.010 0 0.020 0 0.030 0l-0.001-0c16.259-0 29.44 13.181 29.44 29.44v55.893c4.693 0 8.96 0 13.653 0h139.52v-57.6c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 54.613h123.733c4.693 0 8.96 0 13.653 0v-54.613c0.704-15.463 13.412-27.733 28.985-27.733 0.010 0 0.020 0 0.030 0l-0.001-0c16.259-0 29.44 13.181 29.44 29.44l-0 0v65.28c68.267 22.8 121.368 74.643 145.407 140.473l0.513 1.607zM869.547 426.667h-715.093c-19.323 0-34.987 15.664-34.987 34.987v0 242.347c-0.016 1.015-0.025 2.213-0.025 3.413 0 127.718 103.536 231.253 231.253 231.253 0.009 0 0.018-0 0.027-0l322.558 0c127.718 0 231.253-103.536 231.253-231.253v0-244.053c0.027-0.51 0.042-1.106 0.042-1.707 0-19.323-15.664-34.987-34.987-34.987-0.015 0-0.029 0-0.044 0l0.002-0zM372.053 762.027c-19.844-0.242-35.837-16.386-35.837-36.264 0-20.030 16.237-36.267 36.267-36.267 19.879 0 36.022 15.993 36.264 35.815l0 0.023c0.002 0.128 0.003 0.278 0.003 0.429 0 20.030-16.237 36.267-36.267 36.267-0.151 0-0.302-0.001-0.452-0.003l0.023 0zM372.053 625.493c-19.845-0.241-35.84-16.385-35.84-36.264 0-20.030 16.237-36.267 36.267-36.267s36.265 16.236 36.267 36.264l0 0c0 20.030-16.237 36.267-36.267 36.267v0zM509.013 625.493c-19.845-0.241-35.84-16.385-35.84-36.264 0-20.030 16.237-36.267 36.267-36.267s36.265 16.236 36.267 36.264l0 0c-0 20.030-16.237 36.267-36.267 36.267l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-2"]},"attrs":[{}],"properties":{"order":7092,"id":445,"name":"calendar-2","prevSize":32,"code":59775},"setIdx":0,"setId":0,"iconIdx":127},{"icon":{"paths":["M112.64 781.653h798.72c-21.073 90.269-100.651 156.556-195.789 157.013l-0.051 0h-407.040c-95.189-0.457-174.767-66.744-195.571-155.648l-0.269-1.365zM512 533.333c-0.125-0.001-0.272-0.002-0.42-0.002-21.458 0-39.216 15.84-42.219 36.465l-0.028 0.23c3.219 20.652 20.878 36.269 42.184 36.269 0.17 0 0.339-0.001 0.508-0.003l-0.026 0c0.143 0.002 0.313 0.003 0.482 0.003 21.306 0 38.965-15.617 42.153-36.029l0.031-0.24c-3.031-20.855-20.789-36.695-42.247-36.695-0.148 0-0.295 0.001-0.442 0.002l0.022-0zM512 469.333c0.543 0.036 1.176 0.057 1.815 0.057 15.142 0 27.575-11.6 28.897-26.399l0.008-0.111c-2.552-14.851-15.333-26.009-30.72-26.009s-28.168 11.158-30.694 25.824l-0.026 0.185c1.33 14.91 13.763 26.51 28.905 26.51 0.639 0 1.272-0.021 1.9-0.061l-0.086 0.004zM916.907 349.867v367.787h-810.667v-367.787c-0-0-0-0-0-0 0-111.458 90.355-201.813 201.813-201.813 0.15 0 0.3 0 0.45 0l-0.024-0v-62.72c0-17.673 14.327-32 32-32s32 14.327 32 32v0 62.72h277.333v-62.72c0-17.673 14.327-32 32-32s32 14.327 32 32v0 62.72c0.38-0.003 0.83-0.004 1.28-0.004 111.458 0 201.813 90.355 201.813 201.813 0 0.001-0 0.003-0 0.004l0-0zM618.24 570.027c-0.165-28.91-12.971-54.796-33.166-72.436l-0.114-0.098c12.73-14.817 20.48-34.234 20.48-55.46 0-0.002-0-0.005-0-0.007l0 0c0-52.312-42.408-94.72-94.72-94.72s-94.72 42.408-94.72 94.72l0-0c-0 0.002-0 0.004-0 0.007 0 21.226 7.75 40.643 20.575 55.574l-0.095-0.113c-20.309 17.737-33.115 43.623-33.28 72.504l-0 0.029c2.066 55.869 47.855 100.376 104.040 100.376 1.674 0 3.339-0.040 4.994-0.118l-0.234 0.009c1.166 0.047 2.534 0.073 3.908 0.073 56.172 0 101.953-44.487 104.033-100.151l0.006-0.189z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-8"]},"attrs":[{}],"properties":{"order":7093,"id":444,"name":"calendar-8","prevSize":32,"code":59776},"setIdx":0,"setId":0,"iconIdx":128},{"icon":{"paths":["M856.747 298.667c1.415 3.678 2.235 7.934 2.235 12.381 0 19.294-15.429 34.984-34.622 35.405l-0.039 0.001h-682.667c-23.51-0.072-42.541-19.147-42.541-42.666 0-5.525 1.050-10.804 2.961-15.649l-0.101 0.289c26.339-62.575 77.525-110.276 140.871-131.368l1.636-0.472v-66.56c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44h0v55.467c4.267 0 8.533 0 13.227 0h139.947v-55.467c0-16.259 13.181-29.44 29.44-29.44v0c0.001-0 0.002-0 0.003-0 16.024 0 29.013 12.99 29.013 29.013 0 0.15-0.001 0.3-0.003 0.449l0-0.023v54.187h125.013c4.267 0 8.533 0 13.227 0v-54.187c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 66.56c67.744 23.127 120.347 74.891 144.13 140.47l0.51 1.61zM836.693 404.907h-715.093c-19.323 0-34.987 15.664-34.987 34.987h-0v242.773c0.243 127.77 103.876 231.253 231.68 231.253 0 0 0-0 0-0l247.893 0c-21.428-34.331-34.134-76.022-34.134-120.68 0-0.173 0-0.347 0.001-0.52l-0 0.027c-0.002-0.347-0.003-0.758-0.003-1.17 0-129.367 104.873-234.24 234.24-234.24 39.108 0 75.977 9.584 108.387 26.531l-1.291-0.615v-143.36c0-0.012 0-0.027 0-0.042 0-19.323-15.664-34.987-34.987-34.987-0.6 0-1.197 0.015-1.79 0.045l0.083-0.003zM341.333 738.987c-19.845-0.241-35.84-16.385-35.84-36.264 0-20.030 16.237-36.267 36.267-36.267s36.265 16.236 36.267 36.264l0 0c0 0.001 0 0.002 0 0.003 0 20.030-16.237 36.267-36.267 36.267-0.15 0-0.3-0.001-0.449-0.003l0.023 0zM341.333 602.027c-19.844-0.242-35.838-16.385-35.838-36.264 0-20.030 16.237-36.267 36.267-36.267s36.267 16.237 36.267 36.267c0 0.149-0.001 0.298-0.003 0.447l0-0.023c-0.477 19.895-16.718 35.84-36.683 35.84-0.003 0-0.007-0-0.010-0l0.001 0zM478.293 602.027c-19.658-0.479-35.411-16.528-35.411-36.257 0-20.030 16.237-36.267 36.267-36.267s36.267 16.237 36.267 36.267c0 0.146-0.001 0.293-0.003 0.439l0-0.022c-0.443 19.922-16.698 35.903-36.685 35.903-0.754 0-1.502-0.023-2.244-0.067l0.102 0.005zM768.427 622.080c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667c94.257 0 170.667-76.41 170.667-170.667v0c0-0 0-0 0-0.001 0-94.257-76.41-170.667-170.667-170.667-0.15 0-0.3 0-0.45 0.001l0.023-0zM832 826.027h-32v32c0.002 0.128 0.003 0.278 0.003 0.429 0 17.524-14.086 31.758-31.554 31.997l-0.023 0c-17.49-0.239-31.576-14.473-31.576-31.997 0-0.151 0.001-0.302 0.003-0.452l-0 0.023v-32.853h-32c-17.49-0.239-31.576-14.473-31.576-31.997 0-0.151 0.001-0.302 0.003-0.452l-0 0.023c0.663-17.488 14.553-31.527 31.918-32.423l0.082-0.003h31.573v-32c-0.002-0.134-0.003-0.293-0.003-0.452 0-17.46 13.799-31.696 31.086-32.399l0.064-0.002c17.49 0.239 31.576 14.473 31.576 31.997 0 0.151-0.001 0.302-0.003 0.452l0-0.023v32.853h32c0.003-0 0.007-0 0.012-0 17.437 0 31.573 14.136 31.573 31.573 0 0.3-0.004 0.599-0.013 0.897l0.001-0.044c0.002 0.128 0.003 0.279 0.003 0.43 0 17.909-14.518 32.427-32.427 32.427-0.151 0-0.302-0.001-0.452-0.003l0.023 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-add"]},"attrs":[{}],"properties":{"order":7094,"id":443,"name":"calendar-add","prevSize":32,"code":59777},"setIdx":0,"setId":0,"iconIdx":129},{"icon":{"paths":["M859.733 323.413c1.414 3.677 2.233 7.93 2.233 12.375 0 19.443-15.669 35.227-35.068 35.412l-0.018 0h-682.667c-0.089 0.001-0.195 0.001-0.301 0.001-23.564 0-42.667-19.103-42.667-42.667 0-5.525 1.050-10.805 2.962-15.65l-0.101 0.289c26.614-62.67 78.091-110.383 141.717-131.371l1.643-0.469v-66.56c-0-16.259 13.181-29.44 29.44-29.44v0c0.001-0 0.002-0 0.003-0 16.024 0 29.013 12.99 29.013 29.013 0 0.15-0.001 0.3-0.003 0.449l0-0.023v55.893c4.693 0 8.96 0 13.653 0h139.947v-55.893c-0.002-0.127-0.003-0.277-0.003-0.427 0-16.024 12.99-29.013 29.013-29.013 0.001 0 0.002 0 0.003 0l-0-0c16.259-0 29.44 13.181 29.44 29.44l0 0v55.893h122.027c4.693 0 8.96 0 13.653 0v-55.893c-0.136-1.062-0.213-2.291-0.213-3.538 0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44c0 1.247-0.078 2.476-0.228 3.682l0.015-0.144v66.56c68.829 22.591 122.506 74.45 147.101 140.47l0.526 1.61zM839.68 429.653h-715.093c-19.323 0-34.987 15.664-34.987 34.987v0 242.773c-0 127.718 103.536 231.253 231.253 231.253v0h322.56c127.718 0 231.253-103.536 231.253-231.253v0-242.773c0-19.323-15.664-34.987-34.987-34.987v0zM655.787 620.8l-180.053 195.413c-4.704 5.081-10.792 8.817-17.665 10.61l-0.255 0.057-57.6 14.933c-2.718 0.704-5.839 1.108-9.053 1.108-20.736 0-37.547-16.81-37.547-37.547 0-2.2 0.189-4.356 0.552-6.452l-0.032 0.224 9.813-58.453c1.551-7.426 4.843-13.916 9.434-19.256l-0.047 0.056 181.333-194.987c8.292-8.988 20.129-14.598 33.276-14.598 11.876 0 22.683 4.577 30.752 12.064l-0.029-0.026 35.84 33.28c9.12 7.87 14.858 19.445 14.858 32.359 0 12.311-5.214 23.403-13.553 31.191l-0.025 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-edit"]},"attrs":[{}],"properties":{"order":7095,"id":442,"name":"calendar-edit","prevSize":32,"code":59778},"setIdx":0,"setId":0,"iconIdx":130},{"icon":{"paths":["M856.747 298.667c1.415 3.678 2.235 7.934 2.235 12.381 0 19.294-15.429 34.984-34.622 35.405l-0.039 0.001h-682.667c-23.51-0.072-42.541-19.147-42.541-42.666 0-5.525 1.050-10.804 2.961-15.649l-0.101 0.289c26.339-62.575 77.525-110.276 140.871-131.368l1.636-0.472v-66.56c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44h0v55.467c4.267 0 8.533 0 13.227 0h139.947v-55.467c0-16.259 13.181-29.44 29.44-29.44v0c0.001-0 0.002-0 0.003-0 16.024 0 29.013 12.99 29.013 29.013 0 0.15-0.001 0.3-0.003 0.449l0-0.023v54.187h125.013c4.267 0 8.533 0 13.227 0v-54.187c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 66.56c67.744 23.127 120.347 74.891 144.13 140.47l0.51 1.61zM836.693 404.907h-715.093c-19.323 0-34.987 15.664-34.987 34.987h-0v242.773c0.243 127.77 103.876 231.253 231.68 231.253 0 0 0-0 0-0l247.893 0c-21.428-34.331-34.134-76.022-34.134-120.68 0-0.173 0-0.347 0.001-0.52l-0 0.027c-0.002-0.347-0.003-0.758-0.003-1.17 0-129.367 104.873-234.24 234.24-234.24 39.108 0 75.977 9.584 108.387 26.531l-1.291-0.615v-143.36c0-0.012 0-0.027 0-0.042 0-19.323-15.664-34.987-34.987-34.987-0.6 0-1.197 0.015-1.79 0.045l0.083-0.003zM341.333 738.987c-19.845-0.241-35.84-16.385-35.84-36.264 0-20.030 16.237-36.267 36.267-36.267s36.265 16.236 36.267 36.264l0 0c0 0.001 0 0.002 0 0.003 0 20.030-16.237 36.267-36.267 36.267-0.15 0-0.3-0.001-0.449-0.003l0.023 0zM341.333 602.027c-19.844-0.242-35.838-16.385-35.838-36.264 0-20.030 16.237-36.267 36.267-36.267s36.267 16.237 36.267 36.267c0 0.149-0.001 0.298-0.003 0.447l0-0.023c-0.477 19.895-16.718 35.84-36.683 35.84-0.003 0-0.007-0-0.010-0l0.001 0zM478.293 602.027c-19.658-0.479-35.411-16.528-35.411-36.257 0-20.030 16.237-36.267 36.267-36.267s36.267 16.237 36.267 36.267c0 0.146-0.001 0.293-0.003 0.439l0-0.022c-0.443 19.922-16.698 35.903-36.685 35.903-0.754 0-1.502-0.023-2.244-0.067l0.102 0.005zM768.427 622.080c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667c94.257 0 170.667-76.41 170.667-170.667v0c0-0 0-0 0-0.001 0-94.257-76.41-170.667-170.667-170.667-0.15 0-0.3 0-0.45 0.001l0.023-0zM835.84 815.787c5.935 5.879 9.609 14.030 9.609 23.040s-3.674 17.161-9.606 23.037l-0.003 0.003c-5.786 5.793-13.78 9.379-22.612 9.387l-0.002 0c-8.801-0.197-16.738-3.738-22.624-9.397l0.011 0.011-23.467-24.32-24.747 23.040c-5.631 5.286-13.23 8.534-21.588 8.534-0.060 0-0.121-0-0.181-0.001l0.009 0c-9.31-0.172-17.637-4.241-23.442-10.64l-0.024-0.027c-6.226-5.988-10.093-14.388-10.093-23.692 0-9.51 4.041-18.076 10.499-24.076l0.021-0.019 22.613-20.907-21.333-21.76c-2.198-4.257-3.486-9.291-3.486-14.627 0-17.909 14.518-32.427 32.427-32.427 5.999 0 11.618 1.629 16.438 4.469l-0.152-0.083 23.467 24.32 24.747-23.040c5.664-5.173 13.236-8.342 21.548-8.342 9.372 0 17.804 4.029 23.656 10.45l0.023 0.025c5.222 5.793 8.416 13.503 8.416 21.958 0 9.524-4.053 18.102-10.528 24.103l-0.021 0.019-22.613 20.907z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-remove"]},"attrs":[{}],"properties":{"order":7096,"id":441,"name":"calendar-remove","prevSize":32,"code":59779},"setIdx":0,"setId":0,"iconIdx":131},{"icon":{"paths":["M889.6 323.413c1.414 3.677 2.233 7.93 2.233 12.375 0 19.443-15.669 35.227-35.068 35.412l-0.018 0h-682.667c-0.089 0.001-0.195 0.001-0.301 0.001-23.564 0-42.667-19.103-42.667-42.667 0-5.525 1.050-10.805 2.962-15.65l-0.101 0.289c26.614-62.67 78.091-110.383 141.717-131.371l1.643-0.469v-66.56c-0.002-0.127-0.003-0.277-0.003-0.427 0-16.024 12.99-29.013 29.013-29.013 0.001 0 0.002 0 0.003 0l-0-0c16.259-0 29.44 13.181 29.44 29.44v55.893c5.547 0 8.96 0 13.653 0h139.52v-55.893c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 55.893h123.733c4.693 0 8.96 0 13.653 0v-55.893c-0.002-0.127-0.003-0.277-0.003-0.427 0-16.024 12.99-29.013 29.013-29.013 0.001 0 0.002 0 0.003 0l-0-0c16.259-0 29.44 13.181 29.44 29.44l-0 0v66.56c68.133 23.029 121.145 74.782 145.398 140.466l0.522 1.614zM869.547 429.653h-715.093c-19.323 0-34.987 15.664-34.987 34.987v0 242.773c0 127.718 103.536 231.253 231.253 231.253v0h322.56c127.718 0 231.253-103.536 231.253-231.253v0-242.773c0-19.323-15.664-34.987-34.987-34.987h-0zM669.867 825.6c-5.459 5.787-13.18 9.39-21.742 9.39-0.156 0-0.312-0.001-0.468-0.004l0.024 0c-9.019-0.157-17.14-3.879-23.038-9.812l-0.002-0.002-27.307-28.587c-23.927 15.814-53.29 25.228-84.852 25.228-85.774 0-155.307-69.533-155.307-155.307s69.533-155.307 155.307-155.307c85.774 0 155.307 69.533 155.307 155.307 0 31.562-9.415 60.924-25.589 85.433l0.361-0.582 28.16 29.013c5.532 5.744 8.94 13.567 8.94 22.186 0 9.044-3.752 17.211-9.784 23.031l-0.010 0.009z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-search"]},"attrs":[{}],"properties":{"order":7097,"id":440,"name":"calendar-search","prevSize":32,"code":59780},"setIdx":0,"setId":0,"iconIdx":132},{"icon":{"paths":["M856.747 298.667c1.415 3.678 2.235 7.934 2.235 12.381 0 19.294-15.429 34.984-34.622 35.405l-0.039 0.001h-682.667c-23.51-0.072-42.541-19.147-42.541-42.666 0-5.525 1.050-10.804 2.961-15.649l-0.101 0.289c26.339-62.575 77.525-110.276 140.871-131.368l1.636-0.472v-66.56c0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44h0v55.467c4.267 0 8.533 0 13.227 0h139.947v-55.467c0-16.259 13.181-29.44 29.44-29.44v0c0.001-0 0.002-0 0.003-0 16.024 0 29.013 12.99 29.013 29.013 0 0.15-0.001 0.3-0.003 0.449l0-0.023v54.187h125.013c4.267 0 8.533 0 13.227 0v-54.187c-0-16.259 13.181-29.44 29.44-29.44s29.44 13.181 29.44 29.44v0 66.56c67.744 23.127 120.347 74.891 144.13 140.47l0.51 1.61zM836.693 404.907h-715.093c-19.323 0-34.987 15.664-34.987 34.987h-0v242.773c0.243 127.77 103.876 231.253 231.68 231.253 0 0 0-0 0-0l247.893 0c-21.428-34.331-34.134-76.022-34.134-120.68 0-0.173 0-0.347 0.001-0.52l-0 0.027c-0.002-0.347-0.003-0.758-0.003-1.17 0-129.367 104.873-234.24 234.24-234.24 39.108 0 75.977 9.584 108.387 26.531l-1.291-0.615v-143.36c0-0.012 0-0.027 0-0.042 0-19.323-15.664-34.987-34.987-34.987-0.6 0-1.197 0.015-1.79 0.045l0.083-0.003zM341.333 738.987c-19.845-0.241-35.84-16.385-35.84-36.264 0-20.030 16.237-36.267 36.267-36.267s36.265 16.236 36.267 36.264l0 0c0 0.001 0 0.002 0 0.003 0 20.030-16.237 36.267-36.267 36.267-0.15 0-0.3-0.001-0.449-0.003l0.023 0zM341.333 602.027c-19.844-0.242-35.838-16.385-35.838-36.264 0-20.030 16.237-36.267 36.267-36.267s36.267 16.237 36.267 36.267c0 0.149-0.001 0.298-0.003 0.447l0-0.023c-0.477 19.895-16.718 35.84-36.683 35.84-0.003 0-0.007-0-0.010-0l0.001 0zM478.293 602.027c-19.658-0.479-35.411-16.528-35.411-36.257 0-20.030 16.237-36.267 36.267-36.267s36.267 16.237 36.267 36.267c0 0.146-0.001 0.293-0.003 0.439l0-0.022c-0.443 19.922-16.698 35.903-36.685 35.903-0.754 0-1.502-0.023-2.244-0.067l0.102 0.005zM768.427 622.080c-94.257 0-170.667 76.41-170.667 170.667s76.41 170.667 170.667 170.667c94.257 0 170.667-76.41 170.667-170.667v0c0-0 0-0 0-0.001 0-94.257-76.41-170.667-170.667-170.667-0.15 0-0.3 0-0.45 0.001l0.023-0zM864.853 777.813l-72.96 93.013c-5.89 7.534-14.967 12.34-25.168 12.373l-0.005 0c-0.032 0-0.070 0-0.109 0-10.181 0-19.237-4.819-25.010-12.3l-0.054-0.073-52.48-66.987c-5.746-5.847-9.292-13.87-9.292-22.722 0-17.909 14.518-32.427 32.427-32.427 11.635 0 21.838 6.127 27.559 15.331l0.080 0.138 26.88 34.987 47.787-60.587c5.827-7.591 14.904-12.436 25.113-12.436 7.474 0 14.341 2.597 19.749 6.938l-0.062-0.048c6.892 5.905 11.231 14.618 11.231 24.345 0 7.803-2.793 14.953-7.433 20.506l0.041-0.051z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar-tick"]},"attrs":[{}],"properties":{"order":7098,"id":439,"name":"calendar-tick","prevSize":32,"code":59781},"setIdx":0,"setId":0,"iconIdx":133},{"icon":{"paths":["M864.853 430.080h-705.707c-18.294 0.706-32.856 15.707-32.856 34.109 0 0.158 0.001 0.317 0.003 0.474l-0-0.024v241.92c-0.012 0.889-0.020 1.939-0.020 2.99 0 126.096 101.863 228.401 227.791 229.116l0.068 0h317.867c124.373-3.093 224.015-104.65 224.015-229.48 0-0.924-0.005-1.846-0.016-2.767l0.001 0.14v-241.92c0.003-0.166 0.005-0.361 0.005-0.557 0-17.801-13.627-32.42-31.019-33.993l-0.132-0.010zM375.467 762.88c-20.020-0.013-36.244-16.245-36.244-36.267 0-20.030 16.237-36.267 36.267-36.267 19.579 0 35.535 15.516 36.242 34.922l0.002 0.064c-0.241 19.845-16.385 35.84-36.264 35.84-0.001 0-0.002-0-0.003-0l0 0zM375.467 626.773c-20.030 0-36.267-16.237-36.267-36.267s16.237-36.267 36.267-36.267c20.030 0 36.267 16.237 36.267 36.267v0c0.002 0.128 0.003 0.278 0.003 0.429 0 19.794-16.046 35.84-35.84 35.84-0.151 0-0.302-0.001-0.452-0.003l0.023 0zM512 762.88c-19.66-0.476-35.416-16.526-35.416-36.257 0-0.154 0.001-0.307 0.003-0.46l-0 0.023c0-19.794 16.046-35.84 35.84-35.84s35.84 16.046 35.84 35.84v0c-0.241 19.845-16.385 35.84-36.264 35.84-0.001 0-0.002-0-0.003-0l0 0zM512 626.773c-19.66-0.476-35.416-16.526-35.416-36.257 0-0.154 0.001-0.307 0.003-0.46l-0 0.023c0-19.794 16.046-35.84 35.84-35.84s35.84 16.046 35.84 35.84v0c0 0.001 0 0.002 0 0.003 0 19.88-15.995 36.023-35.817 36.264l-0.023 0zM647.68 762.88c-20.030 0-36.267-16.237-36.267-36.267s16.237-36.267 36.267-36.267h-0c20.030 0 36.267 16.237 36.267 36.267s-16.237 36.267-36.267 36.267l0-0zM647.68 626.773c-20.030 0-36.267-16.237-36.267-36.267s16.237-36.267 36.267-36.267h-0c20.030 0 36.267 16.237 36.267 36.267s-16.237 36.267-36.267 36.267h0zM884.48 324.267c1.267 3.516 1.999 7.574 1.999 11.802 0 15.141-9.389 28.089-22.663 33.34l-0.243 0.085c-3.417 1.262-7.363 2.036-11.477 2.133l-0.043 0.001h-672c-23.564 0-42.667-19.103-42.667-42.667v0c-0.006-0.249-0.010-0.543-0.010-0.837 0-5.25 1.102-10.242 3.089-14.758l-0.092 0.235c25.753-61.911 76.007-109.239 138.331-130.508l1.616-0.479v-66.56c0-16.024 12.99-29.013 29.013-29.013s29.013 12.99 29.013 29.013l0 0v54.613h151.467v-54.613c-0.136-1.054-0.213-2.274-0.213-3.512 0-16.024 12.99-29.013 29.013-29.013s29.013 12.99 29.013 29.013c0 1.238-0.078 2.458-0.228 3.655l0.015-0.143v54.613h135.253v-54.613c-0.136-1.054-0.213-2.274-0.213-3.512 0-16.024 12.99-29.013 29.013-29.013s29.013 12.99 29.013 29.013c0 1.238-0.078 2.458-0.228 3.655l0.015-0.143v66.56c67.59 22.977 120.069 74.617 143.708 140.051l0.506 1.602z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["calendar"]},"attrs":[{}],"properties":{"order":7099,"id":438,"name":"calendar","prevSize":32,"code":59782},"setIdx":0,"setId":0,"iconIdx":134},{"icon":{"paths":["M528.213 85.333h-124.587v42.667c0 23.564-19.103 42.667-42.667 42.667v0 0c-23.564 0-42.667-19.103-42.667-42.667v0-42.667h-127.147c-53.019 0-96 42.981-96 96h-0v661.333c0 53.019 42.981 96 96 96v0h337.067c53.019 0 96-42.981 96-96v0-661.333c0-53.019-42.981-96-96-96v0zM357.547 768c-0.127 0.001-0.278 0.001-0.428 0.001-36.289 0-65.707-29.418-65.707-65.707 0-0.15 0.001-0.301 0.002-0.451l-0 0.023h135.253c0.001 0.13 0.001 0.285 0.001 0.439 0 36.289-29.418 65.707-65.707 65.707-0.451 0-0.9-0.005-1.349-0.014l0.067 0.001zM518.827 646.4c0 15.788-12.799 28.587-28.587 28.587l0 0h-262.827c-15.788-0-28.587-12.799-28.587-28.587v0-119.467c0.142-77.251 54.431-141.781 126.93-157.67l1.070-0.197v-45.653c0-18.38 14.9-33.28 33.28-33.28s33.28 14.9 33.28 33.28h-0v45.653c73.569 16.086 127.858 80.616 128 157.851l0 0.016zM896 554.667h-119.893c-16.69-1.954-29.518-16.012-29.518-33.067s12.828-31.113 29.362-33.052l0.156-0.015h119.893c16.69 1.954 29.518 16.012 29.518 33.067s-12.828 31.113-29.362 33.052l-0.156 0.015zM777.813 341.333c-17.98-0.513-32.36-15.211-32.36-33.267 0-12.399 6.78-23.214 16.836-28.94l0.164-0.086 116.053-62.293c3.745-1.585 8.099-2.506 12.669-2.506 18.38 0 33.28 14.9 33.28 33.28 0 11.492-5.825 21.624-14.684 27.604l-0.118 0.075-116.053 62.72c-4.383 2.159-9.541 3.422-14.995 3.422-0.278 0-0.556-0.003-0.833-0.010l0.041 0.001zM896 828.16c-5.623-0.063-10.901-1.476-15.546-3.93l0.186 0.090-116.053-62.293c-8.977-6.055-14.802-16.187-14.802-27.679 0-18.38 14.9-33.28 33.28-33.28 4.57 0 8.924 0.921 12.888 2.587l-0.219-0.082 113.92 64.427c10.031 5.858 16.664 16.572 16.664 28.835 0 5.015-1.109 9.771-3.096 14.036l0.086-0.205c-5.41 9.945-15.487 16.752-27.211 17.489l-0.096 0.005z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["call"]},"attrs":[{}],"properties":{"order":7100,"id":437,"name":"call","prevSize":32,"code":59783},"setIdx":0,"setId":0,"iconIdx":135},{"icon":{"paths":["M665.173 712.107l-153.173 153.173c-45.206 45.206-107.658 73.167-176.64 73.167-137.964 0-249.807-111.842-249.807-249.807 0-68.982 27.961-131.434 73.167-176.64l153.173-153.173zM865.28 157.44c-45.183-45.256-107.642-73.252-176.64-73.252s-131.457 27.996-176.637 73.249l-0.003 0.003-153.173 154.453 353.28 353.28 153.173-153.173c45.256-45.183 73.252-107.642 73.252-176.64s-27.996-131.457-73.249-176.637l-0.003-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["capsule"]},"attrs":[{}],"properties":{"order":7101,"id":436,"name":"capsule","prevSize":32,"code":59784},"setIdx":0,"setId":0,"iconIdx":136},{"icon":{"paths":["M893.013 430.507c23.471-2.333 41.651-21.977 41.651-45.867s-18.18-43.533-41.459-45.851l-0.192-0.015h-46.080l-45.653-105.387c-23.102-52.877-74.939-89.162-135.252-89.173l-298.668-0c-0.621-0.009-1.354-0.015-2.087-0.015-61.714 0-114.532 38.089-136.229 92.041l-0.351 0.987-69.973 175.787 29.44-74.24h-57.173c-23.471 2.333-41.651 21.977-41.651 45.867s18.18 43.533 41.459 45.851l0.192 0.015h20.907l-18.347 46.080c-6.481 16.111-10.24 34.79-10.24 54.347 0 0.094 0 0.188 0 0.281l-0-0.015v276.907c0 39.588 32.092 71.68 71.68 71.68s71.68-32.092 71.68-71.68v0-45.653h508.587v45.653c0 39.588 32.092 71.68 71.68 71.68s71.68-32.092 71.68-71.68v-274.773c-0.026-21.162-4.579-41.254-12.742-59.369l0.369 0.915-42.667-96.853 22.187 52.48zM247.467 380.587l40.107-122.027c3.547-10.966 13.661-18.76 25.598-18.773l405.335-0c12.021 0.098 22.21 7.829 25.967 18.579l0.059 0.194 40.107 122.027c0.867 2.547 1.368 5.482 1.368 8.533 0 15.081-12.226 27.307-27.307 27.307-0.031 0-0.062-0-0.092-0l0.005 0h-485.547c-14.935-0.191-26.968-12.343-26.968-27.305 0-3.052 0.501-5.987 1.425-8.728l-0.056 0.193zM238.933 617.387c-24.742 0-44.8-20.058-44.8-44.8s20.058-44.8 44.8-44.8c24.742 0 44.8 20.058 44.8 44.8v0c0.036 0.654 0.056 1.419 0.056 2.19 0 23.564-19.103 42.667-42.667 42.667-0.77 0-1.536-0.020-2.296-0.061l0.106 0.004zM675.84 692.48h-298.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h298.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM794.453 617.387c-24.742 0-44.8-20.058-44.8-44.8s20.058-44.8 44.8-44.8c24.742 0 44.8 20.058 44.8 44.8h-0c0.036 0.654 0.056 1.419 0.056 2.19 0 23.564-19.103 42.667-42.667 42.667-0.77 0-1.536-0.020-2.296-0.061l0.106 0.004z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["car-2"]},"attrs":[{}],"properties":{"order":7102,"id":435,"name":"car-2","prevSize":32,"code":59785},"setIdx":0,"setId":0,"iconIdx":137},{"icon":{"paths":["M314.027 675.413c0 34.875-28.272 63.147-63.147 63.147s-63.147-28.272-63.147-63.147c0-34.875 28.272-63.147 63.147-63.147v0c34.875 0 63.147 28.272 63.147 63.147h-0zM770.133 612.267c-0.127-0.001-0.277-0.001-0.427-0.001-34.875 0-63.147 28.272-63.147 63.147s28.272 63.147 63.147 63.147c34.874 0 63.146-28.271 63.147-63.145l0-0c0-0 0-0.001 0-0.001 0-34.725-28.029-62.903-62.697-63.145l-0.023-0zM938.667 556.8v56.747c-0.029 18.335-8.084 34.783-20.839 46.022l-0.068 0.058c-10.098 8.59-23.146 13.988-37.438 14.504l-0.108 0.003c0.043-1.145 0.067-2.49 0.067-3.84 0-60.597-49.124-109.721-109.721-109.721-59.247 0-107.525 46.959-109.648 105.687l-0.006 0.194c-0.435 4.674-4.24 8.332-8.941 8.533l-0.019 0.001h-282.88c-4.621-0.222-8.311-3.913-8.533-8.513l-0.001-0.020c-5.051-56.564-52.22-100.571-109.669-100.571-60.152 0-109.036 48.247-110.064 108.155l-0.001 0.096c-15-1.18-28.257-7.817-37.955-17.901l-0.018-0.019c-10.721-11.025-17.37-26.058-17.493-42.643l-0-0.024v-96.853c0.155-32.467 21.617-59.879 51.113-68.983l0.514-0.137 30.72-8.533c14.428-4.452 26.516-12.952 35.296-24.165l0.117-0.155 80.213-101.973c12.926-16.428 32.807-26.881 55.13-26.881 0.118 0 0.237 0 0.355 0.001l-0.018-0h219.733c18.825 0.005 35.944 7.309 48.679 19.237l-0.039-0.037 151.467 144.64c8.978 8.239 20.058 14.332 32.34 17.385l0.514 0.108 92.587 21.333c31.491 7.266 54.613 35.066 54.613 68.267v0zM426.667 332.8h-69.547c-0.114-0.001-0.249-0.002-0.384-0.002-12.941 0-24.353 6.547-31.105 16.51l-0.084 0.132-37.547 56.32c-3.983 5.87-6.359 13.111-6.359 20.907 0 20.722 16.787 37.523 37.504 37.547l107.522 0v-131.413zM637.44 401.493l-51.2-55.893c-6.871-7.582-16.743-12.336-27.727-12.373l-0.007-0h-68.693v130.987h119.040c20.683-0.071 37.422-16.854 37.422-37.546 0-9.701-3.679-18.542-9.717-25.205l0.028 0.032z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["car-3"]},"attrs":[{}],"properties":{"order":7103,"id":434,"name":"car-3","prevSize":32,"code":59786},"setIdx":0,"setId":0,"iconIdx":138},{"icon":{"paths":["M910.507 515.84c-3.407-42.254-30.781-77.351-68.386-91.91l-0.734-0.25c-5.054-1.909-11.202-3.676-17.52-4.978l-0.827-0.142c-2.936-0.21-6.36-0.33-9.813-0.33s-6.878 0.12-10.271 0.356l0.458-0.026h-583.253c-7.582 0.059-14.947 0.833-22.077 2.257l0.743-0.124c-7.44 1.436-14.014 3.502-20.244 6.212l0.617-0.239c-36.289 15.64-61.925 49.691-65.254 90.066l-0.026 0.387-28.587 333.653c-0.113 1.405-0.177 3.042-0.177 4.694 0 34.316 27.748 62.151 62.030 62.293l0.014 0h155.307c0.028 0 0.061 0 0.094 0 32.967 0 59.912-25.786 61.765-58.289l0.007-0.164v-3.413c1.859-32.668 28.804-58.456 61.773-58.456 0.183 0 0.366 0.001 0.549 0.002l-0.028-0h155.733c32.109 0.052 58.517 24.388 61.843 55.621l0.024 0.273v8.107c3.143 31.689 29.625 56.245 61.859 56.32l0.008 0h168.533c0.562 0.018 1.223 0.029 1.886 0.029 34.404 0 62.293-27.89 62.293-62.293 0-1.662-0.065-3.308-0.193-4.937l0.014 0.215zM377.173 593.067h-128c-16.495 0-29.867-13.372-29.867-29.867s13.372-29.867 29.867-29.867h128c16.495 0 29.867 13.372 29.867 29.867s-13.372 29.867-29.867 29.867h-0zM778.24 593.067h-128c-16.495 0-29.867-13.372-29.867-29.867s13.372-29.867 29.867-29.867h128c16.495 0 29.867 13.372 29.867 29.867s-13.372 29.867-29.867 29.867h-0zM887.467 327.253c0 0.001 0 0.002 0 0.003 0 16.495-13.372 29.867-29.867 29.867-0.15 0-0.3-0.001-0.449-0.003l0.023 0h-709.547c-0.127 0.002-0.277 0.003-0.427 0.003-16.495 0-29.867-13.372-29.867-29.867 0-0.001 0-0.002 0-0.003l-0 0c0.929-15.98 14.115-28.587 30.245-28.587 0.017 0 0.034 0 0.051 0l-0.003-0h48.213l17.493-93.867c10.22-56.002 58.364-97.986 116.419-98.56l0.061-0h354.987c58.471 0.146 107.059 42.275 117.222 97.828l0.111 0.732 16.64 93.867h38.4c0.014-0 0.031-0 0.048-0 16.13 0 29.316 12.607 30.241 28.505l0.004 0.082z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["car"]},"attrs":[{}],"properties":{"order":7104,"id":433,"name":"car","prevSize":32,"code":59787},"setIdx":0,"setId":0,"iconIdx":139},{"icon":{"paths":["M329.813 449.707h-123.733c-66.687 0-120.747-54.060-120.747-120.747v0-124.16c0.723-66.134 54.503-119.467 120.74-119.467 0.002 0 0.005 0 0.007 0l123.733-0c0.002-0 0.004-0 0.007-0 66.236 0 120.016 53.333 120.739 119.398l0.001 0.068v124.16c0 66.687-54.060 120.747-120.747 120.747v0zM938.667 330.24v-123.733c0-0.127 0.001-0.277 0.001-0.427 0-66.687-54.060-120.747-120.747-120.747-0 0-0 0-0.001 0l-123.733 0c-66.687 0-120.747 54.060-120.747 120.747v0 123.733c0 66.687 54.060 120.747 120.747 120.747v0h123.733c0 0 0 0 0.001 0 66.536 0 120.503-53.817 120.746-120.297l0-0.023zM450.56 817.493v-123.733c-0-66.687-54.060-120.747-120.747-120.747h-123.733c-66.687 0-120.747 54.060-120.747 120.747v0 123.733c-0 0.127-0.001 0.277-0.001 0.427 0 66.687 54.060 120.747 120.747 120.747 0 0 0-0 0.001-0l123.733-0c0 0 0 0 0.001 0 66.687 0 120.747-54.060 120.747-120.747 0-0.15-0-0.3-0.001-0.45l0 0.023zM938.667 819.2v-124.16c0-66.687-54.060-120.747-120.747-120.747v0h-123.733c-66.687 0-120.747 54.060-120.747 120.747v0 124.16c0.723 66.134 54.503 119.467 120.74 119.467 0.002 0 0.005-0 0.007-0l123.733 0c0.002 0 0.004 0 0.007 0 66.236 0 120.016-53.333 120.739-119.398l0.001-0.068z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["category"]},"attrs":[{}],"properties":{"order":7105,"id":432,"name":"category","prevSize":32,"code":59788},"setIdx":0,"setId":0,"iconIdx":140},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 618.667c-58.91 0-106.667-47.756-106.667-106.667s47.756-106.667 106.667-106.667c58.91 0 106.667 47.756 106.667 106.667v0c0 58.91-47.756 106.667-106.667 106.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cd"]},"attrs":[{}],"properties":{"order":7106,"id":431,"name":"cd","prevSize":32,"code":59789},"setIdx":0,"setId":0,"iconIdx":141},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM702.72 675.413c-48.255 59.786-121.532 97.707-203.666 97.707-144.213 0-261.12-116.907-261.12-261.12 0-144.114 116.747-260.96 260.823-261.12l0.016-0c0.421-0.003 0.919-0.004 1.418-0.004 52.719 0 101.716 15.936 142.437 43.253l-0.922-0.582c8.415 5.849 13.854 15.468 13.854 26.358 0 6.017-1.661 11.646-4.548 16.454l0.081-0.145c-5.867 8.242-15.387 13.553-26.148 13.553-6.103 0-11.807-1.708-16.659-4.673l0.14 0.080c-30.369-20.071-67.637-32.020-107.695-32.020-108.866 0-197.12 88.254-197.12 197.12s88.254 197.12 197.12 197.12c62.018 0 117.347-28.641 153.482-73.417l0.294-0.376c5.913-7.189 14.81-11.739 24.768-11.739 7.61 0 14.6 2.657 20.092 7.093l-0.061-0.047c7.146 5.989 11.658 14.919 11.658 24.903 0 8.313-3.128 15.895-8.272 21.634l0.027-0.031zM736.427 483.84c-27.57-0-49.92-22.35-49.92-49.92s22.35-49.92 49.92-49.92c27.57 0 49.92 22.35 49.92 49.92v0c0 27.57-22.35 49.92-49.92 49.92h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["celsius"]},"attrs":[{}],"properties":{"order":7107,"id":430,"name":"celsius","prevSize":32,"code":59790},"setIdx":0,"setId":0,"iconIdx":142},{"icon":{"paths":["M687.36 85.333h-350.72c-139.352 2.636-251.307 116.222-251.307 255.957 0 0.015 0 0.030 0 0.045l-0-0.002v341.333c-0 0.013-0 0.028-0 0.043 0 139.735 111.955 253.321 251.060 255.953l0.246 0.004h350.72c139.352-2.636 251.307-116.222 251.307-255.957 0-0.015-0-0.030-0-0.045l0 0.002v-341.333c0-0.013 0-0.028 0-0.043 0-139.735-111.955-253.321-251.060-255.953l-0.246-0.004zM764.16 640c0.002 0.128 0.003 0.278 0.003 0.429 0 17.76-14.277 32.185-31.98 32.424l-0.023 0h-124.16c-16.464-1.94-29.115-15.813-29.115-32.64s12.651-30.7 28.961-32.625l0.155-0.015h50.773l-104.107-115.627c-0.769-0.754-1.823-1.22-2.987-1.22s-2.218 0.465-2.987 1.22l0.001-0.001-66.133 53.76c-11.473 9.654-26.412 15.52-42.721 15.52-19.149 0-36.409-8.086-48.552-21.030l-0.033-0.036-102.4-106.667c-5.734-5.969-9.265-14.092-9.265-23.040s3.531-17.070 9.276-23.051l-0.011 0.011c5.741-5.887 13.751-9.539 22.613-9.539s16.872 3.652 22.607 9.532l0.006 0.007 102.4 106.667c0.805 0.668 1.848 1.073 2.987 1.073s2.182-0.405 2.994-1.079l-0.008 0.006 65.707-53.76c11.551-9.407 26.449-15.106 42.677-15.106 19.941 0 37.873 8.604 50.285 22.302l0.051 0.057 98.987 107.093v-42.667c0-17.673 14.327-32 32-32s32 14.327 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line-down-2"]},"attrs":[{}],"properties":{"order":7108,"id":429,"name":"chart-line-down-2","prevSize":32,"code":59791},"setIdx":0,"setId":0,"iconIdx":143},{"icon":{"paths":["M905.387 938.667h-564.053c-0.761 0.008-1.66 0.013-2.56 0.013-139.826 0-253.204-113.233-253.44-253.004l-0-0.022v-567.893c-0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427h0v567.893c0.233 103.977 84.577 188.177 188.586 188.177 0.9 0 1.799-0.006 2.696-0.019l-0.136 0.001h564.053c17.909 0 32.427 14.518 32.427 32.427s-14.518 32.427-32.427 32.427l0-0zM926.293 694.187c7.040-5.986 11.476-14.85 11.476-24.75 0-7.987-2.887-15.299-7.675-20.95l0.039 0.047-155.307-181.76c-21.423-25.171-53.132-41.032-88.545-41.032-28.611 0-54.803 10.353-75.036 27.518l0.168-0.139-42.667 37.12c-8.918 7.731-20.637 12.443-33.456 12.443-15.173 0-28.805-6.6-38.181-17.087l-0.043-0.049-179.2-195.413c-5.863-8.996-15.874-14.859-27.256-14.859-17.909 0-32.427 14.518-32.427 32.427 0 10.092 4.61 19.107 11.84 25.054l0.056 0.045 177.92 196.267c21.323 23.548 52.009 38.279 86.137 38.279 28.738 0 55.035-10.445 75.304-27.746l-0.161 0.134 42.667-37.12c8.919-7.551 20.554-12.142 33.261-12.142 15.69 0 29.746 6.999 39.214 18.046l0.058 0.070 154.88 181.76c5.978 7.055 14.841 11.507 24.744 11.52l0.002 0c0.45 0.023 0.976 0.036 1.506 0.036 7.928 0 15.174-2.922 20.719-7.748l-0.038 0.033z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line-down"]},"attrs":[{}],"properties":{"order":7109,"id":428,"name":"chart-line-down","prevSize":32,"code":59792},"setIdx":0,"setId":0,"iconIdx":144},{"icon":{"paths":["M832.853 949.333l-26.453-15.36c-5.579-3.23-12.273-5.137-19.413-5.137s-13.835 1.906-19.603 5.238l0.189-0.101-26.027 15.787c-5.687 3.452-12.561 5.495-19.912 5.495-21.443 0-38.827-17.383-38.827-38.827 0-3.315 0.415-6.532 1.197-9.603l-0.058 0.269 6.4-29.867c0.401-2.196 0.63-4.724 0.63-7.305 0-12.032-4.98-22.901-12.992-30.657l-0.011-0.011-22.613-20.053c-7.97-7.283-12.95-17.723-12.95-29.326 0-20.163 15.038-36.813 34.51-39.346l0.2-0.021 29.867-3.413c14.331-1.4 26.219-10.582 31.481-23.215l0.093-0.251 9.387-21.76c7.152-14.123 21.559-23.635 38.187-23.635s31.034 9.512 38.075 23.391l0.112 0.243 9.813 22.187c5.545 12.652 17.364 21.625 31.413 23.027l0.16 0.013 29.867 2.987c19.878 2.109 35.229 18.785 35.229 39.047 0 11.588-5.021 22.003-13.007 29.189l-0.036 0.032-22.613 20.907c-7.689 7.253-12.476 17.511-12.476 28.887 0 3.069 0.348 6.057 1.008 8.926l-0.052-0.267 6.4 29.867c0.678 2.716 1.068 5.834 1.068 9.042 0 21.443-17.383 38.827-38.827 38.827-7.148 0-13.845-1.932-19.597-5.302l0.183 0.099zM938.667 341.333v341.333c0 5.547 0 11.093 0 17.067-10.343-5.886-22.475-9.97-35.393-11.478l-0.447-0.042h-15.787l-3.413-8.533c-16.351-37.69-53.24-63.574-96.174-63.574-0.089 0-0.177 0-0.266 0l0.014-0c-43.278 0.224-80.389 26.396-96.589 63.742l-0.264 0.684-3.413 8.533h-15.787c-40.505 5.274-73.271 33.466-85.134 70.952l-0.199 0.728c-3.196 9.579-5.040 20.607-5.040 32.066 0 30.74 13.269 58.381 34.391 77.508l0.089 0.079 11.52 10.667-2.987 15.787c-1.405 6.413-2.209 13.779-2.209 21.333s0.805 14.921 2.333 22.018l-0.124-0.685h-287.147c-139.056-1.2-251.32-114.206-251.32-253.431 0-0.903 0.005-1.805 0.014-2.706l-0.001 0.137v-342.187c-0.008-0.763-0.013-1.666-0.013-2.569 0-139.225 112.263-252.23 251.206-253.43l0.114-0.001h350.72c139.056 1.2 251.32 114.206 251.32 253.431 0 0.903-0.005 1.805-0.014 2.706l0.001-0.137zM722.773 395.947c-5.741-5.887-13.751-9.539-22.613-9.539s-16.872 3.652-22.607 9.532l-0.006 0.007-111.787 122.027c-0.769 0.754-1.823 1.22-2.987 1.22s-2.218-0.465-2.987-1.22l0.001 0.001-66.133-53.333c-11.497-9.56-26.414-15.362-42.686-15.362-19.13 0-36.387 8.019-48.593 20.879l-0.028 0.029-103.68 108.373c-5.734 5.969-9.265 14.092-9.265 23.040s3.531 17.070 9.276 23.051l-0.011-0.011c5.62 5.54 13.341 8.962 21.862 8.962 0.114 0 0.228-0.001 0.342-0.002l-0.017 0c0.097 0.001 0.212 0.002 0.327 0.002 8.732 0 16.625-3.593 22.281-9.382l0.006-0.006 102.4-106.667c0.769-0.754 1.823-1.22 2.987-1.22s2.218 0.465 2.987 1.22l-0.001-0.001 66.133 53.333c11.509 9.287 26.313 14.907 42.431 14.907 19.847 0 37.703-8.523 50.109-22.108l0.047-0.053 114.773-122.027c4.981-5.728 8.017-13.262 8.017-21.506 0-9.538-4.064-18.126-10.555-24.128l-0.022-0.020z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line-star"]},"attrs":[{}],"properties":{"order":7110,"id":427,"name":"chart-line-star","prevSize":32,"code":59793},"setIdx":0,"setId":0,"iconIdx":145},{"icon":{"paths":["M687.36 85.333h-350.72c-139.352 2.636-251.307 116.222-251.307 255.957 0 0.015 0 0.030 0 0.045l-0-0.002v341.333c-0 0.013-0 0.028-0 0.043 0 139.735 111.955 253.321 251.060 255.953l0.246 0.004h350.72c139.352-2.636 251.307-116.222 251.307-255.957 0-0.015-0-0.030-0-0.045l0 0.002v-341.333c0-0.013 0-0.028 0-0.043 0-139.735-111.955-253.321-251.060-255.953l-0.246-0.004zM764.16 512c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-42.667l-98.56 107.093c-12.464 13.755-30.395 22.359-50.336 22.359-16.228 0-31.126-5.698-42.801-15.203l0.124 0.098-65.707-53.76c-0.805-0.668-1.848-1.073-2.987-1.073s-2.182 0.405-2.994 1.079l0.008-0.006-102.4 106.667c-5.741 5.887-13.751 9.539-22.613 9.539s-16.872-3.652-22.607-9.532l-0.006-0.007c-5.734-5.969-9.265-14.092-9.265-23.040s3.531-17.070 9.276-23.051l-0.011 0.011 102.4-106.667c12.234-12.889 29.491-20.908 48.621-20.908 16.272 0 31.189 5.802 42.795 15.45l-0.109-0.088 66.133 53.76c0.769 0.754 1.823 1.22 2.987 1.22s2.218-0.465 2.987-1.22l-0.001 0.001 103.68-113.92h-50.773c-16.464-1.94-29.115-15.813-29.115-32.64s12.651-30.7 28.961-32.625l0.155-0.015h124.16c17.726 0.239 32.003 14.664 32.003 32.424 0 0.151-0.001 0.302-0.003 0.452l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line-up-2"]},"attrs":[{}],"properties":{"order":7111,"id":426,"name":"chart-line-up-2","prevSize":32,"code":59794},"setIdx":0,"setId":0,"iconIdx":146},{"icon":{"paths":["M938.667 906.24c0 17.909-14.518 32.427-32.427 32.427v0h-564.907c-139.638-0.242-252.771-113.376-253.013-252.99l-0-0.023v-567.893c0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427h0v567.893c0.242 103.82 84.34 187.918 188.137 188.16l0.023 0h566.187c17.349 0.707 31.147 14.943 31.147 32.401 0 0.009-0 0.018-0 0.027l0-0.001zM296.107 701.867c9.905-0.013 18.768-4.465 24.708-11.473l0.039-0.047 154.88-181.76c9.455-11.215 23.513-18.291 39.223-18.291 12.752 0 24.415 4.662 33.378 12.374l-0.067-0.057 42.667 37.12c20.108 17.167 46.406 27.612 75.143 27.612 34.127 0 64.814-14.73 86.048-38.18l0.088-0.099 177.92-195.413c3.242-4.963 5.171-11.040 5.171-17.568 0-17.909-14.518-32.427-32.427-32.427-7.817 0-14.988 2.766-20.587 7.372l0.056-0.045-177.92 195.413c-9.419 10.536-23.051 17.136-38.224 17.136-12.819 0-24.538-4.711-33.52-12.497l0.064 0.054-42.667-37.12c-20.149-16.946-46.38-27.243-75.017-27.243-35.472 0-67.253 15.798-88.693 40.741l-0.13 0.155-154.88 180.907c-4.749 5.604-7.636 12.916-7.636 20.903 0 9.9 4.437 18.764 11.43 24.712l0.046 0.038c5.501 4.773 12.731 7.681 20.641 7.681 0.094 0 0.187-0 0.28-0.001l-0.014 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line-up"]},"attrs":[{}],"properties":{"order":7112,"id":425,"name":"chart-line-up","prevSize":32,"code":59795},"setIdx":0,"setId":0,"iconIdx":147},{"icon":{"paths":["M688.213 85.333h-352.427c-138.979 3.107-250.453 116.505-250.453 255.94 0 0.021 0 0.042 0 0.063l-0-0.003v341.333c-0 0.007-0 0.015-0 0.023 0 140.185 112.677 254.052 252.405 255.975l0.181 0.002h352.427c139.909-1.925 252.587-115.793 252.587-255.977 0-0.008-0-0.016-0-0.024l0 0.001v-341.333c0-0.001 0-0.002 0-0.003 0-140.935-113.887-255.27-254.651-255.997l-0.069-0zM725.333 442.88l-112.64 122.453c-12.464 13.755-30.395 22.359-50.336 22.359-16.228 0-31.126-5.698-42.801-15.203l0.124 0.098-66.56-53.76c-0.805-0.668-1.848-1.073-2.987-1.073s-2.182 0.405-2.994 1.079l0.008-0.006-102.827 106.667c-5.741 5.887-13.751 9.539-22.613 9.539s-16.872-3.652-22.607-9.532l-0.006-0.007c-5.714-5.904-9.236-13.96-9.236-22.838 0-8.661 3.351-16.539 8.828-22.408l-0.018 0.019 102.827-106.667c12.264-12.614 29.395-20.44 48.353-20.44 16.766 0 32.102 6.12 43.896 16.249l-0.090-0.075 66.133 53.76c0.868 0.7 1.985 1.123 3.2 1.123s2.332-0.423 3.21-1.131l-0.010 0.008 112.213-124.587c5.969-6.72 14.632-10.932 24.279-10.932 8.818 0 16.815 3.52 22.66 9.232l-0.006-0.006c5.734 5.969 9.265 14.092 9.265 23.040s-3.531 17.070-9.276 23.051l0.011-0.011z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-line"]},"attrs":[{}],"properties":{"order":7113,"id":424,"name":"chart-line","prevSize":32,"code":59796},"setIdx":0,"setId":0,"iconIdx":148},{"icon":{"paths":["M558.507 360.533v-210.347c-0-0.090-0.001-0.197-0.001-0.303 0-34.404 27.89-62.293 62.293-62.293 4.227 0 8.355 0.421 12.346 1.223l-0.398-0.067c152.888 30.877 271.415 149.26 302.085 299.608l0.421 2.472c0.73 3.592 1.148 7.721 1.148 11.947 0 34.593-28.006 62.645-62.581 62.72l-0.007 0h-210.347c-57.968 0-104.96-46.992-104.96-104.96v0zM558.507 655.787v210.347c-0 0.090-0.001 0.197-0.001 0.303 0 34.404 27.89 62.293 62.293 62.293 4.227 0 8.355-0.421 12.346-1.223l-0.398 0.067c152.888-30.877 271.415-149.26 302.085-299.608l0.421-2.472c0.73-3.592 1.148-7.721 1.148-11.947 0-34.593-28.006-62.645-62.581-62.72l-0.007-0h-210.347c-57.968-0-104.96 46.992-104.96 104.96v0zM508.587 159.573c-0.072-37.177-30.227-67.286-67.413-67.286-5.141 0-10.147 0.575-14.958 1.665l0.451-0.086c-196.354 40.918-341.761 212.545-341.761 418.133s145.407 377.215 338.988 417.649l2.773 0.485c3.849 0.78 8.273 1.227 12.802 1.227 37.063 0 67.14-29.909 67.411-66.907l0-0.026z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-3"]},"attrs":[{}],"properties":{"order":7114,"id":423,"name":"chart-pie-3","prevSize":32,"code":59797},"setIdx":0,"setId":0,"iconIdx":149},{"icon":{"paths":["M554.667 365.653v-232.96c-0.002-0.164-0.004-0.357-0.004-0.55 0-23.564 19.103-42.667 42.667-42.667 2.412 0 4.777 0.2 7.080 0.585l-0.249-0.034c172.73 23.175 307.919 158.363 330.876 329.12l0.217 1.973c0.35 2.053 0.55 4.418 0.55 6.83 0 23.564-19.103 42.667-42.667 42.667-0.193 0-0.387-0.001-0.58-0.004l0.029 0h-234.24c-0.002 0-0.005 0-0.008 0-57.261 0-103.68-46.419-103.68-103.68 0-0.45 0.003-0.899 0.009-1.348l-0.001 0.068zM469.333 503.040v-261.973c0-0.004 0-0.008 0-0.013 0-35.346-28.654-64-64-64-4.531 0-8.952 0.471-13.217 1.366l0.417-0.073c-176.597 36.924-307.338 191.329-307.338 376.27 0 3.619 0.050 7.225 0.149 10.82l-0.012-0.53c8.45 208.219 179.296 373.818 388.819 373.818 2.356 0 4.708-0.021 7.054-0.063l-0.353 0.005c65.422-2.217 126.133-20.464 178.924-50.908l-1.857 0.988c18.789-11.172 31.183-31.368 31.183-54.459 0-17.803-7.367-33.885-19.22-45.364l-0.017-0.016-124.587-123.733c-45.406-39.832-74.373-97.45-75.941-161.861l-0.005-0.272zM881.067 554.667h-232.107c-0.040-0-0.087-0-0.134-0-21.443 0-38.827 17.383-38.827 38.827 0 10.861 4.46 20.681 11.648 27.727l0.006 0.006 164.693 162.987c9.681 9.457 22.936 15.292 37.554 15.292 18.347 0 34.547-9.191 44.249-23.219l0.117-0.179c32.62-45.657 55.78-100.304 65.41-159.494l0.297-2.213c0.282-2.051 0.443-4.421 0.443-6.829 0-29.22-23.687-52.907-52.907-52.907-0.156 0-0.311 0.001-0.466 0.002l0.024-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-4"]},"attrs":[{}],"properties":{"order":7115,"id":422,"name":"chart-pie-4","prevSize":32,"code":59798},"setIdx":0,"setId":0,"iconIdx":150},{"icon":{"paths":["M556.8 349.44v-191.573c-0.001-0.138-0.002-0.302-0.002-0.466 0-36.996 29.991-66.987 66.987-66.987 4.682 0 9.251 0.48 13.662 1.394l-0.434-0.075c148.148 32.472 262.781 147.105 294.784 292.709l0.469 2.544c1.135 4.616 1.786 9.915 1.786 15.366 0 36.996-29.991 66.987-66.987 66.987-0.328 0-0.656-0.002-0.983-0.007l0.050 0.001h-191.573c-0.135 0.001-0.295 0.001-0.455 0.001-64.801 0-117.333-52.532-117.333-117.333 0-0.9 0.010-1.799 0.030-2.694l-0.002 0.133zM674.56 531.2c-100.383 0-181.76-81.377-181.76-181.76l0-0v-178.773c-7.253 0-14.080 0-21.333 0-210.476 0.248-381.005 170.929-381.005 381.44 0 210.663 170.777 381.44 381.44 381.44 209.763 0 379.98-169.32 381.431-378.741l0.001-0.138c0-7.253 0-14.080 0-21.333z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-simple"]},"attrs":[{}],"properties":{"order":7116,"id":421,"name":"chart-pie-simple","prevSize":32,"code":59799},"setIdx":0,"setId":0,"iconIdx":151},{"icon":{"paths":["M471.467 853.333c-1.046 46.318-38.841 83.466-85.313 83.466-7.744 0-15.246-1.031-22.378-2.964l0.598 0.138c-161.444-47.832-277.214-194.823-277.214-368.853s115.769-321.021 274.497-368.161l2.718-0.693c6.534-1.795 14.037-2.826 21.78-2.826 46.472 0 84.267 37.148 85.311 83.369l0.002 0.097zM554.667 745.813c1.046 46.318 38.841 83.466 85.313 83.466 7.744 0 15.246-1.031 22.378-2.964l-0.598 0.138c161.444-47.832 277.214-194.823 277.214-368.853s-115.769-321.021-274.497-368.161l-2.718-0.693c-6.529-1.792-14.025-2.822-21.762-2.822-46.92 0-84.996 37.868-85.331 84.71l-0 0.032z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-pie-too"]},"attrs":[{}],"properties":{"order":7117,"id":420,"name":"chart-pie-too","prevSize":32,"code":59800},"setIdx":0,"setId":0,"iconIdx":152},{"icon":{"paths":["M886.613 945.067h-749.227c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h749.227c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM561.92 768v-453.547c0-0.001 0-0.001 0-0.002 0-27.656-22.298-50.103-49.897-50.345l-0.023-0h-42.667c-27.25 0.715-49.067 22.975-49.067 50.33 0 0.006 0 0.011 0 0.017l-0-0.001v453.547c0.923 26.632 22.396 47.956 49.002 48.639l0.065 0.001h42.667c27.036-0.22 48.979-21.716 49.918-48.554l0.002-0.086zM804.693 762.88v-628.48c0-30.633-24.833-55.467-55.467-55.467h-30.293c-30.633 0-55.467 24.833-55.467 55.467h0v626.773c-0 30.633 24.833 55.467 55.467 55.467l0-0h30.293c30.633 0 55.467-24.833 55.467-55.467l-0-0zM320.853 768v-241.067c0-27.806-22.541-50.347-50.347-50.347v0h-42.667c-27.062 0.947-48.64 23.112-48.64 50.318 0 0.010 0 0.020 0 0.030l-0-0.002v241.067c0 27.806 22.541 50.347 50.347 50.347v0h42.667c27.062-0.947 48.64-23.112 48.64-50.318 0-0.010-0-0.020-0-0.030l0 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-simple-2"]},"attrs":[{}],"properties":{"order":7118,"id":419,"name":"chart-simple-2","prevSize":32,"code":59801},"setIdx":0,"setId":0,"iconIdx":153},{"icon":{"paths":["M886.613 943.787h-749.227c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h749.227c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM471.893 815.787h40.107c0.273 0.005 0.595 0.008 0.918 0.008 26.908 0 48.886-21.109 50.277-47.671l0.005-0.124v-452.693c0-0.002 0-0.005 0-0.007 0-27.806-22.541-50.347-50.347-50.347-0.3 0-0.599 0.003-0.898 0.008l0.045-0.001h-40.533c-27.622 0.242-49.92 22.689-49.92 50.345 0 0.001 0 0.001 0 0.002l-0-0v452.693c0.947 27.062 23.112 48.64 50.318 48.64 0.010 0 0.020-0 0.030-0l-0.002 0zM235.52 815.787h30.72c30.633 0 55.467-24.833 55.467-55.467v0-624.64c0-30.633-24.833-55.467-55.467-55.467v0h-30.72c-30.633 0-55.467 24.833-55.467 55.467v0 625.493c0 30.633 24.833 55.467 55.467 55.467v-0zM712.96 815.787h42.667c26.206-0.882 47.283-21.663 48.635-47.664l0.005-0.123v-240.213c0.001-0.127 0.002-0.277 0.002-0.427 0-27.806-22.541-50.347-50.347-50.347-0.001 0-0.001 0-0.002 0l-42.667-0c-0.001-0-0.001-0-0.002-0-27.806 0-50.347 22.541-50.347 50.347 0 0.15 0.001 0.3 0.002 0.45l-0-0.023v240.213c0.93 27.075 23.103 48.67 50.319 48.67 0.61 0 1.217-0.011 1.822-0.032l-0.088 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-simple-3"]},"attrs":[{}],"properties":{"order":7119,"id":418,"name":"chart-simple-3","prevSize":32,"code":59802},"setIdx":0,"setId":0,"iconIdx":154},{"icon":{"paths":["M886.613 941.227h-749.227c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h749.227c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM810.667 762.88v-446.72c0.001-0.127 0.002-0.277 0.002-0.427 0-27.57-22.35-49.92-49.92-49.92-0.001 0-0.001 0-0.002 0l-42.667-0c-0.001-0-0.001-0-0.002-0-27.57 0-49.92 22.35-49.92 49.92 0 0.15 0.001 0.3 0.002 0.45l-0-0.023v446.72c0 27.57 22.35 49.92 49.92 49.92v0h42.667c27.57 0 49.92-22.35 49.92-49.92v0zM567.040 757.76v-619.52c0-0 0-0.001 0-0.002 0-30.483-24.591-55.223-55.017-55.465l-0.023-0h-31.147c-30.633-0-55.467 24.833-55.467 55.467v619.52c0.242 30.449 24.982 55.040 55.465 55.040 0.001 0 0.001-0 0.002-0l31.147 0c29.655-0.949 53.333-25.216 53.333-55.014 0-0.009-0-0.019-0-0.028l0 0.001zM323.413 762.88v-236.373c0-27.806-22.541-50.347-50.347-50.347v0h-42.667c-27.806 0-50.347 22.541-50.347 50.347v0 236.373c-0 0.001-0 0.001-0 0.002 0 27.57 22.35 49.92 49.92 49.92 0.15 0 0.3-0.001 0.45-0.002l-0.023 0h42.667c27.014-0.715 48.64-22.784 48.64-49.904 0-0.006-0-0.012-0-0.017l0 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart-simple"]},"attrs":[{}],"properties":{"order":7120,"id":417,"name":"chart-simple","prevSize":32,"code":59803},"setIdx":0,"setId":0,"iconIdx":155},{"icon":{"paths":["M554.667 139.093c-0.011-0.392-0.017-0.854-0.017-1.317 0-28.277 22.923-51.2 51.2-51.2 4.091 0 8.071 0.48 11.885 1.387l-0.348-0.070c186.373 50.226 321.284 217.733 321.284 416.75 0 0.637-0.001 1.273-0.004 1.909l0-0.099c0.002 0.429 0.002 0.937 0.002 1.446 0 40.035-5.609 78.761-16.085 115.433l0.723-2.958c-6.015 22.587-26.285 38.955-50.379 38.955-9.57 0-18.536-2.582-26.241-7.089l0.246 0.133-69.547-40.533c-11.392-6.484-18.95-18.544-18.95-32.369 0-3.669 0.532-7.213 1.524-10.56l-0.067 0.263c4.94-18.762 7.883-40.346 8.106-62.582l0.001-0.138c0.003-0.434 0.004-0.947 0.004-1.46 0-117.656-78.456-216.988-185.906-248.532l-1.831-0.461c-15.36-4.267-25.6-19.2-25.6-45.227zM734.72 686.507c-5.139-3.017-11.319-4.799-17.916-4.799-9.606 0-18.329 3.779-24.765 9.932l0.013-0.013c-45.863 45.858-109.219 74.222-179.2 74.222s-133.337-28.364-179.2-74.222l0 0c-6.422-6.14-15.145-9.919-24.751-9.919-6.596 0-12.776 1.782-18.085 4.891l0.169-0.092-69.547 42.667c-16.599 9.035-27.676 26.348-27.676 46.248 0 13.587 5.163 25.968 13.635 35.288l-0.038-0.043c76.881 80.281 184.934 130.177 304.64 130.177s227.759-49.896 304.495-130.025l0.145-0.152c8.623-9.323 13.913-21.839 13.913-35.591 0-19.341-10.463-36.239-26.038-45.341l-0.249-0.134zM177.067 652.373c-7.458 4.373-16.425 6.955-25.995 6.955-24.093 0-44.363-16.369-50.296-38.592l-0.083-0.364c-9.753-33.714-15.362-72.439-15.362-112.474 0-0.508 0.001-1.016 0.003-1.524l-0 0.079c-0.002-0.537-0.004-1.174-0.004-1.81 0-199.017 134.911-366.524 318.267-416.056l3.017-0.694c3.466-0.837 7.445-1.317 11.537-1.317 28.277 0 51.2 22.923 51.2 51.2 0 0.463-0.006 0.925-0.018 1.385l0.001-0.068v81.92c0.006 0.256 0.010 0.558 0.010 0.861 0 16.307-10.637 30.129-25.351 34.907l-0.26 0.073c-109.279 32.006-187.734 131.337-187.734 248.992 0 0.214 0 0.427 0.001 0.641l-0-0.033c0.074 22.916 3.026 45.108 8.514 66.279l-0.408-1.853c0.925 3.084 1.457 6.629 1.457 10.298 0 13.825-7.558 25.885-18.767 32.273l-0.183 0.096z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chart"]},"attrs":[{}],"properties":{"order":7121,"id":416,"name":"chart","prevSize":32,"code":59804},"setIdx":0,"setId":0,"iconIdx":156},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM499.2 670.293l256-256c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002-225.707 225.707-140.8-140.8c-7.736-7.789-18.452-12.611-30.293-12.611-23.577 0-42.691 19.113-42.691 42.691 0 11.736 4.735 22.365 12.4 30.082l-0.002-0.002 170.667 170.667c7.753 7.923 18.555 12.836 30.505 12.836 11.738 0 22.37-4.74 30.084-12.411l-0.002 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-circle"]},"attrs":[{}],"properties":{"order":7122,"id":415,"name":"check-circle","prevSize":32,"code":59805},"setIdx":0,"setId":0,"iconIdx":157},{"icon":{"paths":["M689.92 938.667h-356.267c-135.833-0.485-245.76-110.711-245.76-246.612 0-0.001 0-0.001 0-0.002l-0 0v-355.413c-0-0-0-0-0-0 0-135.815 109.978-245.943 245.737-246.186l0.023-0h355.84c0.254-0.001 0.553-0.001 0.853-0.001 135.73 0 245.76 110.030 245.76 245.76 0 0.001-0 0.001-0 0.002l0-0v355.413c0.001 0.253 0.001 0.553 0.001 0.853 0 135.965-110.222 246.187-246.187 246.187-0 0-0.001-0-0.001-0l-0-0zM499.627 672l256-256c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003-225.707 226.133-139.093-139.947c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002 170.667 170.667c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check-square"]},"attrs":[{}],"properties":{"order":7123,"id":414,"name":"check-square","prevSize":32,"code":59806},"setIdx":0,"setId":0,"iconIdx":158},{"icon":{"paths":["M735.573 334.933l-285.013 285.013-165.547-165.547c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002 195.84 195.84c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002 314.88-314.88c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["check"]},"attrs":[{}],"properties":{"order":7124,"id":413,"name":"check","prevSize":32,"code":59807},"setIdx":0,"setId":0,"iconIdx":159},{"icon":{"paths":["M646.4 808.107v-661.333c0.001-0.115 0.002-0.251 0.002-0.387 0-20.736-16.81-37.547-37.547-37.547-7.797 0-15.039 2.377-21.041 6.445l0.132-0.084-51.627 33.28c-5.993 4.054-13.381 6.471-21.333 6.471s-15.341-2.418-21.469-6.558l0.136 0.087-85.333-56.747c-5.942-4.218-13.343-6.743-21.333-6.743s-15.392 2.525-21.449 6.82l0.115-0.078-84.053 63.573c-5.976 4.107-13.369 6.559-21.333 6.559s-15.357-2.452-21.462-6.643l0.129 0.084-55.040-36.693c-6.065-4.287-13.613-6.853-21.76-6.853-20.972 0-37.973 17.001-37.973 37.973 0 0.009 0 0.019 0 0.028l-0-0.001v658.347c-0 0.002-0 0.004-0 0.006 0 72.106 58.454 130.56 130.56 130.56 0.45 0 0.9-0.002 1.348-0.007l-0.068 0.001h520.533c-71.923-0.243-130.133-58.603-130.133-130.559 0-0 0-0 0-0.001l-0 0zM338.347 544.427h-94.72c-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427h94.72c17.909 0 32.427 14.518 32.427 32.427s-14.518 32.427-32.427 32.427h0zM338.347 405.333h-94.72c-18.048-0.237-32.616-14.805-32.853-32.831l-0-0.023c0.933-17.395 15.265-31.147 32.809-31.147 0.016 0 0.031 0 0.047 0l-0.002-0h94.72c17.909 0 32.427 14.518 32.427 32.427v0c-0.7 17.446-14.904 31.352-32.405 31.573l-0.021 0zM512 682.667h-93.867c-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427h93.867c17.909 0 32.427 14.518 32.427 32.427s-14.518 32.427-32.427 32.427h-0zM512 543.147h-57.173c-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427h57.173c17.909 0 32.427 14.518 32.427 32.427s-14.518 32.427-32.427 32.427h0zM512 405.333h-57.173c-17.96-0.241-32.427-14.856-32.427-32.851 0-0.001 0-0.002 0-0.003l-0 0c0.707-17.349 14.943-31.147 32.401-31.147 0.009 0 0.018 0 0.027 0l57.172-0c17.909 0 32.427 14.518 32.427 32.427h0c-0.7 17.446-14.904 31.352-32.405 31.573l-0.021 0zM871.68 900.267v0zM812.8 896h-36.267c-47.128 0-85.333-38.205-85.333-85.333v0-203.52h123.307c47.128 0 85.333 38.205 85.333 85.333v0 118.187c0 0.005 0 0.011 0 0.017 0 47.128-38.205 85.333-85.333 85.333-0.6 0-1.199-0.006-1.796-0.019l0.089 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cheque"]},"attrs":[{}],"properties":{"order":7125,"id":412,"name":"cheque","prevSize":32,"code":59808},"setIdx":0,"setId":0,"iconIdx":160},{"icon":{"paths":["M205.653 234.24c79.423-94.216 197.511-153.657 329.483-153.657 156.811 0 294.020 83.922 369.165 209.303l1.085 1.954c-45.997-5.784-99.226-9.085-153.225-9.085-86.305 0-170.64 8.432-252.227 24.517l8.224-1.352c-92.345 13.465-164.806 84.481-180.301 174.949l-0.179 1.264c-49.853-71.252-91.281-153.393-120.134-241.237l-1.893-6.656zM386.56 516.693c0 82.239 66.668 148.906 148.907 148.906s148.907-66.668 148.907-148.907c0-82.239-66.668-148.907-148.907-148.907-0.15 0-0.3 0-0.45 0.001l0.023-0c-0-0-0-0-0.001-0-82.003 0-148.48 66.477-148.48 148.48 0 0.15 0 0.3 0.001 0.45l-0-0.023zM666.88 350.72c49.211 39.131 80.608 98.839 81.066 165.897l0 0.076c-0.122 29.93-6.388 58.364-17.6 84.151l0.534-1.378c-51.388 131.376-117.527 244.845-198.31 346.118l2.043-2.652c0.462 0.002 1.009 0.003 1.557 0.003 237.762 0 430.507-192.744 430.507-430.507 0-54.902-10.277-107.404-29.013-155.686l1.003 2.936c-58.542-6.744-126.382-10.591-195.12-10.591-26.963 0-53.787 0.592-80.461 1.764l3.795-0.133zM457.387 935.68c53.816-64.378 103.154-136.306 145.358-212.725l3.549-7.008c-21.142 8.193-45.604 13.028-71.17 13.226l-0.084 0.001c-60.523-0.476-114.974-26.083-153.504-66.884l-0.096-0.103h-2.56c-89.539-103.546-163.382-223.85-215.872-355.006l-3.008-8.514c-35.118 60.935-55.835 134.008-55.835 211.919 0 210.815 151.681 386.203 351.862 422.985l2.64 0.403z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["chrome"]},"attrs":[{}],"properties":{"order":7126,"id":411,"name":"chrome","prevSize":32,"code":59809},"setIdx":0,"setId":0,"iconIdx":161},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 293.973c0.381-0.005 0.83-0.008 1.28-0.008 56.083 0 101.547 45.464 101.547 101.547s-45.464 101.547-101.547 101.547c-56.080 0-101.542-45.459-101.547-101.538l-0-0c0.232-55.541 44.831-100.59 100.177-101.545l0.090-0.001zM623.36 677.973c4.392 5.381 7.053 12.325 7.053 19.89 0 10.092-4.735 19.078-12.104 24.858l-0.069 0.052c-5.090 4.511-11.825 7.266-19.205 7.266-0.298 0-0.596-0.005-0.892-0.013l0.043 0.001c-9.955-0.188-18.802-4.775-24.703-11.892l-0.044-0.054-61.44-78.080-62.72 78.080c-5.917 7.321-14.896 11.964-24.96 11.964-17.683 0-32.018-14.335-32.018-32.018 0-7.619 2.661-14.617 7.105-20.114l-0.047 0.061 52.053-64.427c-16.175-4.057-30.384-9.91-43.465-17.494l0.798 0.427c-9.123-5.743-15.096-15.759-15.096-27.171 0-5.688 1.484-11.028 4.085-15.657l-0.083 0.161c5.822-9.232 15.965-15.275 27.519-15.275 5.541 0 10.758 1.39 15.32 3.84l-0.173-0.085c21.279 10.748 46.384 17.043 72.96 17.043s51.681-6.295 73.907-17.474l-0.947 0.432c3.974-1.938 8.646-3.071 13.583-3.071 12.999 0 24.164 7.856 29.005 19.080l0.079 0.205c1.847 3.921 2.925 8.517 2.925 13.365 0 13.019-7.775 24.223-18.935 29.22l-0.203 0.081c-11.379 4.774-25.583 9.586-40.153 13.505l-2.514 0.575z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["classmates"]},"attrs":[{}],"properties":{"order":7127,"id":410,"name":"classmates","prevSize":32,"code":59810},"setIdx":0,"setId":0,"iconIdx":162},{"icon":{"paths":["M794.88 597.333c-5.492 15.201-18.957 26.24-35.214 28.141l-0.2 0.019c-49.203 5.821-93.697 15.71-136.406 29.56l4.993-1.4 64 152.747c3.611 7.737 5.719 16.798 5.719 26.351 0 26.563-16.292 49.322-39.429 58.828l-0.423 0.154c-7.298 3.182-15.795 5.059-24.724 5.12l-0.023 0c-0.127 0.001-0.277 0.001-0.428 0.001-26.26 0-48.776-16.029-58.298-38.838l-0.154-0.417-62.293-152.32c-38.103 21.061-70.747 42.814-101.452 66.926l1.612-1.22c-7.146 5.588-16.259 8.961-26.161 8.961-0.103 0-0.206-0-0.309-0.001l0.016 0c-0.052 0-0.113 0-0.175 0-6.766 0-13.165-1.575-18.849-4.378l0.25 0.111c-14.265-7.104-23.893-21.585-23.893-38.315 0-0.030 0-0.060 0-0.090l-0 0.005v-523.947c0.091-17.632 10.863-32.726 26.172-39.149l0.281-0.105c4.883-2.109 10.568-3.336 16.539-3.336 11.682 0 22.267 4.695 29.972 12.3l-0.005-0.004 368.64 371.627c7.546 7.69 12.203 18.238 12.203 29.873 0 4.568-0.718 8.969-2.047 13.095l0.084-0.302zM631.467 213.333l40.533-74.667c3.341-4.974 5.333-11.098 5.333-17.688 0-17.673-14.327-32-32-32-12.954 0-24.11 7.697-29.144 18.767l-0.082 0.201-42.667 75.093c-2.354 4.312-3.738 9.446-3.738 14.903 0 11.928 6.614 22.311 16.375 27.681l0.163 0.082c4.383 2.676 9.686 4.262 15.359 4.267l0.001 0c0.454 0.023 0.987 0.036 1.522 0.036 12.126 0 22.697-6.656 28.26-16.514l0.084-0.162zM759.467 364.373l76.373-38.4c10.497-5.411 17.55-16.175 17.55-28.587 0-17.705-14.352-32.057-32.057-32.057-5.293 0-10.286 1.283-14.686 3.554l0.179-0.084-75.947 38.4c-10.412 5.422-17.399 16.133-17.399 28.475 0 5.17 1.226 10.053 3.403 14.376l-0.084-0.184c5.292 10.454 15.954 17.495 28.261 17.495 0.115 0 0.229-0.001 0.343-0.002l-0.017 0c5.168-0.537 9.823-2.375 13.74-5.179l-0.086 0.059zM235.947 426.667c0.007-0.254 0.012-0.553 0.012-0.853 0-17.437-14.136-31.573-31.573-31.573-0.004 0-0.008 0-0.012 0l-85.333-0c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h85.333c17.341-0.237 31.336-14.232 31.573-31.551l0-0.023zM153.6 686.507l76.373-37.973c10.858-5.149 18.232-16.022 18.232-28.616 0-5.12-1.219-9.955-3.381-14.231l0.083 0.18c-5.438-10.725-16.383-17.947-29.014-17.947-4.955 0-9.65 1.111-13.849 3.098l0.197-0.084-76.373 37.973c-10.535 5.383-17.622 16.158-17.622 28.588 0 17.568 14.158 31.83 31.686 31.998l0.016 0c4.953-0.019 9.645-1.118 13.859-3.072l-0.206 0.086z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["click"]},"attrs":[{}],"properties":{"order":7128,"id":409,"name":"click","prevSize":32,"code":59811},"setIdx":0,"setId":0,"iconIdx":163},{"icon":{"paths":["M602.88 795.733c7.455-0.373 14.467-1.441 21.225-3.146l-0.745 0.159c-6.013 1.546-13.025 2.614-20.223 2.976l-0.257 0.010zM638.293 788.48c7.746-2.25 14.12-4.574 20.305-7.253l-1.105 0.426c-4.568 2.17-10.356 4.481-16.289 6.476l-1.204 0.351zM747.093 703.147c3.317-5.789 6.75-12.803 9.762-20.038l0.478-1.296c-3.509 8.363-6.939 15.233-10.745 21.86l0.505-0.953zM180.48 717.653v0c8.404 6.28 17.915 12.103 27.95 17.022l1.064 0.471c-11.082-5.522-20.59-11.481-29.452-18.241l0.439 0.321zM234.24 745.387l-12.373-4.267zM554.667 795.733c8.401 1.279 18.154 2.052 28.072 2.133l0.088 0.001h5.547c-5.045 0.401-10.922 0.63-16.853 0.63s-11.809-0.229-17.625-0.678l0.771 0.048-288.427-42.667zM739.84 714.667c-4.22 6.438-8.431 12.005-12.976 17.276l0.176-0.209c4.024-4.984 7.964-10.554 11.546-16.368l0.401-0.699zM716.8 742.4c-5.12 4.693-9.813 9.387-15.36 13.653 4.693-4.267 9.387-8.96 14.507-13.653zM857.6 330.667c0.203 3.189 0.319 6.914 0.319 10.667s-0.116 7.478-0.344 11.174l0.025-0.507-42.667 288.427c-17.241 113.849-114.418 200.101-231.739 200.101-12.175 0-24.132-0.929-35.806-2.719l1.305 0.165-288.427-42.667c-14.901-2.531-27.961-5.939-40.556-10.339l1.729 0.526c21.427 24.104 48.764 42.498 79.755 52.949l1.312 0.384 276.48 92.16c17.86 6.060 38.432 9.557 59.821 9.557 83.796 0 155.055-53.681 181.262-128.531l0.41-1.346 92.16-276.48c6.195-17.984 9.772-38.708 9.772-60.267 0-56.981-24.989-108.126-64.605-143.074l-0.207-0.179zM814.933 301.227c0 4.693 0 8.96 0 13.653 0.853-4.693 0.853-8.96 0.427-13.653zM772.267 634.027c-2.056 13.704-5.181 25.927-9.389 37.632l0.429-1.366c3.779-10.34 6.904-22.562 8.824-35.181l0.136-1.086 21.333-144.213zM672 775.253l17.067-10.667zM814.507 345.6l-42.667 288.427c-14.075 93.139-93.564 163.711-189.536 163.711-9.751 0-19.332-0.729-28.691-2.134l1.054 0.13-288.427-42.667c-93.204-14.239-163.776-93.835-163.776-189.914 0-9.92 0.752-19.664 2.203-29.178l-0.134 1.066 42.667-288.427c14.691-92.952 94.24-163.181 190.191-163.181 9.518 0 18.875 0.691 28.023 2.026l-1.041-0.125 288.427 42.667c93.175 14.266 163.715 93.848 163.715 189.905 0 9.771-0.73 19.372-2.138 28.751l0.13-1.056zM459.093 307.2c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333v0c47.128 0 85.333-38.205 85.333-85.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["clipboard"]},"attrs":[{}],"properties":{"order":7129,"id":408,"name":"clipboard","prevSize":32,"code":59812},"setIdx":0,"setId":0,"iconIdx":164},{"icon":{"paths":["M538.88 891.733v0zM538.88 891.733h65.28c21.645-2.252 38.376-20.397 38.376-42.45 0-10.129-3.53-19.434-9.426-26.752l0.064 0.082-92.587-92.587c-7.533-6.819-17.572-10.993-28.587-10.993s-21.054 4.173-28.623 11.025l0.036-0.032-92.587 92.587c-5.833 7.236-9.362 16.54-9.362 26.67 0 22.053 16.731 40.198 38.192 42.435l0.184 0.016h65.28zM810.667 647.68c70.692 0 128-57.308 128-128s-57.308-128-128-128v0h-8.107c4.977-12.646 7.936-27.286 8.106-42.596l0.001-0.071c0-70.692-57.308-128-128-128v0c-26.776 0.075-51.603 8.359-72.112 22.468l0.432-0.281c-37.668-63.804-106.077-105.932-184.326-105.932-117.262 0-212.427 94.609-213.327 211.659l-0.001 0.086c0.125 15.169 1.673 29.897 4.515 44.159l-0.248-1.493h-4.267c-70.692 0-128 57.308-128 128s57.308 128 128 128v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-add"]},"attrs":[{}],"properties":{"order":7130,"id":407,"name":"cloud-add","prevSize":32,"code":59813},"setIdx":0,"setId":0,"iconIdx":165},{"icon":{"paths":["M318.72 891.733h-65.28c-21.645-2.252-38.376-20.397-38.376-42.45 0-10.129 3.53-19.434 9.426-26.752l-0.064 0.082 92.587-92.587c7.562-6.936 17.684-11.186 28.8-11.186s21.238 4.251 28.831 11.215l-0.031-0.028 92.16 92.587c5.853 7.243 9.396 16.563 9.396 26.711 0 21.914-16.521 39.969-37.787 42.391l-0.196 0.018h-119.467zM651.52 718.080h-65.707c-21.61 2.288-38.301 20.416-38.301 42.443 0 10.326 3.668 19.795 9.772 27.176l-0.058-0.072 92.16 92.16c7.299 7.524 17.504 12.194 28.8 12.194s21.501-4.67 28.79-12.184l0.010-0.010 92.587-92.16c6.027-7.302 9.683-16.757 9.683-27.065 0-22.166-16.903-40.384-38.523-42.468l-0.173-0.014h-119.040zM810.667 669.013c70.692 0 128-57.308 128-128s-57.308-128-128-128v0h-8.107c4.977-12.646 7.936-27.286 8.106-42.596l0.001-0.071c0-70.692-57.308-128-128-128v0c-26.776 0.075-51.603 8.359-72.112 22.468l0.432-0.281c-37.668-63.804-106.077-105.932-184.326-105.932-117.262 0-212.427 94.609-213.327 211.659l-0.001 0.086c0.125 15.169 1.673 29.897 4.515 44.159l-0.248-1.493h-4.267c-70.692 0-128 57.308-128 128s57.308 128 128 128v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-change"]},"attrs":[{}],"properties":{"order":7131,"id":406,"name":"cloud-change","prevSize":32,"code":59814},"setIdx":0,"setId":0,"iconIdx":166},{"icon":{"paths":["M213.333 647.68c-70.692 0-128-57.308-128-128s57.308-128 128-128v0h4.267c-2.594-12.769-4.141-27.498-4.266-42.565l-0.001-0.101c0.9-117.136 96.065-211.745 213.327-211.745 78.248 0 146.657 42.128 183.783 104.94l0.543 0.992c20.077-13.827 44.904-22.112 71.661-22.187l0.019-0c70.692 0 128 57.308 128 128v0c-0.17 15.38-3.13 30.020-8.395 43.506l0.288-0.839h8.107c70.692 0 128 57.308 128 128s-57.308 128-128 128v0zM485.12 718.080h-65.28c-21.793 2.097-38.696 20.315-38.696 42.482 0 10.308 3.656 19.763 9.741 27.138l-0.058-0.073 92.587 92.16c7.229 7.502 17.364 12.161 28.587 12.161s21.357-4.659 28.575-12.149l0.012-0.012 92.587-92.16c6.027-7.302 9.683-16.757 9.683-27.065 0-22.166-16.903-40.384-38.523-42.468l-0.173-0.014h-119.040z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud-download"]},"attrs":[{}],"properties":{"order":7132,"id":405,"name":"cloud-download","prevSize":32,"code":59815},"setIdx":0,"setId":0,"iconIdx":167},{"icon":{"paths":["M810.667 768c70.692 0 128-57.308 128-128s-57.308-128-128-128v0h-8.107c4.977-12.646 7.936-27.286 8.106-42.596l0.001-0.071c0-70.692-57.308-128-128-128v0c-26.776 0.075-51.603 8.359-72.112 22.468l0.432-0.281c-37.668-63.804-106.077-105.932-184.326-105.932-117.262 0-212.427 94.609-213.327 211.659l-0.001 0.086c0.149 15.183 1.695 29.91 4.516 44.179l-0.249-1.512h-4.267c-70.692 0-128 57.308-128 128s57.308 128 128 128v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cloud"]},"attrs":[{}],"properties":{"order":7133,"id":404,"name":"cloud","prevSize":32,"code":59816},"setIdx":0,"setId":0,"iconIdx":168},{"icon":{"paths":["M89.173 269.227c20.376-105.273 111.721-183.713 221.42-183.893l0.020-0h402.773c109.718 0.18 201.064 78.62 221.21 182.472l0.23 1.422c0.478 2.181 0.751 4.686 0.751 7.255 0 19.558-15.855 35.413-35.413 35.413-0.114 0-0.228-0.001-0.342-0.002l0.017 0h-775.68c-0.096 0.001-0.21 0.001-0.324 0.001-19.558 0-35.413-15.855-35.413-35.413 0-2.569 0.274-5.074 0.793-7.488l-0.042 0.233zM938.667 409.173v304.213c0 0.127 0 0.277 0 0.427 0 124.183-100.67 224.853-224.853 224.853-0.15 0-0.3-0-0.45-0l0.023 0h-402.773c-0.127 0-0.277 0-0.427 0-124.183 0-224.853-100.67-224.853-224.853 0-0.15 0-0.3 0-0.45l-0 0.023v-304.213c0-19.558 15.855-35.413 35.413-35.413v0h782.507c19.558 0 35.413 15.855 35.413 35.413v0zM341.333 640l61.867-59.307c9.178-5.733 15.193-15.779 15.193-27.231 0-17.673-14.327-32-32-32-10.586 0-19.972 5.141-25.797 13.062l-0.062 0.089-85.333 81.92c-5.935 5.9-9.656 14.021-9.813 23.010l-0 0.030c-0 0.048-0 0.105-0 0.162 0 8.997 3.763 17.115 9.801 22.866l0.013 0.012 85.333 85.333c5.459 5.787 13.18 9.39 21.742 9.39 0.156 0 0.312-0.001 0.468-0.004l-0.024 0c0.122 0.002 0.265 0.003 0.409 0.003 17.673 0 32-14.327 32-32 0-9.045-3.753-17.213-9.786-23.033l-0.010-0.009zM760.747 640c-0.157-9.019-3.879-17.14-9.812-23.038l-0.002-0.002-85.333-81.92c-4.779-2.994-10.586-4.769-16.807-4.769-17.673 0-32 14.327-32 32 0 7.087 2.304 13.635 6.203 18.938l-0.062-0.089 59.733 58.88-62.293 61.013c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.9 5.935 14.021 9.656 23.010 9.813l0.030 0c0.132 0.002 0.288 0.003 0.444 0.003 8.562 0 16.283-3.603 21.728-9.375l0.014-0.015 85.333-85.333c5.7-5.411 9.378-12.905 9.81-21.256l0.003-0.077z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["code"]},"attrs":[{}],"properties":{"order":7134,"id":403,"name":"code","prevSize":32,"code":59817},"setIdx":0,"setId":0,"iconIdx":169},{"icon":{"paths":["M398.080 217.6c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-85.333c0-17.673 14.327-32 32-32s32 14.327 32 32v0 85.333c0 17.673-14.327 32-32 32v0zM263.253 185.6v-85.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 85.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM597.333 189.44v-85.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 85.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM725.333 402.773c-1.856-0.211-4.007-0.331-6.187-0.331s-4.331 0.12-6.448 0.354l0.261-0.023c-26.134-63.408-86.906-107.491-158.131-108.798l-0.163-0.002h-312.32c-0.001-0-0.001-0-0.002-0-96.377 0-174.507 78.129-174.507 174.507 0 0.3 0.001 0.6 0.002 0.9l-0-0.046v34.56h660.907v-34.56c86.817 4.571 155.482 76.080 155.482 163.627s-68.664 159.055-155.076 163.61l-0.406 0.017s0-2.987 0-4.693c0.112-1.595 0.176-3.457 0.176-5.333s-0.064-3.738-0.189-5.583l0.014 0.25v-213.333h-660.907v213.333c-0 0-0 0-0 0.001 0 96.463 78.077 174.69 174.483 174.933l0.023 0h312.32c68.575-0.105 127.843-39.846 156.132-97.534l0.454-1.026c2.785 1.004 6.355 2.032 10.001 2.86l0.666 0.127h7.68c121.519-5.426 217.983-105.261 217.983-227.627s-96.464-222.201-217.495-227.609l-0.487-0.017z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["coffee"]},"attrs":[{}],"properties":{"order":7135,"id":402,"name":"coffee","prevSize":32,"code":59818},"setIdx":0,"setId":0,"iconIdx":170},{"icon":{"paths":["M938.667 688.213v159.573c0 50.192-40.688 90.88-90.88 90.88v0h-431.787l5.973-4.693 336.64-336.64h89.173c50.192 0 90.88 40.688 90.88 90.88v0zM795.307 341.333l-112.64-112.64c-16.42-16.29-39.034-26.357-64-26.357s-47.58 10.067-64.006 26.363l0.006-0.006-64 63.147v476.16c0 2.56 0 4.693 0 7.253l304.64-305.92c16.29-16.42 26.357-39.034 26.357-64s-10.067-47.58-26.363-64.006l0.006 0.006zM176.213 85.333h159.573c50.192 0 90.88 40.688 90.88 90.88v0 591.787c0 94.257-76.41 170.667-170.667 170.667s-170.667-76.41-170.667-170.667v0-591.787c0-50.192 40.688-90.88 90.88-90.88v0zM256 832c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64v0c0.24 35.249 28.751 63.76 63.977 64l0.023 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["color-swatch"]},"attrs":[{}],"properties":{"order":7136,"id":401,"name":"color-swatch","prevSize":32,"code":59819},"setIdx":0,"setId":0,"iconIdx":171},{"icon":{"paths":["M361.813 426.667c-0.2-2.3-0.315-4.977-0.315-7.68s0.114-5.38 0.338-8.025l-0.024 0.345c0-84.831 68.769-153.6 153.6-153.6s153.6 68.769 153.6 153.6v-0c0.2 2.3 0.315 4.977 0.315 7.68s-0.114 5.38-0.338 8.025l0.024-0.345c-1.070 15.608-4.421 30.126-9.73 43.661l0.344-0.994c-2.133 5.547-5.12 10.24-7.68 15.36s-2.987 5.973-4.693 8.533c-3.423 5.473-6.939 10.21-10.788 14.65l0.122-0.143c-1.537 2.236-3.079 4.184-4.738 6.024l0.045-0.051c-4.396 4.88-8.994 9.343-13.874 13.483l-0.206 0.17-3.84 3.413c-5.138 4.274-10.843 8.486-16.784 12.366l-0.709 0.434c-15.94 9.695-34.622 16.728-54.583 19.936l-0.884 0.117c-7.070 1.421-15.301 2.343-23.708 2.556l-0.186 0.004c-9.897-0.14-19.458-1.221-28.705-3.157l0.971 0.17h-8.533c-7.183-1.62-13.314-3.527-19.233-5.854l0.886 0.307-8.533-3.413c-5.973-2.987-11.947-5.973-17.493-9.387l-9.813-6.827c-6.984-5.098-13.103-10.134-18.92-15.494l0.147 0.134-8.107-10.667-8.96-10.667c-2.275-2.752-4.522-5.813-6.592-9.001l-0.235-0.386c-2.144-3.139-4.273-6.771-6.154-10.549l-0.246-0.545c-8.15-15.74-13.759-34.102-15.733-53.539l-0.053-0.648zM563.2 600.32c-14.78 4.407-31.787 7.042-49.377 7.252l-0.116 0.001c-81.731-0.484-151.654-50.526-181.277-121.574l-0.483-1.306c-44.305 27.368-73.386 75.664-73.386 130.752 0 84.595 68.578 153.173 153.173 153.173 84.513 0 153.040-68.444 153.173-152.926l0-0.013c-0.187-5.406-0.799-10.542-1.808-15.535l0.102 0.602zM936.96 301.653v423.68c0 117.821-95.513 213.333-213.333 213.333v0h-422.827c-117.821 0-213.333-95.513-213.333-213.333v0-424.533c0-117.821 95.513-213.333 213.333-213.333v0h424.533c117.821 0 213.333 95.513 213.333 213.333v0zM810.667 616.107c-1.087-73.947-43.082-137.838-104.321-170.154l-1.066-0.513c2.983-12.835 4.693-27.574 4.693-42.711 0-108.631-88.063-196.693-196.693-196.693s-196.693 88.063-196.693 196.693c0 15.138 1.71 29.876 4.948 44.033l-0.254-1.321c-59.894 34.308-99.597 97.851-99.597 170.667 0 108.261 87.763 196.024 196.024 196.024 35.445 0 68.693-9.408 97.383-25.862l-0.956 0.505c29.058 18.449 64.446 29.412 102.393 29.44l0.007 0c107.49-1.184 194.171-88.597 194.171-196.255 0-1.354-0.014-2.705-0.041-4.053l0.003 0.202zM695.467 485.12c-18.135 43.21-49.893 77.726-89.814 98.897l-1.066 0.516c1.765 9.415 2.845 20.318 2.985 31.448l0.001 0.126c0 0.037 0 0.081 0 0.126 0 53.719-21.676 102.375-56.758 137.699l0.011-0.011c18.992 9.841 41.442 15.662 65.24 15.787l0.040 0c0.199 0.001 0.434 0.001 0.669 0.001 84.595 0 153.173-68.578 153.173-153.173 0-55.539-29.559-104.174-73.802-131.031l-0.68-0.383z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["colors-square"]},"attrs":[{}],"properties":{"order":7137,"id":400,"name":"colors-square","prevSize":32,"code":59820},"setIdx":0,"setId":0,"iconIdx":172},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM336.213 746.667c-4.808 1.88-10.375 2.969-16.196 2.969-25.214 0-45.653-20.44-45.653-45.653 0-5.821 1.090-11.388 3.076-16.508l-0.106 0.311 104.107-270.933 218.88 228.267zM746.667 336.213l-101.12 263.253-213.333-223.573 256-98.56c4.668-1.763 10.065-2.784 15.7-2.784 25.214 0 45.653 20.44 45.653 45.653 0 5.752-1.064 11.255-3.005 16.324l0.105-0.313z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["compass"]},"attrs":[{}],"properties":{"order":7138,"id":399,"name":"compass","prevSize":32,"code":59821},"setIdx":0,"setId":0,"iconIdx":173},{"icon":{"paths":["M938.667 242.347v282.88c0 0 0 0 0 0.001 0 86.802-70.245 157.197-156.99 157.439l-0.023 0h-34.987v-183.893c-0.242-122.2-99.24-221.198-221.417-221.44l-0.023-0h-183.893v-34.987c0.243-86.768 70.638-157.013 157.439-157.013 0 0 0 0 0.001 0l282.88 0c86.716-0 157.013 70.297 157.013 157.013v0zM682.667 498.347v282.88c0 86.952-70.488 157.44-157.44 157.44v-0h-282.88c-86.716 0-157.013-70.297-157.013-157.013h0v-282.88c-0-0-0-0-0-0.001 0-86.802 70.245-157.197 156.99-157.439l0.023-0h282.88c86.952 0 157.44 70.488 157.44 157.44v0zM547.84 531.2c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0-135.253 130.133-52.907-54.187c-5.063-3.514-11.338-5.614-18.104-5.614-17.673 0-32 14.327-32 32 0 6.005 1.654 11.624 4.532 16.426l-0.081-0.145 75.093 76.8c5.835 5.682 13.815 9.186 22.613 9.186s16.778-3.504 22.62-9.193l-0.007 0.007 157.867-152.32c5.319-5.698 8.584-13.373 8.584-21.81 0-7.987-2.926-15.291-7.765-20.898l0.035 0.041z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy-success"]},"attrs":[{}],"properties":{"order":7139,"id":398,"name":"copy-success","prevSize":32,"code":59822},"setIdx":0,"setId":0,"iconIdx":174},{"icon":{"paths":["M525.227 938.667h-282.88c-86.716 0-157.013-70.297-157.013-157.013h0v-282.88c-0-0-0-0-0-0.001 0-86.802 70.245-157.197 156.99-157.439l0.023-0h282.88c86.952 0 157.44 70.488 157.44 157.44v0 282.88c-0.243 86.768-70.638 157.013-157.439 157.013-0 0-0-0-0.001-0l0-0zM781.227 85.333h-282.453c-0-0-0-0-0.001-0-86.802 0-157.197 70.245-157.439 156.99l-0 0.023v34.987h183.893c122.2 0.242 221.198 99.24 221.44 221.417l0 0.023v183.893h34.987c86.768-0.243 157.013-70.638 157.013-157.439 0-0-0-0-0-0.001l-0 0v-282.88c0-86.716-70.297-157.013-157.013-157.013v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["copy"]},"attrs":[{}],"properties":{"order":7140,"id":397,"name":"copy","prevSize":32,"code":59823},"setIdx":0,"setId":0,"iconIdx":175},{"icon":{"paths":["M896 323.84h-75.093c-0.001-0-0.001-0-0.002-0-22 0-39.863 17.714-40.104 39.657l-0 0.023v96.853h-66.133l-27.307-100.693c-2.226-7.048-5.577-13.156-9.892-18.446l0.079 0.1c-5.045-7.189-11.464-13.063-18.915-17.343l-0.285-0.151-18.347-12.373c39.95-5.645 70.351-39.585 70.4-80.635l0-0.005v-2.56h57.6c1.077 0.136 2.324 0.213 3.589 0.213 16.731 0 30.293-13.563 30.293-30.293s-13.563-30.293-30.293-30.293c-1.265 0-2.511 0.078-3.736 0.228l0.147-0.015h-61.44c-10.558-33.345-41.226-57.091-77.44-57.091s-66.882 23.746-77.283 56.516l-0.157 0.574c-2.641 7.365-4.199 15.863-4.266 24.716l-0 0.031v37.973c0.009 15.885 4.786 30.653 12.978 42.951l-0.178-0.284c-2.565-0.411-5.522-0.645-8.533-0.645s-5.969 0.235-8.853 0.687l0.32-0.041c-15.826 4.202-28.768 14.362-36.541 27.872l-0.153 0.288-122.453 221.013-4.693 5.12-46.080 44.8-229.973 230.4c-9.744 9.47-15.79 22.701-15.79 37.344 0 0.221 0.001 0.442 0.004 0.663l-0-0.034c-0.010 0.382-0.015 0.831-0.015 1.282 0 29.691 24.069 53.76 53.76 53.76 0.155 0 0.311-0.001 0.466-0.002l-0.024 0c0.081 0 0.177 0.001 0.274 0.001 14.754 0 28.098-6.039 37.693-15.781l0.006-0.007 241.067-240.213 80.213 60.587-121.6 119.893c-9.654 9.906-15.609 23.458-15.609 38.4s5.954 28.494 15.62 38.412l-0.011-0.012c9.733 9.754 23.19 15.788 38.056 15.788 0.121 0 0.242-0 0.363-0.001l-0.019 0c0.081 0 0.177 0.001 0.274 0.001 14.754 0 28.098-6.039 37.693-15.781l0.006-0.007 165.12-165.12c9.754-9.733 15.788-23.19 15.788-38.056 0-0.121-0-0.242-0.001-0.363l0 0.019c0-0.081 0.001-0.177 0.001-0.274 0-14.754-6.039-28.098-15.781-37.693l-0.007-0.006-53.76-54.187 50.347-85.333v7.68c1.749 8.949 5.33 16.852 10.351 23.623l-0.111-0.156c3.732 5.097 8.434 9.254 13.861 12.262l0.219 0.111s0 0 2.987 0c1.688 1.228 3.699 2.124 5.879 2.545l0.094 0.015 6.4 2.133h162.133c0.001 0 0.001 0 0.002 0 29.691 0 53.76-24.069 53.76-53.76 0-0.15-0.001-0.3-0.002-0.45l0 0.023s0 0 0-2.56h23.040c21.915 0 39.68-17.765 39.68-39.68v0-104.533c0-21.915-17.765-39.68-39.68-39.68v0zM853.333 473.6l3.413 2.133zM85.333 381.44c0-17.673 14.327-32 32-32v0h245.333c0.39-0.018 0.848-0.028 1.308-0.028 16.966 0 30.72 13.754 30.72 30.72 0 0.46-0.010 0.918-0.030 1.373l0.002-0.065c0.002 0.127 0.003 0.277 0.003 0.427 0 17.437-14.136 31.573-31.573 31.573-0.001 0-0.002-0-0.003-0l-245.76 0c-17.673 0-32-14.327-32-32v0zM209.067 261.12c-0.002-0.128-0.003-0.278-0.003-0.429 0-17.524 14.086-31.758 31.554-31.997l0.023-0h121.6c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023c0.007 0.254 0.012 0.553 0.012 0.853 0 17.437-14.136 31.573-31.573 31.573-0.004 0-0.008-0-0.012-0l-121.599 0c-0.255 0.007-0.555 0.011-0.856 0.011-17.527 0-31.763-14.091-31.997-31.563l-0-0.022z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["courier-express"]},"attrs":[{}],"properties":{"order":7141,"id":396,"name":"courier-express","prevSize":32,"code":59824},"setIdx":0,"setId":0,"iconIdx":176},{"icon":{"paths":["M688.213 498.773c0 25.449-20.631 46.080-46.080 46.080l-0-0h-134.4v77.227l46.933 78.933c13.414 22.758 21.338 50.14 21.338 79.373 0 0.445-0.002 0.89-0.006 1.335l0-0.068v110.080c0 25.449-20.631 46.080-46.080 46.080s-46.080-20.631-46.080-46.080v0-85.333c-0.231-30.002-8.772-57.962-23.432-81.75l0.392 0.684-51.2-88.747v102.827c-0.204 23.816-5.367 46.374-14.503 66.763l0.423-1.057-47.787 105.387c-7.459 16.466-23.749 27.714-42.667 27.714-25.792 0-46.701-20.909-46.701-46.701 0-6.875 1.485-13.403 4.153-19.28l-0.119 0.293 40.533-87.467c8.893-19.172 14.081-41.612 14.081-65.265 0-0.155-0-0.311-0.001-0.466l0 0.024v-372.053c0-35.346 28.654-64 64-64v0h62.72c35.346 0 64 28.654 64 64v0l25.6 105.387h108.8c25.449 0 46.080 20.631 46.080 46.080v-0zM720.213 242.773h-122.88c-23.564 0-42.667 19.103-42.667 42.667v0 85.333c0 23.564 19.103 42.667 42.667 42.667v0h125.013c23.564 0 42.667-19.103 42.667-42.667v0-85.333c0-0.016 0-0.035 0-0.053 0-23.564-19.103-42.667-42.667-42.667-0.75 0-1.496 0.019-2.237 0.058l0.104-0.004zM413.013 283.307c43.645-0.242 78.933-35.68 78.933-79.359 0-0-0-0.001-0-0.001l0 0v-3.84h62.72c16.419-0.691 29.468-14.169 29.468-30.694 0-0.459-0.010-0.916-0.030-1.37l0.002 0.065c0.008-0.268 0.013-0.583 0.013-0.899 0-16.606-12.996-30.177-29.372-31.097l-0.081-0.004h-68.267c-12.394-28.348-40.192-47.798-72.533-47.798s-60.139 19.45-72.335 47.291l-0.198 0.507c-3.478 8.728-5.511 18.842-5.547 29.425l-0 0.015v38.4c-0 0.009-0 0.019-0 0.029 0 43.079 34.325 78.141 77.117 79.329l0.11 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["courier"]},"attrs":[{}],"properties":{"order":7142,"id":395,"name":"courier","prevSize":32,"code":59825},"setIdx":0,"setId":0,"iconIdx":177},{"icon":{"paths":["M938.667 361.813v19.627h-853.333v-19.627c-0-77.055 62.465-139.52 139.52-139.52v-0h574.293c77.055 0 139.52 62.465 139.52 139.52h-0zM938.667 489.813v224.853c-0.242 76.636-62.423 138.667-139.093 138.667-0.15 0-0.3-0-0.451-0.001l0.023 0h-574.293c-0.127 0-0.277 0.001-0.427 0.001-76.819 0-139.093-62.274-139.093-139.093 0-0 0-0 0-0.001l0-0v-224.853zM601.173 729.6c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-63.573c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h63.573c17.724-0.241 32-14.665 32-32.424 0-0.001-0-0.002-0-0.003l0 0zM857.173 729.6c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-151.040c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h151.467c17.724-0.241 32-14.665 32-32.424 0-0.001-0-0.002-0-0.003l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["credit-cart"]},"attrs":[{}],"properties":{"order":7143,"id":394,"name":"credit-cart","prevSize":32,"code":59826},"setIdx":0,"setId":0,"iconIdx":178},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM572.16 512l120.747-120.747c7.789-7.736 12.611-18.452 12.611-30.293 0-23.577-19.113-42.691-42.691-42.691-11.736 0-22.365 4.735-30.082 12.4l0.002-0.002-120.747 121.173-120.747-118.613c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002 120.747 120.747-121.173 117.76c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002 121.173-120.747 120.32 120.747c7.736 7.789 18.452 12.611 30.293 12.611 23.577 0 42.691-19.113 42.691-42.691 0-11.736-4.735-22.365-12.4-30.082l0.002 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cross-circle"]},"attrs":[{}],"properties":{"order":7144,"id":393,"name":"cross-circle","prevSize":32,"code":59827},"setIdx":0,"setId":0,"iconIdx":179},{"icon":{"paths":["M690.773 938.667h-357.973c-136.627-0.484-247.225-111.233-247.467-247.87l-0-0.023v-357.547c0.242-136.661 110.84-247.409 247.42-247.893l0.046-0h357.547c0.127-0 0.277-0 0.427-0 136.758 0 247.65 110.743 247.893 247.444l0 0.023v357.547c0 0.127 0 0.277 0 0.427 0 136.908-110.986 247.893-247.893 247.893-0 0-0-0-0-0l0 0zM572.16 512l120.747-120.747c7.59-7.747 12.274-18.367 12.274-30.080 0-23.745-19.249-42.994-42.994-42.994-12.032 0-22.909 4.942-30.713 12.907l-0.007 0.007-119.467 120.747-120.747-120.747c-7.884-9.574-19.739-15.631-33.008-15.631-23.564 0-42.667 19.103-42.667 42.667 0 8.14 2.279 15.747 6.235 22.219l-0.106-0.187c3.077 4.342 6.751 8.016 10.952 10.998l0.141 0.095 119.040 120.747-119.040 120.747c-6.377 7.412-10.259 17.129-10.259 27.753 0 23.564 19.103 42.667 42.667 42.667 10.624 0 20.341-3.883 27.809-10.307l-0.056 0.047 119.040-120.747 117.76 120.747c7.872 9.153 19.467 14.914 32.407 14.914 23.564 0 42.667-19.103 42.667-42.667 0-12.94-5.761-24.535-14.858-32.36l-0.056-0.047z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cross-square"]},"attrs":[{}],"properties":{"order":7145,"id":392,"name":"cross-square","prevSize":32,"code":59828},"setIdx":0,"setId":0,"iconIdx":180},{"icon":{"paths":["M572.16 512l153.173-151.893c7.79-7.895 12.601-18.746 12.601-30.72 0-24.161-19.586-43.747-43.747-43.747-12.187 0-23.209 4.983-31.142 13.023l-0.005 0.005-151.040 153.173-151.040-150.187c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l151.043 149.763-153.173 151.893c-7.79 7.895-12.601 18.746-12.601 30.72 0 24.161 19.586 43.747 43.747 43.747 12.187 0 23.209-4.983 31.142-13.023l0.005-0.005 151.040-153.173 151.040 150.187c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cross"]},"attrs":[{}],"properties":{"order":7146,"id":391,"name":"cross","prevSize":32,"code":59829},"setIdx":0,"setId":0,"iconIdx":181},{"icon":{"paths":["M868.267 224l-176.213 130.987c-6.283 4.779-14.239 7.657-22.867 7.657-16.213 0-30.053-10.161-35.5-24.463l-0.087-0.261-82.773-224c-5.088-18.284-21.59-31.477-41.173-31.477s-36.085 13.194-41.102 31.177l-0.071 0.3-84.48 222.293c-5.662 14.301-19.371 24.232-35.4 24.232-8.337 0-16.046-2.687-22.309-7.241l0.109 0.076-170.667-122.88c-7.643-7.301-18.023-11.795-29.452-11.795-23.564 0-42.667 19.103-42.667 42.667 0 6.775 1.579 13.182 4.39 18.871l-0.111-0.25 170.667 495.787c6.459 17.707 23.091 30.149 42.649 30.293l0.018 0h413.867c0.544 0.025 1.181 0.039 1.822 0.039 19.165 0 35.378-12.635 40.764-30.030l0.081-0.302 178.347-502.613c2.471-5.237 3.914-11.376 3.914-17.852 0-23.564-19.103-42.667-42.667-42.667-11.253 0-21.489 4.356-29.112 11.475l0.025-0.023zM618.667 625.493h-213.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h213.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM730.453 938.667h-436.48c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h436.48c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["crown-2"]},"attrs":[{}],"properties":{"order":7147,"id":390,"name":"crown-2","prevSize":32,"code":59830},"setIdx":0,"setId":0,"iconIdx":182},{"icon":{"paths":["M121.6 768c-22.412-32.945-35.914-73.528-36.266-117.244l-0.001-0.090v-422.827c-0-0.006-0-0.014-0-0.022 0-19.323 15.664-34.987 34.987-34.987 9.455 0 18.033 3.75 24.329 9.844l-0.009-0.009 128 128c6.242 6.184 14.835 10.005 24.32 10.005s18.078-3.821 24.323-10.008l-0.003 0.003 166.4-160c6.242-6.184 14.835-10.005 24.32-10.005s18.078 3.821 24.323 10.008l-0.003-0.003 103.68 97.28zM879.36 202.667l-128 128c-6.242 6.184-14.835 10.005-24.32 10.005s-18.078-3.821-24.323-10.008l0.003 0.003-20.053-17.92-517.547 503.467c35.997 30.002 82.56 48.429 133.409 49.065l0.138 0.001h426.667c117.821 0 213.333-95.513 213.333-213.333v0-424.107c0-0.006 0-0.014 0-0.022 0-19.323-15.664-34.987-34.987-34.987-9.455 0-18.033 3.75-24.329 9.844l0.009-0.009z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["crown"]},"attrs":[{}],"properties":{"order":7148,"id":389,"name":"crown","prevSize":32,"code":59831},"setIdx":0,"setId":0,"iconIdx":183},{"icon":{"paths":["M775.253 85.333h-526.507c-0.045-0-0.098-0-0.152-0-58.91 0-106.667 47.756-106.667 106.667 0 3.907 0.21 7.766 0.62 11.564l-0.041-0.471 60.587 581.547c4.478 43.728 35 79.277 75.626 91.12l0.748 0.187 203.093 58.453c8.818 2.641 18.952 4.161 29.44 4.161s20.622-1.52 30.192-4.351l-0.752 0.191 203.947-58.453c41.476-12.254 72.073-47.874 76.758-91.26l0.042-0.474 59.307-581.12c0.368-3.328 0.578-7.186 0.578-11.093 0-58.91-47.756-106.667-106.667-106.667-0.053 0-0.107 0-0.16 0l0.008-0zM695.040 684.8c-1.401 12.984-10.389 23.548-22.387 27.247l-0.227 0.060-148.48 42.667c-1.41 0.212-3.038 0.333-4.693 0.333s-3.283-0.121-4.874-0.354l0.181 0.022c-1.41 0.199-3.038 0.312-4.693 0.312s-3.284-0.114-4.878-0.333l0.185 0.021-148.907-44.373c-10.346-3.473-18.26-11.667-21.275-21.954l-0.058-0.232-21.333-75.52c-0.241-1.476-0.379-3.177-0.379-4.91 0-17.673 14.327-32 32-32 13.93 0 25.782 8.901 30.177 21.326l0.069 0.224 16.64 58.88 122.88 37.547 118.187-35.413 16.213-149.76h-308.053c-1.115 0.136-2.405 0.213-3.713 0.213-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427c1.309 0 2.599 0.078 3.867 0.228l-0.153-0.015h313.6l11.947-111.36h-346.88c-1.115 0.136-2.405 0.213-3.713 0.213-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427c1.309 0 2.599 0.078 3.867 0.228l-0.153-0.015h384c0.027-0 0.058-0 0.090-0 9.58 0 18.203 4.101 24.208 10.643l0.022 0.024c4.942 5.548 7.962 12.902 7.962 20.962 0 1.485-0.103 2.947-0.301 4.377l0.019-0.166z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["css"]},"attrs":[{}],"properties":{"order":7149,"id":388,"name":"css","prevSize":32,"code":59832},"setIdx":0,"setId":0,"iconIdx":184},{"icon":{"paths":["M480 946.773c-21.483-3.801-40.684-10.94-58.031-20.936l0.858 0.456-223.573-128c-53.565-31.34-89.012-88.526-89.173-154.003l-0-0.023v-260.267c0.183-19.58 3.448-38.335 9.331-55.89l-0.371 1.276 336.64 189.013c14.624 8.25 24.337 23.684 24.337 41.387 0 0.45-0.006 0.898-0.019 1.345l0.001-0.066zM488.533 463.787c6.67 3.917 14.692 6.231 23.253 6.231s16.583-2.314 23.473-6.35l-0.219 0.119 337.067-192.853c-13.281-15.882-28.937-29.229-46.53-39.651l-0.83-0.455-223.573-128c-25.56-15.103-56.324-24.027-89.173-24.027s-63.614 8.924-90.002 24.479l0.829-0.452-223.573 128c-19.541 11.393-36.077 25.616-49.66 42.336l-0.26 0.331zM567.893 518.4c-14.389 8.309-23.918 23.617-23.918 41.151 0 0.533 0.009 1.064 0.026 1.592l-0.002-0.077v386.987c21.483-3.801 40.684-10.94 58.031-20.936l-0.858 0.456 223.573-128c53.565-31.34 89.012-88.526 89.173-154.003l0-0.023v-261.547c-0.153-20.846-3.893-40.771-10.631-59.255l0.391 1.228z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cube-2"]},"attrs":[{}],"properties":{"order":7150,"id":387,"name":"cube-2","prevSize":32,"code":59833},"setIdx":0,"setId":0,"iconIdx":185},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM482.987 739.413c-1.22 22.583-19.83 40.434-42.608 40.434-7.025 0-13.654-1.698-19.498-4.706l0.239 0.112-151.467-87.467c-12.196-7.514-20.258-20.712-20.48-35.808l-0-0.032v-174.933c1.22-22.583 19.83-40.434 42.608-40.434 7.025 0 13.654 1.698 19.498 4.706l-0.239-0.112 151.467 87.467c12.196 7.514 20.258 20.712 20.48 35.808l0 0.032zM494.933 495.36l-153.6-87.467c-11.63-7.745-19.189-20.803-19.189-35.627s7.559-27.881 19.033-35.529l0.156-0.098 151.040-87.893c6.050-3.855 13.424-6.144 21.333-6.144s15.283 2.289 21.496 6.241l-0.163-0.097 151.893 85.333c11.63 7.745 19.189 20.803 19.189 35.627s-7.559 27.881-19.033 35.529l-0.156 0.098-150.613 89.6c-6.058 3.503-13.327 5.57-21.078 5.57-7.442 0-14.439-1.905-20.53-5.255l0.221 0.111zM774.827 651.947c-0.222 15.128-8.284 28.326-20.296 35.734l-0.184 0.106-151.467 87.467c-5.605 2.896-12.233 4.594-19.258 4.594-22.779 0-41.388-17.85-42.604-40.326l-0.005-0.108v-174.933c0.222-15.128 8.284-28.326 20.296-35.734l0.184-0.106 151.467-87.467c5.605-2.896 12.233-4.594 19.258-4.594 22.779 0 41.388 17.85 42.604 40.326l0.005 0.108z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cube-3"]},"attrs":[{}],"properties":{"order":7151,"id":386,"name":"cube-3","prevSize":32,"code":59834},"setIdx":0,"setId":0,"iconIdx":186},{"icon":{"paths":["M824.32 199.253c-0.001-0-0.003-0-0.004-0-12.253 0-22.187 9.933-22.187 22.187 0 0.15 0.001 0.3 0.004 0.449l-0-0.022v15.36c-0.003 0.127-0.004 0.277-0.004 0.427 0 12.253 9.933 22.187 22.187 22.187 0.001 0 0.003-0 0.004-0l-0 0c29.658 0.945 53.34 25.214 53.34 55.014 0 0.309-0.003 0.618-0.008 0.926l0.001-0.046c0.001 0.203 0.001 0.443 0.001 0.684 0 111.814-86.022 203.537-195.497 212.598l-0.771 0.051c63.402-93.614 101.218-209.056 101.218-333.329 0-8.817-0.19-17.59-0.567-26.315l0.043 1.244c0.052-1.060 0.081-2.302 0.081-3.55 0-41.264-32.186-75.011-72.822-77.505l-0.219-0.011h-392.96c-40.856 2.505-73.041 36.252-73.041 77.516 0 1.249 0.029 2.491 0.088 3.725l-0.007-0.174c-0.117 4.44-0.183 9.666-0.183 14.908 0 128.758 40.137 248.142 108.581 346.322l-1.305-1.976c-114.658-4.023-206.080-97.94-206.080-213.21 0-0.043 0-0.087 0-0.13l-0 0.007c-0.010-0.393-0.016-0.856-0.016-1.32 0-29.889 23.641-54.256 53.243-55.423l0.106-0.003c0.001 0 0.002 0 0.004 0 13.196 0 23.893-10.697 23.893-23.893 0-0.15-0.001-0.3-0.004-0.449l0 0.022v-11.093c0.010-0.259 0.015-0.563 0.015-0.868 0-13.137-10.416-23.841-23.44-24.304l-0.042-0.001c-62.363 0.723-112.64 51.447-112.64 113.913 0 0.003 0 0.005 0 0.008l-0-0c-0.042 1.795-0.067 3.909-0.067 6.028 0 148.648 118.961 269.511 266.874 272.58l0.286 0.005h62.293c7.682 5.925 16.359 11.324 25.558 15.818l0.895 0.395c12.345 6.552 20.61 19.326 20.61 34.031 0 3.063-0.359 6.041-1.036 8.897l0.052-0.261c-20.596 86.567-51.101 162.822-91.015 233.029l2.269-4.335c-3.707 5.802-5.908 12.876-5.908 20.465 0 13.586 7.055 25.523 17.701 32.349l0.153 0.092c5.141 3.037 11.291 4.913 17.861 5.119l0.059 0.001h225.28c1.225 0.158 2.642 0.248 4.080 0.248 17.199 0 31.39-12.882 33.45-29.524l0.017-0.164c0.146-1.245 0.23-2.688 0.23-4.15 0-7.134-1.99-13.803-5.444-19.483l0.094 0.166c-31.285-68.078-58.296-148.011-76.949-231.103l-1.557-8.257c-0.545-2.411-0.857-5.181-0.857-8.023 0-13.722 7.278-25.743 18.184-32.416l0.166-0.095c7.322-3.612 13.618-7.588 19.447-12.132l-0.247 0.186h50.347c149.618-0.949 270.54-122.457 270.54-272.208 0-1.502-0.012-3.001-0.036-4.498l0.003 0.226c0.025-0.89 0.039-1.937 0.039-2.988 0-62.916-51.004-113.92-113.92-113.92-0.164 0-0.328 0-0.491 0.001l0.025-0zM650.24 564.053z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["cup"]},"attrs":[{}],"properties":{"order":7152,"id":385,"name":"cup","prevSize":32,"code":59835},"setIdx":0,"setId":0,"iconIdx":187},{"icon":{"paths":["M351.147 626.773h288.853c-30.77 40.562-78.865 66.595-133.057 66.986l-0.063 0h-155.733zM497.92 330.24h-146.773v61.867h279.040c-31.934-37.784-79.291-61.671-132.233-61.867l-0.034-0zM938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM732.16 456.107h35.84c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-59.307c-41.472-75.327-120.221-125.582-210.734-125.867l-0.040-0h-178.773c-17.724 0.241-32 14.665-32 32.424 0 0.001 0 0.002 0 0.003l-0-0v93.867h-31.147c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h32v106.667h-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h32v98.133c0.237 17.577 14.423 31.763 31.977 32l0.023 0h186.88c91.125-0.287 169.86-53.042 207.607-129.626l0.606-1.361h52.907c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-34.56c2.13-11.139 3.371-23.97 3.413-37.084l0-0.036v-19.2c0.007-0.701 0.011-1.528 0.011-2.357 0-16.832-1.713-33.264-4.974-49.131l0.269 1.568zM351.147 456.107v106.667h318.293c2.603-11.113 4.151-23.905 4.266-37.040l0.001-0.080v-19.2c-0.256-18.061-3.202-35.343-8.453-51.588l0.347 1.241z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dash"]},"attrs":[{}],"properties":{"order":7153,"id":384,"name":"dash","prevSize":32,"code":59836},"setIdx":0,"setId":0,"iconIdx":188},{"icon":{"paths":["M682.667 245.333v0c0.715 29.607 24.886 53.335 54.598 53.335 0.155 0 0.31-0.001 0.465-0.002l-0.024 0h145.92c30.398 0 55.040-24.642 55.040-55.040v-60.587c0-30.398-24.642-55.040-55.040-55.040v0h-145.92c-0.131-0.001-0.286-0.002-0.442-0.002-29.713 0-53.883 23.728-54.597 53.269l-0.001 0.066h-298.667v-7.253c0-49.013-39.733-88.747-88.747-88.747v0h-121.173c-49.013 0-88.747 39.733-88.747 88.747v0 78.507c0 49.013 39.733 88.747 88.747 88.747v0h121.173c49.013 0 88.747-39.733 88.747-88.747v0-7.253h117.333v514.987c0 69.043 55.97 125.013 125.013 125.013v0h56.32c0.715 29.607 24.886 53.335 54.598 53.335 0.155 0 0.31-0.001 0.465-0.002l-0.024 0h145.92c30.398 0 55.040-24.642 55.040-55.040v0-60.587c0-30.398-24.642-55.040-55.040-55.040v0h-145.92c-0.131-0.001-0.286-0.002-0.442-0.002-29.713 0-53.883 23.728-54.597 53.269l-0.001 0.066h-56.32c-33.697 0-61.013-27.317-61.013-61.013v0-194.987h117.333c0.716 29.606 24.886 53.333 54.598 53.333 0.005 0 0.011-0 0.016-0l145.919 0c0.127 0.001 0.277 0.002 0.427 0.002 30.398 0 55.040-24.642 55.040-55.040 0-0.001-0-0.001-0-0.002l0 0v-60.587c0-30.398-24.642-55.040-55.040-55.040v0h-145.92c-0.131-0.001-0.286-0.002-0.442-0.002-29.713 0-53.883 23.728-54.597 53.269l-0.001 0.066h-117.333v-256z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["data"]},"attrs":[{}],"properties":{"order":7154,"id":383,"name":"data","prevSize":32,"code":59837},"setIdx":0,"setId":0,"iconIdx":189},{"icon":{"paths":["M978.773 397.653h-201.387c-77.947-1.886-140.415-65.522-140.415-143.747 0-1.214 0.015-2.425 0.045-3.632l-0.004 0.179c0.101-0.832 0.159-1.796 0.159-2.773s-0.058-1.941-0.17-2.888l0.011 0.115v-202.24zM978.773 462.507h-201.387c-113.26-2.837-203.991-95.325-203.991-209.005 0-1.522 0.016-3.040 0.049-4.554l-0.004 0.226v-206.507h-209.493c-132.139 0.722-239.065 107.648-239.786 239.718l-0 0.069v308.48c26.266-11.658 56.886-18.543 89.088-18.773l0.085-0c129.655 0.243 234.667 105.404 234.667 235.093 0 0.15-0 0.3-0 0.45l0-0.023c-0.024 28.748-5.024 56.321-14.185 81.914l0.531-1.701h304.64c0.381 0.002 0.832 0.003 1.283 0.003 132.689 0 240.339-107.203 241.063-239.721l0-0.069zM384 810.667c0 94.257-76.41 170.667-170.667 170.667s-170.667-76.41-170.667-170.667c0-94.257 76.41-170.667 170.667-170.667v0c94.257 0 170.667 76.41 170.667 170.667v0zM308.907 810.667c0.016-0.383 0.026-0.831 0.026-1.283 0-17.532-14.099-31.771-31.578-31.997l-0.021-0h-128c-17.537 0.69-31.548 14.851-31.999 32.384l-0.001 0.043c-0.007 0.255-0.011 0.555-0.011 0.856 0 17.527 14.091 31.763 31.563 31.997l0.022 0h128c0.128 0.002 0.279 0.003 0.43 0.003 17.437 0 31.573-14.136 31.573-31.573 0-0.151-0.001-0.302-0.003-0.452l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delete-files"]},"attrs":[{}],"properties":{"order":7155,"id":382,"name":"delete-files","prevSize":32,"code":59838},"setIdx":0,"setId":0,"iconIdx":190},{"icon":{"paths":["M715.093 264.96h-125.44c-0.042 0-0.092 0-0.143 0-45.945 0-85.391-27.824-102.408-67.541l-0.276-0.726-14.080-35.413c-17.165-40.429-56.532-68.267-102.4-68.267-0.15 0-0.3 0-0.449 0.001l0.023-0h-85.333c-0.129-0-0.282-0-0.434-0-105.91 0-191.88 85.374-192.845 191.056l-0.001 0.092v426.667c1.922 121.528 100.889 219.307 222.694 219.307 0.009 0 0.018-0 0.027-0l401.065 0c0.254 0.001 0.556 0.002 0.857 0.002 122.555 0 221.991-98.988 222.716-221.372l0-0.069v-223.147c-0.965-122.035-100.116-220.59-222.287-220.59-0.452 0-0.904 0.001-1.356 0.004l0.070-0zM610.56 648.96c-5.639 5.771-13.491 9.358-22.181 9.387l-0.005 0c-0.032 0-0.069 0-0.107 0-7.974 0-15.185-3.265-20.37-8.53l-0.004-0.004-48.213-44.8-42.667 48.213c-5.663 5.733-13.5 9.308-22.172 9.387l-0.015 0c-16.547-0.239-29.87-13.709-29.87-30.29 0-0.151 0.001-0.302 0.003-0.452l-0 0.023c0.457-7.238 3.287-13.738 7.712-18.811l-0.032 0.038 45.227-47.787-51.2-46.507c-5.43-5.473-8.786-13.011-8.786-21.333s3.356-15.86 8.788-21.335l-0.002 0.002c5.518-5.331 13.042-8.616 21.333-8.616s15.816 3.285 21.342 8.624l-0.009-0.008 48.213 45.227 45.227-47.787c5.585-8.318 14.955-13.719 25.587-13.719 6.368 0 12.283 1.937 17.188 5.255l-0.108-0.069c8.769 5.206 14.555 14.627 14.555 25.4 0 6.487-2.098 12.485-5.653 17.35l0.058-0.083c-1.868 2.841-4.134 5.243-6.753 7.201l-0.074 0.053-45.653 47.787 48.213 45.653c4.898 5.244 7.905 12.308 7.905 20.074 0 7.544-2.837 14.425-7.503 19.634l0.025-0.028z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delete-folder"]},"attrs":[{}],"properties":{"order":7156,"id":381,"name":"delete-folder","prevSize":32,"code":59839},"setIdx":0,"setId":0,"iconIdx":191},{"icon":{"paths":["M691.2 314.88v0l42.667-11.52c3.88-1.146 8.338-1.805 12.949-1.805 21.479 0 39.618 14.299 45.419 33.896l0.085 0.335 52.053 182.613c1.019 3.667 1.605 7.877 1.605 12.225 0 21.873-14.828 40.283-34.98 45.726l-0.332 0.076-191.573 54.187c-3.875 1.165-8.327 1.835-12.937 1.835-21.639 0-39.826-14.778-45.019-34.792l-0.071-0.323-52.053-181.76c-1.18-3.917-1.859-8.418-1.859-13.077 0-21.106 13.931-38.957 33.1-44.861l0.332-0.088 42.667-12.373 20.48 71.68c4.067 12.794 15.841 21.9 29.743 21.9 2.773 0 5.462-0.362 8.022-1.043l-0.217 0.049 47.36-11.093c12.849-3.7 22.090-15.352 22.090-29.162 0-2.987-0.432-5.873-1.238-8.599l0.054 0.214-20.48-71.68zM482.133 875.093h-9.813c-50.394-2.682-90.24-44.198-90.24-95.020 0-52.548 42.599-95.147 95.147-95.147s95.147 42.599 95.147 95.147c0 50.822-39.846 92.338-90.002 95.010l-0.238 0.010zM477.013 810.667c17.591-2.008 31.129-16.81 31.129-34.773s-13.538-32.765-30.968-34.758l-0.161-0.015c-17.591 2.008-31.129 16.81-31.129 34.773s13.538 32.765 30.968 34.758l0.161 0.015zM938.667 640c-4.043-13.365-16.248-22.928-30.687-22.928-3.049 0-5.998 0.426-8.792 1.223l0.226-0.055-264.533 73.387c-13.539 3.759-23.312 15.975-23.312 30.473 0 2.972 0.411 5.849 1.179 8.576l-0.053-0.222c3.853 13.602 16.133 23.41 30.713 23.467l0.007 0h8.533l264.533-73.387c13.745-3.794 23.672-16.186 23.672-30.897 0-3.441-0.543-6.756-1.549-9.862l0.063 0.226zM845.653 874.24h-526.080c-17.489 0.241-31.573 14.474-31.573 31.997 0 0.001 0 0.002 0 0.003l-0-0c0 17.437 14.136 31.573 31.573 31.573v0h525.653c17.437-0 31.573-14.136 31.573-31.573v0c-0.471-17.158-14.378-30.916-31.551-31.146l-0.022-0zM291.413 167.253l123.307 444.16c3.853 13.602 16.133 23.41 30.713 23.467l0.007 0h8.533c13.337-3.892 22.916-16.009 22.916-30.363 0-3.013-0.422-5.927-1.21-8.686l0.054 0.223-131.413-476.16c-3.912-13.567-16.217-23.323-30.801-23.323-3.007 0-5.918 0.415-8.677 1.191l0.225-0.054-55.893 15.36c-5.48-3.433-12.138-5.469-19.272-5.469-3.311 0-6.52 0.439-9.571 1.261l0.257-0.059-107.093 26.88c-16.906 4.081-29.271 19.078-29.271 36.963 0 3.237 0.405 6.38 1.167 9.38l-0.057-0.263 2.987 10.24c4.065 16.675 18.874 28.859 36.528 28.859 3.241 0 6.386-0.411 9.386-1.183l-0.26 0.057 107.093-27.307c10.194-2.476 18.533-9.001 23.372-17.734l0.095-0.186zM485.973 332.8c4.839 16.319 19.699 28.021 37.293 28.021 3.892 0 7.651-0.573 11.196-1.638l-0.275 0.071h6.4l95.573-26.88-52.053 14.507 104.107-29.867h2.56c16.261-4.876 27.908-19.708 27.908-37.26 0-3.748-0.531-7.372-1.522-10.801l0.068 0.274-42.667-153.173c-3.347-18.321-19.186-32.026-38.227-32.026-3.551 0-6.991 0.477-10.259 1.37l0.272-0.063-35.84 9.813 17.493 60.16c0.492 1.892 0.775 4.065 0.775 6.303 0 11.604-7.594 21.435-18.084 24.792l-0.184 0.051-35.84 12.373c-2.034 0.603-4.371 0.95-6.79 0.95-11.426 0-21.044-7.744-23.89-18.27l-0.040-0.173-17.067-59.733-37.547 9.813c-16.521 4.708-28.415 19.667-28.415 37.405 0 3.851 0.561 7.571 1.605 11.083l-0.070-0.275z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-2"]},"attrs":[{}],"properties":{"order":7157,"id":380,"name":"delivery-2","prevSize":32,"code":59840},"setIdx":0,"setId":0,"iconIdx":192},{"icon":{"paths":["M921.6 581.547l-278.187 283.733c-14.327 13.782-31.333 24.899-50.145 32.478l-1.055 0.375c-7.748 2.048-16.643 3.224-25.813 3.224s-18.065-1.176-26.543-3.385l0.73 0.162s-240.64-61.013-256-52.48c-11.774 7.801-21.99 16.525-31.042 26.339l-0.104 0.114c-9.906 9.654-23.458 15.609-38.4 15.609s-28.494-5.954-38.412-15.62l0.012 0.011-75.947-72.533c-9.905-9.951-16.029-23.674-16.029-38.827s6.123-28.876 16.031-38.829l-0.002 0.002c33.28-34.987 82.347-85.333 122.453-131.84 22.829-29.88 58.479-48.963 98.587-48.963 3.144 0 6.26 0.117 9.345 0.348l-0.411-0.025c2.369-0.29 5.112-0.455 7.893-0.455s5.524 0.165 8.219 0.487l-0.326-0.032 246.613 63.147c27.969 7.258 48.287 32.277 48.287 62.041 0 6.478-0.963 12.732-2.752 18.625l0.118-0.453c-5.36 25.723-27.843 44.772-54.776 44.772-5.412 0-10.643-0.769-15.592-2.204l0.395 0.098-104.107-26.453c-3.016-1.070-6.494-1.689-10.117-1.689-17.202 0-31.147 13.945-31.147 31.147 0 15.35 11.103 28.106 25.717 30.675l0.187 0.027 104.107 26.88c8.916 2.439 19.153 3.84 29.717 3.84 0.053 0 0.105-0 0.158-0l-0.008 0c55.688-0.081 102.47-38.116 115.869-89.62l0.184-0.834c2.46-9.381 3.873-20.15 3.873-31.25 0-18.154-3.779-35.425-10.594-51.069l0.32 0.826 176.213-125.867c7.117-3.986 15.617-6.333 24.666-6.333 15.31 0 29.050 6.719 38.432 17.37l0.049 0.056c24.32 32-10.667 76.373-10.667 76.373zM672 123.307h-54.613v85.333c0 28.513-23.114 51.627-51.627 51.627v0h-33.28c-28.513 0-51.627-23.114-51.627-51.627v0-85.333h-54.187c-37.467 0-67.84 30.373-67.84 67.84v0 213.333c0.242 37.283 30.522 67.413 67.839 67.413 0 0 0.001-0 0.001-0l245.76 0c37.283-0.242 67.413-30.522 67.413-67.839 0-0-0-0.001-0-0.001l0 0v-213.333c-0.242-37.283-30.522-67.413-67.839-67.413-0 0-0.001 0-0.001 0l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-3"]},"attrs":[{}],"properties":{"order":7158,"id":379,"name":"delivery-3","prevSize":32,"code":59841},"setIdx":0,"setId":0,"iconIdx":193},{"icon":{"paths":["M190.293 354.56c0.578-0.024 1.257-0.038 1.939-0.038 16.818 0 31.677 8.389 40.621 21.21l0.106 0.161 78.080 114.773c1.77 5.079 3.258 11.122 4.196 17.346l0.071 0.574c0.001 0.098 0.002 0.215 0.002 0.331 0 7.692-2.395 14.825-6.48 20.694l0.078-0.119s-29.013 34.133-37.973 42.667c-3.179 2.754-5.177 6.797-5.177 11.306 0 2.578 0.653 5.003 1.803 7.119l-0.039-0.079c42.451 63.954 95.477 117.253 157.126 158.719l2.021 1.281c2.141 1.114 4.676 1.768 7.363 1.768 4.89 0 9.274-2.165 12.247-5.588l0.017-0.020c13.192-13.024 27.099-25.443 41.606-37.146l1.060-0.828c6.115-3.586 13.466-5.704 21.313-5.704 6.181 0 12.055 1.314 17.358 3.679l-0.271-0.108 115.627 78.933c5.868 5.658 11.193 11.794 15.94 18.374l0.274 0.399c1.288 5.884 2.026 12.643 2.026 19.575 0 38.52-22.789 71.718-55.619 86.847l-0.593 0.245c-65.707 38.4-128 24.32-222.72-29.013-109.18-66.035-197.112-157.11-257.557-265.597l-1.856-3.63c-56.32-110.507-46.507-181.333 7.253-231.253 15.5-15.565 36.548-25.594 59.926-26.87l0.234-0.010zM713.387 450.987v-55.040l-39.68 55.040zM568.747 91.307c-152.724 0.060-283.83 92.555-340.414 224.575l-0.919 2.412c17.238 7.715 31.585 19.189 42.474 33.444l0.192 0.262 77.653 114.773 2.987 4.693 2.133 5.547c2.49 7.491 4.578 16.426 5.876 25.614l0.097 0.839c0.121 1.635 0.19 3.542 0.19 5.466 0 17.165-5.509 33.044-14.855 45.964l0.158-0.23c0 2.56-14.507 17.493-25.6 30.293 33.258 44.101 71.366 82.073 114.153 114.143l1.473 1.057c10.045-9.591 20.751-18.81 31.919-27.463l0.935-0.697c11.841-8.617 26.62-13.862 42.615-14.079l0.052-0.001c0.025-0 0.055-0 0.085-0 13.059 0 25.496 2.667 36.794 7.486l-0.613-0.232h3.84l2.987 2.133 115.627 79.36h2.56v2.133c8.564 7.961 16.152 16.768 22.695 26.346l0.345 0.534c4.070 6.875 6.935 14.951 8.072 23.571l0.035 0.323c132.052-58.291 222.547-188.086 222.547-339.016 0-199.353-157.876-361.833-355.42-369.23l-0.674-0.020zM571.307 546.56c0 6.362-5.158 11.52-11.52 11.52v0h-142.080c-6.362 0-11.52-5.158-11.52-11.52v0-18.347c0.022-3.172 1.323-6.036 3.412-8.106l0.001-0.001 23.467-23.040c55.893-53.333 78.933-80.213 78.933-108.373 0.195-1.246 0.307-2.684 0.307-4.147 0-15.552-12.608-28.16-28.16-28.16-1.463 0-2.901 0.112-4.304 0.327l0.157-0.020c-15.618 0.674-29.711 6.7-40.607 16.277l0.074-0.063c-1.437 0.693-3.125 1.097-4.907 1.097s-3.47-0.405-4.976-1.127l0.069 0.030c-3.579-0.594-6.466-3.056-7.658-6.332l-0.022-0.068-9.387-20.907c-0.746-1.452-1.183-3.168-1.183-4.986 0-3.498 1.619-6.618 4.149-8.651l0.022-0.017c18.771-15.665 43.153-25.175 69.755-25.175 0.227 0 0.453 0.001 0.68 0.002l-0.035-0c1.953-0.185 4.222-0.29 6.516-0.29 40.53 0 73.387 32.856 73.387 73.387 0 1.453-0.042 2.896-0.125 4.328l0.009-0.198c0 46.080-33.28 82.773-77.653 125.44h71.68c6.362 0 11.52 5.158 11.52 11.52v0zM795.733 485.973c0 6.362-5.158 11.52-11.52 11.52v0h-19.627v49.067c-0 6.362-5.158 11.52-11.52 11.52h-27.733c-6.362 0-11.52-5.158-11.52-11.52h-0v-49.067h-92.587c-6.176-0.236-11.093-5.3-11.093-11.512 0-0.003 0-0.006 0-0.008l-0 0v-19.627c-0.305-1.023-0.48-2.197-0.48-3.413s0.175-2.391 0.502-3.501l-0.022 0.088 99.413-142.080c2.121-2.86 5.486-4.694 9.28-4.694 0.038 0 0.075 0 0.113 0.001l-0.006-0h32.427c6.362 0 11.52 5.158 11.52 11.52v0 128h19.627c6.362 0 11.52 5.158 11.52 11.52h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-24"]},"attrs":[{}],"properties":{"order":7159,"id":378,"name":"delivery-24","prevSize":32,"code":59842},"setIdx":0,"setId":0,"iconIdx":194},{"icon":{"paths":["M850.773 938.667h-198.4c-0.016 0-0.035 0-0.053 0-23.564 0-42.667-19.103-42.667-42.667 0-0.75 0.019-1.496 0.058-2.237l-0.004 0.104v-197.973c0-23.564 19.103-42.667 42.667-42.667v0h198.4c23.564 0 42.667 19.103 42.667 42.667v0 200.107c0 23.564-19.103 42.667-42.667 42.667h0zM564.907 810.667h-204.373c-0.012 0-0.026 0-0.040 0-45.714 0-82.773-37.059-82.773-82.773 0-0.9 0.014-1.797 0.043-2.69l-0.003 0.13v-554.667c-0.025-0.763-0.040-1.66-0.040-2.56 0-45.714 37.059-82.773 82.773-82.773 0.014 0 0.028 0 0.042 0l279.465-0c0.775-0.026 1.686-0.041 2.601-0.041 45.714 0 82.773 37.059 82.773 82.773 0 0.915-0.015 1.826-0.044 2.733l0.003-0.132v437.76h-72.96c-46.654 1.16-84.173 38.679-85.331 85.224l-0.002 0.109zM607.573 469.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0-77.653c0-17.673-14.327-32-32-32s-32 14.327-32 32v0zM538.88 904.533c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-346.453c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h347.307c17.724-0.241 32-14.665 32-32.424 0-0.001-0-0.002-0-0.003l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-door"]},"attrs":[{}],"properties":{"order":7160,"id":377,"name":"delivery-door","prevSize":32,"code":59843},"setIdx":0,"setId":0,"iconIdx":195},{"icon":{"paths":["M431.36 862.293c-0 41.944-34.002 75.947-75.947 75.947s-75.947-34.002-75.947-75.947c0-41.944 34.002-75.947 75.947-75.947h0c41.944 0 75.947 34.002 75.947 75.947h0zM659.2 786.347c-41.944 0-75.947 34.002-75.947 75.947s34.002 75.947 75.947 75.947c41.944 0 75.947-34.002 75.947-75.947v0c0-41.944-34.002-75.947-75.947-75.947h-0zM671.147 301.653c0.001 0.205 0.001 0.447 0.001 0.69 0 55.201-20.717 105.562-54.8 143.735l0.185-0.211-110.080 122.88c-12.694 13.959-30.928 22.686-51.2 22.686s-38.506-8.727-51.15-22.63l-0.050-0.056-109.653-122.88c-34.154-38.028-55.040-88.575-55.040-144 0-119.235 96.659-215.893 215.893-215.893 119.16 0 215.772 96.537 215.893 215.668l0 0.012zM536.32 301.653c-0.72-44.218-36.735-79.787-81.057-79.787-44.772 0-81.067 36.295-81.067 81.067 0 44.768 36.289 81.061 81.056 81.067l0.001 0c0.003 0 0.007 0 0.010 0 44.772 0 81.067-36.295 81.067-81.067 0-0.45-0.004-0.899-0.011-1.348l0.001 0.068zM269.653 412.16c-5.719-9.621-11.172-20.865-15.685-32.575l-0.528-1.558c5.041 13.269 10.494 24.512 16.794 35.197l-0.58-1.064zM242.347 337.067c2.456 14.332 5.863 26.954 10.304 39.078l-0.491-1.531c-3.95-10.592-7.357-23.214-9.623-36.228l-0.19-1.318zM404.053 568.747c3.348 3.566 6.975 6.787 10.875 9.66l0.219 0.154c-4.118-3.027-7.745-6.248-11.054-9.771l-0.039-0.042-109.653-122.88c-8.18-9.075-15.648-19.123-22.12-29.84l-0.493-0.88c6.965 11.597 14.434 21.645 22.769 30.896l-0.156-0.176zM239.787 292.693v0c-0.75 6.401-1.178 13.817-1.178 21.333s0.428 14.932 1.261 22.225l-0.083-0.892c-0.75-6.401-1.178-13.817-1.178-21.333s0.428-14.932 1.261-22.225l-0.083 0.892zM467.627 591.36c-3.977 0.812-8.547 1.277-13.227 1.277s-9.25-0.465-13.668-1.351l0.442 0.074h14.080c0.544 0.018 1.184 0.029 1.826 0.029 4.341 0 8.571-0.477 12.64-1.381l-0.386 0.072zM735.147 598.187v-116.053c0-20.736 16.81-37.547 37.547-37.547l-0 0h54.187l-50.773-95.573c-13.321-24.165-35.247-42.204-61.553-50.154l-0.74-0.192v3.84c-0.153 65.747-25.067 125.645-65.907 170.892l0.2-0.225-109.653 124.16c-20.48 22.826-50.072 37.12-83.003 37.12-0.069 0-0.139-0-0.208-0l0.011 0c-0.159 0.001-0.348 0.001-0.536 0.001-32.694 0-62.047-14.309-82.137-37.006l-0.101-0.116-110.080-123.307c-40.785-45.166-65.739-105.309-65.739-171.28 0-1.435 0.012-2.866 0.035-4.295l-0.003 0.215c-40.474 15.471-68.696 53.985-68.696 99.090 0 0.264 0.001 0.527 0.003 0.791l-0-0.040v358.4c0.241 58.106 47.281 105.145 105.364 105.387l0.023 0h3.84c-0-65.508 53.105-118.613 118.613-118.613s118.613 53.105 118.613 118.613v0h66.56c0-65.508 53.105-118.613 118.613-118.613s118.613 53.105 118.613 118.613v0h13.227c57.74-0.72 104.297-47.577 104.533-105.364l0-0.023v-122.453h-123.733c-20.501-0-37.12-16.619-37.12-37.12h0zM671.147 302.933v0c0 0.114 0 0.25 0 0.385 0 28.094-5.324 54.945-15.019 79.598l0.512-1.477c9.186-23.181 14.513-50.037 14.513-78.137 0-0.58-0.002-1.159-0.007-1.738l0.001 0.089zM640 414.72c-6.976 11.769-14.448 21.956-22.792 31.351l0.179-0.205v0c8.166-9.19 15.637-19.378 22.108-30.231l0.505-0.915z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-geolocation"]},"attrs":[{}],"properties":{"order":7161,"id":376,"name":"delivery-geolocation","prevSize":32,"code":59844},"setIdx":0,"setId":0,"iconIdx":196},{"icon":{"paths":["M421.12 853.333c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0zM677.12 768c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333v0zM762.453 554.667v-128c0-23.564 19.103-42.667 42.667-42.667v0h61.013l-55.467-107.52c-20.211-37.847-59.448-63.165-104.598-63.165-0.728 0-1.453 0.007-2.178 0.020l0.109-0.002h-13.653c11.477 28.659 18.133 61.88 18.133 96.656 0 147.276-119.391 266.667-266.667 266.667s-266.667-119.391-266.667-266.667c0-34.776 6.657-67.996 18.765-98.458l-0.632 1.802c-63.268 2.818-113.493 54.795-113.493 118.503 0 0.039 0 0.078 0 0.117l-0-0.006v402.773c0 65.508 53.105 118.613 118.613 118.613v0h9.387c0-70.692 57.308-128 128-128s128 57.308 128 128v-0h85.333c0-70.692 57.308-128 128-128s128 57.308 128 128v0h20.48c65.508 0 118.613-53.105 118.613-118.613v0-137.387h-139.52c-23.38-0.241-42.24-19.25-42.24-42.665 0-0.001 0-0.002 0-0.002l-0 0zM666.027 309.333c0 123.712-100.288 224-224 224s-224-100.288-224-224c0-123.712 100.288-224 224-224v0c123.712 0 224 100.288 224 224v0zM474.027 210.773c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 78.933l-63.573 51.627c-6.685 5.966-10.873 14.607-10.873 24.227 0 6.896 2.153 13.29 5.823 18.545l-0.070-0.105c6.035 7.277 15.060 11.893 25.164 11.947l0.009 0c0.094 0.001 0.205 0.002 0.316 0.002 7.342 0 14.083-2.576 19.367-6.873l-0.056 0.044 75.52-60.16c7.534-5.89 12.34-14.967 12.373-25.168l0-0.005z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery-time"]},"attrs":[{}],"properties":{"order":7162,"id":375,"name":"delivery-time","prevSize":32,"code":59845},"setIdx":0,"setId":0,"iconIdx":197},{"icon":{"paths":["M562.773 597.333h-482.987v-346.453c0-91.429 74.118-165.547 165.547-165.547v0h317.44c39.588-0 71.68 32.092 71.68 71.68v0 368.64c0 39.588-32.092 71.68-71.68 71.68v0zM335.787 768c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333h-0zM677.12 768c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333c47.128 0 85.333-38.205 85.333-85.333v0c0-47.128-38.205-85.333-85.333-85.333h-0zM762.453 554.667v-128c0-23.564 19.103-42.667 42.667-42.667v0h61.013l-55.467-107.52c-20.211-37.847-59.448-63.165-104.598-63.165-0.728 0-1.453 0.007-2.178 0.020l0.109-0.002h-26.88v312.32c0 63.152-51.195 114.347-114.347 114.347v0h-482.987v94.72c0 65.508 53.105 118.613 118.613 118.613v0h9.387c0-70.692 57.308-128 128-128s128 57.308 128 128v-0h85.333c0-70.692 57.308-128 128-128s128 57.308 128 128v0h20.48c65.508 0 118.613-53.105 118.613-118.613v0-137.387h-139.52c-23.38-0.241-42.24-19.25-42.24-42.665 0-0.001 0-0.002 0-0.002l-0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["delivery"]},"attrs":[{}],"properties":{"order":7163,"id":374,"name":"delivery","prevSize":32,"code":59846},"setIdx":0,"setId":0,"iconIdx":198},{"icon":{"paths":["M554.667 768h-128v-128c0-23.564 19.103-42.667 42.667-42.667v0h128v128c0 23.564-19.103 42.667-42.667 42.667v0zM128 768c-23.564 0-42.667 19.103-42.667 42.667v0 85.333c0 23.564 19.103 42.667 42.667 42.667v0h256c23.564 0 42.667-19.103 42.667-42.667v0-128zM768 554.667v-128h-128c-23.564 0-42.667 19.103-42.667 42.667v0 128h128c23.564 0 42.667-19.103 42.667-42.667v0zM896 85.333h-85.333c-23.564 0-42.667 19.103-42.667 42.667v0 298.667h128c23.564 0 42.667-19.103 42.667-42.667v0-256c0-23.564-19.103-42.667-42.667-42.667v0zM725.333 661.333h-64v64c-0.097 15.445-3.384 30.098-9.235 43.366l0.275-0.699h72.96c23.564 0 42.667-19.103 42.667-42.667v0-72.96c-12.569 5.576-27.221 8.863-42.631 8.96l-0.036 0zM896 490.667h-64v64c-0.097 15.445-3.384 30.098-9.235 43.366l0.275-0.699h72.96c23.564 0 42.667-19.103 42.667-42.667v0-72.96c-12.569 5.576-27.221 8.863-42.631 8.96l-0.036 0zM554.667 832h-64v64c-0.097 15.445-3.384 30.098-9.235 43.366l0.275-0.699h72.96c23.564 0 42.667-19.103 42.667-42.667v0-72.96c-12.569 5.576-27.221 8.863-42.631 8.96l-0.036 0zM362.667 704v-64c0-58.91 47.756-106.667 106.667-106.667v0h64v-64c0-58.91 47.756-106.667 106.667-106.667v0h64v-192h-334.080c-110.045 0-199.253 89.209-199.253 199.253v0 334.080z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["design-2"]},"attrs":[{}],"properties":{"order":7164,"id":373,"name":"design-2","prevSize":32,"code":59847},"setIdx":0,"setId":0,"iconIdx":199},{"icon":{"paths":["M375.893 682.667h242.773v170.667h-370.773c-42.651-0-77.227-34.576-77.227-77.227l0 0v-434.773h-8.107c-42.651 0-77.227-34.576-77.227-77.227h-0v-16.213c0-42.651 34.576-77.227 77.227-77.227v0h8.107v-8.107c-0-42.651 34.576-77.227 77.227-77.227v-0h16.213c42.651 0 77.227 34.576 77.227 77.227v0 485.547c0 19.087 15.473 34.56 34.56 34.56v0zM861.44 682.667h-8.107v-434.773c-0-42.651-34.576-77.227-77.227-77.227l0 0h-370.773v170.667h242.773c19.087 0 34.56 15.473 34.56 34.56v0 485.547c0 42.651 34.576 77.227 77.227 77.227l-0 0h16.213c42.651-0 77.227-34.576 77.227-77.227v0-8.107h8.107c42.651-0 77.227-34.576 77.227-77.227l0 0v-16.213c-0-42.651-34.576-77.227-77.227-77.227l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["design-frame"]},"attrs":[{}],"properties":{"order":7165,"id":372,"name":"design-frame","prevSize":32,"code":59848},"setIdx":0,"setId":0,"iconIdx":200},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 709.547c0.015 0.544 0.024 1.184 0.024 1.826 0 39.116-31.71 70.827-70.827 70.827-10.028 0-19.569-2.084-28.214-5.843l0.457 0.177c-104.676-44.148-176.813-145.917-176.813-264.533s72.137-220.385 174.933-263.828l1.88-0.705c8.296-3.717 17.98-5.882 28.17-5.882 38.881 0 70.4 31.519 70.4 70.4 0 0.418-0.004 0.835-0.011 1.251l0.001-0.063z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["design-mask"]},"attrs":[{}],"properties":{"order":7166,"id":371,"name":"design-mask","prevSize":32,"code":59849},"setIdx":0,"setId":0,"iconIdx":201},{"icon":{"paths":["M892.16 246.187c-36.692 340.982-304.992 609.281-642.77 645.693l-3.203 0.28c-14.467 27.741-43.015 46.356-75.911 46.356-47.128 0-85.333-38.205-85.333-85.333s38.205-85.333 85.333-85.333c29.898 0 56.205 15.376 71.445 38.652l0.2 0.325c297.035-34.389 530.319-267.819 564.202-561.944l0.278-2.962c-23.601-15.439-38.978-41.746-38.978-71.645 0-47.128 38.205-85.333 85.333-85.333s85.333 38.205 85.333 85.333c0 32.896-18.614 61.445-45.884 75.687l-0.471 0.224zM896 779.947v-298.667c-25.028 57.912-53.585 107.706-86.941 153.8l1.608-2.333v148.48c-25.687 15.029-42.667 42.482-42.667 73.901 0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333c0-31.419-16.98-58.872-42.264-73.683l-0.403-0.218zM738.56 267.947c-21.507-25.585-34.574-58.889-34.574-95.246 0-0.715 0.005-1.429 0.015-2.142l-0.001 0.108h-334.080c-110.045 0-199.253 89.209-199.253 199.253v0 334.080c0.102-0 0.223-0 0.344-0 36.349 0 69.647 13.061 95.457 34.747l-0.228-0.186c241.454-43.23 429.090-230.866 471.795-468.795l0.525-3.525z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["design"]},"attrs":[{}],"properties":{"order":7167,"id":370,"name":"design","prevSize":32,"code":59850},"setIdx":0,"setId":0,"iconIdx":202},{"icon":{"paths":["M847.36 308.48l-143.787-160c-34.91-38.834-85.311-63.147-141.391-63.147-0.092 0-0.184 0-0.276 0l0.014-0h-243.627c-105.096 0-190.293 85.197-190.293 190.293v0 472.747c0 105.096 85.197 190.293 190.293 190.293h387.413c105.096 0 190.293-85.197 190.293-190.293v0-312.747c-0.108-48.93-18.542-93.533-48.801-127.329l0.161 0.183zM429.653 744.533c5.842 5.842 9.455 13.912 9.455 22.827 0 17.829-14.453 32.282-32.282 32.282-8.914 0-16.985-3.613-22.827-9.455l-85.333-85.333c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 85.333-85.333c5.858-6.274 14.178-10.185 23.412-10.185 17.673 0 32 14.327 32 32 0 9.234-3.911 17.554-10.166 23.394l-0.019 0.017-62.293 63.147zM725.333 704.853l-85.333 85.333c-5.84 6.126-14.063 9.935-23.176 9.935-17.673 0-32-14.327-32-32 0-9.325 3.989-17.719 10.353-23.568l0.023-0.021 61.867-61.867-63.147-62.72c-5.806-5.858-9.393-13.924-9.393-22.827 0-17.912 14.521-32.433 32.433-32.433 9.009 0 17.16 3.673 23.038 9.604l0.002 0.002 85.333 85.333c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["devices-2"]},"attrs":[{}],"properties":{"order":7168,"id":369,"name":"devices-2","prevSize":32,"code":59851},"setIdx":0,"setId":0,"iconIdx":203},{"icon":{"paths":["M757.333 138.667h-490.667c-100.148 0-181.333 81.186-181.333 181.333v0 384c0 100.148 81.186 181.333 181.333 181.333v0h490.667c100.148 0 181.333-81.186 181.333-181.333v0-384c0-100.148-81.186-181.333-181.333-181.333v0zM433.067 384c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667c-23.564 0-42.667-19.103-42.667-42.667v0c0-23.564 19.103-42.667 42.667-42.667v0zM266.24 426.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667c0 23.564-19.103 42.667-42.667 42.667v0c-23.564 0-42.667-19.103-42.667-42.667v0zM719.36 693.333h-411.307c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h411.307c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM719.36 458.667h-139.947c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h139.947c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["devices"]},"attrs":[{}],"properties":{"order":7169,"id":368,"name":"devices","prevSize":32,"code":59852},"setIdx":0,"setId":0,"iconIdx":204},{"icon":{"paths":["M926.293 412.587l-33.707-75.093-81.92-183.040c-2.403-5.892-5.122-10.945-8.3-15.664l0.193 0.304c-3.547-3.926-7.167-7.546-10.962-10.976l-0.131-0.117c-5.749-6.457-12.037-12.203-18.867-17.258l-0.333-0.236c-13.953-12.418-31.32-21.295-50.519-25.062l-0.681-0.111c-2.555-0.209-5.53-0.329-8.533-0.329s-5.979 0.119-8.922 0.354l0.388-0.025h-384c-0.286-0.003-0.624-0.004-0.963-0.004-23.452 0-45.268 7.008-63.467 19.044l0.429-0.267c-8.958 6.906-16.69 14.775-23.24 23.575l-0.226 0.318c-6.681 7.817-13.011 16.455-18.676 25.55l-0.524 0.903-81.92 183.040-33.707 75.093c-7.814 16.816-12.372 36.503-12.372 57.254 0 35.406 13.269 67.712 35.106 92.217l-0.121-0.138 302.933 336.64c21.83 24.536 53.492 39.917 88.747 39.917s66.916-15.38 88.642-39.797l0.105-0.12 302.933-336.64c21.716-24.367 34.985-56.674 34.985-92.079 0-20.751-4.558-40.438-12.728-58.113l0.356 0.859z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["diamonds"]},"attrs":[{}],"properties":{"order":7170,"id":367,"name":"diamonds","prevSize":32,"code":59853},"setIdx":0,"setId":0,"iconIdx":205},{"icon":{"paths":["M725.333 938.667h-426.667c-94.257 0-170.667-76.41-170.667-170.667v0-144.213c-0-0.009-0-0.020-0-0.031 0-77.183 61.729-139.948 138.511-141.619l0.156-0.003h34.56c44.056 0.041 83.481 19.83 109.907 50.991l0.173 0.209 12.373 14.933c21.195 25.119 52.693 40.965 87.893 40.965s66.699-15.846 87.753-40.794l0.141-0.171 12.373-14.933c26.599-31.37 66.024-51.159 110.073-51.2l35.421-0c78.233 0 141.653 63.42 141.653 141.653v0 144.213c0 0.008 0 0.017 0 0.026 0 94.257-76.41 170.667-170.667 170.667-1.050 0-2.098-0.009-3.144-0.028l0.157 0.002zM204.373 450.987v-230.4c-0-0.003-0-0.007-0-0.011 0-74.698 60.555-135.253 135.253-135.253 0.6 0 1.199 0.004 1.797 0.012l-0.091-0.001h345.6c74.698 0 135.253 60.555 135.253 135.253v0 230.827c-18.72-7.347-40.39-11.71-63.048-11.946l-0.099-0.001h-35.413c-0.033-0-0.071-0-0.11-0-57.067 0-108.118 25.755-142.164 66.276l-0.233 0.284-12.373 14.933c-13.49 15.656-33.318 25.529-55.454 25.6l-0.012 0c-0.040 0-0.087 0-0.134 0-21.991 0-41.669-9.903-54.818-25.493l-0.088-0.107-12.8-15.36c-34.499-40.571-85.583-66.14-142.639-66.14-0.553 0-1.106 0.002-1.658 0.007l0.084-0.001h-34.56c-22.448 0.353-43.809 4.547-63.604 11.95l1.311-0.43zM597.333 392.96c0-17.673-14.327-32-32-32v0h-110.933c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h110.080c0.254 0.007 0.553 0.011 0.853 0.011 17.673 0 32-14.327 32-32 0-0.004-0-0.008-0-0.012l0 0.001zM384 273.92c0.237 17.577 14.423 31.763 31.977 32l0.023 0h192c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-192c-17.577 0.237-31.763 14.423-32 31.977l-0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["directbox-default"]},"attrs":[{}],"properties":{"order":7171,"id":366,"name":"directbox-default","prevSize":32,"code":59854},"setIdx":0,"setId":0,"iconIdx":206},{"icon":{"paths":["M170.667 581.12l111.787-111.787c4.001-4.459 9.781-7.252 16.213-7.253l0-0c5.856 0.086 11.127 2.518 14.93 6.397l0.003 0.003 30.72 30.72c3.771 3.845 6.098 9.117 6.098 14.933s-2.327 11.088-6.102 14.937l0.003-0.003-119.467 119.467c-19.428 19.324-31.452 46.075-31.452 75.634 0 35.469 17.312 66.894 43.946 86.288l0.305 0.212c17.32 11.643 38.646 18.584 61.593 18.584 31.197 0 59.397-12.828 79.614-33.497l0.020-0.020 116.053-113.067c3.845-3.771 9.117-6.098 14.933-6.098s11.088 2.327 14.937 6.102l-0.003-0.003 30.72 30.72c3.898 3.867 6.31 9.225 6.31 15.147s-2.413 11.28-6.309 15.145l-0.001 0.001-119.467 119.040c-34.897 34.882-83.099 56.457-136.339 56.457-59.925 0-113.466-27.331-148.838-70.208l-0.263-0.328c-26.371-33.474-42.297-76.25-42.297-122.746 0-56.979 23.917-108.373 62.259-144.688l0.091-0.085zM706.133 561.493c3.912 3.797 9.256 6.137 15.147 6.137s11.234-2.341 15.152-6.142l-0.005 0.005 116.907-118.613c37.577-36.289 60.909-87.118 60.909-143.397 0-46.159-15.696-88.652-42.042-122.434l0.333 0.444c-33.459-41.267-83.355-68.077-139.571-70.388l-0.376-0.012c-2.883-0.154-6.257-0.242-9.652-0.242-53.237 0-101.425 21.619-136.263 56.558l-0.005 0.005-124.16 125.013c-3.845 3.829-6.266 9.086-6.4 14.908l-0 0.025c0.111 5.986 2.532 11.386 6.405 15.365l-0.005-0.005 30.72 30.72c3.845 3.771 9.117 6.098 14.933 6.098s11.088-2.327 14.937-6.102l-0.003 0.003 122.027-122.027c20.587-20.513 48.868-33.316 80.139-33.706l0.074-0.001c0.215-0.002 0.47-0.003 0.724-0.003 22.665 0 43.61 7.364 60.574 19.829l-0.285-0.2c27.514 19.554 45.249 51.311 45.249 87.21 0 29.63-12.082 56.439-31.587 75.769l-0.008 0.008-125.44 125.44c-3.771 3.845-6.098 9.117-6.098 14.933s2.327 11.088 6.102 14.937l-0.003-0.003zM258.987 331.093c0.932-2.866 1.47-6.164 1.47-9.588 0-14.236-9.297-26.302-22.15-30.455l-0.226-0.063-89.6-28.16c-2.946-1.003-6.34-1.582-9.869-1.582-14.198 0-26.206 9.371-30.179 22.265l-0.059 0.224c-0.945 2.905-1.49 6.247-1.49 9.716 0 13.847 8.679 25.667 20.894 30.316l0.223 0.074 89.6 28.16c1.41 0.199 3.038 0.312 4.693 0.312s3.284-0.114 4.878-0.333l-0.185 0.021c0.499 0.027 1.084 0.043 1.672 0.043 13.784 0 25.56-8.601 30.252-20.728l0.075-0.221zM365.227 226.56c15.703-2.44 27.58-15.864 27.58-32.062 0-1.482-0.099-2.941-0.292-4.371l0.018 0.167-8.533-62.293c-2.44-15.703-15.864-27.58-32.062-27.58-1.482 0-2.941 0.099-4.371 0.292l0.167-0.018c-15.659 2.027-27.631 15.279-27.631 31.326 0 1.592 0.118 3.157 0.345 4.687l-0.021-0.173 8.533 61.44c2.364 15.512 15.59 27.265 31.569 27.307l0.004 0zM700.16 884.48c14.624-3.344 25.369-16.242 25.369-31.649 0-2.238-0.227-4.423-0.658-6.533l0.036 0.209-18.773-91.733c-3.54-14.615-16.509-25.299-31.973-25.299-2.122 0-4.196 0.201-6.206 0.585l0.206-0.033c-14.647 2.933-25.529 15.69-25.529 30.989 0 2.476 0.285 4.885 0.824 7.197l-0.042-0.213 18.773 91.733c3.239 14.461 15.94 25.116 31.14 25.173l0.006 0zM892.587 679.68c0.548-2.231 0.862-4.793 0.862-7.427 0-15.031-10.227-27.674-24.103-31.348l-0.226-0.051-58.453-14.507c-3.114-1.112-6.707-1.754-10.45-1.754-17.673 0-32 14.327-32 32 0 15.94 11.655 29.158 26.907 31.597l0.183 0.024 59.733 14.933c1.154 0.201 2.484 0.316 3.84 0.316s2.686-0.115 3.979-0.336l-0.139 0.020c14.238-0.449 26.097-10.134 29.812-23.241l0.055-0.226z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["disconnect"]},"attrs":[{}],"properties":{"order":7172,"id":365,"name":"disconnect","prevSize":32,"code":59855},"setIdx":0,"setId":0,"iconIdx":207},{"icon":{"paths":["M907.947 450.133l-59.307-59.733c-7.902-7.75-12.801-18.538-12.801-30.471 0-0.088 0-0.175 0.001-0.263l-0 0.013v-85.333c-1.192-47.38-39.884-85.333-87.441-85.333-0.009 0-0.018 0-0.028 0l-85.332-0c-0.074 0-0.162 0.001-0.249 0.001-11.932 0-22.721-4.898-30.464-12.794l-0.007-0.007-59.733-59.307c-15.579-16.375-37.533-26.56-61.867-26.56s-46.288 10.185-61.833 26.524l-0.034 0.036-58.453 58.453c-7.75 7.902-18.538 12.801-30.471 12.801-0.088 0-0.175-0-0.263-0.001l0.013 0h-85.333c-47.38 1.192-85.333 39.884-85.333 87.441 0 0.009 0 0.018 0 0.028l-0-0.002v85.333c0 0.074 0.001 0.162 0.001 0.249 0 11.932-4.898 22.721-12.794 30.464l-0.007 0.007-59.307 59.733c-16.375 15.579-26.56 37.533-26.56 61.867s10.185 46.288 26.524 61.833l0.036 0.034 59.307 59.733c7.902 7.75 12.801 18.538 12.801 30.471 0 0.088-0 0.175-0.001 0.263l0-0.013v85.333c0 48.307 39.16 87.467 87.467 87.467v0h85.333c0.074-0 0.162-0.001 0.249-0.001 11.932 0 22.721 4.898 30.464 12.794l0.007 0.007 59.733 59.307c15.579 16.375 37.533 26.56 61.867 26.56s46.288-10.185 61.833-26.524l0.034-0.036 59.733-59.307c7.75-7.902 18.538-12.801 30.471-12.801 0.088 0 0.175 0 0.263 0.001l-0.013-0h85.333c48.307 0 87.467-39.16 87.467-87.467v0-85.333c-0-0.074-0.001-0.162-0.001-0.249 0-11.932 4.898-22.721 12.794-30.464l0.007-0.007 59.307-59.733c15.793-15.498 25.581-37.067 25.581-60.922 0-25.493-11.179-48.375-28.902-64.011l-0.093-0.080zM384 341.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667c-23.564 0-42.667-19.103-42.667-42.667v0c0-23.564 19.103-42.667 42.667-42.667v0zM406.613 662.613c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0c-0.203 0.005-0.443 0.008-0.683 0.008-8.622 0-16.402-3.602-21.919-9.383l-0.011-0.012c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 256-256c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0zM640 682.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["discount"]},"attrs":[{}],"properties":{"order":7173,"id":364,"name":"discount","prevSize":32,"code":59856},"setIdx":0,"setId":0,"iconIdx":208},{"icon":{"paths":["M512 82.773c-237.055-0-429.227 192.171-429.227 429.227s192.171 429.227 429.227 429.227c237.055 0 429.227-192.171 429.227-429.227h-0c-0.243-236.958-192.269-428.984-429.204-429.227l-0.023-0zM241.067 460.8c-2.497 13.776-14.305 24.117-28.565 24.32l-0.021 0h-5.547c-13.688-2.504-23.926-14.338-23.926-28.564 0-1.818 0.167-3.597 0.487-5.322l-0.028 0.179c22.996-124.406 112.61-223.264 229.749-259.217l2.358-0.623c1.951-0.454 4.192-0.714 6.494-0.714 16.495 0 29.867 13.372 29.867 29.867 0 12.372-7.523 22.988-18.244 27.521l-0.196 0.074c-98.478 29.632-172.599 110.433-192.145 210.746l-0.281 1.734zM369.067 512c0.001-78.467 63.612-142.077 142.080-142.077s142.080 63.611 142.080 142.080c0 78.169-63.126 141.593-141.18 142.077l-0.046 0c-78.469 0-142.080-63.611-142.080-142.080v0zM618.24 829.013c-1.41 0.204-3.038 0.32-4.693 0.32s-3.283-0.116-4.877-0.341l0.183 0.021c-0.25 0.008-0.544 0.012-0.84 0.012-16.259 0-29.44-13.181-29.44-29.44 0-13.21 8.701-24.388 20.684-28.116l0.209-0.056c88.178-30.803 155.009-102.278 178.759-191.337l0.441-1.943c4.262-11.345 15.019-19.271 27.628-19.271 16.259 0 29.44 13.181 29.44 29.44 0 1.531-0.117 3.034-0.342 4.502l0.021-0.164c-28.075 111.219-109.074 198.84-213.976 235.657l-2.344 0.717z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["disk"]},"attrs":[{}],"properties":{"order":7174,"id":363,"name":"disk","prevSize":32,"code":59857},"setIdx":0,"setId":0,"iconIdx":209},{"icon":{"paths":["M866.56 152.747h-89.6c-37.467 0-67.84 30.373-67.84 67.84h-0v-6.4l-111.787-90.453c-23.254-16.553-52.236-26.464-83.534-26.464-0.633 0-1.265 0.004-1.896 0.012l0.096-0.001h-216.32c-43.031 0.113-79.456 28.27-91.969 67.154l-0.191 0.686-110.507 361.813c-2.198 6.76-3.465 14.539-3.465 22.614 0 41.577 33.598 75.306 75.125 75.519l0.020 0h173.653c28.171 0.139 50.955 23.009 50.955 51.199 0 3.625-0.377 7.162-1.093 10.574l0.059-0.333-22.187 128c-1.019 5.238-1.601 11.262-1.601 17.422 0 52.784 42.79 95.573 95.573 95.573 33.4 0 62.798-17.133 79.886-43.089l0.222-0.36 170.667-256v52.48c0 37.467 30.373 67.84 67.84 67.84v0h89.6c37.467 0 67.84-30.373 67.84-67.84v0-459.947c0-0.006 0-0.014 0-0.021 0-37.467-30.373-67.84-67.84-67.84-0.6 0-1.198 0.008-1.795 0.023l0.088-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dislike"]},"attrs":[{}],"properties":{"order":7175,"id":362,"name":"dislike","prevSize":32,"code":59858},"setIdx":0,"setId":0,"iconIdx":210},{"icon":{"paths":["M551.253 85.333c-32.99 0-59.733 26.744-59.733 59.733h0v153.6h-90.88c-116.171 0-210.347 94.175-210.347 210.347s94.175 210.347 210.347 210.347v0h150.613c32.99 0 59.733-26.744 59.733-59.733v-0-514.56c0-32.99-26.744-59.733-59.733-59.733v0zM309.76 507.307c-0-50.192 40.688-90.88 90.88-90.88l0 0h90.88v180.907h-90.88c-0.001 0-0.003 0-0.004 0-49.892 0-90.393-40.203-90.876-89.981l-0-0.046zM651.093 938.667c-26.019-0.11-48.103-16.838-56.193-40.114l-0.127-0.419c-2.126-5.834-3.355-12.569-3.355-19.591 0-25.937 16.771-47.957 40.060-55.808l0.415-0.121c49.475-15.521 84.833-60.739 85.333-114.288l0-0.059v-384c0-32.99 26.744-59.733 59.733-59.733s59.733 26.744 59.733 59.733v384c-0.227 105.533-68.352 195.095-162.999 227.339l-1.694 0.501c-4.996 1.806-10.761 2.85-16.771 2.85-1.908 0-3.791-0.105-5.644-0.31l0.228 0.021zM834.56 145.067c-0.25 32.564-26.706 58.866-59.305 58.866-32.754 0-59.307-26.552-59.307-59.307 0-32.304 25.827-58.575 57.958-59.292l0.067-0.001c0-0 0.001-0 0.002-0 32.754 0 59.307 26.552 59.307 59.307 0 0.15-0.001 0.3-0.002 0.45l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dj"]},"attrs":[{}],"properties":{"order":7176,"id":361,"name":"dj","prevSize":32,"code":59859},"setIdx":0,"setId":0,"iconIdx":211},{"icon":{"paths":["M938.667 512h-201.387c-113.305-3.075-203.983-95.658-203.983-209.421 0-1.376 0.013-2.748 0.040-4.118l-0.003 0.205v-213.333h-209.493c-132.135 1.92-238.513 109.485-238.513 241.896 0 0.609 0.002 1.217 0.007 1.824l-0.001-0.093v366.080c-0.004 0.51-0.006 1.113-0.006 1.716 0 132.861 107.102 240.707 239.679 241.91l0.114 0.001h376.32c131.529-2.392 237.236-109.579 237.236-241.456 0-0.763-0.004-1.526-0.011-2.287l0.001 0.116zM345.173 523.52h134.827c16.464 1.94 29.115 15.813 29.115 32.64s-12.651 30.7-28.961 32.625l-0.155 0.015h-134.827c-16.464-1.94-29.115-15.813-29.115-32.64s12.651-30.7 28.961-32.625l0.155-0.015zM654.933 763.307h-318.72c-15.733-2.631-27.576-16.146-27.576-32.427s11.843-29.796 27.383-32.4l0.192-0.027h318.72c15.629 3.138 27.237 16.753 27.237 33.080 0 1.727-0.13 3.423-0.38 5.080l0.023-0.186c-3.291 12.818-13.711 22.522-26.684 24.719l-0.196 0.027zM938.667 444.587h-201.387c-77.795-2.369-139.958-66-139.958-144.151 0-0.622 0.004-1.244 0.012-1.864l-0.001 0.094c0.094-0.896 0.148-1.935 0.148-2.987s-0.054-2.091-0.158-3.115l0.011 0.129v-204.8z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["document"]},"attrs":[{}],"properties":{"order":7177,"id":360,"name":"document","prevSize":32,"code":59860},"setIdx":0,"setId":0,"iconIdx":212},{"icon":{"paths":["M587.947 576c8.732 8.98 14.116 21.254 14.116 34.787 0 0.671-0.013 1.338-0.039 2.002l0.003-0.095c-0.038 19.842-10.103 37.325-25.396 47.657l-0.204 0.13c-9.605 6.77-20.885 11.934-33.050 14.803l-0.657 0.131v-123.307l11.947 2.56c13.085 4.655 24.229 11.953 33.256 21.308l0.024 0.025zM938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM692.907 602.88c0.156-2.339 0.244-5.071 0.244-7.823 0-18.16-3.859-35.419-10.802-51.001l0.317 0.798c-8.252-15.929-19.79-29.105-33.797-39.027l-0.336-0.226c-15.211-10.736-32.73-19.705-51.466-26.031l-1.441-0.422c-14.933-5.12-31.573-9.813-49.067-14.507v-116.053c5.875 1.974 10.97 4.727 15.484 8.198l-0.124-0.091c12.345 11.051 22.395 24.377 29.544 39.355l0.323 0.752c4.949 9.932 10.778 18.488 17.596 26.144l-0.103-0.118c5.9 4.838 13.524 7.77 21.833 7.77 0.875 0 1.743-0.033 2.602-0.096l-0.115 0.007c0.229 0.005 0.499 0.008 0.769 0.008 11.24 0 21.327-4.939 28.208-12.766l0.036-0.042c7.14-7.609 11.526-17.875 11.526-29.167 0-0.246-0.002-0.492-0.006-0.737l0 0.037c-0.132-13.456-3.592-26.074-9.594-37.11l0.208 0.417c-7.323-14.413-17.232-26.504-29.225-36.1l-0.215-0.167c-14.307-12.033-31.224-21.508-49.725-27.443l-1.048-0.29c-10.84-3.682-23.557-6.533-36.687-8.027l-0.86-0.080v-23.040c0.002-0.127 0.003-0.277 0.003-0.427 0-17.673-14.327-32-32-32-0.001 0-0.002 0-0.003 0l0-0c-0.386-0.017-0.838-0.026-1.292-0.026-17.437 0-31.573 14.136-31.573 31.573 0 0.309 0.004 0.618 0.013 0.925l-0.001-0.045v22.187c-22.635 1.596-43.685 6.312-63.407 13.735l1.541-0.509c-24.61 9.374-44.949 25.314-59.468 45.688l-0.265 0.392c-12.063 17.58-19.265 39.318-19.265 62.738 0 1.344 0.024 2.683 0.071 4.015l-0.005-0.193c-0.081 1.573-0.128 3.415-0.128 5.268 0 22.35 6.739 43.126 18.296 60.407l-0.248-0.395c13.344 18.506 31.059 33.072 51.671 42.341l0.809 0.325c19.256 8.721 42.027 16.484 65.635 22.086l2.632 0.527v141.227c-6.516-1.431-12.217-3.34-17.63-5.773l0.564 0.226c-11.597-5.8-21.199-14.036-28.43-24.091l-0.156-0.229c-6.782-10.372-13.077-22.301-18.243-34.815l-0.531-1.452c-3.692-10.854-9.537-20.136-17.072-27.739l0.005 0.005c-6.287-5.572-14.607-8.975-23.723-8.975-0.36 0-0.719 0.005-1.077 0.016l0.052-0.001c-0.47-0.021-1.021-0.032-1.574-0.032-10.963 0-20.853 4.594-27.85 11.962l-0.016 0.017c-7.369 6.943-11.958 16.766-11.958 27.662 0 0.325 0.004 0.65 0.012 0.973l-0.001-0.048c0.885 22.258 8.097 42.669 19.872 59.681l-0.245-0.374c12.499 20.094 28.973 36.567 48.434 48.699l0.633 0.368c22.319 12.441 48.543 20.82 76.445 23.408l0.781 0.059v22.613c-0.002 0.127-0.003 0.277-0.003 0.427 0 17.673 14.327 32 32 32 0.001 0 0.002-0 0.003-0l-0 0c0.003 0 0.007 0 0.012 0 17.437 0 31.573-14.136 31.573-31.573 0-0.3-0.004-0.599-0.013-0.897l0.001 0.044v-22.613c24.602-2.002 47.352-7.619 68.496-16.338l-1.509 0.551c25.776-11.182 46.935-28.913 61.974-51.126l0.319-0.5c13.647-20.728 21.77-46.145 21.77-73.46 0-0.574-0.004-1.148-0.011-1.72l0.001 0.087zM426.667 395.52c-0 0.028-0 0.062-0 0.095 0 8.876 2.71 17.119 7.349 23.947l-0.095-0.149c5.723 6.797 12.498 12.484 20.116 16.873l0.364 0.193c7.396 3.954 16.143 7.708 25.221 10.737l1.232 0.356v-102.4c-12.87 1.903-24.402 6.419-34.459 13l0.326-0.2c-12.156 8.228-20.044 21.965-20.053 37.545l-0 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dollar"]},"attrs":[{}],"properties":{"order":7178,"id":359,"name":"dollar","prevSize":32,"code":59861},"setIdx":0,"setId":0,"iconIdx":213},{"icon":{"paths":["M512 88.747c-233.543 1.212-422.398 190.815-422.398 424.528 0 234.463 190.070 424.533 424.533 424.533s424.533-190.070 424.533-424.533c0-0.448-0.001-0.896-0.002-1.344l0 0.069c-1.933-234.169-192.212-423.253-426.653-423.253-0.005 0-0.010 0-0.015 0l0.001-0zM514.56 768c-29.22 0-52.907-23.687-52.907-52.907s23.687-52.907 52.907-52.907c29.22 0 52.907 23.687 52.907 52.907v0c0 29.22-23.687 52.907-52.907 52.907v0zM514.56 569.6c-29.219-0.001-52.905-23.688-52.905-52.907s23.687-52.907 52.907-52.907c29.22 0 52.907 23.687 52.907 52.907 0 0.15-0.001 0.3-0.002 0.45l0-0.023c0.004 0.254 0.007 0.554 0.007 0.855 0 28.984-23.496 52.48-52.48 52.48-0.152 0-0.305-0.001-0.457-0.002l0.023 0zM514.56 371.627c-29.22 0-52.907-23.687-52.907-52.907s23.687-52.907 52.907-52.907h-0c29.22 0 52.907 23.687 52.907 52.907s-23.687 52.907-52.907 52.907h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-circle-vertical"]},"attrs":[{}],"properties":{"order":7179,"id":358,"name":"dots-circle-vertical","prevSize":32,"code":59862},"setIdx":0,"setId":0,"iconIdx":214},{"icon":{"paths":["M512 92.16c-0.127-0-0.276-0-0.426-0-233.521 0-422.827 189.306-422.827 422.827s189.306 422.827 422.827 422.827c233.521 0 422.827-189.306 422.827-422.827 0-0.15-0-0.3-0-0.45l0 0.023c-0.243-233.187-189.213-422.157-422.377-422.4l-0.023-0zM319.573 564.907c-0.127 0.001-0.277 0.002-0.427 0.002-29.22 0-52.907-23.687-52.907-52.907s23.687-52.907 52.907-52.907c29.219 0 52.906 23.686 52.907 52.905l0 0c0.001 0.127 0.002 0.277 0.002 0.427 0 28.984-23.496 52.48-52.48 52.48-0.001 0-0.001-0-0.002-0l0 0zM516.693 564.907c-0.127 0.001-0.277 0.002-0.427 0.002-29.22 0-52.907-23.687-52.907-52.907s23.687-52.907 52.907-52.907c29.219 0 52.906 23.686 52.907 52.905l0 0c0 0 0 0.001 0 0.002 0 29.070-23.445 52.663-52.457 52.905l-0.023 0zM713.813 564.907c-28.664-0.716-51.627-24.122-51.627-52.891 0-29.22 23.687-52.907 52.907-52.907 29.214 0 52.898 23.678 52.907 52.89l0 0.001c0 0.005 0 0.010 0 0.015 0 29.22-23.687 52.907-52.907 52.907-0.45 0-0.899-0.006-1.346-0.017l0.066 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-circle"]},"attrs":[{}],"properties":{"order":7180,"id":357,"name":"dots-circle","prevSize":32,"code":59863},"setIdx":0,"setId":0,"iconIdx":215},{"icon":{"paths":["M574.293 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M360.107 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M788.053 509.44c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-horizontal"]},"attrs":[{},{},{}],"properties":{"order":7181,"id":356,"name":"dots-horizontal","prevSize":32,"code":59864},"setIdx":0,"setId":0,"iconIdx":216},{"icon":{"paths":["M682.667 85.333h-341.333c-141.385 0-256 114.615-256 256v0 341.333c0 141.385 114.615 256 256 256v0h341.333c141.385 0 256-114.615 256-256v0-341.333c0-141.385-114.615-256-256-256v0zM507.307 749.653c-29.455 0-53.333-23.878-53.333-53.333s23.878-53.333 53.333-53.333c29.455 0 53.333 23.878 53.333 53.333v0c0 29.455-23.878 53.333-53.333 53.333v0zM507.307 550.4c-29.454-0.001-53.332-23.879-53.332-53.333s23.878-53.333 53.333-53.333c29.455 0 53.333 23.878 53.333 53.333 0 0.15-0.001 0.3-0.002 0.45l0-0.023c0 0 0 0.001 0 0.002 0 29.22-23.687 52.907-52.907 52.907-0.15 0-0.3-0.001-0.45-0.002l0.023 0zM507.307 351.573c-29.454-0.001-53.332-23.879-53.332-53.333s23.878-53.333 53.333-53.333c29.455 0 53.333 23.878 53.333 53.333 0 0.15-0.001 0.3-0.002 0.45l0-0.023c-0.242 29.271-24.026 52.907-53.332 52.907-0.001 0-0.001-0-0.002-0l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-square-vertical"]},"attrs":[{}],"properties":{"order":7182,"id":355,"name":"dots-square-vertical","prevSize":32,"code":59865},"setIdx":0,"setId":0,"iconIdx":217},{"icon":{"paths":["M679.253 92.16h-334.507c-141.385 0-256 114.615-256 256v0 334.507c0 141.385 114.615 256 256 256v0h334.507c141.385 0 256-114.615 256-256v0-334.933c-0.243-141.201-114.765-255.573-256-255.573-0 0-0 0-0 0l0-0zM329.387 561.493c-28.428-1.006-51.092-24.294-51.092-52.876 0-29.22 23.687-52.907 52.907-52.907s52.907 23.687 52.907 52.907c0 1.19-0.039 2.371-0.117 3.541l0.008-0.159c-0.924 28.26-24.054 50.818-52.454 50.818-0.76 0-1.515-0.016-2.267-0.048l0.107 0.004zM526.507 561.493c-0.094 0.001-0.205 0.001-0.317 0.001-29.22 0-52.907-23.687-52.907-52.907s23.687-52.907 52.907-52.907c29.22 0 52.907 23.687 52.907 52.907 0 1.201-0.040 2.392-0.119 3.573l0.009-0.16c-1.171 28.154-24.174 50.561-52.459 50.773l-0.021 0zM723.627 561.493c-0.094 0.001-0.205 0.001-0.317 0.001-29.22 0-52.907-23.687-52.907-52.907s23.687-52.907 52.907-52.907c29.22 0 52.907 23.687 52.907 52.907 0 1.201-0.040 2.392-0.119 3.573l0.009-0.16c-1.125 27.577-23.196 49.648-50.669 50.77l-0.104 0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-square"]},"attrs":[{}],"properties":{"order":7183,"id":354,"name":"dots-square","prevSize":32,"code":59866},"setIdx":0,"setId":0,"iconIdx":218},{"icon":{"paths":["M569.173 517.12c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M569.173 302.933c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z","M569.173 730.88c0 31.576-25.597 57.173-57.173 57.173s-57.173-25.597-57.173-57.173c0-31.576 25.597-57.173 57.173-57.173s57.173 25.597 57.173 57.173z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dots-vertical"]},"attrs":[{},{},{}],"properties":{"order":7184,"id":353,"name":"dots-vertical","prevSize":32,"code":59867},"setIdx":0,"setId":0,"iconIdx":219},{"icon":{"paths":["M520.533 90.453c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v-0zM398.080 461.653c6.935-6.866 16.479-11.108 27.013-11.108 8.444 0 16.251 2.725 22.59 7.344l-0.11-0.076-53.76 54.187c-4.493-6.299-7.184-14.153-7.184-22.636 0-10.817 4.375-20.611 11.452-27.711l-0.001 0.001zM378.453 682.667c-10.834-0.013-20.638-4.413-27.733-11.52l-0-0-157.867-159.147c-5.746-6.837-9.236-15.736-9.236-25.45 0-21.915 17.765-39.68 39.68-39.68 9.714 0 18.613 3.491 25.511 9.286l-0.061-0.050 128 128 209.067-209.067c7.114-7.061 16.914-11.425 27.733-11.425 21.745 0 39.372 17.627 39.372 39.372 0 10.925-4.45 20.811-11.636 27.944l-0.002 0.002-234.667 239.787c-7.161 7.323-17.122 11.884-28.148 11.947l-0.012 0zM611.413 675.84c-7.101 7.090-16.905 11.474-27.733 11.474s-20.632-4.384-27.734-11.475l0.001 0.001-46.933-46.933 55.893-55.893 18.773 19.2 208.64-208.213c7.329-8.724 18.243-14.23 30.444-14.23 21.915 0 39.68 17.765 39.68 39.68 0 12.201-5.506 23.115-14.169 30.394l-0.061 0.050z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-check-circle"]},"attrs":[{}],"properties":{"order":7185,"id":352,"name":"double-check-circle","prevSize":32,"code":59868},"setIdx":0,"setId":0,"iconIdx":220},{"icon":{"paths":["M900.267 324.267c7.542 7.69 12.197 18.235 12.197 29.867s-4.655 22.177-12.203 29.874l0.007-0.007-314.88 315.733c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-72.96-72.96-72.533 72.96c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-195.84-195.84c-6.377-7.412-10.259-17.129-10.259-27.753 0-23.564 19.103-42.667 42.667-42.667 10.624 0 20.341 3.883 27.809 10.307l-0.056-0.047 165.547 165.12 42.667-42.667-62.72-62.293c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 62.293 62.293 181.76-181.76c7.877-9.282 19.552-15.134 32.594-15.134 23.564 0 42.667 19.103 42.667 42.667 0 12.829-5.662 24.336-14.624 32.157l-0.051 0.043-182.613 182.613 42.667 42.667 285.44-285.013c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-check"]},"attrs":[{}],"properties":{"order":7186,"id":351,"name":"double-check","prevSize":32,"code":59869},"setIdx":0,"setId":0,"iconIdx":221},{"icon":{"paths":["M795.307 478.72c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002-256 256c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-256-256c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002c7.733-7.795 18.45-12.621 30.293-12.621s22.56 4.826 30.291 12.618l0.003 0.003 228.267 224.427 224.427-224.427c7.642-7.295 18.017-11.784 29.44-11.784s21.798 4.489 29.457 11.8l-0.017-0.016zM734.72 249.6l-222.72 224-225.707-224c-7.733-7.795-18.45-12.621-30.293-12.621s-22.56 4.826-30.291 12.618l-0.003 0.003c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002 256 256c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002 256-256c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002c-7.834-8.596-19.076-13.969-31.573-13.969s-23.74 5.373-31.543 13.935l-0.030 0.034z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-down"]},"attrs":[{}],"properties":{"order":7187,"id":350,"name":"double-down","prevSize":32,"code":59870},"setIdx":0,"setId":0,"iconIdx":222},{"icon":{"paths":["M184.747 423.68l282.027-162.987c10.781-6.285 23.731-9.995 37.547-9.995 41.623 0 75.381 33.672 75.52 75.262l0 0.013v364.8c-0.139 41.603-33.897 75.275-75.52 75.275-13.817 0-26.766-3.71-37.908-10.189l0.361 0.194-282.027-162.987c-29.486-17.19-48.987-48.665-48.987-84.693s19.501-67.503 48.523-84.443l0.464-0.25zM828.16 260.693l-184.32 106.24v282.88l184.32 106.24c10.781 6.285 23.731 9.995 37.547 9.995 41.623 0 75.381-33.672 75.52-75.262l0-0.013v-364.8c-0.139-41.603-33.897-75.275-75.52-75.275-13.817 0-26.766 3.71-37.908 10.189l0.361-0.194z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-left-arrow"]},"attrs":[{}],"properties":{"order":7188,"id":349,"name":"double-left-arrow","prevSize":32,"code":59871},"setIdx":0,"setId":0,"iconIdx":223},{"icon":{"paths":["M515.84 810.667c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007-256-256c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 256-256c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003-224 225.707 224 224.427c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002c-7.439 8.239-17.985 13.551-29.776 14.077l-0.091 0.003zM775.253 797.867c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l-224.425-225.705 224.427-224c7.753-7.753 12.548-18.463 12.548-30.293 0-23.661-19.181-42.841-42.841-42.841-11.83 0-22.541 4.795-30.293 12.548l-256 256c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002 256 256c7.709 7.861 18.426 12.749 30.284 12.8l0.010 0c12.040-0.408 22.759-5.744 30.26-14.043l0.033-0.037z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-left"]},"attrs":[{}],"properties":{"order":7189,"id":348,"name":"double-left","prevSize":32,"code":59872},"setIdx":0,"setId":0,"iconIdx":224},{"icon":{"paths":["M892.587 593.067l-282.027 162.987c-10.883 6.438-23.984 10.241-37.973 10.241-41.709 0-75.52-33.811-75.52-75.52 0-0 0-0.001 0-0.001l0-0v-364.8c-0-0-0-0.001-0-0.001 0-41.709 33.811-75.52 75.52-75.52 13.99 0 27.091 3.804 38.325 10.434l-0.352-0.192 282.027 162.987c29.486 17.19 48.987 48.665 48.987 84.693s-19.501 67.503-48.523 84.443l-0.464 0.25zM433.067 366.933l-183.893-106.24c-10.883-6.438-23.984-10.241-37.973-10.241-41.709 0-75.52 33.811-75.52 75.52 0 0 0 0.001 0 0.001l0 0v364.8c-0 0-0 0.001-0 0.001 0 41.709 33.811 75.52 75.52 75.52 13.99 0 27.091-3.804 38.325-10.434l-0.352 0.192 183.893-106.24z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-right-arrow"]},"attrs":[{}],"properties":{"order":7190,"id":347,"name":"double-right-arrow","prevSize":32,"code":59873},"setIdx":0,"setId":0,"iconIdx":225},{"icon":{"paths":["M497.92 804.267c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 217.6-219.733-215.893-215.893c-9.153-7.872-14.914-19.467-14.914-32.407 0-23.564 19.103-42.667 42.667-42.667 12.94 0 24.535 5.761 32.36 14.858l0.047 0.056 247.893 247.893c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002-247.893 247.893c-7.711 7.663-18.339 12.4-30.073 12.4-0.528 0-1.053-0.010-1.576-0.029l0.076 0.002zM304.64 791.893l250.027-247.893c7.668-7.712 12.407-18.343 12.407-30.080s-4.74-22.368-12.409-30.082l0.002 0.002-250.027-247.893c-7.412-6.377-17.129-10.259-27.753-10.259-23.564 0-42.667 19.103-42.667 42.667 0 10.624 3.883 20.341 10.307 27.809l-0.047-0.056 217.6 217.6-217.6 218.027c-7.668 7.712-12.407 18.343-12.407 30.080s4.74 22.368 12.409 30.082l-0.002-0.002c7.712 7.668 18.343 12.407 30.080 12.407s22.368-4.74 30.082-12.409l-0.002 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-right"]},"attrs":[{}],"properties":{"order":7191,"id":346,"name":"double-right","prevSize":32,"code":59874},"setIdx":0,"setId":0,"iconIdx":226},{"icon":{"paths":["M795.307 483.413c7.662 7.715 12.397 18.344 12.397 30.080 0 23.577-19.113 42.691-42.691 42.691-11.842 0-22.557-4.821-30.291-12.608l-0.002-0.002-222.72-224-225.707 224c-7.552 6.897-17.648 11.122-28.729 11.122-0.55 0-1.098-0.010-1.642-0.031l0.079 0.002c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 256-256c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002zM539.307 458.24c-7.712-7.668-18.343-12.407-30.080-12.407s-22.368 4.74-30.082 12.409l0.002-0.002-256 256c-7.795 7.733-12.621 18.45-12.621 30.293s4.826 22.56 12.618 30.291l0.003 0.003c7.709 7.648 18.326 12.374 30.047 12.374 0.087 0 0.173-0 0.26-0.001l-0.013 0c0.073 0 0.16 0.001 0.247 0.001 11.721 0 22.338-4.726 30.049-12.377l228.264-226.131 224.427 224.427c7.753 7.753 18.463 12.548 30.293 12.548 23.661 0 42.841-19.181 42.841-42.841 0-11.83-4.795-22.541-12.548-30.293v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["double-up"]},"attrs":[{}],"properties":{"order":7192,"id":345,"name":"double-up","prevSize":32,"code":59875},"setIdx":0,"setId":0,"iconIdx":227},{"icon":{"paths":["M85.333 345.6v332.8c0.242 143.644 116.623 260.024 260.243 260.267l0.023 0h332.8c143.644-0.242 260.024-116.623 260.267-260.243l0-0.023v-332.8c-0.242-143.644-116.623-260.024-260.243-260.267l-0.023-0h-332.8c-143.644 0.242-260.024 116.623-260.267 260.243l-0 0.023zM626.347 442.88c7.169-7.114 17.045-11.511 27.947-11.511s20.777 4.397 27.949 11.514l-0.003-0.002c6.867 7.185 11.093 16.944 11.093 27.691 0 0.015-0 0.030-0 0.045l0-0.002c-0.402 11.189-5.052 21.219-12.376 28.589l0.002-0.002-144.64 140.8c-6.95 6.619-16.378 10.692-26.757 10.692-0.493 0-0.984-0.009-1.473-0.027l0.071 0.002c-0.079 0.001-0.173 0.001-0.266 0.001-10.833 0-20.594-4.588-27.447-11.926l-0.020-0.022-139.093-145.92c-5.442-6.735-8.736-15.402-8.736-24.838 0-21.915 17.765-39.68 39.68-39.68 10.075 0 19.273 3.755 26.271 9.942l-0.042-0.037 113.493 116.48z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["down-square"]},"attrs":[{}],"properties":{"order":7193,"id":344,"name":"down-square","prevSize":32,"code":59876},"setIdx":0,"setId":0,"iconIdx":228},{"icon":{"paths":["M512 735.573v0c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003-256-256c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002 226.133 226.133 225.707-226.133c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003-256 256c-7.667 7.606-18.211 12.323-29.857 12.373l-0.010 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["down"]},"attrs":[{}],"properties":{"order":7194,"id":343,"name":"down","prevSize":32,"code":59877},"setIdx":0,"setId":0,"iconIdx":229},{"icon":{"paths":["M554.667 313.6c-38.859-72.858-76.201-133.53-116.733-191.818l4.093 6.218c-2.653-4.216-4.226-9.343-4.226-14.838 0-14.032 10.263-25.667 23.693-27.808l0.16-0.021c14.944-2.224 32.375-3.612 50.087-3.837l0.26-0.003c96.514 0.198 185.511 32.219 257.096 86.124l-1.096-0.791c6.928 5.016 11.383 13.079 11.383 22.183 0 8.144-3.565 15.456-9.22 20.459l-0.029 0.025c-50.852 46.814-109.384 86.374-173.281 116.407l-4.212 1.779c-3.512 1.659-7.629 2.628-11.972 2.628-11.481 0-21.381-6.768-25.928-16.532l-0.074-0.176zM469.333 336.213c-42.164-76.050-83.259-140.035-127.923-201.251l3.763 5.411c-5.019-6.891-13.061-11.319-22.137-11.319-4.704 0-9.13 1.189-12.994 3.284l0.144-0.071c-97.916 52.849-171.757 139.72-206.486 244.426l-0.874 3.041c-1.038 2.794-1.638 6.023-1.638 9.391 0 15.143 12.136 27.451 27.212 27.729l0.026 0c4.498 0.060 9.809 0.095 15.128 0.095 110.384 0 217.305-14.828 318.879-42.6l-8.46 1.972c11.144-3.767 19.024-14.128 19.024-26.33 0-5.069-1.36-9.82-3.735-13.909l0.071 0.133zM661.333 484.267c30.595-4.91 65.867-7.715 101.794-7.715 50.088 0 98.903 5.452 145.884 15.796l-4.478-0.827c1.736 0.381 3.731 0.599 5.776 0.599 15.552 0 28.16-12.608 28.16-28.16 0-1.264-0.083-2.509-0.245-3.729l0.015 0.143c-8.197-70.397-32.383-133.853-68.817-188.435l0.977 1.555c-5.079-7.207-13.366-11.858-22.74-11.858-7.817 0-14.879 3.234-19.92 8.437l-0.007 0.007c-55.955 52.207-120.395 96.317-190.832 129.875l-4.581 1.965c-9.61 4.496-16.148 14.083-16.148 25.198 0 4.168 0.919 8.12 2.566 11.667l-0.071-0.171 13.653 29.44c4.25 9.895 13.911 16.7 25.162 16.7 1.815 0 3.588-0.177 5.304-0.515l-0.173 0.028zM544 484.267l-7.68-16.64c-4.706-9.365-14.237-15.678-25.243-15.678-2.866 0-5.632 0.428-8.237 1.224l0.199-0.052c-105.616 32.501-227.024 51.217-352.804 51.217-2.267 0-4.533-0.006-6.798-0.018l0.349 0.001h-32.853c-0.131-0.002-0.285-0.003-0.44-0.003-15.317 0-27.733 12.417-27.733 27.733 0 0.301 0.005 0.601 0.014 0.9l-0.001-0.044c1.275 30.931 5.405 60.2 12.148 88.454l-0.628-3.121c14.862 55.527 38.616 104.077 69.964 146.696l-0.844-1.203c5.188 6.937 13.382 11.378 22.613 11.378s17.425-4.442 22.561-11.305l0.053-0.074c83.242-106.778 191.29-190.44 315.694-242.972l5.159-1.934c10.421-4.147 17.654-14.147 17.654-25.837 0-3.598-0.685-7.036-1.932-10.191l0.065 0.188zM684.8 602.453c22.127 59.181 43.721 132.857 60.512 208.342l2.208 11.818c2.774 12.867 14.056 22.37 27.558 22.37 6.909 0 13.238-2.488 18.137-6.618l-0.042 0.035c65.82-57.447 113.792-133.819 135.478-220.602l0.628-2.971c0.352-1.682 0.553-3.616 0.553-5.596 0-13.255-9.022-24.404-21.26-27.639l-0.199-0.045c-44.789-11.589-96.206-18.242-149.178-18.242-17.626 0-35.079 0.737-52.332 2.181l2.257-0.152c-13.75 2.014-24.189 13.727-24.189 27.879 0 2.838 0.42 5.578 1.201 8.161l-0.052-0.199zM563.627 597.333c-122.339 49.457-223.599 129.581-297.319 231.014l-1.347 1.946c-3.387 4.497-5.424 10.178-5.424 16.334 0 9.293 4.642 17.502 11.734 22.434l0.090 0.059c67.577 46.038 151.011 73.508 240.86 73.508 51.3 0 100.508-8.955 146.147-25.387l-3.007 0.946c10.832-4.086 18.397-14.366 18.397-26.413 0-1.825-0.174-3.609-0.505-5.336l0.028 0.176c-19.823-104.77-46.099-196.361-79.725-284.318l3.779 11.251c-4.366-10.244-14.349-17.294-25.979-17.294-2.752 0-5.412 0.395-7.926 1.131l0.199-0.050z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dribbble"]},"attrs":[{}],"properties":{"order":7195,"id":342,"name":"dribbble","prevSize":32,"code":59878},"setIdx":0,"setId":0,"iconIdx":230},{"icon":{"paths":["M305.067 742.827c-4.967 6.183-12.528 10.106-21.004 10.106-10.607 0-19.78-6.144-24.152-15.068l-0.070-0.158c-16.092-34.445-25.517-74.779-25.6-117.304l-0-0.029c0-114.773 155.733-357.12 234.24-469.333 9.639-13.342 25.15-21.923 42.667-21.923s33.028 8.581 42.561 21.77l0.106 0.154c26.027 37.973 61.013 90.453 95.573 147.2 3.108 4.328 4.971 9.733 4.971 15.573s-1.863 11.245-5.026 15.654l0.055-0.081zM339.2 802.56c-3.775 4.593-6.063 10.532-6.063 17.006 0 8.952 4.376 16.882 11.106 21.767l0.078 0.054c45.591 35.399 103.626 56.749 166.649 56.749 0.362 0 0.725-0.001 1.087-0.002l-0.056 0c0.127 0 0.277 0 0.427 0 153.167 0 277.333-124.166 277.333-277.333 0-0.15-0-0.3-0-0.45l0 0.023c-10.889-80.087-37.573-152.198-76.871-215.677l1.351 2.344c-4.772-7.923-13.328-13.14-23.103-13.14-7.704 0-14.651 3.241-19.552 8.433l-0.012 0.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["drop"]},"attrs":[{}],"properties":{"order":7196,"id":341,"name":"drop","prevSize":32,"code":59879},"setIdx":0,"setId":0,"iconIdx":231},{"icon":{"paths":["M906.667 493.653c10.050 7.291 16.511 18.998 16.511 32.213s-6.461 24.922-16.396 32.134l-0.115 0.079-195.413 146.347-199.253-140.8 247.467-173.653zM337.92 92.587c-6.442-4.705-14.518-7.527-23.253-7.527s-16.812 2.823-23.366 7.606l0.113-0.078-174.933 128c-10.052 7.378-16.505 19.149-16.505 32.427s6.452 25.049 16.393 32.348l0.112 0.078 148.053 104.533 247.467-174.507zM117.333 493.653c-10.050 7.291-16.511 18.998-16.511 32.213s6.461 24.922 16.396 32.134l0.115 0.079 195.413 146.347 199.253-140.8-247.467-173.653zM567.467 602.88v0l82.773 58.027zM750.080 755.627l-37.12 27.733-37.973-26.88-162.987-114.347-162.987 114.347-37.973 26.88-113.493-84.907v26.88c0.487 28.611 15.96 53.502 38.889 67.212l0.364 0.202 237.227 136.533c11.189 6.617 24.658 10.527 39.040 10.527s27.851-3.91 39.402-10.725l-0.362 0.198 236.8-136.533c23.375-13.676 38.827-38.659 38.827-67.25 0-0.058-0-0.115-0-0.173l0 0.009v-25.6zM195.413 618.24v0l114.773 85.333zM825.6 618.24v0l-115.2 85.333zM904.96 286.293c10.052-7.378 16.505-19.149 16.505-32.427s-6.452-25.049-16.393-32.348l-0.112-0.078-174.933-128c-6.442-4.705-14.518-7.527-23.253-7.527s-16.812 2.823-23.366 7.606l0.113-0.078-171.52 122.027 247.467 174.507z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["dropbox"]},"attrs":[{}],"properties":{"order":7197,"id":340,"name":"dropbox","prevSize":32,"code":59880},"setIdx":0,"setId":0,"iconIdx":232},{"icon":{"paths":["M686.933 791.467c9.956 10.087 16.104 23.953 16.104 39.254 0 30.869-25.024 55.893-55.893 55.893-0.112 0-0.223-0-0.335-0.001l0.017 0h-269.227c-0.442 0.012-0.963 0.020-1.486 0.020-31.105 0-56.32-25.215-56.32-56.32 0-14.866 5.759-28.386 15.169-38.452l-0.030 0.032 42.667-44.8 80.213-85.333c13.234-13.852 31.851-22.464 52.48-22.464s39.247 8.612 52.454 22.436l0.026 0.028 80.64 85.333zM686.933 232.533c9.61-10.083 15.523-23.765 15.523-38.827 0-31.012-25.065-56.17-56.042-56.319l-0.014-0h-269.227c-0.751-0.036-1.63-0.057-2.515-0.057-30.869 0-55.893 25.024-55.893 55.893 0 15.119 6.003 28.836 15.756 38.898l-0.014-0.015 42.667 42.667 79.787 85.333c13.234 13.852 31.851 22.464 52.48 22.464s39.247-8.612 52.454-22.436l0.026-0.028 80.64-85.333zM92.16 536.32l96 151.467c8.706 13.439 23.628 22.206 40.597 22.206 13.303 0 25.347-5.387 34.070-14.099l-0 0 151.040-154.453c8.221-8.255 13.303-19.641 13.303-32.213s-5.082-23.959-13.305-32.215l0.002 0.002-152.747-149.333c-8.575-8.597-20.433-13.917-33.534-13.917-16.934 0-31.791 8.887-40.164 22.252l-0.116 0.198-95.147 149.76c-4.409 7.178-7.021 15.87-7.021 25.173s2.612 17.996 7.142 25.386l-0.121-0.212zM931.413 485.12l-94.72-149.76c-8.611-13.427-23.46-22.198-40.358-22.198-13.030 0-24.842 5.215-33.463 13.672l0.008-0.007-152.32 149.333c-8.325 8.207-13.482 19.608-13.482 32.213s5.157 24.006 13.476 32.208l0.005 0.005 150.613 154.453c8.723 8.712 20.767 14.099 34.070 14.099 16.969 0 31.891-8.767 40.483-22.018l0.114-0.188 96-151.467c4.462-7.051 7.111-15.635 7.111-24.838 0-9.482-2.812-18.307-7.647-25.688l0.11 0.179z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["educare"]},"attrs":[{}],"properties":{"order":7198,"id":339,"name":"educare","prevSize":32,"code":59881},"setIdx":0,"setId":0,"iconIdx":233},{"icon":{"paths":["M753.493 863.573c3.273 4.678 5.231 10.486 5.231 16.752 0 11.142-6.189 20.838-15.318 25.838l-0.153 0.077c-40.29 24.319-87.122 43.076-136.975 53.659l-2.971 0.528c-5.714 1.364-12.274 2.146-19.016 2.146-0.515 0-1.028-0.005-1.541-0.014l0.077 0.001c-0.079 0-0.173 0-0.266 0-24.244 0-46.496-8.532-63.916-22.758l0.182 0.144c-22.996-18.922-37.547-47.384-37.547-79.245 0-0.040 0-0.081 0-0.121l-0 0.006v-186.453c-59.546-13.188-103.457-65.434-103.68-127.975l-0-0.025v-98.987h-8.107c-33.99-0.234-61.453-27.843-61.453-61.865 0-0.451 0.005-0.9 0.014-1.348l-0.001 0.067c-0.008-0.381-0.013-0.83-0.013-1.28 0-33.932 27.508-61.44 61.44-61.44 0.005 0 0.009 0 0.014 0l282.026-0c0.007-0 0.015-0 0.024-0 33.697 0 61.013 27.317 61.013 61.013 0 0.6-0.009 1.198-0.026 1.794l0.002-0.088c0 0 0 0.001 0 0.001 0 33.782-27.265 61.197-60.99 61.438l-0.023 0h-8.107v100.693c-0.223 62.566-44.134 114.812-102.806 127.837l-0.874 0.163v184.32c-0 0.068-0.001 0.149-0.001 0.23 0 13.532 6.3 25.593 16.127 33.41l0.087 0.067c7.249 5.87 16.582 9.423 26.745 9.423 3.069 0 6.062-0.324 8.948-0.94l-0.28 0.050c46.065-9.685 86.902-26.081 123.795-48.351l-1.769 0.991c4.259-2.535 9.392-4.034 14.874-4.034 10.657 0 19.992 5.663 25.159 14.144l0.074 0.13zM814.933 170.667c-79.922-72.336-186.429-116.606-303.276-116.606-18.674 0-37.084 1.131-55.165 3.327l2.174-0.215c-50.729 5.631-97.057 19.052-139.642 39.109l2.682-1.136c-10.935 4.462-18.502 15.014-18.502 27.333 0 16.259 13.181 29.44 29.44 29.44 5.053 0 9.809-1.273 13.965-3.516l-0.156 0.077c34.562-16.525 74.706-28.151 116.968-32.709l1.645-0.144c14.028-1.769 30.261-2.779 46.73-2.779 101.649 0 194.313 38.47 264.227 101.645l-0.343-0.305c81.352 73.332 132.268 179.075 132.268 296.711 0 0.388-0.001 0.775-0.002 1.162l0-0.060c-0.272 64.063-16.017 124.387-43.686 177.51l1.019-2.15c-1.771 3.733-2.805 8.111-2.805 12.731 0 11.679 6.609 21.814 16.291 26.87l0.167 0.080c3.676 1.883 8.020 2.987 12.622 2.987 0.063 0 0.125-0 0.188-0.001l-0.010 0c0.063 0 0.136 0.001 0.21 0.001 11.53 0 21.488-6.725 26.168-16.467l0.075-0.174c30.384-58.585 48.329-127.855 48.64-201.287l0-0.1c0.001-0.388 0.002-0.847 0.002-1.306 0-134.871-58.484-256.081-151.475-339.656l-0.42-0.371zM323.84 819.2c-0.895 57.751-47.921 104.223-105.801 104.223-58.439 0-105.813-47.374-105.813-105.813 0-20.576 5.873-39.78 16.034-56.028l-0.259 0.444c-47.019-70.709-75.024-157.584-75.024-251 0-16.79 0.905-33.368 2.668-49.689l-0.177 2.023c7.164-67.598 28.449-128.978 60.854-182.918l-1.12 2.011c4.754-10.248 14.956-17.228 26.788-17.228 16.259 0 29.44 13.181 29.44 29.44 0 6.657-2.209 12.798-5.935 17.729l0.054-0.074c-26.527 45.175-44.487 98.471-50.213 155.376l-0.133 1.637c-1.505 12.99-2.364 28.042-2.364 43.294 0 78.909 22.984 152.451 62.623 214.294l-0.953-1.588c13.006-6.214 28.267-9.843 44.377-9.843 57.968 0 104.96 46.992 104.96 104.96 0 0.31-0.001 0.62-0.004 0.93l0-0.047zM264.96 819.2c0-25.921-21.013-46.933-46.933-46.933s-46.933 21.013-46.933 46.933c0 25.921 21.013 46.933 46.933 46.933h-0c25.921 0 46.933-21.013 46.933-46.933h-0zM435.627 319.573v-122.027c0-16.259-13.181-29.44-29.44-29.44s-29.44 13.181-29.44 29.44v122.027s0 0 0 0h58.027s-0 0.853-0 0zM648.96 319.573v-121.6c0-16.259-13.181-29.44-29.44-29.44s-29.44 13.181-29.44 29.44v122.027s0 0 0 0h58.453s0.427 0.427 0.427 0zM828.16 768c-0.126-0.002-0.275-0.003-0.424-0.003-15.788 0-28.587 12.799-28.587 28.587s12.799 28.587 28.587 28.587c15.788 0 28.587-12.799 28.587-28.587 0-0.149-0.001-0.298-0.003-0.446l0 0.022c0-15.552-12.608-28.16-28.16-28.16l-0 0zM230.4 226.133c0.126 0.002 0.275 0.003 0.424 0.003 15.788 0 28.587-12.799 28.587-28.587s-12.799-28.587-28.587-28.587c-15.788 0-28.587 12.799-28.587 28.587 0 0.149 0.001 0.298 0.003 0.446l-0-0.022c0.236 15.456 12.704 27.924 28.138 28.16l0.022 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["electricity"]},"attrs":[{}],"properties":{"order":7199,"id":338,"name":"electricity","prevSize":32,"code":59882},"setIdx":0,"setId":0,"iconIdx":234},{"icon":{"paths":["M651.52 810.667h-341.333c-47.128 0-85.333-38.205-85.333-85.333v0-426.667c0-47.128 38.205-85.333 85.333-85.333v0h341.333c47.128 0 85.333 38.205 85.333 85.333v0 426.667c0 47.128-38.205 85.333-85.333 85.333v0zM637.44 128c-4.959-24.49-26.31-42.667-51.906-42.667-0.052 0-0.103 0-0.155 0l0.008-0h-209.067c-0.044-0-0.095-0-0.147-0-25.596 0-46.947 18.177-51.849 42.327l-0.058 0.34-6.827 42.667h326.827zM324.267 896c4.959 24.49 26.31 42.667 51.906 42.667 0.052 0 0.103-0 0.155-0l-0.008 0h209.067c0.044 0 0.095 0 0.147 0 25.596 0 46.947-18.177 51.849-42.327l0.058-0.34 6.827-42.667h-326.827zM793.6 469.333h-12.8v-170.667h12.373c0.402-0.014 0.875-0.021 1.349-0.021 19.781 0 36.419 13.462 41.25 31.724l0.067 0.298c4.869 15.904 7.672 34.185 7.672 53.12s-2.803 37.216-8.018 54.449l0.346-1.329c-4.736 18.79-21.485 32.478-41.432 32.478-0.734 0-1.464-0.019-2.19-0.055l0.102 0.004z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["electronic-clock"]},"attrs":[{}],"properties":{"order":7200,"id":337,"name":"electronic-clock","prevSize":32,"code":59883},"setIdx":0,"setId":0,"iconIdx":235},{"icon":{"paths":["M395.093 384h-213.333c-0.254 0.003-0.553 0.005-0.853 0.005-41.002 0-74.24-33.238-74.24-74.24 0-0.002 0-0.003 0-0.005l-0 0v-150.187c0-41.002 33.238-74.24 74.24-74.24v0h213.333c0.254-0.003 0.553-0.005 0.853-0.005 41.002 0 74.24 33.238 74.24 74.24 0 0.002-0 0.003-0 0.005l0-0v150.187c0 41.002-33.238 74.24-74.24 74.24v0zM469.333 864.427v-320.853c0-41.002-33.238-74.24-74.24-74.24v0h-213.333c-0.254-0.003-0.553-0.005-0.853-0.005-41.002 0-74.24 33.238-74.24 74.24 0 0.002 0 0.003 0 0.005l-0-0v320.853c0 41.002 33.238 74.24 74.24 74.24v0h213.333c0.254 0.003 0.553 0.005 0.853 0.005 41.002 0 74.24-33.238 74.24-74.24 0-0.002-0-0.003-0-0.005l0 0zM917.333 480.427v-320.427c0-41.237-33.429-74.667-74.667-74.667v0h-213.333c-41.237 0-74.667 33.429-74.667 74.667v0 320c0 41.237 33.429 74.667 74.667 74.667v0h213.333c41.237 0 74.667-33.429 74.667-74.667v0zM917.333 864.427v-150.187c0-41.002-33.238-74.24-74.24-74.24v0h-213.333c-0.254-0.003-0.553-0.005-0.853-0.005-41.002 0-74.24 33.238-74.24 74.24 0 0.002 0 0.003 0 0.005l-0-0v150.187c0 41.002 33.238 74.24 74.24 74.24v0h213.333c0.254 0.003 0.553 0.005 0.853 0.005 41.002 0 74.24-33.238 74.24-74.24 0-0.002-0-0.003-0-0.005l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-1"]},"attrs":[{}],"properties":{"order":7201,"id":336,"name":"element-1","prevSize":32,"code":59884},"setIdx":0,"setId":0,"iconIdx":236},{"icon":{"paths":["M277.333 320h-128c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h128c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM618.667 277.333v-128c0-23.564-19.103-42.667-42.667-42.667v0h-128c-23.564 0-42.667 19.103-42.667 42.667v0 128c0 23.564 19.103 42.667 42.667 42.667v0h128c23.564 0 42.667-19.103 42.667-42.667v0zM874.667 320h-128c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h128c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM277.333 618.667h-128c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h128c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM576 618.667h-128c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h128c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM874.667 618.667h-128c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h128c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM277.333 917.333h-128c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h128c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM576 917.333h-128c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h128c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM874.667 917.333h-128c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667v0h128c23.564 0 42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-2"]},"attrs":[{}],"properties":{"order":7202,"id":335,"name":"element-2","prevSize":32,"code":59885},"setIdx":0,"setId":0,"iconIdx":237},{"icon":{"paths":["M426.667 821.333v-618.667c0-41.237 33.429-74.667 74.667-74.667v0h362.667c41.237 0 74.667 33.429 74.667 74.667v0 618.667c0 41.237-33.429 74.667-74.667 74.667v0h-362.667c-41.237 0-74.667-33.429-74.667-74.667v0zM341.333 821.333v-618.667c0-41.237-33.429-74.667-74.667-74.667v0h-106.667c-41.237 0-74.667 33.429-74.667 74.667v0 618.667c0 41.237 33.429 74.667 74.667 74.667v0h106.667c41.237 0 74.667-33.429 74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-3"]},"attrs":[{}],"properties":{"order":7203,"id":334,"name":"element-3","prevSize":32,"code":59886},"setIdx":0,"setId":0,"iconIdx":238},{"icon":{"paths":["M480 896h-277.333c-64.801 0-117.333-52.532-117.333-117.333v0-533.333c0-64.801 52.532-117.333 117.333-117.333v0h277.333c64.801 0 117.333 52.532 117.333 117.333v0 533.333c0 64.801-52.532 117.333-117.333 117.333v0zM757.333 896h106.667c41.237 0 74.667-33.429 74.667-74.667v0-618.667c0-41.237-33.429-74.667-74.667-74.667v0h-106.667c-41.237 0-74.667 33.429-74.667 74.667v0 618.667c0 41.237 33.429 74.667 74.667 74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-4"]},"attrs":[{}],"properties":{"order":7204,"id":333,"name":"element-4","prevSize":32,"code":59887},"setIdx":0,"setId":0,"iconIdx":239},{"icon":{"paths":["M266.667 896h-106.667c-41.237 0-74.667-33.429-74.667-74.667v0-618.667c0-41.237 33.429-74.667 74.667-74.667v0h106.667c41.237 0 74.667 33.429 74.667 74.667v0 618.667c0 41.237-33.429 74.667-74.667 74.667v0zM938.667 394.667v-192c0-41.237-33.429-74.667-74.667-74.667v0h-362.667c-41.237 0-74.667 33.429-74.667 74.667v0 192c0 41.237 33.429 74.667 74.667 74.667v0h362.667c41.237 0 74.667-33.429 74.667-74.667v0zM864 896h-362.667c-41.237 0-74.667-33.429-74.667-74.667v0-192c0-41.237 33.429-74.667 74.667-74.667v0h362.667c41.237 0 74.667 33.429 74.667 74.667v0 192c0 41.237-33.429 74.667-74.667 74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-5"]},"attrs":[{}],"properties":{"order":7205,"id":332,"name":"element-5","prevSize":32,"code":59888},"setIdx":0,"setId":0,"iconIdx":240},{"icon":{"paths":["M618.667 480v362.667c0 41.237-33.429 74.667-74.667 74.667v0h-64c-41.237 0-74.667-33.429-74.667-74.667v0-362.667c0-41.237 33.429-74.667 74.667-74.667v0h64c41.237 0 74.667 33.429 74.667 74.667v0zM842.667 405.333h-64c-41.237 0-74.667 33.429-74.667 74.667v0 362.667c0 41.237 33.429 74.667 74.667 74.667v0h64c41.237 0 74.667-33.429 74.667-74.667v0-362.667c0-41.237-33.429-74.667-74.667-74.667v0zM320 480v362.667c0 41.237-33.429 74.667-74.667 74.667v0h-64c-41.237 0-74.667-33.429-74.667-74.667v0-362.667c0-41.237 33.429-74.667 74.667-74.667v0h64c41.237 0 74.667 33.429 74.667 74.667v0zM917.333 245.333v-64c0-41.237-33.429-74.667-74.667-74.667v0h-661.333c-41.237 0-74.667 33.429-74.667 74.667v0 64c0 41.237 33.429 74.667 74.667 74.667v0h661.333c41.237 0 74.667-33.429 74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-6"]},"attrs":[{}],"properties":{"order":7206,"id":331,"name":"element-6","prevSize":32,"code":59889},"setIdx":0,"setId":0,"iconIdx":241},{"icon":{"paths":["M842.667 320h-661.333c-41.237 0-74.667-33.429-74.667-74.667v0-64c0-41.237 33.429-74.667 74.667-74.667v0h661.333c41.237 0 74.667 33.429 74.667 74.667v0 64c0 41.237-33.429 74.667-74.667 74.667v0zM288 405.333h-106.667c-41.237 0-74.667 33.429-74.667 74.667v0 362.667c0 41.237 33.429 74.667 74.667 74.667v0h106.667c41.237 0 74.667-33.429 74.667-74.667v0-362.667c0-41.237-33.429-74.667-74.667-74.667v0zM917.333 842.667v-362.667c0-41.237-33.429-74.667-74.667-74.667v0h-320c-41.237 0-74.667 33.429-74.667 74.667v0 362.667c0 41.237 33.429 74.667 74.667 74.667v0h320c41.237 0 74.667-33.429 74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-7"]},"attrs":[{}],"properties":{"order":7207,"id":330,"name":"element-7","prevSize":32,"code":59890},"setIdx":0,"setId":0,"iconIdx":242},{"icon":{"paths":["M842.667 618.667h-320c-41.237 0-74.667-33.429-74.667-74.667v0-64c0-41.237 33.429-74.667 74.667-74.667v0h320c41.237 0 74.667 33.429 74.667 74.667v0 64c0 41.237-33.429 74.667-74.667 74.667v0zM917.333 842.667v-64c0-41.237-33.429-74.667-74.667-74.667v0h-320c-41.237 0-74.667 33.429-74.667 74.667v0 64c0 41.237 33.429 74.667 74.667 74.667v0h320c41.237 0 74.667-33.429 74.667-74.667v0zM842.667 320h-661.333c-41.237 0-74.667-33.429-74.667-74.667v0-64c0-41.237 33.429-74.667 74.667-74.667v0h661.333c41.237 0 74.667 33.429 74.667 74.667v0 64c0 41.237-33.429 74.667-74.667 74.667v0zM288 405.333h-106.667c-41.237 0-74.667 33.429-74.667 74.667v0 362.667c0 41.237 33.429 74.667 74.667 74.667v0h106.667c41.237 0 74.667-33.429 74.667-74.667v0-362.667c0-41.237-33.429-74.667-74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-8"]},"attrs":[{}],"properties":{"order":7208,"id":329,"name":"element-8","prevSize":32,"code":59891},"setIdx":0,"setId":0,"iconIdx":243},{"icon":{"paths":["M842.667 917.333h-661.333c-41.237 0-74.667-33.429-74.667-74.667v0-362.667c0-41.237 33.429-74.667 74.667-74.667v0h661.333c41.237 0 74.667 33.429 74.667 74.667v0 362.667c0 41.237-33.429 74.667-74.667 74.667v0zM917.333 245.333v-64c0-41.237-33.429-74.667-74.667-74.667v0h-661.333c-41.237 0-74.667 33.429-74.667 74.667v0 64c0 41.237 33.429 74.667 74.667 74.667v0h661.333c41.237 0 74.667-33.429 74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-9"]},"attrs":[{}],"properties":{"order":7209,"id":328,"name":"element-9","prevSize":32,"code":59892},"setIdx":0,"setId":0,"iconIdx":244},{"icon":{"paths":["M394.667 938.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v0-704c0-41.237 33.429-74.667 74.667-74.667v0h213.333c41.237 0 74.667 33.429 74.667 74.667v0 704c0 41.237-33.429 74.667-74.667 74.667v0zM917.333 394.667v-234.667c0-41.237-33.429-74.667-74.667-74.667v0h-213.333c-41.237 0-74.667 33.429-74.667 74.667v0 234.667c0 41.237 33.429 74.667 74.667 74.667v0h213.333c41.237 0 74.667-33.429 74.667-74.667v0zM917.333 864v-234.667c0-41.237-33.429-74.667-74.667-74.667v0h-213.333c-41.237 0-74.667 33.429-74.667 74.667v0 234.667c0 41.237 33.429 74.667 74.667 74.667v0h213.333c41.237 0 74.667-33.429 74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-10"]},"attrs":[{}],"properties":{"order":7210,"id":327,"name":"element-10","prevSize":32,"code":59893},"setIdx":0,"setId":0,"iconIdx":245},{"icon":{"paths":["M372.053 448h-213.333c-40.781-1.189-73.387-34.531-73.387-75.49 0-0.011 0-0.021 0-0.032l-0 0.002v-213.333c0.955-40.968 34.392-73.813 75.501-73.813 0.007 0 0.014 0 0.020 0l213.332-0c41.709-0 75.52 33.811 75.52 75.52v213.333c-0.938 40.981-34.382 73.844-75.501 73.844-0.757 0-1.511-0.011-2.262-0.033l0.11 0.003zM938.667 372.48v-213.333c-0.955-40.968-34.392-73.813-75.501-73.813-0.007 0-0.014 0-0.020 0l-213.332-0c-41.709-0-75.52 33.811-75.52 75.52v213.333c0 41.709 33.811 75.52 75.52 75.52v0h213.333c0.006 0 0.013 0 0.019 0 41.709 0 75.52-33.811 75.52-75.52 0-0.6-0.007-1.199-0.021-1.795l0.002 0.089zM938.667 863.147v-213.333c0-41.709-33.811-75.52-75.52-75.52v0h-211.627c-41.709 0-75.52 33.811-75.52 75.52v0 213.333c0 41.709 33.811 75.52 75.52 75.52v0h211.2c0.127 0.001 0.277 0.001 0.427 0.001 41.709 0 75.52-33.811 75.52-75.52 0-0-0-0.001-0-0.001l0 0zM448 863.147v-213.333c-0.955-40.968-34.392-73.815-75.501-73.815-0.157 0-0.313 0-0.47 0.001l0.024-0h-213.333c-40.781 1.189-73.387 34.531-73.387 75.49 0 0.011 0 0.021 0 0.032l-0-0.002v213.333c0.955 40.968 34.392 73.813 75.501 73.813 0.007 0 0.014-0 0.020-0l213.332 0c40.781-1.189 73.387-34.531 73.387-75.49 0-0.011-0-0.021-0-0.032l0 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-11"]},"attrs":[{}],"properties":{"order":7211,"id":326,"name":"element-11","prevSize":32,"code":59894},"setIdx":0,"setId":0,"iconIdx":246},{"icon":{"paths":["M845.227 554.667h-218.027c-40.309-1.188-72.533-34.149-72.533-74.636 0-0.011 0-0.021 0-0.032l-0 0.002v-320c-0-0.009-0-0.020-0-0.030 0-40.487 32.224-73.448 72.424-74.634l0.109-0.003h218.027c41.237 0 74.667 33.429 74.667 74.667v0 320c0 41.237-33.429 74.667-74.667 74.667v0zM919.893 864v-149.333c0-41.237-33.429-74.667-74.667-74.667v0h-213.333c-41.237 0-74.667 33.429-74.667 74.667v0 149.333c-0 41.237 33.429 74.667 74.667 74.667h213.333c41.237 0 74.667-33.429 74.667-74.667h-0zM466.773 864v-704c0-41.237-33.429-74.667-74.667-74.667v0h-213.333c-41.237 0-74.667 33.429-74.667 74.667h0v704c-0 41.237 33.429 74.667 74.667 74.667h213.333c41.237 0 74.667-33.429 74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-12"]},"attrs":[{}],"properties":{"order":7212,"id":325,"name":"element-12","prevSize":32,"code":59895},"setIdx":0,"setId":0,"iconIdx":247},{"icon":{"paths":["M361.387 448h-213.333c-40.781-1.189-73.387-34.531-73.387-75.49 0-0.011 0-0.021 0-0.032l-0 0.002v-213.333c0.955-40.968 34.392-73.813 75.501-73.813 0.007 0 0.014 0 0.020 0l213.332-0c41.611 0.241 75.279 33.909 75.52 75.497l0 0.023v213.333c-1.178 41.025-34.716 73.833-75.917 73.833-0.61 0-1.219-0.007-1.826-0.022l0.090 0.002zM927.573 372.48v-213.333c-0.939-40.532-33.671-73.114-74.174-73.812l-0.066-0.001h-213.333c-41.709-0-75.52 33.811-75.52 75.52v213.333c0.955 40.968 34.392 73.813 75.501 73.813 0.007 0 0.014-0 0.020-0l213.332 0c41.154-0.72 74.24-34.251 74.24-75.509 0-0.004-0-0.008-0-0.012l0 0.001zM436.907 863.147v-213.333c-1.184-40.878-34.496-73.592-75.499-73.813l-0.021-0h-213.333c-41.709 0-75.52 33.811-75.52 75.52v0 213.333c0.938 40.981 34.382 73.844 75.501 73.844 0.757 0 1.511-0.011 2.262-0.033l-0.11 0.003h213.333c40.695-1.415 73.174-34.64 73.387-75.499l0-0.021zM927.573 839.253c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-298.24c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h298.667c17.489-0.241 31.573-14.474 31.573-31.997 0-0.001-0-0.002-0-0.003l0 0zM927.573 675.413c0-17.673-14.327-32-32-32v0h-298.24c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h298.667c17.394-0.471 31.343-14.569 31.573-31.978l0-0.022z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-equal"]},"attrs":[{}],"properties":{"order":7213,"id":324,"name":"element-equal","prevSize":32,"code":59896},"setIdx":0,"setId":0,"iconIdx":248},{"icon":{"paths":["M393.387 448h-213.333c-40.781-1.189-73.387-34.531-73.387-75.49 0-0.011 0-0.021 0-0.032l-0 0.002v-213.333c0.955-40.968 34.392-73.813 75.501-73.813 0.007 0 0.014 0 0.020 0l213.332-0c40.968 0.955 73.813 34.392 73.813 75.501 0 0.007-0 0.014-0 0.020l0-0.001v213.333c-0.955 40.968-34.392 73.815-75.501 73.815-0.157 0-0.313-0-0.47-0.001l0.024 0zM960 372.48v-213.333c-1.184-40.878-34.496-73.592-75.499-73.813l-0.021-0h-213.333c-40.878 1.184-73.592 34.496-73.813 75.499l-0 0.021v213.333c0.241 41.611 33.909 75.279 75.497 75.52l0.023 0h213.333c41.021-1.183 73.825-34.719 73.825-75.917 0-0.461-0.004-0.92-0.012-1.379l0.001 0.069zM469.333 863.147v-213.333c-0.955-40.968-34.392-73.815-75.501-73.815-0.157 0-0.313 0-0.47 0.001l0.024-0h-213.333c-40.781 1.189-73.387 34.531-73.387 75.49 0 0.011 0 0.021 0 0.032l-0-0.002v213.333c0.955 40.968 34.392 73.813 75.501 73.813 0.007 0 0.014-0 0.020-0l213.332 0c40.968-0.955 73.813-34.392 73.813-75.501 0-0.007-0-0.014-0-0.020l0 0.001zM630.187 757.333l281.6-32h-101.12v-100.693c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 100.693h-100.693c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h100.693v100.693c0 17.673 14.327 32 32 32s32-14.327 32-32v0-100.693h100.693c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["element-plus"]},"attrs":[{}],"properties":{"order":7214,"id":323,"name":"element-plus","prevSize":32,"code":59897},"setIdx":0,"setId":0,"iconIdx":249},{"icon":{"paths":["M702.72 85.333h-381.44c-130.31 0-235.947 105.637-235.947 235.947l-0-0v381.44c0 130.31 105.637 235.947 235.947 235.947h381.44c130.31 0 235.947-105.637 235.947-235.947v0-381.44c0-130.31-105.637-235.947-235.947-235.947v-0zM361.387 271.787c0.508-0.012 1.107-0.018 1.707-0.018 44.301 0 80.213 35.913 80.213 80.213s-35.913 80.213-80.213 80.213c-44.294 0-80.203-35.902-80.213-80.194l-0-0.001c-0-0-0-0.001-0-0.001 0-44.151 35.67-79.97 79.764-80.212l0.023-0zM512 814.080c-114.809-0.243-207.787-93.37-207.787-208.213 0-0 0-0 0-0l0-0c0-30.162 24.451-54.613 54.613-54.613v0h307.627c30.162 0 54.613 24.451 54.613 54.613v0c0 0 0 0.001 0 0.002 0 114.993-93.22 208.213-208.213 208.213-0.3 0-0.6-0.001-0.9-0.002l0.046 0zM658.347 432.213c-44.301 0-80.213-35.913-80.213-80.213s35.913-80.213 80.213-80.213c44.301 0 80.213 35.913 80.213 80.213l0 0c0 0 0 0.001 0 0.001 0 44.151-35.67 79.97-79.764 80.212l-0.023 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["emoji-happy"]},"attrs":[{}],"properties":{"order":7215,"id":322,"name":"emoji-happy","prevSize":32,"code":59898},"setIdx":0,"setId":0,"iconIdx":250},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM677.547 482.133c17.673 0 32 14.327 32 32s-14.327 32-32 32v0 0h-298.667v6.4c0 56.79 46.037 102.827 102.827 102.827v0h195.413c17.673-0 32 14.327 32 32s-14.327 32-32 32h-195.413c-92.136 0-166.827-74.691-166.827-166.827v0-79.36c0-92.136 74.691-166.827 166.827-166.827v0h195.413c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-195.413c-56.79 0-102.827 46.037-102.827 102.827v0 7.253z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["enjin-coin"]},"attrs":[{}],"properties":{"order":7216,"id":321,"name":"enjin-coin","prevSize":32,"code":59899},"setIdx":0,"setId":0,"iconIdx":251},{"icon":{"paths":["M368.213 479.573v64.853h-213.333c-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427h-0zM727.893 89.6h-184.747c-1.286-0.035-2.8-0.055-4.319-0.055-92.776 0-168.261 74.028-170.61 166.237l-0.004 0.218v225.707h204.8l-69.547-72.533c-5.708-5.902-9.225-13.954-9.225-22.827s3.517-16.924 9.234-22.836l-0.009 0.009c5.599-5.144 13.098-8.298 21.333-8.298s15.735 3.153 21.356 8.318l-0.023-0.021 123.733 128c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-123.733 128c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0c-0.132 0.002-0.288 0.003-0.444 0.003-8.562 0-16.283-3.603-21.728-9.375l-0.014-0.015c-5.708-5.902-9.225-13.954-9.225-22.827s3.517-16.924 9.234-22.836l-0.009 0.009 69.547-70.4h-202.667v225.707c3.509 91.487 78.523 164.323 170.549 164.323 1.542 0 3.079-0.020 4.611-0.061l-0.226 0.005h184.747c1.179 0.029 2.566 0.046 3.958 0.046 92.022 0 167.034-72.83 170.539-163.994l0.010-0.319v-518.4c-2.359-92.422-77.842-166.444-170.614-166.444-1.369 0-2.733 0.016-4.094 0.048l0.202-0.004z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["entrance-left"]},"attrs":[{}],"properties":{"order":7217,"id":320,"name":"entrance-left","prevSize":32,"code":59900},"setIdx":0,"setId":0,"iconIdx":252},{"icon":{"paths":["M444.16 548.267h208.213v226.56c-3.756 91.282-78.668 163.861-170.531 163.861-0.948 0-1.894-0.008-2.838-0.023l0.143 0.002h-184.32c-0.919 0.018-2.004 0.028-3.090 0.028-92.166 0-167.268-73.058-170.555-164.421l-0.009-0.3v-517.973c3.98-91.096 78.798-163.442 170.514-163.442 1.104 0 2.205 0.010 3.304 0.031l-0.165-0.002h184.32c0.807-0.014 1.759-0.022 2.713-0.022 91.713 0 166.53 72.342 170.501 163.077l0.012 0.358v226.56h-208.213l67.84-69.547c5.708-5.902 9.225-13.954 9.225-22.827s-3.517-16.924-9.234-22.836l0.009 0.009c-5.559-5.236-13.071-8.453-21.333-8.453s-15.774 3.217-21.349 8.468l0.016-0.015-123.307 128c-5.708 5.902-9.225 13.954-9.225 22.827s3.517 16.924 9.234 22.836l-0.009-0.009 123.307 123.733c5.595 5.791 13.43 9.387 22.105 9.387 0.029 0 0.058-0 0.087-0l-0.004 0c0.044 0 0.097 0 0.149 0 8.788 0 16.737-3.59 22.461-9.384l0.003-0.003c5.708-5.902 9.225-13.954 9.225-22.827s-3.517-16.924-9.234-22.836l0.009 0.009zM861.44 483.84h-209.067v64.427h209.067c16.239-1.926 28.713-15.613 28.713-32.213s-12.474-30.287-28.56-32.198l-0.153-0.015z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["entrance-right"]},"attrs":[{}],"properties":{"order":7218,"id":319,"name":"entrance-right","prevSize":32,"code":59901},"setIdx":0,"setId":0,"iconIdx":253},{"icon":{"paths":["M896 853.333h-416.427l433.067-433.067c16.065-16.125 25.997-38.369 25.997-62.933s-9.932-46.808-25.999-62.936l0.003 0.003-183.040-183.040c-15.998-16.078-38.143-26.028-62.611-26.028-0.188 0-0.376 0.001-0.564 0.002l0.029-0c-0.138-0.001-0.301-0.001-0.465-0.001-24.356 0-46.387 9.955-62.246 26.019l-0.009 0.009-492.373 492.373c-16.709 16.226-27.078 38.902-27.078 64s10.369 47.774 27.056 63.979l0.022 0.021 183.040 180.907c15.998 16.078 38.143 26.028 62.611 26.028 0.188 0 0.376-0.001 0.564-0.002l-0.029 0h538.453c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0zM648.96 156.587c4.414-4.479 10.546-7.254 17.327-7.254 0.059 0 0.117 0 0.176 0.001l-0.009-0c0.071-0.001 0.155-0.001 0.239-0.001 6.892 0 13.138 2.77 17.684 7.257l-0.003-0.003 183.040 184.747c4.485 4.543 7.254 10.789 7.254 17.681 0 0.084-0 0.168-0.001 0.252l0-0.013c0 0.050 0.001 0.108 0.001 0.167 0 6.781-2.775 12.913-7.251 17.324l-0.003 0.003-200.96 199.253-218.453-218.453z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eraser"]},"attrs":[{}],"properties":{"order":7219,"id":318,"name":"eraser","prevSize":32,"code":59902},"setIdx":0,"setId":0,"iconIdx":254},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM686.933 692.48c-16.136 16.758-35.592 30.193-57.326 39.263l-1.128 0.417c-23.541 9.501-50.84 15.014-79.426 15.014-2.077 0-4.148-0.029-6.211-0.087l0.304 0.007c-1.069 0.015-2.331 0.023-3.596 0.023-21.866 0-43.149-2.496-63.579-7.218l1.895 0.369c-20.317-4.449-38.294-11.822-54.523-21.768l0.763 0.435c-15.382-10.319-28.59-22.307-39.858-35.956l-0.249-0.31c-11.654-13.872-21.895-29.572-30.124-46.433l-0.596-1.353c-4.248-9.014-8.592-20.181-12.238-31.658l-0.562-2.048h-60.587c-16.69-1.954-29.518-16.012-29.518-33.067s12.828-31.113 29.362-33.052l0.156-0.015h46.933c0-6.827 0-13.653 0-20.907s0-14.507 0-21.76h-46.933c-16.69-1.954-29.518-16.012-29.518-33.067s12.828-31.113 29.362-33.052l0.156-0.015h61.44c0.127-1.787 0.199-3.872 0.199-5.973s-0.072-4.187-0.215-6.252l0.015 0.279c10.756-28.456 26.568-52.771 46.528-72.981l-0.021 0.021c19.042-20.090 42.245-36.032 68.249-46.473l1.298-0.46c24.537-10.264 53.050-16.226 82.954-16.226 0.836 0 1.672 0.005 2.506 0.014l-0.127-0.001c1.569-0.041 3.416-0.064 5.268-0.064 33.416 0 65.062 7.577 93.314 21.106l-1.302-0.562c23.467 12.373 52.48 31.573 54.613 61.013 0.033 0.626 0.051 1.358 0.051 2.095 0 13.933-6.679 26.307-17.010 34.093l-0.109 0.078c-2.879 2.679-6.278 4.845-10.023 6.325l-0.217 0.075c-2.918 0.915-6.274 1.442-9.752 1.442-6.143 0-11.903-1.644-16.863-4.515l0.162 0.087c-15.36-8.107-24.747-23.040-38.827-32.427-15.765-10.728-35.225-17.129-56.18-17.129-1.25 0-2.494 0.023-3.732 0.068l0.179-0.005c-1.194-0.047-2.596-0.074-4.004-0.074-35.129 0-66.369 16.648-86.261 42.485l-0.189 0.255c-6.869 9.1-12.756 19.517-17.179 30.673l-0.315 0.901h168.107c1.129-0.136 2.437-0.213 3.762-0.213 18.38 0 33.28 14.9 33.28 33.28s-14.9 33.28-33.28 33.28c-1.326 0-2.633-0.078-3.918-0.228l0.156 0.015h-181.76c0 8.107 0 16.213 0 25.173s0 11.52 0 17.493h148.907c16.69 1.954 29.518 16.012 29.518 33.067s-12.828 31.113-29.362 33.052l-0.156 0.015h-136.533c-0.068 0.703-0.106 1.52-0.106 2.347s0.038 1.643 0.114 2.45l-0.008-0.103c8.639 21.937 23.434 39.895 42.249 52.223l0.417 0.257c17.372 10.993 38.519 17.518 61.19 17.518 0.838 0 1.674-0.009 2.508-0.027l-0.125 0.002c0.952 0.029 2.072 0.045 3.196 0.045 24.025 0 46.294-7.522 64.579-20.339l-0.362 0.24c18.773-13.227 32-40.533 56.747-42.667 1.225-0.115 2.649-0.18 4.088-0.18 13.568 0 25.78 5.811 34.281 15.079l0.031 0.034c4.6 5.009 7.693 11.469 8.519 18.619l0.015 0.154c-0.1 19.362-9.204 36.578-23.335 47.687l-0.131 0.1z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["euro"]},"attrs":[{}],"properties":{"order":7220,"id":317,"name":"euro","prevSize":32,"code":59903},"setIdx":0,"setId":0,"iconIdx":255},{"icon":{"paths":["M938.667 295.253v184.32c0.023 1.042 0.036 2.271 0.036 3.502 0 92.319-73.3 167.517-164.876 170.57l-0.28 0.007h-227.413v-285.44c-0.201-17.52-14.45-31.645-31.998-31.645-0.751 0-1.497 0.026-2.235 0.077l0.1-0.006c-0.13-0.002-0.284-0.003-0.438-0.003-17.61 0-31.941 14.037-32.415 31.533l-0.001 0.044v285.44h-225.707c-92.044-2.829-165.582-78.122-165.582-170.591 0-1.227 0.013-2.451 0.039-3.672l-0.003 0.182v-184.32c-0.023-1.039-0.036-2.262-0.036-3.489 0-92.469 73.539-167.762 165.323-170.585l0.26-0.006h520.533c91.667 3.291 164.73 78.395 164.73 170.563 0 1.237-0.013 2.47-0.039 3.7l0.003-0.184zM480.853 786.347l-70.827-69.12c-5.969-5.734-14.092-9.265-23.040-9.265s-17.070 3.531-23.051 9.276l0.011-0.011c-5.976 5.618-9.697 13.574-9.697 22.4s3.722 16.782 9.681 22.385l0.016 0.015 128 123.307c5.902 5.708 13.954 9.225 22.827 9.225s16.924-3.517 22.836-9.234l-0.009 0.009 128-123.307c5.797-5.727 9.387-13.676 9.387-22.464 0-0.052-0-0.105-0-0.157l0 0.008c0.002-0.132 0.003-0.288 0.003-0.444 0-8.562-3.603-16.283-9.375-21.728l-0.015-0.014c-5.969-5.734-14.092-9.265-23.040-9.265s-17.070 3.531-23.051 9.276l0.011-0.011-73.387 69.12v-132.693h-65.28z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["exit-down"]},"attrs":[{}],"properties":{"order":7221,"id":316,"name":"exit-down","prevSize":32,"code":59904},"setIdx":0,"setId":0,"iconIdx":256},{"icon":{"paths":["M899.84 256v516.267c-4.646 90.534-79.184 162.181-170.456 162.181-1.424 0-2.845-0.017-4.261-0.052l0.21 0.004h-185.173c-1.179 0.029-2.566 0.046-3.958 0.046-92.022 0-167.034-72.83-170.539-163.994l-0.010-0.319v-225.707h286.72c17.909 0 32.427-14.518 32.427-32.427s-14.518-32.427-32.427-32.427h-286.72v-223.573c2.359-92.422 77.842-166.444 170.614-166.444 1.369 0 2.733 0.016 4.094 0.048l-0.202-0.004h185.173c1.159-0.028 2.524-0.044 3.892-0.044 92.772 0 168.255 74.022 170.61 166.226l0.004 0.218zM232.533 479.573l69.547-70.4c5.708-5.902 9.225-13.954 9.225-22.827s-3.517-16.924-9.234-22.836l0.009 0.009c-5.599-5.144-13.098-8.298-21.333-8.298s-15.735 3.153-21.356 8.318l0.023-0.021-123.733 128c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 123.733 128c5.727 5.797 13.676 9.387 22.464 9.387 0.052 0 0.105-0 0.157-0l-0.008 0c0.132 0.002 0.288 0.003 0.444 0.003 8.562 0 16.283-3.603 21.728-9.375l0.014-0.015c5.708-5.902 9.225-13.954 9.225-22.827s-3.517-16.924-9.234-22.836l0.009 0.009-71.68-74.667h133.12v-64.853z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["exit-left"]},"attrs":[{}],"properties":{"order":7222,"id":315,"name":"exit-left","prevSize":32,"code":59905},"setIdx":0,"setId":0,"iconIdx":257},{"icon":{"paths":["M570.027 497.067l253.44-253.013c17.092 25.15 27.294 56.182 27.307 89.597l0 0.003v442.453c0 0 0 0 0 0.001 0 88.216-71.391 159.757-159.55 159.999l-0.023 0h-442.453c-88.366 0-160-71.634-160-160v0-442.453c-0-0-0-0-0-0.001 0-88.13 71.443-159.573 159.573-159.573 0.15 0 0.3 0 0.45 0.001l-0.023-0h442.453c31.707 0.117 61.202 9.488 85.952 25.55l-0.619-0.377-251.733 252.587c-6.274 5.858-10.185 14.178-10.185 23.412 0 17.673 14.327 32 32 32 9.234 0 17.554-3.911 23.394-10.166l0.017-0.019zM935.253 119.040c0.016-0.382 0.025-0.83 0.025-1.28 0-17.909-14.518-32.427-32.427-32.427-0.009 0-0.018 0-0.027 0l-177.492-0c-8.801 0.197-16.738 3.738-22.624 9.397l0.011-0.011c-6.471 5.948-10.512 14.452-10.512 23.901 0 17.909 14.518 32.427 32.427 32.427 0.246 0 0.491-0.003 0.735-0.008l-0.036 0.001h99.84l-48.213 48.213c18.356 11.4 33.794 25.614 46.194 42.229l0.312 0.437 47.36-47.36v104.107c1.926 16.239 15.613 28.713 32.213 28.713s30.287-12.474 32.198-28.56l0.015-0.153z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["exit-right-corner"]},"attrs":[{}],"properties":{"order":7223,"id":314,"name":"exit-right-corner","prevSize":32,"code":59906},"setIdx":0,"setId":0,"iconIdx":258},{"icon":{"paths":["M369.067 545.28h286.293v226.133c-3.743 91.293-78.66 163.886-170.532 163.886-1.398 0-2.791-0.017-4.181-0.050l0.206 0.004h-185.173c-1.183 0.029-2.577 0.046-3.975 0.046-91.872 0-166.789-72.593-170.521-163.548l-0.011-0.338v-515.413c2.824-92.048 78.119-165.592 170.591-165.592 1.377 0 2.75 0.016 4.119 0.049l-0.203-0.004h185.173c1.166-0.029 2.539-0.045 3.915-0.045 92.472 0 167.767 73.544 170.585 165.332l0.006 0.259v226.133h-286.293c-16.239 1.926-28.713 15.613-28.713 32.213s12.474 30.287 28.56 32.198l0.153 0.015zM887.893 490.24l-124.16-125.44c-5.518-5.331-13.042-8.616-21.333-8.616s-15.816 3.285-21.342 8.624l0.009-0.008c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 69.547 70.827h-135.253v64.427h133.12l-69.547 70.827c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.727 5.797 13.676 9.387 22.464 9.387 0.052 0 0.105-0 0.157-0l-0.008 0c0.132 0.002 0.288 0.003 0.444 0.003 8.562 0 16.283-3.603 21.728-9.375l0.014-0.015 124.16-125.44c5.708-5.902 9.225-13.954 9.225-22.827s-3.517-16.924-9.234-22.836l0.009 0.009z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["exit-right"]},"attrs":[{}],"properties":{"order":7224,"id":313,"name":"exit-right","prevSize":32,"code":59907},"setIdx":0,"setId":0,"iconIdx":259},{"icon":{"paths":["M935.68 540.16v182.613c0 0.023 0 0.050 0 0.077 0 92.456-73.519 167.741-165.285 170.583l-0.261 0.006h-520.533c-92.028-2.849-165.547-78.134-165.547-170.59 0-0.027 0-0.054 0-0.081l-0 0.004v-182.613c-0-0.023-0-0.050-0-0.077 0-92.456 73.519-167.741 165.285-170.583l0.261-0.006h227.84v282.88c0 17.909 14.518 32.427 32.427 32.427s32.427-14.518 32.427-32.427v0-284.587h227.84c92.032 2.844 165.556 78.131 165.556 170.59 0 0.627-0.003 1.253-0.010 1.879l0.001-0.095zM542.293 235.947l71.253 68.693c5.969 5.734 14.092 9.265 23.040 9.265s17.070-3.531 23.051-9.276l-0.011 0.011c5.733-5.663 9.308-13.5 9.387-22.172l0-0.015c-0.176-8.669-3.727-16.477-9.389-22.189l0.002 0.002-128-122.453c-6.049-5.549-14.148-8.949-23.040-8.949s-16.991 3.4-23.065 8.972l0.025-0.023-128 122.453c-5.236 5.559-8.453 13.071-8.453 21.333s3.217 15.774 8.468 21.349l-0.015-0.016c5.969 5.734 14.092 9.265 23.040 9.265s17.070-3.531 23.051-9.276l-0.011 0.011 71.253-68.693v133.547h64.853z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["exit-up"]},"attrs":[{}],"properties":{"order":7225,"id":312,"name":"exit-up","prevSize":32,"code":59908},"setIdx":0,"setId":0,"iconIdx":260},{"icon":{"paths":["M706.133 85.333h-388.267c-93.335 1.204-168.533 77.147-168.533 170.653 0 0.005 0 0.009 0 0.014l-0-0.001v303.36c-0 0.001-0 0.001-0 0.002 0 26.006 20.961 47.117 46.91 47.358l0.023 0h631.467c25.972-0.241 46.933-21.352 46.933-47.358 0-0.001-0-0.001-0-0.002l0 0v-303.36c0-0.004 0-0.009 0-0.013 0-93.507-75.199-169.449-168.42-170.652l-0.113-0.001zM327.253 523.52h-52.053c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.053c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM327.253 416.853h-52.053c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.053c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM327.253 310.187h-52.053c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h52.053c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM827.733 672h-631.467c-25.921 0-46.933 21.013-46.933 46.933v0 56.747c0 90.015 72.972 162.987 162.987 162.987h399.36c90.015 0 162.987-72.972 162.987-162.987v0-56.747c0-25.921-21.013-46.933-46.933-46.933v0zM704 842.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["external-drive"]},"attrs":[{}],"properties":{"order":7226,"id":311,"name":"external-drive","prevSize":32,"code":59909},"setIdx":0,"setId":0,"iconIdx":261},{"icon":{"paths":["M924.16 101.547c-5.902-5.708-13.954-9.225-22.827-9.225s-16.924 3.517-22.836 9.234l0.009-0.009-144.213 143.787c-62.461-42.809-138.98-69.483-221.536-72.511l-0.757-0.022c-201.813 0-426.667 197.12-426.667 365.227 0 75.52 50.347 160.853 124.16 229.973l-109.227 108.8c-5.807 5.858-9.396 13.923-9.396 22.827s3.588 16.969 9.398 22.829l-0.002-0.002c5.858 5.807 13.923 9.396 22.827 9.396s16.969-3.588 22.829-9.398l-0.002 0.002 777.813-775.253c5.936-5.879 9.611-14.031 9.611-23.042 0-8.797-3.503-16.777-9.191-22.619l0.007 0.007zM326.827 538.027c-0.009-0.66-0.013-1.44-0.013-2.221 0-101.326 82.141-183.467 183.467-183.467 33.954 0 65.754 9.224 93.030 25.302l-0.857-0.467-47.787 49.493c-12.612-5.261-27.254-8.382-42.607-8.533l-0.059-0c-67.060 0.242-121.358 54.54-121.6 121.577l-0 0.023c0.17 15.38 3.13 30.020 8.395 43.506l-0.288-0.839-47.787 44.8c-15.091-25.568-24.094-56.296-24.32-89.108l-0-0.065zM939.093 538.027c0 170.667-213.333 365.227-426.667 365.227-73.939-2.271-142.385-23.875-201.027-59.893l1.773 1.013 133.973-133.12c19.741 7.873 42.62 12.439 66.565 12.439 101.797 0 184.32-82.523 184.32-184.32 0-0.473-0.002-0.946-0.005-1.418l0 0.073c-0.157-23.222-4.685-45.343-12.802-65.64l0.428 1.214 148.48-148.053c58.362 53.674 97.041 127.956 104.444 211.233l0.089 1.247zM499.627 658.347l132.693-131.84c0.1 1.721 0.157 3.734 0.157 5.76s-0.057 4.039-0.169 6.037l0.012-0.277c0 0.002 0 0.004 0 0.007 0 66.708-53.715 120.87-120.251 121.593l-0.069 0.001c-4.623-0.245-8.881-0.701-13.068-1.372l0.695 0.092z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eye-slash"]},"attrs":[{}],"properties":{"order":7227,"id":310,"name":"eye-slash","prevSize":32,"code":59910},"setIdx":0,"setId":0,"iconIdx":262},{"icon":{"paths":["M633.6 512c0 67.158-54.442 121.6-121.6 121.6s-121.6-54.442-121.6-121.6c0-67.158 54.442-121.6 121.6-121.6v0c67.060 0.242 121.358 54.54 121.6 121.577l0 0.023zM938.667 512c0 170.667-213.333 365.227-426.667 365.227-201.813 0-426.667-204.8-426.667-365.227 0-168.107 224.853-365.227 426.667-365.227s426.667 202.24 426.667 365.227zM697.6 512c0-102.504-83.096-185.6-185.6-185.6s-185.6 83.096-185.6 185.6c0 102.504 83.096 185.6 185.6 185.6v0c102.504 0 185.6-83.096 185.6-185.6v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["eye"]},"attrs":[{}],"properties":{"order":7228,"id":309,"name":"eye","prevSize":32,"code":59911},"setIdx":0,"setId":0,"iconIdx":263},{"icon":{"paths":["M938.667 337.493c-2.163-139.724-115.937-252.16-255.971-252.16-0.010 0-0.020 0-0.031 0l-346.452-0c-139.165 2.872-250.88 116.364-250.88 255.949 0 0.018 0 0.036 0 0.054l-0-0.003v344.747c1.925 139.909 115.793 252.587 255.977 252.587 0.008 0 0.016-0 0.024-0l74.239 0v-298.667h-78.933c-11.782 0-21.333-9.551-21.333-21.333v0-84.48c0-11.782 9.551-21.333 21.333-21.333v0h78.933v-128c0.242-82.848 67.338-149.945 150.163-150.187l0.023-0h121.6c11.782 0 21.333 9.551 21.333 21.333v0 85.333c0 11.782-9.551 21.333-21.333 21.333v0h-71.253c-27.806 0-50.347 22.541-50.347 50.347v0 98.987h116.907c0.096-0.002 0.208-0.002 0.321-0.002 11.782 0 21.333 9.551 21.333 21.333 0 2.925-0.589 5.712-1.654 8.25l0.052-0.141-32.853 82.347c-3.171 8.056-10.883 13.654-19.903 13.654-0.053 0-0.106-0-0.158-0.001l0.008 0h-85.333v298.667h122.027c140.095-1.687 253.013-115.648 253.013-255.983 0-0.006-0-0.012-0-0.018l0 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["facebook"]},"attrs":[{}],"properties":{"order":7229,"id":308,"name":"facebook","prevSize":32,"code":59912},"setIdx":0,"setId":0,"iconIdx":264},{"icon":{"paths":["M384 307.2c-51.004 33.211-86.278 86.911-94.186 149.152l-0.107 1.035c-0.251 5.928-5.117 10.639-11.084 10.639-5.053 0-9.318-3.379-10.657-8.001l-0.019-0.078c-26.453-88.32-44.8-241.92 136.96-256 41.182-29.525 92.593-47.213 148.134-47.213 25.358 0 49.855 3.687 72.984 10.554l-1.811-0.462c89.998 32.72 153.118 117.515 153.118 217.052 0 40.742-10.575 79.015-29.13 112.222l0.599-1.167c-1.953 3.744-5.807 6.256-10.247 6.256-5.248 0-9.676-3.509-11.066-8.308l-0.020-0.081c-10.24-37.547-42.667-96-148.48-88.747-2.327 0.085-5.061 0.133-7.806 0.133-77.022 0-145.168-38.005-186.706-96.286l-0.474-0.701zM778.24 508.587c-7.019 14.507-21.626 24.336-38.528 24.336-0.405 0-0.809-0.006-1.211-0.017l0.059 0.001c-0.37 0.012-0.806 0.018-1.243 0.018-19.935 0-36.677-13.671-41.361-32.15l-0.063-0.295c-10.685-38.395-45.339-66.1-86.463-66.1-4.266 0-8.463 0.298-12.57 0.875l0.473-0.054h-32.853c-73.78-1.563-139.663-34.104-185.388-85.093l-0.212-0.24c-30.137 28.418-50.228 67.201-54.554 110.626l-0.059 0.734c-1.823 22.049-20.167 39.254-42.53 39.254-0.048 0-0.096-0-0.144-0l0.007 0c-0.47 0.019-1.022 0.029-1.576 0.029-19.473 0-35.9-13.046-41.016-30.875l-0.074-0.301c0-2.56 0-5.12 0-7.253-8.958 13.754-14.285 30.586-14.285 48.662 0 3.751 0.229 7.449 0.675 11.080l-0.044-0.435c3.84 39.68 29.013 69.547 55.893 66.987 3.505-0.501 6.667-1.396 9.638-2.655l-0.252 0.095v25.173c-0.014 0.751-0.021 1.638-0.021 2.526 0 44.519 19.593 84.461 50.625 111.675l0.169 0.146 103.68 85.333c19.099 16.191 44.024 26.035 71.248 26.035 25.306 0 48.625-8.506 67.254-22.815l-0.262 0.193 96.853-72.107c34.19-27.118 55.922-68.659 55.922-115.276 0-1.024-0.010-2.045-0.031-3.063l0.002 0.152v-37.973c2.838 1.153 6.147 2.049 9.587 2.534l0.226 0.026c26.88 2.56 51.627-27.307 55.467-66.987 0.342-2.969 0.538-6.408 0.538-9.894 0-11.786-2.233-23.050-6.299-33.393l0.215 0.62c-5.619 12.070-10.883 21.861-16.612 31.339l0.826-1.472zM969.813 881.92v-141.653c0-18.144-14.709-32.853-32.853-32.853s-32.853 14.709-32.853 32.853v-0 141.653c0 10.133-8.214 18.347-18.347 18.347v0h-128c-18.144 0-32.853 14.709-32.853 32.853s14.709 32.853 32.853 32.853h128c0.13 0.001 0.283 0.001 0.436 0.001 46.679 0 84.603-37.479 85.323-83.987l0.001-0.068zM298.667 933.12c-0.237-18.048-14.805-32.616-32.831-32.853l-0.023-0h-128c-10.133 0-18.347-8.214-18.347-18.347v0-141.653c0-18.144-14.709-32.853-32.853-32.853s-32.853 14.709-32.853 32.853v0 141.653c0 47.128 38.205 85.333 85.333 85.333v0h128c17.597-0.693 31.599-15.126 31.599-32.829 0-0.459-0.009-0.915-0.028-1.369l0.002 0.065zM971.52 280.32v-141.653c0-47.128-38.205-85.333-85.333-85.333v0h-128c-18.144 0-32.853 14.709-32.853 32.853s14.709 32.853 32.853 32.853v0h128c10.133-0 18.347 8.214 18.347 18.347v142.933c0 18.144 14.709 32.853 32.853 32.853s32.853-14.709 32.853-32.853v-0zM122.453 280.32v-141.653c-0-10.133 8.214-18.347 18.347-18.347h128c18.144 0 32.853-14.709 32.853-32.853s-14.709-32.853-32.853-32.853v0h-128c-47.128 0-85.333 38.205-85.333 85.333v0 140.373c0 18.144 14.709 32.853 32.853 32.853s32.853-14.709 32.853-32.853v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["faceid"]},"attrs":[{}],"properties":{"order":7230,"id":307,"name":"faceid","prevSize":32,"code":59913},"setIdx":0,"setId":0,"iconIdx":265},{"icon":{"paths":["M682.667 608.853c1.88-10.703 3.11-23.219 3.408-35.966l0.006-0.301c-0.32-25.876-4.667-50.628-12.441-73.807l0.495 1.701 125.867-125.013c19.382-19.382 31.37-46.158 31.37-75.733 0-59.151-47.952-107.103-107.103-107.103-29.576 0-56.351 11.988-75.733 31.37v0l-151.467 151.467c-19.384 19.381-31.374 46.157-31.374 75.733s11.99 56.353 31.374 75.733l0 0c11.717 11.668 18.967 27.814 18.967 45.653s-7.25 33.985-18.965 45.651l-0.002 0.002-7.253 6.827c-65.586-31.477-110.064-97.364-110.064-173.639 0-25.188 4.85-49.243 13.667-71.282l-0.457 1.294c0.051-0.829 0.081-1.798 0.081-2.773s-0.029-1.944-0.087-2.906l0.006 0.132c10.75-23.582 25.107-43.675 42.606-60.528l0.061-0.059 151.467-151.467c34.251-31.402 80.094-50.645 130.432-50.645 106.746 0 193.28 86.534 193.28 193.28 0 50.338-19.243 96.182-50.775 130.575l0.13-0.144-151.467 151.467c-7.786 7.248-16.285 13.985-25.294 20.018l-0.733 0.462zM314.027 438.187l-150.613 149.333c-34.978 34.925-56.616 83.202-56.616 136.533 0 106.556 86.381 192.937 192.937 192.937 53.225 0 101.416-21.552 136.322-56.406l-0.002 0.002 151.893-151.467c7.423-7.701 14.292-16.060 20.47-24.937l0.437-0.663c10.221-14.33 18.632-30.884 24.386-48.634l0.36-1.286c6.719-18.153 10.625-39.121 10.667-60.995l0-0.019c0-0.145 0.001-0.316 0.001-0.488 0-13.57-1.398-26.813-4.059-39.593l0.218 1.254c-3.647-16.154-8.933-30.393-15.83-43.661l0.47 0.994c-9.737-20.747-22.181-38.513-37.152-53.793l0.032 0.033c-15.275-15.032-33.030-27.604-52.584-37.035l-1.176-0.512-7.253 7.253c-11.717 11.668-18.967 27.814-18.967 45.653s7.25 33.985 18.965 45.651l0.002 0.002c15.823 15.549 26.632 36.155 29.806 59.197l0.061 0.537c0.889 5.182 1.397 11.151 1.397 17.239 0 25.947-9.228 49.739-24.58 68.273l0.143-0.178c-2.56 2.56-4.267 5.547-6.827 8.107l-26.453 26.453-125.013 122.027c-19.382 19.382-46.158 31.37-75.733 31.37-59.151 0-107.103-47.952-107.103-107.103 0-29.576 11.988-56.351 31.37-75.733v0l124.587-124.587c-1.709-4.968-3.333-11.13-4.548-17.439l-0.145-0.908c0-4.693-2.133-9.387-2.987-14.080-1.909-9.854-3.14-21.327-3.409-33.037l-0.004-0.243c-0.102-1.721-0.16-3.734-0.16-5.76s0.058-4.039 0.173-6.037l-0.013 0.277c0.452-11.459 1.829-22.305 4.064-32.835l-0.224 1.261c-9.941 6.4-18.594 13.29-26.497 20.949l0.044-0.042z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["fasten"]},"attrs":[{}],"properties":{"order":7231,"id":306,"name":"fasten","prevSize":32,"code":59914},"setIdx":0,"setId":0,"iconIdx":266},{"icon":{"paths":["M938.667 650.667v213.333c0 41.237-33.429 74.667-74.667 74.667v0h-704c-41.237 0-74.667-33.429-74.667-74.667v0-213.333c0-41.237 33.429-74.667 74.667-74.667v0h704c41.237 0 74.667 33.429 74.667 74.667v0zM565.333 85.333h-405.333c-41.237 0-74.667 33.429-74.667 74.667v0 213.333c0 41.237 33.429 74.667 74.667 74.667v0h405.333c41.237 0 74.667-33.429 74.667-74.667v0-213.333c0-41.237-33.429-74.667-74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["fat-rows"]},"attrs":[{}],"properties":{"order":7232,"id":305,"name":"fat-rows","prevSize":32,"code":59915},"setIdx":0,"setId":0,"iconIdx":267},{"icon":{"paths":["M846.080 474.027l-296.107-296.107 60.587-60.16c14.766-14.86 35.216-24.058 57.813-24.058s43.047 9.198 57.809 24.054l0.004 0.004 180.053 180.907c14.86 14.766 24.058 35.216 24.058 57.813s-9.198 43.047-24.054 57.809l-0.004 0.004zM800.427 519.253l-302.080-302.080c-22.357 13.404-48.229 24.242-75.663 31.149l-1.991 0.425c-128.848 32.156-222.794 146.884-222.794 283.555 0 2.313 0.027 4.62 0.080 6.92l-0.006-0.341c0.031 1.482 0.049 3.229 0.049 4.98 0 69.691-28.224 132.79-73.865 178.49l0.003-0.003-18.347 18.347c-7.295 7.642-11.784 18.017-11.784 29.44s4.489 21.798 11.8 29.457l-0.016-0.017 29.44 29.44 6.4-5.973 251.733-251.733c-4.539-11.28-7.173-24.36-7.173-38.054 0-57.732 46.801-104.533 104.533-104.533s104.533 46.801 104.533 104.533c0 57.732-46.801 104.533-104.533 104.533-13.694 0-26.773-2.633-38.759-7.421l0.705 0.249-249.173 249.173-8.96 8.533 29.867 29.867c7.642 7.295 18.017 11.784 29.44 11.784s21.798-4.489 29.457-11.8l-0.017 0.016 18.347-18.347c45.697-45.638 108.796-73.862 178.487-73.862 1.751 0 3.498 0.018 5.24 0.053l-0.26-0.004c1.958 0.047 4.265 0.074 6.579 0.074 136.67 0 251.398-93.946 283.129-220.783l0.426-2.011c7.332-29.424 18.169-55.296 32.303-78.972l-0.73 1.319z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["feather"]},"attrs":[{}],"properties":{"order":7233,"id":304,"name":"feather","prevSize":32,"code":59916},"setIdx":0,"setId":0,"iconIdx":268},{"icon":{"paths":["M369.92 369.92h142.080v284.16h-142.080c-78.469 0-142.080-63.611-142.080-142.080s63.611-142.080 142.080-142.080v0zM654.080 369.92c-78.469 0-142.080 63.611-142.080 142.080s63.611 142.080 142.080 142.080c78.469 0 142.080-63.611 142.080-142.080h-0c0-78.469-63.611-142.080-142.080-142.080h-0zM227.413 796.587c0 78.469 63.611 142.080 142.080 142.080s142.080-63.611 142.080-142.080v0-142.507h-141.653c-0-0-0-0-0.001-0-78.469 0-142.080 63.611-142.080 142.080 0 0.15 0 0.3 0.001 0.45l-0-0.023zM252.16 306.773c10.273 15.338 23.062 28.127 37.907 38.089l0.493 0.311c14.479 9.903 31.511 17.317 49.853 21.172l0.92 0.162c8.268 1.901 17.762 2.991 27.51 2.991 0.379 0 0.757-0.002 1.135-0.005l-0.058 0h284.16c78.469 0 142.080-63.611 142.080-142.080s-63.611-142.080-142.080-142.080v0h-284.16c-0.32-0.003-0.698-0.005-1.077-0.005-9.748 0-19.242 1.090-28.366 3.154l0.856-0.163c-55.656 11.755-98.752 54.85-110.342 109.578l-0.165 0.928c-1.9 8.593-2.988 18.463-2.988 28.587s1.088 19.994 3.154 29.499l-0.166-0.912c4.016 19.262 11.43 36.294 21.647 51.26l-0.314-0.487z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["figma"]},"attrs":[{}],"properties":{"order":7234,"id":303,"name":"figma","prevSize":32,"code":59917},"setIdx":0,"setId":0,"iconIdx":269},{"icon":{"paths":["M967.68 417.28h-199.68c-77.39-2.577-139.147-65.932-139.147-143.712 0-1.377 0.019-2.749 0.058-4.116l-0.004 0.201c-0.109-0.896-0.172-1.934-0.172-2.987s0.062-2.090 0.184-3.11l-0.012 0.123v-204.373zM967.68 482.133h-199.68c-111.894-3.941-201.106-95.598-201.106-208.092 0-2.744 0.053-5.475 0.158-8.193l-0.012 0.391v-207.787h-209.067c-131.569 1.436-237.672 108.427-237.672 240.2 0 1.055 0.007 2.108 0.020 3.16l-0.002-0.16v278.187c29.717-15.863 64.996-25.18 102.45-25.18 0.583 0 1.164 0.002 1.746 0.007l-0.089-0.001c128.789 1.677 232.547 106.472 232.547 235.501 0 0.907-0.005 1.812-0.015 2.717l0.001-0.138c0.001 0.204 0.001 0.445 0.001 0.686 0 42.689-11.235 82.754-30.91 117.399l0.616-1.179h304.64c131.516-1.2 237.667-108.092 237.667-239.777 0-0.903-0.005-1.806-0.015-2.707l0.001 0.138zM224.427 619.093c95.67 0 173.227 77.556 173.227 173.227s-77.556 173.227-173.227 173.227v0c-95.67 0-173.227-77.556-173.227-173.227s77.556-173.227 173.227-173.227v-0zM139.093 789.76l52.053 68.267c4.844 7.553 13.197 12.487 22.702 12.487 0.87 0 1.731-0.041 2.58-0.122l-0.108 0.008c10.077-0.036 19.023-4.851 24.691-12.297l0.056-0.076 72.533-94.72c4.111-5.426 6.586-12.29 6.586-19.732 0-10.261-4.704-19.424-12.074-25.448l-0.059-0.047c-5.044-3.774-11.406-6.043-18.297-6.043-9.896 0-18.699 4.679-24.317 11.946l-0.053 0.071-52.053 62.72-26.88-35.413c-5.833-7.004-14.556-11.429-24.313-11.429-6.886 0-13.258 2.205-18.447 5.947l0.093-0.064c-7.927 6.144-12.981 15.668-12.981 26.372 0 7.231 2.306 13.922 6.222 19.381l-0.068-0.1z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-added"]},"attrs":[{}],"properties":{"order":7235,"id":302,"name":"file-added","prevSize":32,"code":59918},"setIdx":0,"setId":0,"iconIdx":270},{"icon":{"paths":["M974.507 404.48h-201.387c-77.776-2.1-140.025-65.649-140.025-143.737 0-1.668 0.028-3.329 0.085-4.983l-0.006 0.241v-210.347zM974.507 469.76h-201.387c-113.35-3.312-203.976-95.99-203.976-209.836 0-1.23 0.011-2.457 0.032-3.682l-0.002 0.184v-211.627h-209.067c-132.691 1.204-239.793 109.050-239.793 241.911 0 0.603 0.002 1.206 0.007 1.808l-0.001-0.092v300.8c29.198-14.194 63.516-22.492 99.771-22.492 93.913 0 174.823 55.673 211.527 135.815l0.595 1.45c14.172 29.87 22.446 64.899 22.446 101.862 0 33.607-6.841 65.616-19.205 94.711l0.599-1.586h298.667c132.692-1.202 239.796-109.049 239.796-241.911 0-0.753-0.003-1.506-0.010-2.258l0.001 0.115zM390.827 805.12c0.022 1.016 0.034 2.213 0.034 3.413 0 94.257-76.41 170.667-170.667 170.667-0.012 0-0.024-0-0.036-0l0.002 0c-92.362-4.718-165.464-80.755-165.464-173.867s73.102-169.149 165.045-173.85l0.419-0.017c0.008-0 0.017-0 0.026-0 94.257 0 170.667 76.41 170.667 170.667 0 1.050-0.009 2.098-0.028 3.144l0.002-0.157zM266.667 805.12l22.613-20.48c7.682-6.229 12.551-15.666 12.551-26.241 0-7.273-2.304-14.009-6.221-19.516l0.070 0.104c-5.831-7.484-14.844-12.252-24.971-12.252-6.605 0-12.735 2.028-17.804 5.495l0.108-0.070c-1.642 1.217-3.050 2.625-4.228 4.213l-0.038 0.054-24.747 23.040-23.893-23.893c-5.559-5.236-13.071-8.453-21.333-8.453s-15.774 3.217-21.349 8.468l0.016-0.015c-5.708 5.902-9.225 13.954-9.225 22.827s3.517 16.924 9.234 22.836l-0.009-0.009 21.76 21.76-22.613 20.907c-5.734 5.969-9.265 14.092-9.265 23.040s3.531 17.070 9.276 23.051l-0.011-0.011c5.74 6.552 14.123 10.667 23.467 10.667v0c8.406-0.044 16.048-3.279 21.783-8.554l-0.023 0.021 24.747-23.040 23.467 23.893c5.741 5.887 13.751 9.539 22.613 9.539s16.872-3.652 22.607-9.532l0.006-0.007c5.734-5.969 9.265-14.092 9.265-23.040s-3.531-17.070-9.276-23.051l0.011 0.011z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-deleted"]},"attrs":[{}],"properties":{"order":7236,"id":301,"name":"file-deleted","prevSize":32,"code":59919},"setIdx":0,"setId":0,"iconIdx":271},{"icon":{"paths":["M944.213 445.44h-203.947c-79.2-1.196-142.944-65.68-142.944-145.051 0-0.606 0.004-1.21 0.011-1.814l-0.001 0.092c-0.094-0.896-0.148-1.935-0.148-2.987s0.054-2.091 0.158-3.115l-0.011 0.129v-204.8zM740.267 512h-5.973c-111.978-5.26-200.773-97.325-200.773-210.129 0-3.528 0.087-7.036 0.259-10.522l-0.019 0.491v-206.507h-213.333c-133.162 1.204-240.646 109.432-240.646 242.764 0 0.603 0.002 1.206 0.007 1.809l-0.001-0.093v364.373c-0.004 0.508-0.006 1.109-0.006 1.71 0 133.632 107.968 242.047 241.43 242.77l0.069 0h380.16c134.080 0 242.773-108.693 242.773-242.773l-0-0v-183.893zM516.693 694.613l-121.6 103.68s-3.413 0-5.12 2.987h-3.84c-3.38 1.587-7.336 2.527-11.509 2.56l-0.011 0c-0.106 0.002-0.231 0.002-0.356 0.002-4.062 0-7.902-0.946-11.314-2.629l0.15 0.067h-3.84c-1.796-0.641-3.35-1.508-4.73-2.588l0.037 0.028-130.56-103.253c-7.366-5.993-12.034-15.057-12.034-25.212 0-7.584 2.604-14.56 6.966-20.083l-0.052 0.068c5.899-6.765 14.532-11.015 24.159-11.015 6.939 0 13.362 2.209 18.605 5.961l-0.097-0.066 79.787 62.72v-217.6c0-17.673 14.327-32 32-32s32 14.327 32 32v0 213.333l68.267-58.453c5.663-4.987 13.143-8.031 21.333-8.031 17.867 0 32.351 14.484 32.351 32.351 0 9.676-4.248 18.361-10.982 24.289l-0.036 0.031z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-down"]},"attrs":[{}],"properties":{"order":7237,"id":300,"name":"file-down","prevSize":32,"code":59920},"setIdx":0,"setId":0,"iconIdx":272},{"icon":{"paths":["M932.267 445.013h-198.4c-76.198-3.726-136.568-66.412-136.568-143.199 0-1.107 0.013-2.211 0.037-3.311l-0.003 0.164c0.101-0.896 0.159-1.935 0.159-2.987s-0.058-2.091-0.17-3.113l0.011 0.126v-207.36zM733.867 512h-5.547c-109.603-7.193-195.78-97.855-195.78-208.644 0-4.352 0.133-8.672 0.395-12.958l-0.029 0.588v-205.653h-206.080c-130.459 2.852-235.125 109.282-235.125 240.159 0 1.369 0.011 2.736 0.034 4.099l-0.003-0.205v365.227c-0.020 1.158-0.032 2.525-0.032 3.894 0 130.877 104.666 237.308 234.86 240.155l0.265 0.005h369.067c131.018-2.144 236.405-108.856 236.405-240.183 0-1.361-0.011-2.719-0.034-4.074l0.003 0.204v-182.613zM516.693 657.92h-218.027l62.293 79.787c4.436 5.5 7.121 12.574 7.121 20.276 0 10.248-4.754 19.386-12.177 25.328l-0.064 0.050c-5.145 4.506-11.928 7.255-19.353 7.255-0.096 0-0.193-0-0.289-0.001l0.015 0c-0.032 0-0.070 0-0.109 0-10.181 0-19.237-4.819-25.010-12.3l-0.054-0.073-102.827-132.693-2.56-5.547-2.133-4.267c-0.212-1.474-0.333-3.176-0.333-4.907s0.121-3.433 0.356-5.099l-0.022 0.192s0 0 0 0v0c-0-0.036-0-0.079-0-0.122 0-4.286 0.943-8.352 2.634-12.002l-0.073 0.177v-3.413l3.413-5.547 103.68-123.307c5.833-6.99 14.547-11.406 24.293-11.406 7.848 0 15.026 2.863 20.549 7.602l-0.042-0.035c6.92 6.055 11.266 14.903 11.266 24.765 0 8.155-2.971 15.616-7.89 21.359l0.037-0.045-58.88 68.693h213.333c16.464 1.94 29.115 15.813 29.115 32.64s-12.651 30.7-28.961 32.625l-0.155 0.015z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-left"]},"attrs":[{}],"properties":{"order":7238,"id":299,"name":"file-left","prevSize":32,"code":59921},"setIdx":0,"setId":0,"iconIdx":273},{"icon":{"paths":["M938.667 445.867h-201.813c-77.66-2.823-139.544-66.46-139.544-144.55 0-0.932 0.009-1.861 0.026-2.789l-0.002 0.139c0.094-0.896 0.148-1.935 0.148-2.987s-0.054-2.091-0.158-3.115l0.011 0.129v-207.36zM938.667 695.040c0.004 0.509 0.006 1.111 0.006 1.713 0 133.011-107.344 240.95-240.128 241.914l-0.091 0.001h-373.333c-132.691-1.204-239.793-109.050-239.793-241.911 0-0.603 0.002-1.206 0.007-1.808l-0.001 0.092v-365.227c-0.009-0.764-0.014-1.666-0.014-2.569 0-132.863 107.106-240.711 239.687-241.91l0.114-0.001h209.493v206.507c-0.156 3.035-0.246 6.589-0.246 10.163 0 111.905 87.385 203.4 197.64 209.969l0.579 0.028h206.080zM544 614.4c-0.595-1.303-1.308-2.427-2.153-3.437l0.019 0.024c-0.867-2.289-2.020-4.265-3.444-6.012l0.031 0.039-103.253-123.307c-5.724-6.333-13.968-10.296-23.138-10.296-7.421 0-14.237 2.596-19.587 6.928l0.058-0.046c-6.895 5.98-11.229 14.753-11.229 24.539 0 8.084 2.958 15.478 7.852 21.156l-0.036-0.042 58.027 69.973h-213.333c-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427h217.173l-64.853 80.213c-4.334 5.514-6.951 12.556-6.951 20.209 0 10.233 4.679 19.374 12.013 25.399l0.057 0.046c5.364 4.502 12.343 7.236 19.96 7.236 10.11 0 19.094-4.817 24.785-12.28l0.056-0.076 103.253-133.12c1.234-1.822 2.13-3.977 2.545-6.299l0.015-0.101c0.822-1.109 1.538-2.374 2.091-3.723l0.042-0.117c1.091-2.879 1.85-6.214 2.125-9.685l0.008-0.128c-0.047-4.296-0.825-8.396-2.215-12.202l0.081 0.255z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-right"]},"attrs":[{}],"properties":{"order":7239,"id":298,"name":"file-right","prevSize":32,"code":59922},"setIdx":0,"setId":0,"iconIdx":274},{"icon":{"paths":["M597.333 290.987v-205.653l113.493 119.467 225.28 239.36h-199.253c-77.762-2.698-139.777-66.386-139.777-144.558 0-3.031 0.093-6.040 0.277-9.024l-0.020 0.409zM938.667 512h-148.907v114.347c-0.243 91.245-74.267 165.12-165.546 165.12-0 0-0-0-0.001-0l-224.427 0c-0 0-0 0-0.001 0-91.279 0-165.303-73.875-165.546-165.097l-0-0.023v-227.84c0-91.429 74.118-165.547 165.547-165.547v0h133.547v-147.627h-209.067c-132.272 1.442-238.943 109.003-238.943 241.48 0 0.755 0.003 1.509 0.010 2.262l-0.001-0.115v366.080c-0.006 0.638-0.010 1.392-0.010 2.147 0 132.476 106.671 240.038 238.807 241.479l0.136 0.001h375.467c132.272-1.442 238.943-109.003 238.943-241.48 0-0.755-0.003-1.509-0.010-2.262l0.001 0.115z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-sheet"]},"attrs":[{}],"properties":{"order":7240,"id":297,"name":"file-sheet","prevSize":32,"code":59923},"setIdx":0,"setId":0,"iconIdx":275},{"icon":{"paths":["M945.067 445.44h-204.373c-79.433-1.199-143.366-65.872-143.366-145.478 0-0.456 0.002-0.911 0.006-1.365l-0.001 0.070c0-2.133 0-4.267 0-5.973v-205.227zM740.693 512h-5.547c-112.204-5.271-201.179-97.522-201.179-210.555 0-3.378 0.079-6.738 0.237-10.077l-0.018 0.472v-206.507h-213.333c-134.316-0-243.2 108.884-243.2 243.2v364.373c-0.009 0.761-0.013 1.661-0.013 2.562 0 134.316 108.884 243.2 243.2 243.2 0.305 0 0.609-0.001 0.914-0.002l-0.047 0h380.587c134.132-0.243 242.773-109.034 242.773-243.2 0-0-0-0-0-0l0 0v-183.467zM522.24 613.12c-5.972 6.772-14.669 11.021-24.358 11.021-7.971 0-15.271-2.876-20.917-7.647l0.048 0.040-68.693-58.453v213.333c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-216.747l-78.507 62.72c-5.401 4.288-12.318 6.879-19.84 6.879-17.702 0-32.052-14.35-32.052-32.052 0-10.18 4.746-19.251 12.146-25.123l0.066-0.051 130.56-103.253c1.343-1.052 2.898-1.919 4.577-2.524l0.116-0.036 3.413-2.133c3.38-1.587 7.336-2.527 11.509-2.56l0.011-0c0.036-0 0.079-0 0.122-0 4.286 0 8.352 0.943 12.002 2.634l-0.177-0.073 3.84 2.133 5.12 2.987 121.173 103.68c7.015 5.91 11.441 14.699 11.441 24.522 0 7.917-2.875 15.163-7.638 20.749l0.037-0.045z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file-up"]},"attrs":[{}],"properties":{"order":7241,"id":296,"name":"file-up","prevSize":32,"code":59924},"setIdx":0,"setId":0,"iconIdx":276},{"icon":{"paths":["M940.8 445.013h-202.24c-78.359-1.665-141.243-65.58-141.243-144.183 0-0.761 0.006-1.52 0.018-2.278l-0.001 0.114v-213.333zM940.8 510.293h-202.24c-113.957-2.85-205.249-95.906-205.249-210.285 0-1.072 0.008-2.142 0.024-3.21l-0.002 0.161v-211.627h-210.347c-133.295 0.723-241.073 108.947-241.073 242.343 0 0.601 0.002 1.202 0.007 1.802l-0.001-0.092v365.227c-0.004 0.508-0.006 1.109-0.006 1.71 0 133.396 107.777 241.62 241.004 242.343l0.069 0h378.027c133.295-0.723 241.073-108.947 241.073-242.343 0-0.601-0.002-1.202-0.007-1.802l0.001 0.092v-182.613z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["file"]},"attrs":[{}],"properties":{"order":7242,"id":295,"name":"file","prevSize":32,"code":59925},"setIdx":0,"setId":0,"iconIdx":277},{"icon":{"paths":["M640 213.333h-235.947c-23.564 0-42.667-19.103-42.667-42.667v0-42.667c0-23.564 19.103-42.667 42.667-42.667v0h235.947c23.564 0 42.667 19.103 42.667 42.667v0 0 42.667c0 23.564-19.103 42.667-42.667 42.667v0zM725.333 163.84v6.827c0 47.128-38.205 85.333-85.333 85.333v0h-235.947c-47.128 0-85.333-38.205-85.333-85.333v0-9.813c-111.095 19.071-194.568 114.675-194.568 229.775 0 0.67 0.003 1.339 0.008 2.008l-0.001-0.102v311.040c-0.012 0.895-0.020 1.953-0.020 3.011 0 126.996 101.992 230.17 228.533 232.080l0.18 0.002h318.293c126.723-1.909 228.719-105.084 228.719-232.082 0-1.209-0.009-2.415-0.028-3.62l0.002 0.182v-310.613c0.009-0.75 0.014-1.636 0.014-2.523 0-108.054-73.297-198.989-172.884-225.795l-1.636-0.375z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["files-tablet"]},"attrs":[{}],"properties":{"order":7243,"id":294,"name":"files-tablet","prevSize":32,"code":59926},"setIdx":0,"setId":0,"iconIdx":278},{"icon":{"paths":["M578.56 853.333c-6.209 12.69-15.189 23.173-26.201 30.977l-0.252 0.17-58.027 42.667c-14.286 11.163-32.502 17.9-52.292 17.9-47.128 0-85.333-38.205-85.333-85.333 0-2.245 0.087-4.47 0.257-6.672l-0.018 0.292v-224c-0.056-44.914-18.128-85.597-47.377-115.217l0.017 0.017-160.427-162.987c-16.863-16.955-27.291-40.325-27.307-66.131l-0-0.003v-106.24c0.483-51.708 42.513-93.44 94.289-93.44 0.001 0 0.003 0 0.004 0l544-0c51.412 0.478 92.962 42.028 93.44 93.394l0 0.046v102.4c0 0.067 0 0.147 0 0.226 0 28.010-12.158 53.181-31.485 70.522l-0.088 0.078-53.76 50.347c-24.711-9.193-53.261-14.512-83.052-14.512-135.258 0-244.907 109.648-244.907 244.907 0 96.564 55.886 180.074 137.078 219.953l1.441 0.639zM902.4 640c0 111.93-90.737 202.667-202.667 202.667s-202.667-90.737-202.667-202.667c0-111.93 90.737-202.667 202.667-202.667v0c111.93 0 202.667 90.737 202.667 202.667v0zM790.613 567.467l-22.613-22.187c-5.318-5.757-12.906-9.35-21.333-9.35s-16.015 3.593-21.315 9.33l-0.018 0.020-114.773 117.333c-3.045 3.033-5.178 6.979-5.955 11.392l-0.019 0.128-6.827 36.267c-0.242 1.289-0.381 2.773-0.381 4.288 0 13.432 10.888 24.32 24.32 24.32 1.644 0 3.25-0.163 4.803-0.474l-0.155 0.026 36.267-7.68c4.541-0.795 8.487-2.929 11.519-5.973l0.001-0.001 115.2-117.333c5.573-5.161 9.051-12.516 9.051-20.684 0-7.536-2.96-14.38-7.781-19.434l0.011 0.011z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-edit"]},"attrs":[{}],"properties":{"order":7244,"id":293,"name":"filter-edit","prevSize":32,"code":59927},"setIdx":0,"setId":0,"iconIdx":279},{"icon":{"paths":["M601.173 853.333c-6.027 11.425-14.384 20.873-24.498 27.994l-0.249 0.166-58.453 42.667c-14.254 11.080-32.404 17.763-52.115 17.763-47.128 0-85.333-38.205-85.333-85.333 0-1.145 0.023-2.285 0.067-3.419l-0.005 0.163v-224c-0.056-44.914-18.128-85.597-47.377-115.217l0.017 0.017-160.427-162.987c-16.619-16.859-26.882-40.022-26.882-65.582 0-0.194 0.001-0.387 0.002-0.581l-0 0.030v-106.24c0.483-51.708 42.513-93.44 94.289-93.44 0.001 0 0.003 0 0.004 0l543.573-0c52.077 0 94.293 42.217 94.293 94.293v0 102.4c0.003 0.294 0.005 0.642 0.005 0.989 0 27.775-12.174 52.707-31.478 69.75l-0.1 0.087-95.573 85.333c-27.873-14.068-60.726-22.396-95.502-22.613l-0.071-0c-120.372 3.668-216.557 102.126-216.557 223.049 0 101.598 67.898 187.338 160.794 214.318l1.577 0.392zM844.8 781.653l-39.253-39.253h-2.56c20.989-29.206 33.565-65.685 33.565-105.102 0-100.148-81.186-181.333-181.333-181.333s-181.333 81.186-181.333 181.333c0 100.148 81.186 181.333 181.333 181.333 39.417 0 75.896-12.576 105.644-33.936l-0.542 0.37v2.56l39.253 39.253c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0c5.532-5.744 8.94-13.567 8.94-22.187s-3.408-16.443-8.95-22.197l0.010 0.010z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-search"]},"attrs":[{}],"properties":{"order":7245,"id":292,"name":"filter-search","prevSize":32,"code":59928},"setIdx":0,"setId":0,"iconIdx":280},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM725.333 377.6c0.015 0.483 0.024 1.051 0.024 1.621 0 16.287-7.075 30.923-18.319 41l-0.052 0.046-105.387 91.733c-19.539 17.801-31.809 43.289-32 71.646l-0 0.034v104.533c0.002 0.165 0.003 0.36 0.003 0.556 0 15.925-7.86 30.014-19.912 38.599l-0.145 0.098-34.133 23.893c-8.095 5.702-18.161 9.113-29.023 9.113-28.041 0-50.773-22.732-50.773-50.773 0-0.354 0.004-0.707 0.011-1.059l-0.001 0.053v-128c0.012-0.561 0.019-1.221 0.019-1.884 0-26.105-10.608-49.733-27.749-66.806l-0.003-0.003-93.44-93.44c-9.763-9.989-15.787-23.669-15.787-38.756 0-0.025 0-0.049 0-0.074l-0 0.004v-61.867c0-30.398 24.642-55.040 55.040-55.040v0h316.587c30.398-0 55.040 24.642 55.040 55.040v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-square"]},"attrs":[{}],"properties":{"order":7246,"id":291,"name":"filter-square","prevSize":32,"code":59929},"setIdx":0,"setId":0,"iconIdx":281},{"icon":{"paths":["M426.667 236.8l-99.413 85.333c-8.665 7.84-14.087 19.127-14.087 31.68 0 0.263 0.002 0.525 0.007 0.786l-0.001-0.039v94.293c0.011 0.305 0.017 0.664 0.017 1.024 0 13.38-8.437 24.79-20.282 29.199l-0.215 0.070-42.667 14.507c-2.177 0.576-4.677 0.908-7.253 0.908-16.259 0-29.44-13.181-29.44-29.44 0-0.019 0-0.038 0-0.057l-0 0.003v-108.8c0.004-0.222 0.007-0.484 0.007-0.747 0-12.553-5.421-23.84-14.050-31.647l-0.037-0.033-99.413-85.333c-14.704-13.396-23.896-32.624-23.896-53.999 0-0.216 0.001-0.432 0.003-0.648l-0 0.033v-32c-0.048-0.925-0.076-2.008-0.076-3.098 0-33.786 26.356-61.417 59.63-63.453l0.179-0.009h256c33.644 1.824 60.234 29.549 60.234 63.486 0 1.081-0.027 2.156-0.080 3.225l0.006-0.15v30.293c0 0.020 0 0.044 0 0.068 0 21.794-9.727 41.317-25.076 54.464l-0.097 0.081zM705.28 133.547h-213.333c0.315 2.752 0.494 5.942 0.494 9.173s-0.18 6.421-0.529 9.559l0.035-0.386v30.293c0 0.069 0 0.15 0 0.232 0 33.747-14.619 64.080-37.87 85.010l-0.103 0.092-97.707 88.747v94.293c0.008 0.398 0.012 0.867 0.012 1.337 0 31.662-20.286 58.585-48.57 68.482l-0.509 0.155-42.667 14.507c-6.364 2.104-13.692 3.348-21.301 3.413l-0.032 0c-0.13 0.001-0.284 0.001-0.438 0.001-39.823 0-72.107-32.283-72.107-72.107 0-0.451 0.004-0.9 0.012-1.349l-0.001 0.067v-109.653l-37.547-33.28c-3.269 15.059-5.141 32.358-5.141 50.094 0 1.139 0.008 2.276 0.023 3.411l-0.002-0.172v321.28c-0 0-0 0.001-0 0.002 0 133.309 107.825 241.433 241.020 241.918l0.046 0h337.493c133.609 0 241.92-108.311 241.92-241.92v0-321.28c0-133.609-108.311-241.92-241.92-241.92l-0 0zM536.747 491.093h190.72c1.1-0.136 2.373-0.213 3.664-0.213 17.437 0 31.573 14.136 31.573 31.573s-14.136 31.573-31.573 31.573c-1.291 0-2.564-0.078-3.815-0.228l0.151 0.015h-189.44c-1.1 0.136-2.373 0.213-3.664 0.213-17.437 0-31.573-14.136-31.573-31.573s14.136-31.573 31.573-31.573c1.291 0 2.564 0.078 3.815 0.228l-0.151-0.015zM740.693 731.307h-356.693c-15.789-1.898-27.909-15.214-27.909-31.36s12.12-29.462 27.758-31.345l0.151-0.015h357.973c1.1-0.136 2.373-0.213 3.664-0.213 17.437 0 31.573 14.136 31.573 31.573s-14.136 31.573-31.573 31.573c-1.291 0-2.564-0.078-3.815-0.228l0.151 0.015z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-tablet"]},"attrs":[{}],"properties":{"order":7247,"id":290,"name":"filter-tablet","prevSize":32,"code":59930},"setIdx":0,"setId":0,"iconIdx":282},{"icon":{"paths":["M582.4 845.653c-6.056 15.032-15.891 27.475-28.348 36.528l-0.238 0.165-58.027 42.667c-14.261 11.098-32.426 17.793-52.154 17.793-47.128 0-85.333-38.205-85.333-85.333 0-1.456 0.036-2.903 0.109-4.341l-0.008 0.202v-224c-0.056-44.914-18.128-85.597-47.377-115.217l0.017 0.017-160.427-162.987c-16.863-16.955-27.291-40.325-27.307-66.131l-0-0.003v-106.24c0.483-51.708 42.513-93.44 94.289-93.44 0.001 0 0.003 0 0.004 0l543.573-0c0.127-0.001 0.277-0.001 0.427-0.001 52.077 0 94.293 42.217 94.293 94.293 0 0-0 0.001-0 0.001l-0 0v102.4c0 0.067 0 0.147 0 0.226 0 28.010-12.158 53.181-31.485 70.522l-0.088 0.078-49.92 42.667c-22.488-7.309-48.364-11.523-75.224-11.523-0.404 0-0.808 0.001-1.211 0.003l0.062-0c-135.448 0.061-245.227 109.877-245.227 245.333 0 93.119 51.879 174.12 128.311 215.678l1.29 0.642zM900.693 629.333c0 111.93-90.737 202.667-202.667 202.667s-202.667-90.737-202.667-202.667c0-111.93 90.737-202.667 202.667-202.667v0c0.127-0 0.277-0 0.427-0 111.694 0 202.24 90.546 202.24 202.24 0 0.15-0 0.3-0 0.45l0-0.023zM799.147 556.8c-5.935-6.347-14.359-10.303-23.707-10.303-8.273 0-15.823 3.098-21.552 8.198l0.033-0.028-88.747 80.64-32.427-29.013c-5.861-6.301-14.198-10.23-23.454-10.23-17.673 0-32 14.327-32 32 0 10.427 4.987 19.69 12.707 25.532l0.080 0.058 53.76 48.213c5.57 5.23 13.068 8.464 21.32 8.533l0.014 0c8.393-0.129 16.010-3.345 21.789-8.559l-0.029 0.026 110.080-99.413c6.471-5.948 10.512-14.452 10.512-23.901 0-8.384-3.181-16.024-8.403-21.78l0.024 0.027z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter-tick"]},"attrs":[{}],"properties":{"order":7248,"id":289,"name":"filter-tick","prevSize":32,"code":59931},"setIdx":0,"setId":0,"iconIdx":283},{"icon":{"paths":["M228.267 407.467l-55.467-56.32c-16.619-16.859-26.882-40.022-26.882-65.582 0-0.194 0.001-0.387 0.002-0.581l-0 0.030v-106.24c0.483-51.708 42.513-93.44 94.289-93.44 0.001 0 0.003 0 0.004 0l186.453-0c11.247 0.084 20.332 9.221 20.332 20.479 0 4.122-1.218 7.96-3.313 11.173l0.048-0.079-183.467 287.147c-3.683 5.797-10.071 9.589-17.344 9.589-5.743 0-10.933-2.364-14.652-6.171l-0.004-0.004zM783.787 85.333h-213.333c-17.913 0.575-33.496 10.042-42.541 24.112l-0.125 0.208-224.427 349.867c-1.993 3.103-3.177 6.891-3.177 10.955 0 5.737 2.359 10.923 6.16 14.641l0.004 0.004 23.040 23.467c32.438 32.99 52.671 78.070 53.332 127.873l0.001 0.127v213.333c-0.051 1.103-0.080 2.397-0.080 3.697 0 47.128 38.205 85.333 85.333 85.333 19.719 0 37.876-6.689 52.326-17.921l-0.193 0.144 58.453-42.667c20.999-14.928 34.539-39.161 34.56-66.557l0-0.003v-176.213c-0.015-0.823-0.023-1.794-0.023-2.767 0-47.767 20.336-90.785 52.822-120.868l0.108-0.098 180.48-160.853c19.404-17.13 31.579-42.062 31.579-69.837 0-0.348-0.002-0.695-0.006-1.042l0 0.053v-101.547c-0.483-51.708-42.513-93.44-94.289-93.44-0.001 0-0.003 0-0.004 0l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["filter"]},"attrs":[{}],"properties":{"order":7249,"id":288,"name":"filter","prevSize":32,"code":59932},"setIdx":0,"setId":0,"iconIdx":284},{"icon":{"paths":["M689.067 93.013h-354.133c-0.001-0-0.002-0-0.003-0-137.4 0-248.87 111.021-249.596 248.25l-0 0.070v354.133c-0 137.85 111.75 249.6 249.6 249.6h354.133c0.001 0 0.002 0 0.003 0 137.4 0 248.87-111.021 249.596-248.25l0-0.070v-355.413c-0.727-137.299-112.196-248.32-249.597-248.32-0.001 0-0.002 0-0.003 0l-0 0zM320.853 786.773c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM320.853 630.187c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM544 786.773c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM544 630.187c-3.355 0.948-7.209 1.493-11.189 1.493-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c3.981 0 7.834 0.545 11.489 1.565l-0.3-0.071c3.355-0.948 7.209-1.493 11.189-1.493 23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667c-3.981 0-7.834-0.545-11.489-1.565l0.3 0.071zM765.013 761.173c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-185.6c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM782.080 350.293c0 47.128-38.205 85.333-85.333 85.333v0h-371.627c-47.128 0-85.333-38.205-85.333-85.333v0-26.88c0-47.128 38.205-85.333 85.333-85.333v0h370.773c47.128 0 85.333 38.205 85.333 85.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["finance-calculator"]},"attrs":[{}],"properties":{"order":7250,"id":287,"name":"finance-calculator","prevSize":32,"code":59933},"setIdx":0,"setId":0,"iconIdx":285},{"icon":{"paths":["M686.080 85.333h-344.747c-141.385 0-256 114.615-256 256v0 341.333c0 141.385 114.615 256 256 256v0h346.027c141.385 0 256-114.615 256-256v0-341.333c0-0.001 0-0.002 0-0.003 0-141.385-114.615-256-256-256-0.45 0-0.9 0.001-1.349 0.003l0.069-0zM368.64 725.333h-98.133v-142.507c0-28.041 22.732-50.773 50.773-50.773v-0h47.36zM593.92 725.333h-160.853v-409.173c0-28.041 22.732-50.773 50.773-50.773h59.307c28.041 0 50.773 22.732 50.773 50.773l0-0zM755.627 725.333h-100.267v-265.813h49.493c0.009-0 0.019-0 0.029-0 28.041 0 50.773 22.732 50.773 50.773 0 0.6-0.010 1.198-0.031 1.793l0.002-0.086z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["financial-schedule"]},"attrs":[{}],"properties":{"order":7251,"id":286,"name":"financial-schedule","prevSize":32,"code":59934},"setIdx":0,"setId":0,"iconIdx":286},{"icon":{"paths":["M523.947 889.173c-0.126 0.002-0.275 0.002-0.423 0.002-8.207 0-15.777-2.726-21.854-7.322l0.091 0.066c-9.057-6.844-14.85-17.594-14.85-29.697 0-8.248 2.69-15.869 7.241-22.031l-0.072 0.101c31.716-41.733 55.767-91.175 68.976-144.881l0.571-2.746c4.502-15.794 18.803-27.164 35.76-27.164 20.501 0 37.12 16.619 37.12 37.12 0 2.669-0.282 5.272-0.817 7.781l0.043-0.243c-16.070 66.649-44.107 125.087-81.963 175.762l0.897-1.255c-6.934 8.872-17.636 14.522-29.658 14.522-0.373 0-0.746-0.005-1.116-0.016l0.054 0.001zM416.853 808.107c52.615-58.33 84.934-135.859 85.333-220.931l0-0.082v-184.747c-0.136-1.192-0.213-2.574-0.213-3.974 0-20.501 16.619-37.12 37.12-37.12s37.12 16.619 37.12 37.12c0 1.4-0.077 2.782-0.228 4.141l0.015-0.167v159.573c0 20.501 16.619 37.12 37.12 37.12s37.12-16.619 37.12-37.12v0-159.573c-3.735-58.465-52.068-104.47-111.147-104.47s-107.412 46.005-111.13 104.145l-0.017 0.326v184.747c-0.24 65.59-24.785 125.402-65.092 170.941l0.238-0.274c-6.456 6.608-10.439 15.656-10.439 25.634 0 10.81 4.675 20.529 12.113 27.244l0.032 0.029c6.291 5.819 14.737 9.388 24.016 9.388 0.107 0 0.213-0 0.32-0.001l-0.016 0c0.134 0.002 0.292 0.003 0.451 0.003 10.776 0 20.479-4.591 27.26-11.925l0.023-0.025zM316.16 699.733c20.461-0.938 36.693-17.755 36.693-38.362 0-0.013-0-0.027-0-0.040l0 0.002v-258.987c-0.001-0.233-0.002-0.509-0.002-0.785 0-23.009 4.226-45.031 11.943-65.332l-0.422 1.263c2.45-4.819 3.886-10.509 3.886-16.534 0-20.501-16.619-37.12-37.12-37.12-17.126 0-31.543 11.598-35.826 27.367l-0.060 0.26c-10.259 27.015-16.203 58.252-16.213 90.876l-0 0.004v262.4c0.228 19.384 15.995 35.010 35.411 35.010 0.451 0 0.9-0.008 1.347-0.025l-0.065 0.002zM426.667 256c17.492-13.048 37.972-23.29 60.124-29.549l1.316-0.318c15.865-4.626 27.26-19.037 27.26-36.11 0-3.393-0.45-6.68-1.293-9.806l0.060 0.263c-3.937-16.596-18.631-28.752-36.164-28.752-3.064 0-6.042 0.371-8.89 1.071l0.255-0.053c-32.655 9.422-61.097 24.041-85.941 43.114l0.607-0.448c-9.265 6.831-15.209 17.703-15.209 29.963 0 7.949 2.499 15.315 6.754 21.354l-0.078-0.117c6.893 8.81 17.502 14.439 29.429 14.507l0.011 0c1.016 0.106 2.196 0.167 3.39 0.167 6.81 0 13.16-1.97 18.511-5.37l-0.141 0.083zM768 782.507c19.211-57.604 30.293-123.926 30.293-192.836 0-0.156-0-0.313-0-0.469l0 0.025v-186.88c0-0.069 0-0.151 0-0.233 0-112.619-71.882-208.449-172.269-244.112l-1.811-0.561c-3.645-1.314-7.851-2.074-12.235-2.074-16.202 0-29.98 10.381-35.046 24.854l-0.079 0.26c-1.353 3.718-2.136 8.009-2.136 12.483 0 15.338 9.196 28.527 22.376 34.356l0.24 0.095c73.116 25.723 124.587 94.189 124.587 174.677 0 0.090-0 0.18-0 0.27l0-0.014v184.747c0.001 0.286 0.001 0.625 0.001 0.964 0 60.66-9.836 119.022-28 173.58l1.119-3.877c-1.033 3.272-1.628 7.035-1.628 10.938 0 16.433 10.557 30.4 25.258 35.49l0.264 0.079c1.732 0.296 3.726 0.466 5.76 0.466s4.028-0.169 5.97-0.495l-0.21 0.029c1.019 0.102 2.202 0.16 3.399 0.16 15.65 0 28.984-9.912 34.068-23.801l0.081-0.252zM981.333 893.867v-145.92c0-18.38-14.9-33.28-33.28-33.28s-33.28 14.9-33.28 33.28l0-0v143.787c0 10.133-8.214 18.347-18.347 18.347v0h-128.427c-18.38 0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28l128-0c45.695-1.65 82.139-38.989 82.347-84.886l0-0.020zM298.667 943.36c0-18.38-14.9-33.28-33.28-33.28v0h-128c-10.133 0-18.347-8.214-18.347-18.347v0-143.787c-1.968-16.915-16.212-29.92-33.493-29.92s-31.526 13.006-33.478 29.763l-0.015 0.157v143.787c0 47.128 38.205 85.333 85.333 85.333v0h128c0.001 0 0.002 0 0.003 0 18.38 0 33.28-14.9 33.28-33.28 0-0.15-0.001-0.3-0.003-0.449l0 0.023zM978.347 282.88v-143.36c0-47.128-38.205-85.333-85.333-85.333v0h-125.013c-18.38-0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28v0h128c10.133-0 18.347 8.214 18.347 18.347v143.787c0 18.38 14.9 33.28 33.28 33.28s33.28-14.9 33.28-33.28l-0-0zM119.893 282.88v-143.36c-0-10.133 8.214-18.347 18.347-18.347l0 0h128c18.38 0 33.28-14.9 33.28-33.28s-14.9-33.28-33.28-33.28v0h-128c-47.128 0-85.333 38.205-85.333 85.333v0 142.933c1.968 16.915 16.212 29.92 33.493 29.92s31.526-13.006 33.478-29.763l0.015-0.157z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["fingerprint-scanning"]},"attrs":[{}],"properties":{"order":7252,"id":285,"name":"fingerprint-scanning","prevSize":32,"code":59935},"setIdx":0,"setId":0,"iconIdx":287},{"icon":{"paths":["M192.427 938.667c-17.673 0-32-14.327-32-32v0-788.907c0-17.673 14.327-32 32-32s32 14.327 32 32v0 788.48c0.007 0.255 0.012 0.555 0.012 0.856 0 17.437-14.136 31.573-31.573 31.573-0.154 0-0.308-0.001-0.462-0.003l0.023 0zM704.427 384l118.187-147.627c4.319-6.559 6.89-14.603 6.89-23.248 0-22.084-16.778-40.249-38.282-42.444l-0.181-0.015h-502.613v426.667h502.613c21.685-2.21 38.463-20.375 38.463-42.459 0-8.644-2.571-16.688-6.989-23.409l0.1 0.161z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flag"]},"attrs":[{}],"properties":{"order":7253,"id":284,"name":"flag","prevSize":32,"code":59936},"setIdx":0,"setId":0,"iconIdx":288},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM679.253 517.547l-196.267 227.413c-3.832 4.144-9.297 6.731-15.367 6.731-11.363 0-20.608-9.065-20.9-20.357l-0.001-0.027v-187.733h-85.333c-11.192-0.155-20.206-9.264-20.206-20.478 0-5.057 1.833-9.685 4.87-13.258l-0.024 0.029 198.827-230.4c3.832-4.144 9.297-6.731 15.367-6.731 11.363 0 20.608 9.065 20.9 20.357l0.001 0.027v191.147h85.333c9.802 1.856 17.115 10.354 17.115 20.56 0 4.808-1.623 9.237-4.351 12.769l0.036-0.048z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flash-circle"]},"attrs":[{}],"properties":{"order":7254,"id":283,"name":"flash-circle","prevSize":32,"code":59937},"setIdx":0,"setId":0,"iconIdx":289},{"icon":{"paths":["M800 938.667h-576c-54.828-1.313-98.774-46.071-98.774-101.093 0-18.54 4.99-35.915 13.699-50.855l-0.259 0.481 132.267-232.533h482.133l134.4 232.533c8.441 14.452 13.425 31.818 13.425 50.347 0 55.767-45.143 100.99-100.879 101.12l-0.013 0zM384 170.667v0 188.16l-88.32 153.173h432.64l-88.32-153.173v-188.16c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0h-256c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["flask"]},"attrs":[{}],"properties":{"order":7255,"id":282,"name":"flask","prevSize":32,"code":59938},"setIdx":0,"setId":0,"iconIdx":290},{"icon":{"paths":["M938.667 480h-83.2c-17.312-165.144-148.702-294.777-313.144-309.24l-1.309-0.093v-85.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 85.333c-162.397 18.099-289.845 146.569-306.227 307.874l-0.12 1.459h-85.333c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h85.333c16.502 162.764 143.949 291.235 304.783 309.192l1.563 0.142v85.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0-83.2c166.399-14.72 298.123-145.418 314.339-310.038l0.114-1.428h83.2c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM512 792.747c-154.869-0.243-280.32-125.844-280.32-280.746 0-155.052 125.695-280.747 280.747-280.747s280.747 125.695 280.747 280.747l-0-0c-0.243 155.104-126.035 280.747-281.173 280.747l-0-0zM675.84 512c0 0.127 0.001 0.277 0.001 0.427 0 92.136-74.691 166.827-166.827 166.827s-166.827-74.691-166.827-166.827c0-92.136 74.691-166.826 166.826-166.827l0-0c0.127-0 0.277-0.001 0.427-0.001 91.9 0 166.4 74.5 166.4 166.4 0 0-0 0-0 0.001l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["focus"]},"attrs":[{}],"properties":{"order":7256,"id":281,"name":"focus","prevSize":32,"code":59939},"setIdx":0,"setId":0,"iconIdx":291},{"icon":{"paths":["M713.813 264.533h-128c-0.064 0-0.14 0-0.215 0-46.27 0-85.949-28.219-102.765-68.386l-0.273-0.735-13.227-35.84c-17.084-41.070-56.842-69.441-103.24-69.547l-0.013-0h-85.333c-0.13-0-0.284-0-0.438-0-106.938 0-193.77 86.087-194.974 192.74l-0.001 0.114v431.787c0.241 123.465 100.142 223.516 223.527 224l0.047 0h404.907c0.127 0 0.277 0 0.427 0 123.798 0 224.184-100.236 224.426-223.977l0-0.023v-226.133c-0.243-123.764-100.629-224-224.426-224-0.15 0-0.3 0-0.45 0l0.023-0zM375.893 593.92c-4.494-5.307-7.227-12.231-7.227-19.793 0-9.072 3.932-17.225 10.185-22.849l0.028-0.025c5.33-4.397 12.23-7.064 19.752-7.064 9.053 0 17.204 3.862 22.895 10.029l0.019 0.021 70.827 85.333 109.227-142.080c5.59-7.292 14.305-11.947 24.107-11.947 16.731 0 30.294 13.563 30.294 30.294 0 6.929-2.326 13.315-6.241 18.419l0.053-0.072-133.12 170.667c-5.378 7.099-13.608 11.794-22.952 12.369l-0.088 0.004c-9.393-0.174-17.76-4.424-23.431-11.050l-0.036-0.043-94.293-113.92z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-added"]},"attrs":[{}],"properties":{"order":7257,"id":280,"name":"folder-added","prevSize":32,"code":59940},"setIdx":0,"setId":0,"iconIdx":292},{"icon":{"paths":["M712.107 264.533h-128c-46.184-0.101-85.706-28.519-102.134-68.808l-0.266-0.739-12.373-35.84c-16.616-41.328-56.365-69.974-102.805-69.974-0.158 0-0.315 0-0.473 0.001l0.024-0h-85.333c-107.924 0-195.413 87.49-195.413 195.413v0 0 433.493c-0 0-0 0-0 0 0 123.947 100.479 224.427 224.427 224.427 0.15 0 0.3-0 0.45-0l-0.023 0h401.92c0.637 0.007 1.39 0.010 2.143 0.010 123.201 0 223.216-99.273 224.416-222.19l0.001-0.114v-230.827c0-0 0-0 0-0 0-124.033-100.427-224.61-224.403-224.853l-0.023-0zM631.893 640l-100.693 85.333-5.12 2.987h-3.413c-3.245 1.579-7.055 2.519-11.079 2.56l-0.014 0h-14.933c-1.628-0.755-3.029-1.609-4.321-2.6l0.054 0.040-108.373-88.32c-6.872-5.676-11.219-14.199-11.219-23.737 0-7.171 2.457-13.768 6.575-18.996l-0.050 0.066c5.598-6.795 14.013-11.093 23.432-11.093 0.012 0 0.025 0 0.037 0l-0.002-0c7.237 0.033 13.907 2.431 19.284 6.46l-0.084-0.060 58.88 47.36v-170.667c1.87-15.34 14.814-27.106 30.507-27.106s28.637 11.766 30.492 26.958l0.015 0.148v170.667l50.347-42.667c5.282-4.595 12.232-7.397 19.835-7.397 9.092 0 17.249 4.006 22.802 10.348l0.030 0.035c3.678 5.003 5.886 11.285 5.886 18.083 0 8.421-3.388 16.050-8.876 21.6l0.003-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-down"]},"attrs":[{}],"properties":{"order":7258,"id":279,"name":"folder-down","prevSize":32,"code":59941},"setIdx":0,"setId":0,"iconIdx":293},{"icon":{"paths":["M713.813 258.56h-128c-46.542-0.056-86.389-28.655-102.984-69.23l-0.269-0.743-13.227-35.84c-16.864-41.318-56.712-69.917-103.246-69.973l-85.34-0c-107.924-0-195.413 87.49-195.413 195.413v0 0 432.213c0.24 123.551 100.090 223.701 223.504 224.426l0.069 0h404.907c124.183 0 224.853-100.67 224.853-224.853l-0 0v-226.56c0-124.183-100.67-224.853-224.853-224.853l-0-0zM650.667 573.44c-5.659 6.426-13.904 10.458-23.091 10.458-7.462 0-14.303-2.661-19.626-7.086l0.050 0.041-50.347-42.667v170.667c-1.87 15.34-14.814 27.106-30.507 27.106s-28.637-11.766-30.492-26.958l-0.015-0.148v-174.507l-58.88 47.36c-5.232 3.995-11.864 6.4-19.058 6.4-0.050 0-0.1-0-0.15-0l0.008 0c-0.032 0-0.070 0-0.109 0-9.486 0-17.923-4.486-23.307-11.452l-0.051-0.068c-4.278-5.131-6.874-11.793-6.874-19.062 0-9.57 4.501-18.089 11.502-23.555l0.066-0.050 108.373-85.333 4.267-2.133h3.84c1.347-0.291 2.894-0.457 4.48-0.457s3.133 0.166 4.625 0.483l-0.145-0.026c4.002 0.052 7.807 0.83 11.31 2.209l-0.217-0.075h3.413l5.12 2.987 100.693 85.333c6.541 5.591 10.66 13.849 10.66 23.070 0 6.544-2.075 12.603-5.603 17.556l0.063-0.093z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder-up"]},"attrs":[{}],"properties":{"order":7259,"id":278,"name":"folder-up","prevSize":32,"code":59942},"setIdx":0,"setId":0,"iconIdx":294},{"icon":{"paths":["M483.413 191.147l-14.080-36.267c-16.986-41.13-56.78-69.547-103.212-69.547-0.015 0-0.029 0-0.044 0l-85.331-0c-0-0-0-0-0-0-107.924 0-195.413 87.49-195.413 195.413 0 0.15 0 0.3 0.001 0.45l-0-0.023v432.213c-0 0.002-0 0.004-0 0.006 0 123.819 99.891 224.307 223.482 225.273l0.092 0.001h404.907c0 0 0 0 0 0 124.183 0 224.853-100.67 224.853-224.853 0-0.15-0-0.3-0-0.45l0 0.023v-227.413c0-0 0-0 0-0 0-124.269-100.618-225.037-224.83-225.28l-0.023-0h-128c-46.109-0.347-85.518-28.664-102.129-68.808l-0.271-0.739z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["folder"]},"attrs":[{}],"properties":{"order":7260,"id":277,"name":"folder","prevSize":32,"code":59943},"setIdx":0,"setId":0,"iconIdx":295},{"icon":{"paths":["M886.613 757.333h-322.56c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h322.56c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM792.32 896c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-196.267c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h196.267c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM920.32 562.347s0 0 0 2.133c0.193 0.962 0.303 2.068 0.303 3.2s-0.11 2.238-0.32 3.308l0.018-0.108c0.089 0.832 0.139 1.797 0.139 2.773s-0.050 1.942-0.149 2.892l0.010-0.119c-1.069 1.772-2.195 3.306-3.445 4.73l0.032-0.037-4.267 5.12-4.693 2.133h-3.413c-3.38 1.587-7.336 2.527-11.509 2.56l-0.011 0h-328.96c-4.184-0.033-8.14-0.973-11.693-2.633l0.173 0.073h-3.413l-4.693-2.133-4.267-5.12c-1.218-1.387-2.345-2.921-3.332-4.549l-0.081-0.144c-0.089-0.832-0.139-1.797-0.139-2.773s0.050-1.942 0.149-2.892l-0.010 0.119c-0.193-0.962-0.303-2.068-0.303-3.2s0.11-2.238 0.32-3.308l-0.018 0.108s0 0 0-2.133v-425.813c0.020-0.319 0.031-0.691 0.031-1.067s-0.011-0.748-0.033-1.118l0.002 0.051c-0.192-0.898-0.302-1.929-0.302-2.987s0.11-2.089 0.319-3.084l-0.017 0.097c-0.090-0.895-0.142-1.935-0.142-2.987s0.051-2.091 0.152-3.117l-0.010 0.13c1.069-1.772 2.195-3.306 3.445-4.73l-0.032 0.037 4.267-5.12h3.413l6.827-5.973h343.040l5.973 2.987h3.413l4.267 5.12c1.218 1.387 2.345 2.921 3.332 4.549l0.081 0.144c0.090 0.895 0.142 1.935 0.142 2.987s-0.051 2.091-0.152 3.117l0.010-0.13c0.192 0.898 0.302 1.929 0.302 2.987s-0.11 2.089-0.319 3.084l0.017-0.097c-0.020 0.319-0.031 0.691-0.031 1.067s0.011 0.748 0.033 1.118l-0.002-0.051zM597.333 231.68v237.653l89.173-117.76zM725.333 298.667l96.853-128h-193.707zM628.48 532.48h193.707l-96.853-130.133zM853.333 469.333v-237.653l-87.893 117.76zM420.267 135.68v760.32s0 0 0 0c0.098 1.086 0.154 2.35 0.154 3.627s-0.056 2.54-0.166 3.788l0.011-0.162v5.12s-2.56 3.413-3.413 5.12-2.133 3.413-3.84 4.693c-1.342 1.197-2.892 2.199-4.581 2.943l-0.112 0.044c-1.609 1.467-3.432 2.745-5.405 3.773l-0.142 0.067s0 0 0 0c-1.603 0.277-3.45 0.436-5.333 0.436s-3.73-0.159-5.527-0.463l0.194 0.027h-272.64c-1.604 0.293-3.449 0.46-5.333 0.46s-3.73-0.167-5.522-0.488l0.189 0.028c-2.277-1.103-4.239-2.383-6.017-3.876l0.044 0.036c-1.802-0.787-3.351-1.79-4.711-3.002l0.017 0.015c-1.332-1.475-2.472-3.161-3.358-4.993l-0.056-0.127c-1.218-1.387-2.345-2.921-3.332-4.549l-0.081-0.144c-0.115-0.833-0.181-1.795-0.181-2.773s0.066-1.94 0.193-2.883l-0.012 0.11c-0.116-1.024-0.183-2.211-0.183-3.413s0.066-2.389 0.195-3.557l-0.013 0.144v-760.32c-0.093-1.023-0.146-2.212-0.146-3.413s0.053-2.391 0.156-3.566l-0.011 0.152c-0.093-0.768-0.145-1.658-0.145-2.56s0.053-1.792 0.156-2.666l-0.010 0.106c0.941-1.959 2.082-3.645 3.43-5.139l-0.017 0.019 3.413-5.12 4.693-2.56c1.666-1.619 3.652-2.92 5.852-3.797l0.121-0.043c0.833-0.113 1.796-0.177 2.773-0.177s1.94 0.064 2.884 0.189l-0.111-0.012h274.347c0.768-0.093 1.658-0.145 2.56-0.145s1.792 0.053 2.666 0.156l-0.106-0.010c0.831-0.083 1.797-0.131 2.773-0.131s1.942 0.048 2.894 0.14l-0.121-0.010c2.118 0.951 3.944 2.093 5.589 3.447l-0.042-0.033c1.819 1.010 3.353 1.999 4.818 3.074l-0.125-0.088c1.349 1.521 2.614 3.193 3.744 4.959l0.096 0.161c1.119 1.469 2.247 3.14 3.278 4.874l0.135 0.246v5.12c1.256 1.954 2.403 4.203 3.324 6.565l0.090 0.262zM151.467 322.987v386.987l68.693-193.707zM256 420.693l85.333-250.027h-176.64zM164.693 864h176.64l-85.333-251.733zM356.693 709.973v-386.987l-68.693 193.28z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["frame"]},"attrs":[{}],"properties":{"order":7261,"id":276,"name":"frame","prevSize":32,"code":59944},"setIdx":0,"setId":0,"iconIdx":296},{"icon":{"paths":["M938.667 488.533v46.933c-0.085 23.694-17.248 43.355-39.817 47.318l-0.289 0.042-55.040 8.533c-9.611 37.559-24.259 70.547-43.469 100.313l0.802-1.327 32.853 44.8c5.636 7.744 9.017 17.446 9.017 27.937 0 13.266-5.405 25.269-14.134 33.927l-0.003 0.003-33.28 33.28c-8.661 8.731-20.664 14.137-33.93 14.137-10.491 0-20.192-3.381-28.074-9.112l0.137 0.095-44.8-32.853c-28.44 18.408-61.428 33.056-96.647 42.154l-2.34 0.513-8.533 55.040c-4.005 22.859-23.666 40.022-47.351 40.107l-0.009 0h-46.933c-23.694-0.085-43.355-17.248-47.318-39.817l-0.042-0.289-8.533-55.040c-37.559-9.611-70.547-24.259-100.313-43.469l1.327 0.802-44.8 32.853c-7.744 5.636-17.446 9.017-27.937 9.017-13.266 0-25.269-5.405-33.927-14.134l-0.003-0.003-33.28-33.28c-8.731-8.661-14.137-20.664-14.137-33.93 0-10.491 3.381-20.192 9.112-28.074l-0.095 0.137 32.853-44.8c-18.408-28.44-33.056-61.428-42.154-96.647l-0.513-2.34-55.040-8.533c-21.231-5.352-36.696-24.279-36.696-46.818 0-0.191 0.001-0.381 0.003-0.571l-0 0.029v-46.933c0.085-23.694 17.248-43.355 39.817-47.318l0.289-0.042 55.040-8.533c9.611-37.559 24.259-70.547 43.469-100.313l-0.802 1.327-34.56-44.8c-5.636-7.744-9.017-17.446-9.017-27.937 0-13.266 5.405-25.269 14.134-33.927l0.003-0.003 33.28-33.28c8.661-8.731 20.664-14.137 33.93-14.137 10.491 0 20.192 3.381 28.074 9.112l-0.137-0.095 44.8 32.853c28.44-18.408 61.428-33.056 96.647-42.154l2.34-0.513 8.533-55.040c4.71-22.080 24.051-38.4 47.204-38.4 0.055 0 0.11 0 0.164 0l-0.008-0h46.933c23.694 0.085 43.355 17.248 47.318 39.817l0.042 0.289 8.533 55.040c37.559 9.611 70.547 24.259 100.313 43.469l-1.327-0.802 44.8-32.853c7.744-5.636 17.446-9.017 27.937-9.017 13.266 0 25.269 5.405 33.927 14.134l0.003 0.003 33.28 33.28c8.731 8.661 14.137 20.664 14.137 33.93 0 10.491-3.381 20.192-9.112 28.074l0.095-0.137-32.853 44.8c18.408 28.44 33.056 61.428 42.154 96.647l0.513 2.34 55.040 8.533c21.578 4.59 37.65 23.142 38.398 45.574l0.002 0.079zM512 362.667c-82.475 0-149.333 66.859-149.333 149.333s66.859 149.333 149.333 149.333c82.475 0 149.333-66.859 149.333-149.333v0c0-82.475-66.859-149.333-149.333-149.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gear"]},"attrs":[{}],"properties":{"order":7262,"id":275,"name":"gear","prevSize":32,"code":59945},"setIdx":0,"setId":0,"iconIdx":297},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM690.347 545.707l-75.093 26.88c-19.323 7.401-34.102 22.879-40.399 42.19l-0.135 0.477-26.88 78.507c-9.676 27.259-35.244 46.43-65.29 46.43-30.992 0-57.22-20.397-65.992-48.5l-0.132-0.49-81.92-270.080c-2.202-6.583-3.473-14.163-3.473-22.040 0-39.588 32.092-71.68 71.68-71.68 8.587 0 16.821 1.51 24.451 4.279l-0.499-0.158 262.827 85.333c26.248 10.201 44.515 35.263 44.515 64.592 0 29.007-17.868 53.841-43.199 64.095l-0.463 0.166z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["general-mouse"]},"attrs":[{}],"properties":{"order":7263,"id":274,"name":"general-mouse","prevSize":32,"code":59946},"setIdx":0,"setId":0,"iconIdx":298},{"icon":{"paths":["M472.32 103.253c-155.279 18.697-277.494 139.313-298.467 292.196l-0.2 1.777c-2.037 14.008-3.2 30.182-3.2 46.628 0 86.849 32.436 166.123 85.856 226.367l-0.309-0.355 207.36 232.107c11.544 12.978 28.288 21.114 46.933 21.114s35.39-8.136 46.878-21.050l0.055-0.064 210.773-232.107c54.076-60.143 87.148-140.115 87.148-227.812 0-188.513-152.82-341.333-341.333-341.333-14.625 0-29.036 0.92-43.177 2.705l1.682-0.173zM682.667 529.92c0 23.564-19.103 42.667-42.667 42.667v0h-85.333v-128c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 128h-85.333c-23.564 0-42.667-19.103-42.667-42.667v0-119.467c-0-0.063-0-0.138-0-0.213 0-34.713 16.648-65.537 42.396-84.924l0.271-0.196 101.547-76.373c7.312-5.401 16.504-8.644 26.453-8.644s19.141 3.243 26.576 8.73l-0.123-0.086 101.547 76.373c26.019 19.583 42.667 50.407 42.667 85.12 0 0.075-0 0.15-0 0.225l0-0.012z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["geolocation-home"]},"attrs":[{}],"properties":{"order":7264,"id":273,"name":"geolocation-home","prevSize":32,"code":59947},"setIdx":0,"setId":0,"iconIdx":299},{"icon":{"paths":["M469.333 87.893c-182.21 21.913-322.074 175.578-322.074 361.91 0 93.576 35.274 178.913 93.251 243.439l-0.297-0.336 186.453 206.933c21.156 23.264 51.546 37.81 85.333 37.81s64.177-14.545 85.249-37.716l185.684-207.027c57.289-64.147 92.302-149.253 92.302-242.536 0-201.473-163.327-364.8-364.8-364.8-14.482 0-28.767 0.844-42.808 2.485l1.706-0.162zM512 590.507c-79.647 0-144.213-64.567-144.213-144.213s64.567-144.213 144.213-144.213c79.647 0 144.213 64.567 144.213 144.213v0c0 79.647-64.567 144.213-144.213 144.213v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["geolocation"]},"attrs":[{}],"properties":{"order":7265,"id":272,"name":"geolocation","prevSize":32,"code":59948},"setIdx":0,"setId":0,"iconIdx":300},{"icon":{"paths":["M512 90.88v0c-235.641-0-426.667 191.025-426.667 426.667v0 347.307c-0 0.053-0 0.116-0 0.179 0 20.501 16.619 37.12 37.12 37.12 9.127 0 17.484-3.294 23.949-8.758l-0.055 0.045 59.307-49.493c6.502-5.374 14.924-8.633 24.107-8.633s17.604 3.26 24.171 8.685l-0.064-0.051 93.44 79.787c6.473 5.45 14.903 8.761 24.107 8.761s17.633-3.311 24.164-8.808l-0.057 0.047 94.72-80.213c6.473-5.45 14.903-8.761 24.107-8.761s17.633 3.311 24.164 8.808l-0.057-0.047 91.733 78.080c6.502 5.374 14.924 8.633 24.107 8.633s17.604-3.26 24.171-8.685l-0.064 0.051 91.733-78.507c6.502-5.374 14.924-8.633 24.107-8.633s17.604 3.26 24.171 8.685l-0.064-0.051 59.307 49.493c6.41 5.422 14.77 8.717 23.899 8.717 20.265 0 36.738-16.24 37.113-36.415l0.001-0.035v-347.307c0-235.641-191.025-426.667-426.667-426.667v-0zM512 288c56.083 0 101.547 45.464 101.547 101.547s-45.464 101.547-101.547 101.547c-56.083 0-101.547-45.464-101.547-101.547h0c0.241-55.985 45.561-101.305 101.523-101.547l0.023-0zM696.32 629.333c-50.044 35.943-112.521 57.511-180.032 57.6l-0.022 0c-72.127-1.073-139.063-22.389-195.641-58.5l1.508 0.9c-8.29-5.863-13.636-15.41-13.636-26.206 0-6.976 2.232-13.43 6.021-18.688l-0.065 0.095c5.815-7.813 15.023-12.82 25.4-12.82 6.423 0 12.399 1.918 17.384 5.213l-0.118-0.073c42.287 28.448 94.363 45.407 150.4 45.407s108.113-16.959 151.375-46.024l-0.975 0.617c5.114-3.615 11.478-5.778 18.347-5.778 17.683 0 32.018 14.335 32.018 32.018 0 10.814-5.361 20.376-13.57 26.173l-0.101 0.067z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ghost"]},"attrs":[{}],"properties":{"order":7266,"id":271,"name":"ghost","prevSize":32,"code":59949},"setIdx":0,"setId":0,"iconIdx":301},{"icon":{"paths":["M853.333 489.813v325.973c0 0 0 0.001 0 0.001 0 67.715-54.772 122.637-122.43 122.879l-0.023 0h-437.76c-67.681-0.242-122.453-55.164-122.453-122.879 0-0 0-0 0-0.001l0-0v-325.973h148.907v153.173c0 58.91 47.756 106.667 106.667 106.667v0c0.134 0.001 0.292 0.001 0.45 0.001 21.668 0 41.77-6.702 58.347-18.146l-0.344 0.225 27.307-17.92 27.307 17.92c16.233 11.219 36.335 17.921 58.003 17.921 0.158 0 0.317-0 0.475-0.001l-0.024 0c0 0 0.001 0 0.001 0 58.996 0 106.85-47.704 107.092-106.643l0-0.023v-152.32h141.653zM846.507 213.333h-85.333c7.065-7.033 11.438-16.766 11.438-27.52s-4.372-20.487-11.436-27.519l-0.001-0.001-62.293-61.44c-7.101-7.090-16.905-11.474-27.733-11.474s-20.632 4.384-27.734 11.475l0.001-0.001-116.48 116.48h-29.867l-116.48-116.48c-7.101-7.090-16.905-11.474-27.733-11.474s-20.632 4.384-27.734 11.475l0.001-0.001-61.013 61.44c-7.194 7.053-11.653 16.872-11.653 27.732 0 10.649 4.287 20.296 11.229 27.311l-0.003-0.003h-85.333c-0.254-0.003-0.553-0.005-0.853-0.005-39.116 0-70.827 31.71-70.827 70.827 0 0.002 0 0.004 0 0.005l-0-0v71.253c-0.001 0.127-0.001 0.277-0.001 0.427 0 39.116 31.71 70.827 70.827 70.827 0 0 0.001-0 0.001-0l669.013 0c0 0 0.001 0 0.001 0 39.116 0 70.827-31.71 70.827-70.827 0-0.15-0-0.3-0.001-0.45l0 0.023v-71.253c0-39.116-31.71-70.827-70.827-70.827h-0zM384 490.667v153.173c0 23.564 19.103 42.667 42.667 42.667v0c8.761-0.071 16.878-2.771 23.616-7.349l-0.149 0.095 32.427-21.333c8.405-5.623 18.745-8.974 29.867-8.974s21.461 3.351 30.064 9.098l-0.197-0.124 32.427 21.333c6.589 4.482 14.706 7.183 23.449 7.253l0.018 0c23.564 0 42.667-19.103 42.667-42.667v0-153.173z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["gift"]},"attrs":[{}],"properties":{"order":7267,"id":270,"name":"gift","prevSize":32,"code":59950},"setIdx":0,"setId":0,"iconIdx":302},{"icon":{"paths":["M512 87.893c-0.247-0.001-0.54-0.001-0.833-0.001-233.992 0-423.68 189.688-423.68 423.68 0 196.073 133.191 361.038 314.032 409.355l2.96 0.673v-98.56l-20.48-2.133-30.293-2.987-17.493-2.133c-8.66-0.072-16.863-1.949-24.277-5.274l0.384 0.154c-13.996-7.301-25.045-18.625-31.812-32.428l-0.188-0.425c-3.572-9.196-7.586-17.064-12.282-24.458l0.335 0.565c-10.508-16.296-22.64-30.327-36.469-42.473l-0.224-0.193c-2.567-2.486-4.161-5.963-4.161-9.813s1.593-7.328 4.157-9.81l0.004-0.004c2.674-3.058 6.582-4.979 10.939-4.979 2.391 0 4.647 0.579 6.636 1.603l-0.081-0.038c18.964 10.36 35.253 22.704 49.472 37.099l0.021 0.021c8.015 7.853 15.183 16.512 21.392 25.864l0.368 0.589c3.193 3.557 7.424 6.123 12.216 7.223l0.158 0.030h21.76l29.44-4.267 28.587-2.987c9.38-26.466 26.684-48.182 49.025-62.858l0.468-0.289c-26.089-3.25-49.614-8.636-72.183-16.117l2.636 0.757c-74.345-19.521-128.295-86.122-128.295-165.323 0-3.531 0.107-7.037 0.319-10.514l-0.023 0.478c0.54-41.434 16.664-79 42.763-107.199l-0.097 0.106c-5.658-18.532-8.915-39.832-8.915-61.893 0-16.621 1.849-32.809 5.352-48.372l-0.277 1.465c2.228-8.061 9.497-13.882 18.125-13.882 1.749 0 3.441 0.239 5.047 0.686l-0.132-0.031c37.359 7.105 69.572 25.534 93.772 51.523l0.095 0.103c31.859-10.672 68.544-16.829 106.667-16.829s74.807 6.157 109.114 17.532l-2.447-0.703c23.77-25.73 55.185-44.078 90.627-51.435l1.106-0.192c1.386-0.358 2.978-0.564 4.618-0.564 8.676 0 16.007 5.754 18.387 13.654l0.035 0.136c3.327 14.113 5.234 30.318 5.234 46.968 0 20.338-2.846 40.011-8.162 58.644l0.367-1.505c29.068 28.515 47.349 67.935 48.211 111.626l0.003 0.161c0 93.44-59.307 170.667-197.973 190.293 34.581 22.134 57.174 60.347 57.174 103.837 0 0.095-0 0.189-0 0.284l0-0.015v119.467c167.118-59.296 284.65-216.032 284.65-400.219 0-233.992-189.688-423.68-423.68-423.68-0.772 0-1.544 0.002-2.315 0.006l0.119-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["github"]},"attrs":[{}],"properties":{"order":7268,"id":269,"name":"github","prevSize":32,"code":59951},"setIdx":0,"setId":0,"iconIdx":303},{"icon":{"paths":["M853.333 750.507l-91.307-213.333-42.667-98.56-61.867-145.067h8.533c1.984 0.136 4.3 0.213 6.634 0.213 57.025 0 103.253-46.228 103.253-103.253s-46.228-103.253-103.253-103.253c-2.334 0-4.65 0.077-6.946 0.23l0.312-0.017h-308.907c-54.098 3.589-96.619 48.349-96.619 103.040s42.521 99.451 96.308 103.023l0.312 0.017h4.267l-62.72 145.067-128 314.88c-4.19 9.622-7.465 20.819-9.286 32.497l-0.101 0.783c0 3.413 0 6.827 0 9.813-0.305 3.451-0.479 7.465-0.479 11.52s0.174 8.070 0.515 12.036l-0.036-0.516c-0.209 1.41-0.328 3.038-0.328 4.693s0.119 3.283 0.35 4.875l-0.022-0.182c1.124 8.189 2.915 15.535 5.366 22.571l-0.246-0.811c0 3.413 3.413 6.4 4.693 9.387 3.274 7.573 6.556 13.877 10.221 19.924l-0.407-0.724c0 2.987 5.12 5.973 7.68 8.96 4.136 5.507 8.33 10.378 12.823 14.956l-0.023-0.023c3.413 2.987 7.68 5.12 11.093 8.107s9.387 7.68 14.933 10.667l13.653 5.547c4.724 2.281 10.386 4.459 16.24 6.19l0.827 0.21c4.693 0 10.24 0 15.36 2.133 2.745 0.21 5.945 0.329 9.173 0.329s6.428-0.119 9.596-0.354l-0.423 0.025 220.16 2.56h218.027c0.428 0.005 0.934 0.008 1.441 0.008 73.756 0 133.547-59.791 133.547-133.547 0-19.785-4.302-38.565-12.023-55.455l0.342 0.834zM430.507 291.84h157.867l72.533 170.667 26.88 64c-6.992-0.598-15.131-0.938-23.349-0.938-46.144 0-89.779 10.741-128.542 29.858l1.705-0.76c-42.186 24.737-92.903 39.346-147.033 39.346-28.625 0-56.296-4.085-82.461-11.705l2.081 0.519 49.493-119.467z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["glass"]},"attrs":[{}],"properties":{"order":7269,"id":268,"name":"glass","prevSize":32,"code":59952},"setIdx":0,"setId":0,"iconIdx":304},{"icon":{"paths":["M154.027 896l-15.787 7.68c-1.838 1.081-4.048 1.719-6.408 1.719-7.069 0-12.8-5.731-12.8-12.8 0-0.154 0.003-0.308 0.008-0.461l-0.001 0.022v-761.6c-0.002-0.079-0.003-0.171-0.003-0.264 0-4.539 2.362-8.526 5.924-10.799l0.052-0.031c1.090-0.261 2.341-0.411 3.627-0.411s2.537 0.15 3.737 0.433l-0.11-0.022h5.973l15.787 8.533 384 384zM666.027 384l-331.52-166.827 248.747 252.16zM582.827 557.653l-248.32 249.173 331.947-166.827zM898.987 524.373c4.307-1.869 7.265-6.085 7.265-10.991 0-0.186-0.004-0.371-0.013-0.555l0.001 0.026c0.004-0.122 0.006-0.264 0.006-0.408 0-5.055-2.93-9.425-7.184-11.506l-0.076-0.033-170.667-85.333-99.413 96.427 96.427 98.987z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["google-play"]},"attrs":[{}],"properties":{"order":7270,"id":267,"name":"google-play","prevSize":32,"code":59953},"setIdx":0,"setId":0,"iconIdx":305},{"icon":{"paths":["M578.133 933.547c-19.528 3.166-42.038 4.976-64.971 4.976-235.641 0-426.667-191.025-426.667-426.667s191.025-426.667 426.667-426.667c87.772 0 169.353 26.503 237.179 71.943l-1.541-0.972c14.641 10.491 24.067 27.451 24.067 46.613 0 14.956-5.743 28.571-15.143 38.759l0.036-0.039-38.827 42.667c-10.537 11.234-25.475 18.232-42.047 18.232-11.651 0-22.494-3.459-31.558-9.407l0.219 0.135c-37.787-23.223-83.555-36.978-132.535-36.978-28.903 0-56.686 4.79-82.601 13.619l1.803-0.534c-103.956 34.143-177.695 130.325-177.695 243.73 0 141.385 114.615 256 256 256 111.153 0 205.761-70.84 241.138-169.836l0.557-1.787h-173.653c-32.047 0-58.027-25.979-58.027-58.027v0-55.467c0.481-31.678 26.273-57.173 58.020-57.173 0.002 0 0.004 0 0.007 0l302.080-0c0.001-0 0.001-0 0.002-0 31.897 0 57.783 25.737 58.025 57.577l0 0.023v17.067c0 201.387-161.28 402.347-360.533 432.213z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["google"]},"attrs":[{}],"properties":{"order":7271,"id":266,"name":"google","prevSize":32,"code":59954},"setIdx":0,"setId":0,"iconIdx":306},{"icon":{"paths":["M687.36 85.333h-350.72c-139.352 2.636-251.307 116.222-251.307 255.957 0 0.015 0 0.030 0 0.045l-0-0.002v341.333c-0 0.013-0 0.028-0 0.043 0 139.735 111.955 253.321 251.060 255.953l0.246 0.004h350.72c139.352-2.636 251.307-116.222 251.307-255.957 0-0.015-0-0.030-0-0.045l0 0.002v-341.333c0-0.013 0-0.028 0-0.043 0-139.735-111.955-253.321-251.060-255.953l-0.246-0.004zM441.6 689.92c0.136 1.107 0.213 2.389 0.213 3.689 0 17.673-14.327 32-32 32s-32-14.327-32-32c0-1.3 0.078-2.582 0.228-3.841l-0.015 0.152v-154.88c-0.136-1.107-0.213-2.389-0.213-3.689 0-17.673 14.327-32 32-32s32 14.327 32 32c0 1.3-0.078 2.582-0.228 3.841l0.015-0.152zM680.96 689.92c0.136 1.107 0.213 2.389 0.213 3.689 0 17.673-14.327 32-32 32s-32-14.327-32-32c0-1.3 0.078-2.582 0.228-3.841l-0.015 0.152v-381.44c-0.136-1.107-0.213-2.389-0.213-3.689 0-17.673 14.327-32 32-32s32 14.327 32 32c0 1.3-0.078 2.582-0.228 3.841l0.015-0.152z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph-2"]},"attrs":[{}],"properties":{"order":7272,"id":265,"name":"graph-2","prevSize":32,"code":59955},"setIdx":0,"setId":0,"iconIdx":307},{"icon":{"paths":["M687.36 85.333h-350.72c-139.352 2.636-251.307 116.222-251.307 255.957 0 0.015 0 0.030 0 0.045l-0-0.002v341.333c-0 0.079-0 0.174-0 0.268 0 44.555 11.214 86.491 30.974 123.139l-0.68-1.381c42.771 80.001 125.59 133.595 220.961 133.973l0.052 0h350.72c95.506-0.467 178.347-54.227 220.355-133.048l0.658-1.352c19.054-35.222 30.265-77.098 30.293-121.591l0-0.009v-341.333c0-0.013 0-0.028 0-0.043 0-139.735-111.955-253.321-251.060-255.953l-0.246-0.004zM874.667 597.333h-141.653c-54.191-0.544-100.628-33.178-121.262-79.784l-0.338-0.856-37.12-85.333c-7.087-16.586-23.261-27.997-42.101-27.997-19.963 0-36.933 12.813-43.135 30.663l-0.097 0.321-85.333 243.2c-6.008 18.676-23.228 31.953-43.549 31.953-18.557 0-34.529-11.072-41.668-26.971l-0.116-0.289-13.653-28.587c-21.736-45.351-67.191-76.158-119.865-76.373l-0.029-0h-35.413v-235.947c-0.003-0.384-0.004-0.838-0.004-1.292 0-103.876 83.606-188.225 187.197-189.427l0.114-0.001h350.72c103.705 1.203 187.311 85.552 187.311 189.428 0 0.454-0.002 0.908-0.005 1.362l0-0.070z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph-3"]},"attrs":[{}],"properties":{"order":7273,"id":264,"name":"graph-3","prevSize":32,"code":59956},"setIdx":0,"setId":0,"iconIdx":308},{"icon":{"paths":["M905.387 938.667h-564.053c-0.761 0.008-1.66 0.013-2.56 0.013-139.826 0-253.204-113.233-253.44-253.004l-0-0.022v-567.893c-0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427h0v567.893c0.233 103.977 84.577 188.177 188.586 188.177 0.9 0 1.799-0.006 2.696-0.019l-0.136 0.001h564.053c17.909 0 32.427 14.518 32.427 32.427s-14.518 32.427-32.427 32.427l0-0zM215.467 685.653c-0.004 0.386-0.007 0.842-0.007 1.299 0 68.336 55.397 123.733 123.733 123.733 0.753 0 1.503-0.007 2.253-0.020l-0.113 0.002h463.36c40.295 0 72.96-32.665 72.96-72.96v0-384c-0.242-62.733-51.153-113.493-113.919-113.493-0 0-0.001 0-0.001 0l0-0c-0.080-0-0.175-0-0.27-0-74.172 0-141.338 29.994-190.031 78.515l0.008-0.008-175.36 175.36c-24.633 24.644-58.669 39.888-96.265 39.888-13.434 0-26.413-1.946-38.671-5.572l0.963 0.244h-4.267c-2.435-0.613-5.231-0.965-8.108-0.965-18.976 0-34.38 15.294-34.558 34.228l-0 0.017z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph-4"]},"attrs":[{}],"properties":{"order":7274,"id":263,"name":"graph-4","prevSize":32,"code":59957},"setIdx":0,"setId":0,"iconIdx":309},{"icon":{"paths":["M687.36 85.333h-350.72c-139.352 2.636-251.307 116.222-251.307 255.957 0 0.015 0 0.030 0 0.045l-0-0.002v341.333c-0 0.013-0 0.028-0 0.043 0 139.735 111.955 253.321 251.060 255.953l0.246 0.004h350.72c139.352-2.636 251.307-116.222 251.307-255.957 0-0.015-0-0.030-0-0.045l0 0.002v-341.333c0-0.013 0-0.028 0-0.043 0-139.735-111.955-253.321-251.060-255.953l-0.246-0.004zM354.133 793.173c0.136 1.107 0.213 2.389 0.213 3.689 0 17.673-14.327 32-32 32s-32-14.327-32-32c0-1.3 0.078-2.582 0.228-3.841l-0.015 0.152v-122.453c-0.136-1.107-0.213-2.389-0.213-3.689 0-17.673 14.327-32 32-32s32 14.327 32 32c0 1.3-0.078 2.582-0.228 3.841l0.015-0.152zM559.36 793.173c0.136 1.107 0.213 2.389 0.213 3.689 0 17.673-14.327 32-32 32s-32-14.327-32-32c0-1.3 0.078-2.582 0.228-3.841l-0.015 0.152v-177.067c-0.136-1.107-0.213-2.389-0.213-3.689 0-17.673 14.327-32 32-32s32 14.327 32 32c0 1.3-0.078 2.582-0.228 3.841l0.015-0.152zM762.027 793.173c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-290.987c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM762.027 341.333c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-11.093c-91.324 102.556-218.911 171.101-362.467 185.412l-2.333 0.188c-16.464-1.94-29.115-15.813-29.115-32.64s12.651-30.7 28.961-32.625l0.155-0.015c133.644-14.44 249.711-79.928 330.019-176.268l0.648-0.799h-32c-17.909 0-32.427-14.518-32.427-32.427s14.518-32.427 32.427-32.427h109.227l5.973 2.987h2.987s0 0 0 0l4.267 5.12c1.332 1.475 2.472 3.161 3.358 4.993l0.056 0.127s0 3.413 2.133 5.547v6.4s0 0 0 2.56z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph-up"]},"attrs":[{}],"properties":{"order":7275,"id":262,"name":"graph-up","prevSize":32,"code":59958},"setIdx":0,"setId":0,"iconIdx":310},{"icon":{"paths":["M687.36 85.333h-350.72c-139.352 2.636-251.307 116.222-251.307 255.957 0 0.015 0 0.030 0 0.045l-0-0.002v341.333c-0 0.013-0 0.028-0 0.043 0 139.735 111.955 253.321 251.060 255.953l0.246 0.004h350.72c139.352-2.636 251.307-116.222 251.307-255.957 0-0.015-0-0.030-0-0.045l0 0.002v-341.333c0-0.013 0-0.028 0-0.043 0-139.735-111.955-253.321-251.060-255.953l-0.246-0.004zM303.36 589.653c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-155.307c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM542.72 702.72c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-381.44c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM779.093 589.653c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-155.307c0-17.673 14.327-32 32-32s32 14.327 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["graph"]},"attrs":[{}],"properties":{"order":7276,"id":261,"name":"graph","prevSize":32,"code":59959},"setIdx":0,"setId":0,"iconIdx":311},{"icon":{"paths":["M938.667 306.773v410.453c0 122.298-99.142 221.44-221.44 221.44l-0-0h-410.453c-122.298 0-221.44-99.142-221.44-221.44l-0-0v-410.453c0-122.298 99.142-221.44 221.44-221.44l-0-0h173.227v853.333h64v-853.333h173.227c122.298 0 221.44 99.142 221.44 221.44l-0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-2"]},"attrs":[{}],"properties":{"order":7277,"id":260,"name":"grid-2","prevSize":32,"code":59960},"setIdx":0,"setId":0,"iconIdx":312},{"icon":{"paths":["M896 778.667h-95.147v-280.747c-0.242-39.404-32.241-71.253-71.679-71.253-0 0-0.001 0-0.001 0l-91.733-0c-39.352 0-71.253 31.901-71.253 71.253l-0-0v280.747h-128v-494.080c-0.242-39.404-32.241-71.253-71.679-71.253-0 0-0.001 0-0.001 0l-91.733-0c-39.352 0-71.253 31.901-71.253 71.253h-0v494.080h-75.52c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h768c17.673 0 32-14.327 32-32s-14.327-32-32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid-frame"]},"attrs":[{}],"properties":{"order":7278,"id":259,"name":"grid-frame","prevSize":32,"code":59961},"setIdx":0,"setId":0,"iconIdx":313},{"icon":{"paths":["M306.773 85.333h77.227v853.333h-77.227c-122.298 0-221.44-99.142-221.44-221.44l-0-0v-410.453c-0-0.139-0.001-0.304-0.001-0.469 0-14.937 1.554-29.512 4.509-43.57l-0.242 1.373c0.961-3.527 1.835-6.227 2.808-8.879l-0.248 0.773c2.561-10.753 5.488-19.865 9.016-28.672l-0.483 1.365c1.347-4.207 2.793-7.737 4.474-11.129l-0.207 0.463c5.545-12.94 11.684-24.016 18.784-34.383l-0.438 0.677c7.527-10.986 15.38-20.601 23.961-29.511l-0.068 0.071 5.547-5.547c8.66-8.389 17.988-16.228 27.845-23.381l0.741-0.512 5.12-2.987c8.627-5.685 18.575-11.106 28.972-15.693l1.321-0.52 5.547-2.987c9.961-4.041 22.074-7.853 34.538-10.754l1.729-0.339h8.107c11.347-3.057 24.856-5.468 38.692-6.753l0.988-0.074zM717.227 85.333h-269.227v853.333h269.227c122.298 0 221.44-99.142 221.44-221.44l-0-0v-410.453c0-122.298-99.142-221.44-221.44-221.44l-0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["grid"]},"attrs":[{}],"properties":{"order":7279,"id":258,"name":"grid","prevSize":32,"code":59962},"setIdx":0,"setId":0,"iconIdx":314},{"icon":{"paths":["M481.707 866.56c0.013 0.508 0.020 1.106 0.020 1.706 0 39.588-32.092 71.68-71.68 71.68s-71.68-32.092-71.68-71.68c0-39.588 32.092-71.68 71.68-71.68 0.143 0 0.286 0 0.428 0.001l-0.022-0c0.128-0.001 0.28-0.001 0.432-0.001 38.817 0 70.341 31.226 70.821 69.929l0 0.045zM730.88 796.587c-38.326 0.72-69.119 31.958-69.119 70.388 0 38.881 31.519 70.4 70.4 70.4s70.4-31.519 70.4-70.4c0-0.146-0-0.292-0.001-0.437l0 0.022c-0.479-38.75-32.003-69.979-70.822-69.979-0.302 0-0.603 0.002-0.904 0.006l0.046-0zM849.067 174.507h-491.093c-0.050-0-0.109-0-0.168-0-7.069 0-13.919 0.934-20.435 2.686l0.549-0.126c0.086-0.577 0.136-1.243 0.136-1.92s-0.049-1.343-0.145-1.994l0.009 0.074-42.667-71.253c-6.165-10.047-17.089-16.648-29.556-16.648-0.259 0-0.518 0.003-0.776 0.009l0.038-0.001h-145.493c-1.136-0.136-2.452-0.213-3.786-0.213-18.616 0-33.707 15.091-33.707 33.707s15.091 33.707 33.707 33.707c1.334 0 2.65-0.078 3.944-0.228l-0.157 0.015h128l32.427 54.613c1.197 2.444 2.621 4.549 4.292 6.429l-0.025-0.029c-8.524 11.951-14.089 26.553-15.341 42.369l-0.019 0.297-6.827 88.32h670.72l5.973-75.52c0.129-1.791 0.203-3.88 0.203-5.986 0-48.778-39.542-88.32-88.32-88.32-0.521 0-1.042 0.005-1.561 0.014l0.078-0.001zM242.347 608c-0.129 1.789-0.203 3.876-0.203 5.98 0 48.778 39.542 88.32 88.32 88.32 0.371 0 0.742-0.002 1.112-0.007l-0.056 0.001h491.52c0.098 0 0.215 0.001 0.331 0.001 46.546 0 84.762-35.661 88.818-81.153l0.025-0.341 15.36-209.493h-671.573z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["handcart"]},"attrs":[{}],"properties":{"order":7280,"id":257,"name":"handcart","prevSize":32,"code":59963},"setIdx":0,"setId":0,"iconIdx":315},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM698.88 718.080c-49.89 35.754-112.165 57.173-179.444 57.173-0.064 0-0.129-0-0.193-0l0.010 0c-72.081-0.935-139.031-22.107-195.657-58.078l1.523 0.904c-7.825-5.983-12.821-15.322-12.821-25.829 0-6.225 1.754-12.040 4.795-16.978l-0.080 0.14c5.815-7.813 15.023-12.82 25.4-12.82 6.423 0 12.399 1.918 17.384 5.213l-0.118-0.073c42.395 28.329 94.533 45.208 150.613 45.208s108.219-16.879 151.611-45.834l-0.998 0.626c4.831-3.231 10.773-5.157 17.165-5.157 10.505 0 19.794 5.2 25.436 13.167l0.065 0.097c3.761 5.133 6.018 11.574 6.018 18.541 0 9.424-4.129 17.884-10.677 23.669l-0.034 0.029z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["happy-emoji"]},"attrs":[{}],"properties":{"order":7281,"id":256,"name":"happy-emoji","prevSize":32,"code":59964},"setIdx":0,"setId":0,"iconIdx":316},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM541.44 706.987c-8.475 3.841-18.376 6.080-28.8 6.080s-20.325-2.238-29.25-6.261l0.45 0.181c-62.293-29.867-205.227-114.773-203.093-259.84-0.003-0.364-0.005-0.794-0.005-1.224 0-63.669 43.445-117.191 102.306-132.538l0.952-0.211c11.573-3.259 24.863-5.133 38.591-5.133 25.215 0 48.954 6.322 69.718 17.467l-0.789-0.387c6.12 3.594 13.479 5.716 21.333 5.716s15.214-2.123 21.535-5.825l-0.201 0.109c20.197-10.827 44.185-17.187 69.66-17.187 17.534 0 34.365 3.013 50.002 8.55l-1.048-0.323c53.579 19.072 91.392 69.022 92.159 127.908l0.001 0.092c-4.693 162.133-142.080 238.507-203.52 262.827z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart-circle"]},"attrs":[{}],"properties":{"order":7282,"id":255,"name":"heart-circle","prevSize":32,"code":59965},"setIdx":0,"setId":0,"iconIdx":317},{"icon":{"paths":["M959.147 384c-5.547 329.387-298.667 469.333-401.493 508.16-8.994 3.52-19.408 5.56-30.298 5.56-12.838 0-25.013-2.835-35.935-7.913l0.526 0.22c-101.12-46.080-406.613-207.36-402.347-502.613-0.001-0.298-0.002-0.651-0.002-1.004 0-119.604 80.942-220.303 191.037-250.307l1.819-0.422c21.626-6.067 46.461-9.554 72.11-9.554 55.989 0 108.097 16.617 151.662 45.188l-1.052-0.647c5.47 3.632 12.189 5.795 19.413 5.795s13.943-2.163 19.544-5.877l-0.131 0.082c42.496-27.743 94.523-44.245 150.404-44.245 32.948 0 64.556 5.737 93.88 16.266l-1.938-0.607c100.361 36.944 170.996 130.956 172.797 241.703l0.003 0.217z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["heart"]},"attrs":[{}],"properties":{"order":7283,"id":254,"name":"heart","prevSize":32,"code":59966},"setIdx":0,"setId":0,"iconIdx":318},{"icon":{"paths":["M885.76 355.84l-270.933-227.84c-25.77-22.11-59.525-35.569-96.423-35.569-34.768 0-66.745 11.95-92.047 31.967l0.311-0.237-283.733 220.16c-35.705 27.649-58.469 70.525-58.469 118.718 0 5.675 0.316 11.276 0.93 16.786l-0.061-0.678 37.547 320.427c9.052 74.366 71.801 131.413 147.876 131.413 0.063 0 0.125-0 0.187-0l465.484 0c72.939-0.208 133.492-52.976 145.789-122.411l0.131-0.895 56.32-313.173c1.233-7.167 1.938-15.421 1.938-23.84 0-46.257-21.275-87.544-54.573-114.612l-0.272-0.214zM512 668.16c-60.559-0-109.653-49.094-109.653-109.653s49.093-109.653 109.653-109.653c60.56 0 109.653 49.093 109.653 109.653 0 0.15-0 0.3-0.001 0.45l0-0.023c-0.242 60.376-49.243 109.227-109.653 109.227-0 0-0.001-0-0.001-0l-0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-1"]},"attrs":[{}],"properties":{"order":7284,"id":253,"name":"home-1","prevSize":32,"code":59967},"setIdx":0,"setId":0,"iconIdx":319},{"icon":{"paths":["M843.093 318.293l-216.32-190.293c-30.185-26.203-69.868-42.173-113.28-42.173s-83.095 15.969-113.494 42.354l0.214-0.182-217.6 187.307c-60.224 51.723-98.133 127.956-98.133 213.043 0 0.102 0 0.204 0 0.306l-0-0.016 0.853 239.36c1.204 93.335 77.147 168.533 170.653 168.533 0.005 0 0.009-0 0.014-0l511.999 0c0.008 0 0.017 0 0.026 0 93.206 0 168.962-74.717 170.638-167.523l0.002-0.157v-239.36c-0.182-83.977-36.983-159.322-95.276-210.942l-0.297-0.258zM544.427 814.933c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-122.027c0-17.673 14.327-32 32-32s32 14.327 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-2"]},"attrs":[{}],"properties":{"order":7285,"id":252,"name":"home-2","prevSize":32,"code":59968},"setIdx":0,"setId":0,"iconIdx":320},{"icon":{"paths":["M843.947 318.72l-216.32-190.72c-29.984-26.701-69.727-43.016-113.28-43.016s-83.296 16.314-113.451 43.165l0.171-0.15-218.027 187.733c-60.073 51.948-97.918 128.2-98.133 213.296l-0 0.037 0.427 238.933c0 94.257 76.41 170.667 170.667 170.667v0 0c93.013 0 418.56 0 512 0 0.010 0 0.022 0 0.034 0 93.056 0 168.718-74.477 170.63-167.075l0.003-0.178v-239.787c0.008-0.781 0.012-1.704 0.012-2.627 0-83.562-36.508-158.598-94.443-210.027l-0.289-0.252zM682.667 817.92h-341.333c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h341.333c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home-3"]},"attrs":[{}],"properties":{"order":7286,"id":251,"name":"home-3","prevSize":32,"code":59969},"setIdx":0,"setId":0,"iconIdx":321},{"icon":{"paths":["M875.093 341.333l-245.333-213.333c-31.312-27.022-72.401-43.481-117.333-43.481s-86.021 16.459-117.565 43.676l0.232-0.196-245.76 213.333c-39.318 34.512-64.003 84.871-64.003 140.997 0 0.381 0.001 0.762 0.003 1.142l-0-0.059v357.12c-0 0.002-0 0.005-0 0.008 0 53.747 43.209 97.403 96.785 98.124l0.068 0.001h145.067c0.508 0.010 1.107 0.015 1.708 0.015 53.962 0 97.707-43.745 97.707-97.707 0-0.155-0-0.31-0.001-0.466l0 0.024v-184.32c-0.007-0.429-0.011-0.935-0.011-1.442 0-43.701 30.845-80.197 71.951-88.906l0.594-0.105c4.879-0.99 10.487-1.557 16.228-1.557 47.128 0 85.333 38.205 85.333 85.333 0 0.548-0.005 1.094-0.015 1.639l0.001-0.082v189.44c-0.001 0.131-0.001 0.286-0.001 0.442 0 53.362 42.778 96.733 95.911 97.691l0.090 0.001h145.067c53.644-0.722 96.853-44.378 96.853-98.125 0-0.003-0-0.006-0-0.009l0 0.001v-357.547c0.001-0.192 0.001-0.42 0.001-0.648 0-56.044-24.502-106.365-63.379-140.835l-0.196-0.17z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["home"]},"attrs":[{}],"properties":{"order":7287,"id":250,"name":"home","prevSize":32,"code":59970},"setIdx":0,"setId":0,"iconIdx":322},{"icon":{"paths":["M775.253 85.333h-526.507c-0.045-0-0.098-0-0.152-0-58.91 0-106.667 47.756-106.667 106.667 0 3.907 0.21 7.766 0.62 11.564l-0.041-0.471 60.587 581.547c4.478 43.728 35 79.277 75.626 91.12l0.748 0.187 203.093 58.453c8.818 2.641 18.952 4.161 29.44 4.161s20.622-1.52 30.192-4.351l-0.752 0.191 203.947-58.453c41.476-12.254 72.073-47.874 76.758-91.26l0.042-0.474 59.307-581.12c0.368-3.328 0.578-7.186 0.578-11.093 0-58.91-47.756-106.667-106.667-106.667-0.053 0-0.107 0-0.16 0l0.008-0zM689.92 321.28h-321.28l12.8 128 287.147 5.973c17.347 0.42 31.25 14.582 31.25 31.991 0 0.904-0.037 1.8-0.111 2.685l0.008-0.116-17.067 199.68c-1.165 13.060-10.021 23.78-21.96 27.67l-0.226 0.064-148.48 47.787c-1.475 0.292-3.171 0.459-4.907 0.459s-3.431-0.167-5.073-0.486l0.167 0.027c-1.346 0.198-2.9 0.311-4.48 0.311s-3.134-0.113-4.654-0.331l0.174 0.020-136.107-39.68c-11.826-3.424-20.673-13.271-22.59-25.421l-0.023-0.179-13.227-79.36c-0.752-2.586-1.185-5.556-1.185-8.627 0-17.673 14.327-32 32-32 16.805 0 30.585 12.954 31.898 29.421l0.007 0.112 9.813 59.733 109.227 32 118.187-37.973 11.52-145.493-280.747-5.547c-16.32-0.376-29.597-12.914-31.137-28.883l-0.010-0.13-19.627-190.293c-0.18-1.283-0.283-2.765-0.283-4.272 0-17.708 14.194-32.101 31.826-32.421l0.030-0h358.4c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["html"]},"attrs":[{}],"properties":{"order":7288,"id":249,"name":"html","prevSize":32,"code":59971},"setIdx":0,"setId":0,"iconIdx":323},{"icon":{"paths":["M584.107 96c199.981 35.805 349.803 208.397 349.867 415.994l0 0.006c0 11.093 0 21.76 0 32.427-60.211-27.523-111.992-61.823-157.56-102.885l0.547 0.485c5.057-10.085 8.044-21.967 8.107-34.539l0-0.021c0-42.651-34.576-77.227-77.227-77.227v0c-9.031 0.067-17.676 1.624-25.733 4.437l0.56-0.17c-47.726-67.574-82.273-147.946-98.013-234.865l-0.547-3.642zM363.093 130.987c0.199 40.074 2.519 79.36 6.852 118.038l-0.452-4.971c32.275 9.575 55.417 38.967 55.417 73.763 0 25.576-12.502 48.232-31.728 62.19l-0.222 0.154c21.41 88.238 50.68 165.564 88.1 237.997l-2.766-5.89h8.533c37.379 0.086 68.548 26.568 75.859 61.79l0.087 0.503c45.131 7.053 97.185 11.086 150.181 11.093l0.006 0c68.218-0.276 134.704-6.941 199.112-19.426l-6.685 1.079c6.279-15.49 12.285-34.436 16.924-53.912l0.57-2.835c-75.981-32.903-141.183-75.955-197.54-128.387l0.42 0.387c-5.566 1.426-12.009 2.347-18.632 2.556l-0.141 0.004c-42.887 0-77.653-34.767-77.653-77.653v0c0.076-10.309 2.106-20.123 5.737-29.12l-0.19 0.533c-58.789-81.483-100.122-179.396-116.436-285.558l-0.471-3.722h-5.973c-53.114 0.262-103.817 10.257-150.522 28.29l2.895-0.983c-1.28 4.267-1.28 11.093-1.28 14.080zM619.093 920.32c-44.674-46.425-85.782-97.017-122.444-150.879l-2.57-4.001h-6.827c-36.514-0.018-67.132-25.235-75.411-59.202l-0.109-0.531c-120.987-33.836-226.822-82.697-322.614-145.597l4.32 2.663c25.793 210.423 203.292 371.816 418.535 372.053l0.025 0c61.859-0.367 120.479-13.841 173.35-37.78l-2.683 1.087c-17.763 7.867-39.34 15.446-61.569 21.434l-3.284 0.753zM713.387 749.653c-57.129-0.086-113.172-4.426-167.917-12.72l6.21 0.774c40.986 59.104 84.753 110.862 132.946 158.123l0.174 0.17c76.553-34.925 138.985-89.541 182.457-157.46l1.010-1.687c-46.486 7.054-100.558 11.377-155.531 11.942l-0.629 0.005zM421.547 644.693c-37.072-71.976-68.534-155.698-90.073-243.321l-1.66-7.986c-34.595-8.362-59.93-38.95-60.16-75.494l-0-0.026c-0-0.014-0-0.031-0-0.047 0-27.403 14.351-51.453 35.948-65.046l0.318-0.187c-3.413-34.987-7.253-70.4-7.253-105.813-119.043 69.828-199.979 193.475-209.427 336.655l-0.067 1.265c95.030 68.63 205.629 123.346 324.742 158.093l7.632 1.907z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["icon"]},"attrs":[{}],"properties":{"order":7289,"id":248,"name":"icon","prevSize":32,"code":59972},"setIdx":0,"setId":0,"iconIdx":324},{"icon":{"paths":["M445.44 436.48l34.987 105.387h-81.493zM940.8 682.667c0 0.005 0 0.011 0 0.017 0 140.335-112.919 254.296-252.854 255.981l-0.159 0.002h-346.453c-0.005 0-0.011 0-0.017 0-140.335 0-254.296-112.919-255.981-252.854l-0.002-0.159v-344.32c-0-0.015-0-0.033-0-0.051 0-139.585 111.715-253.077 250.612-255.944l0.268-0.004h346.453c0.005-0 0.011-0 0.017-0 140.335 0 254.296 112.919 255.981 252.854l0.002 0.159zM594.347 682.667l-114.347-344.747c-3.99-12.376-15.188-21.264-28.53-21.758l-0.056-0.002c-0.548-0.034-1.189-0.053-1.834-0.053-12.824 0-23.863 7.646-28.806 18.627l-0.080 0.199-153.173 344.747c-2.363 4.354-3.753 9.533-3.753 15.037 0 17.673 14.327 32 32 32 13.888 0 25.71-8.847 30.136-21.213l0.070-0.223 42.667-99.413h131.413l32 96.853c4.4 12.751 16.295 21.749 30.292 21.76l0.001 0c1.539 0.294 3.31 0.462 5.12 0.462s3.581-0.168 5.297-0.49l-0.177 0.028c13.749-3.792 23.679-16.186 23.679-30.899 0-3.916-0.703-7.668-1.991-11.136l0.072 0.221zM745.813 459.52c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 233.387c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM756.053 348.587c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667v0c0.001 0 0.001 0 0.002 0 23.564 0 42.667-19.103 42.667-42.667 0-0.15-0.001-0.3-0.002-0.449l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["illustrator"]},"attrs":[{}],"properties":{"order":7290,"id":247,"name":"illustrator","prevSize":32,"code":59973},"setIdx":0,"setId":0,"iconIdx":325},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 736.427c-23.564 0-42.667-19.103-42.667-42.667v0-198.827c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 198.827c0 23.564-19.103 42.667-42.667 42.667v0zM512 395.093c-29.454-0.001-53.332-23.879-53.332-53.333s23.878-53.333 53.333-53.333c29.305 0 53.090 23.636 53.331 52.884l0 0.023c-0.236 29.446-23.923 53.283-53.288 53.759l-0.045 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information-2"]},"attrs":[{}],"properties":{"order":7291,"id":246,"name":"information-2","prevSize":32,"code":59974},"setIdx":0,"setId":0,"iconIdx":326},{"icon":{"paths":["M824.747 241.067l-234.667-135.68c-22.418-13.073-49.348-20.79-78.080-20.79s-55.662 7.718-78.829 21.193l0.749-0.402-234.667 135.68c-46.998 27.4-78.080 77.566-78.080 134.992 0 0.092 0 0.184 0 0.275l-0-0.014v271.36c-0 0.078-0 0.169-0 0.261 0 57.426 31.082 107.593 77.341 134.594l0.739 0.399 234.667 135.68c22.418 13.073 49.348 20.79 78.080 20.79s55.662-7.718 78.829-21.193l-0.749 0.402 234.667-135.68c46.998-27.4 78.080-77.566 78.080-134.992 0-0.092-0-0.184-0-0.275l0 0.014v-271.36c0-0.078 0-0.169 0-0.261 0-57.426-31.082-107.593-77.341-134.594l-0.739-0.399zM469.333 330.24c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 198.827c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0zM512 736.427c-29.454-0.001-53.332-23.879-53.332-53.333s23.878-53.333 53.333-53.333c29.305 0 53.090 23.636 53.331 52.884l0 0.023c0.001 0.127 0.002 0.277 0.002 0.427 0 29.455-23.878 53.333-53.333 53.333-0.001 0-0.001-0-0.002-0l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information-3"]},"attrs":[{}],"properties":{"order":7292,"id":245,"name":"information-3","prevSize":32,"code":59975},"setIdx":0,"setId":0,"iconIdx":327},{"icon":{"paths":["M902.827 647.68v-271.36c0-0.078 0-0.169 0-0.261 0-57.426-31.082-107.593-77.341-134.594l-0.739-0.399-234.667-135.68c-22.418-13.073-49.348-20.79-78.080-20.79s-55.662 7.718-78.829 21.193l0.749-0.402-234.667 135.68c-46.998 27.4-78.080 77.566-78.080 134.992 0 0.092 0 0.184 0 0.275l-0-0.014v271.36c-0 0.078-0 0.169-0 0.261 0 57.426 31.082 107.593 77.341 134.594l0.739 0.399 234.667 135.68c22.418 13.073 49.348 20.79 78.080 20.79s55.662-7.718 78.829-21.193l-0.749 0.402 234.667-135.68c46.998-27.4 78.080-77.566 78.080-134.992 0-0.092-0-0.184-0-0.275l0 0.014zM469.333 494.933c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 198.827c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0zM565.333 341.333c-0.242 29.271-24.026 52.907-53.332 52.907-29.455 0-53.333-23.878-53.333-53.333s23.877-53.332 53.332-53.333l0-0c0.001-0 0.001-0 0.002-0 29.455 0 53.333 23.878 53.333 53.333 0 0.15-0.001 0.3-0.002 0.45l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information-4"]},"attrs":[{}],"properties":{"order":7293,"id":244,"name":"information-4","prevSize":32,"code":59976},"setIdx":0,"setId":0,"iconIdx":328},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM469.333 330.24c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 198.827c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0zM512 736.427c-29.454-0.001-53.332-23.879-53.332-53.333s23.878-53.333 53.333-53.333c29.305 0 53.090 23.636 53.331 52.884l0 0.023c0.001 0.127 0.002 0.277 0.002 0.427 0 29.455-23.878 53.333-53.333 53.333-0.001 0-0.001-0-0.002-0l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information-5"]},"attrs":[{}],"properties":{"order":7294,"id":243,"name":"information-5","prevSize":32,"code":59977},"setIdx":0,"setId":0,"iconIdx":329},{"icon":{"paths":["M912.64 449.28l-59.307-60.16c-7.905-7.75-12.805-18.541-12.805-30.475 0-0.236 0.002-0.472 0.006-0.707l-0 0.036v-85.333c-0.24-48.831-39.881-88.324-88.746-88.324-0.3 0-0.6 0.001-0.9 0.004l0.046-0h-85.333c-0.2 0.003-0.435 0.005-0.671 0.005-11.935 0-22.725-4.9-30.468-12.798l-0.007-0.007-59.733-60.16c-16.057-16.040-38.23-25.96-62.72-25.96s-46.663 9.92-62.721 25.961l0.001-0.001-60.16 59.307c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0h-85.333c-48.831 0.24-88.324 39.881-88.324 88.746 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v85.333c0.003 0.2 0.005 0.435 0.005 0.671 0 11.935-4.9 22.725-12.798 30.468l-0.007 0.007-60.16 59.733c-16.040 16.057-25.96 38.23-25.96 62.72s9.92 46.663 25.961 62.721l-0.001-0.001 59.307 60.16c7.905 7.75 12.805 18.541 12.805 30.475 0 0.236-0.002 0.472-0.006 0.707l0-0.036v85.333c0.24 48.831 39.881 88.324 88.746 88.324 0.3 0 0.6-0.001 0.9-0.004l-0.046 0h85.333c0.2-0.003 0.435-0.005 0.671-0.005 11.935 0 22.725 4.9 30.468 12.798l0.007 0.007 60.16 60.16c16.057 16.040 38.23 25.96 62.72 25.96s46.663-9.92 62.721-25.961l-0.001 0.001 59.733-59.307c7.75-7.905 18.541-12.805 30.475-12.805 0.236 0 0.472 0.002 0.707 0.006l-0.036-0h85.333c49.013-0 88.747-39.733 88.747-88.747v0-85.333c-0.003-0.2-0.005-0.435-0.005-0.671 0-11.935 4.9-22.725 12.798-30.468l0.007-0.007 60.16-60.16c16.041-16.057 25.961-38.23 25.961-62.721 0-24.702-10.092-47.047-26.379-63.137l-0.009-0.009zM469.333 330.24c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 198.827c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0zM512 736.427c-29.454-0.001-53.332-23.879-53.332-53.333s23.878-53.333 53.333-53.333c29.305 0 53.090 23.636 53.331 52.884l0 0.023c0.001 0.127 0.002 0.277 0.002 0.427 0 29.455-23.878 53.333-53.333 53.333-0.001 0-0.001-0-0.002-0l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["information"]},"attrs":[{}],"properties":{"order":7295,"id":242,"name":"information","prevSize":32,"code":59978},"setIdx":0,"setId":0,"iconIdx":330},{"icon":{"paths":["M670.293 85.333h-319.573c-0.128-0-0.28-0-0.432-0-146.333 0-264.96 118.627-264.96 264.96 0 0.6 0.002 1.2 0.006 1.799l-0-0.092v318.293c-0.003 0.508-0.005 1.109-0.005 1.71 0 146.828 118.665 265.94 265.323 266.663l0.069 0h319.573c148.121-0.243 268.131-120.253 268.373-268.35l0-0.023v-318.293c-0.485-147.381-120.071-266.668-267.519-266.668-0.301 0-0.601 0-0.901 0.001l0.047-0zM664.747 512c-0.005 85.298-69.154 154.444-154.453 154.444-85.302 0-154.453-69.151-154.453-154.453s69.151-154.453 154.453-154.453c0.6 0 1.199 0.003 1.798 0.010l-0.091-0.001c84.464 0.483 152.749 69.066 152.749 153.598 0 0.301-0.001 0.602-0.003 0.902l0-0.046zM761.6 304.64c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c-0.479 23.194-19.394 41.813-42.658 41.813-0.003 0-0.006-0-0.009-0l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["instagram"]},"attrs":[{}],"properties":{"order":7296,"id":241,"name":"instagram","prevSize":32,"code":59979},"setIdx":0,"setId":0,"iconIdx":331},{"icon":{"paths":["M781.653 676.267h-224.853v-235.093c74.52-23.657 127.573-92.223 127.573-173.181 0-100.148-81.186-181.333-181.333-181.333s-181.333 81.186-181.333 181.333c0 80.957 53.053 149.523 126.289 172.828l1.284 0.353v235.093h-96.427v-29.013c0-0.001 0-0.002 0-0.003 0-17.523-14.085-31.757-31.551-31.997l-0.023-0h-32.853c-17.489 0.241-31.573 14.474-31.573 31.997 0 0.001 0 0.002 0 0.003l-0-0v29.013h-19.2c-55.376 0-100.267 44.891-100.267 100.267v0 59.733c0.242 55.192 45.040 99.84 100.266 99.84 0 0 0.001-0 0.001-0l544 0c0 0 0.001 0 0.001 0 55.226 0 100.023-44.648 100.266-99.817l0-0.023v-59.733c0-55.376-44.891-100.267-100.267-100.267v0zM426.667 213.333c0-21.443 17.383-38.827 38.827-38.827s38.827 17.383 38.827 38.827c0 21.443-17.383 38.827-38.827 38.827v0c-21.443 0-38.827-17.383-38.827-38.827v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["joystick"]},"attrs":[{}],"properties":{"order":7297,"id":240,"name":"joystick","prevSize":32,"code":59980},"setIdx":0,"setId":0,"iconIdx":332},{"icon":{"paths":["M512 967.68c-0.165 0.001-0.36 0.002-0.555 0.002-14.286 0-27.645-3.966-39.036-10.858l0.337 0.189-88.747-50.773c-9.485-5.67-15.737-15.884-15.737-27.559 0-5.532 1.404-10.736 3.874-15.275l-0.084 0.168c5.787-9.414 16.030-15.598 27.718-15.598 5.463 0 10.61 1.351 15.125 3.736l-0.177-0.085 87.893 50.773c2.028 1.41 4.542 2.253 7.253 2.253s5.226-0.843 7.295-2.281l-0.042 0.028 326.4-188.16c4.485-2.62 7.494-7.339 7.679-12.774l0.001-0.026v-378.027c-0.186-5.461-3.195-10.18-7.607-12.761l-0.073-0.039-324.267-188.16c-2.028-1.41-4.542-2.253-7.253-2.253s-5.226 0.843-7.295 2.281l0.042-0.028-326.4 188.16c-4.485 2.62-7.494 7.339-7.679 12.774l-0.001 0.026v369.067c0.050 10.561 5.82 19.763 14.368 24.673l0.139 0.074 85.333 49.067c4.712 2.767 10.379 4.402 16.427 4.402s11.715-1.634 16.582-4.485l-0.155 0.084c10-5.652 16.641-16.213 16.641-28.325 0-0.092-0-0.184-0.001-0.276l0 0.014-2.987-361.813c0.237-17.577 14.423-31.763 31.977-32l0.023-0c0.127-0.002 0.277-0.003 0.427-0.003 17.437 0 31.573 14.136 31.573 31.573 0 0.001-0 0.002-0 0.003l0-0 2.987 361.813c0.014 0.613 0.022 1.335 0.022 2.059 0 35.442-19.206 66.398-47.778 83.028l-0.458 0.246c-13.888 8.444-30.681 13.443-48.64 13.443s-34.752-4.998-49.061-13.68l0.421 0.237-85.333-48.64c-28.009-16.484-46.509-46.481-46.509-80.799 0-0.244 0.001-0.488 0.003-0.731l-0 0.037v-369.067c0.218-28.786 15.98-53.843 39.299-67.212l0.381-0.201 326.4-188.587c11.25-6.653 24.793-10.584 39.253-10.584s28.004 3.931 39.618 10.783l-0.364-0.199 326.4 188.587c23.821 13.641 39.625 38.889 39.68 67.832l0 0.008v377.173c-0.379 28.621-16.1 53.487-39.299 66.785l-0.381 0.201-326.4 188.587c-11.176 6.939-24.73 11.064-39.245 11.093l-0.008 0zM737.28 537.173c-6.467-12.259-15.395-22.414-26.193-30.117l-0.26-0.176c-12.272-8.183-26.418-15.002-41.488-19.734l-1.179-0.319c-14.454-5.419-32.443-10.706-50.875-14.819l-2.885-0.541-33.707-9.387c-7.786-2.14-14.591-5.054-20.88-8.751l0.4 0.218c-6.383-3.157-11.681-7.635-15.704-13.108l-0.083-0.118c-3.474-4.725-5.559-10.658-5.559-17.078 0-0.296 0.004-0.591 0.013-0.885l-0.001 0.043c0.198-12.256 6.746-22.941 16.49-28.928l0.15-0.086c11.589-7.762 25.849-12.388 41.188-12.388 0.52 0 1.038 0.005 1.556 0.016l-0.077-0.001c1.553-0.127 3.363-0.199 5.189-0.199 13.961 0 26.936 4.217 37.723 11.447l-0.245-0.155c9.582 8.55 17.347 18.909 22.797 30.568l0.243 0.579c3.844 7.657 8.394 14.251 13.72 20.128l-0.067-0.075c4.638 3.752 10.608 6.024 17.109 6.024 0.586 0 1.167-0.018 1.743-0.055l-0.079 0.004c0.137 0.002 0.299 0.004 0.461 0.004 8.725 0 16.523-3.968 21.688-10.197l0.038-0.047c5.549-5.87 8.96-13.811 8.96-22.549 0-0.023-0-0.045-0-0.068l0 0.004c0.435-2.851 0.684-6.141 0.684-9.489 0-6.812-1.030-13.383-2.942-19.566l0.125 0.468c-5.696-10.99-13.295-20.224-22.45-27.606l-0.164-0.128c-11.033-9.338-24.126-16.64-38.464-21.121l-0.789-0.212c-15.375-5.177-33.081-8.165-51.485-8.165-1.55 0-3.096 0.021-4.636 0.063l0.227-0.005c-2.685-0.14-5.83-0.221-8.993-0.221-22.334 0-43.736 3.991-63.532 11.298l1.271-0.411c-18.814 7.122-34.449 19.047-45.891 34.297l-0.189 0.263c-9.884 14.243-15.789 31.895-15.789 50.928 0 0.246 0.001 0.491 0.003 0.737l-0-0.038c-0.031 0.839-0.048 1.824-0.048 2.813 0 18 5.775 34.651 15.574 48.201l-0.166-0.241c10.338 13.949 23.837 24.985 39.474 32.166l0.632 0.26c17.936 7.947 39.162 14.988 61.155 20.015l2.418 0.465c18.212 4.004 33.212 8.264 47.858 13.284l-3.058-0.911c10.863 3.457 20.165 9.179 27.741 16.648l-0.008-0.008c6.617 7.071 10.681 16.603 10.681 27.085 0 0.378-0.005 0.755-0.016 1.131l0.001-0.055c0.002 0.152 0.003 0.331 0.003 0.51 0 15.186-7.933 28.518-19.881 36.080l-0.175 0.103c-13.155 9.398-29.564 15.027-47.288 15.027-1.376 0-2.744-0.034-4.103-0.101l0.191 0.008c-0.775 0.025-1.687 0.040-2.602 0.040-12.494 0-24.362-2.685-35.056-7.51l0.538 0.217c-8.839-4.5-16.149-10.854-21.637-18.591l-0.123-0.183c-5.369-7.971-10.238-17.1-14.144-26.722l-0.363-1.012c-2.993-8.315-7.502-15.432-13.241-21.348l0.014 0.015c-4.854-4.5-11.376-7.261-18.543-7.261-0.231 0-0.462 0.003-0.691 0.009l0.034-0.001c-0.273-0.009-0.593-0.014-0.915-0.014-8.471 0-16.141 3.429-21.699 8.974l0.001-0.001c-5.54 5.62-8.962 13.341-8.962 21.862 0 0.114 0.001 0.228 0.002 0.342l-0-0.017c0.456 17.272 5.975 33.169 15.119 46.363l-0.185-0.283c9.843 15.532 22.897 28.177 38.301 37.26l0.526 0.287c22.853 12.436 50.046 19.748 78.948 19.748 2.246 0 4.481-0.044 6.705-0.132l-0.32 0.010c2.46 0.123 5.341 0.194 8.239 0.194 24.278 0 47.404-4.934 68.429-13.853l-1.149 0.433c19.702-8.363 35.922-21.702 47.551-38.467l0.236-0.36c10.176-15.802 16.222-35.099 16.222-55.808 0-0.48-0.003-0.959-0.010-1.438l0.001 0.072c0.052-1.188 0.082-2.582 0.082-3.983 0-15.15-3.494-29.485-9.72-42.241l0.251 0.57z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["js-2"]},"attrs":[{}],"properties":{"order":7298,"id":239,"name":"js-2","prevSize":32,"code":59981},"setIdx":0,"setId":0,"iconIdx":333},{"icon":{"paths":["M775.253 85.333h-526.507c-0.045-0-0.098-0-0.152-0-58.91 0-106.667 47.756-106.667 106.667 0 3.907 0.21 7.766 0.62 11.564l-0.041-0.471 60.587 581.547c4.478 43.728 35 79.277 75.626 91.12l0.748 0.187 203.093 58.453c8.818 2.641 18.952 4.161 29.44 4.161s20.622-1.52 30.192-4.351l-0.752 0.191 203.947-58.453c41.476-12.254 72.073-47.874 76.758-91.26l0.042-0.474 59.307-581.12c0.368-3.328 0.578-7.186 0.578-11.093 0-58.91-47.756-106.667-106.667-106.667-0.053 0-0.107 0-0.16 0l0.008-0zM480.853 705.707c0 0.001 0 0.002 0 0.003 0 10.561-4.983 19.957-12.725 25.967l-0.075 0.056c-5.232 3.995-11.864 6.4-19.058 6.4-0.050 0-0.1-0-0.15-0l0.008 0c-1.41 0.199-3.038 0.312-4.693 0.312s-3.284-0.114-4.878-0.333l0.185 0.021-132.693-39.68c-13.45-4.155-23.053-16.477-23.053-31.042 0-3.23 0.472-6.35 1.352-9.294l-0.059 0.23c4.006-13.422 16.24-23.040 30.72-23.040 3.193 0 6.277 0.468 9.187 1.338l-0.227-0.058 91.733 27.307v-334.080c-0.136-1.115-0.213-2.405-0.213-3.713 0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427c0 1.309-0.078 2.599-0.228 3.867l0.015-0.153zM713.387 349.867l-110.933 17.493v144.64l93.44-11.947c1.413-0.224 3.043-0.352 4.703-0.352 17.437 0 31.573 14.136 31.573 31.573 0 0.274-0.003 0.547-0.010 0.819l0.001-0.040v128c0 14.48-9.618 26.714-22.813 30.662l-0.227 0.058-128 37.547c-1.825 0.365-3.924 0.573-6.071 0.573-17.909 0-32.427-14.518-32.427-32.427 0-13.483 8.228-25.043 19.937-29.934l0.214-0.079 106.24-30.72v-65.707l-93.44 11.52c-1.39 0.226-2.992 0.355-4.624 0.355-7.94 0-15.167-3.055-20.569-8.053l0.020 0.018c-6.803-5.751-11.093-14.291-11.093-23.832 0-0.021 0-0.043 0-0.064l-0 0.003v-208.64c-0.001-0.103-0.002-0.224-0.002-0.346 0-16.018 11.769-29.287 27.131-31.632l0.178-0.022 137.813-21.76c1.428-0.22 3.076-0.346 4.752-0.346 16.156 0 29.588 11.662 32.338 27.026l0.030 0.199c0.104 0.974 0.163 2.104 0.163 3.247 0 16.462-12.267 30.059-28.159 32.148l-0.164 0.018z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["js"]},"attrs":[{}],"properties":{"order":7299,"id":238,"name":"js","prevSize":32,"code":59982},"setIdx":0,"setId":0,"iconIdx":334},{"icon":{"paths":["M373.333 938.667h-213.333c-41.237 0-74.667-33.429-74.667-74.667v0-704c0-41.237 33.429-74.667 74.667-74.667v0h213.333c41.237 0 74.667 33.429 74.667 74.667v0 704c0 41.237-33.429 74.667-74.667 74.667v0zM938.667 565.333v-405.333c0-41.237-33.429-74.667-74.667-74.667v0h-213.333c-41.237 0-74.667 33.429-74.667 74.667v0 405.333c0 41.237 33.429 74.667 74.667 74.667v0h213.333c41.237 0 74.667-33.429 74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["kanban"]},"attrs":[{}],"properties":{"order":7300,"id":237,"name":"kanban","prevSize":32,"code":59983},"setIdx":0,"setId":0,"iconIdx":335},{"icon":{"paths":["M635.733 450.133c0.001 0.126 0.001 0.276 0.001 0.425 0 34.168-27.699 61.867-61.867 61.867s-61.867-27.699-61.867-61.867c0-34.168 27.699-61.867 61.867-61.867 0.15 0 0.299 0.001 0.448 0.002l-0.023-0c33.932 0 61.44 27.508 61.44 61.44l0-0zM938.667 305.493v413.013c0 0.127 0 0.277 0 0.427 0 121.355-98.378 219.733-219.733 219.733-0.15 0-0.3-0-0.45-0l0.023 0h-413.013c-0.127 0-0.277 0-0.427 0-121.355 0-219.733-98.378-219.733-219.733 0-0.15 0-0.3 0-0.45l-0 0.023v-413.013c0-121.591 98.569-220.16 220.16-220.16v0h413.013c121.591 0 220.16 98.569 220.16 220.16h-0zM762.027 450.133c-4.913-99.991-87.179-179.203-187.947-179.203s-183.034 79.211-187.929 178.764l-0.017 0.439c0.142 20.312 3.408 39.81 9.342 58.108l-0.382-1.361-123.733 123.733c-5.875 6.059-9.496 14.333-9.496 23.452 0 2.117 0.195 4.188 0.568 6.196l-0.032-0.208 12.373 62.72c2.554 13.079 12.59 23.258 25.385 25.988l0.215 0.038 63.573 12.373c1.862 0.385 4.003 0.605 6.195 0.605 8.932 0 17.009-3.66 22.814-9.561l0.004-0.004 28.16-26.88-45.653-42.667c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 46.933 44.8 50.347-49.92c16.896 5.683 36.353 8.963 56.576 8.963 0.36 0 0.72-0.001 1.080-0.003l-0.055 0c103.144-0.708 186.484-84.486 186.484-187.729 0-1.202-0.011-2.401-0.034-3.597l0.003 0.18z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["key-square"]},"attrs":[{}],"properties":{"order":7301,"id":236,"name":"key-square","prevSize":32,"code":59984},"setIdx":0,"setId":0,"iconIdx":336},{"icon":{"paths":["M557.653 94.72c-127.143 24.754-226.114 122.293-252.64 246.656l-0.373 2.091c-4.163 19.438-6.547 41.77-6.547 64.659 0 34.816 5.516 68.343 15.722 99.756l-0.641-2.282-210.347 210.347c-9.861 10.007-15.95 23.754-15.95 38.923 0 3.739 0.37 7.392 1.076 10.924l-0.059-0.354 20.48 107.093c4.687 21.412 21.255 37.98 42.299 42.599l0.367 0.068 109.227 23.467c3.156 0.648 6.783 1.018 10.497 1.018 15.27 0 29.077-6.267 38.988-16.37l0.008-0.009 48.213-48.213c4.005-3.816 6.496-9.19 6.496-15.147s-2.491-11.331-6.488-15.139l-0.008-0.008-75.52-72.533c-5.612-5.944-9.062-13.983-9.062-22.827s3.45-16.882 9.077-22.843l-0.015 0.016c5.835-5.682 13.815-9.186 22.613-9.186s16.778 3.504 22.62 9.193l-0.007-0.007 77.227 74.24c3.845 3.771 9.117 6.098 14.933 6.098s11.088-2.327 14.937-6.102l-0.003 0.003 85.333-85.333c29.414 9.862 63.283 15.553 98.481 15.553 176.495 0 319.573-143.078 319.573-319.573s-143.078-319.573-319.573-319.573c-21.404 0-42.316 2.104-62.541 6.117l2.033-0.336zM617.813 512c-0.127 0.001-0.276 0.001-0.426 0.001-57.968 0-104.96-46.992-104.96-104.96s46.992-104.96 104.96-104.96c57.968 0 104.96 46.992 104.96 104.96 0 0.15-0 0.299-0.001 0.449l0-0.023c-0.241 57.635-46.898 104.292-104.51 104.533l-0.023 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["key"]},"attrs":[{}],"properties":{"order":7302,"id":235,"name":"key","prevSize":32,"code":59985},"setIdx":0,"setId":0,"iconIdx":337},{"icon":{"paths":["M480 377.173v-46.933c-0-0-0-0.001-0-0.001 0-67.95 54.963-123.063 122.857-123.306l0.023-0h20.907c32.519 0 58.88-26.361 58.88-58.88v0-27.733c0-17.673 14.327-32 32-32s32 14.327 32 32v0 27.733c0 67.865-55.015 122.88-122.88 122.88v0h-20.907c-0-0-0.001-0-0.002-0-32.519 0-58.88 26.361-58.88 58.88 0 0.15 0.001 0.3 0.002 0.45l-0-0.023v46.933zM938.667 426.667v457.813c-0 28.277-22.923 51.2-51.2 51.2l0 0h-750.933c-28.277-0-51.2-22.923-51.2-51.2v0-457.813c0-28.277 22.923-51.2 51.2-51.2v0h750.933c28.277 0 51.2 22.923 51.2 51.2h0zM640 642.987c-17.202 0-31.147 13.945-31.147 31.147s13.945 31.147 31.147 31.147c17.202 0 31.147-13.945 31.147-31.147v0c-0.931-16.452-14.498-29.44-31.1-29.44-0.016 0-0.033 0-0.049 0l0.003-0zM566.187 546.133c0 17.202 13.945 31.147 31.147 31.147s31.147-13.945 31.147-31.147c0-17.202-13.945-31.147-31.147-31.147v0c-0.014-0-0.030-0-0.047-0-17.202 0-31.147 13.945-31.147 31.147 0 0.6 0.017 1.197 0.051 1.789l-0.004-0.082zM512 644.693c-17.202 0-31.147 13.945-31.147 31.147s13.945 31.147 31.147 31.147c17.202 0 31.147-13.945 31.147-31.147v0c0-17.202-13.945-31.147-31.147-31.147v0zM438.187 547.84c0 17.202 13.945 31.147 31.147 31.147s31.147-13.945 31.147-31.147c0-17.202-13.945-31.147-31.147-31.147v0c-17.202 0-31.147 13.945-31.147 31.147v0zM182.187 547.84c0 17.202 13.945 31.147 31.147 31.147s31.147-13.945 31.147-31.147c0-17.202-13.945-31.147-31.147-31.147h0c-17.202 0-31.147 13.945-31.147 31.147v0zM293.12 803.84c0-17.673-14.327-32-32-32v0h-52.907c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h52.907c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM293.12 675.84c0-17.673-14.327-32-32-32v0h-52.907c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h52.907c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM341.333 578.987c17.202 0 31.147-13.945 31.147-31.147s-13.945-31.147-31.147-31.147c-17.202 0-31.147 13.945-31.147 31.147v0c0 17.202 13.945 31.147 31.147 31.147h0zM352.853 675.84c0 17.202 13.945 31.147 31.147 31.147s31.147-13.945 31.147-31.147c0-17.202-13.945-31.147-31.147-31.147v0c-17.202 0-31.147 13.945-31.147 31.147v0zM714.667 803.84c0-17.673-14.327-32-32-32v0h-292.267c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h292.267c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM842.667 803.84c0-17.202-13.945-31.147-31.147-31.147s-31.147 13.945-31.147 31.147c0 17.202 13.945 31.147 31.147 31.147v0c16.831-0.476 30.293-14.233 30.293-31.135 0-0.004-0-0.008-0-0.012l0 0.001zM842.667 675.84c0-17.673-14.327-32-32-32v0h-52.48c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h52.48c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM847.787 547.84c0-17.673-14.327-32-32-32v0h-90.453c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h90.453c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["keyboard"]},"attrs":[{}],"properties":{"order":7303,"id":234,"name":"keyboard","prevSize":32,"code":59986},"setIdx":0,"setId":0,"iconIdx":338},{"icon":{"paths":["M853.333 810.667h-682.667c-47.128 0-85.333-38.205-85.333-85.333v0h853.333c0 47.128-38.205 85.333-85.333 85.333v0zM896 661.333v-398.933c-0.239-27.002-22.065-48.827-49.044-49.067l-0.023-0h-669.867c-27.002 0.239-48.827 22.065-49.067 49.044l-0 0.023v398.933z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["laptop"]},"attrs":[{}],"properties":{"order":7304,"id":233,"name":"laptop","prevSize":32,"code":59987},"setIdx":0,"setId":0,"iconIdx":339},{"icon":{"paths":["M428.8 749.227v183.040c-7.851-0.597-15.102-2.58-21.707-5.706l0.374 0.159-290.56-165.547c-12.705-7.231-21.253-20.483-21.758-35.771l-0.002-0.069v-547.413l5.973 4.267 154.88 91.307 3.84 375.040 167.253 100.693zM761.6 557.653v-187.733l-159.573-95.573c-3.489 6.049-5.548 13.303-5.548 21.039 0 0.104 0 0.207 0.001 0.311l-0-0.016v165.12l166.827 96.853zM573.013 497.92l-18.347-12.373-122.453 69.12-128 71.253 124.587 75.093 248.747-142.507zM298.667 273.067l2.987 303.36 109.227-60.16 21.333-11.52v-298.667c0.212-1.729 0.333-3.73 0.333-5.76s-0.121-4.031-0.357-5.997l0.023 0.237c-0.948-3.88-2.415-7.295-4.352-10.386l0.086 0.146-129.28 66.133zM279.467 213.333l107.947-58.88-105.387-57.6c-5.859-3.224-12.841-5.121-20.267-5.121-0.075 0-0.15 0-0.225 0.001l0.012-0c-0.142-0.002-0.309-0.003-0.476-0.003-7.389 0-14.295 2.064-20.175 5.647l0.171-0.097-62.293 34.56-42.667 22.613 122.453 70.4zM471.467 905.813l3.413 6.827 267.52-155.733c3.188-2.161 5.975-4.405 8.564-6.856l-0.031 0.029c7.648-7.709 12.374-18.326 12.374-30.047 0-0.087-0-0.173-0.001-0.26l0 0.013v-162.133l-293.973 167.68zM923.307 274.773c-1.866-3.242-3.987-6.041-6.411-8.545l0.011 0.011c-2.555-2.685-5.509-4.959-8.774-6.734l-0.186-0.093-123.307-72.107c-6.049-3.489-13.303-5.548-21.039-5.548-0.104 0-0.207 0-0.311 0.001l0.016-0c-0.088-0.001-0.191-0.001-0.295-0.001-7.735 0-14.99 2.058-21.246 5.658l0.207-0.11-101.973 59.307 146.347 85.333 20.053 11.52 118.187-69.973zM826.88 381.44l-20.907 12.8v138.24l101.973-59.307 2.56-2.133c8.59-6.148 14.743-15.225 17.016-25.746l0.051-0.281c0.198-1.282 0.311-2.761 0.311-4.267s-0.113-2.984-0.331-4.429l0.020 0.162v-115.2z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["laravel"]},"attrs":[{}],"properties":{"order":7305,"id":232,"name":"laravel","prevSize":32,"code":59988},"setIdx":0,"setId":0,"iconIdx":340},{"icon":{"paths":["M678.4 85.333h-332.8c-143.644 0.242-260.024 116.623-260.267 260.243l-0 0.023v332.8c0.242 143.644 116.623 260.024 260.243 260.267l0.023 0h332.8c143.644-0.242 260.024-116.623 260.267-260.243l0-0.023v-332.8c-0.242-143.644-116.623-260.024-260.243-260.267l-0.023-0zM581.12 626.347c7.114 7.169 11.511 17.045 11.511 27.947s-4.397 20.777-11.514 27.949l0.002-0.003c-7.185 6.867-16.944 11.093-27.691 11.093-0.015 0-0.030-0-0.045-0l0.002 0c-11.189-0.402-21.219-5.052-28.589-12.376l0.002 0.002-140.8-144.64c-6.619-6.95-10.692-16.378-10.692-26.757 0-0.493 0.009-0.984 0.027-1.473l-0.002 0.071c-0.001-0.079-0.001-0.173-0.001-0.266 0-10.833 4.588-20.594 11.926-27.447l0.022-0.020 145.92-139.093c6.735-5.442 15.402-8.736 24.838-8.736 21.915 0 39.68 17.765 39.68 39.68 0 10.075-3.755 19.273-9.942 26.271l0.037-0.042-116.48 113.493z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["left-square"]},"attrs":[{}],"properties":{"order":7306,"id":231,"name":"left-square","prevSize":32,"code":59989},"setIdx":0,"setId":0,"iconIdx":341},{"icon":{"paths":["M617.813 810.667c-11.868-0.051-22.584-4.939-30.287-12.793l-0.007-0.007-252.587-253.867c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 252.587-253.013c7.753-7.753 18.463-12.548 30.293-12.548 23.661 0 42.841 19.181 42.841 42.841 0 11.83-4.795 22.541-12.548 30.293l-0 0-221.44 220.587 222.72 222.72c10.012 7.882 16.382 20.001 16.382 33.609 0 23.564-19.103 42.667-42.667 42.667-1.864 0-3.701-0.12-5.502-0.351l0.213 0.022z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["left"]},"attrs":[{}],"properties":{"order":7307,"id":230,"name":"left","prevSize":32,"code":59990},"setIdx":0,"setId":0,"iconIdx":342},{"icon":{"paths":["M771.413 85.333h-518.827c-67.68 0.212-122.687 54.174-124.583 121.425l-0.004 0.175v469.333c0 68.807 55.779 124.587 124.587 124.587v0h48.64c27.432 0.022 52.145 11.65 69.495 30.238l72.585 78.562c17.31 18.316 41.771 29.716 68.894 29.716 25.432 0 48.524-10.023 65.539-26.335l-0.033 0.032c1.254-1.042 2.372-2.159 3.38-3.372l0.034-0.042 77.227-81.067c17.342-17.79 41.497-28.869 68.24-29.013l0.027-0h42.667c1.022 0.030 2.224 0.047 3.431 0.047 68.074 0 123.396-54.596 124.568-122.391l0.001-0.11v-469.333c-1.434-67.934-56.843-122.456-124.987-122.456-0.309 0-0.618 0.001-0.927 0.003l0.047-0zM526.933 620.8c-4.338 1.923-9.398 3.043-14.72 3.043s-10.382-1.12-14.958-3.137l0.238 0.093c-45.653-20.907-183.467-94.293-181.333-226.133-0-0.085-0-0.185-0-0.286 0-53.487 35.659-98.645 84.501-112.998l0.833-0.21c9.825-2.764 21.107-4.353 32.76-4.353 25.062 0 48.408 7.35 67.998 20.011l-0.492-0.298c2.402 1.831 5.446 2.933 8.747 2.933s6.344-1.103 8.782-2.959l-0.035 0.026c19.271-12.239 42.746-19.505 67.917-19.505 14.631 0 28.688 2.455 41.782 6.975l-0.9-0.27c45.248 16.785 77.098 59.164 78.078 109.109l0.002 0.118c-0.853 147.627-133.547 210.773-179.2 227.84z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-2"]},"attrs":[{}],"properties":{"order":7308,"id":229,"name":"like-2","prevSize":32,"code":59991},"setIdx":0,"setId":0,"iconIdx":343},{"icon":{"paths":["M713.387 260.267h-125.013c-46.504-0.18-86.295-28.728-102.982-69.23l-0.271-0.743-15.787-35.84c-16.698-40.858-56.137-69.122-102.177-69.122-0.229 0-0.457 0.001-0.685 0.002l0.035-0h-85.333c-0.127-0-0.277-0-0.427-0-107.774 0-195.17 87.247-195.413 194.964l-0 0.023v433.493c-0 0-0 0-0 0 0 124.183 100.67 224.853 224.853 224.853 0.15 0 0.3-0 0.45-0l-0.023 0h402.773c0.127 0 0.277 0 0.427 0 124.183 0 224.853-100.67 224.853-224.853 0-0-0-0-0-0l0 0v-228.267c0-0.127 0-0.277 0-0.427 0-124.183-100.67-224.853-224.853-224.853-0.15 0-0.3 0-0.45 0l0.023-0zM542.72 656.64c-10.226 7.234-22.954 11.563-36.693 11.563s-26.467-4.329-36.894-11.698l0.201 0.135c-36.267-23.893-85.333-64-85.333-109.227-0.297-2.43-0.467-5.243-0.467-8.096 0-36.19 27.307-66.001 62.44-69.955l0.321-0.029c23.041 0.506 42.927 13.532 53.171 32.525l0.162 0.329c1.185 2.489 3.68 4.179 6.57 4.179 1.182 0 2.299-0.283 3.285-0.785l-0.041 0.019c1.521-0.698 2.715-1.892 3.396-3.371l0.018-0.042c10.61-19.686 31.074-32.842 54.612-32.853l0.002-0c36.234 2.647 64.628 32.694 64.628 69.373 0 1.863-0.073 3.709-0.217 5.535l0.015-0.241c0 42.667-51.627 86.613-88.32 112.64z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-folder"]},"attrs":[{}],"properties":{"order":7309,"id":228,"name":"like-folder","prevSize":32,"code":59992},"setIdx":0,"setId":0,"iconIdx":344},{"icon":{"paths":["M912.64 449.28l-59.307-60.16c-7.905-7.75-12.805-18.541-12.805-30.475 0-0.236 0.002-0.472 0.006-0.707l-0 0.036v-85.333c-0.24-48.831-39.881-88.324-88.746-88.324-0.3 0-0.6 0.001-0.9 0.004l0.046-0h-85.333c-0.2 0.003-0.435 0.005-0.671 0.005-11.935 0-22.725-4.9-30.468-12.798l-0.007-0.007-59.733-60.16c-16.057-16.040-38.23-25.96-62.72-25.96s-46.663 9.92-62.721 25.961l0.001-0.001-60.16 59.307c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0h-85.333c-48.831 0.24-88.324 39.881-88.324 88.746 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v85.333c0.003 0.2 0.005 0.435 0.005 0.671 0 11.935-4.9 22.725-12.798 30.468l-0.007 0.007-60.16 59.733c-16.040 16.057-25.96 38.23-25.96 62.72s9.92 46.663 25.961 62.721l-0.001-0.001 59.307 60.16c7.905 7.75 12.805 18.541 12.805 30.475 0 0.236-0.002 0.472-0.006 0.707l0-0.036v85.333c0.24 48.831 39.881 88.324 88.746 88.324 0.3 0 0.6-0.001 0.9-0.004l-0.046 0h85.333c0.2-0.003 0.435-0.005 0.671-0.005 11.935 0 22.725 4.9 30.468 12.798l0.007 0.007 60.16 60.16c16.057 16.040 38.23 25.96 62.72 25.96s46.663-9.92 62.721-25.961l-0.001 0.001 59.733-59.307c7.75-7.905 18.541-12.805 30.475-12.805 0.236 0 0.472 0.002 0.707 0.006l-0.036-0h85.333c49.013-0 88.747-39.733 88.747-88.747v0-85.333c-0.003-0.2-0.005-0.435-0.005-0.671 0-11.935 4.9-22.725 12.798-30.468l0.007-0.007 60.16-60.16c16.041-16.057 25.961-38.23 25.961-62.721 0-24.702-10.092-47.047-26.379-63.137l-0.009-0.009zM716.373 504.747l-52.907 172.8c-5.867 18.522-22.636 31.821-42.598 32.425l-0.069 0.002h-104.533c-14.889-0.117-28.64-4.894-39.89-12.943l0.21 0.143-53.76-42.667v-2.987c0 17.909-14.518 32.427-32.427 32.427v0h-42.667c-17.909 0-32.427-14.518-32.427-32.427v0-219.307c0-17.909 14.518-32.427 32.427-32.427v0h42.667c17.909 0 32.427 14.518 32.427 32.427v0 24.747l80.64-122.027c8.106-12.951 22.294-21.437 38.464-21.437 24.978 0 45.227 20.249 45.227 45.227 0 3.208-0.334 6.339-0.969 9.358l0.052-0.295-10.667 61.013c-0.24 1.283-0.377 2.759-0.377 4.267 0 13.414 10.86 24.292 24.268 24.32l0.003 0h83.2c19.656 0.771 35.299 16.892 35.299 36.667 0 3.815-0.582 7.494-1.663 10.953l0.070-0.26z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-shapes"]},"attrs":[{}],"properties":{"order":7310,"id":227,"name":"like-shapes","prevSize":32,"code":59993},"setIdx":0,"setId":0,"iconIdx":345},{"icon":{"paths":["M771.413 85.333h-518.827c-0.005-0-0.012-0-0.018-0-68.057 0-123.369 54.57-124.567 122.341l-0.002 0.112v469.333c0 68.807 55.779 124.587 124.587 124.587v0h48.64c0.199-0.002 0.435-0.002 0.671-0.002 27.228 0 51.736 11.646 68.815 30.229l0.061 0.067 72.533 78.507c17.365 18.212 41.813 29.536 68.907 29.536s51.542-11.324 68.871-29.498l0.036-0.038 77.227-81.067c17.189-17.895 41.317-29.014 68.043-29.014 0.079 0 0.157 0 0.236 0l-0.012-0h42.667c0.637 0.012 1.387 0.018 2.14 0.018 68.364 0 123.867-55.062 124.58-123.258l0.001-0.067v-469.333c-1.199-67.883-56.511-122.453-124.568-122.453-0.006 0-0.013 0-0.019 0l0.001-0zM709.973 439.040l-52.907 170.667c-5.753 18.597-22.589 31.958-42.613 32.426l-0.054 0.001h-102.4c-0.132 0.001-0.289 0.001-0.445 0.001-14.894 0-28.667-4.8-39.856-12.937l0.195 0.135-53.76-42.667v-2.987c0 17.909-14.518 32.427-32.427 32.427v0h-44.373c-17.909 0-32.427-14.518-32.427-32.427v0-219.307c0-17.909 14.518-32.427 32.427-32.427v-0h42.667c17.909-0 32.427 14.518 32.427 32.427l0 0v24.747l80.64-122.027c8.359-11.876 22.008-19.54 37.448-19.54 25.214 0 45.653 20.44 45.653 45.653 0 1.924-0.119 3.821-0.35 5.683l0.023-0.223-10.667 61.013c-0.24 1.284-0.378 2.762-0.378 4.271 0 13.264 10.619 24.049 23.82 24.315l0.025 0h83.2c0.196-0.004 0.427-0.006 0.659-0.006 19.794 0 35.84 16.046 35.84 35.84 0 4.604-0.868 9.006-2.45 13.050l0.084-0.244z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like-tag"]},"attrs":[{}],"properties":{"order":7311,"id":226,"name":"like-tag","prevSize":32,"code":59994},"setIdx":0,"setId":0,"iconIdx":346},{"icon":{"paths":["M859.307 398.933h-173.653c-28.171-0.139-50.955-23.009-50.955-51.199 0-3.625 0.377-7.162 1.093-10.574l-0.059 0.333 22.187-128c1.019-5.238 1.601-11.262 1.601-17.422 0-52.784-42.79-95.573-95.573-95.573-33.4 0-62.798 17.133-79.886 43.089l-0.222 0.36-170.667 256v-51.627c0-0.006 0-0.014 0-0.021 0-36.867-29.408-66.865-66.045-67.817l-0.088-0.002h-89.6c-37.467 0-67.84 30.373-67.84 67.84h-0v459.093c0 37.467 30.373 67.84 67.84 67.84v0h89.6c37.467 0 67.84-30.373 67.84-67.84v0 6.4l113.067 90.453c23.254 16.553 52.236 26.464 83.534 26.464 0.633 0 1.265-0.004 1.896-0.012l-0.096 0.001h215.893c43.031-0.113 79.456-28.27 91.969-67.154l0.191-0.686 110.507-361.813c2.198-6.76 3.466-14.54 3.466-22.615 0-41.709-33.811-75.52-75.52-75.52-0.168 0-0.337 0.001-0.505 0.002l0.026-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["like"]},"attrs":[{}],"properties":{"order":7312,"id":225,"name":"like","prevSize":32,"code":59995},"setIdx":0,"setId":0,"iconIdx":347},{"icon":{"paths":["M512 298.667c-23.564 0-42.667-19.103-42.667-42.667v0-128c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 128c0 23.564-19.103 42.667-42.667 42.667v0zM401.493 322.56c12.777-7.53 21.215-21.22 21.215-36.882 0-7.952-2.175-15.395-5.963-21.768l0.108 0.197-58.88-100.267c-7.693-11.965-20.938-19.777-36.007-19.777-23.564 0-42.667 19.103-42.667 42.667 0 7.23 1.798 14.040 4.972 20.008l-0.112-0.23 57.173 101.12c7.568 12.601 21.161 20.904 36.693 20.907l0 0c0.688 0.042 1.492 0.066 2.301 0.066 7.839 0 15.153-2.249 21.332-6.137l-0.166 0.098zM316.16 398.507c3.619-6.136 5.756-13.52 5.756-21.402 0-14.916-7.654-28.044-19.249-35.671l-0.161-0.099-89.173-54.187c-5.737-3.062-12.547-4.86-19.777-4.86-23.564 0-42.667 19.103-42.667 42.667 0 15.070 7.812 28.314 19.608 35.905l0.169 0.102 88.747 52.907c6.049 3.489 13.303 5.548 21.039 5.548 0.104 0 0.207-0 0.311-0.001l-0.016 0c0.124 0.001 0.271 0.002 0.418 0.002 15.536 0 29.133-8.304 36.595-20.716l0.107-0.193zM281.173 512c0-23.564-19.103-42.667-42.667-42.667v0h-93.013c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h93.013c23.564 0 42.667-19.103 42.667-42.667v0zM714.667 235.093c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667v0c23.564 0 42.667 19.103 42.667 42.667v0zM222.293 730.88l69.973-42.667c13.711-7.282 22.89-21.472 22.89-37.806 0-23.564-19.103-42.667-42.667-42.667-8.495 0-16.409 2.482-23.059 6.761l0.169-0.102-70.4 42.667c-12.599 7.57-20.898 21.164-20.898 36.696 0 8.028 2.217 15.537 6.072 21.951l-0.107-0.193c7.472 12.771 21.083 21.236 36.679 21.333l0.014 0c7.879-0.208 15.204-2.399 21.549-6.089l-0.216 0.116zM332.8 861.013c-8.085-0.382-15.443-3.208-21.429-7.749l0.095 0.069c-12.673-7.554-21.030-21.188-21.030-36.774 0-7.822 2.105-15.153 5.779-21.456l-0.109 0.203 35.413-60.587c7.848-10.702 20.375-17.572 34.506-17.572 23.564 0 42.667 19.103 42.667 42.667 0 6.368-1.395 12.409-3.896 17.837l0.109-0.265-35.413 60.16c-6.965 13.627-20.683 22.917-36.621 23.465l-0.072 0.002zM512 903.68c-23.564 0-42.667-19.103-42.667-42.667v0-58.027c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 58.027c0 23.564-19.103 42.667-42.667 42.667v0zM685.227 853.333c-15.61-0.097-29.222-8.562-36.584-21.132l-0.109-0.201-23.467-40.107c-5.099-6.945-8.16-15.662-8.16-25.095 0-23.564 19.103-42.667 42.667-42.667 17.197 0 32.017 10.173 38.771 24.83l0.109 0.265 23.467 40.107c3.748 6.22 5.965 13.73 5.965 21.758 0 15.532-8.299 29.126-20.705 36.588l-0.193 0.107c-6.265 3.491-13.743 5.547-21.701 5.547-0.021 0-0.041-0-0.062-0l0.003 0zM803.413 725.333c-0.212 0.004-0.462 0.006-0.713 0.006-7.739 0-14.997-2.060-21.254-5.662l0.207 0.11-29.867-17.92c-14.922-6.863-25.095-21.684-25.095-38.88 0-23.564 19.103-42.667 42.667-42.667 9.433 0 18.15 3.061 25.214 8.244l-0.119-0.083 29.867 17.493c12.777 7.53 21.215 21.22 21.215 36.882 0 7.952-2.175 15.395-5.963 21.768l0.108-0.197c-7.495 12.482-20.898 20.745-36.243 20.906l-0.023 0zM843.52 554.667h-23.040c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h23.040c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0zM782.933 395.52c-23.559-0.007-42.654-19.107-42.654-42.667 0-15.53 8.298-29.123 20.702-36.586l0.193-0.107 10.24-5.973c5.162-2.391 11.204-3.786 17.572-3.786 23.564 0 42.667 19.103 42.667 42.667 0 14.131-6.87 26.658-17.453 34.423l-0.119 0.083-9.813 5.973c-6.129 3.575-13.454 5.766-21.274 5.972l-0.060 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["loading"]},"attrs":[{}],"properties":{"order":7313,"id":224,"name":"loading","prevSize":32,"code":59996},"setIdx":0,"setId":0,"iconIdx":348},{"icon":{"paths":["M771.84 403.2h8.107v-86.613c-0.484-127.673-103.974-231.012-231.657-231.253l-0.023-0h-72.533c-127.706 0.241-231.196 103.581-231.68 231.207l-0 0.047v87.467h8.107c-0.001-0-0.001-0-0.002-0-91.836 0-166.34 74.205-166.824 165.927l-0 0.046v202.24c0.243 91.952 74.84 166.4 166.826 166.4 0 0 0-0 0.001-0l519.68 0c0 0 0 0 0.001 0 91.986 0 166.583-74.448 166.826-166.377l0-0.023v-202.24c0-92.136-74.691-166.827-166.827-166.827h-0zM308.053 317.867c0-92.607 75.073-167.68 167.68-167.68v0h72.533c92.607 0 167.68 75.073 167.68 167.68v0 85.333h-407.893zM341.333 697.6c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM512 697.6c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM682.667 697.6c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lock-2"]},"attrs":[{}],"properties":{"order":7314,"id":223,"name":"lock-2","prevSize":32,"code":59997},"setIdx":0,"setId":0,"iconIdx":349},{"icon":{"paths":["M557.227 587.947c-0.241 24.794-20.397 44.8-45.225 44.8-24.978 0-45.227-20.249-45.227-45.227s20.247-45.225 45.225-45.227l0-0c0.001-0 0.001-0 0.002-0 24.978 0 45.227 20.249 45.227 45.227 0 0.15-0.001 0.3-0.002 0.45l0-0.023zM605.013 445.867v-45.653c-0.24-40.669-33.144-73.573-73.79-73.813l-0.023-0h-38.4c-40.669 0.24-73.573 33.144-73.813 73.79l-0 0.023v45.653zM938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM737.707 534.187c-0.213-41.557-29.234-76.275-68.102-85.219l-0.591-0.115v-48.64c0-76.112-61.701-137.813-137.813-137.813v0h-38.4c-76.112 0-137.813 61.701-137.813 137.813h0v48.213c-39.459 9.058-68.48 43.777-68.693 85.31l-0 0.024v106.24c-0.006 0.381-0.009 0.83-0.009 1.28 0 48.778 39.542 88.32 88.32 88.32 0.003 0 0.007-0 0.010-0l274.773 0c0.003 0 0.006 0 0.009 0 48.778 0 88.32-39.542 88.32-88.32 0-0.45-0.003-0.899-0.010-1.348l0.001 0.068z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lock-3"]},"attrs":[{}],"properties":{"order":7315,"id":222,"name":"lock-3","prevSize":32,"code":59998},"setIdx":0,"setId":0,"iconIdx":350},{"icon":{"paths":["M581.547 671.147c0 38.41-31.137 69.547-69.547 69.547s-69.547-31.137-69.547-69.547c0-38.41 31.137-69.547 69.547-69.547v0c38.41 0 69.547 31.137 69.547 69.547l-0 0zM938.667 570.027v202.24c-0.243 91.952-74.84 166.4-166.826 166.4-0 0-0-0-0.001-0l-519.68 0c-0 0-0 0-0.001 0-91.986 0-166.583-74.448-166.826-166.377l-0-0.023v-202.24c0.138-89.093 70.271-161.76 158.343-165.959l0.377-0.014v-87.467c0.484-127.673 103.974-231.012 231.657-231.253l0.023-0h72.533c127.856 0.242 231.437 103.824 231.68 231.656l0 0.024v87.040c88.449 4.213 158.582 76.881 158.72 165.96l0 0.014zM308.053 316.587v85.333h407.893v-85.333c0-92.607-75.073-167.68-167.68-167.68v0h-72.533c-92.607 0-167.68 75.073-167.68 167.68v0zM645.547 671.147c0-73.756-59.791-133.547-133.547-133.547s-133.547 59.791-133.547 133.547c0 73.756 59.791 133.547 133.547 133.547h0c73.756 0 133.547-59.791 133.547-133.547h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lock"]},"attrs":[{}],"properties":{"order":7316,"id":221,"name":"lock","prevSize":32,"code":59999},"setIdx":0,"setId":0,"iconIdx":351},{"icon":{"paths":["M833.707 535.040h-28.587l-229.12-218.453c22.743-18.529 37.152-46.537 37.152-77.91 0-44.252-28.668-81.809-68.444-95.112l-0.708-0.205v-42.667c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 69.973c0 17.673 14.327 32 32 32v0c20.501 0 37.12 16.619 37.12 37.12v0c-0.099 14.764-8.902 27.448-21.53 33.186l-0.23 0.094c-4.396-2.629-9.696-4.183-15.36-4.183s-10.964 1.554-15.499 4.26l0.139-0.077c-12.858-5.832-21.661-18.516-21.76-33.267l-0-0.013c0-17.673-14.327-32-32-32s-32 14.327-32 32v0c0.139 31.259 14.5 59.136 36.942 77.512l0.178 0.142-227.84 215.893h-29.867c-0.001-0-0.001-0-0.002-0-26.006 0-47.117 20.961-47.358 46.91l-0 0.023v292.267c-0.020 0.509-0.031 1.106-0.031 1.707 0 26.156 21.204 47.36 47.36 47.36 0.011 0 0.022-0 0.032-0l643.412 0c26.156 0 47.36-21.204 47.36-47.36v0-292.267c-0.241-25.972-21.352-46.933-47.358-46.933-0.001 0-0.001 0-0.002 0l0-0zM302.507 822.613c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-198.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM463.36 822.613c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-198.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM624.64 822.613c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-198.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM311.467 535.040l200.533-191.147 200.533 191.147zM785.493 822.613c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-198.827c0-17.673 14.327-32 32-32s32 14.327 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["logistic"]},"attrs":[{}],"properties":{"order":7317,"id":220,"name":"logistic","prevSize":32,"code":60000},"setIdx":0,"setId":0,"iconIdx":352},{"icon":{"paths":["M452.267 654.507v201.813c0 45.479-36.868 82.347-82.347 82.347v0h-201.813c-0 0-0.001 0-0.001 0-45.564 0-82.53-36.816-82.772-82.323l-0-0.023v-201.813c0.242-45.531 37.208-82.347 82.772-82.347 0 0 0.001 0 0.001 0l39.68 0v81.493c1.168 22.628 19.8 40.533 42.613 40.533 0.019 0 0.037-0 0.056-0l-0.003 0h42.667c0.016 0 0.035 0 0.053 0 22.814 0 41.446-17.905 42.609-40.43l0.004-0.104v-81.493h39.68c43.029 2.993 76.8 38.632 76.8 82.16 0 0.066-0 0.131-0 0.197l0-0.010zM859.307 572.16h-39.68v81.493c-1.168 22.628-19.8 40.533-42.613 40.533-0.019 0-0.037-0-0.056-0l0.003 0h-38.827c-0.016 0-0.035 0-0.053 0-22.814 0-41.446-17.905-42.609-40.43l-0.004-0.104v-81.493h-39.68c-0-0-0.001-0-0.001-0-45.564 0-82.53 36.816-82.772 82.323l-0 0.023v201.813c0.232 45.538 37.202 82.364 82.772 82.364 0.6 0 1.199-0.006 1.797-0.019l-0.089 0.001h201.813c0 0 0.001 0 0.001 0 45.564 0 82.53-36.816 82.772-82.323l0-0.023v-201.813c-0.242-45.531-37.208-82.347-82.772-82.347-0 0-0.001 0-0.001 0l-0 0zM369.92 85.333h-39.68v79.787c0 23.564-19.103 42.667-42.667 42.667v0h-42.667c-23.564 0-42.667-19.103-42.667-42.667v0-79.787h-31.573c-47.128 0-85.333 38.205-85.333 85.333v0 197.12c0.242 45.531 37.208 82.347 82.772 82.347 0 0 0.001-0 0.001-0l201.813-0c45.479 0 82.347-36.868 82.347-82.347v0-201.813c-0.957-44.739-37.45-80.64-82.329-80.64-0.006 0-0.012 0-0.019 0l0.001-0zM859.307 85.333h-39.68v79.787c0 23.564-19.103 42.667-42.667 42.667v0h-38.827c-23.564 0-42.667-19.103-42.667-42.667v0-79.787h-39.68c-0-0-0.001-0-0.001-0-45.564 0-82.53 36.816-82.772 82.323l-0 0.023v200.107c0.242 45.531 37.208 82.347 82.772 82.347 0 0 0.001-0 0.001-0l201.813-0c0 0 0.001 0 0.001 0 45.564 0 82.53-36.816 82.772-82.323l0-0.023v-201.813c-1.166-44.208-36.821-79.714-80.979-80.639l-0.088-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lots-shopping"]},"attrs":[{}],"properties":{"order":7318,"id":219,"name":"lots-shopping","prevSize":32,"code":60001},"setIdx":0,"setId":0,"iconIdx":353},{"icon":{"paths":["M563.627 818.347c-5.409 2.503-12.196 5.11-19.16 7.319l-1.32 0.361c-4.302 1.719-9.288 2.715-14.507 2.715s-10.205-0.997-14.778-2.81l0.271 0.095c-70.827-31.573-373.333-175.787-369.067-447.147 0.186-105.354 71.85-193.919 169.076-219.8l1.591-0.36c18.95-5.215 40.709-8.212 63.168-8.212 56.75 0 109.030 19.135 150.741 51.306l-0.576-0.427c41.235-31.623 93.558-50.675 150.331-50.675 28.981 0 56.803 4.965 82.661 14.090l-1.738-0.535c88.741 32.231 151.2 115.346 152.319 213.198l0.001 0.136c-0.266 16.826-1.498 33.082-3.646 49.048l0.233-2.114c-7.797-4.257-17.089-8.43-26.71-11.915l-1.45-0.459c-19.089-6.911-41.12-10.908-64.084-10.908-35.281 0-68.358 9.432-96.849 25.912l0.933-0.498c-28.148-16.527-61.995-26.288-98.122-26.288-17.441 0-34.35 2.275-50.447 6.544l1.37-0.309c-78.121 20.456-134.827 90.415-134.827 173.619 0 0.012 0 0.024 0 0.036l-0-0.002c2.067 97.745 50.315 183.805 123.734 237.486l0.853 0.594zM721.067 505.6l-19.627-14.933c-21.033-16.496-47.879-26.453-77.051-26.453-0.062 0-0.124 0-0.185 0l0.010-0c-12.342 0.172-24.237 1.717-35.651 4.491l1.091-0.224c-49.61 14.093-85.336 58.994-85.336 112.239 0 0.291 0.001 0.582 0.003 0.872l-0-0.045c-2.987 157.44 183.040 244.48 220.587 260.267 32-12.373 213.333-83.2 213.333-263.253-1.744-49.014-32.972-90.311-76.412-106.821l-0.815-0.272c-12.801-4.714-27.585-7.441-43.005-7.441-29.565 0-56.788 10.023-78.458 26.857l0.29-0.216z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lovely"]},"attrs":[{}],"properties":{"order":7319,"id":218,"name":"lovely","prevSize":32,"code":60002},"setIdx":0,"setId":0,"iconIdx":354},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM715.52 669.44l-14.080 46.507c-4.708 15.15-18.576 25.97-34.98 26.027l-0.007 0h-248.32c-19.787-0.611-35.596-16.798-35.596-36.677 0-3.655 0.534-7.185 1.529-10.516l-0.067 0.26 37.12-131.413-74.667 14.933h-6.4c-0.41 0.019-0.891 0.030-1.374 0.030-17.673 0-32-14.327-32-32 0-15.899 11.594-29.089 26.789-31.578l0.185-0.025 107.093-21.333 52.907-185.6c4.44-15.627 18.584-26.88 35.357-26.88 0.020 0 0.040 0 0.060 0l-0.003-0h56.32c20.469 0.042 37.046 16.645 37.046 37.12 0 3.337-0.44 6.57-1.266 9.646l0.059-0.26-37.973 137.387 75.093-15.36c1.751-0.336 3.766-0.528 5.825-0.528 15.527 0 28.505 10.913 31.682 25.487l0.039 0.214c0.43 1.953 0.676 4.196 0.676 6.497 0 15.414-11.045 28.248-25.652 31.019l-0.197 0.031-106.667 21.76-18.773 63.147c-0.379 1.409-0.597 3.027-0.597 4.695 0 10.278 8.259 18.627 18.503 18.771l0.014 0h119.467c19.464 0.999 34.868 17.025 34.868 36.648 0 4.295-0.738 8.418-2.094 12.249l0.079-0.257z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["lts"]},"attrs":[{}],"properties":{"order":7320,"id":217,"name":"lts","prevSize":32,"code":60003},"setIdx":0,"setId":0,"iconIdx":355},{"icon":{"paths":["M920.32 828.16l-136.96-128c48.282-63.806 77.337-144.495 77.337-231.97 0-213.491-173.069-386.56-386.56-386.56s-386.56 173.069-386.56 386.56c0 213.491 173.069 386.56 386.56 386.56 81.035 0 156.245-24.934 218.379-67.55l-1.316 0.853 140.8 133.547c11.262 10.32 26.145 16.851 42.54 17.489l0.127 0.004c0.154 0.001 0.337 0.002 0.52 0.002 18.229 0 34.616-7.884 45.939-20.428l0.048-0.054c11.416-11.49 18.473-27.323 18.473-44.805 0-17.904-7.401-34.079-19.31-45.633l-0.016-0.015zM473.6 739.413c-150.627-0.243-272.64-122.406-272.64-273.066 0-150.811 122.256-273.067 273.067-273.067 150.66 0 272.823 122.013 273.066 272.616l0 0.023c0 151.046-122.447 273.493-273.493 273.493v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["magnifier"]},"attrs":[{}],"properties":{"order":7321,"id":216,"name":"magnifier","prevSize":32,"code":60004},"setIdx":0,"setId":0,"iconIdx":356},{"icon":{"paths":["M330.667 358.827c-0.001-0.127-0.002-0.277-0.002-0.427 0-32.047 25.979-58.027 58.027-58.027s58.027 25.979 58.027 58.027c0 32.047-25.978 58.026-58.025 58.027l-0 0c-0.127 0.001-0.277 0.002-0.427 0.002-31.812 0-57.6-25.788-57.6-57.6 0-0.001 0-0.001 0-0.002l-0 0zM938.667 341.333v345.6c-2.382 138.807-114.881 250.558-253.754 251.733l-0.113 0.001h-343.467c-0.003 0-0.006 0-0.009 0-140.635 0-254.783-113.402-255.99-253.752l-0.001-0.115v-343.467c0-141.385 114.615-256 256-256v0h345.6c139.538 2.4 251.733 116.080 251.733 255.964 0 0.013-0 0.025-0 0.038l0-0.002zM273.92 461.227l78.080 87.893c9.019 9.997 22.019 16.253 36.48 16.253s27.461-6.256 36.441-16.209l0.039-0.043 78.507-87.893c24.352-26.953 39.253-62.851 39.253-102.229 0-0.060-0-0.12-0-0.18l0 0.009c0-0.095 0-0.207 0-0.319 0-85.067-68.96-154.027-154.027-154.027s-154.027 68.96-154.027 154.027c0 39.535 14.895 75.591 39.379 102.862l-0.126-0.143zM651.52 592.64l283.307-293.973c-4.429-25.909-12.152-49.116-22.847-70.583l0.66 1.463-660.48 686.933-3.413 5.12c20.988 8.678 45.309 14.736 70.722 16.998l0.958 0.069 286.72-298.667 223.573 227.413c5.509 5.474 12.976 8.983 21.259 9.384l0.075 0.003c11.89-10.707 22.65-22.144 32.411-34.411l0.443-0.576c-0.232-7.563-3.457-14.329-8.524-19.191l-0.010-0.009z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["map"]},"attrs":[{}],"properties":{"order":7322,"id":215,"name":"map","prevSize":32,"code":60005},"setIdx":0,"setId":0,"iconIdx":357},{"icon":{"paths":["M878.080 145.92c-36.261-36.12-86.28-58.452-141.515-58.452-45.62 0-87.681 15.233-121.376 40.891l0.491-0.359c-8.986 0.166-17.351 2.68-24.551 6.953l0.231-0.127c-36.693 24.747-75.093 50.773-110.933 78.507-17.075 13.218-38.793 21.188-62.373 21.188-12.206 0-23.912-2.135-34.767-6.053l0.714 0.225c-12.73-5.004-27.472-7.904-42.891-7.904-66.451 0-120.32 53.869-120.32 120.32 0 15.419 2.901 30.162 8.186 43.71l-0.281-0.819c3.628 10.058 5.725 21.664 5.725 33.761 0 23.521-7.93 45.189-21.262 62.478l0.177-0.239c-27.307 35.84-53.333 72.96-77.653 111.787-4.535 7.373-7.222 16.304-7.222 25.863 0 13.924 5.701 26.517 14.896 35.571l0.006 0.006 227.84 228.267c9.035 9.043 21.521 14.636 35.314 14.636 9.667 0 18.693-2.748 26.338-7.505l-0.212 0.123c185.607-117.859 338.404-270.792 452.61-450.641l3.496-5.892c4.292-6.796 6.953-15.005 7.251-23.813l0.002-0.080c25.465-33.172 40.808-75.275 40.808-120.962 0-55.261-22.448-105.279-58.723-141.432l-0.005-0.005zM636.587 131.84v0zM436.053 282.453c0.829-0.057 1.798-0.090 2.773-0.090 23.614 0 42.757 19.143 42.757 42.757 0 22.638-17.593 41.167-39.853 42.66l-0.13 0.007c-49.92 2.987-71.253 24.32-73.813 72.96-1.168 22.628-19.8 40.533-42.613 40.533-0.019 0-0.037-0-0.056-0l0.003 0h-2.133c-22.436-1.39-40.107-19.926-40.107-42.59 0-0.027 0-0.054 0-0.081l-0 0.004c-0.056-1.531-0.087-3.33-0.087-5.136 0-83.417 67.623-151.040 151.040-151.040 0.781 0 1.56 0.006 2.338 0.018l-0.117-0.001zM343.893 682.667c-7.709 7.648-18.326 12.374-30.047 12.374-0.087 0-0.173-0-0.26-0.001l0.013 0c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003c-7.668-7.712-12.407-18.343-12.407-30.080s4.74-22.368 12.409-30.082l-0.002 0.002 341.333-341.333c7.27-5.932 16.652-9.526 26.873-9.526 23.564 0 42.667 19.103 42.667 42.667 0 11.285-4.381 21.546-11.535 29.176l0.022-0.023zM798.72 447.147c-99.144 135.182-214.684 250.722-345.438 346.763l-4.429 3.104c-6.931 5.244-15.67 8.435-25.15 8.533l-0.023 0c-13.978-0.107-26.343-6.92-34.051-17.376l-0.083-0.117c-5.234-7.003-8.381-15.832-8.381-25.396 0-14.031 6.773-26.48 17.227-34.257l0.114-0.081c127.712-93.681 237.007-202.569 328.176-325.689l2.918-4.124c7.883-9.959 19.971-16.291 33.538-16.291 23.564 0 42.667 19.103 42.667 42.667 0 8.769-2.645 16.92-7.182 23.699l0.097-0.155zM676.693 165.547c17.413-8.812 37.909-14.128 59.609-14.505l0.124-0.002c0.141-0.001 0.309-0.001 0.476-0.001 37.538 0 71.492 15.34 95.937 40.094l0.014 0.014c24.433 24.661 39.529 58.608 39.529 96.081 0 21.873-5.143 42.544-14.286 60.871l0.357-0.791 23.040 23.040zM892.587 389.12s0 0 0 0-0.427-0.427 0-0zM408.32 896c-33 25.938-74.939 41.873-120.568 42.664l-0.179 0.002c-0.751 0.010-1.638 0.016-2.527 0.016-110.28 0-199.68-89.4-199.68-199.68 0-46.736 16.056-89.721 42.953-123.742l-0.32 0.419c-0.068 0.961-0.106 2.083-0.106 3.213 0 13.402 5.42 25.537 14.188 34.335l-0.001-0.001 23.040 23.040c-9.192 17.777-14.581 38.803-14.581 61.088 0 74.698 60.555 135.253 135.253 135.253 22.285 0 43.311-5.39 61.846-14.936l-0.758 0.355 23.040 23.467c9.283 9.010 21.963 14.565 35.941 14.565 0.865 0 1.725-0.021 2.579-0.063l-0.12 0.005z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mask"]},"attrs":[{}],"properties":{"order":7323,"id":214,"name":"mask","prevSize":32,"code":60006},"setIdx":0,"setId":0,"iconIdx":358},{"icon":{"paths":["M717.227 85.333h-410.453c-122.298 0-221.44 99.142-221.44 221.44l-0-0v410.453c0 122.298 99.142 221.44 221.44 221.44l-0-0h410.453c122.298 0 221.44-99.142 221.44-221.44l-0-0v-410.453c0-122.298-99.142-221.44-221.44-221.44l-0-0zM119.893 338.347c0.24-120.724 97.798-218.582 218.384-219.306l0.069-0h74.24c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-74.24c-85.774-0-155.307 69.533-155.307 155.307h0v76.8c0 17.673-14.327 32-32 32s-32-14.327-32-32v0zM418.56 904.96h-80.213c-121.022-0.242-219.064-98.284-219.307-219.283l-0-0.023v-77.227c0-17.673 14.327-32 32-32s32 14.327 32 32v0 77.227c-0 85.774 69.533 155.307 155.307 155.307v0h79.787c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM905.387 685.653c-0.242 121.022-98.284 219.064-219.283 219.307l-0.023 0h-74.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h74.24c85.774 0 155.307-69.533 155.307-155.307v0-82.773c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM905.387 409.173c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-70.827c0-85.774-69.533-155.307-155.307-155.307v0h-80.213c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h79.787c121.022 0.242 219.064 98.284 219.307 219.283l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["maximize"]},"attrs":[{}],"properties":{"order":7324,"id":213,"name":"maximize","prevSize":32,"code":60007},"setIdx":0,"setId":0,"iconIdx":359},{"icon":{"paths":["M523.093 95.147c-0.124-0-0.272-0-0.419-0-163.771 0-296.533 132.762-296.533 296.533s132.762 296.533 296.533 296.533c163.021 0 295.316-131.549 296.525-294.285l0.001-0.115c0.005-0.634 0.008-1.383 0.008-2.134 0-163.623-132.524-296.294-296.091-296.533l-0.023-0zM659.2 380.16l-37.973 37.12c-5.015 4.953-8.121 11.83-8.121 19.431 0 1.728 0.161 3.419 0.468 5.058l-0.026-0.169 8.96 52.48c0.23 1.332 0.362 2.867 0.362 4.432 0 15.081-12.226 27.307-27.307 27.307-4.658 0-9.044-1.166-12.881-3.223l0.146 0.072-47.36-24.747c-3.638-2.006-7.975-3.186-12.587-3.186s-8.949 1.18-12.724 3.255l0.137-0.069-47.36 24.747c-3.708 2.054-8.131 3.263-12.837 3.263-14.845 0-26.88-12.035-26.88-26.88 0-1.757 0.169-3.476 0.491-5.139l-0.027 0.169 8.96-52.48c0.409-1.812 0.643-3.894 0.643-6.030 0-6.978-2.5-13.372-6.653-18.335l0.037 0.045-37.973-37.12c-5.068-4.962-8.211-11.873-8.211-19.519 0-13.612 9.959-24.897 22.989-26.967l0.155-0.020 52.907-7.68c9.068-1.304 16.574-6.974 20.41-14.775l0.070-0.158 23.467-47.787c4.542-9.143 13.817-15.316 24.533-15.316s19.991 6.173 24.462 15.158l0.071 0.159 23.467 47.787c3.964 7.911 11.441 13.555 20.328 14.914l0.152 0.019 52.907 7.68c12.313 2.818 21.36 13.678 21.36 26.651 0 7.816-3.284 14.866-8.548 19.843l-0.013 0.012zM904.96 789.76l-60.16 7.253c-18.243 2.489-32.681 16.205-36.221 33.861l-0.046 0.273-10.667 59.307c-4.164 19.545-21.283 33.992-41.776 33.992-11.862 0-22.594-4.841-30.328-12.655l-0.004-0.004-153.6-163.413c101.88-15.133 188.441-70.859 244.142-149.896l0.764-1.144 113.493 120.32c7.464 7.675 12.067 18.167 12.067 29.734 0 21.802-16.353 39.785-37.462 42.352l-0.205 0.020zM457.387 747.093l-158.72 168.107c-7.8 8.271-18.832 13.421-31.066 13.421-19.999 0-36.783-13.759-41.405-32.327l-0.062-0.294-10.667-59.307c-3.586-17.928-18.024-31.645-36.045-34.109l-0.222-0.025-60.16-8.96c-19.896-3.878-34.708-21.168-34.708-41.918 0-9.985 3.43-19.169 9.176-26.438l-0.068 0.090 128-135.68c53.621 80.399 136.812 137.463 233.699 155.806l2.248 0.354z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["medal-star"]},"attrs":[{}],"properties":{"order":7325,"id":212,"name":"medal-star","prevSize":32,"code":60008},"setIdx":0,"setId":0,"iconIdx":360},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM764.587 713.387h-505.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h505.173c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM764.587 542.72h-505.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h505.173c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM764.587 372.053h-505.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h505.173c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["menu"]},"attrs":[{}],"properties":{"order":7326,"id":211,"name":"menu","prevSize":32,"code":60009},"setIdx":0,"setId":0,"iconIdx":361},{"icon":{"paths":["M717.653 85.333h-411.307c-122.062 0-221.013 98.951-221.013 221.013v0 589.653c0 23.564 19.103 42.667 42.667 42.667v0h588.8c0.253 0.001 0.553 0.002 0.853 0.002 122.062 0 221.013-98.951 221.013-221.013 0-0.001-0-0.001-0-0.002l-0-0v-411.307c0-122.062-98.951-221.013-221.013-221.013v0zM658.773 544h-114.773v114.773c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-114.773h-114.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h114.773v-114.773c0-17.673 14.327-32 32-32s32 14.327 32 32v0 114.773h114.773c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-add"]},"attrs":[{}],"properties":{"order":7327,"id":210,"name":"message-add","prevSize":32,"code":60010},"setIdx":0,"setId":0,"iconIdx":362},{"icon":{"paths":["M717.653 85.333h-411.307c-122.062 0-221.013 98.951-221.013 221.013v0 589.653c0 23.564 19.103 42.667 42.667 42.667v0h588.8c0.253 0.001 0.553 0.002 0.853 0.002 122.062 0 221.013-98.951 221.013-221.013 0-0.001-0-0.001-0-0.002l-0-0v-411.307c0-122.062-98.951-221.013-221.013-221.013v0zM512 709.12c-9.452 12.677-22.619 22.114-37.877 26.744l-0.523 0.136-99.413 32c-4.495 1.194-9.656 1.88-14.977 1.88-33.461 0-60.587-27.126-60.587-60.587 0-0.811 0.016-1.619 0.048-2.423l-0.004 0.116v-107.52c0.207-16.811 5.609-32.321 14.671-45.043l-0.165 0.243 119.467-161.28c16.357 43.606 43.732 79.912 78.785 106.672l0.575 0.421c33.624 26.291 75.506 43.501 121.195 47.304l0.831 0.056zM709.547 442.027l-31.573 42.667c-9.719 2.059-20.886 3.238-32.329 3.238-38.397 0-73.693-13.278-101.547-35.492l0.329 0.253c-37.533-28.874-62.572-72.392-66.522-121.854l-0.038-0.599 31.573-42.667c14.586-20.043 37.967-32.922 64.355-32.922 18.44 0 35.411 6.289 48.886 16.84l-0.174-0.131 71.253 55.040c19.783 15.768 32.351 39.863 32.351 66.893 0 18.237-5.721 35.138-15.466 49.006l0.181-0.272z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-edit"]},"attrs":[{}],"properties":{"order":7328,"id":209,"name":"message-edit","prevSize":32,"code":60011},"setIdx":0,"setId":0,"iconIdx":363},{"icon":{"paths":["M717.653 85.333h-411.307c-122.062 0-221.013 98.951-221.013 221.013v0 589.653c0 23.564 19.103 42.667 42.667 42.667v0h588.8c0.253 0.001 0.553 0.002 0.853 0.002 122.062 0 221.013-98.951 221.013-221.013 0-0.001-0-0.001-0-0.002l-0-0v-411.307c0-122.062-98.951-221.013-221.013-221.013v0zM658.773 544h-293.547c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h293.547c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-minus"]},"attrs":[{}],"properties":{"order":7329,"id":208,"name":"message-minus","prevSize":32,"code":60012},"setIdx":0,"setId":0,"iconIdx":364},{"icon":{"paths":["M938.667 199.68c-0.725 61.891-51.066 111.783-113.059 111.783-62.445 0-113.067-50.622-113.067-113.067 0-62.142 50.132-112.576 112.16-113.063l0.046-0c0.384-0.005 0.838-0.007 1.293-0.007 62.209 0 112.64 50.431 112.64 112.64 0 0.603-0.005 1.204-0.014 1.805l0.001-0.091zM907.947 352.427v268.373c0 110.045-89.209 199.253-199.253 199.253v0h-66.56c-18.95 0.065-35.704 9.409-45.964 23.723l-0.116 0.171-45.653 65.28c-12.042 16.98-31.623 27.928-53.76 27.928s-41.718-10.948-53.623-27.724l-0.137-0.204-45.653-65.28c-10.376-14.484-27.13-23.828-46.070-23.893l-0.010-0h-65.28c-0.38 0.003-0.83 0.004-1.28 0.004-110.045 0-199.253-89.209-199.253-199.253 0-0.001 0-0.003 0-0.004l-0 0v-303.787c-0-0.001-0-0.003-0-0.004 0-110.045 89.209-199.253 199.253-199.253 0.45 0 0.9 0.001 1.349 0.004l-0.069-0h386.133c-13.628 23.544-21.695 51.783-21.76 81.901l-0 0.019c-0.001 0.171-0.001 0.374-0.001 0.576 0 95.67 77.556 173.227 173.227 173.227 30.343 0 58.863-7.801 83.666-21.508l-0.891 0.452zM373.333 486.4c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667v0c23.564 0 42.667-19.103 42.667-42.667v0zM537.6 486.4c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667v0c23.564 0 42.667-19.103 42.667-42.667v0zM701.44 486.4c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667c0 23.564 19.103 42.667 42.667 42.667v0c23.564 0 42.667-19.103 42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-notif"]},"attrs":[{}],"properties":{"order":7330,"id":207,"name":"message-notif","prevSize":32,"code":60013},"setIdx":0,"setId":0,"iconIdx":365},{"icon":{"paths":["M741.547 85.333h-459.093c-0-0-0-0-0-0-108.716 0-196.877 88.011-197.119 196.67l-0 0.023v331.093c-0 0.127-0 0.277-0 0.427 0 108.866 88.254 197.12 197.12 197.12 0 0 0-0 0.001-0l73.813 0c16.134 0.15 30.508 7.558 40.035 19.11l0.072 0.090 72.96 90.027c9.62 11.87 24.198 19.395 40.533 19.395s30.914-7.525 40.457-19.297l0.076-0.097 68.267-87.893c9.689-12.513 24.714-20.491 41.603-20.491 0.374 0 0.747 0.004 1.119 0.012l-0.055-0.001h80.213c0.001 0 0.003 0 0.004 0 108.866 0 197.12-88.254 197.12-197.12 0-0.45-0.002-0.9-0.005-1.349l0 0.069v-331.093c-0.243-108.683-88.403-196.693-197.12-196.693-0 0-0 0-0 0l-0 0zM364.373 518.827c6.048 5.83 9.804 14.002 9.804 23.051 0 17.673-14.327 32-32 32-0.297 0-0.593-0.004-0.888-0.012l0.044 0.001c-0.132 0.002-0.288 0.003-0.444 0.003-8.562 0-16.283-3.603-21.728-9.375l-0.014-0.015-85.333-85.333c-5.799-5.662-9.396-13.558-9.396-22.294 0-0.262 0.003-0.524 0.010-0.785l-0.001 0.039c-0-0.031-0-0.068-0-0.105 0-8.881 3.769-16.883 9.795-22.491l0.019-0.017 85.333-82.347c5.887-8.010 15.273-13.151 25.859-13.151 17.673 0 32 14.327 32 32 0 11.451-6.015 21.498-15.058 27.152l-0.134 0.078-60.16 60.587zM583.253 372.907l-79.787 191.573c-5.046 11.535-16.298 19.479-29.421 19.626l-0.019 0c-0.028 0-0.062 0-0.096 0-4.441 0-8.662-0.942-12.473-2.638l0.196 0.078c-11.749-4.913-19.854-16.312-19.854-29.605 0-4.731 1.026-9.221 2.869-13.262l-0.082 0.2 79.787-191.573c4.475-12.629 16.316-21.513 30.233-21.513 17.673 0 32 14.327 32 32 0 5.196-1.239 10.104-3.437 14.442l0.084-0.183zM790.187 480.427l-85.333 85.333c-5.459 5.787-13.18 9.39-21.742 9.39-0.156 0-0.312-0.001-0.468-0.004l0.024 0c-0.122 0.002-0.265 0.003-0.409 0.003-17.673 0-32-14.327-32-32 0-9.045 3.753-17.213 9.786-23.033l0.010-0.009 62.293-61.013-62.293-60.587c-9.178-5.733-15.193-15.779-15.193-27.231 0-17.673 14.327-32 32-32 10.586 0 19.972 5.141 25.797 13.062l0.062 0.089 85.333 82.347c6.045 5.626 9.814 13.627 9.814 22.509 0 0.037-0 0.074-0 0.11l0-0.006c0.061 0.734 0.097 1.588 0.097 2.45 0 7.909-2.948 15.13-7.805 20.623l0.029-0.033z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-programming"]},"attrs":[{}],"properties":{"order":7331,"id":206,"name":"message-programming","prevSize":32,"code":60014},"setIdx":0,"setId":0,"iconIdx":366},{"icon":{"paths":["M746.24 96.853h-469.333c-105.907 0.485-191.573 86.451-191.573 192.425 0 0.001 0 0.001 0 0.002l-0-0v290.987c0 106.274 86.152 192.427 192.427 192.427v0c11.546 0 20.907 9.36 20.907 20.907v92.587c1.534 22.309 20.008 39.825 42.572 39.825 8.419 0 16.269-2.438 22.881-6.648l-0.173 0.103 190.72-139.093c6.782-4.786 15.213-7.658 24.314-7.68l0.006-0h165.973c0.38 0.003 0.83 0.004 1.28 0.004 106.274 0 192.427-86.152 192.427-192.427 0-0.002-0-0.003-0-0.005l0 0v-290.987c0-106.274-86.152-192.427-192.427-192.427v-0zM512 618.24c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32v0c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0zM561.493 443.733c-10.689 7.849-17.55 20.369-17.55 34.491 0 0.775 0.021 1.545 0.061 2.309l-0.005-0.107v11.947c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-11.947c-0.020-0.773-0.032-1.683-0.032-2.596 0-37.462 19.39-70.395 48.681-89.312l0.418-0.253c10.242-5.794 17.047-16.607 17.067-29.011l0-0.003c0-18.851-15.282-34.133-34.133-34.133s-34.133 15.282-34.133 34.133l0-0c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c0.338-53.941 44.144-97.537 98.132-97.537 54.198 0 98.133 43.936 98.133 98.133 0 35.957-19.339 67.398-48.184 84.488l-0.455 0.249z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-question"]},"attrs":[{}],"properties":{"order":7332,"id":205,"name":"message-question","prevSize":32,"code":60015},"setIdx":0,"setId":0,"iconIdx":367},{"icon":{"paths":["M731.307 85.333h-438.613c-0-0-0-0-0-0-114.522 0-207.36 92.838-207.36 207.36 0 0.15 0 0.3 0 0.45l-0-0.023v316.16c-0 114.522 92.838 207.36 207.36 207.36h67.84c0.054-0 0.117-0 0.181-0 19.702 0 37.093 9.892 47.479 24.979l0.126 0.194 47.787 67.413c12.508 17.674 32.87 29.071 55.893 29.071s43.385-11.398 55.75-28.858l0.143-0.213 47.787-67.413c10.512-15.282 27.904-25.174 47.606-25.174 0.064 0 0.127 0 0.191 0l-0.010-0h67.84c114.522 0 207.36-92.838 207.36-207.36l0-0v-316.16c0-0.127 0-0.277 0-0.427 0-114.522-92.838-207.36-207.36-207.36-0 0-0 0-0 0l-0 0zM645.973 623.787h-269.227c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h270.507c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM713.813 410.453h-404.907c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h406.187c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-text-2"]},"attrs":[{}],"properties":{"order":7333,"id":204,"name":"message-text-2","prevSize":32,"code":60016},"setIdx":0,"setId":0,"iconIdx":368},{"icon":{"paths":["M717.653 85.333h-411.307c-122.062 0-221.013 98.951-221.013 221.013v0 589.653c0 23.564 19.103 42.667 42.667 42.667v0h588.8c0.253 0.001 0.553 0.002 0.853 0.002 122.062 0 221.013-98.951 221.013-221.013 0-0.001-0-0.001-0-0.002l-0-0v-411.307c0-122.062-98.951-221.013-221.013-221.013v0zM579.84 650.667h-270.933c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h270.933c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM715.093 437.333h-406.187c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h406.187c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["message-text"]},"attrs":[{}],"properties":{"order":7334,"id":203,"name":"message-text","prevSize":32,"code":60017},"setIdx":0,"setId":0,"iconIdx":369},{"icon":{"paths":["M605.44 256c0.006-0 0.013-0 0.021-0 34.718 0 66.94 10.687 93.556 28.952l-0.563-0.365c-26.053-17.899-58.275-28.587-92.993-28.587-0.007 0-0.014 0-0.022 0l0.001-0zM698.453 284.587c44.521 30.229 73.387 80.618 73.387 137.749 0 0.023-0 0.045-0 0.068l0-0.003v249.173-250.027c0-0.019 0-0.042 0-0.064 0-57.131-28.865-107.52-72.808-137.378l-0.579-0.371zM770.133 85.333h-351.573c-0.093-0-0.204-0-0.314-0-78.358 0-144.099 54.023-162.008 126.856l-0.238 1.145h348.587c115.367 0.242 208.825 93.7 209.067 209.044l0 0.023v242.773c72.375-18.727 124.974-83.429 125.013-160.422l0-0.005v-253.867c-0.72-91.588-75.133-165.555-166.822-165.555-0.602 0-1.203 0.003-1.803 0.010l0.091-0.001zM770.133 422.4v253.867c0 91.9-74.5 166.4-166.4 166.4h-52.48c-0.177-0.002-0.387-0.004-0.597-0.004-15.66 0-29.478 7.885-37.702 19.901l-0.101 0.156-38.4 54.187c-9.999 14.209-26.329 23.379-44.8 23.379s-34.801-9.17-44.684-23.206l-0.116-0.173-38.4-54.187c-8.325-12.172-22.143-20.057-37.803-20.057-0.21 0-0.42 0.001-0.629 0.004l0.032-0h-52.053c-91.803-0.242-166.158-74.597-166.4-166.377l-0-0.023v-254.72c0.724-91.436 74.895-165.308 166.377-165.547l0.023-0h351.573c90.685 1.199 163.794 74.757 164.266 165.501l0 0.045zM320.853 554.667c0-22.15-17.956-40.107-40.107-40.107s-40.107 17.956-40.107 40.107c0 22.15 17.956 40.107 40.107 40.107l0 0c22.054-0.238 39.868-18.053 40.106-40.084l0-0.023zM469.333 554.667c-0.001-22.149-17.957-40.104-40.107-40.104s-40.107 17.956-40.107 40.107c0 22.15 17.956 40.107 40.107 40.107 0.15 0 0.3-0.001 0.449-0.002l-0.023 0c21.966-0.241 39.68-18.104 39.68-40.104 0-0.001-0-0.002-0-0.002l0 0zM618.667 554.667c0-22.15-17.956-40.107-40.107-40.107s-40.107 17.956-40.107 40.107c0 22.15 17.956 40.107 40.107 40.107v0c0.001 0 0.001 0 0.002 0 22.236 0 40.29-17.905 40.531-40.084l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["messages"]},"attrs":[{}],"properties":{"order":7335,"id":202,"name":"messages","prevSize":32,"code":60018},"setIdx":0,"setId":0,"iconIdx":370},{"icon":{"paths":["M570.453 157.013l308.053-38.4c2.052-0.28 4.424-0.44 6.833-0.44 29.16 0 52.854 23.401 53.326 52.449l0.001 0.044v245.333c0 29.455-23.878 53.333-53.333 53.333v0h-308.48c-29.455 0-53.333-23.878-53.333-53.333v0-206.080c0.022-27.182 20.375-49.604 46.673-52.88l0.261-0.026zM438.187 416v-181.76c0-0.004 0-0.008 0-0.012 0-29.455-23.878-53.333-53.333-53.333-2.407 0-4.776 0.159-7.099 0.468l0.272-0.030-245.76 32c-26.13 3.241-46.251 24.982-46.932 51.558l-0.001 0.068v151.040c0 29.455 23.878 53.333 53.333 53.333v0h245.333c0.254 0.004 0.553 0.007 0.853 0.007 29.455 0 53.333-23.878 53.333-53.333 0-0.002-0-0.005-0-0.007l0 0zM523.52 608v205.653c-0.001 0.114-0.001 0.25-0.001 0.385 0 27.2 20.362 49.644 46.674 52.922l0.26 0.026 308.053 38.4c2.052 0.28 4.424 0.44 6.833 0.44 29.16 0 52.854-23.401 53.326-52.449l0.001-0.044v-245.333c0-29.455-23.878-53.333-53.333-53.333v0h-308.48c-29.455 0-53.333 23.878-53.333 53.333v0zM384 554.667h-245.333c-29.455 0-53.333 23.878-53.333 53.333v0 151.040c0.682 26.644 20.803 48.386 46.673 51.6l0.26 0.026 245.76 30.72c2.050 0.279 4.42 0.439 6.827 0.439 29.455 0 53.333-23.878 53.333-53.333 0-0.004-0-0.009-0-0.013l0 0.001v-180.48c0-0.002 0-0.004 0-0.007 0-29.455-23.878-53.333-53.333-53.333-0.3 0-0.6 0.002-0.898 0.007l0.045-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["microsoft"]},"attrs":[{}],"properties":{"order":7336,"id":201,"name":"microsoft","prevSize":32,"code":60019},"setIdx":0,"setId":0,"iconIdx":371},{"icon":{"paths":["M768 471.467v200.533s-2.56 0-3.84 0c-109.653 13.227-187.307 0-213.333-36.267-64-90.027-210.347-85.333-294.827-75.52v-90.88c0.614-33.385 14.356-63.445 36.266-85.332l0.001-0.001 42.667-42.667c30.321-30.404 49.068-72.363 49.068-118.7 0-0.27-0.001-0.539-0.002-0.808l0 0.042v-12.373c-25.976-8.384-44.436-32.349-44.436-60.625 0-35.111 28.463-63.573 63.573-63.573 0.772 0 1.541 0.014 2.307 0.041l-0.111-0.003h213.333c34.934 0.537 63.046 28.982 63.046 63.993 0 28.453-18.567 52.569-44.247 60.894l-0.453 0.127v10.667c-0.002 0.264-0.002 0.576-0.002 0.888 0 46.803 19.273 89.104 50.315 119.4l0.034 0.033 42.667 42.667c23.218 22.027 37.735 53.028 37.973 87.423l0 0.044zM685.653 740.693c-91.733 0-154.453-23.040-186.88-68.267-48.64-68.267-194.987-54.613-238.507-48.64h-4.267v192.427c0.242 67.681 55.164 122.453 122.879 122.453 0 0 0-0 0.001-0l266.24-0c67.865 0 122.88-55.015 122.88-122.88h-0v-80.213c-24.581 3.117-53.166 4.973-82.156 5.119l-0.19 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["milk"]},"attrs":[{}],"properties":{"order":7337,"id":200,"name":"milk","prevSize":32,"code":60020},"setIdx":0,"setId":0,"iconIdx":372},{"icon":{"paths":["M938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM768 512c0-23.564-19.103-42.667-42.667-42.667v0h-426.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h426.667c23.564 0 42.667-19.103 42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus-circle"]},"attrs":[{}],"properties":{"order":7338,"id":199,"name":"minus-circle","prevSize":32,"code":60021},"setIdx":0,"setId":0,"iconIdx":373},{"icon":{"paths":["M714.667 260.693h-128c-0.139 0.001-0.303 0.001-0.468 0.001-46.432 0-86.227-28.417-102.941-68.809l-0.271-0.739-12.373-36.267c-16.853-41.118-56.569-69.553-102.927-69.553-0.415 0-0.829 0.002-1.243 0.007l0.063-0.001h-85.333c-0.127-0-0.277-0-0.427-0-107.924 0-195.413 87.49-195.413 195.413 0 0.15 0 0.3 0.001 0.451l-0-0.024v433.493c0.959 123.324 100.676 223.041 223.909 223.999l0.091 0.001h405.333c123.324-0.959 223.041-100.676 223.999-223.909l0.001-0.091v-228.693c-0.238-123.874-100.229-224.314-223.908-225.279l-0.092-0.001zM609.28 604.587v0l-194.56-2.56c-0.127 0.002-0.277 0.003-0.427 0.003-16.731 0-30.293-13.563-30.293-30.293 0-0.001 0-0.002 0-0.003l-0 0c0.879-16.601 14.119-29.841 30.639-30.717l0.081-0.003 194.56 2.56c16.546 0.24 29.867 13.71 29.867 30.29 0 0.001-0 0.002-0 0.003l0-0c0 0.004 0 0.008 0 0.012 0 16.666-13.272 30.233-29.823 30.707l-0.044 0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus-folder"]},"attrs":[{}],"properties":{"order":7339,"id":198,"name":"minus-folder","prevSize":32,"code":60022},"setIdx":0,"setId":0,"iconIdx":374},{"icon":{"paths":["M690.773 938.667h-357.973c-136.627-0.484-247.225-111.233-247.467-247.87l-0-0.023v-357.547c0.242-136.661 110.84-247.409 247.42-247.893l0.046-0h357.547c0.127-0 0.277-0 0.427-0 136.758 0 247.65 110.743 247.893 247.444l0 0.023v357.547c0 0.127 0 0.277 0 0.427 0 136.908-110.986 247.893-247.893 247.893-0 0-0-0-0-0l0 0zM768 512c0-23.564-19.103-42.667-42.667-42.667v0h-426.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h426.667c23.564 0 42.667-19.103 42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus-square"]},"attrs":[{}],"properties":{"order":7340,"id":197,"name":"minus-square","prevSize":32,"code":60023},"setIdx":0,"setId":0,"iconIdx":375},{"icon":{"paths":["M770.987 466.773v0l-512.427 2.56c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0 0l512-2.56c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["minus"]},"attrs":[{}],"properties":{"order":7341,"id":196,"name":"minus","prevSize":32,"code":60024},"setIdx":0,"setId":0,"iconIdx":376},{"icon":{"paths":["M856.32 405.333h-256c-46.014 1.424-82.773 39.067-82.773 85.295 0 0.014 0 0.027 0 0.041l-0-0.002v362.667c-0 0.011-0 0.025-0 0.038 0 46.228 36.759 83.871 82.643 85.292l0.131 0.003h256c45.826-1.655 82.347-39.203 82.347-85.281 0-0.018-0-0.037-0-0.055l0 0.003v-363.947c-0.676-45.554-36.945-82.418-82.196-84.049l-0.15-0.004zM728.32 867.413c-0.253 0.005-0.552 0.008-0.851 0.008-26.156 0-47.36-21.204-47.36-47.36s21.204-47.36 47.36-47.36c26.156 0 47.36 21.204 47.36 47.36 0 0.147-0.001 0.294-0.002 0.441l0-0.022c0.001 0.127 0.002 0.277 0.002 0.427 0 25.685-20.822 46.507-46.507 46.507-0.001 0-0.001-0-0.002-0l0 0zM479.147 885.76h-168.533c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h125.44v-112.213h-189.44c-89.228-0.724-161.282-73.225-161.282-162.555 0-0.302 0.001-0.604 0.002-0.905l-0 0.047v-298.667c0.239-89.148 72.2-161.41 161.211-162.133l0.069-0h472.32c89.043 0.963 160.856 73.371 160.856 162.551 0 0.303-0.001 0.606-0.002 0.909l0-0.047v116.48c-6.945-1.421-15.026-2.343-23.284-2.556l-0.182-0.004h-256c-69.583 1.436-125.44 58.182-125.44 127.974 0 0.009 0 0.018 0 0.027l-0-0.001v362.667c0.205 11.606 1.749 22.754 4.484 33.426l-0.217-0.999zM521.813 885.76v0c-1.696-4.216-3.171-9.222-4.179-14.395l-0.087-0.539c2.084 6.127 4.104 11.063 6.367 15.862l-0.394-0.929z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["monitor-mobile"]},"attrs":[{}],"properties":{"order":7342,"id":195,"name":"monitor-mobile","prevSize":32,"code":60025},"setIdx":0,"setId":0,"iconIdx":377},{"icon":{"paths":["M847.787 661.333c1.654-0.158 3.576-0.248 5.52-0.248 33.932 0 61.44 27.508 61.44 61.44 0 13.935-4.639 26.787-12.457 37.094l0.111-0.153c-26.087 36.141-56.376 67.108-90.654 93.083l-1.079 0.784c-71.080 51.624-160.080 82.583-256.31 82.583-242.475 0-439.040-196.565-439.040-439.040 0-183.397 112.449-340.53 272.161-406.213l2.922-1.064c6.282-2.373 13.543-3.746 21.126-3.746 33.932 0 61.44 27.508 61.44 61.44 0 7.465-1.331 14.62-3.77 21.239l0.137-0.426c-17.007 40.345-26.89 87.247-26.89 136.457 0 198.646 161.034 359.68 359.68 359.68 16.098 0 31.95-1.058 47.489-3.107l-1.825 0.197z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["moon"]},"attrs":[{}],"properties":{"order":7343,"id":194,"name":"moon","prevSize":32,"code":60026},"setIdx":0,"setId":0,"iconIdx":378},{"icon":{"paths":["M725.333 85.333h-426.667c-117.821 0-213.333 95.513-213.333 213.333v0 426.667c0 117.821 95.513 213.333 213.333 213.333v0h426.667c117.821 0 213.333-95.513 213.333-213.333v0-426.667c0-117.821-95.513-213.333-213.333-213.333v0zM354.56 695.893c-30.869 0-55.893-25.024-55.893-55.893s25.024-55.893 55.893-55.893c30.869 0 55.893 25.024 55.893 55.893v0c0 30.869-25.024 55.893-55.893 55.893h0zM512 439.893c-30.869 0-55.893-25.024-55.893-55.893s25.024-55.893 55.893-55.893c30.869 0 55.893 25.024 55.893 55.893l-0 0c0 30.869-25.024 55.893-55.893 55.893v-0zM669.44 695.893c-30.869 0-55.893-25.024-55.893-55.893s25.024-55.893 55.893-55.893c30.869 0 55.893 25.024 55.893 55.893v0c0 30.869-25.024 55.893-55.893 55.893v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["more-2"]},"attrs":[{}],"properties":{"order":7344,"id":193,"name":"more-2","prevSize":32,"code":60027},"setIdx":0,"setId":0,"iconIdx":379},{"icon":{"paths":["M642.987 554.667l249.173 78.507c27.782 7.912 47.784 33.066 47.784 62.892 0 28.411-18.15 52.583-43.487 61.554l-0.457 0.141-70.827 25.6c-18.212 6.74-32.279 20.947-38.686 38.804l-0.141 0.45-26.88 73.387c-9.005 26.263-33.484 44.804-62.293 44.804s-53.289-18.541-62.155-44.342l-0.138-0.462-77.653-256c-1.946-6.051-3.068-13.013-3.068-20.237 0-37.703 30.564-68.267 68.267-68.267 7.343 0 14.416 1.159 21.045 3.305l-0.483-0.135zM495.787 658.347c-3.77-11.663-5.944-25.083-5.944-39.009 0-29.518 9.764-56.756 26.239-78.66l-0.242 0.336c24.444-32.558 62.87-53.474 106.194-53.76l0.046-0c0.041-0 0.090-0 0.138-0 14.292 0 28.036 2.342 40.871 6.664l-0.903-0.264 226.56 71.253c4.618-22.345 7.261-48.026 7.261-74.323 0-0.871-0.003-1.741-0.009-2.61l0.001 0.133c0-223.859-181.474-405.333-405.333-405.333s-405.333 181.474-405.333 405.333c0 223.859 181.474 405.333 405.333 405.333v0c26.299-0.086 51.962-2.566 76.854-7.234l-2.614 0.407z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mouse-circle"]},"attrs":[{}],"properties":{"order":7345,"id":192,"name":"mouse-circle","prevSize":32,"code":60028},"setIdx":0,"setId":0,"iconIdx":380},{"icon":{"paths":["M660.907 574.72l235.093 74.24c26.856 7.142 46.322 31.239 46.322 59.882 0 27.708-18.215 51.161-43.323 59.040l-0.438 0.119-66.987 24.32c-17.153 6.079-30.383 19.448-36.144 36.282l-0.122 0.411-24.747 66.987c-8.466 24.75-31.525 42.227-58.667 42.227s-50.2-17.478-58.537-41.792l-0.13-0.435-73.387-239.787c-2.063-6.034-3.254-12.985-3.254-20.215 0-35.582 28.845-64.427 64.427-64.427 7.111 0 13.952 1.152 20.348 3.279l-0.455-0.131zM518.827 673.28c-3.597-11.269-5.67-24.23-5.67-37.676 0-28.53 9.334-54.88 25.115-76.163l-0.244 0.345c23.286-31.611 60.199-52.015 101.9-52.479l0.074-0.001c13.899 0.012 27.248 2.354 39.681 6.657l-0.854-0.257 178.347 56.32v-282.88c0-0.127 0-0.277 0-0.427 0-108.395-87.872-196.267-196.267-196.267-0.15 0-0.3 0-0.45 0.001l0.023-0h-369.493c-108.631 0-196.693 88.063-196.693 196.693v0 370.347c0.725 108.166 88.458 195.601 196.67 195.84l0.023 0h282.88z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mouse-square"]},"attrs":[{}],"properties":{"order":7346,"id":191,"name":"mouse-square","prevSize":32,"code":60029},"setIdx":0,"setId":0,"iconIdx":381},{"icon":{"paths":["M523.947 213.333h-23.893c-134.787 0-244.053 109.266-244.053 244.053h0v233.813c0.243 134.603 109.416 243.627 244.053 243.627 0 0 0-0 0-0l23.893 0c0 0 0 0 0 0 134.637 0 243.81-109.023 244.053-243.603l0-0.023v-233.813c0-134.787-109.266-244.053-244.053-244.053l-0 0zM544 500.053c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-124.587c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM480 213.333v-92.16c0-17.673 14.327-32 32-32s32 14.327 32 32v0 92.16h-43.947z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["mouse"]},"attrs":[{}],"properties":{"order":7347,"id":190,"name":"mouse","prevSize":32,"code":60030},"setIdx":0,"setId":0,"iconIdx":382},{"icon":{"paths":["M268.8 172.8c8.462-5.355 18.763-8.533 29.806-8.533 0.021 0 0.043 0 0.064 0l-0.003-0c0.633-0.025 1.376-0.039 2.123-0.039 9.668 0 18.779 2.382 26.779 6.59l-0.315-0.151 365.653 213.333v195.413l-426.667-272.213v349.013l180.48 104.107-122.88 70.4c-8.312 4.928-18.323 7.841-29.013 7.841s-20.701-2.912-29.281-7.987l0.268 0.146-119.040-71.253c-16.971-10.124-28.16-28.388-28.16-49.265 0-0.080 0-0.161 0-0.241l-0 0.012v-414.293c0.069-20.701 11.047-38.823 27.483-48.924l0.25-0.143zM759.467 830.293l119.040-70.827c16.971-10.124 28.16-28.388 28.16-49.265 0-0.080-0-0.161-0-0.241l0 0.012v-414.293c-0.069-20.701-11.047-38.823-27.483-48.924l-0.25-0.143-122.453-73.813c-8.424-5.042-18.584-8.023-29.44-8.023s-21.016 2.981-29.705 8.17l0.265-0.147-121.173 69.12 180.48 104.107v349.013l-426.667-272.213v194.987l369.067 213.333c8.418 4.975 18.55 7.914 29.369 7.914 11.402 0 22.041-3.265 31.035-8.91l-0.244 0.143z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["nexo"]},"attrs":[{}],"properties":{"order":7348,"id":189,"name":"nexo","prevSize":32,"code":60031},"setIdx":0,"setId":0,"iconIdx":383},{"icon":{"paths":["M646.827 310.187c65.349 44.094 107.753 117.863 107.753 201.536 0 86.528-45.347 162.464-113.572 205.34l-1.008 0.591c-86.040-28.796-146.946-108.656-146.946-202.741 0-96.441 63.994-177.936 151.836-204.336l1.511-0.39zM433.493 514.987c-0-0.014-0-0.030-0-0.046 0-101.464 55.687-189.921 138.165-236.477l1.355-0.703c-18.259-5.305-39.249-8.413-60.946-8.533l-0.067-0c-134.080-0-242.773 108.693-242.773 242.773s108.693 242.773 242.773 242.773v0c19.734-0.098 38.841-2.582 57.11-7.177l-1.643 0.35c-79.922-48.121-132.583-134.378-132.693-232.944l-0-0.016zM544 170.667v-52.48c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 52.48c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM544 907.947v-52.48c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 50.347c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM291.84 291.84c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-35.84-33.28c-4.914-3.228-10.937-5.15-17.409-5.15-17.673 0-32 14.327-32 32 0 5.817 1.552 11.271 4.264 15.971l-0.082-0.155 35.84 35.413c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0zM812.8 813.227c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-35.84-35.84c-5.858-6.274-14.178-10.185-23.412-10.185-17.673 0-32 14.327-32 32 0 9.234 3.911 17.554 10.166 23.394l0.019 0.017 35.413 35.84c5.875 5.648 13.812 9.189 22.575 9.386l0.038 0.001c0.118 0.002 0.257 0.002 0.396 0.002 8.845 0 16.851-3.588 22.644-9.389l0-0zM200.533 512c0-0.021 0-0.046 0-0.071 0-16.922-13.136-30.777-29.767-31.923l-0.1-0.006h-52.48c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h52.48c16.731-1.152 29.867-15.006 29.867-31.929 0-0.025-0-0.050-0-0.075l0 0.004zM938.667 512c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-51.2c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h50.347c0.128 0.002 0.278 0.003 0.429 0.003 17.76 0 32.185-14.277 32.424-31.98l0-0.023zM256 813.227l35.413-35.84c6.274-5.858 10.185-14.178 10.185-23.412 0-17.673-14.327-32-32-32-9.234 0-17.554 3.911-23.394 10.166l-0.017 0.019-35.413 35.84c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.858 5.807 13.923 9.396 22.827 9.396s16.969-3.588 22.829-9.398l-0.002 0.002zM777.387 291.84l35.84-35.84c2.63-4.546 4.182-10 4.182-15.816 0-17.673-14.327-32-32-32-6.472 0-12.495 1.921-17.53 5.224l0.121-0.075-35.413 35.413c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["night-day"]},"attrs":[{}],"properties":{"order":7349,"id":188,"name":"night-day","prevSize":32,"code":60032},"setIdx":0,"setId":0,"iconIdx":384},{"icon":{"paths":["M655.36 810.667v0c-11.413-0.904-21.771-2.415-31.899-4.55l1.605 0.283-167.68-38.4c-92.336-21.71-160.022-103.384-160.022-200.867 0-16.219 1.874-32.001 5.417-47.141l-0.275 1.394v0c-3.268 13.745-5.142 29.527-5.142 45.746 0 97.483 67.686 179.157 158.625 200.59l1.397 0.278 167.253 38.4c8.643 1.855 19.15 3.367 29.845 4.211l0.875 0.056zM375.040 216.747c2.133-4.693 3.84-9.387 5.973-13.653-2.133 4.267-3.84 10.24-5.973 13.653zM447.573 810.667c-111.362-25.895-193.074-124.283-193.074-241.756 0-20.189 2.414-39.815 6.968-58.604l-0.347 1.694 63.573-277.333c0-6.827 4.267-12.8 6.4-19.2l-99.84 28.587c-85.669 25.285-147.125 103.241-147.125 195.55 0 20.17 2.934 39.654 8.399 58.049l-0.367-1.44 73.813 256c25.082 86.244 103.396 148.206 196.182 148.206 19.938 0 39.207-2.861 57.42-8.195l-1.442 0.362 170.667-49.493zM934.827 374.187l-64 278.613c-21.544 92.306-103.127 160.013-200.525 160.013-16.189 0-31.942-1.871-47.053-5.408l1.392 0.274-167.253-39.68c-92.336-21.71-160.022-103.384-160.022-200.867 0-16.219 1.874-32.001 5.417-47.141l-0.275 1.394 64-278.613c22.148-91.496 103.337-158.393 200.149-158.393 16.325 0 32.205 1.902 47.432 5.497l-1.395-0.278 167.253 38.4c92.306 21.544 160.013 103.127 160.013 200.525 0 16.189-1.871 31.942-5.408 47.053l0.274-1.392zM626.347 526.507l-119.040-31.147c-2.353-0.619-5.054-0.975-7.839-0.975-14.836 0-27.313 10.096-30.938 23.792l-0.050 0.223c-0.679 2.444-1.070 5.251-1.070 8.148 0 14.788 10.167 27.202 23.892 30.632l0.218 0.046 118.613 31.147h8.107c14.873-0.271 27.311-10.385 31.092-24.089l0.054-0.231c0.442-1.994 0.695-4.283 0.695-6.632 0-14.734-9.958-27.142-23.51-30.862l-0.225-0.053zM750.507 381.44l-200.96-51.627c-2.353-0.619-5.054-0.975-7.839-0.975-14.836 0-27.313 10.096-30.938 23.792l-0.050 0.223c-0.626 2.382-0.986 5.116-0.986 7.934 0 14.921 10.078 27.488 23.798 31.266l0.228 0.053 200.533 51.2c1.218 0.19 2.623 0.298 4.053 0.298s2.835-0.108 4.207-0.317l-0.154 0.019c17.318-0.456 31.183-14.604 31.183-31.99 0-14.493-9.635-26.736-22.849-30.673l-0.226-0.058z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note-2"]},"attrs":[{}],"properties":{"order":7350,"id":187,"name":"note-2","prevSize":32,"code":60033},"setIdx":0,"setId":0,"iconIdx":385},{"icon":{"paths":["M624.64 826.88l-167.253-37.973c-92.336-21.71-160.022-103.384-160.022-200.867 0-16.219 1.874-32.001 5.417-47.141l-0.275 1.394 64-278.613c21.495-92.12 102.912-159.692 200.111-159.692 16.339 0 32.232 1.909 47.468 5.517l-1.393-0.278 167.253 38.4c92.306 21.544 160.013 103.127 160.013 200.525 0 16.189-1.871 31.942-5.408 47.053l0.274-1.392-64 278.613c-21.495 92.12-102.912 159.692-200.111 159.692-16.339 0-32.232-1.909-47.468-5.517l1.393 0.278zM375.040 236.373c2.133-4.693 3.84-9.387 5.973-13.653-2.133 4.267-3.84 8.96-5.973 13.653zM624.64 826.88l-167.253-37.973c-67.76-16.061-121.684-63.933-145.869-126.591l-0.478-1.409c24.663 64.067 78.587 111.939 144.946 127.719l1.401 0.281 167.253 37.973c8.746 2.212 19.091 3.878 29.682 4.657l0.611 0.036c-11.036-0.592-21.396-2.269-31.352-4.935l1.059 0.241zM351.573 327.68l-49.067 213.333c-2.631 12.249-4.138 26.322-4.138 40.747s1.507 28.497 4.372 42.069l-0.234-1.322c-2.631-12.249-4.138-26.322-4.138-40.747s1.507-28.497 4.372-42.069l-0.234 1.322zM447.573 830.293c-111.345-26.098-192.987-124.553-192.987-242.077 0-20.073 2.382-39.59 6.878-58.284l-0.344 1.694 63.573-275.627c0-6.827 4.267-12.8 6.4-19.627l-99.84 29.013c-85.669 25.285-147.125 103.241-147.125 195.55 0 20.17 2.934 39.654 8.399 58.049l-0.367-1.44 73.813 256c25.601 85.436 103.518 146.63 195.727 146.63 20.104 0 39.529-2.909 57.876-8.329l-1.443 0.366 170.667-49.493z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["note"]},"attrs":[{}],"properties":{"order":7351,"id":186,"name":"note","prevSize":32,"code":60034},"setIdx":0,"setId":0,"iconIdx":386},{"icon":{"paths":["M902.4 648.96v0l-273.067 286.72v-165.12c0.050-9.227 0.823-18.235 2.268-27.016l-0.134 0.99c7.751-55.215 54.304-97.352 110.853-98.132l0.081-0.001h162.56zM386.987 155.307v-35.84c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 37.973c4.339-0.311 9.402-0.488 14.507-0.488s10.167 0.177 15.183 0.526l-0.676-0.038zM698.453 155.307v-35.84c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 35.84h35.413c10.14 0.063 20.044 0.836 29.731 2.273l-1.144-0.139zM741.12 581.973c-98.311 2.071-177.214 82.255-177.214 180.869 0 2.564 0.053 5.116 0.159 7.654l-0.012-0.363v168.533h-213.333c-128.477-0.243-232.533-104.449-232.533-232.96 0-0 0-0 0-0l-0 0v-317.44c0.025-118.631 88.881-216.501 203.669-230.712l1.131-0.114v40.107c0 17.673 14.327 32 32 32s32-14.327 32-32v0-42.667h247.467v42.667c0 17.673 14.327 32 32 32s32-14.327 32-32v0-40.107c115.735 14.526 204.373 112.323 204.373 230.822 0 0.002-0 0.003-0 0.005l-0 0v194.133zM498.773 599.040c0.002-0.127 0.003-0.277 0.003-0.427 0-17.673-14.327-32-32-32-0.001 0-0.002 0-0.003 0l-145.493-0c-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427h148.053c17.114-0.706 30.72-14.751 30.72-31.974 0-0.009-0-0.018-0-0.027l0 0.001zM734.293 396.8c0.002-0.127 0.003-0.277 0.003-0.427 0-17.673-14.327-32-32-32-0.001 0-0.002 0-0.003 0l-384-0c-17.909 0-32.427 14.518-32.427 32.427s14.518 32.427 32.427 32.427h384c0.001 0 0.002 0 0.003 0 17.673 0 32-14.327 32-32 0-0.15-0.001-0.3-0.003-0.449l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notepad-bookmark"]},"attrs":[{}],"properties":{"order":7352,"id":185,"name":"notepad-bookmark","prevSize":32,"code":60035},"setIdx":0,"setId":0,"iconIdx":387},{"icon":{"paths":["M883.627 352c-12.078 2.393-25.965 3.763-40.171 3.763-50.769 0-97.452-17.489-134.355-46.771l0.447 0.342c-48.273-37.244-80.41-93.37-85.288-157.123l-0.046-0.744 22.187-29.867h-316.587c-139.32 0.238-252.169 113.233-252.169 252.586 0 0.75 0.003 1.5 0.010 2.248l-0.001-0.115v336.64c-0.001 0.254-0.001 0.554-0.001 0.855 0 139.436 112.793 252.528 252.115 253.012l0.046 0h352.853c138.816-1.207 250.881-114.019 250.881-253.004 0-0.303-0.001-0.606-0.002-0.909l0 0.047v-336.64c-0.032-26.496-4.085-52.035-11.581-76.053l0.488 1.813zM665.6 640c-12.211 16.465-29.371 28.646-49.26 34.397l-0.66 0.163-130.987 39.68c-6.715 2.065-14.433 3.254-22.429 3.254-35.628 0-65.743-23.605-75.559-56.028l-0.145-0.559c-1.601-6.27-2.533-13.473-2.56-20.89l-0-0.017v-139.947c0.476-21.873 7.767-41.955 19.824-58.307l-0.197 0.28 156.587-208.213c20.741 56.402 55.802 103.422 100.835 138.139l0.712 0.528c44.33 33.733 99.167 55.859 158.865 60.936l1.135 0.078zM921.6 298.667h3.413c13.405-17.689 21.473-40.067 21.473-64.329 0-34.526-16.338-65.236-41.705-84.82l-0.249-0.184-93.867-70.4c-17.508-13.441-39.731-21.54-63.845-21.54-34.301 0-64.774 16.387-84.018 41.759l-0.19 0.262-18.773 23.467h38.827c113.039 0.046 208.625 74.718 240.17 177.42l0.47 1.78z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notepad-edit"]},"attrs":[{}],"properties":{"order":7353,"id":184,"name":"notepad-edit","prevSize":32,"code":60036},"setIdx":0,"setId":0,"iconIdx":388},{"icon":{"paths":["M740.693 447.573c0.002-0.127 0.003-0.277 0.003-0.427 0-18.144-14.709-32.853-32.853-32.853-0.001 0-0.002 0-0.003 0l-389.973-0c-18.38 0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28v-0h389.973c0.001 0 0.002 0 0.003 0 18.144 0 32.853-14.709 32.853-32.853 0-0.15-0.001-0.3-0.003-0.449l0 0.023zM603.307 655.787c0.002-0.128 0.003-0.278 0.003-0.429 0-17.995-14.468-32.611-32.407-32.85l-0.023-0h-250.88c-18.38 0-33.28 14.9-33.28 33.28s14.9 33.28 33.28 33.28v0h250.88c17.961-0.239 32.429-14.855 32.429-32.851 0-0.151-0.001-0.302-0.003-0.452l0 0.023zM901.973 388.267v315.307c0.009 0.763 0.014 1.664 0.014 2.566 0 127.83-103.146 231.568-230.75 232.527l-0.091 0.001h-318.293c-128.477-0.243-232.533-104.449-232.533-232.96 0-0 0-0 0-0l-0 0v-317.44c-0-0.017-0-0.037-0-0.057 0-118.348 88.412-216.046 202.792-230.649l1.155-0.12v40.107c0 17.673 14.327 32 32 32s32-14.327 32-32v0-42.667h247.467v42.667c0 17.673 14.327 32 32 32s32-14.327 32-32v0-40.107c115.498 14.523 203.947 112.128 203.947 230.392 0 0.153-0 0.306-0 0.458l0-0.024zM352.853 155.307c-4.275-0.305-9.264-0.479-14.293-0.479s-10.018 0.174-14.96 0.516l0.667-0.037v-35.84c0-17.673 14.327-32 32-32s32 14.327 32 32v0 35.84zM671.147 155.307h-35.413v-35.84c-0-17.673 14.327-32 32-32s32 14.327 32 32v-0 37.973c-8.543-1.297-18.446-2.070-28.518-2.133l-0.068-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notepad"]},"attrs":[{}],"properties":{"order":7354,"id":183,"name":"notepad","prevSize":32,"code":60037},"setIdx":0,"setId":0,"iconIdx":389},{"icon":{"paths":["M938.667 213.333c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M810.667 405.333c-105.941-0.242-191.758-86.059-192-191.977l-0-0.023c0.463-31.239 8.299-60.544 21.838-86.392l-0.505 1.059h-341.333c-117.821 0-213.333 95.513-213.333 213.333v0 384c0 117.821 95.513 213.333 213.333 213.333v0h384c117.821 0 213.333-95.513 213.333-213.333v0-341.333c-24.789 13.034-54.095 20.87-85.187 21.332l-0.147 0.002z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-2"]},"attrs":[{},{}],"properties":{"order":7355,"id":182,"name":"notification-2","prevSize":32,"code":60038},"setIdx":0,"setId":0,"iconIdx":390},{"icon":{"paths":["M842.24 626.773l-29.013-42.667c-35.853-53.174-57.23-118.687-57.23-189.192 0-2.187 0.021-4.37 0.062-6.548l-0.005 0.327v-8.96c-0.397-131.895-107.409-238.663-239.359-238.663-34.077 0-66.491 7.121-95.835 19.956l1.54-0.6c-84.124 35.446-142.105 117.214-142.105 212.525 0 1.184 0.009 2.367 0.027 3.547l-0.002-0.178v2.987c0.005 0.724 0.009 1.58 0.009 2.437 0 76.939-25.142 148.006-67.658 205.433l0.663-0.937-29.013 39.253c-10.927 14.631-17.496 33.073-17.496 53.050 0 0.25 0.001 0.499 0.003 0.749l-0-0.038c0.945 48.778 40.359 88.043 89.106 88.746l0.067 0.001h512c49.956 0 90.453-40.497 90.453-90.453h-0v-2.56c-0.657-18.135-6.632-34.754-16.399-48.488l0.185 0.275zM543.573 456.107c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-135.68c0-17.673 14.327-32 32-32s32 14.327 32 32v0z","M429.653 810.667c10.176 36.567 43.18 62.955 82.347 62.955s72.171-26.387 82.204-62.354l0.143-0.6z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-bing"]},"attrs":[{},{}],"properties":{"order":7356,"id":181,"name":"notification-bing","prevSize":32,"code":60039},"setIdx":0,"setId":0,"iconIdx":391},{"icon":{"paths":["M938.667 213.333c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M810.667 405.333c-105.941-0.242-191.758-86.059-192-191.977l-0-0.023c-0.001-0.213-0.001-0.466-0.001-0.719 0-38.712 11.797-74.668 31.993-104.469l-0.418 0.655c-41.309-14.66-88.953-23.131-138.576-23.131-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667 0-49.623-8.471-97.267-24.046-141.565l0.916 2.989c-29.147 19.777-65.103 31.575-103.815 31.575-0.253 0-0.505-0.001-0.758-0.002l0.039 0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-circle"]},"attrs":[{},{}],"properties":{"order":7357,"id":180,"name":"notification-circle","prevSize":32,"code":60040},"setIdx":0,"setId":0,"iconIdx":392},{"icon":{"paths":["M938.667 213.333c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M810.667 405.333c-105.941-0.242-191.758-86.059-192-191.977l-0-0.023c0.463-31.239 8.299-60.544 21.838-86.392l-0.505 1.059h-341.333c-117.821 0-213.333 95.513-213.333 213.333v0 384c0 117.821 95.513 213.333 213.333 213.333v0h384c117.821 0 213.333-95.513 213.333-213.333v0-341.333c-24.789 13.034-54.095 20.87-85.187 21.332l-0.147 0.002zM408.32 765.44c-10.888 6.949-24.162 11.075-38.4 11.075s-27.512-4.127-38.692-11.249l0.292 0.174c-52.247-28.25-87.917-81.284-91.287-142.918l-0.019-0.442c-0.015-0.575-0.023-1.252-0.023-1.931 0-36.723 24.418-67.742 57.903-77.709l0.574-0.147c6.429-1.908 13.815-3.006 21.458-3.006 18.986 0 36.389 6.776 49.922 18.042l-0.126-0.102c13.528-11.206 31.061-18.005 50.181-18.005 9.706 0 19.002 1.752 27.591 4.956l-0.545-0.178c29.935 11.236 50.852 39.616 50.852 72.882 0 1.228-0.029 2.45-0.085 3.664l0.006-0.172c-1.387 62.727-36.924 116.845-88.701 144.626l-0.899 0.441z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-favorite"]},"attrs":[{},{}],"properties":{"order":7358,"id":179,"name":"notification-favorite","prevSize":32,"code":60041},"setIdx":0,"setId":0,"iconIdx":393},{"icon":{"paths":["M814.080 640c-35.851-53.728-57.209-119.786-57.209-190.832 0-1.761 0.013-3.519 0.039-5.274l-0.003 0.265v-7.253c-0.154-132.078-107.26-239.089-239.36-239.089-34.077 0-66.49 7.121-95.834 19.956l1.54-0.601c-84.124 35.446-142.105 117.214-142.105 212.525 0 1.184 0.009 2.367 0.027 3.547l-0.002-0.178v2.987c0.002 0.382 0.002 0.835 0.002 1.288 0 77.441-25.471 148.933-68.492 206.555l0.65-0.91-28.16 39.68c-10.93 14.822-17.493 33.447-17.493 53.606 0 0.054 0 0.108 0 0.163l-0-0.008c0 49.956 40.497 90.453 90.453 90.453h509.867c49.956 0 90.453-40.497 90.453-90.453h-0v-2.56c0.001-0.152 0.001-0.332 0.001-0.512 0-18.893-5.738-36.447-15.568-51.012l0.206 0.324z","M430.507 867.413c10.176 36.567 43.18 62.955 82.347 62.955s72.171-26.387 82.204-62.354l0.143-0.6z","M544.427 200.107s0 0 0 0v-82.347c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 80.64c-0.091 0.513-0.143 1.104-0.143 1.707s0.052 1.194 0.152 1.768l-0.009-0.061c11.517-1.967 24.783-3.092 38.312-3.092 9.049 0 17.981 0.503 26.769 1.483l-1.081-0.098z","M144.64 469.333c-0.086 0.001-0.188 0.001-0.289 0.001-15.933 0-29.11-11.802-31.265-27.141l-0.019-0.167c-2.463-14.052-3.871-30.232-3.871-46.741 0-91.075 42.846-172.142 109.48-224.145l0.631-0.474c5.135-3.546 11.494-5.664 18.347-5.664 17.974 0 32.544 14.571 32.544 32.544 0 11.121-5.578 20.939-14.088 26.809l-0.109 0.071c-50.598 41.080-82.667 103.28-82.667 172.971 0 12.596 1.048 24.946 3.060 36.97l-0.18-1.301c0.206 1.356 0.324 2.921 0.324 4.514 0 16.048-11.972 29.299-27.473 31.309l-0.158 0.017z","M879.36 469.333h-4.267c-15.659-2.027-27.631-15.279-27.631-31.326 0-1.592 0.118-3.157 0.345-4.687l-0.021 0.173c1.872-10.836 2.942-23.316 2.942-36.046 0-69.718-32.095-131.94-82.316-172.696l-0.412-0.324c-8.62-5.941-14.198-15.759-14.198-26.88 0-17.974 14.571-32.544 32.544-32.544 6.853 0 13.211 2.118 18.456 5.736l-0.109-0.071c67.121 52.481 109.862 133.462 109.862 224.426 0 15.969-1.317 31.631-3.849 46.882l0.227-1.656c-1.366 16.301-14.933 29.014-31.469 29.014-0.037 0-0.073-0-0.11-0l0.006 0z"],"attrs":[{},{},{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-on"]},"attrs":[{},{},{},{},{}],"properties":{"order":7359,"id":178,"name":"notification-on","prevSize":32,"code":60042},"setIdx":0,"setId":0,"iconIdx":394},{"icon":{"paths":["M938.667 213.333c0 70.692-57.308 128-128 128s-128-57.308-128-128c0-70.692 57.308-128 128-128s128 57.308 128 128z","M810.667 405.333c-105.941-0.242-191.758-86.059-192-191.977l-0-0.023c0.463-31.239 8.299-60.544 21.838-86.392l-0.505 1.059h-341.333c-117.821 0-213.333 95.513-213.333 213.333v0 384c0 117.821 95.513 213.333 213.333 213.333v0h384c117.821 0 213.333-95.513 213.333-213.333v0-341.333c-24.789 13.034-54.095 20.87-85.187 21.332l-0.147 0.002zM290.56 533.333h200.107c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-200.107c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM661.333 768h-370.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h370.773c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification-status"]},"attrs":[{},{}],"properties":{"order":7360,"id":177,"name":"notification-status","prevSize":32,"code":60043},"setIdx":0,"setId":0,"iconIdx":395},{"icon":{"paths":["M814.080 640c-35.851-53.728-57.209-119.786-57.209-190.832 0-1.761 0.013-3.519 0.039-5.274l-0.003 0.265v-7.68c-0.397-131.895-107.409-238.663-239.359-238.663-34.077 0-66.491 7.121-95.835 19.956l1.54-0.6c-84.112 35.315-142.109 117.005-142.109 212.241 0 1.284 0.011 2.566 0.032 3.845l-0.002-0.193v2.56c0.002 0.466 0.004 1.017 0.004 1.568 0 77.349-25.474 148.749-68.489 206.267l0.645-0.902-28.16 40.107c-10.929 14.727-17.494 33.261-17.494 53.328 0 0.152 0 0.304 0.001 0.456l-0-0.023c0 49.956 40.497 90.453 90.453 90.453h509.867c49.956 0 90.453-40.497 90.453-90.453h-0v-2.56c0.003-0.267 0.004-0.582 0.004-0.897 0-18.766-5.742-36.192-15.565-50.615l0.201 0.312z","M430.507 866.987c6.018 40.553 40.59 71.314 82.347 71.314s76.329-30.762 82.291-70.859l0.056-0.455z","M544.427 199.68v-82.347c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 81.067c-0.12 0.448-0.19 0.963-0.19 1.493s0.069 1.045 0.199 1.535l-0.009-0.042c11.677-1.865 25.139-2.931 38.851-2.931 8.856 0 17.609 0.445 26.236 1.312l-1.087-0.089z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["notification"]},"attrs":[{},{},{}],"properties":{"order":7361,"id":176,"name":"notification","prevSize":32,"code":60044},"setIdx":0,"setId":0,"iconIdx":396},{"icon":{"paths":["M576 181.333c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64v0c35.346 0 64 28.654 64 64v0zM512 309.333c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c-0.242-35.162-28.802-63.573-63.999-63.573-0.001 0-0.001 0-0.002 0l0-0zM330.667 213.333c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM693.333 213.333c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM693.333 394.667c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c-0.242-35.162-28.802-63.573-63.999-63.573-0.001 0-0.001 0-0.002 0l0-0zM874.667 309.333c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM512 480c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM330.667 394.667c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c-0.242-35.162-28.802-63.573-63.999-63.573-0.001 0-0.001 0-0.002 0l0-0zM149.333 309.333c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64v0c0-35.346-28.654-64-64-64v0zM149.333 501.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM330.667 586.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c-0.241-23.38-19.25-42.24-42.665-42.24-0.001 0-0.002 0-0.002 0l0-0zM330.667 586.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c-0.241-23.38-19.25-42.24-42.665-42.24-0.001 0-0.002 0-0.002 0l0-0zM512 672c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM512 672c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM693.333 586.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c-0.241-23.38-19.25-42.24-42.665-42.24-0.001 0-0.002 0-0.002 0l0-0zM693.333 586.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c-0.241-23.38-19.25-42.24-42.665-42.24-0.001 0-0.002 0-0.002 0l0-0zM874.667 501.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM874.667 501.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM149.333 501.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0zM874.667 640c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0zM693.333 736.427c-17.672 0.002-31.997 14.328-31.997 32 0 17.673 14.327 32 32 32s32-14.327 32-32c0-0.15-0.001-0.3-0.003-0.449l0 0.023c-0.241-17.489-14.474-31.573-31.997-31.573-0.001 0-0.002 0-0.003 0l0-0zM512 832c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0zM330.667 736c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0zM149.333 640c-17.673 0-32 14.327-32 32s14.327 32 32 32c17.673 0 32-14.327 32-32v0c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ocean"]},"attrs":[{}],"properties":{"order":7362,"id":175,"name":"ocean","prevSize":32,"code":60045},"setIdx":0,"setId":0,"iconIdx":397},{"icon":{"paths":["M831.147 284.16h-640c-58.643 0.961-105.813 48.725-105.813 107.506 0 0.005 0 0.010 0 0.014l-0-0.001v191.147c0 47.128 38.205 85.333 85.333 85.333v0h682.667c47.128 0 85.333-38.205 85.333-85.333v0-191.147c0-59.382-48.138-107.52-107.52-107.52v0zM586.667 616.107h-120.747c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h120.747c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM146.347 664.32c-7.049-2.166-13.125-4.773-18.852-7.936l0.505 0.256c5.044 2.632 11.106 5.228 17.372 7.388l0.975 0.292zM896 656.64c-5.221 2.907-11.298 5.514-17.651 7.493l-0.695 0.187c7.24-2.452 13.302-5.048 19.125-8.044l-0.778 0.364zM149.333 665.173c6.363 1.768 13.692 2.849 21.252 2.986l0.081 0.001c-0.25 0.003-0.545 0.005-0.841 0.005-7.307 0-14.358-1.093-21-3.125l0.508 0.134zM896 725.333v70.827c0 47.128-38.205 85.333-85.333 85.333v0h-597.333c-47.128 0-85.333-38.205-85.333-85.333v0-70.827c12.731 4.248 27.393 6.739 42.624 6.826l0.043 0h682.667c15.274-0.087 29.935-2.578 43.667-7.113l-1.001 0.286zM853.333 668.16c7.642-0.137 14.971-1.219 21.956-3.132l-0.623 0.145c-6.134 1.898-13.185 2.992-20.492 2.992-0.296 0-0.591-0.002-0.886-0.005l0.045 0zM652.8 316.16c-17.673 0-32-14.327-32-32v0-28.16c0-23.564-19.103-42.667-42.667-42.667v0h-102.4c-23.564 0-42.667 19.103-42.667 42.667v0 26.88c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-26.88c0-59.382 48.138-107.52 107.52-107.52v0h101.12c59.198 0.242 107.093 48.288 107.093 107.519 0 0-0 0.001-0 0.001l0-0v26.88c0.016 0.382 0.026 0.83 0.026 1.28 0 17.673-14.327 32-32 32-0.009 0-0.018-0-0.027-0l0.001 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["office-bag"]},"attrs":[{}],"properties":{"order":7363,"id":174,"name":"office-bag","prevSize":32,"code":60046},"setIdx":0,"setId":0,"iconIdx":398},{"icon":{"paths":["M333.227 334.933c-15.208 0.041-29.89 2.219-43.785 6.251l1.118-0.278v-115.627c-0-0.003-0-0.007-0-0.010 0-77.29 62.656-139.947 139.947-139.947 0.6 0 1.199 0.004 1.797 0.011l-0.091-0.001h151.040c0.635-0.010 1.383-0.016 2.133-0.016 77.29 0 139.947 62.656 139.947 139.947 0 0.006-0 0.012-0 0.017l0-0.001v116.053c-10.937-2.745-23.555-4.441-36.527-4.691l-0.167-0.003h-24.747v-111.36c0-43.358-35.149-78.507-78.507-78.507v0h-153.173c-0.127-0.001-0.277-0.001-0.427-0.001-43.358 0-78.507 35.149-78.507 78.507 0 0 0 0.001 0 0.001l0 0v109.653zM898.987 783.787h-429.653c-16.966-0-30.72-13.754-30.72-30.72s13.754-30.72 30.72-30.72v0h422.4l-46.080-256c-12.827-61.688-59.434-109.864-119.207-124.778l-1.113-0.235v36.693c0 16.966-13.754 30.72-30.72 30.72s-30.72-13.754-30.72-30.72v0-42.667h-310.613v42.667c0.136 1.085 0.213 2.34 0.213 3.614 0 16.966-13.754 30.72-30.72 30.72s-30.72-13.754-30.72-30.72c0-1.274 0.078-2.529 0.228-3.762l-0.015 0.148v-36.693c-61.106 16.022-107.467 65.381-118.887 127.003l-0.153 0.997-45.227 280.747c-1.383 7.953-2.173 17.112-2.173 26.455 0 89.258 72.126 161.669 161.275 162.131l0.044 0h450.133c0.043 0 0.093 0 0.144 0 86.907 0 157.802-68.558 161.551-154.542l0.012-0.338z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["package"]},"attrs":[{}],"properties":{"order":7364,"id":173,"name":"package","prevSize":32,"code":60047},"setIdx":0,"setId":0,"iconIdx":399},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM698.88 335.36c14.374 0 26.027 11.653 26.027 26.027s-11.653 26.027-26.027 26.027c-14.374 0-26.027-11.653-26.027-26.027v0c0-14.374 11.653-26.027 26.027-26.027v0zM501.76 309.333c14.374-0 26.027 11.653 26.027 26.027s-11.653 26.027-26.027 26.027c-14.374 0-26.027-11.653-26.027-26.027v0c0-14.374 11.653-26.027 26.027-26.027l0 0zM318.72 405.76c0.127-0.002 0.277-0.003 0.427-0.003 14.374 0 26.027 11.653 26.027 26.027 0 0.001-0 0.002-0 0.004l0-0c-1.721 13.096-12.812 23.101-26.24 23.101s-24.519-10.005-26.226-22.966l-0.014-0.134c0-14.374 11.653-26.027 26.027-26.027h0zM206.080 597.333c-14.374 0-26.027-11.653-26.027-26.027v0c0-14.374 11.653-26.027 26.027-26.027s26.027 11.653 26.027 26.027l-0 0c0 14.374-11.653 26.027-26.027 26.027h0zM507.307 703.147c-14.374 0-26.027-11.653-26.027-26.027s11.653-26.027 26.027-26.027c14.374 0 26.027 11.653 26.027 26.027v0c0 14.374-11.653 26.027-26.027 26.027v0zM606.293 554.667c-14.374 0-26.027-11.653-26.027-26.027s11.653-26.027 26.027-26.027c14.374 0 26.027 11.653 26.027 26.027v0c0 14.374-11.653 26.027-26.027 26.027v0zM728.747 475.733c-263.253-61.013-303.787 157.867-309.76 221.013-0.901 9.371-8.735 16.64-18.267 16.64-0.028 0-0.056-0-0.084-0l0.004 0h-149.76c-10.307-0.080-18.632-8.454-18.632-18.773 0-1.823 0.26-3.586 0.745-5.253l-0.033 0.133c58.88-205.653 190.293-317.867 331.947-314.453 68.798 2.378 131.2 27.939 180.076 69.061l-0.449-0.368c6.273 3.026 10.524 9.337 10.524 16.64 0 10.172-8.246 18.417-18.417 18.417-2.868 0-5.583-0.656-8.003-1.825l0.11 0.048zM817.92 514.987c-14.374 0-26.027-11.653-26.027-26.027s11.653-26.027 26.027-26.027c14.374 0 26.027 11.653 26.027 26.027v0c0.020 0.382 0.031 0.83 0.031 1.28 0 14.374-11.653 26.027-26.027 26.027-0.011 0-0.022-0-0.033-0l0.002 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pails"]},"attrs":[{}],"properties":{"order":7365,"id":172,"name":"pails","prevSize":32,"code":60048},"setIdx":0,"setId":0,"iconIdx":400},{"icon":{"paths":["M867.84 375.893l-236.373-236.373c-23.769-23.708-56.572-38.367-92.8-38.367s-69.031 14.659-92.803 38.37l0.003-0.003-322.133 322.133c-23.708 23.769-38.367 56.572-38.367 92.8s14.659 69.031 38.37 92.803l-0.003-0.003 236.373 236.373c23.769 23.708 56.572 38.367 92.8 38.367s69.031-14.659 92.803-38.37l-0.003 0.003 322.133-322.133c23.708-23.769 38.367-56.572 38.367-92.8s-14.659-69.031-38.37-92.803l0.003 0.003zM827.307 469.333c-4.119 13.242-16.264 22.69-30.616 22.69-1.997 0-3.952-0.183-5.848-0.533l0.197 0.030c-79.54-14.469-171.082-22.743-264.556-22.743-129.005 0-254.33 15.759-374.154 45.458l10.657-2.235 334.080-334.080c10.899-10.963 25.991-17.748 42.667-17.748s31.767 6.785 42.664 17.745l228.269 229.976c11.767 11.146 19.089 26.882 19.089 44.328 0 6.098-0.895 11.988-2.56 17.544l0.111-0.432zM938.667 832.427c0 52.784-42.79 95.573-95.573 95.573s-95.573-42.79-95.573-95.573h0c6.189-53.294 28.073-100.577 60.843-138.113l-0.256 0.3c7.793-11.267 20.646-18.554 35.2-18.554s27.407 7.287 35.107 18.413l0.093 0.142c32.83 37.022 54.685 84.453 60.073 136.767l0.087 1.046z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paintbucket"]},"attrs":[{}],"properties":{"order":7366,"id":171,"name":"paintbucket","prevSize":32,"code":60049},"setIdx":0,"setId":0,"iconIdx":401},{"icon":{"paths":["M810.667 476.587l-166.827 320.853c-40.287 81.9-121.816 137.977-216.754 141.215l-0.419 0.011c-0.149 0-0.325 0.001-0.501 0.001-35.057 0-68.086-8.682-97.055-24.012l1.129 0.545c-54.128-28.663-93.845-78.433-108.496-138.057l-0.304-1.463c-4.972-18.856-7.827-40.504-7.827-62.819 0-44.341 11.273-86.049 31.11-122.414l-0.669 1.34 155.307-298.667 49.92-95.573c29.856-62.935 92.88-105.678 165.888-105.678 27.898 0 54.339 6.241 78.001 17.404l-1.116-0.473c55.114 32.444 91.518 91.475 91.518 159.008 0 33.478-8.946 64.866-24.577 91.905l0.473-0.886-79.787 152.747-82.347 152.747c-21.633 42.34-64.517 71.057-114.207 72.104l-0.14 0.002c-0.208 0.001-0.453 0.002-0.699 0.002-18.458 0-35.847-4.579-51.093-12.662l0.592 0.286c-28.93-15.134-50.15-41.663-57.869-73.47l-0.158-0.77c-2.905-10.325-4.574-22.181-4.574-34.428 0-22.186 5.48-43.092 15.16-61.438l-0.346 0.719 120.32-231.68c5.457-10.435 16.204-17.434 28.587-17.434 17.758 0 32.154 14.396 32.154 32.154 0 5.376-1.319 10.443-3.652 14.897l0.084-0.177-120.747 231.68c-5.082 9.522-8.067 20.826-8.067 32.827 0 6.070 0.764 11.961 2.2 17.583l-0.106-0.49c3.374 14.455 12.566 26.3 24.913 33.148l0.26 0.132c6.817 2.86 14.74 4.522 23.051 4.522 24.836 0 46.206-14.839 55.727-36.135l0.155-0.387 66.56-128 93.867-180.907c10.658-17.522 16.968-38.709 16.968-61.37 0-42.722-22.425-80.207-56.147-101.325l-0.5-0.292c-13.93-6.132-30.17-9.701-47.244-9.701-48.398 0-90.099 28.677-109.036 69.967l-0.307 0.747-91.733 178.347-112.64 216.32c-14.553 26.574-23.113 58.222-23.113 91.868 0 16.463 2.049 32.448 5.907 47.713l-0.287-1.341c10.555 42.919 38.212 77.97 75.152 98.162l0.795 0.398c20.516 9.25 44.476 14.639 69.695 14.639 70.067 0 130.418-41.6 157.702-101.448l0.443-1.084 166.827-320.853c5.61-10.157 16.255-16.922 28.479-16.922 5.163 0 10.044 1.207 14.376 3.353l-0.189-0.085c11.453 5.042 19.304 16.291 19.304 29.374 0 4.985-1.14 9.704-3.174 13.911l0.083-0.191z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paper-clip"]},"attrs":[{}],"properties":{"order":7367,"id":170,"name":"paper-clip","prevSize":32,"code":60050},"setIdx":0,"setId":0,"iconIdx":402},{"icon":{"paths":["M330.667 473.173c-104.389 0-189.013 84.624-189.013 189.013v0c0.257 31.238 8.12 60.581 21.825 86.345l-0.491-1.012-65.707 55.040c-6.876 5.904-11.204 14.608-11.204 24.322 0 17.562 14.147 31.82 31.667 31.998l0.017 0c0.81 0.076 1.752 0.119 2.703 0.119 6.665 0 12.835-2.123 17.869-5.729l-0.093 0.063 62.72-52.48c33.664 31.71 79.149 51.196 129.185 51.196 104.154 0 188.587-84.433 188.587-188.587s-84.433-188.587-188.587-188.587c-0.417 0-0.833 0.001-1.249 0.004l0.064-0zM330.667 787.2c-0.127 0-0.277 0.001-0.427 0.001-69.043 0-125.013-55.97-125.013-125.013s55.97-125.013 125.013-125.013c69.043 0 125.013 55.97 125.013 125.013l-0-0c0 0 0 0 0 0.001 0 68.893-55.727 124.77-124.564 125.013l-0.023 0zM938.667 322.133v379.733c0 89.072-72.208 161.28-161.28 161.28v0h-332.373c74.195-39.505 123.845-116.352 123.845-204.796 0-127.718-103.536-231.253-231.253-231.253-49.922 0-96.149 15.818-133.942 42.716l0.71-0.48v-147.2c0-89.072 72.208-161.28 161.28-161.28v0h74.667v195.84c0 44.065 35.722 79.787 79.787 79.787v0h102.4c0 0 0.001 0 0.001 0 44.151 0 79.97-35.67 80.212-79.764l0-0.023v-195.84h74.24c0.127-0 0.277-0.001 0.427-0.001 89.072 0 161.28 72.208 161.28 161.28 0 0-0 0-0 0.001l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["parcel-tracking"]},"attrs":[{}],"properties":{"order":7368,"id":169,"name":"parcel-tracking","prevSize":32,"code":60051},"setIdx":0,"setId":0,"iconIdx":403},{"icon":{"paths":["M238.933 418.56l202.24 116.48c25.765 15.938 42.674 44.040 42.674 76.090 0 0.4-0.003 0.799-0.008 1.197l0.001-0.061v233.387c-0.311 49.013-40.115 88.625-89.172 88.625-16.33 0-31.636-4.39-44.8-12.054l0.425 0.228-200.533-116.48c-25.772-16.037-42.671-44.209-42.671-76.327 0-0.316 0.002-0.632 0.005-0.947l-0 0.048v-233.387c0.842-48.601 40.438-87.677 89.161-87.677 15.647 0 30.353 4.030 43.137 11.109l-0.458-0.232zM785.067 418.56l-47.36 27.307v112.64c0 0.001 0 0.002 0 0.003 0 17.523-14.085 31.757-31.551 31.997l-0.023 0c-0.001 0-0.002 0-0.003 0-17.523 0-31.757-14.085-31.997-31.551l-0-0.023v-76.373l-91.307 52.48c-25.765 15.938-42.674 44.040-42.674 76.090 0 0.4 0.003 0.799 0.008 1.197l-0.001-0.061v233.387c0.311 49.013 40.115 88.625 89.172 88.625 16.33 0 31.636-4.39 44.8-12.054l-0.425 0.228 202.24-116.48c25.772-16.037 42.671-44.209 42.671-76.327 0-0.316-0.002-0.632-0.005-0.947l0 0.048v-233.387c-0.311-49.013-40.115-88.625-89.172-88.625-16.33 0-31.636 4.39-44.8 12.054l0.425-0.228zM758.613 217.6l-203.947-116.48c-12.708-7.557-28.019-12.023-44.373-12.023s-31.665 4.467-44.78 12.247l0.406-0.223-105.387 62.293 376.747 220.587 21.76-12.8c26.539-15.671 44.062-44.127 44.062-76.676 0-32.723-17.71-61.309-44.068-76.696l-0.421-0.227zM673.28 420.267l-374.613-219.733-31.573 18.347c-26.659 15.643-44.275 44.164-44.275 76.8s17.616 61.157 43.858 76.574l0.417 0.226 202.24 116.48c12.739 7.435 28.044 11.824 44.373 11.824s31.634-4.389 44.798-12.053l-0.425 0.229 116.907-67.84z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["parcel"]},"attrs":[{}],"properties":{"order":7369,"id":168,"name":"parcel","prevSize":32,"code":60052},"setIdx":0,"setId":0,"iconIdx":404},{"icon":{"paths":["M85.333 334.080v355.84c0 94.257 76.41 170.667 170.667 170.667v0h276.907v-698.88h-276.907c-0.002-0-0.005-0-0.009-0-94.257 0-170.667 76.41-170.667 170.667 0 0.6 0.003 1.199 0.009 1.798l-0.001-0.091zM380.587 469.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667c-23.564 0-42.667-19.103-42.667-42.667v0c0-23.564 19.103-42.667 42.667-42.667v0zM271.36 512c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667c0-23.564 19.103-42.667 42.667-42.667v0c23.564 0 42.667 19.103 42.667 42.667v0zM938.667 334.080v355.84c0 94.257-76.41 170.667-170.667 170.667v0h-103.68v42.667c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-784.213c0-17.673 14.327-32 32-32s32 14.327 32 32v0 42.667h103.68c0.002-0 0.005-0 0.009-0 94.257 0 170.667 76.41 170.667 170.667 0 0.6-0.003 1.199-0.009 1.798l0.001-0.091z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["password-check"]},"attrs":[{}],"properties":{"order":7370,"id":167,"name":"password-check","prevSize":32,"code":60053},"setIdx":0,"setId":0,"iconIdx":405},{"icon":{"paths":["M305.067 853.333h-89.173c-21.126-0.107-38.211-17.258-38.211-38.4 0-1.503 0.086-2.987 0.254-4.445l-0.017 0.178 101.547-619.093c10.691-60.346 62.476-105.673 124.953-106.24l0.060-0h197.12c0.127-0 0.277-0 0.427-0 115.079 0 208.397 93.168 208.64 208.19l0 0.023v5.12c-1.686 141.745-116.985 256.001-258.969 256.001-0.306 0-0.612-0.001-0.918-0.002l0.047 0h-128c-19.694 0.423-35.866 14.978-38.798 33.909l-0.029 0.225-37.973 230.4c-4.047 19.338-20.766 33.72-40.916 34.133l-0.044 0.001zM864.427 371.627c-35.062 143.088-162.085 247.634-313.571 247.893l-0.029 0h-107.947l-34.56 209.92c-8.825 47.209-48.549 82.849-97.029 85.323l-0.251 0.010c4.336 13.208 16.065 22.783 30.174 23.886l0.119 0.007h134.4c19.726-0.77 35.96-14.821 40.054-33.424l0.052-0.283 31.147-170.667c4.655-26.808 27.743-46.934 55.532-46.934 0.127 0 0.254 0 0.38 0.001l-0.019-0h50.347c3.791 0.223 8.224 0.35 12.687 0.35 123.017 0 223.516-96.41 230.061-217.794l0.025-0.582v-2.56c-0.351-35.822-12.143-68.822-31.89-95.596l0.317 0.45z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["paypal"]},"attrs":[{}],"properties":{"order":7371,"id":166,"name":"paypal","prevSize":32,"code":60054},"setIdx":0,"setId":0,"iconIdx":406},{"icon":{"paths":["M913.067 233.387l-122.453-122.453c-15.544-16.11-37.324-26.114-61.44-26.114s-45.896 10.004-61.416 26.089l-0.024 0.025-92.16 91.733-399.36 399.36-61.013 184.32-26.88 80.213c-1.51 4.378-2.571 9.459-2.974 14.724l-0.013 0.21s0 2.987 0 4.693c-0.11 1.468-0.172 3.18-0.172 4.907s0.063 3.439 0.185 5.134l-0.013-0.227s0 3.413 0 5.12c0.989 2.956 2.143 5.494 3.523 7.886l-0.11-0.206 2.56 4.693 5.12 6.827 3.413 3.84 7.253 5.547 3.84 2.56 11.093 4.693h5.973c1.987 0.309 4.28 0.486 6.613 0.486s4.626-0.177 6.864-0.518l-0.251 0.031c0.117 0.001 0.256 0.002 0.394 0.002 5.84 0 11.424-1.097 16.557-3.095l-0.311 0.107 80.213-26.88 184.32-61.013 399.36-399.36 91.307-90.453c16.11-15.544 26.114-37.324 26.114-61.44s-10.004-45.896-26.089-61.416l-0.025-0.024zM187.733 858.453l-21.76-21.76 38.827-116.053 98.987 98.987zM870.4 311.040l-46.507 46.933-157.867-155.307 46.933-46.507c3.977-4.21 9.597-6.83 15.83-6.83 0.135 0 0.269 0.001 0.403 0.004l-0.020-0c0.043-0 0.094-0 0.144-0 6.174 0 11.735 2.622 15.63 6.814l0.012 0.013 122.88 122.453c4.123 4.161 6.67 9.89 6.67 16.213s-2.547 12.052-6.672 16.215l0.002-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pencil"]},"attrs":[{}],"properties":{"order":7372,"id":165,"name":"pencil","prevSize":32,"code":60055},"setIdx":0,"setId":0,"iconIdx":407},{"icon":{"paths":["M621.653 520.533c0 79.176-64.184 143.36-143.36 143.36s-143.36-64.184-143.36-143.36c0-79.176 64.184-143.36 143.36-143.36v0c79.176 0 143.36 64.184 143.36 143.36v0zM478.293 713.813c-98.133 0-177.493 50.347-177.493 112.64s79.36 112.213 177.493 112.213 177.493-50.347 177.493-112.213-79.36-112.64-177.493-112.64zM704.427 85.333c-66.686 0-120.746 54.060-120.746 120.747s54.060 120.747 120.747 120.747c66.687 0 120.747-54.060 120.747-120.747 0-0.15-0-0.3-0.001-0.45l0 0.023c0-0 0-0 0-0.001 0-66.451-53.869-120.32-120.32-120.32-0.15 0-0.3 0-0.45 0.001l0.023-0zM250.88 85.333c-0.126-0-0.276-0.001-0.426-0.001-66.687 0-120.747 54.060-120.747 120.747s54.060 120.747 120.747 120.747c66.687 0 120.747-54.060 120.747-120.747 0-0.15-0-0.299-0.001-0.449l0 0.023c0-66.451-53.869-120.32-120.32-120.32l0-0zM697.6 419.413c-13.653 0-26.88 0-40.107 2.133 16.749 28.593 26.639 62.964 26.639 99.645 0 47.583-16.643 91.279-44.427 125.583l0.294-0.375c17.351 3.602 37.373 5.767 57.864 5.972l0.163 0.001c108.373 0 195.84-52.48 195.84-116.48s-87.893-116.48-196.267-116.48z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["people"]},"attrs":[{}],"properties":{"order":7373,"id":164,"name":"people","prevSize":32,"code":60056},"setIdx":0,"setId":0,"iconIdx":408},{"icon":{"paths":["M938.667 337.493c-2.163-139.724-115.937-252.16-255.971-252.16-0.010 0-0.020 0-0.031 0l-346.452-0c-139.165 2.872-250.88 116.364-250.88 255.949 0 0.018 0 0.036 0 0.054l-0-0.003v344.747c1.925 139.909 115.793 252.587 255.977 252.587 0.008 0 0.016-0 0.024-0l346.879 0c140.095-1.687 253.013-115.648 253.013-255.983 0-0.006-0-0.012-0-0.018l0 0.001zM384 341.333c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667c-23.564 0-42.667-19.103-42.667-42.667v0c0-23.564 19.103-42.667 42.667-42.667v0zM384 672c-0.203 0.005-0.443 0.008-0.683 0.008-8.622 0-16.402-3.602-21.919-9.383l-0.011-0.012c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 256-256c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-256 256c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0zM640 682.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["percentage"]},"attrs":[{}],"properties":{"order":7374,"id":163,"name":"percentage","prevSize":32,"code":60057},"setIdx":0,"setId":0,"iconIdx":409},{"icon":{"paths":["M669.867 85.333h-315.733c-65.273-0-118.187 52.914-118.187 118.187h-0v616.96c0 65.273 52.914 118.187 118.187 118.187v0h315.733c65.273 0 118.187-52.914 118.187-118.187v0-616.96c0-65.273-52.914-118.187-118.187-118.187l-0 0zM384 283.307c-26.392 0-47.787-21.395-47.787-47.787s21.395-47.787 47.787-47.787c26.392 0 47.787 21.395 47.787 47.787v-0c0 26.392-21.395 47.787-47.787 47.787l-0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["phone"]},"attrs":[{}],"properties":{"order":7375,"id":162,"name":"phone","prevSize":32,"code":60058},"setIdx":0,"setId":0,"iconIdx":410},{"icon":{"paths":["M455.68 426.667c0 28.748-23.305 52.053-52.053 52.053h-52.48v-104.533h52.48c0.001-0 0.001-0 0.002-0 28.748 0 52.053 23.305 52.053 52.053 0 0.15-0.001 0.3-0.002 0.45l0-0.023zM940.8 682.667c0 0.005 0 0.011 0 0.017 0 140.335-112.919 254.296-252.854 255.981l-0.159 0.002h-346.453c-0.005 0-0.011 0-0.017 0-140.335 0-254.296-112.919-255.981-252.854l-0.002-0.159v-344.32c-0-0.015-0-0.033-0-0.051 0-139.585 111.715-253.077 250.612-255.944l0.268-0.004h346.453c0.005-0 0.011-0 0.017-0 140.335 0 254.296 112.919 255.981 252.854l0.002 0.159zM519.68 426.667c0-0.127 0.001-0.277 0.001-0.427 0-64.094-51.959-116.053-116.053-116.053-0 0-0.001 0-0.001 0l-85.333-0c-17.013 0.462-30.685 14.134-31.146 31.103l-0.001 0.043v341.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0-140.373h52.48c0 0 0 0 0.001 0 63.944 0 115.81-51.716 116.052-115.603l0-0.023zM632.747 523.52c0-11.311 9.169-20.48 20.48-20.48v0h52.907c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-52.907c-47.128 0-85.333 38.205-85.333 85.333s38.205 85.333 85.333 85.333v0c11.782 0 21.333 9.551 21.333 21.333s-9.551 21.333-21.333 21.333v0h-52.48c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h52.48c47.128 0 85.333-38.205 85.333-85.333s-38.205-85.333-85.333-85.333v0c-0.033 0-0.072 0-0.111 0-11.311 0-20.48-9.169-20.48-20.48 0-0.752 0.040-1.494 0.119-2.224l-0.008 0.091z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["photoshop"]},"attrs":[{}],"properties":{"order":7376,"id":161,"name":"photoshop","prevSize":32,"code":60059},"setIdx":0,"setId":0,"iconIdx":411},{"icon":{"paths":["M940.8 701.867c-10.243 132.247-119.591 235.807-253.341 236.799l-0.099 0.001h-354.133c-94.156-0.1-176.397-51.014-220.786-126.792l-0.654-1.208 156.587-128c17.801-14.657 40.832-23.544 65.938-23.544 26.268 0 50.264 9.729 68.581 25.78l-0.119-0.103c22.776 21.196 53.419 34.205 87.1 34.205 37.684 0 71.564-16.284 94.988-42.2l0.099-0.111 85.333-93.013c18.492-20.252 44.808-33.090 74.13-33.705l0.11-0.002c0.914-0.030 1.989-0.047 3.067-0.047 28.434 0 54.115 11.785 72.425 30.738l0.028 0.029zM940.8 341.76v269.227l-75.947-75.947c-30.431-30.884-72.714-50.018-119.467-50.018s-89.036 19.134-119.447 49.998l-0.020 0.020-4.267 4.693-85.333 93.013c-12.125 13.143-29.434 21.346-48.659 21.346-17.093 0-32.672-6.485-44.41-17.129l0.055 0.050c-29.313-25.697-67.969-41.373-110.287-41.373-39.017 0-74.922 13.326-103.411 35.675l0.364-0.275-144.64 113.067c-3.162-14.917-4.973-32.056-4.973-49.619 0-4.158 0.101-8.292 0.302-12.4l-0.023 0.579v-341.333c-0-0.007-0-0.015-0-0.023 0-140.185 112.677-254.052 252.405-255.975l0.181-0.002h354.56c140.095 1.687 253.013 115.648 253.013 255.983 0 0.006-0 0.012-0 0.018l0-0.001zM414.293 346.027c0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 47.128 38.205 85.333 85.333 85.333v0c47.128 0 85.333-38.205 85.333-85.333v0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["picture"]},"attrs":[{}],"properties":{"order":7377,"id":160,"name":"picture","prevSize":32,"code":60060},"setIdx":0,"setId":0,"iconIdx":412},{"icon":{"paths":["M813.653 813.653c-77.132 76.741-183.48 124.179-300.908 124.179-235.641 0-426.667-191.025-426.667-426.667 0-102.445 36.105-196.456 96.284-270.005l-0.602 0.759 511.147 511.573c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003c7.795-7.733 12.621-18.45 12.621-30.293s-4.826-22.56-12.618-30.291l-0.003-0.003-512-512c72.789-59.577 166.801-95.682 269.246-95.682 235.641 0 426.667 191.025 426.667 426.667 0 117.428-47.439 223.777-124.197 300.926l0.018-0.018z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pill"]},"attrs":[{}],"properties":{"order":7378,"id":159,"name":"pill","prevSize":32,"code":60061},"setIdx":0,"setId":0,"iconIdx":413},{"icon":{"paths":["M924.16 408.747l-30.72 30.72c-7.789 8.188-18.767 13.28-30.933 13.28s-23.144-5.092-30.917-13.262l-0.017-0.018-30.72-30.72-134.827 134.827c16.067 33.022 25.46 71.839 25.46 112.849 0 54.664-16.688 105.431-45.248 147.482l0.588-0.918c-14.232 20.859-37.888 34.374-64.701 34.374-21.341 0-40.681-8.561-54.775-22.437l0.010 0.010-318.293-318.293c-13.866-14.084-22.427-33.425-22.427-54.765 0-26.813 13.515-50.469 34.105-64.528l0.269-0.173c41.134-27.972 91.9-44.66 146.564-44.66 41.010 0 79.827 9.393 114.415 26.144l-1.566-0.684 134.827-134.827-30.72-30.72c-8.188-7.789-13.28-18.767-13.28-30.933s5.092-23.144 13.262-30.917l0.018-0.017 30.72-30.72c7.789-8.188 18.767-13.28 30.933-13.28s23.144 5.092 30.917 13.262l0.017 0.018 247.040 247.040c8.188 7.789 13.28 18.767 13.28 30.933s-5.092 23.144-13.262 30.917l-0.018 0.017zM156.16 745.813c-21.943 21.174-38.912 47.352-49.080 76.708l-0.414 1.372-17.067 50.773c-1.646 4.588-2.598 9.882-2.598 15.398 0 25.921 21.013 46.933 46.933 46.933 5.516 0 10.81-0.952 15.726-2.699l-0.328 0.102 50.773-17.067c30.645-10.209 56.822-26.756 78.065-48.198l0.015-0.015 105.813-106.24-122.88-122.88zM431.36 717.653v0l-124.587-123.733z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pin"]},"attrs":[{}],"properties":{"order":7379,"id":158,"name":"pin","prevSize":32,"code":60062},"setIdx":0,"setId":0,"iconIdx":414},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0 0c0-235.641-191.025-426.667-426.667-426.667v0zM725.333 554.667h-170.667v170.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0-170.667h-170.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0h170.667v-170.667c0-23.564 19.103-42.667 42.667-42.667s42.667 19.103 42.667 42.667v0 170.667h170.667c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["plus-circle"]},"attrs":[{}],"properties":{"order":7380,"id":157,"name":"plus-circle","prevSize":32,"code":60063},"setIdx":0,"setId":0,"iconIdx":415},{"icon":{"paths":["M690.773 938.667h-357.973c-136.627-0.484-247.225-111.233-247.467-247.87l-0-0.023v-357.547c0.242-136.661 110.84-247.409 247.42-247.893l0.046-0h357.547c0.127-0 0.277-0 0.427-0 136.758 0 247.65 110.743 247.893 247.444l0 0.023v357.547c0 0.127 0 0.277 0 0.427 0 136.908-110.986 247.893-247.893 247.893-0 0-0-0-0-0l0 0zM725.333 469.333h-170.667v-170.667c0-23.564-19.103-42.667-42.667-42.667s-42.667 19.103-42.667 42.667v0 170.667h-170.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h170.667v170.667c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0-170.667h170.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["plus-square"]},"attrs":[{}],"properties":{"order":7381,"id":156,"name":"plus-square","prevSize":32,"code":60064},"setIdx":0,"setId":0,"iconIdx":416},{"icon":{"paths":["M768 469.333v0h-213.333v-213.333c0-23.564-19.103-42.667-42.667-42.667v0 0c-23.564 0-42.667 19.103-42.667 42.667v0 213.333h-213.333c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h213.333v213.333c0 23.564 19.103 42.667 42.667 42.667v0 0c23.564 0 42.667-19.103 42.667-42.667v0-213.333h213.333c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["plus"]},"attrs":[{}],"properties":{"order":7382,"id":155,"name":"plus","prevSize":32,"code":60065},"setIdx":0,"setId":0,"iconIdx":417},{"icon":{"paths":["M542.293 938.667h-60.587c-30.398 0-55.040-24.642-55.040-55.040v0-743.253c0-30.398 24.642-55.040 55.040-55.040v0h60.587c30.398 0 55.040 24.642 55.040 55.040v0 743.253c0 30.398-24.642 55.040-55.040 55.040v0zM362.667 426.667h-163.84c-17.731 0.526-33.229 9.628-42.548 23.283l-0.118 0.184-51.2 75.093c-5.605 8.267-8.948 18.463-8.948 29.44s3.343 21.173 9.066 29.626l-0.119-0.186 49.92 75.093c9.438 13.839 24.936 22.94 42.588 23.465l0.079 0.002h165.12zM917.333 269.227l-48.213-75.093c-9.438-13.839-24.936-22.94-42.588-23.465l-0.079-0.002h-165.12v256h163.84c17.731-0.526 33.229-9.628 42.548-23.283l0.118-0.184 49.92-75.093c6.007-8.466 9.603-19.011 9.603-30.395 0-10.576-3.103-20.427-8.448-28.692l0.126 0.207z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pointers"]},"attrs":[{}],"properties":{"order":7383,"id":154,"name":"pointers","prevSize":32,"code":60066},"setIdx":0,"setId":0,"iconIdx":418},{"icon":{"paths":["M856.32 375.467l-196.693-196.693c-38.551-38.285-91.668-61.947-150.311-61.947-2.057 0-4.107 0.029-6.15 0.087l0.3-0.007-213.333 7.253c-87.184 2.313-157.26 72.389-159.569 159.356l-0.005 0.217-5.973 217.173c-0.064 1.936-0.101 4.211-0.101 6.496 0 58.040 23.699 110.545 61.949 148.365l0.019 0.019 194.56 194.987c34.758 34.822 82.81 56.364 135.893 56.364s101.135-21.542 135.89-56.362l0.003-0.003 203.52-203.52c34.822-34.758 56.364-82.81 56.364-135.893s-21.542-101.135-56.362-135.89l-0.003-0.003zM330.667 486.827c-21.107-21.529-34.133-51.048-34.133-83.609 0-65.98 53.487-119.467 119.467-119.467s119.467 53.487 119.467 119.467c0 32.561-13.027 62.080-34.152 83.629l0.019-0.020c-21.75 22.030-51.948 35.676-85.333 35.676s-63.583-13.645-85.321-35.663l-0.013-0.013zM728.747 546.987l-170.667 170.667c-5.528 5.793-13.308 9.394-21.93 9.394-0.24 0-0.48-0.003-0.719-0.008l0.036 0.001c-0.044 0-0.097 0-0.149 0-8.788 0-16.737-3.59-22.461-9.384l-0.003-0.003c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 170.667-170.667c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.887 5.741 9.539 13.751 9.539 22.613s-3.652 16.872-9.532 22.607l-0.007 0.006z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["price-tag"]},"attrs":[{}],"properties":{"order":7384,"id":153,"name":"price-tag","prevSize":32,"code":60067},"setIdx":0,"setId":0,"iconIdx":419},{"icon":{"paths":["M298.667 256v-32c-0-0.127-0.001-0.277-0.001-0.427 0-76.348 61.892-138.24 138.24-138.24 0.15 0 0.3 0 0.451 0.001l-0.023-0h149.333c0.127-0 0.277-0.001 0.427-0.001 76.348 0 138.24 61.892 138.24 138.24 0 0.15-0 0.3-0.001 0.451l0-0.023v32zM725.333 608h-426.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h42.667v135.253c-0 72.578 58.836 131.413 131.413 131.413h78.507c72.578 0 131.413-58.836 131.413-131.413v0-135.253h42.667c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM896 418.133v230.4c0 65.98-53.487 119.467-119.467 119.467h-51.2v-53.333c41.237 0 74.667-33.429 74.667-74.667s-33.429-74.667-74.667-74.667v0h-426.667c-41.237 0-74.667 33.429-74.667 74.667s33.429 74.667 74.667 74.667v0 53.333h-51.2c-65.882-0.242-119.225-53.584-119.467-119.443l-0-0.023v-230.4c0.242-65.882 53.584-119.225 119.443-119.467l0.023-0h529.067c65.98 0 119.467 53.487 119.467 119.467h-0zM458.667 469.333c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-128c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h128c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["printer"]},"attrs":[{}],"properties":{"order":7385,"id":152,"name":"printer","prevSize":32,"code":60068},"setIdx":0,"setId":0,"iconIdx":420},{"icon":{"paths":["M512 53.333c-253.315 0-458.667 205.352-458.667 458.667s205.352 458.667 458.667 458.667c253.315 0 458.667-205.352 458.667-458.667v0c-0.243-253.217-205.45-458.424-458.644-458.667l-0.023-0zM775.68 804.693c-48.179-99.103-148.094-166.201-263.68-166.201s-215.501 67.098-262.918 164.467l-0.762 1.733c-80.561-72.554-130.987-177.217-130.987-293.657 0-217.968 176.698-394.667 394.667-394.667s394.667 176.698 394.667 394.667c0 116.441-50.426 221.104-130.632 293.343l-0.355 0.315zM674.133 432.64c0 89.544-72.59 162.133-162.133 162.133s-162.133-72.59-162.133-162.133c0-89.544 72.59-162.133 162.133-162.133v0c89.544 0 162.133 72.59 162.133 162.133v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["profile-circle"]},"attrs":[{}],"properties":{"order":7386,"id":151,"name":"profile-circle","prevSize":32,"code":60069},"setIdx":0,"setId":0,"iconIdx":421},{"icon":{"paths":["M587.093 285.867c0.005 0.507 0.007 1.105 0.007 1.705 0 111.694-90.546 202.24-202.24 202.24s-202.24-90.546-202.24-202.24c0-111.392 90.056-201.749 201.333-202.238l0.047-0c0.508-0.005 1.108-0.007 1.708-0.007 110.925 0 200.904 89.682 201.385 200.495l0 0.046zM384 537.6c-165.547 0-298.667 89.6-298.667 200.533s134.4 200.533 298.667 200.533 298.667-90.027 298.667-200.533-131.84-200.533-298.667-200.533zM699.307 170.667c-24.66 0.029-47.991 5.693-68.783 15.772l0.943-0.412c12.394 29.261 19.598 63.288 19.598 98.998 0 62.712-22.216 120.234-59.207 165.128l0.356-0.445c28.396 25.928 66.35 41.811 108.014 41.811 88.601 0 160.427-71.825 160.427-160.427s-71.825-160.427-160.427-160.427c-0.324 0-0.647 0.001-0.97 0.003l0.050-0zM699.307 531.627c-0.087-0-0.191-0-0.294-0-25.123 0-49.628 2.641-73.254 7.662l2.295-0.408c69.909 40.143 117.095 112.951 120.73 197.051l0.017 0.495c0.001 0.222 0.001 0.483 0.001 0.746 0 43.327-13.234 83.564-35.88 116.887l0.466-0.726c125.44-4.693 225.28-74.24 225.28-159.573s-107.093-160.427-239.36-160.427z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["profile-user"]},"attrs":[{}],"properties":{"order":7387,"id":150,"name":"profile-user","prevSize":32,"code":60070},"setIdx":0,"setId":0,"iconIdx":422},{"icon":{"paths":["M602.027 693.76h-4.693c-13.467-1.422-24.354-11.014-27.683-23.67l-0.050-0.223-62.72-236.8-57.173 170.667c-4.342 12.866-16.302 21.965-30.386 21.965-10.891 0-20.512-5.441-26.292-13.754l-0.069-0.105-67.413-99.84-55.467 29.867c-4.36 2.418-9.56 3.841-15.093 3.841-0.094 0-0.188-0-0.281-0.001l0.014 0h-126.72c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h118.613l73.813-39.68c4.565-2.659 10.048-4.228 15.897-4.228 11.149 0 20.967 5.702 26.696 14.349l0.074 0.119 49.493 71.68 69.12-212.48c4.229-13.060 16.284-22.339 30.507-22.339s26.278 9.278 30.443 22.112l0.064 0.226 67.84 256 33.707-70.827c5.114-10.896 15.98-18.313 28.582-18.347l0.005-0h223.147c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-202.667l-62.293 131.413c-4.867 11.584-15.95 19.652-28.964 20.052l-0.049 0.001zM128 437.333h107.947l62.72-34.56c10.183-5.64 22.328-8.96 35.249-8.96 0.058 0 0.116 0 0.174 0l-0.009-0c0.181-0.002 0.394-0.002 0.608-0.002 25.834 0 48.655 12.899 62.375 32.607l0.164 0.249 42.667-128c9.868-30.203 37.789-51.64 70.716-51.64 0.489 0 0.977 0.005 1.463 0.014l-0.073-0.001h2.987c33.343 1.208 61.021 24.102 69.425 54.943l0.122 0.523 42.667 152.747c12.797-11.133 29.632-17.92 48.053-17.92 0.056 0 0.113 0 0.169 0l-0.009-0h220.587c11.3 0.036 22.005 2.548 31.612 7.021l-0.465-0.194c7.134-22.131 11.247-47.593 11.247-74.015 0-137.615-111.559-249.173-249.173-249.173-69.32 0-132.028 28.307-177.197 73.992l-0.023 0.023c-45.277-45.051-107.706-72.9-176.64-72.9s-131.363 27.849-176.65 72.91l0.010-0.010c-44.874 44.927-72.626 106.964-72.626 175.483 0 26.305 4.090 51.655 11.669 75.449l-0.484-1.759c9.014-4.22 19.562-6.726 30.684-6.826l0.036-0zM719.787 586.667l-50.773 107.093c-12.34 25.349-37.854 42.537-67.396 42.667l-0.017 0h-4.267c-31.999-2.036-58.406-23.829-67.276-53.228l-0.138-0.532-26.453-98.987-11.52 34.987c-9.021 26.566-31.868 46.139-59.751 50.297l-0.409 0.050h-10.667c-0.010 0-0.022 0-0.034 0-25.499 0-47.978-12.93-61.239-32.591l-0.167-0.262-47.787-69.973-21.76 11.52c-10.183 5.64-22.328 8.96-35.249 8.96-0.058 0-0.116-0-0.174-0l0.009 0h-58.027l285.013 285.013c7.733 7.795 18.45 12.621 30.293 12.621s22.56-4.826 30.291-12.618l0.003-0.003 285.013-285.013z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["pulse"]},"attrs":[{}],"properties":{"order":7388,"id":149,"name":"pulse","prevSize":32,"code":60071},"setIdx":0,"setId":0,"iconIdx":423},{"icon":{"paths":["M748.8 322.987v0c0-130.781-106.019-236.8-236.8-236.8s-236.8 106.019-236.8 236.8h0c-88.406 3.525-158.74 76.047-158.74 164.997 0 9.385 0.783 18.587 2.287 27.545l-0.134-0.968 47.36 285.44c13.005 79.077 80.856 138.667 162.624 138.667 0.128 0 0.255-0 0.383-0l-0.020 0h361.387c0.023 0 0.051 0 0.079 0 81.023 0 148.45-58.206 162.75-135.084l0.158-1.022 51.627-285.44c1.648-8.76 2.591-18.838 2.591-29.136 0-88.953-70.34-161.478-158.432-164.987l-0.319-0.010zM512 148.053c96.142 0 174.080 77.938 174.080 174.080v0h-348.16c0-96.142 77.938-174.080 174.080-174.080v0zM306.347 523.093c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0zM717.653 523.093c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667c23.564 0 42.667 19.103 42.667 42.667v0c0 23.564-19.103 42.667-42.667 42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["purchase"]},"attrs":[{}],"properties":{"order":7389,"id":148,"name":"purchase","prevSize":32,"code":60072},"setIdx":0,"setId":0,"iconIdx":424},{"icon":{"paths":["M426.667 480h175.36c0.254 0.003 0.554 0.005 0.855 0.005 36.612 0 66.32-29.56 66.559-66.116l0-0.023v-236.8c0-32.99-26.744-59.733-59.733-59.733v0h-195.413c-32.99 0-59.733 26.744-59.733 59.733v0 177.493h-177.493c-32.99 0-59.733 26.744-59.733 59.733v0 195.413c0 32.99 26.744 59.733 59.733 59.733v0h113.493v-52.053c0.235-75.334 60.878-136.426 136.016-137.386l0.091-0.001zM426.667 168.107c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0c-17.489-0.241-31.573-14.474-31.573-31.997 0-0.001 0-0.002 0-0.003l-0 0c-0-17.437 14.136-31.573 31.573-31.573l0 0zM414.293 906.667h195.413c32.99 0 59.733-26.744 59.733-59.733v0-177.493h177.493c32.99 0 59.733-26.744 59.733-59.733v0-195.413c0-32.99-26.744-59.733-59.733-59.733v0h-113.493v59.307c-0.242 71.773-58.36 129.892-130.11 130.133l-0.023 0h-176.64c-40.53-0-73.387 32.856-73.387 73.387v229.547c-0 0.004-0 0.009-0 0.014 0 32.99 26.744 59.733 59.733 59.733 0.45 0 0.899-0.005 1.347-0.015l-0.067 0.001zM597.333 788.48c18.616 0 33.707 15.091 33.707 33.707v0c0.002 0.127 0.003 0.277 0.003 0.427 0 18.616-15.091 33.707-33.707 33.707-0.001 0-0.002-0-0.003-0l0 0c-18.851 0-34.133-15.282-34.133-34.133v-0c-0-0.001-0-0.002-0-0.003 0-18.616 15.091-33.707 33.707-33.707 0.15 0 0.3 0.001 0.449 0.003l-0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["python"]},"attrs":[{}],"properties":{"order":7390,"id":147,"name":"python","prevSize":32,"code":60073},"setIdx":0,"setId":0,"iconIdx":425},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM512 750.507c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32v0c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0zM570.027 527.36c-15.634 8.637-26.046 25.023-26.046 43.841 0 0.487 0.007 0.973 0.021 1.457l-0.002-0.071v34.987c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-34.987c-0.008-0.505-0.013-1.1-0.013-1.697 0-44.083 25.039-82.317 61.67-101.258l0.636-0.299c23.42-11.522 39.253-35.213 39.253-62.602 0-38.41-31.137-69.547-69.547-69.547-38.368 0-69.48 31.070-69.547 69.423l-0 0.006c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c0.278-73.781 60.153-133.485 133.972-133.485 8.294 0 16.412 0.754 24.289 2.196l-0.821-0.125c54.995 10.619 97.552 53.607 107.397 107.981l0.123 0.819c1.348 7.102 2.12 15.272 2.12 23.622 0 52.497-30.485 97.873-74.719 119.392l-0.788 0.346z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["question-2"]},"attrs":[{}],"properties":{"order":7391,"id":146,"name":"question-2","prevSize":32,"code":60074},"setIdx":0,"setId":0,"iconIdx":426},{"icon":{"paths":["M912.64 449.28l-59.307-60.16c-7.905-7.75-12.805-18.541-12.805-30.475 0-0.236 0.002-0.472 0.006-0.707l-0 0.036v-85.333c-0.24-48.831-39.881-88.324-88.746-88.324-0.3 0-0.6 0.001-0.9 0.004l0.046-0h-85.333c-0.2 0.003-0.435 0.005-0.671 0.005-11.935 0-22.725-4.9-30.468-12.798l-0.007-0.007-59.733-60.16c-16.057-16.040-38.23-25.96-62.72-25.96s-46.663 9.92-62.721 25.961l0.001-0.001-60.16 59.307c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0h-85.333c-48.831 0.24-88.324 39.881-88.324 88.746 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v85.333c0.003 0.2 0.005 0.435 0.005 0.671 0 11.935-4.9 22.725-12.798 30.468l-0.007 0.007-60.16 59.733c-16.040 16.057-25.96 38.23-25.96 62.72s9.92 46.663 25.961 62.721l-0.001-0.001 59.307 60.16c7.905 7.75 12.805 18.541 12.805 30.475 0 0.236-0.002 0.472-0.006 0.707l0-0.036v85.333c0.24 48.831 39.881 88.324 88.746 88.324 0.3 0 0.6-0.001 0.9-0.004l-0.046 0h85.333c0.2-0.003 0.435-0.005 0.671-0.005 11.935 0 22.725 4.9 30.468 12.798l0.007 0.007 60.16 60.16c16.057 16.040 38.23 25.96 62.72 25.96s46.663-9.92 62.721-25.961l-0.001 0.001 59.733-59.307c7.75-7.905 18.541-12.805 30.475-12.805 0.236 0 0.472 0.002 0.707 0.006l-0.036-0h85.333c49.013-0 88.747-39.733 88.747-88.747v0-85.333c-0.003-0.2-0.005-0.435-0.005-0.671 0-11.935 4.9-22.725 12.798-30.468l0.007-0.007 60.16-60.16c16.041-16.057 25.961-38.23 25.961-62.721 0-24.702-10.092-47.047-26.379-63.137l-0.009-0.009zM512 747.947c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32v0c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0zM570.027 524.8c-15.634 8.637-26.046 25.023-26.046 43.841 0 0.487 0.007 0.973 0.021 1.457l-0.002-0.071v34.987c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-34.987c0.34-43.743 25.282-81.582 61.658-100.394l0.636-0.299c23.42-11.522 39.253-35.213 39.253-62.602 0-38.41-31.137-69.547-69.547-69.547-38.368 0-69.48 31.070-69.547 69.423l-0 0.006c0 17.673-14.327 32-32 32s-32-14.327-32-32v0c-0.009-0.586-0.015-1.277-0.015-1.97 0-41.031 18.683-77.698 48.006-101.959l0.222-0.178c23.18-19.892 53.544-32.001 86.736-32.001 73.756 0 133.547 59.791 133.547 133.547 0 53.031-30.91 98.842-75.696 120.4l-0.8 0.347z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["question"]},"attrs":[{}],"properties":{"order":7392,"id":145,"name":"question","prevSize":32,"code":60075},"setIdx":0,"setId":0,"iconIdx":427},{"icon":{"paths":["M686.933 85.333h-349.013c-139.909 1.925-252.587 115.793-252.587 255.977 0 0.008 0 0.016 0 0.024l-0-0.001v341.333c-0 0.010-0 0.023-0 0.036 0 139.885 112.196 253.565 251.508 255.961l0.225 0.003h349.867c139.538-2.4 251.733-116.080 251.733-255.964 0-0.013-0-0.025-0-0.038l0 0.002v-341.333c0-0.010 0-0.023 0-0.036 0-139.885-112.196-253.565-251.508-255.961l-0.225-0.003zM398.933 562.347l-72.107 117.76c-5.083 7.935-13.298 13.483-22.86 14.911l-0.18 0.022h-5.12c-0.051 0-0.111 0-0.172 0-8.358 0-15.957-3.247-21.605-8.549l0.017 0.016-57.6-50.773c-6.905-6.34-11.217-15.409-11.217-25.485 0-8.328 2.946-15.968 7.852-21.935l-0.048 0.060c6.061-7.044 14.987-11.477 24.948-11.477 8.268 0 15.823 3.054 21.598 8.096l-0.039-0.033 29.013 26.027 52.48-85.333c5.775-8.943 15.692-14.78 26.972-14.78 5.768 0 11.179 1.526 15.852 4.196l-0.157-0.083c10.491 5.85 17.47 16.879 17.47 29.538 0 6.602-1.898 12.761-5.179 17.961l0.082-0.139zM398.933 319.147l-72.107 117.76c-5.083 7.935-13.298 13.483-22.86 14.911l-0.18 0.022h-5.12c-0.051 0-0.111 0-0.172 0-8.358 0-15.957-3.247-21.605-8.549l0.017 0.016-57.6-51.2c-6.878-6.267-11.177-15.262-11.177-25.26 0-8.256 2.931-15.828 7.81-21.731l-0.046 0.058c6.067-7.188 15.082-11.723 25.157-11.723 8.171 0 15.646 2.983 21.394 7.92l-0.044-0.037 29.013 26.453 52.48-85.333c5.775-8.943 15.692-14.78 26.972-14.78 5.768 0 11.179 1.526 15.852 4.196l-0.157-0.083c10.491 5.85 17.47 16.879 17.47 29.538 0 6.602-1.898 12.761-5.179 17.961l0.082-0.139zM768.427 660.48h-256.427c-15.292-2.592-26.792-15.74-26.792-31.573s11.5-28.982 26.603-31.547l0.189-0.027h256c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM768 426.667h-256c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h256c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["questionnaire-tablet"]},"attrs":[{}],"properties":{"order":7393,"id":144,"name":"questionnaire-tablet","prevSize":32,"code":60076},"setIdx":0,"setId":0,"iconIdx":428},{"icon":{"paths":["M649.813 938.667h-275.627v-414.293c-0.001-0.127-0.001-0.277-0.001-0.428 0-45.479 36.868-82.347 82.347-82.347 0.15 0 0.301 0 0.451 0.001l-0.023-0h110.080c0.127-0.001 0.277-0.001 0.428-0.001 45.479 0 82.347 36.868 82.347 82.347 0 0.15-0 0.301-0.001 0.451l0-0.023zM331.52 607.147h-151.040c-45.714 0-82.773 37.059-82.773 82.773v0 248.747h233.813zM649.813 731.307v0 207.36zM843.52 731.307h-151.040v207.36h233.813v-124.587c0-45.714-37.059-82.773-82.773-82.773h-0zM609.707 322.133l-3.84-42.667c-0.108-0.998-0.169-2.156-0.169-3.327 0-8.605 3.308-16.437 8.722-22.295l-0.020 0.022 29.867-32c5.285-5.867 8.518-13.674 8.518-22.235 0-15.65-10.802-28.776-25.357-32.331l-0.228-0.047-42.667-9.813c-9.455-2.051-17.225-8.003-21.675-16.047l-0.085-0.167-21.333-37.973c-5.754-10.022-16.395-16.662-28.587-16.662s-22.832 6.641-28.502 16.503l-0.085 0.16-22.187 37.547c-4.828 8.018-12.694 13.788-21.967 15.748l-0.22 0.039-42.667 8.533c-14.76 3.619-25.539 16.734-25.539 32.367 0 7.593 2.543 14.593 6.824 20.193l-0.059-0.080 29.013 32.853c5.208 5.553 8.407 13.045 8.407 21.284 0 1.522-0.109 3.019-0.32 4.483l0.020-0.167-5.12 42.667c-0.154 1.195-0.242 2.577-0.242 3.98 0 18.144 14.709 32.853 32.853 32.853 4.715 0 9.199-0.993 13.252-2.782l-0.21 0.083 40.107-17.067c4.017-1.825 8.711-2.889 13.653-2.889s9.637 1.064 13.866 2.975l-0.212-0.086 39.68 18.773c4.035 1.906 8.765 3.018 13.756 3.018 18.144 0 32.853-14.709 32.853-32.853 0-0.912-0.037-1.816-0.11-2.709l0.008 0.117z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ranking"]},"attrs":[{}],"properties":{"order":7394,"id":143,"name":"ranking","prevSize":32,"code":60077},"setIdx":0,"setId":0,"iconIdx":429},{"icon":{"paths":["M970.667 512c0-70.827-59.733-133.12-154.88-175.36 11.093-103.68-13.227-186.453-74.24-221.867s-144.213-14.933-229.547 46.080c-85.333-61.013-168.107-81.493-229.12-46.080s-85.333 118.187-74.667 221.867c-95.147 42.667-154.88 104.533-154.88 175.36s59.307 133.12 154.453 175.36c0 3.84 0 8.107 0 12.373-8.533 101.547 18.773 176.213 76.8 209.493 19.357 11.275 42.607 17.931 67.411 17.931 0.601 0 1.201-0.004 1.8-0.012l-0.091 0.001c57.327-3.641 109.189-24.416 151.222-57.204l-0.608 0.457 9.387-6.827 9.387 6.827c41.424 32.331 93.286 53.106 149.817 56.706l0.797 0.041c0.435 0.005 0.949 0.008 1.464 0.008 25.029 0 48.505-6.652 68.755-18.284l-0.673 0.356c57.6-33.28 85.333-107.947 76.373-209.493 0-4.267 0-8.533 0-12.373 91.733-42.24 151.040-104.533 151.040-175.36zM672 161.28c0.391-0.007 0.853-0.012 1.315-0.012 12.965 0 25.155 3.324 35.762 9.165l-0.384-0.194c32.853 19.2 49.067 71.68 42.667 143.36-31.507-10.462-69.116-19.257-107.787-24.757l-3.573-0.417c-24.642-31.251-50.207-59.115-77.687-84.967l-0.393-0.366c30.721-23.339 68.784-38.541 110.208-41.768l0.725-0.045zM731.733 597.333c4.431 13.232 8.998 30.413 12.655 47.928l0.571 3.272c-13.008 4.606-30.003 9.452-47.335 13.418l-3.439 0.662c6.4-10.24 13.227-20.907 19.627-32s11.52-24.32 17.92-33.28zM658.347 597.333c-17.793 30.571-34.99 56.34-53.557 81.021l1.504-2.087c-27.961 3.711-60.654 6.025-93.813 6.396l-0.48 0.004c-33.296-0.063-66.052-2.077-98.242-5.932l3.948 0.385c-16.838-22.655-34.039-48.702-49.829-75.675l-2.224-4.112c-13.446-22.902-27.715-50.921-40.467-79.76l-2.199-5.573c14.95-34.411 29.219-62.43 44.906-89.525l-2.239 4.192c18.188-30.506 35.511-56.124 54.094-80.739l-1.614 2.232c27.349-3.586 59.851-6.044 92.771-6.807l1.095-0.020c33.255 0.151 65.883 2.007 98.024 5.485l-4.157-0.365c16.958 22.775 34.297 48.96 50.229 76.071l2.251 4.143c13.448 22.905 27.718 50.924 40.469 79.763l2.198 5.57c-14.951 34.413-29.221 62.431-44.907 89.527l2.24-4.194zM512 781.227c-12.8-11.52-25.6-23.893-37.973-37.12h75.947c-12.373 13.227-25.173 23.893-37.973 37.12zM310.187 628.48c6.4 11.093 13.227 21.76 19.627 32-20.77-4.628-37.766-9.474-54.377-15.15l3.604 1.070c4.347-20.102 8.905-36.542 14.251-52.622l-1.024 3.555q6.4 14.507 17.92 31.147zM292.267 428.8c-5.12-17.92-9.813-34.987-13.227-51.2 13.304-4.769 30.304-9.618 47.669-13.497l3.104-0.583c-6.4 10.24-13.227 20.907-19.627 32s-11.52 22.187-17.92 33.28zM512 243.627c12.373 11.093 24.747 23.040 37.12 36.267h-74.24c12.373-13.227 24.747-23.893 37.12-36.267zM713.813 395.52c-6.4-11.093-13.227-21.76-19.627-32 20.47 4.462 37.47 9.311 54.044 15.069l-3.271-0.989c-3.413 16.213-8.107 33.28-13.227 51.2-6.4-11.093-11.52-22.187-17.92-33.28zM314.88 170.667c9.978-5.65 21.913-8.979 34.626-8.979 0.577 0 1.152 0.007 1.726 0.021l-0.085-0.002c41.774 3.795 79.341 19.245 110.142 43.029l-0.489-0.363c-27.371 25.842-52.515 53.285-75.577 82.45l-1.223 1.603c-42.655 5.827-80.713 14.629-117.389 26.503l4.749-1.329c-5.973-71.68 10.24-124.16 43.52-142.933zM117.333 512c0-38.4 37.547-78.507 101.547-110.080 10.025 42.959 21.889 79.701 36.375 115.092l-1.815-5.012c-12.735 30.552-24.604 67.444-33.558 105.461l-1.002 5.045c-64-32-101.547-72.533-101.547-110.507zM314.88 853.333c-34.133-19.627-49.92-71.68-45.227-143.36 32.434 10.748 71.069 19.7 110.807 25.199l3.54 0.401c24.498 31.322 50.072 59.196 77.657 84.942l0.423 0.391c-60.587 40.107-113.92 52.053-147.2 32.427zM709.547 853.333c-33.707 19.627-85.333 7.253-146.347-32.427 28.008-26.138 53.582-54.011 76.885-83.75l1.195-1.584c42.82-5.829 81.026-14.632 117.853-26.507l-4.786 1.334c4.693 71.68-11.093 123.733-44.8 142.933zM805.12 621.653c-10.013-42.774-21.876-79.37-36.364-114.609l1.804 4.956c12.646-30.245 24.507-66.839 33.527-104.538l1.033-5.116c64 31.573 101.547 71.68 101.547 110.080s-37.547 78.080-101.547 109.653zM589.227 512c0 42.651-34.576 77.227-77.227 77.227s-77.227-34.576-77.227-77.227c0-42.651 34.576-77.227 77.227-77.227v0c42.651-0 77.227 34.576 77.227 77.227v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["react"]},"attrs":[{}],"properties":{"order":7395,"id":142,"name":"react","prevSize":32,"code":60078},"setIdx":0,"setId":0,"iconIdx":430},{"icon":{"paths":["M712.107 85.333h-400.213c-0.127-0-0.277-0-0.427-0-124.89 0-226.133 101.243-226.133 226.133 0 0.15 0 0.3 0 0.45l-0-0.023v400.213c-0 0.127-0 0.277-0 0.427 0 124.89 101.243 226.133 226.133 226.133 0.15 0 0.3-0 0.45-0l-0.023 0h400.213c0.127 0 0.277 0 0.427 0 124.89 0 226.133-101.243 226.133-226.133 0-0.15-0-0.3-0-0.45l0 0.023v-400.213c0-0.127 0-0.277 0-0.427 0-124.89-101.243-226.133-226.133-226.133-0.15 0-0.3 0-0.45 0l0.023-0zM725.333 644.267v54.613c-0.402 19.012-15.909 34.27-34.979 34.27-12.589 0-23.624-6.649-29.787-16.626l-0.087-0.151-16.64-28.587c-5.209-8.757-14.623-14.533-25.387-14.533s-20.177 5.776-25.312 14.397l-0.075 0.135-22.613 39.68c-11.905 20.155-33.518 33.462-58.24 33.462s-46.335-13.307-58.069-33.149l-0.171-0.313-23.040-40.107c-5.099-8.779-14.458-14.588-25.173-14.588s-20.074 5.809-25.099 14.45l-0.074 0.139-17.493 29.867c-6.1 10.346-17.188 17.178-29.871 17.178-19.087 0-34.56-15.473-34.56-34.56 0-0.189 0.002-0.378 0.005-0.567l-0 0.028v-352.427c0-47.128 38.205-85.333 85.333-85.333v0h256c47.128 0 85.333 38.205 85.333 85.333v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["receipt-square"]},"attrs":[{}],"properties":{"order":7396,"id":141,"name":"receipt-square","prevSize":32,"code":60079},"setIdx":0,"setId":0,"iconIdx":431},{"icon":{"paths":["M718.080 437.76c-2.020-5.142-3.19-11.097-3.19-17.325 0-14.479 6.327-27.481 16.367-36.391l0.050-0.044 85.333-79.36c8.881-8.016 20.706-12.92 33.676-12.92 14.471 0 27.516 6.105 36.7 15.88l0.025 0.027c2.534 2.636 4.79 5.571 6.702 8.738l0.124 0.222c29.786 55.845 47.279 122.136 47.279 192.511 0 75.089-19.915 145.526-54.751 206.318l1.072-2.029c-9.098 15.518-25.695 25.774-44.687 25.774-8.948 0-17.365-2.277-24.703-6.282l0.27 0.135c-4.53-2.639-8.447-5.605-11.969-8.981l0.022 0.021-87.893-92.16c-8.051-8.654-12.991-20.296-12.991-33.091 0-7.012 1.484-13.677 4.154-19.699l-0.123 0.31c9.674-23.334 15.442-50.413 15.785-78.797l0.001-0.136c0.144-2.793 0.226-6.064 0.226-9.355 0-19.008-2.732-37.377-7.824-54.738l0.345 1.372zM392.107 288c9.166 8.736 21.604 14.111 35.297 14.111 6.641 0 12.987-1.264 18.81-3.566l-0.347 0.121c18.747-5.973 40.309-9.415 62.676-9.415 1.216 0 2.429 0.010 3.639 0.030l-0.182-0.002c0.612-0.006 1.335-0.010 2.059-0.010 31.758 0 61.862 7.081 88.819 19.75l-1.278-0.54c6.273 2.922 13.618 4.627 21.362 4.627 13.914 0 26.543-5.505 35.827-14.455l-0.016 0.015 80.64-75.52c9.117-8.717 14.784-20.977 14.784-34.56s-5.667-25.843-14.766-34.543l-0.018-0.017c-2.379-2.567-5.039-4.82-7.945-6.727l-0.162-0.1c-62.716-36.437-138.012-57.942-218.332-57.942-65.429 0-127.525 14.271-183.345 39.87l2.744-1.128c-18.325 7.934-30.913 25.861-30.913 46.728 0 7.164 1.484 13.981 4.16 20.161l-0.127-0.329c2.75 5.947 6.331 11.031 10.666 15.359l0.001 0.001zM644.693 709.12c-9.075-9.294-21.729-15.057-35.73-15.057-6.647 0-12.991 1.299-18.791 3.658l0.334-0.12c-22.878 9.315-49.421 14.722-77.227 14.722s-54.349-5.406-78.635-15.225l1.408 0.503c-5.414-2.214-11.697-3.5-18.281-3.5-13.068 0-24.954 5.065-33.801 13.339l0.028-0.026-98.133 88.747c-10.069 8.88-16.387 21.81-16.387 36.216 0 12.733 4.936 24.313 12.999 32.931l-0.025-0.027c2.978 3.248 6.342 6.069 10.038 8.414l0.202 0.12c62.952 37.403 138.789 59.51 219.789 59.51 75.793 0 147.065-19.356 209.142-53.395l-2.265 1.138c16.068-8.512 26.828-25.129 26.828-44.258 0-8.636-2.193-16.759-6.052-23.844l0.131 0.262c-1.865-3.973-4.301-7.363-7.246-10.233l-0.007-0.007zM300.8 629.333c9.745-8.713 15.851-21.322 15.851-35.357 0-6.808-1.437-13.281-4.023-19.132l0.119 0.303c-8.916-21.924-14.089-47.359-14.089-74.002 0-0.684 0.003-1.367 0.010-2.049l-0.001 0.104c-0.002-0.303-0.003-0.661-0.003-1.020 0-31.719 7.241-61.746 20.16-88.519l-0.53 1.219c3.132-6.249 4.966-13.615 4.966-21.41 0-13.056-5.144-24.91-13.515-33.647l0.016 0.017-77.227-82.347c-9.228-9.050-21.882-14.636-35.84-14.636s-26.612 5.586-35.848 14.644l0.008-0.008c-3.744 2.964-6.766 6.669-8.876 10.907l-0.084 0.186c-42.475 64.070-67.769 142.742-67.769 227.322 0 69.37 17.015 134.767 47.098 192.244l-1.090-2.286c8.903 14.998 25.016 24.894 43.439 24.894 9.129 0 17.69-2.429 25.072-6.677l-0.244 0.13c3.45-1.723 6.406-3.861 8.962-6.402l-0.002 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rescue"]},"attrs":[{}],"properties":{"order":7397,"id":140,"name":"rescue","prevSize":32,"code":60080},"setIdx":0,"setId":0,"iconIdx":432},{"icon":{"paths":["M802.133 369.067c-5.789-5.782-13.784-9.359-22.613-9.359s-16.824 3.576-22.614 9.359l0-0c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0 72.107 70.827h-631.893l73.813-69.12c3.514-5.063 5.614-11.338 5.614-18.104 0-17.673-14.327-32-32-32-6.005 0-11.624 1.654-16.426 4.532l0.145-0.081-128 125.44c-5.804 5.921-9.387 14.038-9.387 22.993 0 0.017 0 0.033 0 0.050l-0-0.003c0.050 10.483 5.418 19.702 13.542 25.104l0.111 0.070 121.6 122.88c5.459 5.787 13.18 9.39 21.742 9.39 0.156 0 0.312-0.001 0.468-0.004l-0.024 0c0.122 0.002 0.265 0.003 0.409 0.003 17.673 0 32-14.327 32-32 0-9.045-3.753-17.213-9.786-23.033l-0.010-0.009-71.253-69.547h629.333l-71.68 70.4c-8.764 5.803-14.465 15.62-14.465 26.768 0 17.673 14.327 32 32 32 11.474 0 21.538-6.039 27.186-15.112l0.079-0.136 128-125.44c5.912-5.754 9.634-13.732 9.813-22.58l0.001-0.033c-0.157-9.019-3.879-17.14-9.812-23.038l-0.002-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["right-left"]},"attrs":[{}],"properties":{"order":7398,"id":139,"name":"right-left","prevSize":32,"code":60081},"setIdx":0,"setId":0,"iconIdx":433},{"icon":{"paths":["M678.4 85.333h-332.8c-143.644 0.242-260.024 116.623-260.267 260.243l-0 0.023v332.8c0.242 143.644 116.623 260.024 260.243 260.267l0.023 0h332.8c143.644-0.242 260.024-116.623 260.267-260.243l0-0.023v-332.8c-0.242-143.644-116.623-260.024-260.243-260.267l-0.023-0zM635.733 536.32l-138.24 146.347c-7.248 7.633-17.469 12.381-28.8 12.381-21.919 0-39.687-17.769-39.687-39.687 0-10.588 4.146-20.208 10.904-27.324l-0.016 0.017 111.36-116.053-116.053-113.067c-7.633-7.248-12.381-17.469-12.381-28.8 0-21.919 17.769-39.687 39.687-39.687 10.588 0 20.208 4.146 27.324 10.904l-0.017-0.016 145.067 138.667c7.631 7.246 12.379 17.466 12.379 28.795 0 10.695-4.231 20.401-11.111 27.537l0.012-0.012z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["right-square"]},"attrs":[{}],"properties":{"order":7399,"id":138,"name":"right-square","prevSize":32,"code":60082},"setIdx":0,"setId":0,"iconIdx":434},{"icon":{"paths":["M441.173 810.667c-0.074 0-0.161 0.001-0.248 0.001-23.564 0-42.667-19.103-42.667-42.667 0-11.844 4.826-22.561 12.619-30.291l0.003-0.003 222.72-225.707-222.72-220.587c-7.753-7.753-12.548-18.463-12.548-30.293 0-23.661 19.181-42.841 42.841-42.841 11.83 0 22.541 4.795 30.293 12.548l0 0 253.867 253.013c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002-252.587 252.587c-7.818 8.637-19.060 14.049-31.568 14.080l-0.006 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["right"]},"attrs":[{}],"properties":{"order":7400,"id":137,"name":"right","prevSize":32,"code":60083},"setIdx":0,"setId":0,"iconIdx":435},{"icon":{"paths":["M853.333 85.333l-151.467 27.733c-79.069 21.311-146.862 61.872-200.472 116.417l-0.061 0.063c-37.848 41.579-71.992 87.814-101.139 137.342l-2.114 3.885c-150.613-29.44-312.747 218.027-312.747 218.027l194.133 4.267-5.12 11.093c-3.383 7.053-5.359 15.332-5.359 24.072 0 16.215 6.801 30.842 17.707 41.184l0.025 0.024 22.613 21.76 42.667 42.667 20.907 20.053c10.324 9.887 24.357 15.974 39.812 15.974 9.78 0 18.991-2.437 27.058-6.738l-0.31 0.151 29.44-16.213 16.213 191.573s241.067-175.787 200.96-324.267c41.622-28.244 77.97-57.276 111.93-88.843l-0.57 0.523c56.38-56.455 96.372-129.289 112.221-210.751l0.419-2.583 28.587-142.080c0.785-4.019 1.235-8.64 1.235-13.366 0-36.059-26.159-66.009-60.535-71.906l-0.433-0.061c-3.848-0.687-8.278-1.080-12.8-1.080s-8.952 0.393-13.258 1.147l0.458-0.066zM753.493 392.107c-15.544 16.109-37.323 26.113-61.438 26.113-23.055 0-43.975-9.143-59.332-24.002l0.023 0.022c-15.989-15.527-25.91-37.226-25.91-61.243 0-22.736 8.891-43.394 23.387-58.689l-0.036 0.039c15.308-14.709 36.14-23.768 59.089-23.768 47.128 0 85.333 38.205 85.333 85.333 0 21.568-8.002 41.267-21.198 56.291l0.083-0.096z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["rocket"]},"attrs":[{}],"properties":{"order":7401,"id":136,"name":"rocket","prevSize":32,"code":60084},"setIdx":0,"setId":0,"iconIdx":436},{"icon":{"paths":["M896 672.427l33.28-42.667c4.937-6.59 7.905-14.902 7.905-23.908 0-22.15-17.956-40.107-40.107-40.107-0.379 0-0.757 0.005-1.134 0.016l0.055-0.001h-226.133v-31.573c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 341.333h-264.533c-1.036 0.029-2.256 0.045-3.479 0.045-73.214 0-132.841-58.172-135.182-130.817l-0.005-0.215c1.876-73.004 61.503-131.469 134.785-131.469 1.365 0 2.725 0.020 4.080 0.061l-0.199-0.005h64c1.888 0.136 4.090 0.213 6.31 0.213 51.605 0 93.44-41.835 93.44-93.44s-41.835-93.44-93.44-93.44c-2.22 0-4.423 0.077-6.605 0.23l0.294-0.016h-71.68l50.347-57.173c26.491-29.927 42.667-69.517 42.667-112.885 0-94.257-76.41-170.667-170.667-170.667s-170.667 76.41-170.667 170.667c0 43.368 16.176 82.958 42.823 113.066l-0.157-0.18 95.147 106.667c7.439 8.239 17.985 13.551 29.776 14.077l0.091 0.003h149.333c0.518-0.032 1.122-0.050 1.732-0.050 16.298 0 29.59 12.87 30.266 29.002l0.002 0.061c-0.691 16.419-14.169 29.468-30.694 29.468-0.459 0-0.916-0.010-1.37-0.030l0.065 0.002h-61.013c-1.029-0.019-2.242-0.030-3.458-0.030-108.555 0-196.834 86.81-199.204 194.796l-0.004 0.221c2.374 108.207 90.653 195.017 199.208 195.017 1.216 0 2.43-0.011 3.641-0.033l-0.182 0.003h298.667c0.128 0.002 0.279 0.003 0.43 0.003 17.437 0 31.573-14.136 31.573-31.573 0-0.151-0.001-0.302-0.003-0.452l0 0.023v-128h224c22.118-0.043 40.031-17.983 40.031-40.107 0-9.568-3.351-18.354-8.943-25.248l0.059 0.075zM193.28 256c-0.001-0.123-0.001-0.268-0.001-0.414 0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64-0.45 0-0.898-0.005-1.346-0.014l0.067 0.001c-34.647-0.714-62.488-28.854-62.72-63.551l-0-0.022z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["route"]},"attrs":[{}],"properties":{"order":7402,"id":135,"name":"route","prevSize":32,"code":60085},"setIdx":0,"setId":0,"iconIdx":437},{"icon":{"paths":["M938.667 615.253v170.667c0 47.128-38.205 85.333-85.333 85.333v0c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0h-512c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0c-47.128 0-85.333-38.205-85.333-85.333v0-170.667c0-47.128 38.205-85.333 85.333-85.333v0h682.667c47.128 0 85.333 38.205 85.333 85.333v0zM256 657.92c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v-0zM426.667 657.92c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v-0zM597.333 657.92c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v-0zM761.6 529.92v-387.84c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 387.84z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["router"]},"attrs":[{}],"properties":{"order":7403,"id":134,"name":"router","prevSize":32,"code":60086},"setIdx":0,"setId":0,"iconIdx":438},{"icon":{"paths":["M864 448h-704c-41.237 0-74.667-33.429-74.667-74.667v0-213.333c0-41.237 33.429-74.667 74.667-74.667v0h704c41.237 0 74.667 33.429 74.667 74.667v0 213.333c0 41.237-33.429 74.667-74.667 74.667v0zM938.667 864v-213.333c0-41.237-33.429-74.667-74.667-74.667v0h-704c-41.237 0-74.667 33.429-74.667 74.667v0 213.333c0 41.237 33.429 74.667 74.667 74.667v0h704c41.237 0 74.667-33.429 74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["row-horizontal"]},"attrs":[{}],"properties":{"order":7404,"id":133,"name":"row-horizontal","prevSize":32,"code":60087},"setIdx":0,"setId":0,"iconIdx":439},{"icon":{"paths":["M448 160v704c0 41.237-33.429 74.667-74.667 74.667v0h-213.333c-41.237 0-74.667-33.429-74.667-74.667v0-704c0-41.237 33.429-74.667 74.667-74.667v0h213.333c41.237 0 74.667 33.429 74.667 74.667v0zM864 85.333h-213.333c-41.237 0-74.667 33.429-74.667 74.667v0 704c0 41.237 33.429 74.667 74.667 74.667v0h213.333c41.237 0 74.667-33.429 74.667-74.667v0-704c0-41.237-33.429-74.667-74.667-74.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["row-vertical"]},"attrs":[{}],"properties":{"order":7405,"id":132,"name":"row-vertical","prevSize":32,"code":60088},"setIdx":0,"setId":0,"iconIdx":440},{"icon":{"paths":["M670.293 896l-42.667-34.987c-23.485-18.523-38.423-46.978-38.423-78.922 0-0.754 0.008-1.506 0.025-2.256l-0.002 0.112v-139.52c0.047-26.822 15.953-49.918 38.839-60.416l0.415-0.17 109.227-50.773c8.153-3.744 17.688-5.928 27.733-5.928s19.581 2.183 28.157 6.101l-0.424-0.173 105.387 46.080c23.812 11.089 40.037 34.788 40.107 62.284l0 0.009v139.947c-0.474 31.622-15.091 59.737-37.792 78.362l-0.181 0.144-50.773 40.107c-24.346 19.697-55.687 31.621-89.813 31.621s-65.467-11.924-90.084-31.833l0.271 0.212zM524.373 779.093v-139.093c0.516-52.263 31.264-97.221 75.572-118.271l0.801-0.343 109.227-50.347c15.798-7.32 34.289-11.589 53.776-11.589 1.495 0 2.984 0.025 4.466 0.075l-0.216-0.006c0.391-0.004 0.853-0.007 1.316-0.007 18.694 0 36.433 4.089 52.371 11.422l-0.78-0.322 26.027 11.52 4.267-25.6c1.308-6.986 2.057-15.023 2.057-23.234 0-40.599-18.292-76.926-47.084-101.189l-0.199-0.163-245.333-203.947c-22.994-19.459-52.985-31.289-85.74-31.289-30.844 0-59.239 10.49-81.81 28.098l0.296-0.222-256 197.547c-32.23 24.723-52.804 63.252-52.804 106.585 0 4.988 0.273 9.913 0.804 14.76l-0.053-0.599 33.707 287.573c8.163 66.649 64.418 117.76 132.61 117.76 0.029 0 0.058-0 0.088-0l285.862 0c-8.399-18.918-13.289-40.986-13.289-64.197 0-1.581 0.023-3.157 0.068-4.727l-0.005 0.231z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["safe-home"]},"attrs":[{}],"properties":{"order":7406,"id":131,"name":"safe-home","prevSize":32,"code":60089},"setIdx":0,"setId":0,"iconIdx":441},{"icon":{"paths":["M298.667 788.48c11.067 0.063 21.81 1.303 32.154 3.601l-1.007-0.188c54.35 10.956 97.737 49.25 115.717 99.615l0.336 1.079c1.256 3.435 1.982 7.4 1.982 11.535 0 18.734-14.905 33.986-33.504 34.544l-0.051 0.001h-229.973c-19.019-0.089-34.403-15.528-34.403-34.56 0-4.13 0.724-8.090 2.053-11.761l-0.076 0.241c17.839-51.359 61.051-89.615 114.236-100.108l0.964-0.159c9.401-2.225 20.264-3.612 31.413-3.837l0.161-0.003zM564.053 476.587c14.507-13.227 29.013-26.027 42.667-37.547 6.961-6.026 11.339-14.875 11.339-24.747 0-18.045-14.628-32.673-32.673-32.673-8.173 0-15.645 3.001-21.374 7.961l0.041-0.035c-9.813 8.533-26.88 23.040-47.787 42.667l10.667 10.24-240.64-243.627c-4.546-5.008-11.080-8.14-18.347-8.14s-13.801 3.132-18.328 8.119l-0.018 0.021c-90.453 115.2-60.16 306.773 71.253 450.133-30.052 39.355-49.832 88.027-54.538 141.033l-0.075 1.047c8.57-1.66 18.426-2.609 28.504-2.609 1.379 0 2.754 0.018 4.125 0.053l-0.203-0.004c11.067 0.063 21.81 1.303 32.154 3.601l-1.007-0.188c2.404-36.745 15.834-69.951 36.976-96.8l-0.283 0.373c142.080 121.6 326.4 146.347 437.76 58.453 5.027-4.618 8.167-11.222 8.167-18.56s-3.14-13.942-8.149-18.543l-0.018-0.017zM597.333 298.667c11.52 0 112.213 7.68 108.373 104.533-0.017 0.389-0.027 0.846-0.027 1.305 0 17.232 13.621 31.283 30.684 31.973l0.063 0.002c17.437 0 31.573-14.136 31.573-31.573v0c0.309-3.629 0.486-7.853 0.486-12.119 0-39.251-14.93-75.016-39.422-101.923l0.109 0.122c-34.221-32.886-79.866-54.107-130.414-57.146l-0.573-0.028c-0.767-0.068-1.659-0.107-2.56-0.107-16.966 0-30.72 13.754-30.72 30.72 0 0.038 0 0.075 0 0.113l-0-0.006c-0.046 0.639-0.071 1.385-0.071 2.137 0 17.673 14.327 32 32 32 0.175 0 0.35-0.001 0.524-0.004l-0.026 0zM600.747 85.333c-0.434-0.021-0.943-0.032-1.454-0.032-16.953 0-30.908 12.841-32.666 29.328l-0.012 0.144c-0.066 0.773-0.104 1.673-0.104 2.582 0 17.26 13.664 31.328 30.765 31.977l0.059 0.002c10.667 0 256 21.76 259.413 256 0.476 17.302 14.616 31.147 31.989 31.147 0.004 0 0.008-0 0.012-0l-0.001 0c17.303-0.474 31.15-14.615 31.15-31.989 0-0.154-0.001-0.308-0.003-0.461l0 0.023c-5.547-233.387-211.2-310.613-319.573-318.72z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["satellite"]},"attrs":[{}],"properties":{"order":7407,"id":130,"name":"satellite","prevSize":32,"code":60090},"setIdx":0,"setId":0,"iconIdx":442},{"icon":{"paths":["M590.507 930.56l-176.64-99.413c-8.982-5.053-19.717-8.029-31.147-8.029s-22.165 2.976-31.471 8.196l0.325-0.167-176.64 99.413c-8.939 5.253-19.689 8.356-31.164 8.356-33.891 0-61.461-27.065-62.275-60.76l-0.001-0.076v-476.587c1.197-83.441 69.119-150.623 152.732-150.623 0.605 0 1.21 0.004 1.813 0.011l-0.092-0.001h293.547c0.131-0 0.286-0.001 0.442-0.001 83.61 0 151.53 67.177 152.73 150.501l0.001 0.113v476.587c-1.201 33.459-28.614 60.127-62.256 60.127-10.967 0-21.272-2.834-30.222-7.809l0.318 0.162z","M788.053 85.333h-293.547c-0.292-0.002-0.636-0.003-0.981-0.003-66.161 0-122.552 41.83-144.169 100.485l-0.343 1.065h180.48c0.515-0.004 1.124-0.007 1.733-0.007 118.508 0 214.803 95.109 216.718 213.16l0.002 0.18v308.053l101.12 56.747c8.937 5.25 19.684 8.351 31.155 8.351 34.039 0 61.702-27.302 62.284-61.203l0.001-0.055v-476.16c-1.197-83.441-69.119-150.623-152.732-150.623-0.605 0-1.21 0.004-1.813 0.011l0.092-0.001z"],"attrs":[{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["save-2"]},"attrs":[{},{}],"properties":{"order":7408,"id":129,"name":"save-2","prevSize":32,"code":60091},"setIdx":0,"setId":0,"iconIdx":443},{"icon":{"paths":["M773.973 117.333h-523.947c-90.958-0-164.693 73.736-164.693 164.693h0v438.613c-0 90.958 73.736 164.693 164.693 164.693v0h12.373c-0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0h325.12c0 23.564 19.103 42.667 42.667 42.667s42.667-19.103 42.667-42.667v0h15.787c90.958 0 164.693-73.736 164.693-164.693v0-438.613c0-90.958-73.736-164.693-164.693-164.693v0zM768 548.693v37.973c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0-37.973c-13.118-11.77-21.333-28.777-21.333-47.703 0-35.346 28.654-64 64-64s64 28.654 64 64c0 18.926-8.215 35.933-21.274 47.65l-0.060 0.053z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["save-deposit"]},"attrs":[{}],"properties":{"order":7409,"id":128,"name":"save-deposit","prevSize":32,"code":60092},"setIdx":0,"setId":0,"iconIdx":444},{"icon":{"paths":["M396.373 458.667h-110.080c-34.404 0-62.293-27.89-62.293-62.293v-110.080c0-34.404 27.89-62.293 62.293-62.293v0h110.080c34.404 0 62.293 27.89 62.293 62.293v0 110.080c0 34.404-27.89 62.293-62.293 62.293h-0zM800 396.373v-110.080c0-34.404-27.89-62.293-62.293-62.293v0h-110.080c-34.404 0-62.293 27.89-62.293 62.293v0 110.080c0 34.404 27.89 62.293 62.293 62.293h110.080c34.404 0 62.293-27.89 62.293-62.293v-0zM458.667 737.707v-110.080c0-34.404-27.89-62.293-62.293-62.293h-110.080c-34.404 0-62.293 27.89-62.293 62.293v110.080c0 34.404 27.89 62.293 62.293 62.293v0h110.080c34.404 0 62.293-27.89 62.293-62.293v0zM800 737.707v-110.080c0-34.404-27.89-62.293-62.293-62.293v0h-110.080c-34.404 0-62.293 27.89-62.293 62.293v110.080c0 34.404 27.89 62.293 62.293 62.293h110.080c34.404 0 62.293-27.89 62.293-62.293v0zM114.347 384v-117.333c-0-0-0-0-0-0.001 0-83.974 67.953-152.077 151.87-152.319l0.023-0h98.987c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-98.987c-119.287 0.243-215.893 96.999-215.893 216.32 0 0 0 0 0 0l0 0v117.333c-0 17.673 14.327 32 32 32s32-14.327 32-32v0zM973.653 384v-117.333c0-119.47-96.85-216.32-216.32-216.32v0h-135.68c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h135.68c84.124 0 152.32 68.196 152.32 152.32v0 117.333c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM397.227 941.653c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-98.987c-83.94-0.243-151.893-68.345-151.893-152.319 0-0 0-0 0-0.001l0-0v-117.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 117.333c-0 0-0 0-0 0 0 119.32 96.607 216.077 215.87 216.32l0.023 0h98.987c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM973.653 757.333v-117.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 117.333c0 84.124-68.196 152.32-152.32 152.32v0h-135.68c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h135.68c119.47 0 216.32-96.85 216.32-216.32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scan-barcode"]},"attrs":[{}],"properties":{"order":7410,"id":127,"name":"scan-barcode","prevSize":32,"code":60093},"setIdx":0,"setId":0,"iconIdx":445},{"icon":{"paths":["M833.28 650.667l-105.813-475.307c-3.416-14.516-16.25-25.158-31.572-25.173l-106.668-0c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h81.067l65.707 293.973-112.213 221.44h-217.6c-6.472-92.535-78.664-166.343-169.887-175.298l-0.779-0.062c-0.945-0.099-2.043-0.156-3.153-0.156-16.526 0-30.126 12.527-31.822 28.603l-0.012 0.139c-0.077 0.846-0.121 1.829-0.121 2.823 0 16.683 12.435 30.462 28.542 32.573l0.166 0.018c58.643 7.028 104.734 52.828 112.147 110.723l0.067 0.637h-37.547c-14.237-46.769-56.99-80.213-107.554-80.213-61.974 0-112.213 50.24-112.213 112.213s50.24 112.213 112.213 112.213c50.564 0 93.317-33.444 107.345-79.418l0.209-0.795h341.333c0.097 0.001 0.211 0.002 0.326 0.002 12.307 0 22.969-7.041 28.178-17.315l0.083-0.18 85.333-170.667 13.227 58.88c-33.929 19.514-56.408 55.561-56.408 96.857 0 61.502 49.858 111.36 111.36 111.36 0.331 0 0.662-0.001 0.992-0.004l-0.051 0c60.472-1.627 108.873-51.035 108.873-111.749 0-58.46-44.874-106.438-102.056-111.369l-0.417-0.029zM197.12 810.667c-24.606-2.391-43.683-22.968-43.683-48s19.077-45.609 43.485-47.984l0.197-0.016c13.89 0.095 26.345 6.155 34.948 15.742l0.039 0.044h-16.64c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h16.64c-8.482 9.922-21 16.181-34.981 16.213l-0.006 0zM826.88 810.667c-26.443-0.241-47.787-21.734-47.787-48.211 0-0.001 0-0.001 0-0.002l-0 0c0.202-9.234 3.040-17.765 7.788-24.92l-0.108 0.173v9.387c3.382 14.377 15.998 24.952 31.122 25.173l0.024 0h7.253c14.42-3.497 24.961-16.295 24.961-31.556 0-2.271-0.234-4.488-0.678-6.628l0.037 0.21-2.987-12.8c15.563 7.976 26.028 23.908 26.028 42.284 0 0.135-0.001 0.269-0.002 0.403l0-0.021c-0.879 25.029-20.707 45.154-45.531 46.501l-0.122 0.005z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scooter-2"]},"attrs":[{}],"properties":{"order":7411,"id":126,"name":"scooter-2","prevSize":32,"code":60094},"setIdx":0,"setId":0,"iconIdx":446},{"icon":{"paths":["M917.333 725.333c0 54.198-43.936 98.133-98.133 98.133s-98.133-43.936-98.133-98.133c0-54.198 43.936-98.133 98.133-98.133h-0c54.198 0 98.133 43.936 98.133 98.133h-0zM819.2 546.133v37.547c-0.128-0-0.28-0.001-0.433-0.001-77.526 0-140.373 62.847-140.373 140.373 0 0.45 0.002 0.9 0.006 1.35l-0.001-0.069h-326.4c0 54.198-43.936 98.133-98.133 98.133s-98.133-43.936-98.133-98.133v0 0c-26.46-3.646-46.62-26.111-46.62-53.284 0-9.401 2.413-18.239 6.654-25.927l-0.14 0.277 33.707-60.587c3.762-6.453 8.616-11.851 14.364-16.112l0.143-0.101h-25.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h358.827c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-14.080c0.407 1.012 0.643 2.185 0.643 3.413s-0.236 2.401-0.665 3.477l0.022-0.063-14.080 50.773c-0.276 1.042-0.435 2.238-0.435 3.471 0 7.328 5.599 13.349 12.752 14.018l0.056 0.004 68.693 2.987c0.65 0.028 1.413 0.044 2.18 0.044 21.336 0 39.769-12.429 48.454-30.443l0.14-0.322 42.667-88.32c3.344-6.836 5.3-14.876 5.3-23.373 0-5.042-0.689-9.923-1.977-14.555l0.090 0.381-35.84-125.867c0-5.973 0-11.52 0-17.493l5.12-82.347-2.133 30.293-97.28 2.987c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h110.507c7.072-7.339 16.237-12.615 26.533-14.87l0.347-0.064 66.987-14.507c1.027-0.225 2.207-0.355 3.417-0.355 9.19 0 16.64 7.45 16.64 16.64 0 0.125-0.001 0.249-0.004 0.373l0-0.018-2.56 98.987h-40.533l112.213 197.547c5.139 7.842 8.288 17.396 8.532 27.67l0.001 0.064zM616.533 247.467v0zM435.627 426.667c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-210.347c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h210.347c17.673 0 32-14.327 32-32v0zM435.627 317.44c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-210.347c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h210.347c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scooter"]},"attrs":[{}],"properties":{"order":7412,"id":125,"name":"scooter","prevSize":32,"code":60095},"setIdx":0,"setId":0,"iconIdx":447},{"icon":{"paths":["M764.587 85.333h-505.173c-96.142 0-174.080 77.938-174.080 174.080v0 320.427c0 96.142 77.938 174.080 174.080 174.080v0h202.24v122.453h-134.4c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h369.493c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-134.4v-122.453h202.24c96.142 0 174.080-77.938 174.080-174.080v-320.427c0-96.142-77.938-174.080-174.080-174.080v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["screen"]},"attrs":[{}],"properties":{"order":7413,"id":124,"name":"screen","prevSize":32,"code":60096},"setIdx":0,"setId":0,"iconIdx":448},{"icon":{"paths":["M883.627 756.053c7.808 15.666 12.377 34.123 12.377 53.647 0 0.34-0.001 0.679-0.004 1.018l0-0.052c0 70.692-57.308 128-128 128v0h-512c70.692 0 128-57.308 128-128v0c0.002-0.287 0.004-0.626 0.004-0.966 0-19.525-4.57-37.982-12.697-54.361l0.32 0.713-231.253-488.107c-7.808-15.666-12.377-34.123-12.377-53.647 0-0.34 0.001-0.679 0.004-1.018l-0 0.052c-0.201-2.808-0.316-6.084-0.316-9.387s0.115-6.579 0.341-9.824l-0.024 0.438c9.133-43.529 47.204-75.745 92.8-75.745s83.667 32.217 92.691 75.128l0.109 0.617s0 0 0 0c13.021 48.101 56.278 82.905 107.663 82.905 1.901 0 3.79-0.048 5.667-0.142l-0.264 0.011h229.12zM320 810.667h-139.52c-22.871 0.878-41.079 19.631-41.079 42.637 0 6.514 1.46 12.687 4.070 18.209l-0.11-0.26c0.595 1.303 1.308 2.427 2.153 3.437l-0.019-0.024h110.507c35.346 0 64-28.654 64-64v0zM225.707 81.493c58.88 0 136.107 26.027 153.6 97.707 6.37 19.949 24.742 34.142 46.429 34.142 0.327 0 0.654-0.003 0.98-0.010l-0.049 0.001h432.64c17.542-0.171 31.697-14.432 31.697-31.999 0-3.824-0.671-7.491-1.901-10.891l0.070 0.223c-18.102-50.141-65.281-85.334-120.68-85.334-0.174 0-0.347 0-0.52 0.001l0.027-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["scroll"]},"attrs":[{}],"properties":{"order":7414,"id":123,"name":"scroll","prevSize":32,"code":60097},"setIdx":0,"setId":0,"iconIdx":449},{"icon":{"paths":["M709.12 330.667h122.453l-223.147-226.133v128c1.43 54.499 45.95 98.133 100.661 98.133 0.011 0 0.023-0 0.034-0l-0.002 0z","M469.333 450.56c-0.508-0.009-1.107-0.014-1.707-0.014-57.497 0-104.107 46.61-104.107 104.107s46.61 104.107 104.107 104.107c57.492 0 104.099-46.602 104.107-104.092l0-0.001c-0.227-56.809-45.734-102.914-102.289-104.105l-0.111-0.002z","M850.773 394.667h-141.653c-0 0-0 0-0.001 0-90.808 0-164.45-73.493-164.693-164.244l-0-0.023v-145.067h-272.213c-0.381-0.005-0.83-0.008-1.28-0.008-55.376 0-100.267 44.891-100.267 100.267 0 0.003 0 0.006 0 0.008l-0-0v652.8c-0 0.002-0 0.005-0 0.008 0 55.376 44.891 100.267 100.267 100.267 0.45 0 0.899-0.003 1.348-0.009l-0.068 0.001h479.573c0.381 0.005 0.83 0.008 1.28 0.008 55.376 0 100.267-44.891 100.267-100.267 0-0.003-0-0.006-0-0.008l0 0v-443.733zM694.613 780.8c-5.486 6.046-13.374 9.827-22.145 9.827-0.315 0-0.628-0.005-0.94-0.015l0.046 0.001c-0.176 0.004-0.384 0.006-0.593 0.006-8.36 0-15.962-3.25-21.61-8.554l0.017 0.016-91.307-85.333c-25.483 16.443-56.613 26.216-90.026 26.216-92.607 0-167.68-75.073-167.68-167.68s75.073-167.68 167.68-167.68c92.39 0 167.329 74.722 167.679 167.030l0 0.034c0 0.099 0 0.217 0 0.335 0 36.245-11.678 69.762-31.476 96.994l0.329-0.475 88.747 85.333c5.805 5.793 9.396 13.802 9.396 22.65 0 8.193-3.079 15.666-8.143 21.327l0.027-0.031z"],"attrs":[{},{},{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["search-list"]},"attrs":[{},{},{}],"properties":{"order":7415,"id":122,"name":"search-list","prevSize":32,"code":60098},"setIdx":0,"setId":0,"iconIdx":450},{"icon":{"paths":["M938.667 349.867v355.413c0 94.257-76.41 170.667-170.667 170.667v0h-103.68v26.453c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-782.507c0-17.673 14.327-32 32-32s32 14.327 32 32v0 57.6h103.68c0.002-0 0.005-0 0.009-0 94.257 0 170.667 76.41 170.667 170.667 0 0.6-0.003 1.199-0.009 1.798l0.001-0.091zM256 179.2h276.907v698.453h-276.907c-94.257 0-170.667-76.41-170.667-170.667v0-357.12c-0.005-0.507-0.009-1.107-0.009-1.707 0-94.257 76.41-170.667 170.667-170.667 0.003 0 0.006 0 0.009 0l-0-0zM273.067 682.667c0 17.673 14.327 32 32 32s32-14.327 32-32v0-341.333c0-17.673-14.327-32-32-32s-32 14.327-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["security-check"]},"attrs":[{}],"properties":{"order":7416,"id":121,"name":"security-check","prevSize":32,"code":60099},"setIdx":0,"setId":0,"iconIdx":451},{"icon":{"paths":["M768 188.16l-196.267-89.6c-17.658-8.275-38.345-13.105-60.16-13.105s-42.502 4.829-61.050 13.477l0.89-0.373-195.413 89.6c-50.701 23.2-85.299 73.475-85.333 131.836l-0 0.004v313.6c-0 0.011-0 0.023-0 0.036 0 45.139 20.677 85.449 53.077 111.974l0.256 0.204 195.84 160c24.724 20.499 56.776 32.937 91.733 32.937s67.009-12.438 91.973-33.129l-0.239 0.193 195.84-160c32.989-26.596 53.975-66.932 54.187-112.178l0-0.035v-313.6c-0.034-58.365-34.632-108.64-84.432-131.47l-0.902-0.37zM512 284.587c58.962 0.242 106.667 48.097 106.667 107.092 0 59.146-47.947 107.093-107.093 107.093s-107.093-47.947-107.093-107.093l0 0c0.242-59.198 48.288-107.093 107.519-107.093 0 0 0.001 0 0.001 0l-0-0zM512 739.413c-88.32 0-159.573-47.787-159.573-107.093s71.253-106.667 159.573-106.667 159.573 47.787 159.573 106.667-71.253 107.093-159.573 107.093z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["security-user"]},"attrs":[{}],"properties":{"order":7417,"id":120,"name":"security-user","prevSize":32,"code":60100},"setIdx":0,"setId":0,"iconIdx":452},{"icon":{"paths":["M845.227 89.6l-710.827 251.733c-28.805 10.348-49.035 37.426-49.035 69.229 0 28.205 15.911 52.693 39.247 64.979l0.401 0.193 216.32 114.347c7.633 4.033 16.683 6.401 26.286 6.401 15.087 0 28.809-5.844 39.027-15.391l-0.033 0.030 249.173-233.387c5.591-7.274 14.295-11.917 24.083-11.917 7.034 0 13.509 2.398 18.65 6.42l-0.067-0.050c7.090 5.756 11.584 14.472 11.584 24.237 0 6.934-2.266 13.339-6.097 18.514l0.060-0.084c-2.246 2.581-4.768 4.832-7.545 6.739l-0.135 0.087-247.040 232.533c-11.163 10.529-18.113 25.42-18.113 41.935 0 9.784 2.44 18.999 6.744 27.069l-0.151-0.31 109.227 205.227c12.484 23.72 36.963 39.617 65.155 39.617 12.194 0 23.693-2.974 33.812-8.236l-0.407 0.193c16.096-8.733 28.412-22.707 34.815-39.59l0.172-0.516 258.133-706.133c2.854-7.528 4.507-16.232 4.507-25.321 0-31.106-19.353-57.691-46.674-68.374l-0.499-0.172c-7.551-2.835-16.277-4.475-25.387-4.475s-17.836 1.641-25.9 4.643l0.513-0.167z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["send"]},"attrs":[{}],"properties":{"order":7418,"id":119,"name":"send","prevSize":32,"code":60101},"setIdx":0,"setId":0,"iconIdx":453},{"icon":{"paths":["M861.013 394.24h-59.307c-11.39-28.217-25.742-52.577-43.128-74.413l0.461 0.6 29.013-50.347c6.567-11.303 10.442-24.873 10.442-39.349 0-29.128-15.693-54.591-39.086-68.396l-0.37-0.202-69.547-40.107c-11.331-6.662-24.958-10.597-39.505-10.597-29.121 0-54.559 15.77-68.239 39.235l-0.202 0.375-29.44 51.2c-11.824-1.883-25.686-3.113-39.777-3.408l-0.329-0.005c-14.279 0.143-28.171 1.224-41.779 3.184l1.672-0.198-28.587-50.773c-13.82-24.099-39.396-40.071-68.703-40.071-14.268 0-27.652 3.786-39.202 10.407l0.385-0.204-69.973 39.68c-24.099 13.82-40.071 39.396-40.071 68.703 0 14.268 3.786 27.652 10.407 39.202l-0.204-0.385 29.013 51.627c-16.646 21.049-30.965 45.093-41.898 70.917l-0.768 2.043h-57.6c-0.381-0.007-0.831-0.011-1.281-0.011-43.122 0-78.080 34.958-78.080 78.080 0 0.154 0 0.307 0.001 0.461l-0-0.024v80.213c-0.001 0.127-0.001 0.277-0.001 0.428 0 43.444 35.098 78.691 78.485 78.932l0.023 0h58.453c11.52 27.884 25.855 51.946 43.127 73.557l-0.461-0.597-29.44 50.347c-6.644 11.281-10.569 24.853-10.569 39.342 0 29.039 15.766 54.395 39.206 67.976l0.377 0.202 69.547 40.533c11.331 6.662 24.958 10.597 39.505 10.597 29.121 0 54.559-15.77 68.239-39.235l0.202-0.375 29.44-51.2c11.728 1.904 25.247 2.991 39.019 2.991 0.532 0 1.064-0.002 1.596-0.005l-0.082 0c15.166-0.123 29.956-1.205 44.459-3.187l-1.793 0.201 29.013 50.347c13.783 23.816 39.139 39.583 68.178 39.583 14.489 0 28.061-3.925 39.711-10.77l-0.369 0.2 69.547-40.107c23.996-13.738 39.904-39.191 39.904-68.36 0-14.415-3.885-27.922-10.665-39.532l0.201 0.372-29.44-51.2c16.262-20.508 30.529-43.801 41.817-68.731l0.849-2.096h57.6c42.27-1.144 76.27-34.995 77.65-77.098l0.003-0.129v-80.64c0.003-0.257 0.005-0.56 0.005-0.864 0-43.145-34.616-78.205-77.591-78.922l-0.067-0.001zM511.573 650.24c-76.583-0-138.666-62.083-138.666-138.667s62.083-138.667 138.667-138.667c76.583 0 138.667 62.083 138.667 138.667 0 0.15-0 0.3-0.001 0.45l0-0.023c0 0 0 0 0 0.001 0 76.433-61.84 138.423-138.217 138.666l-0.023 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-2"]},"attrs":[{}],"properties":{"order":7419,"id":118,"name":"setting-2","prevSize":32,"code":60102},"setIdx":0,"setId":0,"iconIdx":454},{"icon":{"paths":["M719.787 85.333h-415.573c-120.884-0-218.88 97.996-218.88 218.88l0 0v415.573c-0 120.884 97.996 218.88 218.88 218.88h415.573c120.884 0 218.88-97.996 218.88-218.88v0-415.573c0-120.884-97.996-218.88-218.88-218.88v0zM327.253 234.667c0-17.673 14.327-32 32-32s32 14.327 32 32v0 166.4c0 17.673-14.327 32-32 32s-32-14.327-32-32v0zM391.253 704v85.333c0.002 0.127 0.003 0.277 0.003 0.427 0 17.437-14.136 31.573-31.573 31.573-0.001 0-0.002-0-0.003-0l0 0c-17.577-0.237-31.763-14.423-32-31.977l-0-0.023v-85.333c-49.172-14.38-84.48-59.066-84.48-111.998 0-64.33 52.15-116.48 116.48-116.48s116.48 52.15 116.48 116.48c0 52.932-35.308 97.618-83.656 111.791l-0.824 0.207zM696.747 789.333c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-166.4c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM664.747 548.267c-0.247 0.002-0.539 0.003-0.832 0.003-64.094 0-116.053-51.959-116.053-116.053 0-53 35.528-97.702 84.067-111.589l0.819-0.2v-85.333c-0.018-0.397-0.029-0.862-0.029-1.329 0-16.966 13.754-30.72 30.72-30.72 0.61 0 1.217 0.018 1.819 0.053l-0.083-0.004c0.001-0 0.002-0 0.003-0 17.437 0 31.573 14.136 31.573 31.573 0 0.15-0.001 0.3-0.003 0.449l0-0.023v85.333c49.358 14.088 84.885 58.79 84.885 111.79 0 64.094-51.959 116.053-116.053 116.053-0.292 0-0.585-0.001-0.877-0.003l0.045 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-3"]},"attrs":[{}],"properties":{"order":7420,"id":117,"name":"setting-3","prevSize":32,"code":60103},"setIdx":0,"setId":0,"iconIdx":455},{"icon":{"paths":["M85.333 294.827c-0-0.001-0-0.002-0-0.003 0-17.437 14.136-31.573 31.573-31.573 0.15 0 0.3 0.001 0.449 0.003l-0.023-0h150.613c15.528-77.601 83.113-135.253 164.164-135.253 92.371 0 167.253 74.882 167.253 167.253s-74.882 167.253-167.253 167.253c-81.051 0-148.636-57.652-163.985-134.185l-0.179-1.069h-149.333c-0.383 0.016-0.832 0.026-1.283 0.026-17.673 0-32-14.327-32-32 0-0.159 0.001-0.318 0.003-0.476l-0 0.024zM665.6 327.253h238.080c0.897 0.089 1.938 0.14 2.992 0.14 17.673 0 32-14.327 32-32 0-0.199-0.002-0.398-0.005-0.597l0 0.030c0-0.001 0-0.002 0-0.003 0-17.437-14.136-31.573-31.573-31.573-0.15 0-0.3 0.001-0.449 0.003l0.023-0h-239.787c-17.49 0.239-31.576 14.473-31.576 31.997 0 0.151 0.001 0.302 0.003 0.452l-0-0.023c-0 0.001-0 0.002-0 0.003 0 17.437 14.136 31.573 31.573 31.573 0.15 0 0.3-0.001 0.449-0.003l-0.023 0zM903.253 696.32h-147.2c-15.528-77.601-83.113-135.253-164.164-135.253-92.371 0-167.253 74.882-167.253 167.253s74.882 167.253 167.253 167.253c81.051 0 148.636-57.652 163.985-134.185l0.179-1.069h149.333c17.49-0.239 31.576-14.473 31.576-31.997 0-0.151-0.001-0.302-0.003-0.452l0 0.023c0-0.001 0-0.002 0-0.003 0-17.437-14.136-31.573-31.573-31.573-0.15 0-0.3 0.001-0.449 0.003l0.023-0zM355.413 696.32h-236.373c-0.127-0.002-0.277-0.003-0.427-0.003-17.437 0-31.573 14.136-31.573 31.573 0 0.001 0 0.002 0 0.003l-0-0c-0.002 0.128-0.003 0.278-0.003 0.429 0 17.524 14.086 31.758 31.554 31.997l0.023 0h238.080c17.673 0 32-14.327 32-32v0c0.002-0.128 0.003-0.279 0.003-0.43 0-17.202-13.945-31.147-31.147-31.147-0.151 0-0.302 0.001-0.452 0.003l0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting-4"]},"attrs":[{}],"properties":{"order":7421,"id":116,"name":"setting-4","prevSize":32,"code":60104},"setIdx":0,"setId":0,"iconIdx":456},{"icon":{"paths":["M814.507 248.747l-225.707-130.56c-22.051-12.857-48.539-20.447-76.8-20.447s-54.749 7.59-77.537 20.843l0.737-0.396-225.707 130.56c-46.218 26.845-76.8 76.115-76.8 132.528 0 0.058 0 0.116 0 0.174l-0-0.009v261.12c-0 0.049-0 0.107-0 0.165 0 56.413 30.582 105.683 76.071 132.136l0.729 0.392 225.707 130.56c22.051 12.857 48.539 20.447 76.8 20.447s54.749-7.59 77.537-20.843l-0.737 0.396 225.707-130.56c46.218-26.845 76.8-76.115 76.8-132.528 0-0.058-0-0.116-0-0.174l0 0.009v-261.12c0-0.049 0-0.107 0-0.165 0-56.413-30.582-105.683-76.071-132.136l-0.729-0.392zM512 648.533c-75.405 0-136.533-61.128-136.533-136.533s61.128-136.533 136.533-136.533c75.405 0 136.533 61.128 136.533 136.533v0c0 75.405-61.128 136.533-136.533 136.533h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["setting"]},"attrs":[{}],"properties":{"order":7422,"id":115,"name":"setting","prevSize":32,"code":60105},"setIdx":0,"setId":0,"iconIdx":457},{"icon":{"paths":["M514.133 938.667c-0.236 0.001-0.515 0.001-0.794 0.001-58.822 0-114.595-13.052-164.582-36.417l2.389 1.003c-11.048-5.448-18.515-16.632-18.515-29.559 0-4.74 1.004-9.246 2.811-13.317l-0.083 0.209c5.305-11.108 16.448-18.646 29.353-18.646 4.824 0 9.402 1.053 13.516 2.942l-0.202-0.083c39.956 18.634 86.746 29.506 136.075 29.506 46.729 0 91.18-9.756 131.426-27.342l-2.115 0.824c3.407-1.328 7.351-2.098 11.475-2.098 17.909 0 32.427 14.518 32.427 32.427 0 12.603-7.19 23.527-17.692 28.893l-0.183 0.085c-45.187 19.96-97.881 31.579-153.289 31.579-0.709 0-1.418-0.002-2.126-0.006l0.109 0zM872.96 544c16.236-1.687 28.787-15.297 28.787-31.838 0-1.26-0.073-2.502-0.214-3.724l0.014 0.149c-12.032-111.345-69.233-207.361-152.631-270.655l-0.969-0.705c-4.861-3.065-10.775-4.883-17.113-4.883-17.909 0-32.427 14.518-32.427 32.427 0 9.544 4.123 18.125 10.685 24.059l0.028 0.025c70.204 53.42 117.833 133.387 127.869 224.67l0.131 1.464c1.775 16.296 15.397 28.883 31.987 29.013l0.013 0zM190.293 514.987c10.511-94.872 60.354-176.364 132.609-228.897l0.938-0.65c9.877-5.683 16.42-16.178 16.42-28.201 0-17.909-14.518-32.427-32.427-32.427-8.485 0-16.21 3.259-21.989 8.594l0.022-0.020c-86.82 64.006-145.763 161.502-157.717 273.057l-0.149 1.717c-0.128 1.073-0.2 2.315-0.2 3.575 0 16.542 12.551 30.152 28.649 31.827l0.138 0.012h3.413c15.934-0.752 28.812-12.896 30.705-28.431l0.015-0.156zM512 85.333c-68.572 0-124.16 55.588-124.16 124.16s55.588 124.16 124.16 124.16c68.572 0 124.16-55.588 124.16-124.16v0c0-0.127 0.001-0.277 0.001-0.427 0-68.336-55.397-123.733-123.733-123.733-0.15 0-0.3 0-0.451 0.001l0.023-0zM213.333 597.333c-0.127-0-0.277-0.001-0.427-0.001-68.572 0-124.16 55.588-124.16 124.16s55.588 124.16 124.16 124.16c68.571 0 124.16-55.588 124.16-124.159l-0 0c0-0 0-0.001 0-0.001 0-68.422-55.345-123.917-123.71-124.159l-0.023-0zM810.667 597.333c-68.572 0-124.16 55.588-124.16 124.16s55.588 124.16 124.16 124.16c68.572 0 124.16-55.588 124.16-124.16h0c0-0.127 0.001-0.277 0.001-0.427 0-68.336-55.397-123.733-123.733-123.733-0.15 0-0.3 0-0.451 0.001l0.023-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["share"]},"attrs":[{}],"properties":{"order":7423,"id":114,"name":"share","prevSize":32,"code":60106},"setIdx":0,"setId":0,"iconIdx":458},{"icon":{"paths":["M768 188.16l-196.267-89.6c-17.658-8.275-38.345-13.105-60.16-13.105s-42.502 4.829-61.050 13.477l0.89-0.373-195.413 89.6c-50.701 23.2-85.299 73.475-85.333 131.836l-0 0.004v313.6c-0 0.011-0 0.023-0 0.036 0 45.139 20.677 85.449 53.077 111.974l0.256 0.204 195.84 160c24.724 20.499 56.776 32.937 91.733 32.937s67.009-12.438 91.973-33.129l-0.239 0.193 195.84-160c32.989-26.596 53.975-66.932 54.187-112.178l0-0.035v-313.6c-0.034-58.365-34.632-108.64-84.432-131.47l-0.902-0.37zM619.093 572.16c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.857 5.802-13.919 9.387-22.818 9.387-0.078 0-0.156-0-0.234-0.001l0.012 0c-0.019 0-0.042 0-0.064 0-8.738 0-16.679-3.411-22.564-8.975l0.016 0.015-61.44-61.013-62.72 61.44c-5.62 5.54-13.341 8.962-21.862 8.962-0.114 0-0.228-0.001-0.342-0.002l0.017 0c-0.066 0-0.144 0.001-0.222 0.001-8.899 0-16.962-3.585-22.821-9.39l0.002 0.002c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 62.293-60.587-61.867-60.587c-9.475-5.672-15.72-15.881-15.72-27.549 0-17.673 14.327-32 32-32 10.907 0 20.54 5.457 26.317 13.79l0.069 0.106 64.853 63.573 62.293-61.44c5.902-5.708 13.954-9.225 22.827-9.225s16.924 3.517 22.836 9.234l-0.009-0.009c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0-62.293 58.88z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-cross"]},"attrs":[{}],"properties":{"order":7424,"id":113,"name":"shield-cross","prevSize":32,"code":60107},"setIdx":0,"setId":0,"iconIdx":459},{"icon":{"paths":["M835.84 695.893c0 101.561-82.332 183.893-183.893 183.893s-183.893-82.332-183.893-183.893c0-101.561 82.332-183.893 183.893-183.893v0c101.561 0 183.893 82.332 183.893 183.893v0zM404.053 695.893c-0.002-0.344-0.003-0.751-0.003-1.157 0-136.908 110.986-247.893 247.893-247.893 60.564 0 116.055 21.719 159.109 57.793l-0.387-0.315v-183.893c-0.086-58.466-34.644-108.84-84.433-131.893l-0.9-0.374-196.267-89.6c-17.725-8.284-38.485-13.117-60.373-13.117s-42.649 4.834-61.271 13.492l0.897-0.374-194.987 89.6c-50.739 23.333-85.333 73.726-85.333 132.198 0 0.024 0 0.048 0 0.073l-0-0.004v313.6c-0.002 0.272-0.003 0.594-0.003 0.916 0 44.741 20.136 84.778 51.839 111.545l0.217 0.179 195.84 160c24.839 20.367 56.936 32.713 91.917 32.713 27.667 0 53.53-7.722 75.552-21.129l-0.643 0.364c-82.717-41.485-138.528-125.569-138.667-222.701l-0-0.019zM856.32 859.307c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667c23.564 0 42.667-19.103 42.667-42.667v0c0-23.564-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-search"]},"attrs":[{}],"properties":{"order":7425,"id":112,"name":"shield-search","prevSize":32,"code":60108},"setIdx":0,"setId":0,"iconIdx":460},{"icon":{"paths":["M908.8 170.667l-744.533 741.12c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0c-0.097 0.001-0.212 0.002-0.327 0.002-8.732 0-16.625-3.593-22.281-9.382l-0.006-0.006c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 115.2-115.2-7.68-6.4c-32.656-26.729-53.333-67.039-53.333-112.178 0-0.013 0-0.025 0-0.038l-0 0.002v-313.173c0.211-58.196 34.76-108.272 84.432-131.043l0.902-0.37 195.413-89.6c17.725-8.284 38.485-13.117 60.373-13.117s42.649 4.834 61.271 13.492l-0.897-0.374 195.84 89.6c7.432 3.414 13.729 6.972 19.698 10.982l-0.498-0.315 74.24-73.813c5.84-6.126 14.063-9.935 23.176-9.935 17.673 0 32 14.327 32 32 0 9.325-3.989 17.719-10.353 23.568l-0.023 0.021zM330.24 829.867l92.16 75.093c24.717 20.318 56.68 32.636 91.52 32.636s66.803-12.318 91.771-32.837l-0.251 0.201 195.84-160c31.909-26.717 52.057-66.569 52.057-111.127 0-0.382-0.001-0.764-0.004-1.145l0 0.058v-313.173c0.101-1.594 0.158-3.457 0.158-5.333s-0.057-3.739-0.171-5.587l0.012 0.254z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-slash"]},"attrs":[{}],"properties":{"order":7426,"id":111,"name":"shield-slash","prevSize":32,"code":60109},"setIdx":0,"setId":0,"iconIdx":461},{"icon":{"paths":["M768 188.16l-196.267-89.6c-17.658-8.275-38.345-13.105-60.16-13.105s-42.502 4.829-61.050 13.477l0.89-0.373-195.413 89.6c-50.701 23.2-85.299 73.475-85.333 131.836l-0 0.004v313.6c-0 0.011-0 0.023-0 0.036 0 45.139 20.677 85.449 53.077 111.974l0.256 0.204 195.84 160c24.724 20.499 56.776 32.937 91.733 32.937s67.009-12.438 91.973-33.129l-0.239 0.193 195.84-160c32.989-26.596 53.975-66.932 54.187-112.178l0-0.035v-313.6c-0.034-58.365-34.632-108.64-84.432-131.47l-0.902-0.37zM656.213 448l-178.347 173.653c-5.741 5.887-13.751 9.539-22.613 9.539s-16.872-3.652-22.607-9.532l-0.006-0.007-65.707-66.987c-5.625-5.781-9.094-13.686-9.094-22.4 0-17.747 14.387-32.134 32.134-32.134 9.033 0 17.195 3.727 23.033 9.727l0.007 0.007 42.667 42.667 155.733-151.467c5.846-8.439 15.479-13.896 26.386-13.896 17.673 0 32 14.327 32 32 0 11.668-6.245 21.877-15.574 27.468l-0.145 0.081z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield-tick"]},"attrs":[{}],"properties":{"order":7427,"id":110,"name":"shield-tick","prevSize":32,"code":60110},"setIdx":0,"setId":0,"iconIdx":462},{"icon":{"paths":["M420.267 905.813l-195.84-160c-32.827-26.666-53.66-66.997-53.76-112.196l-0-0.017v-313.6c0.034-58.365 34.632-108.64 84.432-131.47l0.902-0.37 196.267-89.6c17.658-8.275 38.345-13.105 60.16-13.105s42.502 4.829 61.050 13.477l-0.89-0.373 195.413 89.6c50.701 23.2 85.299 73.475 85.333 131.836l0 0.004v313.6c0 0.011 0 0.023 0 0.036 0 45.139-20.677 85.449-53.077 111.974l-0.256 0.204-195.84 160c-24.759 20.606-56.892 33.113-91.947 33.113s-67.188-12.507-92.181-33.302l0.234 0.189z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shield"]},"attrs":[{}],"properties":{"order":7428,"id":109,"name":"shield","prevSize":32,"code":60111},"setIdx":0,"setId":0,"iconIdx":463},{"icon":{"paths":["M438.187 341.333l-224.853 90.027v-98.987c-0-65.744 53.296-119.040 119.040-119.040l0 0h72.96v-78.933c0.239-27.002 22.065-48.827 49.044-49.067l0.023-0h115.2c27.002 0.239 48.827 22.065 49.067 49.044l0 0.023v78.933h72.96c65.744-0 119.040 53.296 119.040 119.040v98.987l-224.853-90.027c-21.827-9.178-47.197-14.511-73.813-14.511s-51.986 5.333-75.101 14.988l1.288-0.477zM864.853 521.813l-298.667-121.173c-14.78-6.083-31.938-9.615-49.92-9.615s-35.14 3.532-50.817 9.939l0.897-0.324-298.667 121.173c-36.556 14.824-61.868 50.049-61.868 91.187 0 0.192 0.001 0.384 0.002 0.576l-0-0.030c0.222 177.976 143.226 322.478 320.605 325.117l0.249 0.003h170.667c179.794 0 325.547-145.752 325.547-325.547v-0c0.005-0.369 0.008-0.805 0.008-1.241 0-40.491-24.524-75.255-59.528-90.248l-0.639-0.244z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ship"]},"attrs":[{}],"properties":{"order":7429,"id":108,"name":"ship","prevSize":32,"code":60112},"setIdx":0,"setId":0,"iconIdx":464},{"icon":{"paths":["M429.653 443.733c-18.562-18.536-30.045-44.157-30.045-72.461 0-2.127 0.065-4.239 0.193-6.333l-0.014 0.288 18.773-279.893h178.773l25.173 277.76c0.247 2.631 0.389 5.69 0.389 8.781 0 27.593-11.242 52.561-29.395 70.573l-0.006 0.006c-21.373 20.615-50.501 33.316-82.595 33.316-31.44 0-60.033-12.188-81.312-32.098l0.067 0.062zM677.547 216.747l14.507 157.867c6.824 57.712 55.458 102.049 114.447 102.049 1.465 0 2.924-0.027 4.376-0.082l-0.21 0.006c0.151 0.001 0.33 0.001 0.509 0.001 34.643 0 65.926-14.386 88.201-37.51l0.036-0.038c18.26-19.232 29.492-45.291 29.492-73.974 0-4.908-0.329-9.739-0.966-14.472l0.061 0.553-17.493-134.4c-12.903-75.065-77.506-131.461-155.282-131.461-1.359 0-2.714 0.017-4.065 0.051l0.2-0.004h-85.333l11.093 120.32zM204.373 476.587h14.507c0.79 0.021 1.721 0.032 2.654 0.032 56.344 0 102.684-42.829 108.241-97.707l0.038-0.459 19.627-293.12h-78.933c-1.117-0.028-2.432-0.044-3.75-0.044-79.461 0-145.247 58.549-156.571 134.859l-0.105 0.865-16.213 139.52c-0.386 3.312-0.607 7.149-0.607 11.037 0 27.228 10.807 51.932 28.366 70.056l-0.026-0.027c20.895 21.587 50.135 34.987 82.505 34.987 0.094 0 0.189-0 0.283-0l-0.015 0zM810.667 541.44c-1.004 0.019-2.188 0.030-3.374 0.030-60.337 0-114.13-28.019-149.078-71.755l-0.294-0.381c-4.791 6.678-9.55 12.52-14.633 18.060l0.127-0.14c-33.834 33.536-80.417 54.258-131.84 54.258s-98.006-20.722-131.854-54.271l0.014 0.013c-5.547-5.547-9.813-11.947-14.507-17.493-34.048 43.286-86.426 70.83-145.237 70.83-0.39 0-0.78-0.001-1.169-0.004l0.060 0h-14.507c-46.63-0.244-89.186-17.49-121.83-45.849l0.23 0.195v232.107c3.278 117.622 99.41 211.723 217.521 211.723 2.278 0 4.549-0.035 6.81-0.105l-0.331 0.008h79.36v-121.173c2.346-67.199 57.386-120.784 124.942-120.784 1.075 0 2.148 0.014 3.216 0.041l-0.158-0.003c0.911-0.024 1.983-0.037 3.058-0.037 67.556 0 122.596 53.585 124.936 120.57l0.006 0.214v121.173h72.107c2.066 0.070 4.493 0.11 6.93 0.11 117.815 0 213.762-93.631 217.488-210.542l0.009-0.342v-236.373c-33.672 30.744-78.602 49.66-127.947 49.92l-0.053 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["shop"]},"attrs":[{}],"properties":{"order":7430,"id":107,"name":"shop","prevSize":32,"code":60113},"setIdx":0,"setId":0,"iconIdx":465},{"icon":{"paths":["M534.613 938.667h-305.92c-82.848-0.242-149.945-67.338-150.187-150.163l-0-0.023v-372.907c0-82.946 67.241-150.187 150.187-150.187v0h192.427c0.162-0.001 0.353-0.001 0.544-0.001 44.085 0 83.721 19.049 111.127 49.365l0.116 0.13 113.493 128c23.823 26.355 38.4 61.461 38.4 99.972 0 0.104-0 0.207-0 0.311l0-0.016v247.040c-0.964 82.209-67.831 148.48-150.177 148.48-0.003 0-0.007-0-0.010-0l0.001 0zM907.093 261.12l-113.493-128c-27.63-29.445-66.791-47.788-110.237-47.788-0.245 0-0.49 0.001-0.734 0.002l0.038-0h-193.28c-0.333-0.003-0.726-0.004-1.12-0.004-71.005 0-130.566 48.996-146.719 115.023l-0.214 1.035h79.787c0.243-0.001 0.53-0.002 0.818-0.002 62.952 0 119.536 27.267 158.585 70.636l113.664 128.193c33.886 37.612 54.615 87.659 54.615 142.547 0 0.286-0.001 0.572-0.002 0.858l0-0.044v216.747h46.507c82.946 0 150.187-67.241 150.187-150.187l0-0v-248.747c-0.008-38.604-14.58-73.803-38.52-100.403l0.12 0.136z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["simcard-2"]},"attrs":[{}],"properties":{"order":7431,"id":106,"name":"simcard-2","prevSize":32,"code":60114},"setIdx":0,"setId":0,"iconIdx":466},{"icon":{"paths":["M847.36 308.48l-143.787-160c-34.91-38.834-85.311-63.147-141.391-63.147-0.092 0-0.184 0-0.276 0l0.014-0h-243.627c-105.096 0-190.293 85.197-190.293 190.293v0 472.747c0 105.096 85.197 190.293 190.293 190.293h387.413c105.096 0 190.293-85.197 190.293-190.293v0-312.747c-0.108-48.93-18.542-93.533-48.801-127.329l0.161 0.183zM490.667 789.333h-67.84c-68.572 0-124.16-55.588-124.16-124.16v-46.507h192zM490.667 576h-192v-46.507c0-68.572 55.588-124.16 124.16-124.16v0h67.84zM725.333 665.173c0 68.572-55.588 124.16-124.16 124.16v0h-67.84v-170.667h192zM725.333 576h-192v-170.667h67.84c68.572 0 124.16 55.588 124.16 124.16v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["simcard"]},"attrs":[{}],"properties":{"order":7432,"id":105,"name":"simcard","prevSize":32,"code":60115},"setIdx":0,"setId":0,"iconIdx":467},{"icon":{"paths":["M499.2 938.667h-187.733c-124.89 0-226.133-101.243-226.133-226.133l-0-0v-187.733c0-124.89 101.243-226.133 226.133-226.133l-0-0h187.733c124.89 0 226.133 101.243 226.133 226.133v0 187.733c0 124.89-101.243 226.133-226.133 226.133h-0zM725.333 524.8v0c-0.066-16.197-1.772-31.957-4.96-47.172l0.266 1.519c2.921 13.697 4.627 29.457 4.693 45.603l0 0.050zM792.747 85.333h-177.493c-80.589 0-145.92 65.331-145.92 145.92v0 3.413h29.867c160.139 0.243 289.891 129.995 290.133 290.11l0 0.023v29.867h3.413c80.589 0 145.92-65.331 145.92-145.92v0-177.493c0-80.589-65.331-145.92-145.92-145.92h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["size"]},"attrs":[{}],"properties":{"order":7433,"id":104,"name":"size","prevSize":32,"code":60116},"setIdx":0,"setId":0,"iconIdx":468},{"icon":{"paths":["M616.96 469.333v0c-50.663 0-91.733-41.070-91.733-91.733v-189.867c0-50.663 41.070-91.733 91.733-91.733v0 0c0-0 0.001-0 0.001-0 50.749 0 91.917 41.019 92.159 91.71l0 0.023v191.147c-0.958 50.159-41.846 90.453-92.144 90.453-0.006 0-0.011-0-0.017-0l0.001 0zM498.773 836.267v-189.44c0.001-0.127 0.001-0.277 0.001-0.427 0-50.663-41.070-91.733-91.733-91.733-0 0-0.001 0-0.001 0l0-0c-0-0-0.001-0-0.001-0-50.749 0-91.917 41.019-92.159 91.71l-0 0.023v190.72c0.242 50.715 41.41 91.733 92.159 91.733 0 0 0.001-0 0.001-0l-0 0c0 0 0.001 0 0.001 0 50.513 0 91.49-40.828 91.732-91.284l0-0.023zM370.773 305.067h-193.28c-0.129-0.001-0.282-0.001-0.436-0.001-50.663 0-91.733 41.070-91.733 91.733 0 0.45 0.003 0.9 0.010 1.349l-0.001-0.068c0 50.663 41.070 91.733 91.733 91.733v-0h191.573c50.663 0 91.733-41.070 91.733-91.733v-0c0-50.663-41.070-91.733-91.733-91.733v0zM848.64 534.613h-193.28c-50.663-0-91.733 41.070-91.733 91.733v0c0 50.663 41.070 91.733 91.733 91.733v0h191.147c0.129 0.001 0.282 0.001 0.436 0.001 50.213 0 91.003-40.345 91.724-90.386l0.001-0.068c0-0 0-0.001 0-0.001 0-50.663-41.070-91.733-91.733-91.733-0.15 0-0.3 0-0.45 0.001l0.023-0zM95.147 628.48c-0.155 1.862-0.244 4.029-0.244 6.217 0 43.829 35.531 79.36 79.36 79.36 2.188 0 4.356-0.089 6.499-0.262l-0.282 0.018c41.721-4.646 73.869-39.715 73.869-82.293 0-1.069-0.020-2.134-0.060-3.193l0.005 0.153v-58.88c0.004-0.129 0.006-0.281 0.006-0.433 0-7.864-6.257-14.267-14.065-14.5l-0.022-0.001h-60.587c-0.652-0.018-1.42-0.029-2.19-0.029-42.568 0-77.631 32.133-82.256 73.467l-0.034 0.375zM386.987 85.333c-1.722-0.132-3.729-0.208-5.754-0.208-44.065 0-79.787 35.722-79.787 79.787 0 2.025 0.075 4.032 0.224 6.020l-0.016-0.265c5.562 41.359 40.079 73.082 82.23 74.237l0.117 0.003h60.587c8.012 0 14.507-6.495 14.507-14.507v0-59.733c0.040-0.967 0.064-2.102 0.064-3.242 0-41.976-31.246-76.655-71.748-82.045l-0.422-0.046zM636.587 938.667c1.722 0.132 3.729 0.208 5.754 0.208 44.065 0 79.787-35.722 79.787-79.787 0-2.025-0.075-4.032-0.224-6.020l0.016 0.265c-6.062-41.711-41.578-73.391-84.494-73.391-0.295 0-0.59 0.001-0.885 0.004l0.045-0h-58.88c-8.012 0-14.507 6.495-14.507 14.507v-0 58.88c-0.037 0.921-0.058 2.002-0.058 3.087 0 42.427 31.921 77.399 73.057 82.209l0.387 0.037zM928.853 397.653c0.155-1.862 0.244-4.029 0.244-6.217 0-43.829-35.531-79.36-79.36-79.36-2.188 0-4.356 0.089-6.499 0.262l0.282-0.018c-41.523 4.847-73.444 39.819-73.444 82.246 0 1.086 0.021 2.167 0.062 3.242l-0.005-0.155v58.88c0 8.012 6.495 14.507 14.507 14.507v0h60.16c0.539 0.013 1.175 0.020 1.812 0.020 42.414 0 77.377-31.901 82.205-73.018l0.037-0.388z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slack"]},"attrs":[{}],"properties":{"order":7434,"id":103,"name":"slack","prevSize":32,"code":60117},"setIdx":0,"setId":0,"iconIdx":469},{"icon":{"paths":["M768 213.333v601.6c-2.368 68.833-58.737 123.733-127.929 123.733-0.025 0-0.050-0-0.075-0l-255.996 0c-0.005 0-0.011 0-0.018 0-69.942 0-126.782-56.098-127.981-125.754l-0.002-0.112v-599.467c0-70.692 57.308-128 128-128v0h256c70.692 0 128 57.308 128 128v0zM192.427 227.413h-12.8c-52.077 0-94.293 42.217-94.293 94.293v0 380.587c0 52.077 42.217 94.293 94.293 94.293v0h12.8zM844.373 227.413h-12.8v569.173h12.8c52.077 0 94.293-42.217 94.293-94.293v0-380.587c0-52.077-42.217-94.293-94.293-94.293v-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-horizontal-2"]},"attrs":[{}],"properties":{"order":7435,"id":102,"name":"slider-horizontal-2","prevSize":32,"code":60118},"setIdx":0,"setId":0,"iconIdx":470},{"icon":{"paths":["M827.733 244.053v535.893c0 70.692-57.308 128-128 128v0h-376.747c-70.692 0-128-57.308-128-128v0-535.893c0-70.692 57.308-128 128-128v0h378.027c70.14 0.724 126.72 57.751 126.72 127.994 0 0.002-0 0.005-0 0.007l0-0zM149.333 798.72v-574.293c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 575.147c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM938.667 798.72v-574.293c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 575.147c0 17.673 14.327 32 32 32s32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-horizontal"]},"attrs":[{}],"properties":{"order":7436,"id":101,"name":"slider-horizontal","prevSize":32,"code":60119},"setIdx":0,"setId":0,"iconIdx":471},{"icon":{"paths":["M779.947 827.733h-535.893c-70.692 0-128-57.308-128-128v0-376.747c0-70.692 57.308-128 128-128v0h535.893c70.692 0 128 57.308 128 128v0 378.027c-0.724 70.14-57.751 126.72-127.994 126.72-0.002 0-0.005-0-0.007-0l0 0zM831.573 117.333c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-575.147c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h575.147c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM831.573 906.667c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-575.147c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h575.147c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-vertical-2"]},"attrs":[{}],"properties":{"order":7437,"id":100,"name":"slider-vertical-2","prevSize":32,"code":60120},"setIdx":0,"setId":0,"iconIdx":472},{"icon":{"paths":["M213.333 256h601.6c68.833 2.368 123.733 58.737 123.733 127.929 0 0.025-0 0.050-0 0.075l0-0.004v256c0 0.005 0 0.011 0 0.018 0 69.942-56.098 126.782-125.754 127.981l-0.112 0.002h-599.467c-70.692 0-128-57.308-128-128v0-256c0-70.692 57.308-128 128-128v0zM796.587 768v0zM227.413 844.373c0 52.077 42.217 94.293 94.293 94.293h380.587c52.077 0 94.293-42.217 94.293-94.293v0-12.8h-569.173zM796.587 179.627c0-52.077-42.217-94.293-94.293-94.293v0h-380.587c-52.077 0-94.293 42.217-94.293 94.293v0 12.8h569.173z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider-vertical"]},"attrs":[{}],"properties":{"order":7438,"id":99,"name":"slider-vertical","prevSize":32,"code":60121},"setIdx":0,"setId":0,"iconIdx":473},{"icon":{"paths":["M117.333 853.333c-0.008 0-0.017 0-0.026 0-17.223 0-31.268-13.606-31.972-30.656l-0.002-0.064v-621.227c0-17.673 14.327-32 32-32s32 14.327 32 32v0 621.227c-0.706 17.114-14.751 30.72-31.974 30.72-0.009 0-0.018-0-0.027-0l0.001 0zM938.667 822.613v-621.227c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 621.227c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM206.507 701.44v51.627c0 102.504 83.096 185.6 185.6 185.6v0h239.787c102.504 0 185.6-83.096 185.6-185.6v-51.627zM817.493 637.44v-366.507c-0-102.504-83.096-185.6-185.6-185.6h-239.787c-102.504 0-185.6 83.096-185.6 185.6v0 366.507z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["slider"]},"attrs":[{}],"properties":{"order":7439,"id":98,"name":"slider","prevSize":32,"code":60122},"setIdx":0,"setId":0,"iconIdx":474},{"icon":{"paths":["M756.907 149.333h-489.813c-100.383 0-181.76 81.377-181.76 181.76v0 361.813c0 100.383 81.377 181.76 181.76 181.76v0h489.813c100.383 0 181.76-81.377 181.76-181.76v0-361.813c0-100.383-81.377-181.76-181.76-181.76v0zM745.813 401.067l-140.373 119.040c-25.030 21.475-57.815 34.548-93.653 34.548s-68.624-13.073-93.847-34.71l0.194 0.162-144.213-119.040c-6.865-5.993-11.178-14.759-11.178-24.533 0-17.956 14.556-32.511 32.511-32.511 8.182 0 15.657 3.022 21.372 8.011l-0.038-0.033 144.213 119.893c13.98 11.956 32.274 19.231 52.267 19.231s38.286-7.276 52.377-19.324l-0.111 0.092 140.8-119.040c5.598-4.732 12.898-7.608 20.869-7.608 9.689 0 18.385 4.249 24.327 10.986l0.031 0.035c3.991 5.375 6.389 12.141 6.389 19.467 0 10.172-4.622 19.263-11.881 25.29l-0.054 0.044z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sms"]},"attrs":[{}],"properties":{"order":7440,"id":97,"name":"sms","prevSize":32,"code":60123},"setIdx":0,"setId":0,"iconIdx":475},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM713.813 663.467c-26.453 3.84-28.587 13.227-30.293 18.773s0 18.347-20.48 17.92c-1.758-0.077-3.82-0.121-5.892-0.121-31.23 0-60.135 9.957-83.713 26.868l0.432-0.294c-17.615 11.133-39.053 17.74-62.034 17.74-24.631 0-47.489-7.59-66.364-20.558l0.398 0.258c-19.909-14.411-44.743-23.16-71.606-23.466l-0.074-0.001c-8.107 0-25.173 0-30.72-5.973s0-15.36-6.827-20.907c-12.962-6.7-28.124-12.666-43.933-17.083l-1.72-0.41c-12.373-5.12-27.307-9.387 4.693-25.173 24.592-12.538 45.031-29.974 60.685-51.161l0.329-0.466c12.479-15.273 20.696-34.474 22.585-55.497l0.029-0.396c0-8.107-20.053-18.347-37.547-30.293s-26.88-23.467-17.493-35.413 25.6-2.987 42.667 3.413 14.933 3.413 15.36 0v-64c0-64.801 52.532-117.333 117.333-117.333v0h18.773c1.272-0.049 2.766-0.078 4.267-0.078 64.801 0 117.333 52.532 117.333 117.333 0 0.027-0 0.054-0 0.082l0-0.004v55.040c0 18.347 13.227 9.813 31.573 2.987s32 0 32 14.507-34.987 32.853-48.64 42.667-14.933 13.227 3.413 52.053c18.949 31.986 46.716 57.005 79.952 72.081l1.115 0.453c20.053 12.373 1.28 23.040-25.6 26.453z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["snapchat"]},"attrs":[{}],"properties":{"order":7441,"id":96,"name":"snapchat","prevSize":32,"code":60124},"setIdx":0,"setId":0,"iconIdx":476},{"icon":{"paths":["M624.64 597.333c-0.237 17.577-14.423 31.763-31.977 32l-0.023 0h-165.973c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h168.107c16.661 1.358 29.692 15.13 29.867 31.983l0 0.017zM940.8 682.667c0 0.005 0 0.011 0 0.017 0 140.335-112.919 254.296-252.854 255.981l-0.159 0.002h-346.453c-0.005 0-0.011 0-0.017 0-140.335 0-254.296-112.919-255.981-252.854l-0.002-0.159v-344.32c-0-0.015-0-0.033-0-0.051 0-139.585 111.715-253.077 250.612-255.944l0.268-0.004h346.453c0.005-0 0.011-0 0.017-0 140.335 0 254.296 112.919 255.981 252.854l0.002 0.159zM768 508.16c0-20.030-16.237-36.267-36.267-36.267v0c-0.127 0.001-0.277 0.002-0.427 0.002-26.863 0-48.64-21.777-48.64-48.64 0-0.001 0-0.001 0-0.002l-0 0v-81.92c0-47.128-38.205-85.333-85.333-85.333v0h-256c-47.128 0-85.333 38.205-85.333 85.333v0 341.333c0 47.128 38.205 85.333 85.333 85.333v0h341.333c47.128 0 85.333-38.205 85.333-85.333v0zM422.4 458.667h89.6c17.673 0 32-14.327 32-32s-14.327-32-32-32v0h-89.6c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["social-media"]},"attrs":[{}],"properties":{"order":7442,"id":95,"name":"social-media","prevSize":32,"code":60125},"setIdx":0,"setId":0,"iconIdx":477},{"icon":{"paths":["M691.2 358.4l-296.533-296.533c-15.83-15.839-37.704-25.637-61.867-25.637s-46.037 9.797-61.866 25.636l-29.867 29.867c-15.839 15.83-25.637 37.704-25.637 61.867s9.797 46.037 25.636 61.866l234.667 234.667c15.839 15.83 25.637 37.704 25.637 61.867s-9.797 46.037-25.636 61.866l-0 0-234.667 236.8c-15.839 15.83-25.637 37.704-25.637 61.867s9.797 46.037 25.636 61.866l29.867 29.867c15.83 15.839 37.704 25.637 61.867 25.637s46.037-9.797 61.866-25.636l390.4-390.4c15.839-15.83 25.637-37.704 25.637-61.867s-9.797-46.037-25.636-61.866l-0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["soft-2"]},"attrs":[{}],"properties":{"order":7443,"id":94,"name":"soft-2","prevSize":32,"code":60126},"setIdx":0,"setId":0,"iconIdx":478},{"icon":{"paths":["M785.493 149.333c49.152 0.241 88.932 40.021 89.173 89.15l0 0.023v546.987c-0.241 49.152-40.021 88.932-89.15 89.173l-0.023 0h-546.987c-49.152-0.241-88.932-40.021-89.173-89.15l-0-0.023v-546.987c0.241-49.152 40.021-88.932 89.15-89.173l0.023-0h546.987zM785.493 85.333h-546.987c-84.595 0-153.173 68.578-153.173 153.173v0 546.987c0 84.595 68.578 153.173 153.173 153.173v0h546.987c84.595 0 153.173-68.578 153.173-153.173v0-546.987c0-84.595-68.578-153.173-153.173-153.173v0zM669.44 419.84c0-0 0-0.001 0-0.002 0-32.84-26.501-59.49-59.284-59.732l-0.023-0h-38.827c-32.806 0.242-59.307 26.892-59.307 59.732 0 0.001 0 0.001 0 0.002l-0-0v518.827h157.44z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["soft-3"]},"attrs":[{}],"properties":{"order":7444,"id":93,"name":"soft-3","prevSize":32,"code":60127},"setIdx":0,"setId":0,"iconIdx":479},{"icon":{"paths":["M820.48 497.067h-109.227c4.261-28.553 27.666-50.498 56.557-52.47l0.19-0.010c27.355 3.723 48.757 25.125 52.445 52.164l0.035 0.316zM938.667 512c0 235.641-191.025 426.667-426.667 426.667s-426.667-191.025-426.667-426.667c0-235.641 191.025-426.667 426.667-426.667v0c235.641 0 426.667 191.025 426.667 426.667v0zM495.36 341.333c-29.424-17.849-64.987-28.413-103.017-28.413-110.987 0-200.96 89.973-200.96 200.96 0 108.053 85.279 196.188 192.203 200.773l0.415 0.014c34.169-0.090 66.33-8.604 94.541-23.573l-1.101 0.533c6.859-3.677 11.445-10.796 11.445-18.987 0-11.858-9.613-21.472-21.472-21.472-3.668 0-7.121 0.92-10.141 2.541l0.115-0.056c-21.227 11.554-46.487 18.347-73.333 18.347-0.019 0-0.037-0-0.056-0l0.003 0c-0.326 0.002-0.711 0.004-1.096 0.004-87.659 0-158.72-71.061-158.72-158.72s71.061-158.72 158.72-158.72c32.135 0 62.040 9.55 87.030 25.967l-0.601-0.37c3.037 1.763 6.682 2.803 10.57 2.803 11.782 0 21.333-9.551 21.333-21.333 0-7.1-3.468-13.389-8.802-17.267l-0.061-0.043zM384 443.733c-38.636 0.012-69.953 31.335-69.953 69.973 0 38.645 31.328 69.973 69.973 69.973s69.973-31.328 69.973-69.973c0-0.6-0.008-1.198-0.023-1.795l0.002 0.088c-0.718-37.856-31.575-68.268-69.535-68.268-0.154 0-0.308 0.001-0.462 0.002l0.024-0zM642.987 410.027c-3.94-5.048-10.025-8.263-16.861-8.263-4.918 0-9.447 1.664-13.055 4.46l0.049-0.036-32.853 25.6v-8.533c0-11.782-9.551-21.333-21.333-21.333v0c-11.782 0-21.333 9.551-21.333 21.333v0 189.867c0 11.782 9.551 21.333 21.333 21.333v0c11.782 0 21.333-9.551 21.333-21.333v0-128l59.733-45.227c4.743-3.941 7.74-9.842 7.74-16.442 0-5.105-1.793-9.792-4.784-13.464l0.031 0.039zM710.827 538.027h133.547c11.782 0 21.333-9.551 21.333-21.333v0c0.11-1.834 0.173-3.979 0.173-6.138 0-56.327-42.637-102.696-97.397-108.594l-0.482-0.042c-56.271 4.856-100.107 51.731-100.107 108.845 0 2.687 0.097 5.35 0.288 7.988l-0.021-0.354c-0.442 3.604-0.695 7.777-0.695 12.008 0 56.24 44.596 102.065 100.354 104.040l0.181 0.005h61.013c11.782 0 21.333-9.551 21.333-21.333v0c0-11.782-9.551-21.333-21.333-21.333v0h-61.013c-0.068 0-0.149 0-0.23 0-29.774 0-54.232-22.758-56.927-51.828l-0.017-0.226z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["soft"]},"attrs":[{}],"properties":{"order":7445,"id":92,"name":"soft","prevSize":32,"code":60128},"setIdx":0,"setId":0,"iconIdx":480},{"icon":{"paths":["M782.933 533.333h-164.267c-63.58-1.866-114.411-53.853-114.411-117.712 0-1.367 0.023-2.729 0.070-4.085l-0.005 0.197v-172.8zM782.933 586.667h-164.267c-92.624-2.107-166.905-77.691-166.905-170.625 0-1.815 0.028-3.623 0.085-5.425l-0.007 0.263v-170.667h-170.667c-108.366 0.966-195.84 89.037-195.84 197.539 0 0.153 0 0.305 0.001 0.458l-0-0.024v298.667c-0.024 1.146-0.037 2.497-0.037 3.851 0 108.601 87.445 196.778 195.765 197.961l0.112 0.001h308.907c108.421-1.199 195.852-89.37 195.852-197.962 0-0.754-0.004-1.507-0.013-2.26l0.001 0.115v-151.893zM730.027 85.333h-277.76c-0.745-0.010-1.624-0.015-2.505-0.015-75.443 0-141.319 40.964-176.598 101.863l-0.524 0.979c9.361-1.625 20.144-2.556 31.143-2.56l298.67-0c122.638 0.484 221.868 100.013 221.868 222.718 0 0.301-0.001 0.601-0.002 0.901l0-0.046v307.627c-0.385 19.558-2.852 38.342-7.189 56.399l0.362-1.786c71.86-34.213 120.735-106.067 121.173-189.382l0-0.058v-286.293c0.007-0.636 0.011-1.388 0.011-2.14 0-114.397-92.256-207.246-206.426-208.206l-0.091-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["some-files"]},"attrs":[{}],"properties":{"order":7446,"id":91,"name":"some-files","prevSize":32,"code":60129},"setIdx":0,"setId":0,"iconIdx":481},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM560.213 732.587h-96.427c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h96.427c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM679.253 551.253h-334.507c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h334.507c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM764.587 369.92h-505.173c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h505.173c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sort"]},"attrs":[{}],"properties":{"order":7447,"id":90,"name":"sort","prevSize":32,"code":60130},"setIdx":0,"setId":0,"iconIdx":482},{"icon":{"paths":["M670.293 85.333h-316.587c-80.118 0-145.067 64.949-145.067 145.067v0 563.2c0 80.118 64.949 145.067 145.067 145.067v0h316.587c80.118 0 145.067-64.949 145.067-145.067v0-563.2c0-80.118-64.949-145.067-145.067-145.067v-0zM512 268.8c32.282 0.001 58.452 26.171 58.452 58.453s-26.17 58.453-58.453 58.453c-32.283 0-58.453-26.17-58.453-58.453 0-0.15 0.001-0.3 0.002-0.45l-0 0.023c-0-0.001-0-0.001-0-0.002 0-32.047 25.979-58.027 58.027-58.027 0.15 0 0.3 0.001 0.45 0.002l-0.023-0zM512 768c-68.1 0-123.307-55.206-123.307-123.307s55.206-123.307 123.307-123.307c68.1 0 123.307 55.206 123.307 123.307v0c0 68.1-55.206 123.307-123.307 123.307v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["speaker"]},"attrs":[{}],"properties":{"order":7448,"id":89,"name":"speaker","prevSize":32,"code":60131},"setIdx":0,"setId":0,"iconIdx":483},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM658.347 691.627c-5.871 8.475-15.509 13.981-26.438 14.080l-0.015 0c-6.742-0.154-12.937-2.37-18.014-6.038l0.094 0.065c-41.009-27.093-91.331-43.223-145.421-43.223-30.252 0-59.326 5.046-86.426 14.341l1.873-0.558c-2.813 0.896-6.048 1.413-9.403 1.413-17.673 0-32-14.327-32-32 0-12.885 7.616-23.992 18.592-29.064l0.198-0.082c32.176-11.518 69.298-18.175 107.974-18.175 67.852 0 130.919 20.49 183.35 55.62l-1.191-0.751c7.942 5.806 13.042 15.089 13.042 25.563 0 7.085-2.334 13.625-6.274 18.893l0.059-0.083zM709.12 568.747c-5.705 8.782-15.466 14.508-26.564 14.508-0.111 0-0.222-0.001-0.333-0.002l0.017 0c-6.493-0.049-12.532-1.95-17.628-5.2l0.134 0.080c-52.023-37.897-117.206-60.631-187.699-60.631-43.053 0-84.126 8.48-121.639 23.86l2.139-0.776c-4.138 2.131-9.030 3.38-14.214 3.38-12.46 0-23.235-7.218-28.37-17.701l-0.082-0.186c-2.040-4.094-3.234-8.917-3.234-14.019 0-12.477 7.141-23.286 17.558-28.564l0.183-0.084c43.441-18.503 93.974-29.259 147.020-29.259 83.983 0 161.669 26.96 224.875 72.698l-1.122-0.773c8.167 5.962 13.413 15.502 13.413 26.267 0 6.045-1.654 11.704-4.535 16.549l0.082-0.149zM763.307 460.373c-5.756 7.056-14.45 11.525-24.189 11.525-0.196 0-0.392-0.002-0.587-0.005l0.029 0c-0.068 0.001-0.147 0.001-0.227 0.001-7.577 0-14.514-2.743-19.87-7.291l0.044 0.037c-186.453-151.467-426.667-53.76-429.653-52.48-3.655 1.567-7.908 2.478-12.373 2.478-17.746 0-32.131-14.386-32.131-32.131 0-13.28 8.056-24.678 19.548-29.574l0.21-0.080c11.093-4.693 278.187-113.92 494.933 62.293 7.162 5.913 11.692 14.793 11.692 24.73 0 7.821-2.806 14.987-7.466 20.546l0.041-0.050z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["spotify"]},"attrs":[{}],"properties":{"order":7449,"id":88,"name":"spotify","prevSize":32,"code":60132},"setIdx":0,"setId":0,"iconIdx":484},{"icon":{"paths":["M938.667 498.347c-3.754-111.359-49.622-211.327-122.088-285.076l0.061 0.062 12.373-16.64c6.272-8.647 16.343-14.206 27.712-14.206 14.607 0 27.071 9.175 31.943 22.077l0.078 0.235c31.667 83.889 50 180.862 50 282.117 0 4.019-0.029 8.031-0.086 12.036l0.007-0.607zM938.667 498.347c-8.96 180.053-116.907 351.573-517.547 302.933-5.78-1.116-10.086-6.135-10.086-12.16s4.306-11.044 10.008-12.147l0.078-0.013c107.093-30.293 318.72-117.333 384-344.747-78.663 178.309-253.899 300.513-457.676 300.513-25.49 0-50.533-1.912-74.995-5.601l2.751 0.341c-23.919-3.413-42.845-21.331-47.721-44.43l-0.065-0.37c-20.053-85.333-38.827-286.72 196.267-319.573s328.96-69.547 392.96-149.76c-77.493-78.983-185.35-127.938-304.64-127.938-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667 0-0.022-0-0.044-0-0.066l0 0.004c0-3.413 0-8.533 0-13.653z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["spring-framework"]},"attrs":[{}],"properties":{"order":7450,"id":87,"name":"spring-framework","prevSize":32,"code":60133},"setIdx":0,"setId":0,"iconIdx":485},{"icon":{"paths":["M690.773 85.333h-357.547c-136.908-0-247.893 110.986-247.893 247.893l0 0v357.547c-0 136.908 110.986 247.893 247.893 247.893l0 0h357.547c136.908-0 247.893-110.986 247.893-247.893l0 0v-357.547c-0-136.908-110.986-247.893-247.893-247.893l0 0zM384 674.987c2.965 4.761 4.722 10.541 4.722 16.731 0 10.632-5.185 20.053-13.165 25.872l-0.091 0.063c-5.079 3.288-11.24 5.326-17.862 5.545l-0.058 0.002c-11.056-0.040-20.768-5.756-26.379-14.384l-0.075-0.122-119.467-176.64c-3.298-4.994-5.261-11.121-5.261-17.707s1.963-12.713 5.337-17.828l-0.075 0.122 116.907-182.613c5.828-8.59 15.546-14.159 26.565-14.159 5.932 0 11.488 1.614 16.25 4.427l-0.149-0.081c8.516 5.928 14.019 15.669 14.019 26.696 0 5.871-1.561 11.378-4.289 16.129l0.084-0.158-106.667 168.533zM591.787 338.773l-87.467 361.387c-3.535 14.621-16.507 25.312-31.976 25.312-1.060 0-2.108-0.050-3.143-0.148l0.132 0.010c-1.154 0.194-2.484 0.305-3.84 0.305s-2.686-0.111-3.981-0.324l0.141 0.019c-14.092-3.367-24.408-15.854-24.408-30.749 0-2.717 0.343-5.354 0.989-7.869l-0.048 0.219 85.333-361.387c3.489-14.197 16.107-24.562 31.147-24.562 17.689 0 32.029 14.34 32.029 32.029 0 2.65-0.322 5.224-0.928 7.687l0.046-0.22zM816.64 533.76l-119.467 176.64c-5.685 8.751-15.397 14.467-26.447 14.507l-0.006 0c-6.679-0.221-12.841-2.259-18.059-5.631l0.139 0.084c-8.071-5.883-13.256-15.303-13.256-25.936 0-6.19 1.758-11.97 4.801-16.867l-0.079 0.136 107.52-159.573-111.787-168.533c-2.638-4.624-4.193-10.161-4.193-16.061 0-10.903 5.311-20.565 13.487-26.541l0.093-0.065c4.593-2.645 10.1-4.206 15.971-4.206 11.026 0 20.767 5.503 26.626 13.913l0.070 0.106 119.467 184.32c3.975 5.321 6.365 12.029 6.365 19.295 0 5.251-1.248 10.21-3.464 14.597l0.085-0.186z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["square-brackets"]},"attrs":[{}],"properties":{"order":7451,"id":86,"name":"square-brackets","prevSize":32,"code":60134},"setIdx":0,"setId":0,"iconIdx":486},{"icon":{"paths":["M599.893 137.813l79.787 139.093c5.958 10.794 16.164 18.622 28.304 21.281l0.282 0.052 153.6 34.987c45.944 11.668 79.389 52.66 79.389 101.464 0 8.198-0.944 16.175-2.728 23.829l0.139-0.706c-4.132 18.296-12.321 34.26-23.596 47.516l0.13-0.156-104.533 122.453c-6.728 8.583-10.79 19.537-10.79 31.44 0 1.248 0.045 2.486 0.132 3.712l-0.009-0.165 15.36 160.427c0.412 3.494 0.648 7.541 0.648 11.643 0 52.929-39.178 96.708-90.117 103.919l-0.557 0.065c-2.858 0.287-6.176 0.45-9.533 0.45-15.1 0-29.427-3.31-42.295-9.243l0.628 0.259-145.067-65.28c-5.299-2.227-11.458-3.521-17.92-3.521s-12.621 1.294-18.233 3.637l0.313-0.116-143.787 63.573c-12.192 5.533-26.437 8.758-41.436 8.758-42.476 0-78.911-25.862-94.419-62.698l-0.252-0.674c-5.414-12.542-8.563-27.144-8.563-42.482 0-3.52 0.166-7.002 0.49-10.437l-0.033 0.439 15.36-160.427c0.142-1.385 0.224-2.992 0.224-4.618 0-11.57-4.112-22.18-10.955-30.448l0.064 0.080-104.107-122.453c-15.266-18.321-24.534-42.107-24.534-68.058 0-31.577 13.721-59.949 35.526-79.479l0.101-0.089c11.782-10.443 26.121-18.279 41.947-22.452l155.6-34.721c11.807-3.254 21.361-11.137 26.768-21.524l0.112-0.236 81.493-139.093c17.55-31.468 50.635-52.401 88.61-52.401 18.932 0 36.649 5.203 51.798 14.256l-0.462-0.256c15.48 9.582 28.018 22.53 36.845 37.882l0.275 0.518z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["star"]},"attrs":[{}],"properties":{"order":7452,"id":85,"name":"star","prevSize":32,"code":60135},"setIdx":0,"setId":0,"iconIdx":487},{"icon":{"paths":["M665.6 560.64h210.347c0.342-0.007 0.746-0.011 1.15-0.011 34.639 0 62.72 28.081 62.72 62.72 0 4.23-0.419 8.362-1.217 12.357l0.067-0.4c-30.746 153.572-149.788 272.615-300.906 302.949l-2.454 0.411c-3.592 0.73-7.721 1.148-11.947 1.148-34.593 0-62.645-28.006-62.72-62.581l-0-0.007v-211.627c0-57.968 46.992-104.96 104.96-104.96h-0zM358.4 560.64h-210.347c-0.342-0.007-0.746-0.011-1.15-0.011-34.639 0-62.72 28.081-62.72 62.72 0 4.23 0.419 8.362 1.217 12.357l-0.067-0.4c30.746 153.572 149.788 272.615 300.906 302.949l2.454 0.411c3.592 0.73 7.721 1.148 11.947 1.148 34.593 0 62.645-28.006 62.72-62.581l0-0.007v-211.627c0-57.968-46.992-104.96-104.96-104.96h0zM864.427 512c37.024-0.272 66.933-30.349 66.933-67.412 0-4.529-0.447-8.953-1.298-13.231l0.071 0.429c-40.918-196.354-212.545-341.761-418.133-341.761s-377.215 145.407-417.649 338.988l-0.485 2.773c-0.78 3.849-1.227 8.273-1.227 12.802 0 37.063 29.909 67.14 66.907 67.411l0.026 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["status"]},"attrs":[{}],"properties":{"order":7453,"id":84,"name":"status","prevSize":32,"code":60136},"setIdx":0,"setId":0,"iconIdx":488},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM218.453 533.333h311.893c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-311.893c-17.673 0-32-14.327-32-32s14.327-32 32-32v0zM355.413 746.667h-136.96c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h136.96c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM805.547 746.667h-311.893c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h311.893c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM805.547 596.907h-136.96c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h136.96c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["subtitle"]},"attrs":[{}],"properties":{"order":7454,"id":83,"name":"subtitle","prevSize":32,"code":60137},"setIdx":0,"setId":0,"iconIdx":489},{"icon":{"paths":["M512 200.533c-0.021 0-0.046 0-0.071 0-16.922 0-30.777-13.136-31.923-29.767l-0.006-0.1v-52.48c0-17.673 14.327-32 32-32s32 14.327 32 32v0 52.48c-1.152 16.731-15.006 29.867-31.929 29.867-0.025 0-0.050-0-0.075-0l0.004 0zM544 905.813v-50.347c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 50.347c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM291.84 291.84c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-35.84-33.28c-4.034-1.971-8.778-3.124-13.791-3.124-17.673 0-32 14.327-32 32 0 5.013 1.153 9.757 3.208 13.981l-0.083-0.19 35.413 35.413c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0zM812.8 813.227c5.887-5.741 9.539-13.751 9.539-22.613s-3.652-16.872-9.532-22.607l-0.007-0.006-35.413-35.84c-5.858-6.274-14.178-10.185-23.412-10.185-17.673 0-32 14.327-32 32 0 9.234 3.911 17.554 10.166 23.394l0.019 0.017 35.413 35.84c5.875 5.648 13.812 9.189 22.575 9.386l0.038 0.001c8.833-0.008 16.828-3.594 22.613-9.386l0-0zM200.533 512c0-0.021 0-0.046 0-0.071 0-16.922-13.136-30.777-29.767-31.923l-0.1-0.006h-52.48c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h52.48c16.731-1.152 29.867-15.006 29.867-31.929 0-0.025-0-0.050-0-0.075l0 0.004zM938.667 512c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-51.2c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h50.347c0.128 0.002 0.278 0.003 0.429 0.003 17.76 0 32.185-14.277 32.424-31.98l0-0.023zM256 813.227l35.413-35.84c6.274-5.858 10.185-14.178 10.185-23.412 0-17.673-14.327-32-32-32-9.234 0-17.554 3.911-23.394 10.166l-0.017 0.019-32.853 35.84c-5.887 5.741-9.539 13.751-9.539 22.613s3.652 16.872 9.532 22.607l0.007 0.006c5.786 5.793 13.78 9.379 22.612 9.387l0.002 0c7.861-0.836 14.797-4.261 20.060-9.393l-0.007 0.007zM777.387 291.84l35.413-35.84c2.486-4.444 3.95-9.751 3.95-15.4 0-17.673-14.327-32-32-32-6.198 0-11.984 1.762-16.885 4.812l0.136-0.079-35.413 35.413c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0zM512 272.213c-132.431 0-239.787 107.356-239.787 239.787s107.356 239.787 239.787 239.787c132.431 0 239.787-107.356 239.787-239.787v0c0-132.431-107.356-239.787-239.787-239.787v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["sun"]},"attrs":[{}],"properties":{"order":7455,"id":82,"name":"sun","prevSize":32,"code":60138},"setIdx":0,"setId":0,"iconIdx":490},{"icon":{"paths":["M577.707 486.827l71.68-102.827v104.533zM896 207.787v469.333c0 68.807-55.779 124.587-124.587 124.587h-46.080c-0.067-0-0.145-0-0.224-0-26.725 0-50.854 11.118-68.012 28.982l-0.030 0.032-77.227 81.067c-17.365 18.212-41.813 29.536-68.907 29.536s-51.542-11.324-68.871-29.498l-0.036-0.038-71.253-79.787c-17.139-18.65-41.647-30.296-68.876-30.296-0.236 0-0.472 0.001-0.707 0.003l0.036-0h-48.64c-68.807 0-124.587-55.779-124.587-124.587v0-469.333c1.199-67.883 56.511-122.453 124.568-122.453 0.006 0 0.013 0 0.019 0l518.826-0c0.005-0 0.012-0 0.018-0 68.057 0 123.369 54.57 124.567 122.341l0.002 0.112zM338.347 549.12c9.813-8.96 22.613-18.773 35.84-29.013 46.080-35.84 98.133-76.373 98.56-134.4 0-56.554-45.846-102.4-102.4-102.4s-102.4 45.846-102.4 102.4h0c0 17.673 14.327 32 32 32s32-14.327 32-32v0c0-21.208 17.192-38.4 38.4-38.4l-0 0c0.418-0.016 0.909-0.025 1.403-0.025 10.379 0 19.807 4.073 26.773 10.707l-0.016-0.015c6.342 6.708 10.241 15.784 10.241 25.771 0 0.090-0 0.18-0.001 0.269l0-0.014c0 26.88-42.667 58.88-73.813 85.333-20.493 14.787-38.496 30.624-54.859 48.019l-0.181 0.194c-8.958 10.048-14.432 23.371-14.432 37.973 0 31.55 25.555 57.131 57.095 57.173l0.004 0h118.187c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM761.6 520.96c0-17.673-14.327-32-32-32v0h-17.067v-149.333c0.005-0.265 0.008-0.578 0.008-0.891 0-22.161-14.565-40.92-34.644-47.227l-0.351-0.095c-4.48-1.46-9.634-2.302-14.986-2.302-17.122 0-32.231 8.621-41.224 21.758l-0.11 0.171-109.227 161.28c-5.585 7.859-8.929 17.65-8.929 28.222 0 8.578 2.201 16.642 6.070 23.658l-0.128-0.253c8.18 15.698 24.12 26.351 42.596 26.878l0.070 0.002h96.853v28.16c-0.002 0.127-0.003 0.277-0.003 0.427 0 17.437 14.136 31.573 31.573 31.573 0.001 0 0.002-0 0.003-0l-0 0c0.001 0 0.002 0 0.003 0 17.523 0 31.757-14.085 31.997-31.551l0-0.023v-28.587h17.493c17.673-0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["support-24"]},"attrs":[{}],"properties":{"order":7456,"id":81,"name":"support-24","prevSize":32,"code":60139},"setIdx":0,"setId":0,"iconIdx":491},{"icon":{"paths":["M744.96 471.893h-465.92c-105.332-0-190.72-85.388-190.72-190.72h0c0.484-105.051 85.635-190.052 190.697-190.293l0.023-0h465.92c105.085 0.241 190.236 85.242 190.72 190.247l0 0.046c0 105.332-85.388 190.72-190.72 190.72v0zM640 281.173c0 58.439 47.374 105.813 105.813 105.813s105.813-47.374 105.813-105.813c0-58.439-47.374-105.813-105.813-105.813v0c-58.439 0-105.813 47.374-105.813 105.813v0zM745.813 616.96c71.871 0 130.133 58.263 130.133 130.133s-58.263 130.133-130.133 130.133v0h-466.773c-71.871 0-130.133-58.263-130.133-130.133s58.263-130.133 130.133-130.133v0h465.92zM744.96 556.373h-465.92c-2.692-0.136-5.846-0.213-9.018-0.213-105.332 0-190.72 85.388-190.72 190.72s85.388 190.72 190.72 190.72c3.172 0 6.326-0.077 9.46-0.231l-0.441 0.017h465.92c101.379-4.948 181.702-88.347 181.702-190.507s-80.323-185.559-181.26-190.489l-0.441-0.017zM209.067 753.493c-0.024 0.763-0.038 1.66-0.038 2.56 0 47.128 38.205 85.333 85.333 85.333s85.333-38.205 85.333-85.333c0-47.115-38.183-85.311-85.293-85.333l-0.002-0c-0.011-0-0.025-0-0.038-0-46.228 0-83.871 36.759-85.292 82.643l-0.003 0.131z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["switch"]},"attrs":[{}],"properties":{"order":7457,"id":80,"name":"switch","prevSize":32,"code":60140},"setIdx":0,"setId":0,"iconIdx":492},{"icon":{"paths":["M808.107 512c7.668 7.712 12.407 18.343 12.407 30.080s-4.74 22.368-12.409 30.082l0.002-0.002c-7.733 7.795-18.45 12.621-30.293 12.621s-22.56-4.826-30.291-12.618l-0.003-0.003-29.44-29.44-238.507 238.080c-11.111 11.074-26.441 17.92-43.369 17.92-6.764 0-13.272-1.093-19.358-3.112l0.434 0.125-96.427-32.427-162.56 162.987c-7.733 7.795-18.45 12.621-30.293 12.621s-22.56-4.826-30.291-12.618l-0.003-0.003c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 162.987-162.56-32.427-96.427c-1.894-5.652-2.987-12.16-2.987-18.924 0-16.929 6.847-32.259 17.922-43.371l-0.002 0.002 238.507-238.507-29.44-29.44c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002zM907.093 332.8l-213.333-216.32c-5.858-6.274-14.178-10.185-23.412-10.185-17.673 0-32 14.327-32 32 0 9.234 3.911 17.554 10.166 23.394l0.019 0.017 46.933 48.64-64 64 118.187 118.187 64-64 48.213 48.64c5.729 5.95 13.723 9.685 22.589 9.813l0.024 0c8.817-0.106 16.781-3.668 22.619-9.392l-0.005 0.005c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["syringe"]},"attrs":[{}],"properties":{"order":7458,"id":79,"name":"syringe","prevSize":32,"code":60141},"setIdx":0,"setId":0,"iconIdx":493},{"icon":{"paths":["M686.080 105.813h-122.027c0-23.564 19.103-42.667 42.667-42.667v0h153.6c0.016-0 0.035-0 0.053-0 23.564 0 42.667 19.103 42.667 42.667 0 0.75-0.019 1.496-0.058 2.237l0.004-0.104v27.307c-33.48-18.534-73.407-29.442-115.882-29.442-0.36 0-0.72 0.001-1.080 0.002l0.055-0zM938.667 361.813v341.333c0 0.010 0 0.023 0 0.036 0 139.885-112.196 253.565-251.508 255.961l-0.225 0.003h-349.013c-139.909-1.925-252.587-115.793-252.587-255.977 0-0.008 0-0.016 0-0.024l-0 0.001v-341.333c-0-0.007-0-0.015-0-0.023 0-140.185 112.677-254.052 252.405-255.975l0.181-0.002h226.133v240.64c-0.001 0.077-0.001 0.168-0.001 0.259 0 23.564 19.103 42.667 42.667 42.667 1.654 0 3.286-0.094 4.89-0.277l-0.196 0.018c7.547-0.933 14.346-3.51 20.234-7.364l-0.181 0.111 25.173-20.48c6.89-5.745 15.838-9.233 25.6-9.233s18.71 3.488 25.664 9.285l-0.064-0.052 24.747 20.48c6.807 4.8 15.273 7.673 24.41 7.673 15.181 0 28.511-7.929 36.073-19.871l0.103-0.175c3.677-5.996 6.245-13.069 7.225-20.639l0.028-0.267v-213.333c81.86 43.783 136.91 128.165 138.238 225.525l0.002 0.182zM310.187 532.48c-0.002 0.13-0.003 0.284-0.003 0.438 0 18.081 14.419 32.794 32.386 33.268l0.044 0.001h217.6c16.915-1.968 29.92-16.212 29.92-33.493s-13.006-31.526-29.763-33.478l-0.157-0.015h-218.88c-17.171 1.132-30.725 15.131-31.146 32.386l-0.001 0.041zM689.92 703.147c0.007-0.255 0.011-0.555 0.011-0.856 0-17.998-14.473-32.616-32.416-32.85l-0.022-0h-344.747c-16.915 1.968-29.92 16.212-29.92 33.493s13.006 31.526 29.763 33.478l0.157 0.015h344.747c18.003-0.185 32.527-14.822 32.527-32.852 0-0.902-0.036-1.795-0.108-2.678l0.008 0.116z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-book"]},"attrs":[{}],"properties":{"order":7459,"id":78,"name":"tablet-book","prevSize":32,"code":60142},"setIdx":0,"setId":0,"iconIdx":494},{"icon":{"paths":["M364.8 174.080v-42.667c-0-0.023-0-0.050-0-0.077 0-22.664 17.67-41.2 39.985-42.584l0.121-0.006h235.093c22.243 1.608 39.68 20.049 39.68 42.562 0 0.037-0 0.074-0 0.11l0-0.006v42.667c0 0.031 0 0.068 0 0.105 0 22.513-17.437 40.954-39.542 42.554l-0.138 0.008h-235.093c-22.436-1.39-40.107-19.926-40.107-42.59 0-0.027 0-0.054 0-0.081l-0 0.004zM896 393.813v308.053c0.021 1.152 0.033 2.51 0.033 3.872 0 125.436-100.612 227.373-225.539 229.512l-0.201 0.003h-315.733c-125.49-1.677-226.574-103.797-226.574-229.527 0-0.907 0.005-1.813 0.016-2.717l-0.001 0.138v-308.053c-0.019-1.107-0.030-2.413-0.030-3.721 0-114.453 83.454-209.414 192.83-227.352l1.334-0.181v10.24c-0 0.011-0 0.025-0 0.038 0 46.228 36.759 83.871 82.643 85.292l0.131 0.003h235.093c45.826-1.655 82.347-39.203 82.347-85.281 0-0.018-0-0.037-0-0.055l0 0.003v-7.253c100.696 26.836 173.665 117.211 173.665 224.629 0 0.829-0.004 1.657-0.013 2.484l0.001-0.126zM629.76 618.24l-63.147-61.013 58.88-64.853c7.509-6.304 12.248-15.696 12.248-26.194 0-7.649-2.516-14.711-6.766-20.402l0.064 0.090c-5.993-7.384-15.068-12.064-25.236-12.064-11.102 0-20.901 5.579-26.746 14.087l-0.071 0.11-58.88 64-61.867-61.013c-5.677-8.321-15.114-13.712-25.81-13.712-7.18 0-13.793 2.43-19.061 6.512l0.071-0.053c-7.954 6.225-13.018 15.827-13.018 26.611 0 7.298 2.319 14.054 6.261 19.572l-0.070-0.102c2.467 3.375 5.437 6.21 8.833 8.454l0.127 0.079 61.013 58.453-59.307 67.413c-5.76 6.036-9.305 14.231-9.305 23.253s3.545 17.217 9.318 23.267l-0.013-0.013c5.491 5.535 13.099 8.961 21.509 8.961 0.088 0 0.177-0 0.265-0.001l-0.014 0c9.344 0 17.727-4.115 23.436-10.631l0.031-0.036 58.453-64.427 62.293 61.44c5.663 5.733 13.5 9.308 22.172 9.387l0.015 0c9.21-0.011 17.456-4.131 23.005-10.625l0.035-0.042c5.858-5.993 9.472-14.201 9.472-23.253s-3.614-17.26-9.478-23.26l0.006 0.006z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-delete"]},"attrs":[{}],"properties":{"order":7460,"id":77,"name":"tablet-delete","prevSize":32,"code":60143},"setIdx":0,"setId":0,"iconIdx":495},{"icon":{"paths":["M364.8 174.080v-42.667c-0-0.023-0-0.050-0-0.077 0-22.664 17.67-41.2 39.985-42.584l0.121-0.006h235.093c22.243 1.608 39.68 20.049 39.68 42.562 0 0.037-0 0.074-0 0.11l0-0.006v42.667c0 0.031 0 0.068 0 0.105 0 22.513-17.437 40.954-39.542 42.554l-0.138 0.008h-235.093c-22.436-1.39-40.107-19.926-40.107-42.59 0-0.027 0-0.054 0-0.081l-0 0.004zM896 393.813v308.053c0.021 1.152 0.033 2.51 0.033 3.872 0 125.436-100.612 227.373-225.539 229.512l-0.201 0.003h-315.733c-125.49-1.677-226.574-103.797-226.574-229.527 0-0.907 0.005-1.813 0.016-2.717l-0.001 0.138v-308.053c-0.019-1.107-0.030-2.413-0.030-3.721 0-114.453 83.454-209.414 192.83-227.352l1.334-0.181v10.24c-0 0.011-0 0.025-0 0.038 0 46.228 36.759 83.871 82.643 85.292l0.131 0.003h235.093c45.826-1.655 82.347-39.203 82.347-85.281 0-0.018-0-0.037-0-0.055l0 0.003v-7.253c100.696 26.836 173.665 117.211 173.665 224.629 0 0.829-0.004 1.657-0.013 2.484l0.001-0.126zM662.187 661.76l-2.56-173.227c0-0.001 0-0.002 0-0.003 0-18.144-14.709-32.853-32.853-32.853-0.15 0-0.3 0.001-0.449 0.003l0.023-0c-18.245 0.477-32.853 15.38-32.853 33.696 0 0.004 0 0.008 0 0.011l-0-0.001v104.533l-179.2-138.24c-5.768-4.719-13.217-7.578-21.333-7.578-18.677 0-33.818 15.141-33.818 33.818 0 10.561 4.841 19.991 12.424 26.192l0.060 0.048 176.213 136.533-91.733 18.773c-15.162 3.506-26.293 16.894-26.293 32.881 0 2.407 0.252 4.755 0.732 7.019l-0.039-0.22c3.096 15.187 16.344 26.454 32.224 26.454 0.071 0 0.142-0 0.214-0.001l-0.011 0h6.827l162.56-33.707 4.693-2.133h3.84c4.113-2.348 7.631-5.186 10.635-8.498l0.032-0.036s0 0 0 0c1.645-2.574 3.087-5.535 4.176-8.661l0.091-0.299s0-2.987 0-4.693 6.4-7.68 6.4-9.813z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-down"]},"attrs":[{}],"properties":{"order":7461,"id":76,"name":"tablet-down","prevSize":32,"code":60144},"setIdx":0,"setId":0,"iconIdx":496},{"icon":{"paths":["M364.8 174.080v-42.667c-0-0.023-0-0.050-0-0.077 0-22.664 17.67-41.2 39.985-42.584l0.121-0.006h235.093c22.243 1.608 39.68 20.049 39.68 42.562 0 0.037-0 0.074-0 0.11l0-0.006v42.667c0 0.031 0 0.068 0 0.105 0 22.513-17.437 40.954-39.542 42.554l-0.138 0.008h-235.093c-22.436-1.39-40.107-19.926-40.107-42.59 0-0.027 0-0.054 0-0.081l-0 0.004zM896 393.813v308.053c0.021 1.152 0.033 2.51 0.033 3.872 0 125.436-100.612 227.373-225.539 229.512l-0.201 0.003h-315.733c-125.49-1.677-226.574-103.797-226.574-229.527 0-0.907 0.005-1.813 0.016-2.717l-0.001 0.138v-308.053c-0.019-1.107-0.030-2.413-0.030-3.721 0-114.453 83.454-209.414 192.83-227.352l1.334-0.181v10.24c-0 0.011-0 0.025-0 0.038 0 46.228 36.759 83.871 82.643 85.292l0.131 0.003h235.093c45.826-1.655 82.347-39.203 82.347-85.281 0-0.018-0-0.037-0-0.055l0 0.003v-7.253c100.696 26.836 173.665 117.211 173.665 224.629 0 0.829-0.004 1.657-0.013 2.484l0.001-0.126zM377.6 557.227l101.547 125.44c5.82 7.040 14.547 11.498 24.316 11.52l0.004 0c10.162-0.070 19.142-5.063 24.685-12.711l0.062-0.089 139.093-187.307c3.189-5.095 5.081-11.285 5.081-17.917 0-9.735-4.075-18.518-10.613-24.736l-0.014-0.014c-5.006-3.488-11.216-5.574-17.913-5.574-10.003 0-18.919 4.652-24.704 11.91l-0.049 0.064-115.2 154.88-77.227-95.573c-5.828-6.848-14.455-11.164-24.090-11.164-6.983 0-13.437 2.267-18.665 6.105l0.088-0.062c-7.571 6.228-12.361 15.598-12.361 26.087 0 7.157 2.23 13.792 6.034 19.25l-0.073-0.11z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-ok"]},"attrs":[{}],"properties":{"order":7462,"id":75,"name":"tablet-ok","prevSize":32,"code":60145},"setIdx":0,"setId":0,"iconIdx":497},{"icon":{"paths":["M640 213.333h-235.093c-22.436-1.39-40.107-19.926-40.107-42.59 0-0.027 0-0.054 0-0.081l-0 0.004v-42.667c-0-0.023-0-0.050-0-0.077 0-22.664 17.67-41.2 39.985-42.584l0.121-0.006h235.093c22.243 1.608 39.68 20.049 39.68 42.562 0 0.037-0 0.074-0 0.11l0-0.006v42.667c0 0.031 0 0.068 0 0.105 0 22.513-17.437 40.954-39.542 42.554l-0.138 0.008zM896 392.107v308.053c0.016 1.025 0.026 2.234 0.026 3.445 0 125.67-100.8 227.796-225.958 229.939l-0.201 0.003h-315.307c-125.534-1.922-226.56-104.137-226.56-229.948 0-0.159 0-0.318 0-0.477l-0 0.025v-308.053c-0.019-1.088-0.029-2.372-0.029-3.659 0-114.368 83.485-209.238 192.838-226.991l1.324-0.177v9.813c-0 0.016-0 0.034-0 0.052 0 46.078 36.521 83.626 82.196 85.277l0.151 0.004h235.52c45.826-1.655 82.347-39.203 82.347-85.281 0-0.018-0-0.037-0-0.055l0 0.003v-6.827c100.65 26.512 173.668 116.713 173.668 223.969 0 0.911-0.005 1.821-0.016 2.729l0.001-0.138zM549.547 667.307c0.002-0.13 0.003-0.284 0.003-0.438 0-17.845-14.228-32.368-31.959-32.841l-0.044-0.001h-194.56c-16.69 1.954-29.518 16.012-29.518 33.067s12.828 31.113 29.362 33.052l0.156 0.015h194.56c17.115-0.644 30.885-14.117 31.995-31.047l0.005-0.099zM720.213 514.133c0.002-0.14 0.003-0.305 0.003-0.471 0-17.545-13.754-31.878-31.068-32.806l-0.083-0.004h-366.080c-16.69 1.954-29.518 16.012-29.518 33.067s12.828 31.113 29.362 33.052l0.156 0.015h364.373c17.726-0.239 32.003-14.664 32.003-32.424 0-0.151-0.001-0.302-0.003-0.452l0 0.023v-2.133z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-text-down"]},"attrs":[{}],"properties":{"order":7463,"id":74,"name":"tablet-text-down","prevSize":32,"code":60146},"setIdx":0,"setId":0,"iconIdx":498},{"icon":{"paths":["M364.8 174.080v-42.667c-0-0.031-0-0.068-0-0.105 0-22.513 17.437-40.954 39.542-42.554l0.138-0.008h235.52c22.243 1.608 39.68 20.049 39.68 42.562 0 0.037-0 0.074-0 0.11l0-0.006v42.667c0.052 0.768 0.082 1.664 0.082 2.567 0 21.879-17.519 39.666-39.295 40.099l-0.040 0.001h-235.52c-22.436-1.39-40.107-19.926-40.107-42.59 0-0.027 0-0.054 0-0.081l-0 0.004zM896 395.093v308.907c0.017 1.035 0.026 2.256 0.026 3.479 0 125.777-100.412 228.1-225.447 231.182l-0.286 0.006h-315.733c-125.645-2.382-226.586-104.797-226.586-230.788 0-1.214 0.009-2.425 0.028-3.635l-0.002 0.182v-309.333c-0.016-1.019-0.025-2.222-0.025-3.427 0-114.383 83.198-209.334 192.38-227.639l1.352-0.187v10.24c-0 47.128 38.205 85.333 85.333 85.333v0h232.96c46.014-1.424 82.773-39.067 82.773-85.295 0-0.014-0-0.027-0-0.041l0 0.002v-6.827c100.504 27.146 173.241 117.502 173.241 224.847 0 0.902-0.005 1.804-0.015 2.704l0.001-0.137zM290.987 514.56c-0.002 0.13-0.003 0.284-0.003 0.438 0 17.845 14.228 32.368 31.959 32.841l0.044 0.001h194.987c17.729-0.234 32.011-14.661 32.011-32.424 0-0.301-0.004-0.601-0.012-0.9l0.001 0.044c0.007-0.254 0.011-0.553 0.011-0.853 0-17.673-14.327-32-32-32-0.004 0-0.008 0-0.012 0l-196.266-0c-17.161 0.93-30.723 15.072-30.723 32.382 0 0.166 0.001 0.331 0.004 0.496l-0-0.025zM717.653 668.16c0-0.001 0-0.002 0-0.003 0-17.994-14.467-32.61-32.404-32.85l-0.023-0h-363.52c-16.69 1.954-29.518 16.012-29.518 33.067s12.828 31.113 29.362 33.052l0.156 0.015h365.653c0.007 0 0.016 0 0.024 0 18.166 0 32.975-14.37 33.68-32.363l0.002-0.064z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-text-up"]},"attrs":[{}],"properties":{"order":7464,"id":73,"name":"tablet-text-up","prevSize":32,"code":60147},"setIdx":0,"setId":0,"iconIdx":499},{"icon":{"paths":["M684.8 128v42.667c0 23.564-19.103 42.667-42.667 42.667v0h-241.493c-23.564 0-42.667-19.103-42.667-42.667v0-42.667c0-23.564 19.103-42.667 42.667-42.667v0h242.347c23.194 0.479 41.813 19.394 41.813 42.658 0 0.003-0 0.006-0 0.009l0-0zM727.467 163.84v6.827c0 47.128-38.205 85.333-85.333 85.333v0h-241.493c-47.128 0-85.333-38.205-85.333-85.333v0-11.093c-114.654 16.448-201.859 113.823-202.24 231.64l-0 0.040v312.32c0 129.838 105.255 235.093 235.093 235.093v0h327.68c129.838 0 235.093-105.255 235.093-235.093v0-312.32c-0.132-110.811-76.908-203.653-180.159-228.37l-1.601-0.324zM650.667 678.4c-5.906 6.921-14.638 11.281-24.387 11.281-6.841 0-13.18-2.146-18.381-5.803l0.102 0.068-178.347-137.813v104.533c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-170.667c0.185-12.68 7.526-23.603 18.157-28.927l0.19-0.086 6.4-2.56 160-38.827c1.154-0.201 2.484-0.316 3.84-0.316s2.686 0.115 3.979 0.336l-0.139-0.020c16.983 0.862 30.427 14.841 30.427 31.961 0 14.529-9.683 26.797-22.947 30.702l-0.226 0.057-96 22.613 177.067 137.387c7.65 5.907 12.529 15.081 12.529 25.394 0 7.331-2.465 14.086-6.611 19.481l0.056-0.076z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet-up"]},"attrs":[{}],"properties":{"order":7465,"id":72,"name":"tablet-up","prevSize":32,"code":60148},"setIdx":0,"setId":0,"iconIdx":500},{"icon":{"paths":["M721.92 85.333h-419.84c-72.578 0-131.413 58.836-131.413 131.413v0 590.507c0 72.578 58.836 131.413 131.413 131.413v0h419.84c72.578 0 131.413-58.836 131.413-131.413v0-590.507c0-72.578-58.836-131.413-131.413-131.413v0zM512 823.467c-41.237 0-74.667-33.429-74.667-74.667s33.429-74.667 74.667-74.667c41.237 0 74.667 33.429 74.667 74.667v0c0 41.237-33.429 74.667-74.667 74.667v0zM594.773 268.8h-165.547c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h165.547c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tablet"]},"attrs":[{}],"properties":{"order":7466,"id":71,"name":"tablet","prevSize":32,"code":60149},"setIdx":0,"setId":0,"iconIdx":501},{"icon":{"paths":["M760.747 160h-345.6c-0.109-0-0.238-0-0.367-0-52.956 0-100.495 23.191-133.016 59.971l-0.164 0.189-153.6 171.947c-27.466 31.158-44.231 72.321-44.231 117.4 0 46.427 17.782 88.7 46.907 120.381l-0.116-0.128 163.413 176.64c32.701 35.467 79.395 57.606 131.26 57.606 0.504 0 1.007-0.002 1.51-0.006l-0.077 0.001h335.787c97.526-0.965 176.213-80.249 176.213-177.912 0-0.003-0-0.006-0-0.009l0 0v-348.16c0-98.263-79.657-177.92-177.92-177.92v0zM698.88 586.667c5.782 5.789 9.359 13.784 9.359 22.613s-3.576 16.824-9.359 22.614l0-0c-5.459 5.787-13.18 9.39-21.742 9.39-0.156 0-0.312-0.001-0.468-0.004l0.024 0c-9.037-0.058-17.188-3.804-23.033-9.806l-0.007-0.007-75.947-78.080-76.373 78.080c-5.741 5.887-13.751 9.539-22.613 9.539s-16.872-3.652-22.607-9.532l-0.006-0.007c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0 77.227-78.933-78.507-80.64c-5.782-5.789-9.359-13.784-9.359-22.613s3.576-16.824 9.359-22.614l-0 0c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0 76.373 77.653 76.373-75.093c5.214-3.837 11.763-6.141 18.849-6.141 17.673 0 32 14.327 32 32 0 6.222-1.776 12.029-4.848 16.942l0.078-0.134-77.227 79.36z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tag-cross"]},"attrs":[{}],"properties":{"order":7467,"id":70,"name":"tag-cross","prevSize":32,"code":60150},"setIdx":0,"setId":0,"iconIdx":502},{"icon":{"paths":["M544.853 194.56v-77.227c0-16.495-13.372-29.867-29.867-29.867s-29.867 13.372-29.867 29.867l-0-0v77.227c-148.97 12.815-265.329 135.839-267.518 286.502l-0.002 0.218v325.973c-0 0.008-0 0.017-0 0.026 0 70.692 57.308 128 128 128 0.9 0 1.798-0.009 2.694-0.028l-0.134 0.002h334.507c0.762 0.016 1.66 0.026 2.56 0.026 70.692 0 128-57.308 128-128 0-0.009-0-0.018-0-0.027l0 0.001v-325.973c-2.233-151.152-119.037-274.328-267.316-286.649l-1.057-0.071zM485.12 262.4v36.267c0 16.495 13.372 29.867 29.867 29.867s29.867-13.372 29.867-29.867v0-36.267c20.209 10.079 33.898 30.506 34.133 54.155l0 0.031c0 35.346-28.654 64-64 64s-64-28.654-64-64v0c0.129-23.711 13.859-44.184 33.779-54.028l0.354-0.158zM563.627 805.547v26.88c-0.236 9.95-8.357 17.925-18.342 17.925-0.152 0-0.303-0.002-0.454-0.006l0.022 0h-25.6c-0.127 0.003-0.277 0.005-0.427 0.005-9.897 0-17.92-8.023-17.92-17.92 0-0.002 0-0.004 0-0.005l-0 0v-26.027c-25.79-5.648-48.272-17.296-66.735-33.43l0.175 0.15c-3.724-3.299-6.059-8.093-6.059-13.433 0-3.744 1.148-7.22 3.112-10.095l-0.040 0.062 16.64-24.32c3.043-3.953 7.559-6.643 12.712-7.245l0.088-0.008c0.785-0.111 1.691-0.175 2.613-0.175 4.493 0 8.633 1.51 11.941 4.049l-0.047-0.034c14.118 13.3 32.839 21.852 53.534 23.030l0.226 0.010c25.6 0 28.587-12.8 28.587-24.32 0-19.627-16.213-29.013-44.8-42.667s-73.813-36.267-73.813-89.173c-0.002-0.217-0.003-0.473-0.003-0.729 0-38.771 25.857-71.503 61.266-81.892l0.603-0.152v-27.307c-0-0.002-0-0.003-0-0.005 0-9.897 8.023-17.92 17.92-17.92 0.15 0 0.3 0.002 0.449 0.006l-0.022-0h25.6c0.128-0.003 0.28-0.005 0.432-0.005 9.984 0 18.106 7.975 18.341 17.903l0 0.022v26.453c21.832 6.149 40.46 17.733 54.98 33.216l0.060 0.064c2.948 3.184 4.757 7.461 4.757 12.16s-1.809 8.976-4.768 12.172l0.011-0.012-18.773 20.053c-3.454 3.36-8.050 5.562-13.152 5.969l-0.075 0.005c-0.372 0.028-0.806 0.044-1.243 0.044-4.851 0-9.24-1.974-12.409-5.163l-0.001-0.001c-9.363-11.138-23.255-18.207-38.803-18.346l-0.024-0c-0.9-0.135-1.939-0.211-2.996-0.211-11.782 0-21.333 9.551-21.333 21.333 0 0.224 0.003 0.448 0.010 0.671l-0.001-0.033c0 14.080 12.373 21.333 40.533 34.56s78.507 37.12 78.507 97.28c0.050 1.089 0.078 2.367 0.078 3.651 0 40.039-27.576 73.638-64.772 82.84l-0.586 0.123z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tag"]},"attrs":[{}],"properties":{"order":7468,"id":69,"name":"tag","prevSize":32,"code":60151},"setIdx":0,"setId":0,"iconIdx":503},{"icon":{"paths":["M785.493 619.52v136.107c0.001 0.153 0.001 0.334 0.001 0.515 0 60.755-37.348 112.787-90.338 134.388l-0.97 0.35-122.88 47.787c-15.913 6.576-34.391 10.395-53.76 10.395s-37.847-3.819-54.721-10.744l0.961 0.349-132.693-49.493c-54.658-21.761-92.587-74.217-92.587-135.533 0-0.052 0-0.103 0-0.155l-0 0.008v-131.84l162.56 107.947c31.545 21.484 70.489 34.303 112.427 34.303s80.882-12.819 113.127-34.753l-0.701 0.45zM849.92 266.24l-270.080-170.667c-20.799-13.263-46.152-21.139-73.345-21.139-28.84 0-55.611 8.859-77.74 24.004l0.472-0.305-258.56 174.507c-36.77 24.941-60.613 66.539-60.613 113.707s23.843 88.766 60.134 113.4l0.479 0.307 264.96 176.213c21.525 14.752 48.134 23.559 76.8 23.559s55.275-8.807 77.269-23.862l-0.469 0.303 256-174.933v133.973c0 17.673 14.327 32 32 32s32-14.327 32-32v0-222.293c2.335-9.466 3.674-20.332 3.674-31.512 0-48.163-24.861-90.52-62.45-114.938l-0.531-0.324z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["teacher"]},"attrs":[{}],"properties":{"order":7469,"id":68,"name":"teacher","prevSize":32,"code":60152},"setIdx":0,"setId":0,"iconIdx":504},{"icon":{"paths":["M134.827 298.667c-4.804-5.992-7.709-13.686-7.709-22.058 0-11.521 5.502-21.757 14.021-28.224l0.088-0.064c3.413-2.56 354.133-262.827 738.133 0 9.564 6.441 15.771 17.229 15.771 29.466 0 7.852-2.555 15.106-6.879 20.978l0.069-0.098c-6.737 9.348-17.594 15.363-29.856 15.363-0.154 0-0.307-0.001-0.46-0.003l0.023 0c-7.943-0.005-15.326-2.393-21.476-6.489l0.142 0.089c-90.462-64.56-203.276-103.222-325.12-103.222s-234.658 38.663-326.842 104.389l1.722-1.167c-5.935 4.111-13.288 6.568-21.214 6.568-12.464 0-23.509-6.073-30.338-15.421l-0.074-0.106zM718.933 489.387c0.095 0.001 0.207 0.001 0.319 0.001 12.204 0 23.049-5.823 29.907-14.842l0.067-0.092c3.443-5.365 5.489-11.912 5.489-18.937 0-11.855-5.825-22.35-14.77-28.777l-0.106-0.072c-63.986-44.757-143.428-71.518-229.12-71.518s-165.134 26.761-230.425 72.381l1.305-0.863c-8.686 6.356-14.264 16.513-14.264 27.972 0 8.361 2.969 16.029 7.91 22.006l-0.047-0.058c6.939 8.495 17.413 13.875 29.145 13.875 8.475 0 16.294-2.808 22.578-7.544l-0.096 0.069c51.776-36.204 116.053-57.849 185.387-57.849s133.611 21.646 186.444 58.549l-1.057-0.699c5.708 4.011 12.801 6.411 20.455 6.411 0.309 0 0.616-0.004 0.923-0.012l-0.045 0.001zM406.613 612.693c-6.488 6.421-10.505 15.328-10.505 25.173s4.017 18.752 10.502 25.17l0.003 0.003c6.901 7.057 16.519 11.433 27.158 11.433 9.546 0 18.269-3.522 24.941-9.338l-0.045 0.039c14.513-13.293 33.932-21.439 55.253-21.439s40.74 8.146 55.315 21.494l-0.061-0.055c6.351 5.207 14.523 8.406 23.439 8.533l0.028 0c0.161 0.003 0.35 0.004 0.54 0.004 11.179 0 21.203-4.941 28.009-12.759l0.038-0.045c5.318-6.104 8.56-14.138 8.56-22.929 0-11.078-5.149-20.953-13.183-27.364l-0.070-0.054c-27.554-24.242-63.933-39.035-103.768-39.035-40.959 0-78.265 15.641-106.271 41.276l0.119-0.107zM858.027 818.347h-669.867c-19.794 0-35.84 16.046-35.84 35.84s16.046 35.84 35.84 35.84h669.867c19.794 0 35.84-16.046 35.84-35.84s-16.046-35.84-35.84-35.84h-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tech-wifi"]},"attrs":[{}],"properties":{"order":7470,"id":67,"name":"tech-wifi","prevSize":32,"code":60153},"setIdx":0,"setId":0,"iconIdx":505},{"icon":{"paths":["M310.187 370.347c22.093 21.755 38.141 49.59 45.431 80.792l0.222 1.128c-23.313 10.788-50.595 17.080-79.347 17.080-106.51 0-192.853-86.343-192.853-192.853s86.343-192.853 192.853-192.853c106.51 0 192.853 86.343 192.853 192.853 0 28.752-6.292 56.034-17.574 80.546l0.495-1.198c-32.33-7.512-60.165-23.56-81.899-45.632l-0.021-0.021-29.013-29.44s0 0 0-3.413c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64v0h3.413zM341.333 743.253s0 0 0 3.413c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64v0h3.413l29.44-29.44c22.028-21.646 38.062-49.325 45.427-80.36l0.227-1.133c-23.313-10.788-50.595-17.080-79.347-17.080-106.51 0-192.853 86.343-192.853 192.853s86.343 192.853 192.853 192.853c106.51 0 192.853-86.343 192.853-192.853 0-28.752-6.292-56.034-17.574-80.546l0.495 1.198c-32.33 7.512-60.165 23.56-81.899 45.632l-0.021 0.021zM682.667 280.747s0 0 0-3.413c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64v0h-3.413l-29.44 29.44c-22.093 21.755-38.141 49.59-45.431 80.792l-0.222 1.128c23.377 10.856 50.743 17.188 79.588 17.188 106.51 0 192.853-86.343 192.853-192.853s-86.343-192.853-192.853-192.853c-106.51 0-192.853 86.343-192.853 192.853 0 28.545 6.202 55.642 17.332 80.017l-0.493-1.205c32.33-7.512 60.165-23.56 81.899-45.632l0.021-0.021zM746.667 554.667c-28.469 0.096-55.448 6.374-79.698 17.559l1.191-0.493c7.512 32.33 23.56 60.165 45.632 81.899l0.021 0.021 29.44 29.44h3.413c35.346 0.001 63.999 28.654 63.999 64s-28.654 64-64 64c-35.346 0-64-28.654-64-64 0-0.15 0.001-0.3 0.002-0.45l-0 0.023s0-2.133 0-3.413l-29.44-29.44c-21.755-22.093-49.59-38.141-80.792-45.431l-1.128-0.222c-10.602 23.078-16.784 50.071-16.784 78.507 0 106.039 85.961 192 192 192s192-85.961 192-192c0-105.988-85.879-191.918-191.848-192l-0.008-0zM668.16 571.733c-0.895-3.017-1.785-6.902-2.466-10.858l-0.094-0.662c-2.037-14.483-3.2-31.212-3.2-48.213s1.163-33.731 3.414-50.114l-0.214 1.901c0.775-4.618 1.665-8.503 2.752-12.306l-0.192 0.786c-42.976-19.724-76.703-53.451-95.932-95.228l-0.495-1.198-11.52 2.56c-14.483 2.037-31.212 3.2-48.213 3.2s-33.731-1.163-50.114-3.414l1.901 0.214-11.52-2.56c-19.724 42.976-53.451 76.703-95.228 95.932l-1.198 0.495c0.895 3.017 1.785 6.902 2.466 10.858l0.094 0.662c2.037 14.483 3.2 31.212 3.2 48.213s-1.163 33.731-3.414 50.114l0.214-1.901c-0.775 4.618-1.665 8.503-2.752 12.306l0.192-0.786c42.976 19.724 76.703 53.451 95.932 95.228l0.495 1.198 11.52-2.56c14.483-2.037 31.212-3.2 48.213-3.2s33.731 1.163 50.114 3.414l-1.901-0.214 11.52 2.56c19.724-42.976 53.451-76.703 95.228-95.932l1.198-0.495z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["technology-2"]},"attrs":[{}],"properties":{"order":7471,"id":66,"name":"technology-2","prevSize":32,"code":60154},"setIdx":0,"setId":0,"iconIdx":506},{"icon":{"paths":["M331.947 266.667c0.243-99.257 80.762-179.627 180.053-179.627 99.441 0 180.053 80.613 180.053 180.053s-80.612 180.053-180.053 180.053l0-0c-0 0-0 0-0.001 0-99.441 0-180.053-80.613-180.053-180.053 0-0.15 0-0.3 0.001-0.45l-0 0.023zM409.173 459.093v66.987c-0 0.048-0 0.104-0 0.161 0 14.99 8.589 27.974 21.114 34.299l0.22 0.101 64 32c5.078 2.69 11.101 4.269 17.493 4.269s12.415-1.579 17.7-4.369l-0.207 0.1 64-32c12.745-6.426 21.334-19.409 21.334-34.399 0-0.057-0-0.113-0-0.17l0 0.009v-66.987c-29.781 16.123-65.197 25.6-102.827 25.6s-73.045-9.477-103.991-26.175l1.164 0.574zM760.747 544.427c-93.641 22.618-169.889 83.638-212.484 165.045l-0.849 1.781v-85.333c-10.074 5.117-21.967 8.115-34.56 8.115s-24.486-2.998-35.004-8.318l0.444 0.204v85.333c-43.445-83.189-119.692-144.209-211.123-166.374l-2.21-0.453c-4.005-1.043-8.603-1.641-13.34-1.641-30.398 0-55.040 24.642-55.040 55.040 0 4.364 0.508 8.61 1.468 12.681l-0.074-0.373c32.105 131.615 141.72 230.431 276.687 246.046l1.5 0.141v39.68c0 19.794 16.046 35.84 35.84 35.84s35.84-16.046 35.84-35.84v0-37.973c136.467-15.756 246.081-114.572 277.729-243.974l0.457-2.213c1.099-4.109 1.73-8.826 1.73-13.691 0-30.398-24.642-55.040-55.040-55.040-4.242 0-8.373 0.48-12.34 1.389l0.37-0.071z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["technology-3"]},"attrs":[{}],"properties":{"order":7472,"id":65,"name":"technology-3","prevSize":32,"code":60155},"setIdx":0,"setId":0,"iconIdx":507},{"icon":{"paths":["M559.787 364.373v-60.587h95.573l131.413-107.947c-0.1-1.467-0.158-3.18-0.158-4.907s0.057-3.439 0.17-5.137l-0.012 0.23c0-40.295 32.665-72.96 72.96-72.96s72.96 32.665 72.96 72.96v-0c-0.937 38.861-32.661 70.006-71.66 70.006-0.757 0-1.511-0.012-2.263-0.035l0.11 0.003c-13.648-0.122-26.424-3.746-37.507-10.015l0.387 0.201-134.827 110.933c-5.367 4.512-12.354 7.253-19.981 7.253-0.026 0-0.051-0-0.077-0l0.004 0zM325.547 503.040c1.907-110.462 91.901-199.276 202.638-199.276 1.060 0 2.118 0.008 3.175 0.024l-0.159-0.002h28.587v-218.453h-71.68c-0.256-0.004-0.557-0.007-0.86-0.007-30.807 0-55.837 24.735-56.313 55.429l-0.001 0.045v48.213c-28.21 7.875-52.716 17.913-75.713 30.382l1.899-0.942-34.987-33.707c-10.492-10.109-24.786-16.336-40.533-16.336s-30.041 6.227-40.551 16.354l0.018-0.017-51.2 49.493c-10.4 9.96-16.864 23.959-16.864 39.467s6.464 29.506 16.844 39.448l0.020 0.019 34.56 33.707c-12.044 20.454-22.358 44.090-29.72 68.993l-0.573 2.261h-49.493c-0.129-0.001-0.281-0.002-0.433-0.002-31.041 0-56.261 24.923-56.74 55.85l-0.001 0.045v69.973c0.48 30.972 25.699 55.895 56.74 55.895 0.152 0 0.304-0.001 0.456-0.002l-0.023 0h49.493c7.935 27.163 18.249 50.799 31.11 72.762l-0.817-1.509-34.56 33.707c-10.4 9.96-16.864 23.959-16.864 39.467s6.464 29.506 16.844 39.448l0.020 0.019 51.2 49.493c10.492 10.109 24.786 16.336 40.533 16.336s30.041-6.227 40.551-16.354l-0.018 0.017 34.987-33.707c21.096 11.527 45.603 21.564 71.275 28.826l2.538 0.614v48.213c0.477 30.738 25.507 55.473 56.314 55.473 0.302 0 0.604-0.002 0.905-0.007l-0.046 0.001h71.68v-230.827h-28.587c-0.899 0.014-1.96 0.023-3.023 0.023-110.587 0-200.487-88.574-202.628-198.649l-0.003-0.2zM388.267 503.040c2.132 76.099 64.331 136.977 140.748 136.977 0.768 0 1.535-0.006 2.301-0.018l-0.116 0.001h28.587v-72.533c-1.579 0.136-3.417 0.213-5.273 0.213-36.053 0-65.28-29.227-65.28-65.28s29.227-65.28 65.28-65.28c1.856 0 3.694 0.077 5.511 0.229l-0.238-0.016v-72.96h-28.587c-0.639-0.010-1.394-0.016-2.149-0.016-77.017 0-139.592 61.837-140.783 138.571l-0.001 0.112zM857.6 734.293c-0.091-0-0.199-0.001-0.307-0.001-15.904 0-30.613 5.119-42.569 13.799l0.21-0.145-115.627-98.987c-5.501-4.773-12.731-7.681-20.641-7.681-0.094 0-0.187 0-0.28 0.001l0.014-0h-118.613v60.587h108.373l117.76 100.693v2.133c-0.029 0.763-0.045 1.66-0.045 2.56 0 40.295 32.665 72.96 72.96 72.96s72.96-32.665 72.96-72.96c0-40.279-32.64-72.934-72.913-72.96l-0.002-0zM554.667 503.467c0.165 6.32 2.388 12.091 6.019 16.7l-0.046-0.060v48.64c0.16 0.001 0.35 0.002 0.539 0.002 25.123 0 46.974-14.008 58.168-34.64l0.173-0.349h185.6c12.333 16.641 31.906 27.31 53.972 27.31 0.226 0 0.451-0.001 0.676-0.003l-0.034 0c1.579 0.136 3.417 0.213 5.273 0.213 36.053 0 65.28-29.227 65.28-65.28s-29.227-65.28-65.28-65.28c-1.856 0-3.694 0.077-5.511 0.229l0.238-0.016c-0.217-0.003-0.473-0.004-0.729-0.004-28.246 0-52.41 17.483-62.259 42.218l-0.159 0.452h-177.92c-11.367-20.98-33.218-34.989-58.341-34.989-0.19 0-0.379 0.001-0.568 0.002l0.029-0v48.64c-3.203 4.509-5.12 10.126-5.12 16.191 0 0.008 0 0.016 0 0.024l-0-0.001z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["technology-4"]},"attrs":[{}],"properties":{"order":7473,"id":64,"name":"technology-4","prevSize":32,"code":60156},"setIdx":0,"setId":0,"iconIdx":508},{"icon":{"paths":["M905.813 567.040h-92.16v-110.080h92.16c16.69-1.954 29.518-16.012 29.518-33.067s-12.828-31.113-29.362-33.052l-0.156-0.015h-92.16v-55.040c-0.962-67.834-56.176-122.454-124.148-122.454-0.154 0-0.308 0-0.462 0.001l0.024-0h-55.893v-95.147c-1.954-16.69-16.012-29.518-33.067-29.518s-31.113 12.828-33.052 29.362l-0.015 0.156v95.147h-110.080v-95.147c-1.954-16.69-16.012-29.518-33.067-29.518s-31.113 12.828-33.052 29.362l-0.015 0.156v95.147h-55.893c-0.13-0-0.284-0.001-0.438-0.001-67.972 0-123.187 54.62-124.147 122.364l-0.001 0.090v55.040h-92.16c-16.69 1.954-29.518 16.012-29.518 33.067s12.828 31.113 29.362 33.052l0.156 0.015h92.16v110.080h-92.16c-16.69 1.954-29.518 16.012-29.518 33.067s12.828 31.113 29.362 33.052l0.156 0.015h92.16v57.173c0 68.807 55.779 124.587 124.587 124.587v0h55.893v90.88c1.954 16.69 16.012 29.518 33.067 29.518s31.113-12.828 33.052-29.362l0.015-0.156v-90.88h110.080v90.88c1.954 16.69 16.012 29.518 33.067 29.518s31.113-12.828 33.052-29.362l0.015-0.156v-90.88h55.893c68.807 0 124.587-55.779 124.587-124.587v-57.173h92.16c16.69-1.954 29.518-16.012 29.518-33.067s-12.828-31.113-29.362-33.052l-0.156-0.015zM661.76 602.453c0 0.004 0 0.008 0 0.013 0 34.875-28.272 63.147-63.147 63.147-0.45 0-0.899-0.005-1.347-0.014l0.067 0.001h-179.627c-34.875 0-63.147-28.272-63.147-63.147v0-180.907c0-34.875 28.272-63.147 63.147-63.147v0h179.627c34.875 0 63.147 28.272 63.147 63.147v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["technology"]},"attrs":[{}],"properties":{"order":7474,"id":63,"name":"technology","prevSize":32,"code":60157},"setIdx":0,"setId":0,"iconIdx":509},{"icon":{"paths":["M650.667 106.667h-96v42.667c0 23.564-19.103 42.667-42.667 42.667s-42.667-19.103-42.667-42.667v0-42.667h-96c-64.801 0-117.333 52.532-117.333 117.333v0 576c0 64.801 52.532 117.333 117.333 117.333v0h277.333c64.801 0 117.333-52.532 117.333-117.333v0-576c0-64.801-52.532-117.333-117.333-117.333v0zM640 604.587l-95.573 107.52c-7.834 8.596-19.076 13.969-31.573 13.969s-23.74-5.373-31.543-13.935l-0.030-0.034-97.28-107.52c-26.491-29.927-42.667-69.517-42.667-112.885 0-94.257 76.41-170.667 170.667-170.667s170.667 76.41 170.667 170.667c0 43.368-16.176 82.958-42.823 113.066l0.157-0.18zM576 490.667c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64v0c35.249 0.24 63.76 28.751 64 63.977l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["telephone-geolocation"]},"attrs":[{}],"properties":{"order":7475,"id":62,"name":"telephone-geolocation","prevSize":32,"code":60158},"setIdx":0,"setId":0,"iconIdx":510},{"icon":{"paths":["M426.667 384v426.667c0 70.692-57.308 128-128 128s-128-57.308-128-128v0-426.667zM597.333 597.333v213.333c0 70.692 57.308 128 128 128s128-57.308 128-128v0-213.333zM597.333 170.667v384h256v-384c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0h-256c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0zM426.667 85.333h-256c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0 170.667h256v-170.667c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["test-tubes"]},"attrs":[{}],"properties":{"order":7476,"id":61,"name":"test-tubes","prevSize":32,"code":60159},"setIdx":0,"setId":0,"iconIdx":511},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM747.947 405.333c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-407.893c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.893c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM918.613 618.667c0-17.673-14.327-32-32-32v0h-747.947c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h746.667c17.673 0 32-14.327 32-32v0zM747.947 832c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-407.893c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.893c17.577-0.237 31.763-14.423 32-31.977l0-0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-align-center"]},"attrs":[{}],"properties":{"order":7477,"id":60,"name":"text-align-center","prevSize":32,"code":60160},"setIdx":0,"setId":0,"iconIdx":512},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM917.333 405.333c0-17.673-14.327-32-32-32v0h-746.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h746.667c17.673 0 32-14.327 32-32v0zM917.333 618.667c0-17.673-14.327-32-32-32v0h-746.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h746.667c17.673 0 32-14.327 32-32v0zM578.133 832c0-17.673-14.327-32-32-32v0h-407.467c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.467c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-align-justify-center"]},"attrs":[{}],"properties":{"order":7478,"id":59,"name":"text-align-justify-center","prevSize":32,"code":60161},"setIdx":0,"setId":0,"iconIdx":513},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM578.133 405.333c0-17.673-14.327-32-32-32v0h-407.467c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.467c17.673 0 32-14.327 32-32v0zM919.467 618.667c0-17.673-14.327-32-32-32v0h-748.8c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h746.667c17.673 0 32-14.327 32-32v0zM580.267 832c0-17.673-14.327-32-32-32v0h-409.6c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.467c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-align-left"]},"attrs":[{}],"properties":{"order":7479,"id":58,"name":"text-align-left","prevSize":32,"code":60162},"setIdx":0,"setId":0,"iconIdx":514},{"icon":{"paths":["M885.333 224h-746.667c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h746.667c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM917.333 405.333c0-17.673-14.327-32-32-32v0h-407.467c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.467c17.673 0 32-14.327 32-32v0zM917.333 618.667c0-17.673-14.327-32-32-32v0h-746.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h746.667c17.673 0 32-14.327 32-32v0zM917.333 832c0-17.673-14.327-32-32-32v0h-407.467c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h407.467c17.673 0 32-14.327 32-32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-align-right"]},"attrs":[{}],"properties":{"order":7480,"id":57,"name":"text-align-right","prevSize":32,"code":60163},"setIdx":0,"setId":0,"iconIdx":515},{"icon":{"paths":["M545.707 469.333h-170.667v-128h170.667c32.253 3.839 57.024 31.027 57.024 64s-24.771 60.161-56.719 63.97l-0.306 0.030zM572.587 533.333h-198.4v154.027h198.4c1.717 0.136 3.718 0.213 5.736 0.213 42.651 0 77.227-34.576 77.227-77.227s-34.576-77.227-77.227-77.227c-2.019 0-4.019 0.077-5.999 0.23l0.263-0.016zM938.667 341.333v345.6c-2.382 138.807-114.881 250.558-253.754 251.733l-0.113 0.001h-343.467c-0.003 0-0.006 0-0.009 0-140.635 0-254.783-113.402-255.99-253.752l-0.001-0.115v-343.467c0-141.385 114.615-256 256-256v0h345.6c139.538 2.4 251.733 116.080 251.733 255.964 0 0.013-0 0.025-0 0.038l0-0.002zM713.813 610.56c-0.082-52.277-28.641-97.865-70.991-122.090l-0.689-0.363c19.61-21.977 31.594-51.125 31.594-83.073 0-0.795-0.007-1.588-0.022-2.379l0.002 0.119c0-70.692-57.308-128-128-128v0h-204.373c-17.673 0-32 14.327-32 32v0 410.88c-0.002 0.128-0.003 0.279-0.003 0.43 0 17.437 14.136 31.573 31.573 31.573 0.151 0 0.302-0.001 0.452-0.003l-0.023 0h230.4c0.253 0.002 0.553 0.003 0.853 0.003 77.997 0 141.227-63.229 141.227-141.227 0-0.001-0-0.002-0-0.003l-0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-bold"]},"attrs":[{}],"properties":{"order":7481,"id":56,"name":"text-bold","prevSize":32,"code":60164},"setIdx":0,"setId":0,"iconIdx":516},{"icon":{"paths":["M878.933 251.733h-485.12c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h485.12c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM690.773 433.067c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-264.96c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h264.96c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM910.933 646.4c0-17.673-14.327-32-32-32v0h-485.12c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h485.12c17.673 0 32-14.327 32-32v0zM690.773 859.733c-0.237-17.577-14.423-31.763-31.977-32l-0.023-0h-264.96c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h264.96c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM200.533 164.267c-30.633 0-55.467 24.833-55.467 55.467s24.833 55.467 55.467 55.467c30.633 0 55.467-24.833 55.467-55.467h0c-0-30.633-24.833-55.467-55.467-55.467l0-0zM200.533 590.933c-30.633 0-55.467 24.833-55.467 55.467s24.833 55.467 55.467 55.467c30.633 0 55.467-24.833 55.467-55.467h0c-0-30.633-24.833-55.467-55.467-55.467h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-circle"]},"attrs":[{}],"properties":{"order":7482,"id":55,"name":"text-circle","prevSize":32,"code":60165},"setIdx":0,"setId":0,"iconIdx":517},{"icon":{"paths":["M684.8 72.533h-343.467c-0.003-0-0.006-0-0.009-0-140.635 0-254.783 113.402-255.99 253.752l-0.001 0.115v345.6c1.208 140.465 115.356 253.867 255.991 253.867 0.003 0 0.006-0 0.009-0l345.599 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-345.6c-1.197-139.723-114.144-252.67-253.752-253.866l-0.114-0.001zM651.093 338.347h-78.080l-57.173 346.88h74.24c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-210.773c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h71.68l57.173-346.88h-67.84c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h210.773c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-italic"]},"attrs":[{}],"properties":{"order":7483,"id":54,"name":"text-italic","prevSize":32,"code":60166},"setIdx":0,"setId":0,"iconIdx":518},{"icon":{"paths":["M875.947 275.627h-485.12c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h485.12c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM687.787 456.96c0-17.673-14.327-32-32-32v0h-264.96c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h264.96c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM907.947 670.293c0-17.673-14.327-32-32-32v0h-485.12c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h485.12c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM687.787 883.627c0-17.673-14.327-32-32-32v0h-264.96c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h264.96c17.577-0.237 31.763-14.423 32-31.977l0-0.023zM252.16 346.453v-206.080c0.002-0.128 0.003-0.279 0.003-0.431 0-17.673-14.327-32-32-32-10.435 0-19.703 4.994-25.545 12.723l-0.058 0.081-71.68 92.587c-4.288 5.401-6.879 12.318-6.879 19.84 0 17.702 14.35 32.052 32.052 32.052 10.18 0 19.251-4.746 25.123-12.146l0.051-0.066 14.933-18.773v112.213c0 17.673 14.327 32 32 32s32-14.327 32-32v0zM294.827 773.12c0-17.673-14.327-32-32-32v0h-42.667l61.013-102.827c2.848-4.625 4.579-10.205 4.693-16.182l0-0.031c1.221-5.41 1.92-11.623 1.92-18 0-47.128-38.205-85.333-85.333-85.333s-85.333 38.205-85.333 85.333c0 6.377 0.699 12.59 2.026 18.567l-0.106-0.567c0 17.673 14.327 32 32 32s32-14.327 32-32v0c-0-0.001-0-0.003-0-0.005 0-10.689 8.546-19.383 19.178-19.622l0.022-0c0.163-0.005 0.354-0.008 0.546-0.008 8.234 0 15.23 5.301 17.761 12.676l0.039 0.132-85.333 141.653c-2.823 4.557-4.496 10.083-4.496 16s1.673 11.443 4.572 16.132l-0.076-0.132c5.394 9.735 15.608 16.216 27.335 16.216 0.14 0 0.28-0.001 0.42-0.003l-0.021 0h97.707c0.148 0.003 0.324 0.004 0.499 0.004 17.437 0 31.573-14.136 31.573-31.573 0-0.752-0.026-1.498-0.078-2.237l0.006 0.1z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-number"]},"attrs":[{}],"properties":{"order":7484,"id":53,"name":"text-number","prevSize":32,"code":60167},"setIdx":0,"setId":0,"iconIdx":519},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM792.747 563.627h-494.080c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h494.080c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM486.827 274.773h130.133c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-130.133c-0.151-0.001-0.329-0.002-0.507-0.002-35.346 0-64 28.654-64 64 0 22.721 11.84 42.677 29.688 54.034l0.26 0.154h-81.493c-7.541-15.647-11.947-34.023-11.947-53.428 0-0.117 0-0.234 0-0.35l-0 0.018c-0-0.127-0.001-0.277-0.001-0.427 0-70.692 57.308-128 128-128 0 0 0 0 0.001 0l0 0zM558.933 725.333h-128c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h128c31.652-0.198 57.875-23.19 63.092-53.377l0.055-0.383h64c-5.455 65.995-60.246 117.521-127.122 117.76l-0.024 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-strikethrough"]},"attrs":[{}],"properties":{"order":7485,"id":52,"name":"text-strikethrough","prevSize":32,"code":60168},"setIdx":0,"setId":0,"iconIdx":520},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM663.040 791.893h-302.080c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h302.080c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM695.040 474.027c0.062 1.811 0.098 3.941 0.098 6.078 0 102.408-81.26 185.838-182.818 189.326l-0.32 0.009c-101.878-3.497-183.138-86.927-183.138-189.335 0-2.137 0.035-4.266 0.106-6.387l-0.008 0.309v-210.347c0-17.673 14.327-32 32-32s32 14.327 32 32v-0 210.347c-0.035 1.109-0.054 2.414-0.054 3.724 0 67.559 52.339 122.893 118.681 127.666l0.413 0.024c66.755-4.797 119.094-60.131 119.094-127.69 0-1.309-0.020-2.614-0.059-3.914l0.005 0.191v-210.347c0-17.673 14.327-32 32-32s32 14.327 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text-underline"]},"attrs":[{}],"properties":{"order":7486,"id":51,"name":"text-underline","prevSize":32,"code":60169},"setIdx":0,"setId":0,"iconIdx":521},{"icon":{"paths":["M781.653 225.707h-184.32v609.28c0.251 2.799 0.394 6.055 0.394 9.344 0 26.064-8.989 50.029-24.036 68.963l0.175-0.228c-14.343 15.812-34.969 25.701-57.904 25.701-1.394 0-2.779-0.037-4.155-0.109l0.192 0.008c-0.844 0.032-1.835 0.050-2.83 0.050-23.145 0-43.988-9.855-58.562-25.598l-0.048-0.052c-15.085-18.989-24.201-43.309-24.201-69.759 0-2.928 0.112-5.83 0.331-8.702l-0.023 0.382v-609.28h-185.173c-2.228 0.187-4.821 0.294-7.44 0.294-21.704 0-41.695-7.333-57.631-19.656l0.217 0.162c-13.155-12.056-21.373-29.317-21.373-48.496 0-0.801 0.014-1.598 0.043-2.392l-0.003 0.115c-0.027-0.704-0.042-1.531-0.042-2.361 0-19.584 8.568-37.167 22.16-49.205l0.069-0.060c15.841-11.863 35.821-18.995 57.467-18.995 2.299 0 4.579 0.080 6.837 0.239l-0.304-0.017h540.16c2.353-0.213 5.089-0.334 7.854-0.334 21.779 0 41.803 7.52 57.614 20.105l-0.189-0.145c13.401 11.863 21.807 29.107 21.807 48.315 0 0.865-0.017 1.725-0.051 2.581l0.004-0.123c0.030 0.733 0.047 1.594 0.047 2.458 0 19.208-8.406 36.452-21.739 48.256l-0.068 0.059c-15.914 12.157-36.087 19.479-57.97 19.479-2.573 0-5.122-0.101-7.644-0.3l0.333 0.021z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["text"]},"attrs":[{}],"properties":{"order":7487,"id":50,"name":"text","prevSize":32,"code":60170},"setIdx":0,"setId":0,"iconIdx":522},{"icon":{"paths":["M322.133 822.187l-90.453 90.88c-15.505 15.505-36.926 25.096-60.587 25.096-47.321 0-85.682-38.361-85.682-85.682 0-23.661 9.59-45.081 25.096-60.587l90.88-90.88zM926.72 247.467c-37.464-62.639-88.236-113.685-148.686-150.38l-1.927-1.086c-12.398-7.429-27.353-11.822-43.335-11.822-24.428 0-46.459 10.264-62.014 26.715l-0.038 0.040-15.36 17.067 240.64 240.213 14.933-14.933c16.914-15.641 27.469-37.946 27.469-62.717 0-15.884-4.34-30.754-11.899-43.49l0.217 0.394zM483.413 298.667c-25.986 25.885-48.38 55.349-66.386 87.596l-1.028 2.004-96.427 172.8c-19.317 33.987-41.679 63.28-67.434 89.194l0.021-0.021-20.907 20.907 121.173 120.747 20.48-20.48c26.022-25.726 55.454-48.090 87.535-66.332l2.065-1.081 173.653-96.427c34.033-19.192 63.339-41.566 89.172-67.412l141.655-141.655-241.92-242.347zM685.227 278.187l61.013 60.587c7.795 7.733 12.621 18.45 12.621 30.293s-4.826 22.56-12.618 30.291l-0.003 0.003-121.6 121.173c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002-60.587-60.587c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 121.173-122.027c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["thermometer"]},"attrs":[{}],"properties":{"order":7488,"id":49,"name":"thermometer","prevSize":32,"code":60171},"setIdx":0,"setId":0,"iconIdx":523},{"icon":{"paths":["M394.24 432.213c0.241-17.724 14.665-32 32.424-32 0.001 0 0.002 0 0.003 0l53.76-0v-56.32c0-17.673 14.327-32 32-32s32 14.327 32 32v0 56.32h52.907c17.673 0 32 14.327 32 32s-14.327 32-32 32v0h-170.667c-0.001 0-0.002 0-0.003 0-17.759 0-32.183-14.276-32.424-31.977l-0-0.023zM597.333 528.213h-170.667c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h53.76v87.893c0 17.673 14.327 32 32 32s32-14.327 32-32v0-87.893h52.907c17.673 0 32-14.327 32-32s-14.327-32-32-32v0zM938.667 341.333v341.333c0 141.385-114.615 256-256 256v0h-344.32c-141.385 0-256-114.615-256-256v0-341.333c0-141.385 114.615-256 256-256v0h347.307c140.095 1.687 253.013 115.648 253.013 255.983 0 0.006-0 0.012-0 0.018l0-0.001zM725.333 337.493c0.012-0.508 0.018-1.107 0.018-1.707 0-44.065-35.722-79.787-79.787-79.787-0.006 0-0.013 0-0.019 0l-267.092-0c-44.065 0-79.787 35.722-79.787 79.787l-0-0v352.427c0 44.065 35.722 79.787 79.787 79.787h267.093c44.065 0 79.787-35.722 79.787-79.787h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["theta"]},"attrs":[{}],"properties":{"order":7489,"id":48,"name":"theta","prevSize":32,"code":60172},"setIdx":0,"setId":0,"iconIdx":524},{"icon":{"paths":["M856.32 310.613c-5.147-16.756-18.895-29.368-35.964-32.802l-0.303-0.051c-23.844-4.807-45.008-13.399-63.954-25.216l0.807 0.469h-2.987c-43.462-28.492-74.533-72.821-85.118-124.608l-0.215-1.259s0-3.413 0-5.12c-5.341-21.247-24.275-36.728-46.825-36.728-0.638 0-1.274 0.012-1.906 0.037l0.091-0.003h-55.467c-23.564 0-42.667 19.103-42.667 42.667v0 517.547c-0.484 65.14-53.402 117.76-118.61 117.76-0.001 0-0.002-0-0.003-0l0 0c-0.285 0.003-0.622 0.004-0.959 0.004-18.948 0-36.828-4.575-52.595-12.68l0.647 0.302c-38.988-19.94-65.227-59.806-65.28-105.806l-0-0.007c1.281-63.278 51.047-114.53 113.594-118.172l0.326-0.015c22.628-1.168 40.533-19.8 40.533-42.613 0-0.019-0-0.037-0-0.056l0 0.003v-54.613c0.192-1.282 0.302-2.762 0.302-4.267s-0.11-2.985-0.322-4.431l0.020 0.164c-4.105-19.619-21.26-34.142-41.806-34.142-0.302 0-0.604 0.003-0.905 0.009l0.045-0.001c-3.318-0.233-7.19-0.366-11.093-0.366s-7.775 0.133-11.612 0.395l0.519-0.028c-130.678 14.396-231.422 124.191-231.422 257.516 0 89.87 45.775 169.048 115.281 215.492l0.942 0.592c40.106 27.324 89.623 43.629 142.949 43.629 7.805 0 15.529-0.349 23.156-1.033l-0.985 0.071c133.995-14.907 237.246-127.533 237.246-264.274 0-1.141-0.007-2.281-0.022-3.419l0.002 0.173v-276.48c42.027 30.634 92.882 51.74 148.080 59.123l1.68 0.184c0.915 0.070 1.981 0.11 3.057 0.11 22.702 0 41.263-17.73 42.591-40.099l0.006-0.117v-55.467c0.039-0.759 0.061-1.648 0.061-2.542 0-3.476-0.333-6.875-0.968-10.166l0.054 0.335z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tiktok"]},"attrs":[{}],"properties":{"order":7490,"id":47,"name":"tiktok","prevSize":32,"code":60173},"setIdx":0,"setId":0,"iconIdx":525},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM682.667 543.573h-170.667c-17.909 0-32.427-14.518-32.427-32.427l-0 0v-239.787c0-17.909 14.518-32.427 32.427-32.427s32.427 14.518 32.427 32.427v208.213h138.24c17.909 0 32.427 14.518 32.427 32.427s-14.518 32.427-32.427 32.427h0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["time"]},"attrs":[{}],"properties":{"order":7491,"id":46,"name":"time","prevSize":32,"code":60174},"setIdx":0,"setId":0,"iconIdx":526},{"icon":{"paths":["M506.027 221.013c-198.174 0-358.827 160.652-358.827 358.827s160.652 358.827 358.827 358.827c198.174 0 358.827-160.652 358.827-358.827h0c0-0.127 0-0.277 0-0.427 0-197.939-160.461-358.4-358.4-358.4-0.15 0-0.3 0-0.451 0l0.024-0zM544 546.133c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-182.187c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM614.827 150.613h-217.6c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h217.6c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["timer"]},"attrs":[{}],"properties":{"order":7492,"id":45,"name":"timer","prevSize":32,"code":60175},"setIdx":0,"setId":0,"iconIdx":527},{"icon":{"paths":["M336.213 421.547l291.413-157.44c10.371-5.66 22.718-8.989 35.841-8.989 41.804 0 75.72 33.776 75.946 75.528l0 0.021v354.987c0 0.009 0 0.019 0 0.029 0 41.944-34.002 75.947-75.947 75.947-13.123 0-25.469-3.328-36.239-9.187l0.399 0.199-291.413-155.307c-32.275-16.635-53.964-49.731-53.964-87.893s21.689-71.258 53.413-87.635l0.551-0.259z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["to-left"]},"attrs":[{}],"properties":{"order":7493,"id":44,"name":"to-left","prevSize":32,"code":60176},"setIdx":0,"setId":0,"iconIdx":528},{"icon":{"paths":["M709.12 426.667l-277.76-162.133c-10.658-6.213-23.461-9.881-37.121-9.881-41.111 0-74.462 33.225-74.666 74.288l-0 0.019v358.827c0.204 41.083 33.555 74.308 74.666 74.308 13.66 0 26.462-3.668 37.477-10.073l-0.357 0.191 277.76-160.427c28.122-17.182 46.608-47.712 46.608-82.56s-18.485-65.378-46.185-82.32l-0.423-0.24z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["to-right"]},"attrs":[{}],"properties":{"order":7494,"id":43,"name":"to-right","prevSize":32,"code":60177},"setIdx":0,"setId":0,"iconIdx":529},{"icon":{"paths":["M589.227 162.56h-154.453c-192.99-0-349.44 156.45-349.44 349.44s156.45 349.44 349.44 349.44v0h154.453c192.99 0 349.44-156.45 349.44-349.44s-156.45-349.44-349.44-349.44v0zM432.64 698.453c-104.148-0.007-188.575-84.437-188.575-188.587 0-104.154 84.433-188.587 188.587-188.587s188.587 84.433 188.587 188.587c0 0.75-0.004 1.499-0.013 2.247l0.001-0.114c-1.205 103.232-85.171 186.453-188.575 186.453-0.004 0-0.009-0-0.013-0l0.001 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-off-circle"]},"attrs":[{}],"properties":{"order":7495,"id":42,"name":"toggle-off-circle","prevSize":32,"code":60178},"setIdx":0,"setId":0,"iconIdx":530},{"icon":{"paths":["M760.747 162.56h-497.493c-0.001-0-0.001-0-0.002-0-98.263 0-177.92 79.657-177.92 177.92 0 0.3 0.001 0.6 0.002 0.9l-0-0.046v341.333c0 98.263 79.657 177.92 177.92 177.92v0h497.493c98.263 0 177.92-79.657 177.92-177.92v-341.333c0.001-0.253 0.002-0.553 0.002-0.853 0-98.263-79.657-177.92-177.92-177.92-0.001 0-0.002 0-0.002 0l0-0zM601.173 581.547c0 58.91-47.756 106.667-106.667 106.667v0h-163.413c-58.91 0-106.667-47.756-106.667-106.667v0-154.88c0-58.91 47.756-106.667 106.667-106.667v0h163.413c58.91 0 106.667 47.756 106.667 106.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-off"]},"attrs":[{}],"properties":{"order":7496,"id":41,"name":"toggle-off","prevSize":32,"code":60179},"setIdx":0,"setId":0,"iconIdx":531},{"icon":{"paths":["M589.227 162.56h-154.453c-192.99-0-349.44 156.45-349.44 349.44s156.45 349.44 349.44 349.44v0h154.453c192.99 0 349.44-156.45 349.44-349.44s-156.45-349.44-349.44-349.44v0zM589.227 698.453c-103.227-1.212-186.441-85.175-186.441-188.574 0-104.154 84.433-188.587 188.587-188.587s188.587 84.433 188.587 188.587c0 0.746-0.004 1.491-0.013 2.235l0.001-0.113c-1.205 103.232-85.171 186.453-188.575 186.453-0.004 0-0.009-0-0.013-0l0.001 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-on-circle"]},"attrs":[{}],"properties":{"order":7497,"id":40,"name":"toggle-on-circle","prevSize":32,"code":60180},"setIdx":0,"setId":0,"iconIdx":532},{"icon":{"paths":["M760.747 162.56h-497.493c-0.001-0-0.001-0-0.002-0-98.263 0-177.92 79.657-177.92 177.92 0 0.3 0.001 0.6 0.002 0.9l-0-0.046v341.333c0 98.263 79.657 177.92 177.92 177.92v0h497.493c98.263 0 177.92-79.657 177.92-177.92v-341.333c0.001-0.253 0.002-0.553 0.002-0.853 0-98.263-79.657-177.92-177.92-177.92-0.001 0-0.002 0-0.002 0l0-0zM799.573 581.547c0 58.91-47.756 106.667-106.667 106.667v0h-163.413c-58.91 0-106.667-47.756-106.667-106.667v0-154.88c0-58.91 47.756-106.667 106.667-106.667v0h163.413c58.91 0 106.667 47.756 106.667 106.667v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["toggle-on"]},"attrs":[{}],"properties":{"order":7498,"id":39,"name":"toggle-on","prevSize":32,"code":60181},"setIdx":0,"setId":0,"iconIdx":533},{"icon":{"paths":["M390.827 739.84c0.001 0.127 0.001 0.277 0.001 0.427 0 34.875-28.272 63.147-63.147 63.147s-63.147-28.272-63.147-63.147c0-34.874 28.271-63.146 63.145-63.147l0-0c0-0 0.001-0 0.001-0 34.725 0 62.903 28.029 63.145 62.697l0 0.023zM933.12 739.84c0 17.673-14.327 32-32 32v0h-474.453c3.48-9.524 5.509-20.519 5.547-31.983l0-0.017c-0.229-10.749-2.085-20.988-5.331-30.585l0.211 0.719c-13.137-44.030-53.266-75.58-100.764-75.58-48.432 0-89.203 32.804-101.306 77.405l-0.17 0.735h-22.613c-61.474-0.037-111.295-49.88-111.295-111.36 0-4.661 0.286-9.256 0.843-13.767l-0.054 0.54 32.853-269.227c6.833-55.311 53.537-97.707 110.142-97.707 0.128 0 0.256 0 0.384 0.001l-0.020-0h378.453c53.397 0.119 97.959 37.801 108.67 88.017l0.13 0.73 55.467 269.227c1.386 6.554 2.18 14.084 2.18 21.8 0 50.49-33.992 93.040-80.339 106.015l-0.775 0.185h202.24c17.726 0.239 32.003 14.664 32.003 32.424 0 0.151-0.001 0.302-0.003 0.452l0-0.023zM479.147 623.787c0 17.909 14.518 32.427 32.427 32.427v0h85.333c17.909 0 32.427-14.518 32.427-32.427v0-231.253c-0.231-17.667-14.371-31.956-31.956-32.426l-0.044-0.001h-85.333c-17.813 0.237-32.189 14.614-32.426 32.404l-0 0.023zM420.267 392.533c-0.237-17.813-14.614-32.189-32.404-32.426l-0.023-0h-148.907c-17.813 0.237-32.189 14.614-32.426 32.404l-0 0.023v94.293c0 17.909 14.518 32.427 32.427 32.427v0h148.907c17.909-0 32.427-14.518 32.427-32.427l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trailer"]},"attrs":[{}],"properties":{"order":7499,"id":38,"name":"trailer","prevSize":32,"code":60182},"setIdx":0,"setId":0,"iconIdx":534},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM665.6 701.013c-4.28 28.435-28.542 49.985-57.837 49.985-0.967 0-1.929-0.023-2.885-0.070l0.135 0.005h-181.333c-1.202 0.088-2.605 0.138-4.019 0.138-29.321 0-53.6-21.589-57.808-49.738l-0.039-0.321-17.493-217.6c0.207-13.508 11.206-24.379 24.744-24.379 0.601 0 1.198 0.021 1.789 0.064l-0.079-0.005h282.453c0.511-0.038 1.108-0.059 1.709-0.059 13.538 0 24.537 10.871 24.744 24.36l0 0.019zM708.267 410.027h-4.693c-57.683-8.423-124.28-13.233-192-13.233s-134.315 4.81-199.465 14.107l7.465-0.873c-1.682 0.313-3.616 0.493-5.593 0.493-15.737 0-28.82-11.359-31.498-26.325l-0.029-0.194c-0.303-1.643-0.476-3.533-0.476-5.463 0-15.799 11.604-28.887 26.754-31.208l0.176-0.022c31.648-5.396 69.828-9.511 108.586-11.428l2.347-0.092 6.827-37.12c2.043-22.695 19.972-40.623 42.485-42.653l0.181-0.013h85.333c22.695 2.043 40.623 19.972 42.653 42.485l0.013 0.181 5.547 34.56c35.413 2.133 72.533 5.547 110.507 11.093 15.53 2.596 27.221 15.936 27.221 32.006 0 1.654-0.124 3.279-0.363 4.866l0.022-0.179c-1.321 15.905-14.255 28.396-30.234 29.012l-0.059 0.002z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trash-square"]},"attrs":[{}],"properties":{"order":7500,"id":37,"name":"trash-square","prevSize":32,"code":60183},"setIdx":0,"setId":0,"iconIdx":535},{"icon":{"paths":["M762.88 341.333h-501.76c-0.291-0.006-0.634-0.010-0.978-0.010-25.921 0-46.933 21.013-46.933 46.933 0 1.205 0.045 2.399 0.135 3.581l-0.010-0.157 30.293 445.44c4.121 56.94 51.327 101.573 108.958 101.573 0.844 0 1.687-0.010 2.527-0.029l-0.125 0.002 322.133-3.84c57.566-0.84 104.299-46.085 107.507-102.967l0.013-0.287 26.027-440.32c0.061-0.896 0.096-1.942 0.096-2.996 0-25.921-21.013-46.933-46.933-46.933-0.334 0-0.667 0.003-0.999 0.010l0.050-0.001zM573.867 738.133h-123.733c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h123.733c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM607.147 580.267h-190.293c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h190.293c17.673 0 32 14.327 32 32s-14.327 32-32 32v0zM896 278.187c-2.408 15.496-15.656 27.216-31.64 27.216-1.632 0-3.236-0.122-4.803-0.358l0.176 0.022c-104.274-15.123-224.675-23.759-347.093-23.759-122.416 0-242.816 8.636-360.622 25.331l13.529-1.572h-5.547c-17.635-0.050-31.913-14.358-31.913-32 0-15.834 11.5-28.982 26.604-31.547l0.189-0.027c5.973 0 78.080-12.373 189.867-19.627l14.080-72.107c7.445-36.973 39.664-64.427 78.294-64.427 0.075 0 0.149 0 0.224 0l-0.012-0h150.613c38.893 0.152 71.247 27.961 78.424 64.774l0.082 0.506 13.227 71.68c60.587 3.84 124.16 9.813 189.013 19.627 15.695 2.223 27.634 15.567 27.634 31.701 0 1.611-0.119 3.194-0.349 4.741l0.021-0.175z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trash"]},"attrs":[{}],"properties":{"order":7501,"id":36,"name":"trash","prevSize":32,"code":60184},"setIdx":0,"setId":0,"iconIdx":536},{"icon":{"paths":["M288.853 364.373l187.733-260.693c7.771-11.447 20.725-18.869 35.413-18.869s27.643 7.422 35.318 18.72l0.095 0.149 187.733 260.693c5.75 7.206 9.226 16.446 9.226 26.499 0 23.564-19.103 42.667-42.667 42.667-0.694 0-1.384-0.017-2.070-0.049l0.097 0.004h-375.467c-0.589 0.029-1.279 0.046-1.973 0.046-23.564 0-42.667-19.103-42.667-42.667 0-10.053 3.476-19.293 9.293-26.585l-0.066 0.086zM807.68 677.973l-176.213-244.48h-238.933l-176.213 244.48c-6.259 9.080-9.997 20.319-9.997 32.431 0 31.576 25.408 57.218 56.895 57.596l0.036 0h216.747v137.387c0 17.673 14.327 32 32 32s32-14.327 32-32v0-137.387h216.747c31.522-0.378 56.931-26.020 56.931-57.596 0-12.112-3.738-23.35-10.124-32.625l0.126 0.194z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["tree"]},"attrs":[{}],"properties":{"order":7502,"id":35,"name":"tree","prevSize":32,"code":60185},"setIdx":0,"setId":0,"iconIdx":537},{"icon":{"paths":["M938.667 337.493c-2.163-139.724-115.937-252.16-255.971-252.16-0.010 0-0.020 0-0.031 0l-346.452-0c-139.165 2.872-250.88 116.364-250.88 255.949 0 0.018 0 0.036 0 0.054l-0-0.003v344.747c1.925 139.909 115.793 252.587 255.977 252.587 0.008 0 0.016-0 0.024-0l346.879 0c140.095-1.687 253.013-115.648 253.013-255.983 0-0.006-0-0.012-0-0.018l0 0.001zM714.667 580.693h-81.92c-0.002 0-0.004 0-0.006 0-35.046 0-63.513-28.169-63.994-63.101l-0-0.045v-186.88c-0-0-0-0.001-0-0.001 0-34.961 28.22-63.33 63.124-63.572l0.023-0h82.347c0.254-0.004 0.553-0.006 0.853-0.006 34.639 0 62.72 28.081 62.72 62.72 0 0.002-0 0.004-0 0.006l0-0v187.307c0.001 0.127 0.001 0.278 0.001 0.428 0 34.725-28.030 62.904-62.699 63.145l-0.023 0zM384 789.333h-81.067c-0 0-0.001 0-0.001 0-35.111 0-63.573-28.463-63.573-63.573 0-0.15 0.001-0.3 0.002-0.45l-0 0.023v-395.093c-0-0-0-0.001-0-0.001 0-34.875 28.272-63.147 63.147-63.147 0.15 0 0.3 0.001 0.45 0.002l-0.023-0h81.067c0.127-0.001 0.277-0.001 0.427-0.001 34.875 0 63.147 28.272 63.147 63.147 0 0.001-0 0.001-0 0.002l0-0v395.093c0.001 0.127 0.001 0.277 0.001 0.427 0 35.111-28.463 63.573-63.573 63.573-0.001 0-0.001-0-0.002-0l0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["trello"]},"attrs":[{}],"properties":{"order":7503,"id":34,"name":"trello","prevSize":32,"code":60186},"setIdx":0,"setId":0,"iconIdx":538},{"icon":{"paths":["M544 128c36.846 9.078 67.056 32.458 84.988 63.772l0.346 0.655 289.707 501.333c11.474 19.379 18.254 42.711 18.254 67.627s-6.78 48.248-18.595 68.252l0.342-0.626-376.32-265.387zM512 619.947l-365.653 256c21.203 14.874 47.523 23.802 75.924 23.893l0.023 0h578.987c0.032 0 0.069 0 0.107 0 27.994 0 53.977-8.613 75.441-23.335l-0.455 0.295zM480 564.053v-436.053c-36.846 9.078-67.056 32.458-84.988 63.772l-0.346 0.655-290.987 501.76c-11.164 19.246-17.753 42.347-17.753 66.987s6.589 47.741 18.101 67.638l-0.348-0.651z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["triangle"]},"attrs":[{}],"properties":{"order":7504,"id":33,"name":"triangle","prevSize":32,"code":60187},"setIdx":0,"setId":0,"iconIdx":539},{"icon":{"paths":["M374.613 747.947c0.001 0.127 0.001 0.277 0.001 0.427 0 40.766-33.047 73.813-73.813 73.813s-73.813-33.047-73.813-73.813c0-40.766 33.047-73.813 73.812-73.813l0-0c0.127-0.001 0.277-0.001 0.427-0.001 40.53 0 73.387 32.856 73.387 73.387 0 0-0 0.001-0 0.001l0-0zM524.373 203.52h-384c-0.127-0.001-0.277-0.002-0.427-0.002-30.162 0-54.613 24.451-54.613 54.613 0 0.001 0 0.001 0 0.002l-0-0v417.707c0 30.162 24.451 54.613 54.613 54.613v0h46.080c8.663-56.275 56.745-98.864 114.773-98.864s106.11 42.589 114.691 98.215l0.082 0.649h108.8c0.127 0.001 0.277 0.002 0.427 0.002 30.162 0 54.613-24.451 54.613-54.613 0-0.001-0-0.001-0-0.002l0 0v-417.707c0-0.001 0-0.001 0-0.002 0-30.162-24.451-54.613-54.613-54.613-0.15 0-0.3 0.001-0.45 0.002l0.023-0zM938.667 521.813v152.32c0 31.105-25.215 56.32-56.32 56.32v0h-6.827c-8.624-56.318-56.726-98.955-114.787-98.955-56.234 0-103.126 39.996-113.782 93.093l-0.124 0.742c-19.303-9.085-32.427-28.374-32.427-50.729 0-0.016 0-0.031 0-0.047l-0 0.002v-284.16c0.24-31.008 25.312-56.080 56.297-56.32l0.023-0h110.933c18.167 0.205 34.288 8.789 44.706 22.062l0.094 0.125 100.693 131.413c7.109 9.395 11.421 21.251 11.52 34.11l0 0.023zM849.92 497.067c0-0.002 0-0.004 0-0.006 0-5.93-1.92-11.412-5.173-15.857l0.053 0.076-34.133-49.493c-4.861-6.645-12.58-10.951-21.311-11.093l-0.022-0h-54.187c-14.845 0-26.88 12.035-26.88 26.88v0 81.92c0.24 14.661 12.181 26.453 26.877 26.453 0.001 0 0.002-0 0.004-0l88.32 0c14.61-0 26.453-11.844 26.453-26.453v0zM760.747 674.56c-40.765 0.001-73.812 33.048-73.812 73.813s33.047 73.813 73.813 73.813c40.766 0 73.813-33.047 73.813-73.813 0-0.15-0-0.3-0.001-0.45l0 0.023c-0.242-40.582-33.196-73.387-73.812-73.387-0 0-0.001 0-0.001 0l0-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["truck"]},"attrs":[{}],"properties":{"order":7505,"id":32,"name":"truck","prevSize":32,"code":60188},"setIdx":0,"setId":0,"iconIdx":540},{"icon":{"paths":["M938.667 271.787c-1.442-103.283-85.506-186.455-188.996-186.455-0.306 0-0.612 0.001-0.918 0.002l0.047-0h-478.293c-103.838 0.725-187.735 85.069-187.735 189.009 0 0.302 0.001 0.603 0.002 0.904l-0-0.047 2.56 477.013c1.442 103.283 85.506 186.455 188.996 186.455 0.306 0 0.612-0.001 0.918-0.002l-0.047 0h478.293c103.838-0.725 187.735-85.069 187.735-189.009 0-0.302-0.001-0.603-0.002-0.904l0 0.047zM627.2 547.413c0 11.782-9.551 21.333-21.333 21.333v0h-64.427v227.84c0 11.782-9.551 21.333-21.333 21.333v0h-36.267c-11.782 0-21.333-9.551-21.333-21.333v0-227.84h-64c-11.782 0-21.333-9.551-21.333-21.333v0-30.72c0-11.782 9.551-21.333 21.333-21.333v0h207.36c11.687 0.234 21.099 9.647 21.333 21.311l0 0.022zM734.293 822.187c-0.634 0.009-1.383 0.014-2.133 0.014-29.659 0-57.469-7.922-81.427-21.766l0.786 0.419c-5.935-3.854-9.805-10.45-9.805-17.95 0-2.118 0.309-4.163 0.883-6.094l-0.039 0.151 9.387-30.293c1.814-6.525 6.542-11.674 12.657-14.032l0.143-0.048c2.751-1.315 5.979-2.083 9.387-2.083s6.636 0.768 9.521 2.141l-0.134-0.058c15.172 9.495 33.57 15.191 53.287 15.36l0.046 0c11.52 0 37.547-2.56 37.547-26.453 0-9.813 0-20.907-39.253-35.84-21.333-7.253-87.467-30.72-87.467-98.987 2.993-53.908 47.437-96.488 101.826-96.488 3.508 0 6.974 0.177 10.391 0.523l-0.43-0.035c1.111-0.030 2.419-0.046 3.731-0.046 25.128 0 48.815 6.171 69.627 17.080l-0.825-0.394c6.353 3.876 10.53 10.769 10.53 18.638 0 2.491-0.419 4.885-1.19 7.114l0.046-0.153-9.813 29.44c-2.163 5.864-6.607 10.448-12.228 12.747l-0.145 0.053c-2.617 1.302-5.699 2.064-8.96 2.064s-6.343-0.762-9.080-2.118l0.12 0.054c-12.091-6.717-26.517-10.67-41.866-10.67-0.282 0-0.563 0.001-0.844 0.004l0.043-0c-23.040 0-31.573 10.667-31.573 20.48s2.987 18.773 42.667 34.133c47.804 10.789 83.301 51.961 85.326 101.76l0.007 0.214c-1.707 49.92-37.973 101.12-120.747 101.12z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["ts"]},"attrs":[{}],"properties":{"order":7506,"id":31,"name":"ts","prevSize":32,"code":60189},"setIdx":0,"setId":0,"iconIdx":541},{"icon":{"paths":["M870.827 85.333h-652.8c-16.153-0-30.383 8.235-38.72 20.737l-0.107 0.17-64.427 96.853c-4.958 7.171-7.97 16.021-8.106 25.566l-0 0.034v532.053c0 25.685 20.822 46.507 46.507 46.507v0h74.24c0.001-0 0.001-0 0.002-0 25.535 0 46.263 20.579 46.505 46.057l0 0.023v38.827c0 25.685 20.822 46.507 46.507 46.507v0h56.747c0.084 0.001 0.184 0.001 0.284 0.001 15.973 0 30.066-8.053 38.439-20.321l0.103-0.16 61.013-90.88c8.568-12.434 22.728-20.48 38.768-20.48 0.021 0 0.041 0 0.062 0l-0.003-0h166.827c12.827-0.068 24.425-5.271 32.855-13.655l-0.002 0.002 186.88-186.453c8.239-8.517 13.397-20.059 13.653-32.804l0.001-0.049v-442.453c-0.227-25.060-20.24-45.371-45.161-46.079l-0.066-0.001zM459.52 540.587c0 17.437-14.136 31.573-31.573 31.573v0h-33.707c-17.437 0-31.573-14.136-31.573-31.573v0-231.68c0-17.437 14.136-31.573 31.573-31.573v0h32.427c17.437 0 31.573 14.136 31.573 31.573h-0zM703.573 540.587c-0.241 17.489-14.474 31.573-31.997 31.573-0.001 0-0.002-0-0.003-0l-31.573 0c-17.437 0-31.573-14.136-31.573-31.573h0v-230.4c-0-17.437 14.136-31.573 31.573-31.573h33.707c0.001-0 0.002-0 0.003-0 17.523 0 31.757 14.085 31.997 31.551l0 0.023z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["twitch"]},"attrs":[{}],"properties":{"order":7507,"id":30,"name":"twitch","prevSize":32,"code":60190},"setIdx":0,"setId":0,"iconIdx":542},{"icon":{"paths":["M593.493 503.893c-2.93 79.672-47.039 148.422-111.567 185.879l-1.073 0.575c-37.125 19.4-81.089 30.782-127.71 30.782-11.076 0-22.002-0.642-32.743-1.892l1.307 0.124c-66.278-0.488-123.926-36.968-154.417-90.844l-0.463-0.889c-2.202-3.387-3.511-7.529-3.511-11.978 0-11.838 9.271-21.51 20.948-22.153l0.057-0.003c16.82-0.336 32.946-2.65 48.358-6.72l-1.425 0.32c-72.366-16.069-127.943-73.221-141.475-145.208l-0.178-1.139c-0.243-1.195-0.382-2.569-0.382-3.976 0-11.546 9.36-20.907 20.907-20.907 2.27 0 4.456 0.362 6.503 1.031l-0.148-0.042c14.723 5.173 31.704 8.277 49.374 8.532l0.119 0.001c-48.356-34.51-79.508-90.427-79.508-153.619 0-18.069 2.547-35.542 7.301-52.082l-0.327 1.328c4.068-11.43 14.794-19.466 27.397-19.466 7.949 0 15.152 3.197 20.392 8.375l-0.003-0.003c88.671 93.486 211.32 153.985 348.083 161.646l1.357 0.061c67.84 3.413 101.12 71.68 102.827 132.267zM909.653 197.547c-9.451-0.904-20.433-1.419-31.536-1.419-23.863 0-47.171 2.38-69.698 6.917l2.248-0.378c-33.821-36.234-81.863-58.819-135.18-58.819-75.802 0-140.941 45.652-169.424 110.962l-0.463 1.191c-6.878 15.71-11.715 33.926-13.594 53.011l-0.060 0.749c104.533 5.12 161.707 101.973 163.84 194.987-2.316 103.24-58.773 192.791-142.008 241.614l-1.352 0.733c-43.066 24.632-94.655 39.157-149.637 39.157-4.996 0-9.964-0.12-14.901-0.357l0.697 0.027h-29.013c-29.659-2.036-57.242-8.434-82.941-18.572l1.875 0.652c-7.565 3.859-17.136 8.029-26.951 11.698l-2.062 0.676c-22.68 6.726-49.263 11.715-76.618 13.982l-1.462 0.098c-10.889 1.757-19.105 11.089-19.105 22.34 0 8.883 5.122 16.57 12.573 20.268l0.132 0.059c61.215 26.969 132.587 42.667 207.626 42.667 0.206 0 0.413-0 0.619-0l-0.032 0c0.891 0.005 1.946 0.009 3.001 0.009 289.603 0 524.373-234.77 524.373-524.373 0-1.353-0.005-2.705-0.015-4.056l0.001 0.207c0-8.107 0-16.213 0-23.893 28.089-23.294 52.319-49.829 72.539-79.33l0.848-1.31c3.509-5.016 5.608-11.245 5.608-17.963 0-16.859-13.213-30.631-29.848-31.527l-0.080-0.003z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["twitter"]},"attrs":[{}],"properties":{"order":7508,"id":29,"name":"twitter","prevSize":32,"code":60191},"setIdx":0,"setId":0,"iconIdx":543},{"icon":{"paths":["M772.693 411.733c3.871 10.254 6.2 22.105 6.399 34.473l0.001 0.087c-0.2-12.455-2.529-24.306-6.639-35.288l0.239 0.728zM828.16 198.4h-473.173c-48.099 0.377-88.82 31.544-103.452 74.744l-0.228 0.776h417.707c96.377 0 174.507 78.129 174.507 174.507h-0v234.24c53.461-7.332 94.323-52.318 95.146-107.009l0.001-0.085v-264.96c-0-61.031-49.476-110.507-110.507-110.507h0zM669.013 337.92h-473.173c-61.031 0-110.507 49.476-110.507 110.507v0 11.947h694.187v-11.947c0-61.031-49.476-110.507-110.507-110.507v0zM779.52 543.573v170.667c0 61.031-49.476 110.507-110.507 110.507h-473.173c-0.001 0-0.002 0-0.003 0-61.031 0-110.507-49.476-110.507-110.507 0-0.3 0.001-0.6 0.004-0.899l-0 0.046v-170.667zM349.867 663.893c0-17.673-14.327-32-32-32v0h-122.88c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h122.88c17.673 0 32-14.327 32-32v-0zM701.867 663.893c0-17.673-14.327-32-32-32v0h-51.627c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h51.627c17.673 0 32-14.327 32-32v-0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["two-credit-cart"]},"attrs":[{}],"properties":{"order":7509,"id":28,"name":"two-credit-cart","prevSize":32,"code":60192},"setIdx":0,"setId":0,"iconIdx":544},{"icon":{"paths":["M690.773 85.333h-357.547c-136.908-0-247.893 110.986-247.893 247.893l0 0v357.547c-0 136.908 110.986 247.893 247.893 247.893l0 0h357.547c136.908-0 247.893-110.986 247.893-247.893l0 0v-357.547c-0-136.908-110.986-247.893-247.893-247.893l0 0zM325.973 664.32c-5.799 8.788-15.629 14.507-26.795 14.507-0.030 0-0.060-0-0.089-0l0.005 0c-6.543-0.136-12.581-2.189-17.605-5.619l0.112 0.072c-8.242-5.867-13.553-15.387-13.553-26.148 0-6.103 1.708-11.807 4.673-16.659l-0.080 0.14 107.52-161.28-107.52-166.827c-2.807-4.663-4.468-10.292-4.468-16.309 0-10.89 5.439-20.509 13.749-26.289l0.105-0.069c4.593-2.645 10.1-4.206 15.971-4.206 11.026 0 20.767 5.503 26.626 13.913l0.070 0.106 119.040 184.32c3.298 4.994 5.261 11.121 5.261 17.707s-1.963 12.713-5.337 17.828l0.075-0.122zM725.333 770.987h-251.733c-17.673 0-32-14.327-32-32s14.327-32 32-32v0h251.733c17.673 0 32 14.327 32 32s-14.327 32-32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["underlining"]},"attrs":[{}],"properties":{"order":7510,"id":27,"name":"underlining","prevSize":32,"code":60193},"setIdx":0,"setId":0,"iconIdx":545},{"icon":{"paths":["M614.4 760.747l-67.413 69.12-2.133-625.493 68.693 69.973c5.661 5.795 13.554 9.388 22.287 9.388 0.115 0 0.23-0.001 0.344-0.002l-0.017 0c0.019 0 0.042 0 0.064 0 8.738 0 16.679-3.411 22.564-8.975l-0.016 0.015c5.782-5.789 9.359-13.784 9.359-22.613s-3.576-16.824-9.359-22.614l0 0-125.44-128c-5.984-5.521-14.010-8.906-22.827-8.906s-16.843 3.385-22.85 8.927l0.023-0.021-125.44 128c-5.782 5.789-9.359 13.784-9.359 22.613s3.576 16.824 9.359 22.614l-0-0c5.789 5.782 13.784 9.359 22.613 9.359s16.824-3.576 22.614-9.359l-0 0 72.533-74.24 2.133 635.733-72.533-75.52c-5.845-6.007-14.007-9.734-23.040-9.734-17.747 0-32.134 14.387-32.134 32.134 0 8.714 3.469 16.619 9.101 22.407l-0.007-0.007 125.44 128c5.945 5.863 14.038 9.562 22.993 9.812l0.047 0.001c9.019-0.157 17.14-3.879 23.038-9.812l0.002-0.002 125.44-128c5.625-5.781 9.094-13.686 9.094-22.4 0-17.747-14.387-32.134-32.134-32.134-9.033 0-17.195 3.727-23.033 9.727l-0.007 0.007z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["up-down"]},"attrs":[{}],"properties":{"order":7511,"id":26,"name":"up-down","prevSize":32,"code":60194},"setIdx":0,"setId":0,"iconIdx":546},{"icon":{"paths":["M85.333 345.6v332.8c0.242 143.644 116.623 260.024 260.243 260.267l0.023 0h332.8c143.644-0.242 260.024-116.623 260.267-260.243l0-0.023v-332.8c-0.242-143.644-116.623-260.024-260.243-260.267l-0.023-0h-332.8c-143.644 0.242-260.024 116.623-260.267 260.243l-0 0.023zM536.32 388.267l146.347 138.24c7.633 7.248 12.381 17.469 12.381 28.8 0 21.919-17.769 39.687-39.687 39.687-10.588 0-20.208-4.146-27.324-10.904l0.017 0.016-116.053-111.36-113.067 116.053c-7.248 7.633-17.469 12.381-28.8 12.381-21.919 0-39.687-17.769-39.687-39.687 0-10.588 4.146-20.208 10.904-27.324l-0.016 0.017 138.667-145.067c7.246-7.631 17.466-12.379 28.795-12.379 10.695 0 20.401 4.231 27.537 11.111l-0.012-0.012z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["up-square"]},"attrs":[{}],"properties":{"order":7512,"id":25,"name":"up-square","prevSize":32,"code":60195},"setIdx":0,"setId":0,"iconIdx":547},{"icon":{"paths":["M764.587 617.387c-0.073 0-0.16 0.001-0.247 0.001-11.721 0-22.338-4.726-30.049-12.377l0.003 0.003-222.293-224.427-226.133 224.427c-7.712 7.668-18.343 12.407-30.080 12.407s-22.368-4.74-30.082-12.409l0.002 0.002c-7.795-7.733-12.621-18.45-12.621-30.293s4.826-22.56 12.618-30.291l0.003-0.003 256-256c7.712-7.668 18.343-12.407 30.080-12.407s22.368 4.74 30.082 12.409l-0.002-0.002 256 256c7.795 7.733 12.621 18.45 12.621 30.294 0 23.501-19.001 42.565-42.478 42.666l-0.010 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["up"]},"attrs":[{}],"properties":{"order":7513,"id":24,"name":"up","prevSize":32,"code":60196},"setIdx":0,"setId":0,"iconIdx":548},{"icon":{"paths":["M597.333 290.987v-205.653l113.493 121.6 227.84 240.213h-201.387c-77.818-2.34-140.012-65.983-140.012-144.152 0-1.522 0.024-3.038 0.070-4.549l-0.005 0.221c-0.091-1.149-0.143-2.489-0.143-3.84s0.052-2.691 0.154-4.016l-0.011 0.176zM938.667 695.040c0.006 0.638 0.010 1.392 0.010 2.147 0 132.476-106.671 240.038-238.807 241.479l-0.136 0.001h-375.467c-132.272-1.442-238.943-109.003-238.943-241.48 0-0.755 0.003-1.509 0.010-2.262l-0.001 0.115v-366.080c-0.006-0.638-0.010-1.392-0.010-2.147 0-132.476 106.671-240.038 238.807-241.479l0.136-0.001h209.493v205.653c-0.184 3.29-0.289 7.14-0.289 11.014 0 111.92 87.409 203.424 197.685 209.972l0.577 0.027h206.933zM379.733 605.44c12.163-4.425 20.693-15.886 20.693-29.34 0-3.865-0.704-7.566-1.991-10.981l0.071 0.215c-4.218-12.265-15.656-20.921-29.115-20.921-3.633 0-7.118 0.631-10.353 1.788l0.214-0.067-21.333 7.68c13.266-22.040 33.975-38.451 58.579-45.891l0.728-0.189c8.657-2.757 18.614-4.345 28.942-4.345 17.914 0 34.711 4.779 49.187 13.132l-0.476-0.253c4.421 2.61 9.742 4.152 15.423 4.152 11.778 0 22.008-6.628 27.163-16.359l0.081-0.167c2.415-4.357 3.836-9.555 3.836-15.084 0-11.796-6.469-22.081-16.052-27.501l-0.157-0.082c-22.629-12.801-49.695-20.345-78.523-20.345-61.627 0-115.203 34.474-142.494 85.19l-0.424 0.861c-0.207 0.833-0.326 1.789-0.326 2.773s0.119 1.94 0.343 2.855l-0.017-0.082-9.813-26.027c-3.647-13.447-15.742-23.175-30.109-23.175-17.202 0-31.147 13.945-31.147 31.147 0 5.359 1.354 10.402 3.737 14.806l-0.082-0.165 34.133 91.307c4.16 11.538 15.014 19.638 27.76 19.638 0.291 0 0.58-0.004 0.869-0.013l-0.042 0.001c1.537 0.404 3.301 0.637 5.12 0.637s3.583-0.232 5.265-0.669l-0.145 0.032zM627.627 739.413l-30.293-97.28c-4.205-12.561-15.864-21.452-29.599-21.452-3.294 0-6.468 0.511-9.448 1.459l0.221-0.061-89.173 36.693c-11.883 4.988-20.077 16.529-20.077 29.983 0 4.582 0.95 8.942 2.665 12.894l-0.081-0.21c4.556 11.621 15.672 19.699 28.675 19.699 4.118 0 8.047-0.81 11.636-2.28l-0.205 0.074 18.773-7.68c-17.604 30.413-49.986 50.545-87.070 50.545-17.843 0-34.598-4.661-49.113-12.832l0.503 0.26c-4.678-3.273-10.486-5.231-16.752-5.231-11.142 0-20.838 6.189-25.838 15.318l-0.077 0.153c-2.452 4.419-3.895 9.691-3.895 15.3 0 11.543 6.112 21.658 15.276 27.287l0.139 0.079h-2.56c22.287 12.881 49.025 20.481 77.538 20.481 0.191 0 0.381-0 0.572-0.001l-0.029 0c61.138-0.277 114.254-34.349 141.656-84.487l0.424-0.847 6.4 19.2c3.652 12.663 15.136 21.768 28.748 21.768 0.243 0 0.486-0.003 0.728-0.009l-0.036 0.001h9.387c13.254-3.946 22.754-16.022 22.754-30.316 0-3.342-0.519-6.564-1.482-9.587l0.061 0.224s0 0 0 0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["update-file"]},"attrs":[{}],"properties":{"order":7514,"id":23,"name":"update-file","prevSize":32,"code":60197},"setIdx":0,"setId":0,"iconIdx":549},{"icon":{"paths":["M712.107 260.267h-128c-0.057 0-0.124 0-0.191 0-46.278 0-85.912-28.447-102.369-68.808l-0.266-0.739-11.947-35.84c-16.854-41.116-56.569-69.549-102.925-69.549-0.265 0-0.531 0.001-0.796 0.003l0.041-0h-85.333c-107.591 0.242-194.745 87.396-194.987 194.964l-0 0.023v431.787c0.719 123.036 100.145 222.612 223.055 223.573l0.092 0.001h403.627c123.185-0.722 222.852-100.388 223.573-223.504l0-0.069v-227.413c0-0.001 0-0.001 0-0.002 0-123.647-99.994-223.94-223.527-224.425l-0.046-0zM362.24 607.147c-12.705-0.446-23.463-8.333-28.083-19.418l-0.077-0.209-35.413-88.32c-1.228-3.168-1.939-6.834-1.939-10.667 0-16.741 13.571-30.312 30.312-30.312 12.909 0 23.932 8.069 28.303 19.438l0.070 0.207 9.813 24.747c-0.207-0.768-0.325-1.65-0.325-2.56s0.119-1.792 0.341-2.631l-0.016 0.071c27.957-49.909 80.507-83.088 140.806-83.088 28.148 0 54.607 7.23 77.622 19.934l-0.829-0.419c9.334 5.062 15.565 14.786 15.565 25.966 0 5.186-1.341 10.059-3.695 14.291l0.077-0.15c-5.15 9.801-15.26 16.37-26.904 16.37-5.829 0-11.273-1.646-15.893-4.499l0.13 0.075c-13.791-7.75-30.271-12.315-47.817-12.315-10.185 0-20.011 1.538-29.258 4.395l0.701-0.187c-24.074 7.171-43.909 22.299-56.933 42.274l-0.24 0.392 20.907-7.253c3.424-1.432 7.403-2.264 11.576-2.264 12.864 0 23.881 7.907 28.457 19.126l0.074 0.205c1.16 3.062 1.832 6.602 1.832 10.298 0 12.867-8.136 23.833-19.545 28.035l-0.207 0.067-92.16 32.853c-2.142 2.039-4.516 3.87-7.069 5.441l-0.185 0.106zM689.067 740.267h-9.387c-0.063 0-0.137 0.001-0.211 0.001-13.375 0-24.726-8.668-28.741-20.694l-0.062-0.214-5.973-19.2c-28.335 48.839-80.379 81.16-139.971 81.16-28.647 0-55.549-7.469-78.866-20.565l0.811 0.419c-13.472-3.078-23.372-14.959-23.372-29.152 0-2.372 0.276-4.679 0.799-6.891l-0.040 0.203c2.702-14.189 15.008-24.77 29.786-24.77 1.838 0 3.637 0.164 5.385 0.477l-0.184-0.027c7.264 1.436 13.46 5.264 17.878 10.615l0.042 0.052c13.771 7.532 30.169 11.962 47.601 11.962 36.208 0 67.953-19.111 85.697-47.797l0.249-0.432-18.773 7.253c-3.347 1.409-7.238 2.228-11.32 2.228-12.696 0-23.541-7.921-27.864-19.091l-0.069-0.204c-1.251-3.219-1.976-6.944-1.976-10.839 0-12.755 7.773-23.694 18.84-28.339l0.202-0.075 90.453-34.987c3.51-1.626 7.617-2.574 11.947-2.574s8.437 0.948 12.127 2.648l-0.18-0.074c7.589 3.427 13.314 9.848 15.733 17.718l0.054 0.202 30.72 93.44c0.732 2.48 1.153 5.329 1.153 8.277 0 13.954-9.435 25.705-22.273 29.22l-0.213 0.050z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["update-folder"]},"attrs":[{}],"properties":{"order":7515,"id":22,"name":"update-folder","prevSize":32,"code":60198},"setIdx":0,"setId":0,"iconIdx":550},{"icon":{"paths":["M715.52 298.667c0 117.821-95.513 213.333-213.333 213.333s-213.333-95.513-213.333-213.333c0-117.821 95.513-213.333 213.333-213.333v0c117.821 0 213.333 95.513 213.333 213.333v0zM741.12 832l145.493-136.107c8.397-8.413 13.59-20.027 13.59-32.853s-5.193-24.44-13.59-32.854l0.001 0.001-27.733-29.867c-8.558-9.603-20.961-15.622-34.771-15.622-11.9 0-22.756 4.469-30.981 11.821l0.045-0.040-145.493 136.107c-6.238 6.097-10.747 13.937-12.741 22.731l-0.059 0.309-12.8 61.013c-0.363 1.748-0.571 3.756-0.571 5.814 0 16.495 13.372 29.867 29.867 29.867 1.405 0 2.788-0.097 4.141-0.285l-0.157 0.018 61.44-8.533c9.621-1.954 17.927-6.645 24.309-13.216l0.011-0.011zM858.453 809.813l-73.813 68.693c-15.471 14.856-35.561 25.008-57.906 28.098l-0.547 0.062-61.44 8.533c-1.982 0.196-4.285 0.308-6.613 0.308s-4.631-0.112-6.902-0.33l0.289 0.022c-51.739-0.135-93.63-42.108-93.63-93.866 0-6.646 0.691-13.13 2.004-19.385l-0.107 0.611 12.8-60.587c4.229-23.565 15.682-43.937 31.946-59.256l0.054-0.050 56.32-52.907c-46.361-18.632-100.112-29.44-156.387-29.44-0.22 0-0.441 0-0.661 0l0.034-0c-192.853 0-352.427 123.307-379.733 283.733-0.282 1.959-0.443 4.222-0.443 6.522 0 26.627 21.586 48.213 48.213 48.213 1.207 0 2.404-0.044 3.588-0.132l-0.158 0.009h657.067c0.823 0.050 1.785 0.078 2.754 0.078 26.863 0 48.64-21.777 48.64-48.64 0-1.53-0.071-3.043-0.209-4.536l0.014 0.192c-5.096-29.129-13.851-55.189-25.921-79.302l0.747 1.649z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-edit"]},"attrs":[{}],"properties":{"order":7516,"id":21,"name":"user-edit","prevSize":32,"code":60199},"setIdx":0,"setId":0,"iconIdx":551},{"icon":{"paths":["M971.093 337.067c-0.447-79.054-33.011-150.416-85.291-201.772l-0.042-0.041c-52.018-51.177-123.434-82.775-202.231-82.775-0.303 0-0.607 0-0.91 0.001l0.047-0h-347.307c-157.2 1.202-284.172 128.916-284.172 286.285 0 0.903 0.004 1.805 0.013 2.706l-0.001-0.138v344.747c0.471 157.759 128.468 285.466 286.292 285.466 1.35 0 2.699-0.009 4.045-0.028l-0.204 0.002h347.307c157.2-1.202 284.172-128.916 284.172-286.285 0-0.903-0.004-1.805-0.013-2.706l0.001 0.138zM843.093 839.68c-19.026 19.252-41.506 35.040-66.442 46.365l-1.398 0.568c-48.056-99.786-148.395-167.428-264.533-167.428s-216.478 67.641-263.772 165.677l-0.761 1.75c-24.901-10.86-46.23-25.218-64.503-42.739l0.076 0.073c-40.657-39.832-65.925-95.239-66.133-156.548l-0-0.039-0.427-346.027c-0-0.129-0-0.281-0-0.433 0-122.405 98.745-221.747 220.922-222.713l0.092-0.001h347.307c122.225 0.238 221.328 98.892 222.293 220.922l0.001 0.092v344.747c0.014 0.933 0.022 2.034 0.022 3.138 0 59.278-23.428 113.085-61.529 152.666l0.067-0.070zM672.427 508.16c-0.005 89.54-72.593 162.124-162.133 162.124-89.544 0-162.133-72.59-162.133-162.133s72.59-162.133 162.133-162.133c0.6 0 1.2 0.003 1.798 0.010l-0.091-0.001c89.544 0 162.133 72.59 162.133 162.133v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-square"]},"attrs":[{}],"properties":{"order":7517,"id":20,"name":"user-square","prevSize":32,"code":60200},"setIdx":0,"setId":0,"iconIdx":552},{"icon":{"paths":["M701.44 298.667c-1.212 115.717-95.3 209.056-211.189 209.056-116.643 0-211.2-94.557-211.2-211.2 0-115.889 93.339-209.977 208.941-211.188l0.115-0.001c0.637-0.007 1.39-0.011 2.144-0.011 116.643 0 211.2 94.557 211.2 211.2 0 0.754-0.004 1.507-0.012 2.259l0.001-0.115zM912.64 720.64c0 94.257-76.41 170.667-170.667 170.667s-170.667-76.41-170.667-170.667c0-94.257 76.41-170.667 170.667-170.667v0c0.001-0 0.001-0 0.002-0 93.957 0 170.18 75.924 170.664 169.767l0 0.046zM827.307 654.507c-5.395-4.287-12.306-6.878-19.822-6.878-10.076 0-19.065 4.657-24.931 11.937l-0.048 0.061-46.933 60.16-25.173-37.12c-5.84-7.459-14.846-12.208-24.96-12.208-17.464 0-31.621 14.157-31.621 31.621 0 7.349 2.507 14.113 6.713 19.482l-0.052-0.069 51.627 66.56c5.831 7.476 14.839 12.238 24.96 12.238s19.129-4.762 24.907-12.167l0.053-0.070 72.107-91.733c3.777-5.14 6.044-11.594 6.044-18.577 0-9.635-4.315-18.261-11.119-24.053l-0.045-0.037zM512 719.787c-0-0.103-0-0.225-0-0.347 0-42.086 11.242-81.546 30.888-115.541l-0.594 1.115c-15.336-2.124-33.099-3.363-51.141-3.413l-0.059-0c-192.427-0-352 123.733-379.307 282.88-0.208 1.691-0.327 3.648-0.327 5.632 0 26.863 21.777 48.64 48.64 48.64 1.016 0 2.024-0.031 3.024-0.092l-0.137 0.007h498.773c-88.323-34.451-149.764-118.849-149.764-217.598 0-0.451 0.001-0.901 0.004-1.352l-0 0.069z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user-tick"]},"attrs":[{}],"properties":{"order":7518,"id":19,"name":"user-tick","prevSize":32,"code":60201},"setIdx":0,"setId":0,"iconIdx":553},{"icon":{"paths":["M725.333 298.667c0 117.821-95.513 213.333-213.333 213.333s-213.333-95.513-213.333-213.333c0-117.821 95.513-213.333 213.333-213.333v0c117.821 0 213.333 95.513 213.333 213.333v0zM840.533 938.667c0.823 0.050 1.785 0.078 2.754 0.078 26.863 0 48.64-21.777 48.64-48.64 0-1.53-0.071-3.043-0.209-4.536l0.014 0.192c-27.307-160.427-186.88-283.733-379.733-283.733s-352.427 123.307-379.733 283.733c-0.124 1.302-0.194 2.815-0.194 4.345 0 26.863 21.777 48.64 48.64 48.64 0.969 0 1.931-0.028 2.886-0.084l-0.132 0.006z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["user"]},"attrs":[{}],"properties":{"order":7519,"id":18,"name":"user","prevSize":32,"code":60202},"setIdx":0,"setId":0,"iconIdx":554},{"icon":{"paths":["M912.64 449.28l-59.307-60.16c-7.905-7.75-12.805-18.541-12.805-30.475 0-0.236 0.002-0.472 0.006-0.707l-0 0.036v-85.333c-0.24-48.831-39.881-88.324-88.746-88.324-0.3 0-0.6 0.001-0.9 0.004l0.046-0h-85.333c-0.2 0.003-0.435 0.005-0.671 0.005-11.935 0-22.725-4.9-30.468-12.798l-0.007-0.007-59.733-60.16c-16.057-16.040-38.23-25.96-62.72-25.96s-46.663 9.92-62.721 25.961l0.001-0.001-60.16 59.307c-7.75 7.905-18.541 12.805-30.475 12.805-0.236 0-0.472-0.002-0.707-0.006l0.036 0h-85.333c-48.831 0.24-88.324 39.881-88.324 88.746 0 0.3 0.001 0.6 0.004 0.9l-0-0.046v85.333c0.003 0.2 0.005 0.435 0.005 0.671 0 11.935-4.9 22.725-12.798 30.468l-0.007 0.007-60.16 59.733c-16.040 16.057-25.96 38.23-25.96 62.72s9.92 46.663 25.961 62.721l-0.001-0.001 59.307 60.16c7.905 7.75 12.805 18.541 12.805 30.475 0 0.236-0.002 0.472-0.006 0.707l0-0.036v85.333c0.24 48.831 39.881 88.324 88.746 88.324 0.3 0 0.6-0.001 0.9-0.004l-0.046 0h85.333c0.2-0.003 0.435-0.005 0.671-0.005 11.935 0 22.725 4.9 30.468 12.798l0.007 0.007 60.16 60.16c16.057 16.040 38.23 25.96 62.72 25.96s46.663-9.92 62.721-25.961l-0.001 0.001 59.733-59.307c7.75-7.905 18.541-12.805 30.475-12.805 0.236 0 0.472 0.002 0.707 0.006l-0.036-0h85.333c49.013-0 88.747-39.733 88.747-88.747v0-85.333c-0.003-0.2-0.005-0.435-0.005-0.671 0-11.935 4.9-22.725 12.798-30.468l0.007-0.007 60.16-60.16c16.041-16.057 25.961-38.23 25.961-62.721 0-24.702-10.092-47.047-26.379-63.137l-0.009-0.009zM690.347 435.2l-209.493 204.8c-5.727 5.797-13.676 9.387-22.464 9.387-0.052 0-0.105-0-0.157-0l0.008 0c-8.89-0.129-16.884-3.863-22.604-9.803l-0.010-0.010-101.12-102.4c-6.126-5.84-9.935-14.063-9.935-23.176 0-17.673 14.327-32 32-32 9.325 0 17.719 3.989 23.568 10.353l0.021 0.023 78.507 79.787 186.88-182.613c5.789-5.782 13.784-9.359 22.613-9.359s16.824 3.576 22.614 9.359l-0-0c5.785 5.79 9.362 13.786 9.362 22.617 0 9.042-3.75 17.208-9.779 23.027l-0.009 0.009z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["verify"]},"attrs":[{}],"properties":{"order":7520,"id":17,"name":"verify","prevSize":32,"code":60203},"setIdx":0,"setId":0,"iconIdx":555},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM407.893 305.92h210.773c12.443 0.060 22.507 10.161 22.507 22.613 0 5.154-1.724 9.905-4.627 13.708l0.040-0.055-103.253 138.24c-4.175 5.387-10.647 8.821-17.92 8.821s-13.745-3.434-17.882-8.769l-0.038-0.052-107.093-139.093c-2.732-3.646-4.375-8.246-4.375-13.229 0-12.142 9.753-22.005 21.852-22.184l0.017-0zM749.227 417.28l-209.067 287.573c-5.709 8.045-14.988 13.231-25.479 13.231-0.193 0-0.385-0.002-0.577-0.005l0.029 0c-10.484-0.178-19.734-5.305-25.538-13.139l-0.062-0.088-213.333-287.573c-5.028-5.628-8.1-13.094-8.1-21.279 0-17.673 14.327-32 32-32 11.498 0 21.58 6.064 27.221 15.169l0.079 0.137 185.6 252.587 184.32-252.16c5.898-8.107 15.354-13.318 26.027-13.318 17.723 0 32.091 14.368 32.091 32.091 0 7.051-2.274 13.57-6.128 18.865l0.064-0.092z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["vibe"]},"attrs":[{}],"properties":{"order":7521,"id":16,"name":"vibe","prevSize":32,"code":60204},"setIdx":0,"setId":0,"iconIdx":556},{"icon":{"paths":["M891.307 633.6c-5.986-3.399-13.15-5.403-20.781-5.403-14.767 0-27.782 7.502-35.442 18.903l-0.097 0.153-42.667-24.32h-5.12c12.698-32.579 20.056-70.293 20.056-109.726 0-0.425-0.001-0.849-0.003-1.273l0 0.066c-0.018-39.116-7.375-76.509-20.768-110.884l0.715 2.084h5.12l42.667-24.32c7.848 10.702 20.375 17.572 34.506 17.572 23.564 0 42.667-19.103 42.667-42.667 0-6.368-1.395-12.409-3.896-17.837l0.109 0.265-42.667-70.827c-7.813-11.092-20.565-18.25-34.99-18.25-23.564 0-42.667 19.103-42.667 42.667 0 5.649 1.098 11.042 3.092 15.976l-0.102-0.286-42.667 24.747h-2.56c-44.409-60.668-110.364-103.29-186.397-116.65l-1.763-0.257v-45.653c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0h-82.773c-0.381-0.012-0.83-0.019-1.28-0.019-23.575 0-42.686 19.111-42.686 42.686 0 23.125 18.388 41.954 41.34 42.665l0.065 0.002v45.653c-79.607 11.219-147.737 53.142-193.176 113.188l-0.531 0.732-3.413-2.987-37.12-21.333c4.177-6.48 6.66-14.395 6.66-22.89 0-23.564-19.103-42.667-42.667-42.667-16.334 0-30.524 9.178-37.694 22.659l-0.112 0.23-42.667 73.813c-3.594 6.12-5.717 13.479-5.717 21.334 0 23.474 18.957 42.52 42.396 42.666l0.014 0c0.050 0 0.11 0 0.169 0 15.71 0 29.436-8.49 36.842-21.132l0.109-0.201 37.12 21.333 5.12 2.133c-13.175 33.153-20.842 71.565-20.907 111.76l-0 0.026c0.102 40.373 7.765 78.926 21.647 114.359l-0.74-2.146h-5.12l-37.12 21.333c-7.282-13.711-21.472-22.89-37.806-22.89-23.564 0-42.667 19.103-42.667 42.667 0 8.495 2.482 16.409 6.761 23.059l-0.102-0.169 42.667 73.813c7.514 12.844 21.241 21.334 36.951 21.334 0.060 0 0.119-0 0.179-0l-0.009 0c7.69-0.024 14.895-2.079 21.114-5.657l-0.207 0.11c12.956-7.488 21.534-21.275 21.534-37.066 0-7.877-2.134-15.255-5.856-21.588l0.109 0.2 37.12-21.333 3.413-2.987c45.862 61.46 114.163 103.983 192.549 115.437l1.585 0.19s0 0 0 2.133v42.667c-23.564 0-42.667 19.103-42.667 42.667s19.103 42.667 42.667 42.667v0h85.333c23.564 0 42.667-19.103 42.667-42.667s-19.103-42.667-42.667-42.667v0-42.667s0 0 0-2.987c78.377-12.868 145.009-55.307 189.303-115.255l0.563-0.799h2.56l42.667 24.32c-3.58 6.123-5.694 13.481-5.694 21.333 0 23.645 19.168 42.814 42.814 42.814 15.793 0 29.589-8.552 37.010-21.277l0.11-0.203 42.667-70.827c2.653-5.4 4.204-11.753 4.204-18.468 0-16.369-9.218-30.585-22.745-37.74l-0.232-0.112zM573.013 402.773c0-28.513 23.114-51.627 51.627-51.627s51.627 23.114 51.627 51.627c0 28.513-23.114 51.627-51.627 51.627v0c-28.513 0-51.627-23.114-51.627-51.627v0zM676.267 597.333c-5.415 4.453-12.419 7.153-20.053 7.153-17.5 0-31.686-14.186-31.686-31.686 0-9.866 4.509-18.678 11.578-24.489l0.055-0.044c5.485-4.393 12.525-7.049 20.186-7.049 9.826 0 18.632 4.371 24.578 11.274l0.036 0.042c4.389 5.432 7.045 12.421 7.045 20.032 0 9.959-4.549 18.855-11.683 24.724l-0.055 0.044z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["virus"]},"attrs":[{}],"properties":{"order":7522,"id":15,"name":"virus","prevSize":32,"code":60205},"setIdx":0,"setId":0,"iconIdx":557},{"icon":{"paths":["M932.693 221.44l-183.893 318.293-187.307 324.693c-9.777 16.662-27.603 27.672-48 27.672s-38.223-11.010-47.858-27.411l-0.142-0.261-187.307-324.693-187.307-326.4c-4.089-7.54-6.492-16.509-6.492-26.039 0-30.216 24.161-54.788 54.217-55.453l0.062-0.001h66.56c0.050 11.776 3.211 22.803 8.701 32.315l-0.168-0.315 121.6 210.347 80.64 139.947c19.554 33.324 55.205 55.344 96 55.344s76.446-22.020 95.717-54.823l0.283-0.521 80.64-139.947 122.027-210.347c5.323-9.197 8.483-20.224 8.533-31.985l0-0.015h62.293c32.761 0.3 59.204 26.927 59.204 59.731 0 10.998-2.972 21.301-8.157 30.151l0.153-0.282zM471.467 482.133c8.291 14.019 23.331 23.274 40.533 23.274s32.242-9.254 40.414-23.056l0.119-0.218 202.24-351.147h-485.547l121.173 210.347z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["vue"]},"attrs":[{}],"properties":{"order":7523,"id":14,"name":"vue","prevSize":32,"code":60206},"setIdx":0,"setId":0,"iconIdx":558},{"icon":{"paths":["M514.133 938.667v0c-0.050 0-0.109 0-0.169 0-10.919 0-20.543-5.543-26.213-13.968l-0.072-0.113-379.307-569.6c-2.885-4.712-4.593-10.416-4.593-16.519 0-10.761 5.311-20.281 13.455-26.082l0.098-0.066c4.728-2.975 10.477-4.74 16.639-4.74 10.757 0 20.258 5.38 25.959 13.596l0.068 0.104 352.427 529.493 349.867-524.373c5.819-8.672 15.585-14.303 26.667-14.303 17.679 0 32.010 14.331 32.010 32.010 0 6.597-1.996 12.728-5.416 17.822l0.073-0.115-375.040 562.773c-5.648 8.532-15.204 14.083-26.056 14.083-0.14 0-0.279-0.001-0.418-0.003l0.021 0zM750.933 180.907l-216.32 324.267c-4.991 7.833-13.631 12.953-23.467 12.953s-18.476-5.12-23.4-12.841l-0.067-0.112-216.32-324.267c-5.203-6.304-13.018-10.291-21.765-10.291-0.599 0-1.193 0.019-1.783 0.056l0.081-0.004h-56.32c-15.448 0.137-27.918 12.692-27.918 28.159 0 5.359 1.497 10.368 4.095 14.632l-0.070-0.124 320.427 500.053c5.057 8.013 13.863 13.257 23.893 13.257s18.837-5.245 23.825-13.141l0.068-0.116 324.693-500.053c2.528-4.14 4.025-9.149 4.025-14.508 0-15.467-12.47-28.022-27.905-28.159l-0.013-0h-62.293c-0.509-0.033-1.103-0.051-1.702-0.051-8.746 0-16.561 3.987-21.726 10.244l-0.038 0.048zM561.92 170.667v-56.747c-0.24-15.839-13.137-28.587-29.010-28.587-0.001 0-0.002 0-0.003 0l-42.666-0c-0.127-0.002-0.277-0.003-0.427-0.003-15.788 0-28.587 12.799-28.587 28.587 0 0.001 0 0.002 0 0.003l-0-0v56.747l-114.773-42.667 139.093 209.067c5.583 8.329 14.96 13.739 25.6 13.739s20.017-5.409 25.53-13.628l0.070-0.111 139.093-209.067z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["vuesax"]},"attrs":[{}],"properties":{"order":7524,"id":13,"name":"vuesax","prevSize":32,"code":60207},"setIdx":0,"setId":0,"iconIdx":559},{"icon":{"paths":["M85.333 420.267v0c0.243-87.239 71.020-157.867 158.293-157.867 0 0 0 0 0.001 0l-0-0c-0-0-0-0-0.001-0-87.273 0-158.050 70.627-158.293 157.844l-0 0.023zM242.773 219.733h389.547c-19.653-57.442-73.126-98.025-136.094-98.133l-0.013-0h-266.24c-0.127-0-0.277-0.001-0.427-0.001-79.647 0-144.213 64.567-144.213 144.213 0 0 0 0.001 0 0.001l-0-0v32.853c36.695-47.981 93.883-78.686 158.253-78.933l0.040-0zM808.107 669.867h90.88c21.915 0 39.68-17.765 39.68-39.68v0-95.573c0-21.915-17.765-39.68-39.68-39.68v0h-90.88c-0.008-0-0.017-0-0.027-0-47.128 0-85.333 38.205-85.333 85.333 0 0.75 0.010 1.498 0.029 2.244l-0.002-0.11c-0.017 0.635-0.027 1.383-0.027 2.133 0 47.128 38.205 85.333 85.333 85.333 0.009 0 0.019-0 0.028-0l-0.002 0zM722.773 584.533v0c0 47.128 38.205 85.333 85.333 85.333v0h45.227v-174.933h-45.227c-0.516-0.011-1.124-0.018-1.734-0.018-47.128 0-85.333 38.205-85.333 85.333 0 0.756 0.010 1.51 0.029 2.262l-0.002-0.111zM680.107 584.533c0 70.692 57.308 128 128 128v0h45.227v31.573c0 0 0 0 0 0.001 0 87.273-70.627 158.050-157.844 158.293l-0.023 0h-451.84c-87.423 0-158.293-70.87-158.293-158.293v0-323.413c-0-87.423 70.87-158.293 158.293-158.293h0 453.12c86.686 0.965 156.587 71.461 156.587 158.284 0 0.003-0 0.007-0 0.010l0-0.001v31.573h-45.227c-0.513-0.007-1.118-0.012-1.725-0.012-70.692 0-128 57.308-128 128 0 0.754 0.007 1.507 0.020 2.258l-0.002-0.113zM541.013 453.547c0-17.673-14.327-32-32-32v0h-264.533c-17.673 0-32 14.327-32 32s14.327 32 32 32v0h262.827c0.021 0 0.046 0 0.071 0 17.673 0 32-14.327 32-32 0-0.751-0.026-1.495-0.077-2.233l0.006 0.1z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wallet"]},"attrs":[{}],"properties":{"order":7525,"id":12,"name":"wallet","prevSize":32,"code":60208},"setIdx":0,"setId":0,"iconIdx":560},{"icon":{"paths":["M400.213 154.88h232.96c23.15 0.3 43.322 12.764 54.451 31.282l0.162 0.291 247.467 426.667c2.312 3.772 3.682 8.34 3.682 13.227s-1.369 9.454-3.745 13.339l0.064-0.112-141.653 204.373c-4.344 6.468-11.631 10.667-19.899 10.667-0.054 0-0.109-0-0.163-0.001l0.008 0h-248.747c-0.114 0.002-0.248 0.003-0.383 0.003-8.201 0-15.42-4.207-19.616-10.581l-0.055-0.088-128-184.747c-2.752-3.932-4.397-8.815-4.397-14.082 0-13.563 10.911-24.578 24.435-24.745l0.016-0h190.293c13.441-0.292 24.225-11.257 24.225-24.741 0-4.558-1.232-8.828-3.382-12.496l0.063 0.117-229.12-390.827c-2.241-3.65-3.568-8.070-3.568-12.8 0-13.667 11.079-24.747 24.747-24.747 0.054 0 0.109 0 0.163 0.001l-0.008-0zM232.107 401.92l-141.653 206.933c-3.386 4.822-5.412 10.815-5.412 17.28s2.025 12.458 5.476 17.377l-0.065-0.097 122.88 170.667c5.583 7.429 14.378 12.183 24.284 12.183 11.335 0 21.217-6.226 26.411-15.445l0.079-0.152 218.88-372.48c2.887-4.752 4.596-10.497 4.596-16.642 0-17.909-14.518-32.427-32.427-32.427-0.116 0-0.232 0.001-0.347 0.002l0.018-0h-198.827c-9.874 0.212-18.543 5.183-23.83 12.705l-0.063 0.095z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wanchain"]},"attrs":[{}],"properties":{"order":7526,"id":11,"name":"wanchain","prevSize":32,"code":60209},"setIdx":0,"setId":0,"iconIdx":561},{"icon":{"paths":["M839.253 820.907c-0.902-68.128-31.346-128.97-79.078-170.427l-0.282-0.24-115.627-104.107c-10.069-8.807-16.394-21.679-16.394-36.029 0-12.239 4.601-23.403 12.167-31.857l-0.040 0.046 3.84-3.413 115.627-103.253c48.014-41.696 78.458-102.538 79.358-170.51l0.002-0.157v-14.507c-0.718-54.826-45.33-98.995-100.259-98.995-0.453 0-0.905 0.003-1.356 0.009l0.068-0.001h-451.413c-0.383-0.005-0.835-0.008-1.288-0.008-54.929 0-99.541 44.169-100.258 98.927l-0.001 0.068v14.080c0.902 68.128 31.346 128.97 79.078 170.427l0.282 0.24 115.627 103.253c10.338 8.82 16.851 21.86 16.851 36.422 0 12.255-4.613 23.432-12.197 31.89l0.040-0.045-3.84 3.413-116.48 103.253c-48.014 41.696-78.458 102.538-79.358 170.51l-0.002 0.157v18.347c-0 0.002-0 0.005-0 0.008 0 55.376 44.891 100.267 100.267 100.267 0.45 0 0.899-0.003 1.348-0.009l-0.068 0.001h452.267c0.383 0.005 0.835 0.008 1.288 0.008 54.929 0 99.541-44.169 100.258-98.927l0.001-0.068v-16.64zM654.933 815.787h-281.173c-0.001 0-0.003 0-0.005 0-11.075 0-20.053-8.978-20.053-20.053 0-0.15 0.002-0.3 0.005-0.449l-0 0.022c-0-0.032-0-0.069-0-0.107 0-5.358 2.297-10.18 5.96-13.534l0.014-0.012 103.253-102.827c13.16-12.625 31.059-20.399 50.773-20.399s37.614 7.774 50.799 20.423l-0.025-0.024 103.253 104.107c3.674 3.571 5.953 8.559 5.953 14.080s-2.28 10.509-5.949 14.076l-0.005 0.004c-3.555 2.647-7.95 4.357-12.724 4.689l-0.076 0.004z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["watch"]},"attrs":[{}],"properties":{"order":7527,"id":10,"name":"watch","prevSize":32,"code":60210},"setIdx":0,"setId":0,"iconIdx":562},{"icon":{"paths":["M938.667 486.827c-14.844-223.534-199.796-399.227-425.783-399.227-235.641 0-426.667 191.025-426.667 426.667 0 77.629 20.732 150.415 56.96 213.125l-1.097-2.058-37.973 141.227c-0.863 3.205-1.358 6.884-1.358 10.679 0 8.375 2.413 16.186 6.581 22.777l-0.103-0.175c3.526 6.069 8.437 10.98 14.32 14.406l0.187 0.101c6.157 3.65 13.572 5.808 21.491 5.808 4.044 0 7.956-0.563 11.663-1.614l-0.301 0.073 139.52-38.4c61.726 36.738 136.104 58.453 215.554 58.453 0.119 0 0.239-0 0.358-0l-0.019 0c236.585-3.378 427.076-195.956 427.076-433.025 0-6.617-0.148-13.2-0.442-19.745l0.033 0.93zM682.667 710.827c-48.64 28.16-96 17.92-165.547-21.76-80.799-49.211-145.964-116.7-191.036-196.985l-1.39-2.695c-42.667-82.347-34.56-134.827 5.547-170.667 10.937-11.388 25.798-18.935 42.402-20.46l0.264-0.020c0.349-0.011 0.758-0.018 1.169-0.018 12.649 0 23.854 6.185 30.755 15.695l0.076 0.11 57.6 85.333c1.249 3.749 2.293 8.216 2.939 12.812l0.048 0.415c-0.007 5.872-1.757 11.333-4.761 15.896l0.068-0.109s-21.333 25.173-28.16 32.427c-2.412 1.891-3.948 4.806-3.948 8.079 0 1.896 0.516 3.672 1.414 5.196l-0.026-0.048c31.348 47.544 70.929 86.989 117.077 117.241l1.536 0.945c1.539 0.739 3.346 1.171 5.254 1.171 3.675 0 6.975-1.602 9.241-4.145l0.011-0.012c9.718-9.542 20.010-18.617 30.773-27.123l0.8-0.61c4.629-2.943 10.268-4.691 16.315-4.691 4.438 0 8.657 0.941 12.467 2.635l-0.196-0.078 85.333 58.88c4.177 4.185 8.090 8.638 11.708 13.331l0.239 0.323c0.991 4.469 1.559 9.601 1.559 14.867 0 27.867-15.902 52.019-39.126 63.879l-0.406 0.188z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["whatsapp"]},"attrs":[{}],"properties":{"order":7528,"id":9,"name":"whatsapp","prevSize":32,"code":60211},"setIdx":0,"setId":0,"iconIdx":563},{"icon":{"paths":["M886.187 355.413l-271.36-227.413c-25.85-22.38-59.804-36.016-96.944-36.016-34.536 0-66.317 11.791-91.539 31.567l0.323-0.244-284.16 221.013c-35.513 27.326-58.173 69.841-58.173 117.649 0 6.053 0.363 12.021 1.069 17.884l-0.069-0.707 37.547 320.853c8.849 74.33 71.506 131.414 147.496 131.414 0.196 0 0.392-0 0.588-0.001l-0.030 0h465.92c0.112 0 0.244 0 0.376 0 73.026 0 133.703-52.87 145.843-122.421l0.128-0.886 55.467-313.6c1.239-7.214 1.947-15.524 1.947-23.999 0-46.253-21.088-87.58-54.174-114.892l-0.253-0.203zM512 744.96c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0c23.564 0 42.667 19.103 42.667 42.667s-19.103 42.667-42.667 42.667v0zM619.093 640c-5.789 5.782-13.784 9.359-22.613 9.359s-16.824-3.576-22.614-9.359l0 0c-16.513-17.96-40.12-29.175-66.347-29.175s-49.834 11.215-66.288 29.11l-0.059 0.065c-5.812 5.555-13.707 8.975-22.4 8.975-17.917 0-32.441-14.525-32.441-32.441 0-9.224 3.849-17.548 10.029-23.455l0.012-0.012c27.933-29.7 67.487-48.198 111.36-48.198s83.427 18.497 111.286 48.119l0.074 0.079c6.309 5.862 10.244 14.205 10.244 23.467s-3.935 17.605-10.224 23.448l-0.020 0.018zM710.4 535.467c-5.972 6.772-14.669 11.021-24.358 11.021-7.971 0-15.271-2.876-20.917-7.647l0.048 0.040c-41.247-37.948-96.52-61.21-157.227-61.21s-115.98 23.263-157.392 61.36l0.165-0.15c-5.909 6.993-14.685 11.403-24.49 11.403-17.673 0-32-14.327-32-32 0-10.877 5.426-20.486 13.72-26.268l0.104-0.069s196.267-177.067 399.787 0c5.758 5.785 9.318 13.763 9.318 22.572 0 7.447-2.544 14.3-6.81 19.737l0.053-0.069z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wifi-home"]},"attrs":[{}],"properties":{"order":7529,"id":8,"name":"wifi-home","prevSize":32,"code":60212},"setIdx":0,"setId":0,"iconIdx":564},{"icon":{"paths":["M684.8 85.333h-343.467c-141.385 0-256 114.615-256 256v0 345.6c2.4 139.538 116.080 251.733 255.964 251.733 0.013 0 0.025-0 0.038-0l345.598 0c138.807-2.382 250.558-114.881 251.733-253.754l0.001-0.113v-343.467c0-0.003 0-0.006 0-0.009 0-140.635-113.402-254.783-253.752-255.99l-0.115-0.001zM632.32 686.507c-5.825 8.249-15.296 13.587-26.016 13.653l-0.010 0c-7.030-0.083-13.525-2.306-18.883-6.046l0.109 0.072c-20.237-14.905-45.66-23.854-73.173-23.854s-52.936 8.949-73.517 24.095l0.343-0.241c-5.401 4.288-12.318 6.879-19.84 6.879-17.702 0-32.052-14.35-32.052-32.052 0-10.18 4.746-19.251 12.146-25.123l0.066-0.051c30.781-22.955 69.566-36.753 111.573-36.753s80.793 13.797 112.071 37.107l-0.497-0.354c7.813 5.815 12.82 15.023 12.82 25.4 0 6.423-1.918 12.399-5.213 17.384l0.073-0.118zM728.32 558.507c-5.744 7.569-14.746 12.406-24.878 12.406-6.657 0-12.826-2.088-17.888-5.646l0.099 0.066c-46.82-37.903-107.103-60.849-172.745-60.849-61.712 0-118.687 20.281-164.623 54.542l0.728-0.519c-5.684 5.257-13.315 8.481-21.699 8.481-10.221 0-19.323-4.792-25.181-12.252l-0.052-0.069c-3.702-5.199-5.918-11.678-5.918-18.676 0-9.495 4.081-18.038 10.586-23.968l0.026-0.023c56.281-42.487 127.41-68.050 204.51-68.050 79.814 0 153.229 27.394 211.357 73.292l-0.721-0.549c7.349 5.914 12.013 14.907 12.013 24.99 0 6.765-2.099 13.040-5.682 18.209l0.069-0.106zM791.040 419.84c-5.59 8.283-14.94 13.657-25.546 13.657-0.169 0-0.338-0.001-0.506-0.004l0.025 0c-6.889-0.090-13.241-2.314-18.445-6.040l0.098 0.067c-64.169-49.928-145.901-80.047-234.667-80.047s-170.497 30.119-235.532 80.694l0.865-0.648c-5.688 4.925-13.16 7.926-21.333 7.926-18.045 0-32.673-14.628-32.673-32.673 0-9.872 4.378-18.721 11.298-24.712l0.041-0.035c75.019-56.673 169.847-90.773 272.64-90.773s197.621 34.1 273.79 91.605l-1.15-0.832c9.301 5.606 15.425 15.654 15.425 27.131 0 5.884-1.609 11.392-4.412 16.107l0.080-0.145z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wifi-square"]},"attrs":[{}],"properties":{"order":7530,"id":7,"name":"wifi-square","prevSize":32,"code":60213},"setIdx":0,"setId":0,"iconIdx":565},{"icon":{"paths":["M597.333 853.333c0 47.128-38.205 85.333-85.333 85.333s-85.333-38.205-85.333-85.333c0-47.128 38.205-85.333 85.333-85.333v0c47.128 0 85.333 38.205 85.333 85.333v0zM366.080 630.187l37.12 56.747c30.594-20.569 68.265-32.831 108.8-32.831s78.206 12.262 109.507 33.278l-0.707-0.447 37.12-56.747c4.403-6.605 7.025-14.724 7.025-23.455 0-16.807-9.718-31.345-23.842-38.3l-0.25-0.111c-37.629-17.278-81.638-27.353-128-27.353s-90.371 10.074-129.957 28.153l1.957-0.801c-15.090 6.796-25.406 21.703-25.406 39.019 0 8.477 2.472 16.377 6.735 23.017l-0.102-0.17zM116.48 246.187l37.973 58.453c100.752-66.878 224.498-106.707 357.547-106.707s256.794 39.829 359.964 108.214l-2.417-1.506 37.973-58.453c4.409-6.608 7.035-14.732 7.035-23.47 0-16.137-8.958-30.182-22.173-37.432l-0.222-0.111c-109.162-63.599-240.277-101.143-380.16-101.143s-270.997 37.544-383.816 103.104l3.656-1.961c-13.791 7.258-23.034 21.49-23.034 37.881 0 9.138 2.873 17.605 7.764 24.547l-0.090-0.135zM241.067 437.333l37.973 57.6c65.702-43.384 146.315-69.212 232.96-69.212s167.259 25.827 234.561 70.203l-1.601-0.992 37.973-57.6c4.227-6.508 6.74-14.468 6.74-23.015 0-15.847-8.639-29.676-21.465-37.035l-0.208-0.11c-73.987-40.836-162.187-64.866-256-64.866s-182.013 24.029-258.782 66.269l2.782-1.403c-13.379 7.378-22.291 21.392-22.291 37.487 0 8.942 2.751 17.241 7.452 24.098l-0.094-0.145z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wifi"]},"attrs":[{}],"properties":{"order":7531,"id":6,"name":"wifi","prevSize":32,"code":60214},"setIdx":0,"setId":0,"iconIdx":566},{"icon":{"paths":["M861.013 338.347l-122.88 122.88c-12.081 12.268-28.871 19.868-47.436 19.868-10.194 0-19.852-2.292-28.488-6.388l0.404 0.172c-50.363-24.098-89.999-63.872-113.305-112.91l-0.615-1.437c-4.034-8.271-6.393-17.995-6.393-28.271 0-18.539 7.678-35.286 20.028-47.232l0.018-0.017 122.453-122.88c7.634-8.14 12.324-19.122 12.324-31.199 0-24.446-19.214-44.404-43.364-45.597l-0.107-0.004c-1.739-0.038-3.789-0.059-5.845-0.059-160.001 0-289.707 129.706-289.707 289.707 0 14.319 1.039 28.396 3.045 42.158l-0.187-1.566c0.699 5.023 1.097 10.827 1.097 16.725 0 35.916-14.793 68.377-38.618 91.623l-0.026 0.025-198.4 197.973c-24.713 23.387-40.093 56.417-40.093 93.039 0 31.832 11.62 60.951 30.849 83.345l-0.143-0.171c22.829 25.392 55.786 41.289 92.456 41.289 34.4 0 65.533-13.99 88.019-36.591l0.005-0.005 203.093-202.667c23.304-24.077 55.915-39.023 92.017-39.023 5.767 0 11.444 0.381 17.009 1.12l-0.652-0.071c12.455 1.897 26.825 2.98 41.448 2.98 160.001 0 289.707-129.706 289.707-289.707 0-2.098-0.022-4.191-0.067-6.279l0.005 0.312c-0.775-24.607-20.908-44.26-45.632-44.26-12.478 0-23.786 5.006-32.027 13.119l0.006-0.006zM472.32 609.707l-235.52 235.52c-7.642 7.295-18.017 11.784-29.44 11.784s-21.798-4.489-29.457-11.8l0.017 0.016c-7.174-7.616-11.582-17.907-11.582-29.227s4.408-21.611 11.602-29.248l-0.020 0.022 235.947-235.947c7.616-7.174 17.907-11.582 29.227-11.582s21.611 4.408 29.248 11.602l-0.022-0.020c7.295 7.642 11.784 18.017 11.784 29.44s-4.489 21.798-11.8 29.457l0.016-0.017z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["wrench"]},"attrs":[{}],"properties":{"order":7532,"id":5,"name":"wrench","prevSize":32,"code":60215},"setIdx":0,"setId":0,"iconIdx":567},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM482.987 633.6c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-121.6c0-17.673 14.327-32 32-32s32 14.327 32 32v0zM610.987 633.6c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-128c0.008-0.414 0.012-0.902 0.012-1.391 0-43.747-34.29-79.484-77.459-81.801l-0.206-0.009h-116.053v211.2c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-243.2c0-17.673 14.327-32 32-32v0h148.053c80.354 0 145.493 65.14 145.493 145.493v0zM733.013 633.6c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-243.2c0-17.673 14.327-32 32-32s32 14.327 32 32v0z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["xaomi"]},"attrs":[{}],"properties":{"order":7533,"id":4,"name":"xaomi","prevSize":32,"code":60216},"setIdx":0,"setId":0,"iconIdx":568},{"icon":{"paths":["M689.92 542.72h42.667v85.333h-42.667c-23.564 0-42.667-19.103-42.667-42.667s19.103-42.667 42.667-42.667v0zM940.8 682.667c0 0.005 0 0.011 0 0.017 0 140.335-112.919 254.296-252.854 255.981l-0.159 0.002h-346.453c-0.005 0-0.011 0-0.017 0-140.335 0-254.296-112.919-255.981-252.854l-0.002-0.159v-344.32c-0-0.015-0-0.033-0-0.051 0-139.585 111.715-253.077 250.612-255.944l0.268-0.004h346.453c0.005-0 0.011-0 0.017-0 140.335 0 254.296 112.919 255.981 252.854l0.002 0.159zM416.853 512l100.693-128c4.835-5.724 7.773-13.185 7.773-21.333 0-18.314-14.846-33.16-33.16-33.16-10.166 0-19.263 4.575-25.346 11.778l-0.041 0.049-90.453 117.333-90.453-117.333c-5.881-6.516-14.357-10.593-23.785-10.593-17.673 0-32 14.327-32 32 0 6.656 2.032 12.838 5.51 17.958l-0.072-0.112 100.267 128-100.267 131.413c-4.194 5.36-6.726 12.198-6.726 19.627 0 17.638 14.269 31.942 31.894 32l0.005 0c10.207-0.033 19.284-4.84 25.12-12.303l0.053-0.070 90.453-116.053 90.453 116.48c5.991 7.564 15.175 12.374 25.483 12.374 0.041 0 0.083-0 0.124-0l-0.006 0c0.005 0 0.012 0 0.019 0 7.438 0 14.276-2.572 19.672-6.876l-0.064 0.049c6.842-5.977 11.14-14.717 11.14-24.461 0-6.796-2.091-13.104-5.664-18.316l0.072 0.11zM796.587 363.093c0-17.673-14.327-32-32-32s-32 14.327-32 32v0 116.907h-42.667c-58.91 0-106.667 47.756-106.667 106.667s47.756 106.667 106.667 106.667v0h74.667c17.673 0 32-14.327 32-32v0-298.667z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["xd"]},"attrs":[{}],"properties":{"order":7534,"id":3,"name":"xd","prevSize":32,"code":60217},"setIdx":0,"setId":0,"iconIdx":569},{"icon":{"paths":["M512 85.333c-235.641 0-426.667 191.025-426.667 426.667s191.025 426.667 426.667 426.667c235.641 0 426.667-191.025 426.667-426.667v0c0-235.641-191.025-426.667-426.667-426.667v0zM490.667 613.12c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-81.92l-115.627-66.56v148.48c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-203.947c0.953-10.832 7.174-20.026 16.056-25.091l0.157-0.083c4.557-2.823 10.083-4.496 16-4.496s11.443 1.673 16.132 4.572l179.068 103.177c9.723 5.59 16.175 15.904 16.213 27.728l0 0.006zM776.96 613.12c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-146.773l-115.627 66.133v82.347c0 17.673-14.327 32-32 32s-32-14.327-32-32v0-100.693c0.039-11.829 6.49-22.143 16.058-27.651l0.155-0.082 179.2-102.4c4.557-2.823 10.083-4.496 16-4.496s11.443 1.673 16.132 4.572l-0.132-0.076c9.723 5.59 16.175 15.904 16.213 27.728l0 0.006z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["xmr"]},"attrs":[{}],"properties":{"order":7535,"id":2,"name":"xmr","prevSize":32,"code":60218},"setIdx":0,"setId":0,"iconIdx":570},{"icon":{"paths":["M124.587 164.267c39.819-16.312 86.032-25.78 134.457-25.78 77.377 0 149.108 24.176 208.052 65.385l-1.175-0.778c135.163 103.766 225.181 260.534 238.806 438.675l0.127 2.071s-53.333-101.12-236.8-145.493-359.68-102.827-343.467-334.080zM537.6 590.933c-17.493 26.027-38.4 54.187-63.573 85.333-43.373 50.737-69.768 117.119-69.768 189.667 0 25.843 3.349 50.904 9.638 74.773l-0.457-2.040c122.724-7.139 225.939-83.744 271.437-190.798l0.776-2.055c-27.293-70.127-79.885-125.353-146.291-155.445l-1.762-0.715zM761.173 593.493c6.326-1.944 11.677-5.502 15.751-10.198l0.035-0.042c95.147-108.8 253.013-337.92 52.48-487.68-6.002-4.454-13.556-7.129-21.734-7.129-2.576 0-5.091 0.266-7.517 0.771l0.238-0.041c-78.147 13.057-140.137 70.189-160.109 144.53l-0.318 1.39c-3.658 13.849-6.105 29.929-6.811 46.461l-0.016 0.473c63.822 87.275 108.991 192.183 127.447 306.048l0.553 4.139z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["yii"]},"attrs":[{}],"properties":{"order":7536,"id":1,"name":"yii","prevSize":32,"code":60219},"setIdx":0,"setId":0,"iconIdx":571},{"icon":{"paths":["M728.32 170.667h-432.64c-116.171 0-210.347 94.175-210.347 210.347v0 261.973c0 116.171 94.175 210.347 210.347 210.347v0h432.64c116.171 0 210.347-94.175 210.347-210.347v0-261.973c0-116.171-94.175-210.347-210.347-210.347v0zM600.32 550.827l-130.987 80.213c-6.689 4.124-14.794 6.567-23.471 6.567-24.978 0-45.227-20.249-45.227-45.227 0-0.209 0.001-0.417 0.004-0.625l-0 0.032v-159.573c-0.002-0.176-0.004-0.385-0.004-0.593 0-24.978 20.249-45.227 45.227-45.227 8.676 0 16.782 2.443 23.667 6.679l-0.196-0.112 133.12 80.213c13.168 8.063 21.821 22.371 21.821 38.699 0 16.503-8.839 30.942-22.042 38.84l-0.206 0.114z"],"attrs":[{}],"isMulticolor":false,"isMulticolor2":false,"grid":0,"tags":["youtube"]},"attrs":[{}],"properties":{"order":7537,"id":0,"name":"youtube","prevSize":32,"code":60220},"setIdx":0,"setId":0,"iconIdx":572}],"height":1024,"metadata":{"name":"icomoon"},"preferences":{"showGlyphs":true,"showQuickUse":true,"showQuickUse2":true,"showSVGs":true,"fontPref":{"prefix":"icon-","metadata":{"fontFamily":"icomoon"},"metrics":{"emSize":1024,"baseline":6.25,"whitespace":50},"embed":false},"imagePref":{"prefix":"icon-","png":true,"useClassSelector":true,"color":0,"bgColor":16777215,"classSelector":".icon","name":"icomoon"},"historySize":50,"showCodes":true,"gridSize":16}} \ No newline at end of file diff --git a/src/_metronic/assets/keenicons/solid/style.css b/src/_metronic/assets/keenicons/solid/style.css new file mode 100644 index 0000000..fb1f779 --- /dev/null +++ b/src/_metronic/assets/keenicons/solid/style.css @@ -0,0 +1,1746 @@ +@font-face { + font-family: 'keenicons-solid'; + src: url('fonts/keenicons-solid.eot?812fv7'); + src: url('fonts/keenicons-solid.eot?812fv7#iefix') format('embedded-opentype'), + url('fonts/keenicons-solid.ttf?812fv7') format('truetype'), + url('fonts/keenicons-solid.woff?812fv7') format('woff'), + url('fonts/keenicons-solid.svg?812fv7#keenicons-solid') format('svg'); + font-weight: normal; + font-style: normal; + font-display: block; +} + +.ki-solid { + /* use !important to prevent issues with browser extensions that change fonts */ + font-family: 'keenicons-solid' !important; + speak: never; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + + /* Better Font Rendering =========== */ + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.ki-abstract-1.ki-solid:before { + content: "\e900"; +} +.ki-abstract-2.ki-solid:before { + content: "\e901"; +} +.ki-abstract-3.ki-solid:before { + content: "\e902"; +} +.ki-abstract-4.ki-solid:before { + content: "\e903"; +} +.ki-abstract-5.ki-solid:before { + content: "\e904"; +} +.ki-abstract-6.ki-solid:before { + content: "\e905"; +} +.ki-abstract-7.ki-solid:before { + content: "\e906"; +} +.ki-abstract-8.ki-solid:before { + content: "\e907"; +} +.ki-abstract-9.ki-solid:before { + content: "\e908"; +} +.ki-abstract-10.ki-solid:before { + content: "\e909"; +} +.ki-abstract-11.ki-solid:before { + content: "\e90a"; +} +.ki-abstract-12.ki-solid:before { + content: "\e90b"; +} +.ki-abstract-13.ki-solid:before { + content: "\e90c"; +} +.ki-abstract-14.ki-solid:before { + content: "\e90d"; +} +.ki-abstract-15.ki-solid:before { + content: "\e90e"; +} +.ki-abstract-16.ki-solid:before { + content: "\e90f"; +} +.ki-abstract-17.ki-solid:before { + content: "\e910"; +} +.ki-abstract-18.ki-solid:before { + content: "\e911"; +} +.ki-abstract-19.ki-solid:before { + content: "\e912"; +} +.ki-abstract-20.ki-solid:before { + content: "\e913"; +} +.ki-abstract-21.ki-solid:before { + content: "\e914"; +} +.ki-abstract-22.ki-solid:before { + content: "\e915"; +} +.ki-abstract-23.ki-solid:before { + content: "\e916"; +} +.ki-abstract-24.ki-solid:before { + content: "\e917"; +} +.ki-abstract-25.ki-solid:before { + content: "\e918"; +} +.ki-abstract-26.ki-solid:before { + content: "\e919"; +} +.ki-abstract-27.ki-solid:before { + content: "\e91a"; +} +.ki-abstract-28.ki-solid:before { + content: "\e91b"; +} +.ki-abstract-29.ki-solid:before { + content: "\e91c"; +} +.ki-abstract-30.ki-solid:before { + content: "\e91d"; +} +.ki-abstract-31.ki-solid:before { + content: "\e91e"; +} +.ki-abstract-32.ki-solid:before { + content: "\e91f"; +} +.ki-abstract-33.ki-solid:before { + content: "\e920"; +} +.ki-abstract-34.ki-solid:before { + content: "\e921"; +} +.ki-abstract-35.ki-solid:before { + content: "\e922"; +} +.ki-abstract-36.ki-solid:before { + content: "\e923"; +} +.ki-abstract-37.ki-solid:before { + content: "\e924"; +} +.ki-abstract-38.ki-solid:before { + content: "\e925"; +} +.ki-abstract-39.ki-solid:before { + content: "\e926"; +} +.ki-abstract-40.ki-solid:before { + content: "\e927"; +} +.ki-abstract-41.ki-solid:before { + content: "\e928"; +} +.ki-abstract-42.ki-solid:before { + content: "\e929"; +} +.ki-abstract-43.ki-solid:before { + content: "\e92a"; +} +.ki-abstract-44.ki-solid:before { + content: "\e92b"; +} +.ki-abstract-45.ki-solid:before { + content: "\e92c"; +} +.ki-abstract-46.ki-solid:before { + content: "\e92d"; +} +.ki-abstract-47.ki-solid:before { + content: "\e92e"; +} +.ki-abstract-48.ki-solid:before { + content: "\e92f"; +} +.ki-abstract-49.ki-solid:before { + content: "\e930"; +} +.ki-abstract.ki-solid:before { + content: "\e931"; +} +.ki-add-files.ki-solid:before { + content: "\e932"; +} +.ki-add-folder.ki-solid:before { + content: "\e933"; +} +.ki-add-item.ki-solid:before { + content: "\e934"; +} +.ki-add-notepad.ki-solid:before { + content: "\e935"; +} +.ki-address-book.ki-solid:before { + content: "\e936"; +} +.ki-airplane-square.ki-solid:before { + content: "\e937"; +} +.ki-airplane.ki-solid:before { + content: "\e938"; +} +.ki-airpod.ki-solid:before { + content: "\e939"; +} +.ki-android.ki-solid:before { + content: "\e93a"; +} +.ki-angular.ki-solid:before { + content: "\e93b"; +} +.ki-apple.ki-solid:before { + content: "\e93c"; +} +.ki-archive-tick.ki-solid:before { + content: "\e93d"; +} +.ki-archive.ki-solid:before { + content: "\e93e"; +} +.ki-arrow-circle-left.ki-solid:before { + content: "\e93f"; +} +.ki-arrow-circle-right.ki-solid:before { + content: "\e940"; +} +.ki-arrow-diagonal.ki-solid:before { + content: "\e941"; +} +.ki-arrow-down-left.ki-solid:before { + content: "\e942"; +} +.ki-arrow-down-refraction.ki-solid:before { + content: "\e943"; +} +.ki-arrow-down-right.ki-solid:before { + content: "\e944"; +} +.ki-arrow-down.ki-solid:before { + content: "\e945"; +} +.ki-arrow-left.ki-solid:before { + content: "\e946"; +} +.ki-arrow-mix.ki-solid:before { + content: "\e947"; +} +.ki-arrow-right-left.ki-solid:before { + content: "\e948"; +} +.ki-arrow-right.ki-solid:before { + content: "\e949"; +} +.ki-arrow-two-diagonals.ki-solid:before { + content: "\e94a"; +} +.ki-arrow-up-down.ki-solid:before { + content: "\e94b"; +} +.ki-arrow-up-left.ki-solid:before { + content: "\e94c"; +} +.ki-arrow-up-refraction.ki-solid:before { + content: "\e94d"; +} +.ki-arrow-up-right.ki-solid:before { + content: "\e94e"; +} +.ki-arrow-up.ki-solid:before { + content: "\e94f"; +} +.ki-arrow-zigzag.ki-solid:before { + content: "\e950"; +} +.ki-arrows-circle.ki-solid:before { + content: "\e951"; +} +.ki-arrows-loop.ki-solid:before { + content: "\e952"; +} +.ki-artificial-intelligence.ki-solid:before { + content: "\e953"; +} +.ki-auto-brightness.ki-solid:before { + content: "\e954"; +} +.ki-avalanche.ki-solid:before { + content: "\e955"; +} +.ki-award.ki-solid:before { + content: "\e956"; +} +.ki-badge.ki-solid:before { + content: "\e957"; +} +.ki-bandage.ki-solid:before { + content: "\e958"; +} +.ki-bank.ki-solid:before { + content: "\e959"; +} +.ki-barcode.ki-solid:before { + content: "\e95a"; +} +.ki-basket-ok.ki-solid:before { + content: "\e95b"; +} +.ki-basket.ki-solid:before { + content: "\e95c"; +} +.ki-behance.ki-solid:before { + content: "\e95d"; +} +.ki-bill.ki-solid:before { + content: "\e95e"; +} +.ki-binance-usd.ki-solid:before { + content: "\e95f"; +} +.ki-binance.ki-solid:before { + content: "\e960"; +} +.ki-bitcoin.ki-solid:before { + content: "\e961"; +} +.ki-black-down.ki-solid:before { + content: "\e962"; +} +.ki-black-left-line.ki-solid:before { + content: "\e963"; +} +.ki-black-left.ki-solid:before { + content: "\e964"; +} +.ki-black-right-line.ki-solid:before { + content: "\e965"; +} +.ki-black-right.ki-solid:before { + content: "\e966"; +} +.ki-black-up.ki-solid:before { + content: "\e967"; +} +.ki-bluetooth.ki-solid:before { + content: "\e968"; +} +.ki-book-open.ki-solid:before { + content: "\e969"; +} +.ki-book-square.ki-solid:before { + content: "\e96a"; +} +.ki-book.ki-solid:before { + content: "\e96b"; +} +.ki-bookmark-2.ki-solid:before { + content: "\e96c"; +} +.ki-bookmark.ki-solid:before { + content: "\e96d"; +} +.ki-bootstrap.ki-solid:before { + content: "\e96e"; +} +.ki-briefcase.ki-solid:before { + content: "\e96f"; +} +.ki-brifecase-cros.ki-solid:before { + content: "\e970"; +} +.ki-brifecase-tick.ki-solid:before { + content: "\e971"; +} +.ki-brifecase-timer.ki-solid:before { + content: "\e972"; +} +.ki-brush.ki-solid:before { + content: "\e973"; +} +.ki-bucket-square.ki-solid:before { + content: "\e974"; +} +.ki-bucket.ki-solid:before { + content: "\e975"; +} +.ki-burger-menu-1.ki-solid:before { + content: "\e976"; +} +.ki-burger-menu-2.ki-solid:before { + content: "\e977"; +} +.ki-burger-menu-3.ki-solid:before { + content: "\e978"; +} +.ki-burger-menu-4.ki-solid:before { + content: "\e979"; +} +.ki-burger-menu-5.ki-solid:before { + content: "\e97a"; +} +.ki-burger-menu-6.ki-solid:before { + content: "\e97b"; +} +.ki-burger-menu.ki-solid:before { + content: "\e97c"; +} +.ki-bus.ki-solid:before { + content: "\e97d"; +} +.ki-calculator.ki-solid:before { + content: "\e97e"; +} +.ki-calendar-2.ki-solid:before { + content: "\e97f"; +} +.ki-calendar-8.ki-solid:before { + content: "\e980"; +} +.ki-calendar-add.ki-solid:before { + content: "\e981"; +} +.ki-calendar-edit.ki-solid:before { + content: "\e982"; +} +.ki-calendar-remove.ki-solid:before { + content: "\e983"; +} +.ki-calendar-search.ki-solid:before { + content: "\e984"; +} +.ki-calendar-tick.ki-solid:before { + content: "\e985"; +} +.ki-calendar.ki-solid:before { + content: "\e986"; +} +.ki-call.ki-solid:before { + content: "\e987"; +} +.ki-capsule.ki-solid:before { + content: "\e988"; +} +.ki-car-2.ki-solid:before { + content: "\e989"; +} +.ki-car-3.ki-solid:before { + content: "\e98a"; +} +.ki-car.ki-solid:before { + content: "\e98b"; +} +.ki-category.ki-solid:before { + content: "\e98c"; +} +.ki-cd.ki-solid:before { + content: "\e98d"; +} +.ki-celsius.ki-solid:before { + content: "\e98e"; +} +.ki-chart-line-down-2.ki-solid:before { + content: "\e98f"; +} +.ki-chart-line-down.ki-solid:before { + content: "\e990"; +} +.ki-chart-line-star.ki-solid:before { + content: "\e991"; +} +.ki-chart-line-up-2.ki-solid:before { + content: "\e992"; +} +.ki-chart-line-up.ki-solid:before { + content: "\e993"; +} +.ki-chart-line.ki-solid:before { + content: "\e994"; +} +.ki-chart-pie-3.ki-solid:before { + content: "\e995"; +} +.ki-chart-pie-4.ki-solid:before { + content: "\e996"; +} +.ki-chart-pie-simple.ki-solid:before { + content: "\e997"; +} +.ki-chart-pie-too.ki-solid:before { + content: "\e998"; +} +.ki-chart-simple-2.ki-solid:before { + content: "\e999"; +} +.ki-chart-simple-3.ki-solid:before { + content: "\e99a"; +} +.ki-chart-simple.ki-solid:before { + content: "\e99b"; +} +.ki-chart.ki-solid:before { + content: "\e99c"; +} +.ki-check-circle.ki-solid:before { + content: "\e99d"; +} +.ki-check-square.ki-solid:before { + content: "\e99e"; +} +.ki-check.ki-solid:before { + content: "\e99f"; +} +.ki-cheque.ki-solid:before { + content: "\e9a0"; +} +.ki-chrome.ki-solid:before { + content: "\e9a1"; +} +.ki-classmates.ki-solid:before { + content: "\e9a2"; +} +.ki-click.ki-solid:before { + content: "\e9a3"; +} +.ki-clipboard.ki-solid:before { + content: "\e9a4"; +} +.ki-cloud-add.ki-solid:before { + content: "\e9a5"; +} +.ki-cloud-change.ki-solid:before { + content: "\e9a6"; +} +.ki-cloud-download.ki-solid:before { + content: "\e9a7"; +} +.ki-cloud.ki-solid:before { + content: "\e9a8"; +} +.ki-code.ki-solid:before { + content: "\e9a9"; +} +.ki-coffee.ki-solid:before { + content: "\e9aa"; +} +.ki-color-swatch.ki-solid:before { + content: "\e9ab"; +} +.ki-colors-square.ki-solid:before { + content: "\e9ac"; +} +.ki-compass.ki-solid:before { + content: "\e9ad"; +} +.ki-copy-success.ki-solid:before { + content: "\e9ae"; +} +.ki-copy.ki-solid:before { + content: "\e9af"; +} +.ki-courier-express.ki-solid:before { + content: "\e9b0"; +} +.ki-courier.ki-solid:before { + content: "\e9b1"; +} +.ki-credit-cart.ki-solid:before { + content: "\e9b2"; +} +.ki-cross-circle.ki-solid:before { + content: "\e9b3"; +} +.ki-cross-square.ki-solid:before { + content: "\e9b4"; +} +.ki-cross.ki-solid:before { + content: "\e9b5"; +} +.ki-crown-2.ki-solid:before { + content: "\e9b6"; +} +.ki-crown.ki-solid:before { + content: "\e9b7"; +} +.ki-css.ki-solid:before { + content: "\e9b8"; +} +.ki-cube-2.ki-solid:before { + content: "\e9b9"; +} +.ki-cube-3.ki-solid:before { + content: "\e9ba"; +} +.ki-cup.ki-solid:before { + content: "\e9bb"; +} +.ki-dash.ki-solid:before { + content: "\e9bc"; +} +.ki-data.ki-solid:before { + content: "\e9bd"; +} +.ki-delete-files.ki-solid:before { + content: "\e9be"; +} +.ki-delete-folder.ki-solid:before { + content: "\e9bf"; +} +.ki-delivery-2.ki-solid:before { + content: "\e9c0"; +} +.ki-delivery-3.ki-solid:before { + content: "\e9c1"; +} +.ki-delivery-24.ki-solid:before { + content: "\e9c2"; +} +.ki-delivery-door.ki-solid:before { + content: "\e9c3"; +} +.ki-delivery-geolocation.ki-solid:before { + content: "\e9c4"; +} +.ki-delivery-time.ki-solid:before { + content: "\e9c5"; +} +.ki-delivery.ki-solid:before { + content: "\e9c6"; +} +.ki-design-2.ki-solid:before { + content: "\e9c7"; +} +.ki-design-frame.ki-solid:before { + content: "\e9c8"; +} +.ki-design-mask.ki-solid:before { + content: "\e9c9"; +} +.ki-design.ki-solid:before { + content: "\e9ca"; +} +.ki-devices-2.ki-solid:before { + content: "\e9cb"; +} +.ki-devices.ki-solid:before { + content: "\e9cc"; +} +.ki-diamonds.ki-solid:before { + content: "\e9cd"; +} +.ki-directbox-default.ki-solid:before { + content: "\e9ce"; +} +.ki-disconnect.ki-solid:before { + content: "\e9cf"; +} +.ki-discount.ki-solid:before { + content: "\e9d0"; +} +.ki-disk.ki-solid:before { + content: "\e9d1"; +} +.ki-dislike.ki-solid:before { + content: "\e9d2"; +} +.ki-dj.ki-solid:before { + content: "\e9d3"; +} +.ki-document.ki-solid:before { + content: "\e9d4"; +} +.ki-dollar.ki-solid:before { + content: "\e9d5"; +} +.ki-dots-circle-vertical.ki-solid:before { + content: "\e9d6"; +} +.ki-dots-circle.ki-solid:before { + content: "\e9d7"; +} +.ki-dots-horizontal.ki-solid:before { + content: "\e9d8"; +} +.ki-dots-square-vertical.ki-solid:before { + content: "\e9d9"; +} +.ki-dots-square.ki-solid:before { + content: "\e9da"; +} +.ki-dots-vertical.ki-solid:before { + content: "\e9db"; +} +.ki-double-check-circle.ki-solid:before { + content: "\e9dc"; +} +.ki-double-check.ki-solid:before { + content: "\e9dd"; +} +.ki-double-down.ki-solid:before { + content: "\e9de"; +} +.ki-double-left-arrow.ki-solid:before { + content: "\e9df"; +} +.ki-double-left.ki-solid:before { + content: "\e9e0"; +} +.ki-double-right-arrow.ki-solid:before { + content: "\e9e1"; +} +.ki-double-right.ki-solid:before { + content: "\e9e2"; +} +.ki-double-up.ki-solid:before { + content: "\e9e3"; +} +.ki-down-square.ki-solid:before { + content: "\e9e4"; +} +.ki-down.ki-solid:before { + content: "\e9e5"; +} +.ki-dribbble.ki-solid:before { + content: "\e9e6"; +} +.ki-drop.ki-solid:before { + content: "\e9e7"; +} +.ki-dropbox.ki-solid:before { + content: "\e9e8"; +} +.ki-educare.ki-solid:before { + content: "\e9e9"; +} +.ki-electricity.ki-solid:before { + content: "\e9ea"; +} +.ki-electronic-clock.ki-solid:before { + content: "\e9eb"; +} +.ki-element-1.ki-solid:before { + content: "\e9ec"; +} +.ki-element-2.ki-solid:before { + content: "\e9ed"; +} +.ki-element-3.ki-solid:before { + content: "\e9ee"; +} +.ki-element-4.ki-solid:before { + content: "\e9ef"; +} +.ki-element-5.ki-solid:before { + content: "\e9f0"; +} +.ki-element-6.ki-solid:before { + content: "\e9f1"; +} +.ki-element-7.ki-solid:before { + content: "\e9f2"; +} +.ki-element-8.ki-solid:before { + content: "\e9f3"; +} +.ki-element-9.ki-solid:before { + content: "\e9f4"; +} +.ki-element-10.ki-solid:before { + content: "\e9f5"; +} +.ki-element-11.ki-solid:before { + content: "\e9f6"; +} +.ki-element-12.ki-solid:before { + content: "\e9f7"; +} +.ki-element-equal.ki-solid:before { + content: "\e9f8"; +} +.ki-element-plus.ki-solid:before { + content: "\e9f9"; +} +.ki-emoji-happy.ki-solid:before { + content: "\e9fa"; +} +.ki-enjin-coin.ki-solid:before { + content: "\e9fb"; +} +.ki-entrance-left.ki-solid:before { + content: "\e9fc"; +} +.ki-entrance-right.ki-solid:before { + content: "\e9fd"; +} +.ki-eraser.ki-solid:before { + content: "\e9fe"; +} +.ki-euro.ki-solid:before { + content: "\e9ff"; +} +.ki-exit-down.ki-solid:before { + content: "\ea00"; +} +.ki-exit-left.ki-solid:before { + content: "\ea01"; +} +.ki-exit-right-corner.ki-solid:before { + content: "\ea02"; +} +.ki-exit-right.ki-solid:before { + content: "\ea03"; +} +.ki-exit-up.ki-solid:before { + content: "\ea04"; +} +.ki-external-drive.ki-solid:before { + content: "\ea05"; +} +.ki-eye-slash.ki-solid:before { + content: "\ea06"; +} +.ki-eye.ki-solid:before { + content: "\ea07"; +} +.ki-facebook.ki-solid:before { + content: "\ea08"; +} +.ki-faceid.ki-solid:before { + content: "\ea09"; +} +.ki-fasten.ki-solid:before { + content: "\ea0a"; +} +.ki-fat-rows.ki-solid:before { + content: "\ea0b"; +} +.ki-feather.ki-solid:before { + content: "\ea0c"; +} +.ki-figma.ki-solid:before { + content: "\ea0d"; +} +.ki-file-added.ki-solid:before { + content: "\ea0e"; +} +.ki-file-deleted.ki-solid:before { + content: "\ea0f"; +} +.ki-file-down.ki-solid:before { + content: "\ea10"; +} +.ki-file-left.ki-solid:before { + content: "\ea11"; +} +.ki-file-right.ki-solid:before { + content: "\ea12"; +} +.ki-file-sheet.ki-solid:before { + content: "\ea13"; +} +.ki-file-up.ki-solid:before { + content: "\ea14"; +} +.ki-file.ki-solid:before { + content: "\ea15"; +} +.ki-files-tablet.ki-solid:before { + content: "\ea16"; +} +.ki-filter-edit.ki-solid:before { + content: "\ea17"; +} +.ki-filter-search.ki-solid:before { + content: "\ea18"; +} +.ki-filter-square.ki-solid:before { + content: "\ea19"; +} +.ki-filter-tablet.ki-solid:before { + content: "\ea1a"; +} +.ki-filter-tick.ki-solid:before { + content: "\ea1b"; +} +.ki-filter.ki-solid:before { + content: "\ea1c"; +} +.ki-finance-calculator.ki-solid:before { + content: "\ea1d"; +} +.ki-financial-schedule.ki-solid:before { + content: "\ea1e"; +} +.ki-fingerprint-scanning.ki-solid:before { + content: "\ea1f"; +} +.ki-flag.ki-solid:before { + content: "\ea20"; +} +.ki-flash-circle.ki-solid:before { + content: "\ea21"; +} +.ki-flask.ki-solid:before { + content: "\ea22"; +} +.ki-focus.ki-solid:before { + content: "\ea23"; +} +.ki-folder-added.ki-solid:before { + content: "\ea24"; +} +.ki-folder-down.ki-solid:before { + content: "\ea25"; +} +.ki-folder-up.ki-solid:before { + content: "\ea26"; +} +.ki-folder.ki-solid:before { + content: "\ea27"; +} +.ki-frame.ki-solid:before { + content: "\ea28"; +} +.ki-gear.ki-solid:before { + content: "\ea29"; +} +.ki-general-mouse.ki-solid:before { + content: "\ea2a"; +} +.ki-geolocation-home.ki-solid:before { + content: "\ea2b"; +} +.ki-geolocation.ki-solid:before { + content: "\ea2c"; +} +.ki-ghost.ki-solid:before { + content: "\ea2d"; +} +.ki-gift.ki-solid:before { + content: "\ea2e"; +} +.ki-github.ki-solid:before { + content: "\ea2f"; +} +.ki-glass.ki-solid:before { + content: "\ea30"; +} +.ki-google-play.ki-solid:before { + content: "\ea31"; +} +.ki-google.ki-solid:before { + content: "\ea32"; +} +.ki-graph-2.ki-solid:before { + content: "\ea33"; +} +.ki-graph-3.ki-solid:before { + content: "\ea34"; +} +.ki-graph-4.ki-solid:before { + content: "\ea35"; +} +.ki-graph-up.ki-solid:before { + content: "\ea36"; +} +.ki-graph.ki-solid:before { + content: "\ea37"; +} +.ki-grid-2.ki-solid:before { + content: "\ea38"; +} +.ki-grid-frame.ki-solid:before { + content: "\ea39"; +} +.ki-grid.ki-solid:before { + content: "\ea3a"; +} +.ki-handcart.ki-solid:before { + content: "\ea3b"; +} +.ki-happy-emoji.ki-solid:before { + content: "\ea3c"; +} +.ki-heart-circle.ki-solid:before { + content: "\ea3d"; +} +.ki-heart.ki-solid:before { + content: "\ea3e"; +} +.ki-home-1.ki-solid:before { + content: "\ea3f"; +} +.ki-home-2.ki-solid:before { + content: "\ea40"; +} +.ki-home-3.ki-solid:before { + content: "\ea41"; +} +.ki-home.ki-solid:before { + content: "\ea42"; +} +.ki-html.ki-solid:before { + content: "\ea43"; +} +.ki-icon.ki-solid:before { + content: "\ea44"; +} +.ki-illustrator.ki-solid:before { + content: "\ea45"; +} +.ki-information-2.ki-solid:before { + content: "\ea46"; +} +.ki-information-3.ki-solid:before { + content: "\ea47"; +} +.ki-information-4.ki-solid:before { + content: "\ea48"; +} +.ki-information-5.ki-solid:before { + content: "\ea49"; +} +.ki-information.ki-solid:before { + content: "\ea4a"; +} +.ki-instagram.ki-solid:before { + content: "\ea4b"; +} +.ki-joystick.ki-solid:before { + content: "\ea4c"; +} +.ki-js-2.ki-solid:before { + content: "\ea4d"; +} +.ki-js.ki-solid:before { + content: "\ea4e"; +} +.ki-kanban.ki-solid:before { + content: "\ea4f"; +} +.ki-key-square.ki-solid:before { + content: "\ea50"; +} +.ki-key.ki-solid:before { + content: "\ea51"; +} +.ki-keyboard.ki-solid:before { + content: "\ea52"; +} +.ki-laptop.ki-solid:before { + content: "\ea53"; +} +.ki-laravel.ki-solid:before { + content: "\ea54"; +} +.ki-left-square.ki-solid:before { + content: "\ea55"; +} +.ki-left.ki-solid:before { + content: "\ea56"; +} +.ki-like-2.ki-solid:before { + content: "\ea57"; +} +.ki-like-folder.ki-solid:before { + content: "\ea58"; +} +.ki-like-shapes.ki-solid:before { + content: "\ea59"; +} +.ki-like-tag.ki-solid:before { + content: "\ea5a"; +} +.ki-like.ki-solid:before { + content: "\ea5b"; +} +.ki-loading.ki-solid:before { + content: "\ea5c"; +} +.ki-lock-2.ki-solid:before { + content: "\ea5d"; +} +.ki-lock-3.ki-solid:before { + content: "\ea5e"; +} +.ki-lock.ki-solid:before { + content: "\ea5f"; +} +.ki-logistic.ki-solid:before { + content: "\ea60"; +} +.ki-lots-shopping.ki-solid:before { + content: "\ea61"; +} +.ki-lovely.ki-solid:before { + content: "\ea62"; +} +.ki-lts.ki-solid:before { + content: "\ea63"; +} +.ki-magnifier.ki-solid:before { + content: "\ea64"; +} +.ki-map.ki-solid:before { + content: "\ea65"; +} +.ki-mask.ki-solid:before { + content: "\ea66"; +} +.ki-maximize.ki-solid:before { + content: "\ea67"; +} +.ki-medal-star.ki-solid:before { + content: "\ea68"; +} +.ki-menu.ki-solid:before { + content: "\ea69"; +} +.ki-message-add.ki-solid:before { + content: "\ea6a"; +} +.ki-message-edit.ki-solid:before { + content: "\ea6b"; +} +.ki-message-minus.ki-solid:before { + content: "\ea6c"; +} +.ki-message-notif.ki-solid:before { + content: "\ea6d"; +} +.ki-message-programming.ki-solid:before { + content: "\ea6e"; +} +.ki-message-question.ki-solid:before { + content: "\ea6f"; +} +.ki-message-text-2.ki-solid:before { + content: "\ea70"; +} +.ki-message-text.ki-solid:before { + content: "\ea71"; +} +.ki-messages.ki-solid:before { + content: "\ea72"; +} +.ki-microsoft.ki-solid:before { + content: "\ea73"; +} +.ki-milk.ki-solid:before { + content: "\ea74"; +} +.ki-minus-circle.ki-solid:before { + content: "\ea75"; +} +.ki-minus-folder.ki-solid:before { + content: "\ea76"; +} +.ki-minus-square.ki-solid:before { + content: "\ea77"; +} +.ki-minus.ki-solid:before { + content: "\ea78"; +} +.ki-monitor-mobile.ki-solid:before { + content: "\ea79"; +} +.ki-moon.ki-solid:before { + content: "\ea7a"; +} +.ki-more-2.ki-solid:before { + content: "\ea7b"; +} +.ki-mouse-circle.ki-solid:before { + content: "\ea7c"; +} +.ki-mouse-square.ki-solid:before { + content: "\ea7d"; +} +.ki-mouse.ki-solid:before { + content: "\ea7e"; +} +.ki-nexo.ki-solid:before { + content: "\ea7f"; +} +.ki-night-day.ki-solid:before { + content: "\ea80"; +} +.ki-note-2.ki-solid:before { + content: "\ea81"; +} +.ki-note.ki-solid:before { + content: "\ea82"; +} +.ki-notepad-bookmark.ki-solid:before { + content: "\ea83"; +} +.ki-notepad-edit.ki-solid:before { + content: "\ea84"; +} +.ki-notepad.ki-solid:before { + content: "\ea85"; +} +.ki-notification-2.ki-solid:before { + content: "\ea86"; +} +.ki-notification-bing.ki-solid:before { + content: "\ea87"; +} +.ki-notification-circle.ki-solid:before { + content: "\ea88"; +} +.ki-notification-favorite.ki-solid:before { + content: "\ea89"; +} +.ki-notification-on.ki-solid:before { + content: "\ea8a"; +} +.ki-notification-status.ki-solid:before { + content: "\ea8b"; +} +.ki-notification.ki-solid:before { + content: "\ea8c"; +} +.ki-ocean.ki-solid:before { + content: "\ea8d"; +} +.ki-office-bag.ki-solid:before { + content: "\ea8e"; +} +.ki-package.ki-solid:before { + content: "\ea8f"; +} +.ki-pails.ki-solid:before { + content: "\ea90"; +} +.ki-paintbucket.ki-solid:before { + content: "\ea91"; +} +.ki-paper-clip.ki-solid:before { + content: "\ea92"; +} +.ki-parcel-tracking.ki-solid:before { + content: "\ea93"; +} +.ki-parcel.ki-solid:before { + content: "\ea94"; +} +.ki-password-check.ki-solid:before { + content: "\ea95"; +} +.ki-paypal.ki-solid:before { + content: "\ea96"; +} +.ki-pencil.ki-solid:before { + content: "\ea97"; +} +.ki-people.ki-solid:before { + content: "\ea98"; +} +.ki-percentage.ki-solid:before { + content: "\ea99"; +} +.ki-phone.ki-solid:before { + content: "\ea9a"; +} +.ki-photoshop.ki-solid:before { + content: "\ea9b"; +} +.ki-picture.ki-solid:before { + content: "\ea9c"; +} +.ki-pill.ki-solid:before { + content: "\ea9d"; +} +.ki-pin.ki-solid:before { + content: "\ea9e"; +} +.ki-plus-circle.ki-solid:before { + content: "\ea9f"; +} +.ki-plus-square.ki-solid:before { + content: "\eaa0"; +} +.ki-plus.ki-solid:before { + content: "\eaa1"; +} +.ki-pointers.ki-solid:before { + content: "\eaa2"; +} +.ki-price-tag.ki-solid:before { + content: "\eaa3"; +} +.ki-printer.ki-solid:before { + content: "\eaa4"; +} +.ki-profile-circle.ki-solid:before { + content: "\eaa5"; +} +.ki-profile-user.ki-solid:before { + content: "\eaa6"; +} +.ki-pulse.ki-solid:before { + content: "\eaa7"; +} +.ki-purchase.ki-solid:before { + content: "\eaa8"; +} +.ki-python.ki-solid:before { + content: "\eaa9"; +} +.ki-question-2.ki-solid:before { + content: "\eaaa"; +} +.ki-question.ki-solid:before { + content: "\eaab"; +} +.ki-questionnaire-tablet.ki-solid:before { + content: "\eaac"; +} +.ki-ranking.ki-solid:before { + content: "\eaad"; +} +.ki-react.ki-solid:before { + content: "\eaae"; +} +.ki-receipt-square.ki-solid:before { + content: "\eaaf"; +} +.ki-rescue.ki-solid:before { + content: "\eab0"; +} +.ki-right-left.ki-solid:before { + content: "\eab1"; +} +.ki-right-square.ki-solid:before { + content: "\eab2"; +} +.ki-right.ki-solid:before { + content: "\eab3"; +} +.ki-rocket.ki-solid:before { + content: "\eab4"; +} +.ki-route.ki-solid:before { + content: "\eab5"; +} +.ki-router.ki-solid:before { + content: "\eab6"; +} +.ki-row-horizontal.ki-solid:before { + content: "\eab7"; +} +.ki-row-vertical.ki-solid:before { + content: "\eab8"; +} +.ki-safe-home.ki-solid:before { + content: "\eab9"; +} +.ki-satellite.ki-solid:before { + content: "\eaba"; +} +.ki-save-2.ki-solid:before { + content: "\eabb"; +} +.ki-save-deposit.ki-solid:before { + content: "\eabc"; +} +.ki-scan-barcode.ki-solid:before { + content: "\eabd"; +} +.ki-scooter-2.ki-solid:before { + content: "\eabe"; +} +.ki-scooter.ki-solid:before { + content: "\eabf"; +} +.ki-screen.ki-solid:before { + content: "\eac0"; +} +.ki-scroll.ki-solid:before { + content: "\eac1"; +} +.ki-search-list.ki-solid:before { + content: "\eac2"; +} +.ki-security-check.ki-solid:before { + content: "\eac3"; +} +.ki-security-user.ki-solid:before { + content: "\eac4"; +} +.ki-send.ki-solid:before { + content: "\eac5"; +} +.ki-setting-2.ki-solid:before { + content: "\eac6"; +} +.ki-setting-3.ki-solid:before { + content: "\eac7"; +} +.ki-setting-4.ki-solid:before { + content: "\eac8"; +} +.ki-setting.ki-solid:before { + content: "\eac9"; +} +.ki-share.ki-solid:before { + content: "\eaca"; +} +.ki-shield-cross.ki-solid:before { + content: "\eacb"; +} +.ki-shield-search.ki-solid:before { + content: "\eacc"; +} +.ki-shield-slash.ki-solid:before { + content: "\eacd"; +} +.ki-shield-tick.ki-solid:before { + content: "\eace"; +} +.ki-shield.ki-solid:before { + content: "\eacf"; +} +.ki-ship.ki-solid:before { + content: "\ead0"; +} +.ki-shop.ki-solid:before { + content: "\ead1"; +} +.ki-simcard-2.ki-solid:before { + content: "\ead2"; +} +.ki-simcard.ki-solid:before { + content: "\ead3"; +} +.ki-size.ki-solid:before { + content: "\ead4"; +} +.ki-slack.ki-solid:before { + content: "\ead5"; +} +.ki-slider-horizontal-2.ki-solid:before { + content: "\ead6"; +} +.ki-slider-horizontal.ki-solid:before { + content: "\ead7"; +} +.ki-slider-vertical-2.ki-solid:before { + content: "\ead8"; +} +.ki-slider-vertical.ki-solid:before { + content: "\ead9"; +} +.ki-slider.ki-solid:before { + content: "\eada"; +} +.ki-sms.ki-solid:before { + content: "\eadb"; +} +.ki-snapchat.ki-solid:before { + content: "\eadc"; +} +.ki-social-media.ki-solid:before { + content: "\eadd"; +} +.ki-soft-2.ki-solid:before { + content: "\eade"; +} +.ki-soft-3.ki-solid:before { + content: "\eadf"; +} +.ki-soft.ki-solid:before { + content: "\eae0"; +} +.ki-some-files.ki-solid:before { + content: "\eae1"; +} +.ki-sort.ki-solid:before { + content: "\eae2"; +} +.ki-speaker.ki-solid:before { + content: "\eae3"; +} +.ki-spotify.ki-solid:before { + content: "\eae4"; +} +.ki-spring-framework.ki-solid:before { + content: "\eae5"; +} +.ki-square-brackets.ki-solid:before { + content: "\eae6"; +} +.ki-star.ki-solid:before { + content: "\eae7"; +} +.ki-status.ki-solid:before { + content: "\eae8"; +} +.ki-subtitle.ki-solid:before { + content: "\eae9"; +} +.ki-sun.ki-solid:before { + content: "\eaea"; +} +.ki-support-24.ki-solid:before { + content: "\eaeb"; +} +.ki-switch.ki-solid:before { + content: "\eaec"; +} +.ki-syringe.ki-solid:before { + content: "\eaed"; +} +.ki-tablet-book.ki-solid:before { + content: "\eaee"; +} +.ki-tablet-delete.ki-solid:before { + content: "\eaef"; +} +.ki-tablet-down.ki-solid:before { + content: "\eaf0"; +} +.ki-tablet-ok.ki-solid:before { + content: "\eaf1"; +} +.ki-tablet-text-down.ki-solid:before { + content: "\eaf2"; +} +.ki-tablet-text-up.ki-solid:before { + content: "\eaf3"; +} +.ki-tablet-up.ki-solid:before { + content: "\eaf4"; +} +.ki-tablet.ki-solid:before { + content: "\eaf5"; +} +.ki-tag-cross.ki-solid:before { + content: "\eaf6"; +} +.ki-tag.ki-solid:before { + content: "\eaf7"; +} +.ki-teacher.ki-solid:before { + content: "\eaf8"; +} +.ki-tech-wifi.ki-solid:before { + content: "\eaf9"; +} +.ki-technology-2.ki-solid:before { + content: "\eafa"; +} +.ki-technology-3.ki-solid:before { + content: "\eafb"; +} +.ki-technology-4.ki-solid:before { + content: "\eafc"; +} +.ki-technology.ki-solid:before { + content: "\eafd"; +} +.ki-telephone-geolocation.ki-solid:before { + content: "\eafe"; +} +.ki-test-tubes.ki-solid:before { + content: "\eaff"; +} +.ki-text-align-center.ki-solid:before { + content: "\eb00"; +} +.ki-text-align-justify-center.ki-solid:before { + content: "\eb01"; +} +.ki-text-align-left.ki-solid:before { + content: "\eb02"; +} +.ki-text-align-right.ki-solid:before { + content: "\eb03"; +} +.ki-text-bold.ki-solid:before { + content: "\eb04"; +} +.ki-text-circle.ki-solid:before { + content: "\eb05"; +} +.ki-text-italic.ki-solid:before { + content: "\eb06"; +} +.ki-text-number.ki-solid:before { + content: "\eb07"; +} +.ki-text-strikethrough.ki-solid:before { + content: "\eb08"; +} +.ki-text-underline.ki-solid:before { + content: "\eb09"; +} +.ki-text.ki-solid:before { + content: "\eb0a"; +} +.ki-thermometer.ki-solid:before { + content: "\eb0b"; +} +.ki-theta.ki-solid:before { + content: "\eb0c"; +} +.ki-tiktok.ki-solid:before { + content: "\eb0d"; +} +.ki-time.ki-solid:before { + content: "\eb0e"; +} +.ki-timer.ki-solid:before { + content: "\eb0f"; +} +.ki-to-left.ki-solid:before { + content: "\eb10"; +} +.ki-to-right.ki-solid:before { + content: "\eb11"; +} +.ki-toggle-off-circle.ki-solid:before { + content: "\eb12"; +} +.ki-toggle-off.ki-solid:before { + content: "\eb13"; +} +.ki-toggle-on-circle.ki-solid:before { + content: "\eb14"; +} +.ki-toggle-on.ki-solid:before { + content: "\eb15"; +} +.ki-trailer.ki-solid:before { + content: "\eb16"; +} +.ki-trash-square.ki-solid:before { + content: "\eb17"; +} +.ki-trash.ki-solid:before { + content: "\eb18"; +} +.ki-tree.ki-solid:before { + content: "\eb19"; +} +.ki-trello.ki-solid:before { + content: "\eb1a"; +} +.ki-triangle.ki-solid:before { + content: "\eb1b"; +} +.ki-truck.ki-solid:before { + content: "\eb1c"; +} +.ki-ts.ki-solid:before { + content: "\eb1d"; +} +.ki-twitch.ki-solid:before { + content: "\eb1e"; +} +.ki-twitter.ki-solid:before { + content: "\eb1f"; +} +.ki-two-credit-cart.ki-solid:before { + content: "\eb20"; +} +.ki-underlining.ki-solid:before { + content: "\eb21"; +} +.ki-up-down.ki-solid:before { + content: "\eb22"; +} +.ki-up-square.ki-solid:before { + content: "\eb23"; +} +.ki-up.ki-solid:before { + content: "\eb24"; +} +.ki-update-file.ki-solid:before { + content: "\eb25"; +} +.ki-update-folder.ki-solid:before { + content: "\eb26"; +} +.ki-user-edit.ki-solid:before { + content: "\eb27"; +} +.ki-user-square.ki-solid:before { + content: "\eb28"; +} +.ki-user-tick.ki-solid:before { + content: "\eb29"; +} +.ki-user.ki-solid:before { + content: "\eb2a"; +} +.ki-verify.ki-solid:before { + content: "\eb2b"; +} +.ki-vibe.ki-solid:before { + content: "\eb2c"; +} +.ki-virus.ki-solid:before { + content: "\eb2d"; +} +.ki-vue.ki-solid:before { + content: "\eb2e"; +} +.ki-vuesax.ki-solid:before { + content: "\eb2f"; +} +.ki-wallet.ki-solid:before { + content: "\eb30"; +} +.ki-wanchain.ki-solid:before { + content: "\eb31"; +} +.ki-watch.ki-solid:before { + content: "\eb32"; +} +.ki-whatsapp.ki-solid:before { + content: "\eb33"; +} +.ki-wifi-home.ki-solid:before { + content: "\eb34"; +} +.ki-wifi-square.ki-solid:before { + content: "\eb35"; +} +.ki-wifi.ki-solid:before { + content: "\eb36"; +} +.ki-wrench.ki-solid:before { + content: "\eb37"; +} +.ki-xaomi.ki-solid:before { + content: "\eb38"; +} +.ki-xd.ki-solid:before { + content: "\eb39"; +} +.ki-xmr.ki-solid:before { + content: "\eb3a"; +} +.ki-yii.ki-solid:before { + content: "\eb3b"; +} +.ki-youtube.ki-solid:before { + content: "\eb3c"; +} diff --git a/src/_metronic/assets/sass/_init.scss b/src/_metronic/assets/sass/_init.scss new file mode 100644 index 0000000..c57634b --- /dev/null +++ b/src/_metronic/assets/sass/_init.scss @@ -0,0 +1,32 @@ +// +// Main init file of global bootstrap and theme functions, mixins, variables and config +// + + +// Custom functions & mixins +@import "./core/base/functions"; +@import "./core/base/mixins"; +@import "./core/components/mixins"; +@import "./core/vendors/plugins/mixins"; + +// Custom variables +@import "components/variables.custom"; +@import "./core/components/variables"; +@import "./core/components/variables-dark"; +@import "components/variables.override"; + +// Bootstrap initializaton +@import "bootstrap/scss/functions"; +@import "bootstrap/scss/variables"; +@import "bootstrap/scss/variables-dark"; +@import "bootstrap/scss/maps"; +@import "bootstrap/scss/mixins"; +@import "bootstrap/scss/utilities"; + +// 3rd-Party plugins variables +@import "./core/vendors/plugins/variables"; +@import "./core/vendors/plugins/variables-dark"; + +// Custom layout variables +@import "./core/layout/base/variables"; +@import "layout/variables.custom"; \ No newline at end of file diff --git a/src/_metronic/assets/sass/components/_btn-secondary.scss b/src/_metronic/assets/sass/components/_btn-secondary.scss new file mode 100644 index 0000000..e729108 --- /dev/null +++ b/src/_metronic/assets/sass/components/_btn-secondary.scss @@ -0,0 +1,36 @@ +// +// Secondary button +// + +// Desktop mode +@include media-breakpoint-up(lg) { + .btn.btn-secondary { + @include button-custom-variant( + $color: null, + $icon-color: var(--#{$prefix}gray-600), + $border-color: null, + $bg-color: var(--#{$prefix}gray-200), + $color-active: null, + $icon-color-active: var(--#{$prefix}primary), + $border-color-active: null, + $bg-color-active: var(--#{$prefix}gray-300), + ); + } +} + +@include color-mode(dark) { + // Secondary button + .btn.btn-secondary { + @include button-custom-variant( + $color: null, + $icon-color: #878794, + $border-color: null, + $bg-color: #1A1A1A, + $color-active: null, + $icon-color-active: null, + $border-color-active: null, + $bg-color-active: #1A1A1A, + ); + } +} + diff --git a/src/_metronic/assets/sass/components/_landing.scss b/src/_metronic/assets/sass/components/_landing.scss new file mode 100644 index 0000000..34f3024 --- /dev/null +++ b/src/_metronic/assets/sass/components/_landing.scss @@ -0,0 +1,136 @@ +// +// Landing elements +// + +// Variables +$landing-dark-color: #13263C; +$landing-header-height: 100px; +$landing-header-height-tablet-and-mobile: 70px; +$landing-header-sticky-height: 70px; +$landing-header-sticky-height-tablet-and-mobile: 70px; + +// Utility classes +.landing-dark-bg { + background-color: $landing-dark-color; +} + +.landing-dark-color { + color: $landing-dark-color; +} + +.landing-dark-border { + border:1px dashed #2C3F5B; +} + +.landing-dark-separator { + border-top:1px dashed #2C3F5B; +} + +.landing-curve { + position: relative; + + svg { + position: relative; + top: 0; + display: block; + } +} + +// Landing header +.landing-header { + display: flex; + align-items: center; + height: $landing-header-height; + + // Logos + .logo-default { + display: block; + } + + .logo-sticky { + display: none; + } + + // Menu + .menu { + // Menu link + .menu-link { + &.active { + color: $white; + } + } + + // Header menu sticky mode + [data-kt-sticky-landing-header="on"] & { + // Menu link + .menu-link { + &.active { + color: $primary; + background-color: rgba(#EFF2F5, 0.4); + } + } + } + } + + // Sticky header modes + [data-kt-sticky-landing-header="on"] & { + padding: 0; + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 100; + background-color: $white; + box-shadow: 0px 10px 30px 0px rgba(82,63,105,0.05); + height: $landing-header-sticky-height; + + // Logos + .logo-sticky { + display: block; + } + + .logo-default { + display: none; + } + } +} + +// Fix body padding top when Landing sticky header is on +body[data-kt-sticky-landing-header="on"] { + padding-top: $landing-header-height; +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Landing header + .landing-header { + height: $landing-header-height-tablet-and-mobile; + + // Menu wrapper + .landing-menu-wrapper { + position: relative; + overflow: auto; + } + + // Sticky header modes + [data-kt-sticky-landing-header="on"] & { + height: $landing-header-sticky-height-tablet-and-mobile; + } + + // Menu + .menu { + // Menu link + .menu-link { + &.active { + color: $primary; + background-color: rgba(#EFF2F5, 0.4); + } + } + } + } + + // Fix body padding top when Landing sticky header is on + body[data-kt-sticky-landing-header="on"] { + padding-top: $landing-header-height-tablet-and-mobile; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/components/_variables.custom.scss b/src/_metronic/assets/sass/components/_variables.custom.scss new file mode 100644 index 0000000..c013a04 --- /dev/null +++ b/src/_metronic/assets/sass/components/_variables.custom.scss @@ -0,0 +1,6 @@ +// +// To make future updates easier consider overriding the global variables from _variables.bootstrap.scss and _variables.custom.scss for current demo in this file. +// Note that this file is included first and variables defined in _variables.bootstrap.scss and _variables.custom.scss +// are not accessible in this file but you can override any global variable as shown below: +// + diff --git a/src/_metronic/assets/sass/components/_variables.override.scss b/src/_metronic/assets/sass/components/_variables.override.scss new file mode 100644 index 0000000..8774439 --- /dev/null +++ b/src/_metronic/assets/sass/components/_variables.override.scss @@ -0,0 +1,15 @@ +// +// To make future updates easier consider overriding the global variables from _variables.bootstrap.scss and _variables.custom.scss for current demo in this file. +// Note that this file is included first and variables defined in _variables.bootstrap.scss and _variables.custom.scss +// are not accessible in this file but you can override any global variable as shown below: +// + +// Body bg +$body-bg-dark: $coal-100; + +// Card +$card-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.03); +$card-box-shadow-dark: none; +$card-border-enabled: true; +$card-border-color: $gray-200; +$card-border-color-dark: $dark-light-dark; \ No newline at end of file diff --git a/src/_metronic/assets/sass/components/components.scss b/src/_metronic/assets/sass/components/components.scss new file mode 100644 index 0000000..aaf34d6 --- /dev/null +++ b/src/_metronic/assets/sass/components/components.scss @@ -0,0 +1,8 @@ +// +// Components +// + +// Import Dependencies +@import "stepper/multistep"; +@import "landing"; +@import "btn-secondary"; diff --git a/src/_metronic/assets/sass/components/stepper/_multistep.scss b/src/_metronic/assets/sass/components/stepper/_multistep.scss new file mode 100644 index 0000000..0fa5eba --- /dev/null +++ b/src/_metronic/assets/sass/components/stepper/_multistep.scss @@ -0,0 +1,42 @@ +// +// Multistep stepper +// + +// Custom +.stepper.stepper-pills.stepper-multistep { + --#{$prefix}stepper-pills-size: 46px; + --#{$prefix}stepper-icon-border-radius: 9px; + --#{$prefix}stepper-icon-check-size: 1.25rem; + + --#{$prefix}stepper-icon-bg-color: rgba(255, 255, 255, 0.03); + --#{$prefix}stepper-icon-bg-color-current: var(--#{$prefix}success); + --#{$prefix}stepper-icon-bg-color-completed: rgba(255, 255, 255, 0.03); + + --#{$prefix}stepper-icon-border: 1px dashed rgba(255, 255, 255, 0.3); + --#{$prefix}stepper-icon-border-current: 0; + --#{$prefix}stepper-icon-border-completed: 1px dashed rgba(255, 255, 255, 0.3); + + --#{$prefix}stepper-icon-number-color: var(--#{$prefix}white); + --#{$prefix}stepper-icon-number-color-current: var(--#{$prefix}white); + --#{$prefix}stepper-icon-number-color-completed: var(--#{$prefix}white); + + --#{$prefix}stepper-icon-check-color-completed: var(--#{$prefix}success); + + --#{$prefix}stepper-label-title-opacity: 0.7; + --#{$prefix}stepper-label-title-opacity-current: 1; + --#{$prefix}stepper-label-title-opacity-completed: 1; + + --#{$prefix}stepper-label-title-color: var(--#{$prefix}white); + --#{$prefix}stepper-label-title-color-current: var(--#{$prefix}white); + --#{$prefix}stepper-label-title-color-completed: var(--#{$prefix}white); + + --#{$prefix}stepper-label-desc-opacity: 0.7; + --#{$prefix}stepper-label-desc-opacity-current: 0.7; + --#{$prefix}stepper-label-desc-opacity-completed: 0.7; + + --#{$prefix}stepper-label-desc-color: var(--#{$prefix}white); + --#{$prefix}stepper-label-desc-color-current: var(--#{$prefix}white); + --#{$prefix}stepper-label-desc-color-completed: var(--#{$prefix}white); + + --#{$prefix}stepper-line-border: 1px dashed rgba(255, 255, 255, 0.3); +} diff --git a/src/_metronic/assets/sass/core/base/_functions.scss b/src/_metronic/assets/sass/core/base/_functions.scss new file mode 100644 index 0000000..0551f4b --- /dev/null +++ b/src/_metronic/assets/sass/core/base/_functions.scss @@ -0,0 +1,10 @@ +// +// Functions +// + +// Import Dependencies +@import "functions/get"; +@import "functions/set"; +@import "functions/math"; +@import "functions/valueif"; +@import "functions/theme-colors"; diff --git a/src/_metronic/assets/sass/core/base/_mixins.scss b/src/_metronic/assets/sass/core/base/_mixins.scss new file mode 100644 index 0000000..93acae0 --- /dev/null +++ b/src/_metronic/assets/sass/core/base/_mixins.scss @@ -0,0 +1,11 @@ +// +// Mixins +// + +// Import Dependencies +@import "mixins/property"; +@import "mixins/browsers"; +@import "mixins/fixes"; +@import "mixins/reset"; +@import "mixins/placeholder"; +@import "mixins/breakpoints"; diff --git a/src/_metronic/assets/sass/core/base/functions/_get.scss b/src/_metronic/assets/sass/core/base/functions/_get.scss new file mode 100644 index 0000000..775e4a1 --- /dev/null +++ b/src/_metronic/assets/sass/core/base/functions/_get.scss @@ -0,0 +1,82 @@ +// +// Get +// + +@function get($map, $keys...) { + @if length($keys) == 1 { + $keys: nth($keys, 1); + } + + @if type-of($map) != 'map' or $map == null { + //@return false; + } + + $warn: "#{nth($keys, 1)}"; + $length: length($keys); + $get: map-get($map, nth($keys, 1)); + + @if $length > 1 { + @for $i from 2 through $length { + @if $get != null and type-of($get) == 'map' { + $warn: $warn + "->#{nth($keys, $i)}"; + $get: map-get($get, nth($keys, $i)); + + @if $get == null { + @return null; + } + } + @else { + @return get-warning($warn, $get, nth($keys, $i)); + } + } + } + + @return $get; +} + +@function has($map, $keys...) { + @if length($keys) == 1 { + $keys: nth($keys, 1); + } + + @if type-of($map) != 'map' or $map == null { + //@return false; + } + + $warn: "#{nth($keys, 1)}"; + $length: length($keys); + $get: map-get($map, nth($keys, 1)); + + @if $length > 1 { + @for $i from 2 through $length { + @if $get != null and type-of($get) == 'map' { + $warn: $warn + "->#{nth($keys, $i)}"; + $get: map-get($get, nth($keys, $i)); + + @if $get == null { + @return false; + } + } + @else { + @return false; + } + } + } + + @if $get != null { + @return true; + } + @else { + @return false; + } +} + +@function get-warning($warn, $get, $key) { + @if $get == null { + @warn "Map has no value for key search `#{$warn}`"; + } + @else if type-of($get) != 'map' { + @warn "Non-map value found for key search `#{$warn}`, cannot search for key `#{$key}`"; + } + @return null; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/base/functions/_math.scss b/src/_metronic/assets/sass/core/base/functions/_math.scss new file mode 100644 index 0000000..e5766ff --- /dev/null +++ b/src/_metronic/assets/sass/core/base/functions/_math.scss @@ -0,0 +1,15 @@ +// +// Math +// + +@function sqrt($r) { + $x0: 1; + $x1: $x0; + + @for $i from 1 through 10 { + $x1: $x0 - ($x0 * $x0 - abs($r)) / (2 * $x0); + $x0: $x1; + } + + @return $x1; +} diff --git a/src/_metronic/assets/sass/core/base/functions/_set.scss b/src/_metronic/assets/sass/core/base/functions/_set.scss new file mode 100644 index 0000000..91690a8 --- /dev/null +++ b/src/_metronic/assets/sass/core/base/functions/_set.scss @@ -0,0 +1,43 @@ +/// Deep set function to set a value in nested maps + +@function set($map, $keys, $value) { + $maps: ($map,); + $result: null; + + // If the last key is a map already + // Warn the user we will be overriding it with $value + @if type-of(nth($keys, -1)) == "map" { + @warn "The last key you specified is a map; it will be overrided with `#{$value}`."; + } + + // If $keys is a single key + // Just merge and return + @if length($keys) == 1 { + @return map-merge($map, ($keys: $value)); + } + + // Loop from the first to the second to last key from $keys + // Store the associated map to this key in the $maps list + // If the key doesn't exist, throw an error + @for $i from 1 through length($keys) - 1 { + $current-key: nth($keys, $i); + $current-map: nth($maps, -1); + $current-get: map-get($current-map, $current-key); + @if $current-get == null { + @error "Key `#{$key}` doesn't exist at current level in map."; + } + $maps: append($maps, $current-get); + } + + // Loop from the last map to the first one + // Merge it with the previous one + @for $i from length($maps) through 1 { + $current-map: nth($maps, $i); + $current-key: nth($keys, $i); + $current-val: if($i == length($maps), $value, $result); + $result: map-merge($current-map, ($current-key: $current-val)); + } + + // Return result + @return $result; +} diff --git a/src/_metronic/assets/sass/core/base/functions/_theme-colors.scss b/src/_metronic/assets/sass/core/base/functions/_theme-colors.scss new file mode 100644 index 0000000..6c9fd7f --- /dev/null +++ b/src/_metronic/assets/sass/core/base/functions/_theme-colors.scss @@ -0,0 +1,15 @@ +// +// Bootstrap extended functions +// + +@function theme-inverse-color($key: "primary") { + @return get($theme-inverse-colors, $key); +} + +@function theme-active-color($key: "primary") { + @return get($theme-active-colors, $key); +} + +@function theme-light-color($key: "primary") { + @return get($theme-light-colors, $key); +} diff --git a/src/_metronic/assets/sass/core/base/functions/_valueif.scss b/src/_metronic/assets/sass/core/base/functions/_valueif.scss new file mode 100644 index 0000000..ac3de28 --- /dev/null +++ b/src/_metronic/assets/sass/core/base/functions/_valueif.scss @@ -0,0 +1,13 @@ +// +// valueif +// + +@function valueif($check, $trueValue, $falseValue: null) { + @if $check { + @return $trueValue; + } @else if $falseValue != null { + @return $falseValue; + } @else { + @return null; + } +} diff --git a/src/_metronic/assets/sass/core/base/mixins/_breakpoints.scss b/src/_metronic/assets/sass/core/base/mixins/_breakpoints.scss new file mode 100644 index 0000000..d335b9a --- /dev/null +++ b/src/_metronic/assets/sass/core/base/mixins/_breakpoints.scss @@ -0,0 +1,25 @@ +// Media of at most the maximum and minimum breakpoint widths. No query for the largest breakpoint. +// Makes the @content apply to the given breakpoint. + +@mixin media-breakpoint-direction($direction, $name, $breakpoints: $grid-breakpoints) { + @if $direction == up { + $min: breakpoint-min($name, $breakpoints); + + @if $min { + @media (min-width: $min) { + @content; + } + } @else { + @content; + } + + } @else if $direction == down { + $max: breakpoint-max($name, $breakpoints); + + @if $max { + @media (max-width: $max) { + @content; + } + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/base/mixins/_browsers.scss b/src/_metronic/assets/sass/core/base/mixins/_browsers.scss new file mode 100644 index 0000000..5aaa31c --- /dev/null +++ b/src/_metronic/assets/sass/core/base/mixins/_browsers.scss @@ -0,0 +1,23 @@ +// +// Browsers +// + +@mixin for-edge { + // Microsoft Edge + @supports (-ms-ime-align:auto) { + @content; + } +} + +@mixin for-safari { + .safari { + @content; + } +} + +@mixin for-firefox { + // Firefox + @-moz-document url-prefix() { + @content; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/base/mixins/_fixes.scss b/src/_metronic/assets/sass/core/base/mixins/_fixes.scss new file mode 100644 index 0000000..5f07525 --- /dev/null +++ b/src/_metronic/assets/sass/core/base/mixins/_fixes.scss @@ -0,0 +1,15 @@ +// +// Fixes +// + + +@mixin fix-fixed-position-lags() { + // webkit hack for smooth font view on fixed positioned elements + -webkit-backface-visibility:hidden; + backface-visibility:hidden; +} + +@mixin fix-animation-lags() { + transform: translateZ(0); + -webkit-transform-style: preserve-3d; +} diff --git a/src/_metronic/assets/sass/core/base/mixins/_placeholder.scss b/src/_metronic/assets/sass/core/base/mixins/_placeholder.scss new file mode 100644 index 0000000..2119683 --- /dev/null +++ b/src/_metronic/assets/sass/core/base/mixins/_placeholder.scss @@ -0,0 +1,16 @@ +// +// Input placeholder color +// + +@mixin placeholder($color) { + // Chrome, Firefox, Opera, Safari 10.1+ + &::placeholder { + color: $color; + } + + // Firefox + &::-moz-placeholder { + color: $color; + opacity: 1; + } +} diff --git a/src/_metronic/assets/sass/core/base/mixins/_property.scss b/src/_metronic/assets/sass/core/base/mixins/_property.scss new file mode 100644 index 0000000..d93c3ec --- /dev/null +++ b/src/_metronic/assets/sass/core/base/mixins/_property.scss @@ -0,0 +1,9 @@ +// +// CSS Property +// + +@mixin property($attr, $value, $important: '') { + @if $value != null and $value != false { + #{$attr}: #{$value} #{$important}; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/base/mixins/_reset.scss b/src/_metronic/assets/sass/core/base/mixins/_reset.scss new file mode 100644 index 0000000..b796a6e --- /dev/null +++ b/src/_metronic/assets/sass/core/base/mixins/_reset.scss @@ -0,0 +1,23 @@ +// +// Reset +// + +@mixin button-reset() { + appearance: none; + box-shadow: none; + border-radius: 0; + border: none; + cursor: pointer; + background-color: transparent; + outline: none !important; + margin: 0; + padding: 0; +} + +@mixin input-reset() { + border: 0; + background-color: transparent; + outline: none !important; + box-shadow: none; + border-radius: 0; +} diff --git a/src/_metronic/assets/sass/core/components/_accordion.scss b/src/_metronic/assets/sass/core/components/_accordion.scss new file mode 100644 index 0000000..41a4a1f --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_accordion.scss @@ -0,0 +1,107 @@ +// +// Accordion +// + +// Base +.accordion { + // According heading + .accordion-header { + cursor: pointer; + } + + // Icon toggle mode + &.accordion-icon-toggle { + // Accordion icon expaned mode + .accordion-icon { + display: flex; + flex-shrink: 0; + transition: $transition-base; + transform: rotate(90deg); + align-items: center; + justify-content: center; + + i, + .svg-icon { + color: var(--#{$prefix}primary); + } + } + + // Accordion icon collapsed mode + .collapsed { + .accordion-icon { + transition: $transition-base; + transform: rotate(0); + + i, + .svg-icon { + color: var(--#{$prefix}text-muted); + } + } + } + } + + // Icon collapse mode + &.accordion-icon-collapse { + // Accordion icon expaned mode + .accordion-icon { + display: flex; + flex-shrink: 0; + align-items: center; + justify-content: center; + transition: $transition-base; + + .accordion-icon-on { + display: inline-flex; + } + + .accordion-icon-off { + display: none; + } + + i, + .svg-icon { + color: var(--#{$prefix}primary); + } + } + + // Accordion icon collapsed mode + .collapsed { + .accordion-icon { + transition: $transition-base; + + .accordion-icon-on { + display: none; + } + + .accordion-icon-off { + display: inline-flex; + } + + i, + .svg-icon { + color: var(--#{$prefix}text-muted); + } + } + } + } + + // Reset accordion item border + &.accordion-borderless { + // According item + .accordion-item { + border: 0; + } + } + + // Reset accordion item border, border radiues and background color + &.accordion-flush { + // According item + .accordion-item { + background-color: transparent; + border: 0; + border-radius: 0; + padding-left: 0; + padding-right: 0; + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_alert.scss b/src/_metronic/assets/sass/core/components/_alert.scss new file mode 100644 index 0000000..94c6c1d --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_alert.scss @@ -0,0 +1,15 @@ +// +// Alert +// + +@each $name, $value in $theme-colors { + .alert-#{$name} { + color: var(--#{$prefix}#{$name}); + border-color: var(--#{$prefix}#{$name}); + background-color: var(--#{$prefix}#{$name}-light); + + .alert-link { + color: var(--#{$prefix}#{$name}); + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_anchor.scss b/src/_metronic/assets/sass/core/components/_anchor.scss new file mode 100644 index 0000000..4899681 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_anchor.scss @@ -0,0 +1,37 @@ +// +// Anchor +// + +.anchor { + display: flex; + align-items: center; + + a { + position: relative; + display: none; + align-items: center; + justify-content:flex-start; + height: 1em; + width: 1.25em; + margin-left: -1.25em; + font-weight: 500; + font-size: 0.8em; + color: var(--#{$prefix}text-muted); + transition: $transition-base; + + &:before { + content: '#'; + } + } + + &:hover { + a { + display: flex; + + &:hover { + color: var(--#{$prefix}primary); + transition: $transition-base; + } + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_animation.scss b/src/_metronic/assets/sass/core/components/_animation.scss new file mode 100644 index 0000000..c008782 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_animation.scss @@ -0,0 +1,81 @@ +// +// Animation +// + +// Base +.animation { + animation-duration: 1s; + animation-fill-mode: both; +} + +// Slide In Down +@keyframes animationSlideInDown { + from { + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + to { + transform: translate3d(0, 0, 0); + } +} + +.animation-slide-in-down { + animation-name: animationSlideInDown; +} + +// Slide In Up +@keyframes animationSlideInUp { + from { + transform: translate3d(0, 100%, 0); + visibility: visible; + } + + to { + transform: translate3d(0, 0, 0); + } +} + +.animation-slide-in-up { + animation-name: animationSlideInUp; +} + +// Fade In +@keyframes animationFadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + +.animation-fade-in { + animation-name: animationFadeIn; +} + +// Fade Out +@keyframes animationFadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} +.animation-fade-out { + animation-name: animationFadeOut; +} + +// Blink +.animation-blink { + animation: animationBlink 1s steps(5, start) infinite; +} + +@keyframes animationBlink { + to { + visibility: hidden; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_badge.scss b/src/_metronic/assets/sass/core/components/_badge.scss new file mode 100644 index 0000000..f1d7c05 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_badge.scss @@ -0,0 +1,85 @@ +// +// Badge +// + +.badge { + display: inline-flex; + align-items: center; + + // Fixed size + &.badge-circle, + &.badge-square { + display: inline-flex; + align-items: center; + justify-content: center; + height: $badge-size; + min-width: $badge-size; + padding: 0 0.1rem; + line-height: 0; + } + + // Circle + &.badge-circle { + border-radius: 50%; + padding: 0; + min-width: unset; + width: $badge-size; + } + + // Sizes + &.badge-sm { + min-width: $badge-size-sm; + font-size: $badge-font-size-sm; + + &.badge-square { + height: $badge-size-sm; + } + + &.badge-circle { + width: $badge-size-sm; + height: $badge-size-sm; + } + } + + &.badge-lg { + min-width: $badge-size-lg; + font-size: $badge-font-size-lg; + + &.badge-square { + height: $badge-size-lg; + } + + &.badge-circle { + width: $badge-size-lg; + height: $badge-size-lg; + } + } +} + +@each $name, $value in $theme-colors { + .badge-#{$name} { + color: var(--#{$prefix}#{$name}-inverse); + background-color: var(--#{$prefix}#{$name}); + + &.badge-outline { + border: 1px solid var(--#{$prefix}#{$name}); + background-color: transparent; + + @if $name == 'secondary' { + color: var(--#{$prefix}#{$name}-inverse); + } @else { + color: var(--#{$prefix}#{$name}); + } + } + } + + .badge-light-#{$name} { + background-color: var(--#{$prefix}#{$name}-light); + + @if $name == 'secondary' { + color: var(--#{$prefix}#{$name}-inverse); + } @else { + color: var(--#{$prefix}#{$name}); + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_blockui.scss b/src/_metronic/assets/sass/core/components/_blockui.scss new file mode 100644 index 0000000..3a0d029 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_blockui.scss @@ -0,0 +1,53 @@ +// +// BlockUI +// + + +.blockui { + position: relative; + + .blockui-overlay { + transition: all 0.3s ease; + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; + justify-content: center; + align-items: center; + background-color: var(--#{$prefix}blockui-overlay-bg); + + .spinner-border { + height: 1.35rem; + width: 1.35rem; + } + } + + .blockui-message { + display: flex; + align-items: center; + @include border-radius($border-radius); + box-shadow: var(--#{$prefix}blockui-message-box-shadow); + background-color: var(--#{$prefix}blockui-message-bg); + color: var(--#{$prefix}gray-700); + font-weight: $font-weight-bold; + margin: 0 !important; + width: auto; + padding: 0.85rem 1.75rem !important; + + .spinner-border { + margin-right: 0.65rem; + } + } +} + +@if $enable-dark-mode { + @include color-mode(dark) { + .blockui { + --#{$prefix}blockui-overlay-bg: #{$blockui-overlay-bg-dark}; + --#{$prefix}blockui-message-bg: #{$blockui-message-bg-dark}; + --#{$prefix}blockui-message-box-shadow: #{$blockui-message-box-shadow-dark}; + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_breadcrumb.scss b/src/_metronic/assets/sass/core/components/_breadcrumb.scss new file mode 100644 index 0000000..dc53248 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_breadcrumb.scss @@ -0,0 +1,69 @@ +// +// Breadcrumb +// + +// Breadcrumb +.breadcrumb { + display: flex; + align-items: center; + background-color: transparent; + padding: 0; + margin: 0; + + // Item breadcrumb + .breadcrumb-item { + display: flex; + align-items: center; + padding-left: $breadcrumb-item-padding-x; + + &:last-child { + padding-right: 0; + } + + &:after { + padding-left: $breadcrumb-item-padding-x; + content: "/"; + } + + &:before { + display: none; + } + + &:first-child { + padding-left: 0; + } + + &:last-child { + &:after { + display: none; + } + } + } +} + +// Breadcrumb line style +.breadcrumb-line { + .breadcrumb-item { + &:after { + content: "-"; + } + } +} + +// Breadcrumb dot style +.breadcrumb-dot { + .breadcrumb-item { + &:after { + content: "\2022"; + } + } +} + +// Breadcrumb separatorless style +.breadcrumb-separatorless { + .breadcrumb-item { + &:after { + display:none; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_bullet.scss b/src/_metronic/assets/sass/core/components/_bullet.scss new file mode 100644 index 0000000..1228b28 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_bullet.scss @@ -0,0 +1,33 @@ +// +// Bullet +// + +// Base +.bullet { + display: inline-block; + background-color: var(--#{$prefix}bullet-bg-color); + @include border-radius($bullet-bar-border-radius); + width: $bullet-bar-width; + height: $bullet-bar-height; + flex-shrink: 0; +} + +// Dot bullet +.bullet-dot { + width: $bullet-dot-size; + height: $bullet-dot-size; + border-radius: 100% !important; +} + +// Vertical bullet +.bullet-vertical { + width: $bullet-bar-height; + height: $bullet-bar-width; +} + +// Vertical line +.bullet-line { + width: $bullet-line-width; + height: $bullet-line-height; + border-radius: 0; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_buttons.scss b/src/_metronic/assets/sass/core/components/_buttons.scss new file mode 100644 index 0000000..9ca3257 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_buttons.scss @@ -0,0 +1,7 @@ +// +// Buttons +// + +// Import Dependencies +@import "buttons/base"; +@import "buttons/theme"; diff --git a/src/_metronic/assets/sass/core/components/_card.scss b/src/_metronic/assets/sass/core/components/_card.scss new file mode 100644 index 0000000..2941657 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_card.scss @@ -0,0 +1,321 @@ +// +// Card +// + +// Base +.card { + --#{$prefix}card-box-shadow: var(--#{$prefix}root-card-box-shadow); + --#{$prefix}card-border-color: var(--#{$prefix}root-card-border-color); + + @if ($card-border-enabled) { + border: $card-border-width $card-border-style var(--#{$prefix}card-border-color); + } @else { + border: 0; + } + + // Header + .card-header { + display: flex; + justify-content: space-between; + align-items: stretch; + flex-wrap: wrap; + min-height: $card-header-height; + padding: 0 $card-px; + color: var(--#{$prefix}card-cap-color); + background-color: var(--#{$prefix}card-cap-bg); + border-bottom: $card-border-width $card-border-style var(--#{$prefix}card-border-color); + + // Title + .card-title { + display: flex; + align-items: center; + margin: $card-header-py; + margin-left: 0; + + &.flex-column { + align-items: flex-start; + justify-content: center; + } + + .card-icon { + margin-right: 0.75rem; + line-height: 0; + + i { + font-size: 1.25rem; + color: var(--#{$prefix}gray-600); + line-height: 0; + + &:after, + &:before { + line-height: 0; + } + } + + .svg-icon { + color: var(--#{$prefix}gray-600); + @include svg-icon-size(24px); + } + } + + &, + .card-label { + font-weight: 500; + font-size: 1.275rem; + color: var(--#{$prefix}text-gray-900); + } + + .card-label { + margin: 0 0.75rem 0 0; + flex-wrap: wrap; + } + + // Description + small { + color: var(--#{$prefix}text-muted); + font-size: 1rem; + } + + // Headings + h1, h2, h3, h4, h5, h6 { + margin-bottom: 0; + } + } + + // Toolbar + .card-toolbar { + display: flex; + align-items: center; + margin: $card-header-py 0; + flex-wrap: wrap; + } + } + + // Body + .card-body { + padding: $card-py $card-px; + color: var(--#{$prefix}card-color); + } + + // Footer + .card-footer { + padding: $card-py $card-px; + color: var(--#{$prefix}card-cap-color); + background-color: var(--#{$prefix}card-cap-bg); + border-top: $card-border-width $card-border-style var(--#{$prefix}card-border-color); + } + + // Scroll + .card-scroll { + position: relative; + overflow: auto; + } + + // Reset padding x + &.card-px-0 { + .card-header, + .card-body, + .card-footer { + padding-left: 0; + padding-right: 0; + } + } + + &.card-py-0 { + .card-header, + .card-body, + .card-footer { + padding-top: 0; + padding-bottom: 0; + } + } + + &.card-p-0 { + .card-header, + .card-body, + .card-footer { + padding: 0; + } + } + + // Dashed style + &.card-dashed { + box-shadow: none; + border: $card-border-width dashed $card-border-dashed-color; + + > .card-header { + border-bottom: 1px dashed $card-border-dashed-color; + } + + > .card-footer { + border-top: 1px dashed $card-border-dashed-color; + } + } + + // Bordered style + &.card-bordered { + box-shadow: none; + border: $card-border-width $card-border-style $card-border-color; + } + + // Flush header and footer borders + &.card-flush { + > .card-header { + border-bottom: 0 !important; + } + + > .card-footer { + border-top: 0 !important; + } + } + + // Enable shadow + &.card-shadow { + box-shadow: var(--#{$prefix}card-box-shadow); + border: 0; + } + + // Reset styles + &.card-reset { + border: 0 !important; + box-shadow: none !important; + background-color: transparent !important; + + > .card-header { + border-bottom: 0 !important; + } + + > .card-footer { + border-top: 0 !important; + } + } + + // Reset borders + &.card-borderless { + border: 0 !important; + + > .card-header { + border-bottom: 0 !important; + } + + > .card-footer { + border-top: 0 !important; + } + } + + // Reset borders + &.card-border-0 { + border: 0 !important; + } +} + +// Responsive stretch heights +.card { + @each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + // Stretch + &.card#{$infix}-stretch { + height: calc(100% - var(--#{$prefix}gutter-y)); + } + + // Stretch 75 + &.card#{$infix}-stretch-75 { + height: calc(75% - var(--#{$prefix}gutter-y)); + } + + // Stretch 50 + &.card#{$infix}-stretch-50 { + height: calc(50% - var(--#{$prefix}gutter-y)); + } + + // Stretch 33 + &.card#{$infix}-stretch-33 { + height: calc(33.333% - var(--#{$prefix}gutter-y)); + } + + // Stretch 25 + &.card#{$infix}-stretch-25 { + height: calc(25% - var(--#{$prefix}gutter-y)); + } + + // Header stretch + .card-header#{$infix}-stretch { + padding-top: 0 !important; + padding-bottom: 0 !important; + align-items: stretch; + + .card-toolbar { + margin: 0; + align-items: stretch; + } + } + } + } +} + +// Utilities +.card-p { + padding: $card-py $card-px !important; +} + +.card-border { + border: $card-border-width $card-border-style var(--#{$prefix}root-card-border-color) !important; +} + +.card-px { + padding-left: $card-px !important; + padding-right: $card-px !important; +} + +.card-shadow { + box-shadow: var(--#{$prefix}card-box-shadow); +} + +.card-py { + padding-top: $card-py !important; + padding-bottom: $card-py !important; +} + +.card-rounded { + border-radius: $card-border-radius; +} + +.card-rounded-start { + border-top-left-radius: $card-border-radius; + border-bottom-left-radius: $card-border-radius; +} + +.card-rounded-end { + border-top-right-radius: $card-border-radius; + border-bottom-right-radius: $card-border-radius; +} + +.card-rounded-top { + border-top-left-radius: $card-border-radius; + border-top-right-radius: $card-border-radius; +} + +.card-rounded-bottom { + border-bottom-left-radius: $card-border-radius; + border-bottom-right-radius: $card-border-radius; +} + +// Mobile mode +@include media-breakpoint-down(md) { + .card { + > .card-header:not(.flex-nowrap) { + padding-top: $card-header-py; + padding-bottom: $card-header-py; + } + } +} + +@if $enable-dark-mode { + @include color-mode(dark) { + .card { + --#{$prefix}card-box-shadow: #{$card-box-shadow-dark}; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_carousel.scss b/src/_metronic/assets/sass/core/components/_carousel.scss new file mode 100644 index 0000000..4bb117b --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_carousel.scss @@ -0,0 +1,130 @@ +// +// Carousel +// + + +.carousel-custom { + // Indicators + .carousel-indicators { + align-items: center; + position: static; + z-index: auto; + margin: 0; + padding: 0; + list-style: none; + + li { + transform: none; + opacity: 1; + + &.active { + transform: none; + opacity: 1; + } + } + + // Dots style + &.carousel-indicators-dots { + li { + border-radius: 0; + background-color: transparent !important; + height: $carousel-custom-dots-indicator-active-size; + width: $carousel-custom-dots-indicator-active-size; + display: flex; + align-items: center; + justify-content: center; + text-align: center; + + &:after { + display: inline-block; + content: " "; + @include border-radius(50%); + transition: all $carousel-custom-indicator-transition-speed ease; + background-color: $carousel-custom-indicator-default-bg-color; + height: $carousel-custom-dots-indicator-default-size; + width: $carousel-custom-dots-indicator-default-size; + } + + &.active { + background-color: transparent; + + &:after { + transition: all $carousel-custom-indicator-transition-speed ease; + height: $carousel-custom-dots-indicator-active-size; + width: $carousel-custom-dots-indicator-active-size; + background-color: $carousel-custom-indicator-active-bg-color; + } + } + } + } + + // Bullet style + &.carousel-indicators-bullet { + li { + transition: all $carousel-custom-indicator-transition-speed ease; + background-color: transparent !important; + border-radius: $carousel-custom-bullet-indicator-default-size; + height: $carousel-custom-bullet-indicator-default-size; + width: $carousel-custom-bullet-indicator-default-size; + display: flex; + align-items: center; + justify-content: center; + text-align: center; + + &:after { + display: inline-block; + content: " "; + transition: all $carousel-custom-indicator-transition-speed ease; + background-color: $carousel-custom-bullet-indicator-default-bg-color; + border-radius: $carousel-custom-bullet-indicator-default-size; + height: $carousel-custom-bullet-indicator-default-size; + width: $carousel-custom-bullet-indicator-default-size; + } + + &.active { + transition: all $carousel-custom-indicator-transition-speed ease; + background-color: transparent; + height: $carousel-custom-bullet-indicator-default-size; + width: $carousel-custom-bullet-indicator-active-width; + + &:after { + transition: all $carousel-custom-indicator-transition-speed ease; + height: $carousel-custom-bullet-indicator-default-size; + width: $carousel-custom-bullet-indicator-active-width; + background-color: $carousel-custom-bullet-indicator-active-bg-color; + } + } + } + } + } + + // Theme colors + @each $name, $value in $theme-colors { + .carousel-indicators-active-#{$name} { + li.active:after { + background-color: var(--#{$prefix}#{$name}) !important; + } + } + } + + // Stretch mode + &.carousel-stretch { + height: 100%; + display: flex; + flex-direction: column; + + .carousel-inner { + flex-grow: 1; + } + + .carousel-item { + height: 100%; + } + + .carousel-wrapper { + display: flex; + flex-direction: column; + height: 100%; + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_code.scss b/src/_metronic/assets/sass/core/components/_code.scss new file mode 100644 index 0000000..a22b2e1 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_code.scss @@ -0,0 +1,24 @@ +// +// Code +// + +code:not([class*="language-"]) { + font-weight: $code-font-weight; + color: var(--#{$prefix}code-color); + border: 1px solid var(--#{$prefix}code-border-color); + background-color: var(--#{$prefix}code-bg); + @include border-radius($code-border-radius); + line-height: inherit; + font-size: $code-font-size; + padding: $code-padding; + margin: $code-margin; + box-shadow: $code-shadow; + + @each $name, $value in $theme-colors { + &.code-#{$name} { + color: var(--#{$prefix}#{$name}); + background-color: var(--#{$prefix}#{$name}-light); + border: 1px solid var(--#{$prefix}#{$name}); + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_cookiealert.scss b/src/_metronic/assets/sass/core/components/_cookiealert.scss new file mode 100644 index 0000000..539756e --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_cookiealert.scss @@ -0,0 +1,8 @@ +// +// Cookie Alert +// + +.cookiealert{ + background: inherit; + color: inherit; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_drawer.scss b/src/_metronic/assets/sass/core/components/_drawer.scss new file mode 100644 index 0000000..97d22f3 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_drawer.scss @@ -0,0 +1,78 @@ +// +// Drawer +// + +// Drawer +.drawer { + display: flex !important; + overflow: auto; + z-index: $drawer-z-index; + position: fixed; + top: 0; + bottom: 0; + background-color: var(--#{$prefix}drawer-bg-color); + transition: transform $drawer-transition-speed ease-in-out !important; + + &.drawer-start { + left: 0; + transform: translateX(-100%); + } + + &.drawer-end { + right: 0; + transform: translateX(100%); + } + + &.drawer-bottom { + bottom: 0; + top: auto; + left: 0; + right: 0; + transform: translateY(100%); + } + + &.drawer-top { + top: 0; + bottom: auto; + left: 0; + right: 0; + transform: translateY(-100%); + } + + &.drawer-on { + transform: none; + box-shadow: var(--#{$prefix}drawer-box-shadow); + transition: transform $drawer-transition-speed ease-in-out !important; + } +} + +// Drawer Overlay +.drawer-overlay { + position: fixed; + top: 0; + left: 0; + bottom: 0; + right: 0; + overflow: hidden; + z-index: $drawer-z-index - 1; + background-color: var(--#{$prefix}drawer-overlay-bg-color); + animation: animation-drawer-fade-in $drawer-overlay-animation-speed ease-in-out 1; +} + +// Initial state +[data-kt-drawer="true"] { + display: none; +} + +// Animation +@keyframes animation-drawer-fade-in { + from { opacity: 0; } + to { opacity: 1; } +} + +// Tablet & Mobile Modes +@include media-breakpoint-down(lg) { + body[data-kt-drawer="on"] { + overflow: hidden; + } +} diff --git a/src/_metronic/assets/sass/core/components/_dropdown.scss b/src/_metronic/assets/sass/core/components/_dropdown.scss new file mode 100644 index 0000000..161d11c --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_dropdown.scss @@ -0,0 +1,12 @@ + +// +// Dropdown +// + +@if $enable-dark-mode { + @include color-mode(dark) { + .dropdown-menu { + @include box-shadow($dropdown-box-shadow-dark); + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_engage.scss b/src/_metronic/assets/sass/core/components/_engage.scss new file mode 100644 index 0000000..e18f7ba --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_engage.scss @@ -0,0 +1,118 @@ +// +// Engage panel(used for demo product demo) +// + +.app-engage { + position: fixed; + right: 0; + top: 50%; + transform: translateY(-50%); + display: flex; + flex-direction: column; + align-items: flex-end; + z-index: $engage-z-index; + padding-right: 12px; + + .app-engage-btn { + display: flex; + align-items: center; + justify-content: center; + flex-direction: column; + box-shadow: var(--#{$prefix}engage-btn-box-shadow); + border-width: 1px; + border-style: solid; + font-size: 12px; + font-weight: $font-weight-bold; + margin-bottom: 8px; + @include border-radius(6px); + width: 66px; + height: 70px; + + @include button-custom-variant( + $color: var(--#{$prefix}engage-btn-color), + $icon-color: var(--#{$prefix}engage-btn-icon-color), + $border-color: var(--#{$prefix}engage-btn-border-color), + $bg-color: var(--#{$prefix}engage-btn-bg), + $color-active: null, + $icon-color-active: null, + $border-color-active: null, + $bg-color-active: null + ); + + &.hover-dark:hover { + color: var(--#{$prefix}dark-inverse); + border-color: var(--#{$prefix}dark); + background-color: var(--#{$prefix}dark); + + i, + .svg-icon { + color: var(--#{$prefix}dark-inverse); + } + } + + &.hover-primary:hover { + color: var(--#{$prefix}primary-inverse); + border-color: var(--#{$prefix}primary); + background-color: var(--#{$prefix}primary); + + i, + .svg-icon { + color: var(--#{$prefix}primary-inverse); + } + } + + &.hover-success:hover { + color: var(--#{$prefix}success-inverse); + border-color: var(--#{$prefix}success); + background-color: var(--#{$prefix}success); + + i, + .svg-icon { + color: var(--#{$prefix}success-inverse); + } + } + + &.app-engage-btn-toggle-off { + width: 35px; + height: 35px; + } + + &.app-engage-btn-toggle-on { + width: 35px; + height: 35px; + display: none; + } + } + + &.app-engage-hide { + .app-engage-btn { + visibility: hidden; + + &.app-engage-btn-toggle-off { + display: none; + } + + &.app-engage-btn-toggle-on { + visibility: visible; + display: flex; + } + } + } +} + +.engage-btn { + display: flex; + align-items: center; + height: 35px !important; + + @include button-custom-variant( + $color: var(--#{$prefix}engage-btn-color), + $icon-color: var(--#{$prefix}engage-btn-color), + $border-color: var(--#{$prefix}engage-btn-bg), + $bg-color: var(--#{$prefix}engage-btn-bg), + $color-active: var(--#{$prefix}engage-btn-color-active), + $icon-color-active: var(--#{$prefix}engage-btn-color-active), + $border-color-active: var(--#{$prefix}engage-btn-bg), + $bg-color-active: var(--#{$prefix}engage-btn-bg) + ); +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_explore.scss b/src/_metronic/assets/sass/core/components/_explore.scss new file mode 100644 index 0000000..eafad72 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_explore.scss @@ -0,0 +1,104 @@ +// +// Explore(used for demo product demo) +// + +$explore-primary: #00B2FF; +$explore-primary-light: #F1FAFF; +$explore-primary-active: #0098DA; +$explore-primary-inverse: $white; + +$explore-success: #50CD89; +$explore-success-light: #E8FFF3; +$explore-success-active: #47BE7D; +$explore-success-inverse: $white; + +$explore-warning: #FFC700; +$explore-warning-inverse: $white; + +$explore-danger: #F1416C; +$explore-warning-inverse: $white; + +.explore-btn-toggle { + color: var(--#{$prefix}gray-600); + background-color: $white; + + &:hover, + &:focus, + &:active { + color: $explore-primary-inverse; + background-color: $explore-primary; + } +} + +.explore-btn-dismiss { + border: 0; + + &:hover { + i, + .svg-icon { + color: $explore-primary; + } + } +} + +.explore-btn-primary { + border: 0; + color: $explore-primary-inverse; + background-color: $explore-primary; + + &:hover { + color: $explore-primary-inverse; + background-color: $explore-primary-active; + } +} + +.explore-btn-secondary { + border: 0; + color: var(--#{$prefix}gray-600); + background-color: var(--#{$prefix}gray-100); + + &:hover { + color: var(--#{$prefix}gray-800); + background-color: var(--#{$prefix}gray-200); + } +} + +.explore-btn-outline { + border: 1px dashed var(--#{$prefix}gray-300) !important; + + &:hover, + &.active { + border: 1px dashed $explore-success !important; + background-color: $explore-success-light; + } +} + +.explore-link { + color: $explore-primary; + + &:hover { + color: $explore-primary-active; + } +} + +.explore-link-hover:hover { + color: $explore-primary !important; +} + +.explore-icon-success { + color: $explore-success; +} + +.explore-icon-danger { + color: $explore-danger; +} + +.explore-label-free { + color: $explore-warning-inverse; + background-color: $explore-warning; +} + +.explore-label-pro { + color: $explore-success-inverse; + background-color: $explore-success; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_fixed.scss b/src/_metronic/assets/sass/core/components/_fixed.scss new file mode 100644 index 0000000..c4935c4 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_fixed.scss @@ -0,0 +1,18 @@ +// +// Fixed +// + +@each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + .fixed-top#{$infix} { + position: fixed; + z-index: $fixed-z-index; + top: 0; + left: 0; + right: 0; + } + } +} + diff --git a/src/_metronic/assets/sass/core/components/_forms.scss b/src/_metronic/assets/sass/core/components/_forms.scss new file mode 100644 index 0000000..cd839b9 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_forms.scss @@ -0,0 +1,13 @@ +// +// Forms +// + +// Import Dependencies +@import "forms/labels"; +@import "forms/form-control"; +@import "forms/floating-labels"; +@import "forms/form-select"; +@import "forms/form-check"; +@import "forms/input-group"; +@import "forms/floating-labels"; +@import "forms/required"; diff --git a/src/_metronic/assets/sass/core/components/_helpers.scss b/src/_metronic/assets/sass/core/components/_helpers.scss new file mode 100644 index 0000000..803a272 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_helpers.scss @@ -0,0 +1,12 @@ +// +// Helpers +// + +// Import Dependencies +@import "helpers/background"; +@import "helpers/borders"; +@import "helpers/flex"; +@import "helpers/shadow"; +@import "helpers/text"; +@import "helpers/opacity"; +@import "helpers/transform"; diff --git a/src/_metronic/assets/sass/core/components/_hover.scss b/src/_metronic/assets/sass/core/components/_hover.scss new file mode 100644 index 0000000..405c86a --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_hover.scss @@ -0,0 +1,53 @@ +// +// Hover effects +// + +.hover-elevate-up { + transition: transform 0.3s ease; + + &:hover { + transform: translateY(-2.5%); + transition: transform 0.3s ease; + will-change: transform; + } +} + +.hover-elevate-down { + transition: transform 0.3s ease; + + &:hover { + transform: translateY(2.5%); + transition: transform 0.3s ease; + will-change: transform; + } +} + +.hover-scale { + transition: transform 0.3s ease; + + &:hover { + transform: scale(1.1); + transition: transform 0.3s ease; + will-change: transform; + } +} + +.hover-rotate-end { + transition: transform 0.3s ease; + + &:hover { + transform: rotate(4deg); + transition: transform 0.3s ease; + will-change: transform; + } +} + +.hover-rotate-start { + transition: transform 0.3s ease; + + &:hover { + transform: rotate(-4deg); + transition: transform 0.3s ease; + will-change: transform; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_image-input.scss b/src/_metronic/assets/sass/core/components/_image-input.scss new file mode 100644 index 0000000..95b0a16 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_image-input.scss @@ -0,0 +1,111 @@ +// +// Avatar +// + + +// Base +.image-input { + position: relative; + display: inline-block; + @include border-radius($border-radius); + background-repeat: no-repeat; + background-size: cover; + + // Empty state + &:not(.image-input-empty) { + background-image: none !important; + } + + // Wrapper + .image-input-wrapper { + width: 120px; + height: 120px; + @include border-radius($border-radius); + background-repeat: no-repeat; + background-size: cover; + } + + // Actions + [data-kt-image-input-action] { + cursor: pointer; + position: absolute; + transform: translate(-50%,-50%); + } + + // Change Button + [data-kt-image-input-action="change"] { + left: 100%; + top: 0; + + input { + width: 0 !important; + height: 0 !important; + overflow: hidden; + opacity: 0; + } + } + + // Cancel & Remove Buttons + [data-kt-image-input-action="cancel"], + [data-kt-image-input-action="remove"] { + position: absolute; + left: 100%; + top: 100%; + } + + [data-kt-image-input-action="cancel"] { + display: none; + } + + // Input Changed State + &.image-input-changed { + [data-kt-image-input-action="cancel"] { + display: flex; + } + + [data-kt-image-input-action="remove"] { + display: none; + } + } + + // Input Empty State + &.image-input-empty { + [data-kt-image-input-action="remove"], + [data-kt-image-input-action="cancel"] { + display: none; + } + } + + // Circle style + &.image-input-circle { + border-radius: 50%; + + // Wrapper + .image-input-wrapper { + border-radius: 50%; + } + + // Change Control + [data-kt-image-input-action="change"] { + left: 100%; + top: 0; + transform: translate(-100%, 0%); + } + + // Cancel & Remove Buttons + [data-kt-image-input-action="cancel"], + [data-kt-image-input-action="remove"] { + left: 100%; + top: 100%; + transform: translate(-100%,-100%); + } + } + + // Bordered style + &.image-input-outline { + .image-input-wrapper { + border: 3px solid var(--#{$prefix}body-bg); + box-shadow: var(--#{$prefix}box-shadow); + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_indicator.scss b/src/_metronic/assets/sass/core/components/_indicator.scss new file mode 100644 index 0000000..d74a923 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_indicator.scss @@ -0,0 +1,17 @@ +// +// Indicator +// + +.indicator-progress { + display: none; + + [data-kt-indicator="on"] > & { + display: inline-block; + } +} + +.indicator-label { + [data-kt-indicator="on"] > & { + display: none; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_menu.scss b/src/_metronic/assets/sass/core/components/_menu.scss new file mode 100644 index 0000000..8564e7c --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_menu.scss @@ -0,0 +1,7 @@ +// +// Menu +// + +// Import Dependencies +@import "menu/base"; +@import "menu/theme"; diff --git a/src/_metronic/assets/sass/core/components/_mixins.scss b/src/_metronic/assets/sass/core/components/_mixins.scss new file mode 100644 index 0000000..e63d960 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_mixins.scss @@ -0,0 +1,13 @@ +// +// Mixins +// + +// Import Dependencies +@import "mixins/menu"; +@import "mixins/buttons"; +@import "mixins/ki"; +@import "mixins/symbol"; +@import "mixins/svg-icon"; +@import "mixins/svg-bg-icon"; +@import "mixins/scroll"; +@import "mixins/shape"; diff --git a/src/_metronic/assets/sass/core/components/_modal.scss b/src/_metronic/assets/sass/core/components/_modal.scss new file mode 100644 index 0000000..7dc5fbc --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_modal.scss @@ -0,0 +1,7 @@ +// +// Modal +// + +.modal-rounded { + border-radius: $modal-content-border-radius !important; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_nav-line-tabs.scss b/src/_metronic/assets/sass/core/components/_nav-line-tabs.scss new file mode 100644 index 0000000..4c1ccbe --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_nav-line-tabs.scss @@ -0,0 +1,68 @@ +// +// Nav +// + +// Line tabs +.nav-line-tabs { + border-bottom-width: 1px; + border-bottom-style: solid; + border-bottom-color: var(--#{$prefix}border-color); + + .nav-item { + margin-bottom: -1px; + + // Base link + .nav-link { + color: var(--#{$prefix}gray-500); + border: 0; + border-bottom: 1px solid transparent; + transition: $transition-link; + padding: 0.5rem 0; + margin: 0 1rem; + } + + // First Item + &:first-child { + .nav-link { + margin-left: 0; + } + } + + // Last Item + &:last-child { + .nav-link { + margin-right: 0; + } + } + } + + // Active & Hover States + .nav-item .nav-link.active, + .nav-item.show .nav-link, + .nav-item .nav-link:hover:not(.disabled) { + background-color: transparent; + border: 0; + border-bottom: 1px solid var(--#{$prefix}primary); + transition: $transition-link; + } + + // 2x Line + &.nav-line-tabs-2x { + border-bottom-width: 2px; + + .nav-item { + margin-bottom: -2px; + + .nav-link { + border-bottom-width: 2px; + } + } + + // Active & Hover States + .nav-item .nav-link.active, + .nav-item.show .nav-link, + .nav-item .nav-link:hover:not(.disabled) { + border-bottom-width: 2px; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_nav-pills-custom.scss b/src/_metronic/assets/sass/core/components/_nav-pills-custom.scss new file mode 100644 index 0000000..9de985a --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_nav-pills-custom.scss @@ -0,0 +1,91 @@ +// +// Custom Nav Pills +// + +.nav.nav-pills.nav-pills-custom { + // States + .show > .nav-link, + .nav-link{ + border: 1px dashed var(--#{$prefix}border-dashed-color); + @include border-radius($border-radius-lg); + + &.nav-link-border-solid { + border: 3px solid var(--#{$prefix}border-dashed-color); + + &.active { + border: 3px solid var(--#{$prefix}primary); + } + } + + .nav-icon { + img { + width: 30px; + transition: $transition-link; + + &.default { + display: inline-block; + } + + &.active { + display: none; + } + } + } + + &.active { + background-color: transparent; + border: 1px solid var(--#{$prefix}border-dashed-color); + transition-duration: 1ms; + position: relative; + + .nav-text { + color: var(--#{$prefix}gray-800) !important; + transition: $transition-link; + } + + .bullet-custom { + display: block; + } + } + + .bullet-custom { + display: none; + } + } + + &.nav-pills-active-custom { + .nav-item { + .nav-link { + &:not(:active) { + span:nth-child(1) { + color: #B5B5C3; + } + + span:nth-child(2) { + color: #3F4254; + } + } + + &:hover { + span:nth-child(1) { + color: $white !important; + } + + span:nth-child(2) { + color: $white !important; + } + } + + &.active { + span:nth-child(1) { + color: $white !important; + } + + span:nth-child(2) { + color: $white !important; + } + } + } + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_nav.scss b/src/_metronic/assets/sass/core/components/_nav.scss new file mode 100644 index 0000000..87aba9a --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_nav.scss @@ -0,0 +1,71 @@ +// +// Nav +// + +// Nav pills +.nav-pills { + .nav-item { + margin-right: 0.5rem; + + &:last-child { + margin-right: 0; + } + } +} + +// Stretch items +.nav-stretch { + align-items: stretch; + padding-top: 0 !important; + padding-bottom: 0 !important; + + .nav-item { + display: flex; + align-items: stretch; + padding-top: 0 !important; + padding-bottom: 0 !important; + } + + .nav-link { + display: flex; + align-items: center; + } +} + +// Nav group +.nav-group { + padding: 0.35rem; + @include border-radius($border-radius); + background-color: var(--#{$prefix}gray-100); + + // Outline nav group + &.nav-group-outline { + background-color: transparent; + border: 1px solid var(--#{$prefix}border-color); + } + + // Fluid option + &.nav-group-fluid { + display: flex; + + > label, + > .btn { + position: relative; + flex-shrink: 0; + flex-grow: 1; + flex-basis: 0; + } + + > label { + margin-right: 0.1rem; + + > .btn { + width: 100%; + } + + &:last-child { + margin-right: 0; + } + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_offcanvas.scss b/src/_metronic/assets/sass/core/components/_offcanvas.scss new file mode 100644 index 0000000..e642506 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_offcanvas.scss @@ -0,0 +1,6 @@ +%offcanvas-css-vars { + --#{$prefix}offcanvas-color: var(--#{$prefix}offcanvas-color); + --#{$prefix}offcanvas-bg: var(--#{$prefix}offcanvas-bg-color); + --#{$prefix}offcanvas-border-color: var(--#{$prefix}offcanvas-border-color); + --#{$prefix}offcanvas-box-shadow: var(--#{$prefix}offcanvas-box-shadow); +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_overlay.scss b/src/_metronic/assets/sass/core/components/_overlay.scss new file mode 100644 index 0000000..a3a82a9 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_overlay.scss @@ -0,0 +1,35 @@ +// +// Demo +// + + +.overlay { + position: relative; + + .overlay-layer { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; + justify-content: center; + align-items: center; + background-color: var(--#{$prefix}overlay-bg); + transition: all 0.3s ease; + opacity: 0; + } + + &.overlay-show, + &.overlay-block, + &:hover { + .overlay-layer { + transition: all 0.3s ease; + opacity: 1; + } + } + + &.overlay-block { + cursor: wait; + } +} diff --git a/src/_metronic/assets/sass/core/components/_page-loader.scss b/src/_metronic/assets/sass/core/components/_page-loader.scss new file mode 100644 index 0000000..55ffee6 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_page-loader.scss @@ -0,0 +1,28 @@ +// +// Page loader(used by the previous layout system) +// + +// CSS3 Transitions only after page load(.page-loading class added to body tag and remove with JS on page load) +[data-kt-app-page-loading="on"] *, +.page-loading * { + transition: none !important; +} + +// Base +.page-loader { + background-color: var(--#{$prefix}body-bg); + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 10000; + display: none; + + [data-kt-app-page-loading="on"] &, + .page-loading & { + display: flex; + justify-content: center; + align-items: center; + } +} diff --git a/src/_metronic/assets/sass/core/components/_pagination.scss b/src/_metronic/assets/sass/core/components/_pagination.scss new file mode 100644 index 0000000..b0d96d0 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_pagination.scss @@ -0,0 +1,176 @@ +// +// Pagination +// + +.pagination { + display:flex; + flex-wrap: wrap; + justify-content: center; + margin: 0; + + // Pagination circle + &.pagination-circle { + .page-link { + border-radius: 50%; + } + } + + // Pagination outline + &.pagination-outline { + .page-link { + border: 1px solid var(--#{$prefix}border-color); + } + + .page-item { + &:hover:not(.disabled), + &.active { + .page-link { + border-color: var(--#{$prefix}primary-light); + } + } + } + } +} + +.page-item { + margin-right: $pagination-item-space; + + &:last-child { + margin-right: 0; + } + + .page-link { + display:flex; + justify-content: center; + align-items: center; + border-radius: $btn-border-radius; + height: $pagination-item-height; + min-width: $pagination-item-height; + font-weight: $pagination-font-weight; + font-size: $pagination-font-size; + + i { + font-size: $pagination-icon-font-size; + } + + /*rtl:options:{"autoRename":false}*/ + .previous, + .next { + display: block; + height: $pagination-icon-height; + width: $pagination-icon-height; + + /*rtl:raw:transform: rotateZ(-180deg);*/ + } + /*rtl:end:ignore*/ + + .previous { + @include svg-bg-icon(arrow-start, $pagination-color); + } + + /*rtl:options:{"autoRename":false}*/ + .next { + @include svg-bg-icon(arrow-end, $pagination-color); + } + } + + &:focus { + .page-link { + color: var(--#{$prefix}pagination-focus-color); + + .svg-icon, + i { + color: var(--#{$prefix}pagination-focus-color); + } + + .previous { + @include svg-bg-icon(arrow-start, var(--#{$prefix}pagination-focus-color)); + } + + /*rtl:options:{"autoRename":false}*/ + .next { + @include svg-bg-icon(arrow-end, var(--#{$prefix}pagination-focus-color)); + } + } + } + + &:hover:not(.active):not(.offset):not(.disabled) { + .page-link { + color: var(--#{$prefix}pagination-hover-color); + + &.page-text { + background-color: transparent; + } + + .svg-icon, + i { + color: var(--#{$prefix}pagination-hover-color); + } + + .previous { + @include svg-bg-icon(arrow-start, var(--#{$prefix}pagination-hover-color)); + } + + /*rtl:options:{"autoRename":false}*/ + .next { + @include svg-bg-icon(arrow-end, var(--#{$prefix}pagination-hover-color)); + } + } + } + + &.active { + .page-link { + color: var(--#{$prefix}pagination-active-color); + + &.page-text { + background-color: transparent; + } + + .svg-icon, + i { + color: var(--#{$prefix}pagination-active-color);; + } + + .previous { + @include svg-bg-icon(arrow-start, var(--#{$prefix}pagination-active-color)); + } + + /*rtl:options:{"autoRename":false}*/ + .next { + @include svg-bg-icon(arrow-end, var(--#{$prefix}pagination-active-color)); + } + } + } + + &.disabled { + .page-link { + color: var(--#{$prefix}pagination-disabled-color); + + .svg-icon, + i { + color: var(--#{$prefix}pagination-disabled-color); + } + + .previous { + @include svg-bg-icon(arrow-start, var(--#{$prefix}pagination-disabled-color)); + } + + /*rtl:options:{"autoRename":false}*/ + .next { + @include svg-bg-icon(arrow-end, var(--#{$prefix}pagination-disabled-color)); + } + } + } + /*rtl:end:ignore*/ +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + .page-item { + margin-right: $pagination-item-space-tablet-and-mobile; + + &:last-child { + margin-right: 0; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_popover.scss b/src/_metronic/assets/sass/core/components/_popover.scss new file mode 100644 index 0000000..baf9193 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_popover.scss @@ -0,0 +1,58 @@ +// +// Popover +// + + +// Base +.popover { + --#{$prefix}popover-header-border-color: #{$popover-header-border-color}; + + .popover-header { + font-size: $popover-header-font-size; + font-weight: $popover-header-font-weight; + border-bottom: 1px solid var(--#{$prefix}popover-header-border-color); + } + + .popover-dismiss { + position: absolute; + top: $popover-dissmis-btn-top; + right: $popover-dissmis-btn-end; + height: $popover-dissmis-btn-size; + width: $popover-dissmis-btn-size; + @include svg-bg-icon(close, var(--#{$prefix}gray-500)); // todo: revise + mask-size: 50%; + -webkit-mask-size: 50%; + + &:hover { + background-color: var(--#{$prefix}primary); + } + + & + .popover-header { + padding-right: $popover-body-padding-x + $popover-dissmis-btn-size; + } + } +} + +// Inverse +.popover-inverse { + --#{$prefix}popover-bg: var(--#{$prefix}gray-900); + --#{$prefix}popover-border-color: var(--#{$prefix}gray-900); + --#{$prefix}popover-box-shadow: #{$popover-box-shadow-dark}; + --#{$prefix}popover-header-color: var(--#{$prefix}gray-200); + --#{$prefix}popover-header-bg: var(--#{$prefix}gray-900); + --#{$prefix}popover-body-color: var(--#{$prefix}gray-400); + --#{$prefix}popover-arrow-border: transparent; + --#{$prefix}popover-header-border-color: var(--#{$prefix}gray-800); +} + +@if $enable-dark-mode { + @include color-mode(dark) { + .popover:not(.popover-inverse) { + --#{$prefix}popover-bg: #{$popover-bg-dark}; + --#{$prefix}popover-border-color: #{$popover-border-color-dark}; + --#{$prefix}popover-header-bg: #{$popover-bg-dark}; + --#{$prefix}popover-box-shadow: #{$popover-box-shadow-dark}; + --#{$prefix}popover-header-border-color: #{$popover-header-border-color-dark}; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_print.scss b/src/_metronic/assets/sass/core/components/_print.scss new file mode 100644 index 0000000..ab7854b --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_print.scss @@ -0,0 +1,34 @@ +// +// Print Mode +// + +// Add .print-content-only class to body element in order to allow printing only the content area +@media print { + .print-content-only { + padding: 0 !important; + background: none !important; + + .wrapper, + .page, + .page-title + .content, + .container, + .container-xxl, + .container-fluid { + background: none !important; + padding: 0 !important; + margin: 0 !important; + } + + .aside, + .sidebar, + .scrolltop, + .header, + .footer, + .toolbar, + .drawer, + .btn { + display: none !important; + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_progress.scss b/src/_metronic/assets/sass/core/components/_progress.scss new file mode 100644 index 0000000..7a3ad84 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_progress.scss @@ -0,0 +1,27 @@ +// +// Progress +// + +// Vertical Position +.progress-vertical { + display: flex; + align-items: stretch; + justify-content: space-between; + + .progress { + height: 100%; + @include border-radius($border-radius); + display: flex; + align-items: flex-end; + margin-right: 1rem; + + &:last-child { + margin-right: 0; + } + + .progress-bar { + width: 8px; + @include border-radius($border-radius); + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_pulse.scss b/src/_metronic/assets/sass/core/components/_pulse.scss new file mode 100644 index 0000000..43e9b3a --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_pulse.scss @@ -0,0 +1,39 @@ +// +// Pulse +// + + +// Base +.pulse { + position: relative; + + // Theme Colors + @each $name, $color in $theme-colors { + &.pulse-#{$name} { + .pulse-ring { + border-color: var(--#{$prefix}#{$name}); + } + } + } +} + +.pulse-ring { + display: block; + border-radius: 40px; + height: 40px; + width: 40px; + position: absolute; + animation: animation-pulse 3.5s ease-out; + animation-iteration-count: infinite; + opacity: 0; + border-width: 3px; + border-style: solid; + border-color: var(--#{$prefix}gray-500); +} + +@keyframes animation-pulse { + 0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;} + 60% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;} + 65% {opacity: 1;} + 100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;} +} diff --git a/src/_metronic/assets/sass/core/components/_rating.scss b/src/_metronic/assets/sass/core/components/_rating.scss new file mode 100644 index 0000000..547b8da --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_rating.scss @@ -0,0 +1,62 @@ +// +// Rating +// + +.rating { + display: flex; + align-items: center; +} + +.rating-input { + position: absolute !important; + left: -9999px !important; + + &[disabled] { + display: none; + } +} + +.rating-label { + padding: 0; + margin: 0; + + & > i, + & > .svg-icon { + line-height: 1; + color: var(--#{$prefix}rating-color-default); + } +} + +label.rating-label { + cursor: pointer; +} + +div.rating-label.checked, +label.rating-label { + & > i, + & > .svg-icon { + color: var(--#{$prefix}rating-color-active); + } +} + +.rating-input:checked ~ .rating-label { + & > i, + & > .svg-icon { + color: var(--#{$prefix}rating-color-default); + } +} + +.rating:hover label.rating-label { + & > i, + & > .svg-icon { + color: var(--#{$prefix}rating-color-active); + } +} + +label.rating-label:hover ~ .rating-label { + & > i, + & > .svg-icon { + color: var(--#{$prefix}rating-color-default); + } + color: var(--#{$prefix}rating-color-default); +} diff --git a/src/_metronic/assets/sass/core/components/_reboot.scss b/src/_metronic/assets/sass/core/components/_reboot.scss new file mode 100644 index 0000000..722742b --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_reboot.scss @@ -0,0 +1,7 @@ +// +// Reboot +// + +h1, h2, h3, h4, h5, h6 { + outline: 0; +} diff --git a/src/_metronic/assets/sass/core/components/_ribbon.scss b/src/_metronic/assets/sass/core/components/_ribbon.scss new file mode 100644 index 0000000..071e299 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_ribbon.scss @@ -0,0 +1,195 @@ +// +// Ribbon +// + +// Base +.ribbon { + position: relative; + + // Ribbon target + .ribbon-label { + display: flex; + justify-content: center; + align-items: center; + padding: 5px 10px; + position: absolute; + z-index: 1; + background-color: var(--#{$prefix}ribbon-label-bg); + box-shadow: var(--#{$prefix}ribbon-label-box-shadow); + color: var(--#{$prefix}primary-inverse); + top: 50%; + right: 0; + transform: translateX(5px) translateY(-50%); + + > .ribbon-inner { + z-index: -1; + position: absolute; + padding: 0; + width: 100%; + height: 100%; + top: 0; + left: 0; + } + + &:after { + border-color: var(--#{$prefix}ribbon-label-border-color); + } + } + + // Vertical aligment + &-vertical { + .ribbon-label { + padding: 5px 10px; + min-width: 36px; + min-height: 46px; + text-align: center; + } + } + + &.ribbon-top { + .ribbon-label { + top: 0; + transform: translateX(-15px) translateY(-4px); + border-bottom-right-radius: $border-radius; + border-bottom-left-radius: $border-radius; + } + } + + &.ribbon-bottom { + .ribbon-label { + border-top-right-radius: $border-radius; + border-top-left-radius: $border-radius; + } + } + + &.ribbon-start { + .ribbon-label { + top: 50%; + left: 0; + right: auto; + transform: translateX(-5px) translateY(-50%); + border-top-right-radius: $border-radius; + border-bottom-right-radius: $border-radius; + } + } + + &.ribbon-end { + .ribbon-label { + border-top-left-radius: $border-radius; + border-bottom-left-radius: $border-radius; + } + } +} + +// Clip style +.ribbon.ribbon-clip { + &.ribbon-start { + .ribbon-label { + left: -5px; + + .ribbon-inner { + border-top-right-radius: $border-radius; + border-bottom-right-radius: $border-radius; + + &:before, + &:after { + content: ""; + position: absolute; + border-style: solid; + border-color: transparent !important; + bottom: -10px; + } + + &:before { + border-width: 0 10px 10px 0; + border-right-color: var(--#{$prefix}ribbon-clip-bg) !important; + left: 0; + } + } + } + } + + &.ribbon-end { + .ribbon-label { + right: -5px; + + .ribbon-inner { + border-top-left-radius: $border-radius; + border-bottom-left-radius: $border-radius; + + &:before, + &:after { + content: ""; + position: absolute; + border-style: solid; + border-color: transparent !important; + bottom: -10px; + } + + &:before { + border-width: 0 0 10px 10px; + border-left-color: var(--#{$prefix}ribbon-clip-bg) !important; + right: 0; + } + } + } + } +} + +// Triangle style +.ribbon.ribbon-triangle { + position: absolute; + z-index: 1; + display: flex; + align-items: flex-start; + justify-content: flex-start; + + // Top start position + &.ribbon-top-start { + top: 0; + left: 0; + width: 4rem; + height: 4rem; + border-bottom: solid 2rem transparent !important; + border-left: solid 2rem transparent; + border-right: solid 2rem transparent !important; + border-top: solid 2rem transparent; + } + + // Top end position + &.ribbon-top-end { + top: 0; + right: 0; + width: 4rem; + height: 4rem; + border-bottom: solid 2rem transparent !important; + border-left: solid 2rem transparent !important; + border-right: solid 2rem transparent; + border-top: solid 2rem transparent; + } + + // Botton start position + &.ribbon-bottom-start { + bottom: 0; + left: 0; + width: 4rem; + height: 4rem; + border-bottom: solid 2rem transparent; + border-left: solid 2rem transparent; + border-right: solid 2rem transparent !important; + border-top: solid 2rem transparent !important; + } + + // Botton end position + &.ribbon-bottom-end { + bottom: 0; + right: 0; + width: 4rem; + height: 4rem; + border-bottom: solid 2rem transparent; + border-right: solid 2rem transparent; + border-left: solid 2rem transparent !important; + border-top: solid 2rem transparent !important; + } +} + diff --git a/src/_metronic/assets/sass/core/components/_root.scss b/src/_metronic/assets/sass/core/components/_root.scss new file mode 100644 index 0000000..2557df3 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_root.scss @@ -0,0 +1,332 @@ +// +// CSS Variables +// + +:root { + // Breakpoints + @each $breakpoint, $value in $grid-breakpoints { + --#{$prefix}#{$breakpoint}:#{$value}; + } + + // Keenthemes scrollbar component + --#{$prefix}scrollbar-size: #{$scrollbar-size}; + --#{$prefix}scrollbar-overlay-size: #{$scrollbar-overlay-size}; + --#{$prefix}scrollbar-overlay-space: #{$scrollbar-overlay-space}; + + // Bootstrap general + --#{$prefix}white-bg-rgb: #{to-rgb($white)}; + --#{$prefix}black-bg-rgb: #{to-rgb($black)}; +} + +@include color-mode(light) { + // Bootstrap muted color + --#{$prefix}text-muted: #{$text-muted}; + + // Grey colors + @each $name, $value in $grays { + --#{$prefix}gray-#{$name}: #{$value}; + --#{$prefix}gray-#{$name}-rgb: #{to-rgb($value)}; + } + + // Contextual colors + @each $name, $value in $theme-colors { + --#{$prefix}#{$name}: #{$value}; + } + + // Contextual active state colors + @each $name, $value in $theme-active-colors { + --#{$prefix}#{$name}-active: #{$value}; + } + + // Contextual light state colors + @each $name, $value in $theme-light-colors { + --#{$prefix}#{$name}-light: #{$value}; + } + + // Contextual inverse state colors + @each $name, $value in $theme-inverse-colors { + --#{$prefix}#{$name}-inverse: #{$value}; + } + + // Contextual clarity state colors + @each $name, $value in $theme-clarity-colors { + --#{$prefix}#{$name}-clarity: #{$value}; + } + + // Contextual rbg colors + @each $name, $value in $theme-colors { + --#{$prefix}#{$name}-rgb: #{to-rgb($value)}; + } + + // Text colors + @each $name, $value in $theme-text-colors { + --#{$prefix}text-#{$name}: #{$value}; + } + + // Components + --#{$prefix}border-color: #{$border-color}; + --#{$prefix}border-dashed-color: #{$border-dashed-color}; + + --#{$prefix}component-active-color: #{$component-active-color}; + --#{$prefix}component-active-bg: #{$component-active-bg}; + --#{$prefix}component-hover-color: #{$component-hover-color}; + --#{$prefix}component-hover-bg: #{$component-hover-bg}; + --#{$prefix}component-checked-color: #{$component-checked-color}; + --#{$prefix}component-checked-bg: #{$component-checked-bg}; + + // Box shadow + --#{$prefix}box-shadow-xs: #{$box-shadow-xs}; + --#{$prefix}box-shadow-sm: #{$box-shadow-sm}; + --#{$prefix}box-shadow: #{$box-shadow}; + --#{$prefix}box-shadow-lg: #{$box-shadow-lg}; + + // Forms + --#{$prefix}input-bg: #{$input-bg}; + --#{$prefix}input-color: #{$input-color}; + --#{$prefix}input-solid-color: #{$input-solid-color}; + --#{$prefix}input-solid-bg: #{$input-solid-bg}; + --#{$prefix}input-solid-bg-focus: #{$input-solid-bg-focus}; + --#{$prefix}input-solid-placeholder-color: #{$input-solid-placeholder-color}; + + // Card + --#{$prefix}root-card-box-shadow: #{$card-box-shadow}; + --#{$prefix}root-card-border-color: #{$card-border-color}; + + // Tooltip + --#{$prefix}tooltip-box-shadow: #{$tooltip-box-shadow-dark}; + + // Table + --#{$prefix}table-striped-bg: #{$table-striped-bg}; + --#{$prefix}table-loading-message-box-shadow: #{$table-loading-message-box-shadow}; + + // Dropdowns + --#{$prefix}dropdown-bg: #{$dropdown-bg}; + --#{$prefix}dropdown-box-shadow: #{$dropdown-box-shadow}; + + // Code + --#{$prefix}code-bg: #{$code-bg}; + --#{$prefix}code-shadow: #{$code-shadow}; + --#{$prefix}code-border-color: #{$code-border-color}; + --#{$prefix}code-color: #{$code-color}; + + // Symbol + --#{$prefix}symbol-label-color: #{$symbol-label-color}; + --#{$prefix}symbol-label-bg: #{$symbol-label-bg}; + --#{$prefix}symbol-border-color: #{$symbol-border-color}; + + // Bullet + --#{$prefix}bullet-bg-color: #{$bullet-bg-color}; + + // Scrolltop + --#{$prefix}scrolltop-opacity: #{$scrolltop-opacity}; + --#{$prefix}scrolltop-opacity-on: #{$scrolltop-opacity-on}; + --#{$prefix}scrolltop-opacity-hover: #{$scrolltop-opacity-hover}; + --#{$prefix}scrolltop-box-shadow: #{$scrolltop-box-shadow}; + --#{$prefix}scrolltop-bg-color: #{$scrolltop-bg-color}; + --#{$prefix}scrolltop-bg-color-hover: #{$scrolltop-bg-color-hover}; + --#{$prefix}scrolltop-icon-color: #{$scrolltop-icon-color}; + --#{$prefix}scrolltop-icon-color-hover: #{$scrolltop-icon-color-hover}; + + // Keenthemes drawer component + --#{$prefix}drawer-box-shadow: #{$drawer-box-shadow}; + --#{$prefix}drawer-bg-color: #{$drawer-bg-color}; + --#{$prefix}drawer-overlay-bg-color: #{$drawer-overlay-bg-color}; + + // Keenthemes menu component + --#{$prefix}menu-dropdown-box-shadow: #{$menu-dropdown-box-shadow}; + --#{$prefix}menu-dropdown-bg-color: #{$menu-dropdown-bg-color}; + --#{$prefix}menu-heading-color: #{$menu-heading-color}; + --#{$prefix}menu-link-color-hover: #{$menu-link-color-hover}; + --#{$prefix}menu-link-color-show: #{$menu-link-color-show}; + --#{$prefix}menu-link-color-here: #{$menu-link-color-here}; + --#{$prefix}menu-link-color-active: #{$menu-link-color-active}; + --#{$prefix}menu-link-bg-color-hover: #{$menu-link-bg-color-hover}; + --#{$prefix}menu-link-bg-color-show: #{$menu-link-bg-color-show}; + --#{$prefix}menu-link-bg-color-here: #{$menu-link-bg-color-here}; + --#{$prefix}menu-link-bg-color-active: #{$menu-link-bg-color-active}; + + // Keenthemes scrollbar component + --#{$prefix}scrollbar-color: #{$scrollbar-color}; + --#{$prefix}scrollbar-hover-color: #{$scrollbar-hover-color}; + + // Keenthemes overlay component + --#{$prefix}overlay-bg: #{$overlay-bg}; + + // Keenthemes blockui component + --#{$prefix}blockui-overlay-bg: #{$blockui-overlay-bg}; + + // Keenthemes rating component + --#{$prefix}rating-color-default: #{$rating-color-default}; + --#{$prefix}rating-color-active: #{$rating-color-active}; + + // Keenthemes ribbon component + --#{$prefix}ribbon-label-box-shadow: #{$ribbon-label-box-shadow}; + --#{$prefix}ribbon-label-bg: #{$ribbon-label-bg}; + --#{$prefix}ribbon-label-border-color: #{$ribbon-label-border-color}; + --#{$prefix}ribbon-clip-bg: #{$ribbon-clip-bg}; + + // Engage panel + --#{$prefix}engage-btn-bg: #{$engage-btn-bg}; + --#{$prefix}engage-btn-box-shadow: #{$engage-btn-box-shadow}; + --#{$prefix}engage-btn-border-color: #{$engage-btn-border-color}; + --#{$prefix}engage-btn-color: #{$engage-btn-color}; + --#{$prefix}engage-btn-icon-color: #{$engage-btn-icon-color}; + --#{$prefix}engage-btn-color-active: #{$engage-btn-color-active}; +} + +@include color-mode(dark) { + // Bootstrap muted color + --#{$prefix}text-muted: #{$text-muted-dark}; + + // Grey colors + @each $name, $value in $grays-dark { + --#{$prefix}gray-#{$name}: #{$value}; + --#{$prefix}gray-#{$name}-rgb: #{to-rgb($value)}; + } + + // Contextual colors + @each $name, $value in $theme-colors-dark { + --#{$prefix}#{$name}: #{$value}; + } + + // Contextual active state colors + @each $name, $value in $theme-active-colors-dark { + --#{$prefix}#{$name}-active: #{$value}; + } + + // Contextual light state colors + @each $name, $value in $theme-light-colors-dark { + --#{$prefix}#{$name}-light: #{$value}; + } + + // Contextual inverse state colors + @each $name, $value in $theme-inverse-colors-dark { + --#{$prefix}#{$name}-inverse: #{$value}; + } + + // Contextual clarity state colors + @each $name, $value in $theme-clarity-colors-dark { + --#{$prefix}#{$name}-clarity: #{$value}; + } + + // Contextual rbg colors + @each $name, $value in $theme-colors-dark { + --#{$prefix}#{$name}-rgb: #{to-rgb($value)}; + } + + // Text colors + @each $name, $value in $theme-text-colors-dark { + --#{$prefix}text-#{$name}: #{$value}; + } + + // Components + --#{$prefix}border-color: #{$border-color-dark}; + --#{$prefix}border-dashed-color: #{$border-dashed-color-dark}; + + --#{$prefix}component-active-color: #{$component-active-color-dark}; + --#{$prefix}component-active-bg: #{$component-active-bg-dark}; + --#{$prefix}component-hover-color: #{$component-hover-color-dark}; + --#{$prefix}component-hover-bg: #{$component-hover-bg-dark}; + --#{$prefix}component-checked-color: #{$component-checked-color-dark}; + --#{$prefix}component-checked-bg: #{$component-checked-bg-dark}; + + // Box shadow + --#{$prefix}box-shadow-xs: #{$box-shadow-xs-dark}; + --#{$prefix}box-shadow-sm: #{$box-shadow-sm-dark}; + --#{$prefix}box-shadow: #{$box-shadow-dark}; + --#{$prefix}box-shadow-lg: #{$box-shadow-lg-dark}; + + // Forms + --#{$prefix}input-color: #{$input-color}; + --#{$prefix}input-bg: #{$input-bg}; + --#{$prefix}input-solid-color: #{$input-solid-color}; + --#{$prefix}input-solid-bg: #{$input-solid-bg}; + --#{$prefix}input-solid-bg-focus: #{$input-solid-bg-focus}; + --#{$prefix}input-solid-placeholder-color: #{$input-solid-placeholder-color}; + + // Tooltip + --#{$prefix}tooltip-box-shadow: #{$tooltip-box-shadow-dark}; + + // Card + --#{$prefix}root-card-box-shadow: #{$card-box-shadow-dark}; + --#{$prefix}root-card-border-color: #{$card-border-color-dark}; + + // Table + --#{$prefix}table-striped-bg: #{$table-striped-bg-dark}; + --#{$prefix}table-loading-message-box-shadow: #{$table-loading-message-box-shadow-dark}; + + // Dropdowns + --#{$prefix}dropdown-bg: #{$dropdown-bg-dark}; + --#{$prefix}dropdown-box-shadow: #{$dropdown-box-shadow-dark}; + + // Code + --#{$prefix}code-bg: #{$code-bg-dark}; + --#{$prefix}code-shadow: #{$code-shadow-dark}; + --#{$prefix}code-border-color: #{$code-border-color-dark}; + --#{$prefix}code-color: #{$code-color-dark}; + + // Symbol + --#{$prefix}symbol-label-color: #{$symbol-label-color-dark}; + --#{$prefix}symbol-label-bg: #{$symbol-label-bg-dark}; + --#{$prefix}symbol-border-color: #{$symbol-border-color-dark}; + + // Bullet + --#{$prefix}bullet-bg-color: #{$bullet-bg-color-dark}; + + // Scrolltop + --#{$prefix}scrolltop-opacity: #{$scrolltop-opacity-dark}; + --#{$prefix}scrolltop-opacity-on: #{$scrolltop-opacity-on-dark}; + --#{$prefix}scrolltop-opacity-hover: #{$scrolltop-opacity-hover-dark}; + --#{$prefix}scrolltop-box-shadow: #{$scrolltop-box-shadow-dark}; + --#{$prefix}scrolltop-bg-color: #{$scrolltop-bg-color-dark}; + --#{$prefix}scrolltop-bg-color-hover: #{$scrolltop-bg-color-hover-dark}; + --#{$prefix}scrolltop-icon-color: #{$scrolltop-icon-color-dark}; + --#{$prefix}scrolltop-icon-color-hover: #{$scrolltop-icon-color-hover-dark}; + + // Keenthemes drawer component + --#{$prefix}drawer-box-shadow: #{$drawer-box-shadow-dark}; + --#{$prefix}drawer-bg-color: #{$drawer-bg-color-dark}; + --#{$prefix}drawer-overlay-bg-color: #{$drawer-overlay-bg-color-dark}; + + // Keenthemes menu component + --#{$prefix}menu-dropdown-box-shadow: #{$menu-dropdown-box-shadow-dark}; + --#{$prefix}menu-dropdown-bg-color: #{$menu-dropdown-bg-color-dark}; + --#{$prefix}menu-heading-color: #{$menu-heading-color-dark}; + + --#{$prefix}menu-link-color-hover: #{$menu-link-color-hover-dark}; + --#{$prefix}menu-link-color-show: #{$menu-link-color-show-dark}; + --#{$prefix}menu-link-color-here: #{$menu-link-color-here-dark}; + --#{$prefix}menu-link-color-active: #{$menu-link-color-active-dark}; + --#{$prefix}menu-link-bg-color-hover: #{$menu-link-bg-color-hover-dark}; + --#{$prefix}menu-link-bg-color-show: #{$menu-link-bg-color-show-dark}; + --#{$prefix}menu-link-bg-color-here: #{$menu-link-bg-color-here-dark}; + --#{$prefix}menu-link-bg-color-active: #{$menu-link-bg-color-active-dark}; + + // Keenthemes scrollbar component + --#{$prefix}scrollbar-color: #{$scrollbar-color-dark}; + --#{$prefix}scrollbar-hover-color: #{$scrollbar-hover-color-dark}; + + // Keenthemes overlay component + --#{$prefix}overlay-bg: #{$overlay-bg-dark}; + + // Keenthemes blockui component + --#{$prefix}blockui-overlay-bg: #{$blockui-overlay-bg-dark}; + + // Keenthemes rating component + --#{$prefix}rating-color-default: #{$rating-color-default-dark}; + --#{$prefix}rating-color-active: #{$rating-color-active-dark}; + + // Keenthemes ribbon component + --#{$prefix}ribbon-label-box-shadow: #{$ribbon-label-box-shadow-dark}; + --#{$prefix}ribbon-label-bg: #{$ribbon-label-bg-dark}; + --#{$prefix}ribbon-label-border-color: #{$ribbon-label-border-color-dark}; + --#{$prefix}ribbon-clip-bg: #{$ribbon-clip-bg-dark}; + + // Engage panel + --#{$prefix}engage-btn-bg: #{$engage-btn-bg-dark}; + --#{$prefix}engage-btn-box-shadow: #{$engage-btn-box-shadow-dark}; + --#{$prefix}engage-btn-border-color: #{$engage-btn-border-color-dark}; + --#{$prefix}engage-btn-color: #{$engage-btn-color-dark}; + --#{$prefix}engage-btn-icon-color: #{$engage-btn-icon-color-dark}; + --#{$prefix}engage-btn-color-active: #{$engage-btn-color-active-dark}; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_rotate.scss b/src/_metronic/assets/sass/core/components/_rotate.scss new file mode 100644 index 0000000..80ece20 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_rotate.scss @@ -0,0 +1,47 @@ +// +// Rotate +// + + +$rotate-transition: transform 0.3s ease; + +.rotate { + display: inline-flex; + align-items: center; +} + +@each $value in (90, 180, 270) { + .rotate-#{$value} { + transition: $rotate-transition; + backface-visibility: hidden; + will-change: transform; + + .collapsible:not(.collapsed)> & , + .show > &, + .active > & { + transform: rotateZ(#{$value}deg); + transition: $rotate-transition; + + [direction="rtl"] & { + transform: rotateZ(-#{$value}deg); + } + } + } + + .rotate-n#{$value} { + transition: $rotate-transition; + backface-visibility: hidden; + will-change: transform; + + .collapsible:not(.collapsed)> &, + .show > &, + .active > & { + transform: rotateZ(-#{$value}deg); + transition: $rotate-transition; + + [direction="rtl"] & { + transform: rotateZ(#{$value}deg); + } + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_scroll.scss b/src/_metronic/assets/sass/core/components/_scroll.scss new file mode 100644 index 0000000..22ef30b --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_scroll.scss @@ -0,0 +1,119 @@ +// +// Scroll +// + + +// Customize native scrollbars only for desktop mode +@include media-breakpoint-up(lg) { + main, + span, + ol, + ul, + pre, + div { + // Firefox + scrollbar-width: thin; + + // Webkit + &::-webkit-scrollbar { + width: var(--#{$prefix}scrollbar-size); + height: var(--#{$prefix}scrollbar-size); + } + + ::-webkit-scrollbar-track { + background-color: transparent; + } + + ::-webkit-scrollbar-thumb { + @include border-radius(var(--#{$prefix}scrollbar-size)); + } + + // Default color + @include scrollbar-color(var(--#{$prefix}scrollbar-color), var(--#{$prefix}scrollbar-hover-color)); + } +} + +// Scroll +.scroll, +.hover-scroll, +.hover-scroll-overlay { + overflow: scroll; + position: relative; + + // Tablet & mobile modes + @include media-breakpoint-down(lg) { + overflow: auto; + } +} + +.scroll-x, +.hover-scroll-x, +.hover-scroll-overlay-x { + overflow-x: scroll; + position: relative; + + // Tablet & mobile modes + @include media-breakpoint-down(lg) { + overflow-x: auto; + } +} + +.scroll-y, +.hover-scroll-y, +.hover-scroll-overlay-y { + overflow-y: scroll; + position: relative; + + // Tablet & mobile modes + @include media-breakpoint-down(lg) { + overflow-y: auto; + } +} + +.hover-scroll, +.hover-scroll-overlay, +.hover-scroll-x, +.hover-scroll-overlay-x, +.hover-scroll-y, +.hover-scroll-overlay-y { + @include scrollbar-color(transparent, var(--#{$prefix}scrollbar-color)); +} + +// Utilities +@each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + .scroll#{$infix}-ps { + padding-left: var(--#{$prefix}scrollbar-size) !important; + } + + .scroll#{$infix}-ms { + margin-left: var(--#{$prefix}scrollbar-size) !important; + } + + .scroll#{$infix}-mb { + margin-bottom: var(--#{$prefix}scrollbar-size) !important; + } + + .scroll#{$infix}-pe { + padding-right: var(--#{$prefix}scrollbar-size) !important; + } + + .scroll#{$infix}-me { + margin-right: var(--#{$prefix}scrollbar-size) !important; + } + + .scroll#{$infix}-px { + padding-left: var(--#{$prefix}scrollbar-size) !important; + padding-right: var(--#{$prefix}scrollbar-size) !important; + } + + .scroll#{$infix}-mx { + margin-left: var(--#{$prefix}scrollbar-size) !important; + margin-right: var(--#{$prefix}scrollbar-size) !important; + } + } +} + + diff --git a/src/_metronic/assets/sass/core/components/_scrolltop.scss b/src/_metronic/assets/sass/core/components/_scrolltop.scss new file mode 100644 index 0000000..7151823 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_scrolltop.scss @@ -0,0 +1,69 @@ +// +// Scrolltop +// + +.scrolltop { + position: fixed; + display: none; + cursor: pointer; + z-index: $scrolltop-z-index; + justify-content: center; + align-items: center; + width: $scrolltop-size; + height: $scrolltop-size; + bottom: $scrolltop-bottom; + right: $scrolltop-end; + background-color: var(--#{$prefix}scrolltop-bg-color); + box-shadow: var(--#{$prefix}scrolltop-box-shadow); + opacity: $scrolltop-opacity; + transition: $transition-link; + @include border-radius($border-radius); + + .svg-icon { + @include svg-icon-size(24px); + color: var(--#{$prefix}scrolltop-icon-color); + } + + > i { + font-size: 1.3rem; + color: var(--#{$prefix}scrolltop-icon-color); + } + + &:hover { + background-color: var(--#{$prefix}scrolltop-bg-color-hover); + + .svg-icon, + i { + color: var(--#{$prefix}scrolltop-icon-color-hover); + } + } + + [data-kt-scrolltop="on"] & { + opacity: var(--#{$prefix}scrolltop-opacity-on); + animation: animation-scrolltop .4s ease-out 1; + display: flex; + + &:hover { + transition: $transition-link; + opacity: var(--#{$prefix}scrolltop-opacity-hover); + } + } + + +} + +// Tablet & Mobile Modess +@include media-breakpoint-down(lg) { + .scrolltop { + bottom: $scrolltop-bottom-mobile; + right: $scrolltop-end-mobile; + width: $scrolltop-size-mobile; + height: $scrolltop-size-mobile; + } +} + +// Animations +@keyframes animation-scrolltop { + from { margin-bottom: -15px; } + to { margin-bottom: 0; } +} diff --git a/src/_metronic/assets/sass/core/components/_separator.scss b/src/_metronic/assets/sass/core/components/_separator.scss new file mode 100644 index 0000000..e3e0cac --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_separator.scss @@ -0,0 +1,66 @@ +// +// Separator +// + +.separator { + display: block; + height: 0; + border-bottom: 1px solid var(--#{$prefix}border-color); + + &.separator-dotted { + border-bottom-style: dotted; + border-bottom-color: var(--#{$prefix}border-dashed-color); + } + + &.separator-dashed { + border-bottom-style: dashed; + border-bottom-color: var(--#{$prefix}border-dashed-color); + } + + &.separator-content { + display: flex; + align-items: center; + border-bottom: 0; + text-align: center; + + &::before, + &::after { + content: " "; + width: 50%; + border-bottom: 1px solid var(--#{$prefix}border-color); + } + + &::before{ + margin-right: 1.25rem; + } + + &::after{ + margin-left: 1.25rem; + } + + &.separator-dotted { + &::before, + &::after { + border-bottom-style: dotted; + border-bottom-color: var(--#{$prefix}border-dashed-color); + } + } + + &.separator-dashed { + &::before, + &::after { + border-bottom-style: dashed; + border-bottom-color: var(--#{$prefix}border-dashed-color); + } + } + + @each $color, $value in $theme-colors { + &.border-#{$color}{ + &::before, + &::after { + border-color: $value !important; + } + } + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_shape.scss b/src/_metronic/assets/sass/core/components/_shape.scss new file mode 100644 index 0000000..e540908 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_shape.scss @@ -0,0 +1,13 @@ +// +// Shape +// + +.xehagon { + //$edges-number: 6, $main-radius: 30%, $rounding-radius: 10%, $rotated: true, $precision: 20 + @include shape(6); +} + +.octagon { + //$edges-number: 6, $main-radius: 30%, $rounding-radius: 10%, $rotated: true, $precision: 20 + @include shape(8); +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_stepper.scss b/src/_metronic/assets/sass/core/components/_stepper.scss new file mode 100644 index 0000000..eff128c --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_stepper.scss @@ -0,0 +1,8 @@ +// +// Stepper +// + +// Import Dependencies +@import "stepper/base"; +@import "stepper/pills"; +@import "stepper/links"; diff --git a/src/_metronic/assets/sass/core/components/_svg-icon.scss b/src/_metronic/assets/sass/core/components/_svg-icon.scss new file mode 100644 index 0000000..6462a79 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_svg-icon.scss @@ -0,0 +1,30 @@ +// +// SVG Icon +// + +.svg-icon { + line-height: 1; + color: var(--#{$prefix}text-muted); + @include svg-icon-size(get($font-sizes, 5)); + + // Theme colors + @each $name, $color in $theme-text-colors { + &.svg-icon-#{$name} { + color: var(--#{$prefix}text-#{$name}); + } + } + + // Responsive icon sizes + @each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + // Sizes + @each $name, $value in $font-sizes { + &.svg-icon#{$infix}-#{$name} { + @include svg-icon-size($value, true); + } + } + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_symbol.scss b/src/_metronic/assets/sass/core/components/_symbol.scss new file mode 100644 index 0000000..d0c0e0f --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_symbol.scss @@ -0,0 +1,133 @@ +// +// symbol +// + +// Base +.symbol { + display: inline-block;; + flex-shrink: 0; + position: relative; + @include border-radius($border-radius); + + // Label + .symbol-label { + display: flex; + align-items: center; + justify-content: center; + font-weight: 500; + color: var(--#{$prefix}symbol-label-color); + background-color: var(--#{$prefix}symbol-label-bg); + background-repeat: no-repeat; + background-position: center center; + background-size: cover; + @include border-radius($border-radius); + + &:after { + @include border-radius($border-radius); + } + } + + // Badge + .symbol-badge { + position: absolute; + border-radius: 100%; + top: 0; + left: 50%; + transform: translateX(-50%) translateY(-50%) !important; + } + + // Image + > img { + width: 100%; + flex-shrink: 0; + display: inline-block; + @include border-radius($border-radius); + } + + // Square + &.symbol-square { + &, + > img, + .symbol-label { + border-radius: 0 !important; + } + } + + // Circle + &.symbol-circle { + &, + > img, + .symbol-label { + border-radius: 50%; + + &:after { + border-radius: 50%; + } + } + } + + // Sizes + @include symbol-size(get($symbol-sizes, default)); + + @each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + @each $name, $value in $symbol-sizes { + @if ($name != 'default') { + &.symbol#{$infix}-#{$name} { + @include symbol-size($value); + } + } + } + } + } +} + +// Group +.symbol-group { + display: flex; + flex-wrap: wrap; + align-items: center; + margin-left: 10px; + + .symbol { + position: relative; + z-index: 0; + margin-left: -10px; + transition: all 0.3s ease; + + &:hover { + transition: all 0.3s ease; + z-index: 1; + } + } + + .symbol-badge { + border: 2px solid var(--#{$prefix}body-bg); + } + + .symbol-label { + position: relative; + + &:after { + display: block; + content: " "; + border-radius: inherit; + position: absolute; + top: 0; + right: 0; + left: 0; + bottom: 0; + border: 2px solid var(--#{$prefix}symbol-border-color); + -webkit-background-clip: padding-box; /* for Safari */ + background-clip: padding-box; /* for IE9+, Firefox 4+, Opera, Chrome */ + } + } + + &.symbol-hover { + .symbol { + cursor: pointer; + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_tables.scss b/src/_metronic/assets/sass/core/components/_tables.scss new file mode 100644 index 0000000..0e95798 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_tables.scss @@ -0,0 +1,248 @@ +// +// Table +// + +// Table +.table:not(.table-bordered) { + // Fix for BS 5.1.2 update + & > :not(:first-child) { + border-color: transparent; + border-width: 0; + border-style: none; + } + + >:not(:last-child)>:last-child>* { + border-bottom-color: inherit; + } + + tr, th, td { + border-color: inherit; + border-width: inherit; + border-style: inherit; + text-transform: inherit; + font-weight: inherit; + font-size: inherit; + color: inherit; + height: inherit; + min-height: inherit; + + &:first-child { + padding-left: 0; + } + + &:last-child { + padding-right: 0; + } + } + + tfoot, + tbody { + tr:last-child { + border-bottom: 0 !important; + + th, td { + border-bottom: 0 !important; + } + } + } + + tfoot { + th, td { + border-top: inherit; + } + } + + // Rounded + &.table-rounded { + border-radius: $border-radius; + border-spacing: 0; + border-collapse: separate; + } + + // Row Rounded + &.table-rows-rounded { + th,td { + &:first-child { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; + } + + &:last-child { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; + } + } + + } + + // Flush + &.table-flush { + tr, th, td { + padding: inherit; + } + } + + // Row bordered + &.table-row-bordered { + tr { + border-bottom-width: 1px; + border-bottom-style: solid; + border-bottom-color: var(--#{$prefix}border-color); + } + + tfoot { + th, td { + border-top-width: 1px !important; + } + } + } + + // Row dashed + &.table-row-dashed { + tr { + border-bottom-width: 1px; + border-bottom-style: dashed; + border-bottom-color: var(--#{$prefix}border-color); + } + + tfoot { + th, td { + border-top-width: 1px !important; + } + } + } + + // Row border colors + @each $name, $value in $grays { + &.table-row-gray-#{$name} { + tr { + border-bottom-color: var(--#{$prefix}gray-#{$name}); + } + } + } +} + +// Layout fixed +.table-layout-fixed { + table-layout: fixed; +} + +// Sorting +.table-sort { + &:after { + opacity: 0; + } +} + +.table-sort, +.table-sort-asc, +.table-sort-desc { + vertical-align: middle; + + &:after { + position: relative; + display: inline-block; + width: 0.75rem; + height: 0.75rem; + content: " "; + bottom: auto; + right: auto; + left: auto; + margin-left: 0.5rem; + } +} + +.table-sort-asc { + &:after { + opacity: 1; + @include svg-bg-icon(arrow-top, var(--#{$prefix}text-muted)); + } +} + +.table-sort-desc { + &:after { + opacity: 1; + @include svg-bg-icon(arrow-bottom, var(--#{$prefix}text-muted)); + } +} + +// Loading +.table-loading-message { + display: none; + position: absolute; + top: 50%; + left: 50%; + @include border-radius($border-radius); + box-shadow: var(--#{$prefix}table-loading-message-box-shadow); + background-color: $table-loading-message-bg; + color: $table-loading-message-color; + font-weight: $font-weight-bold; + margin: 0 !important; + width: auto; + padding: 0.85rem 2rem !important; + transform: translateX(-50%) translateY(-50%); +} + +.table-loading { + position: relative; + + .table-loading-message { + display: block; + } +} + +// Cell gutters +@each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + @each $name, $value in $gutters { + .table.g#{$infix}-#{$name} { + th, td { + padding: $value; + + // Datatables responsive mode fix + &.dtr-control { + padding-left: $value !important; + } + } + } + + .table.gy#{$infix}-#{$name} { + th, td { + padding-top: $value; + padding-bottom: $value; + } + } + + .table.gx#{$infix}-#{$name} { + th, td { + padding-left: $value; + padding-right: $value; + + // Datatables responsive mode fix + &.dtr-control { + padding-left: $value !important; + } + } + } + + .table.gs#{$infix}-#{$name} { + th, td { + &:first-child { + padding-left: $value; + } + + &:last-child { + padding-right: $value; + } + + // Datatables responsive mode fix + &.dtr-control:first-child { + padding-left: $value !important; + } + } + } + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_testimonials-slider.scss b/src/_metronic/assets/sass/core/components/_testimonials-slider.scss new file mode 100644 index 0000000..d924332 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_testimonials-slider.scss @@ -0,0 +1,65 @@ +// +// Testimonials slider +// + +// Desktop mode +@include media-breakpoint-up(lg) { + .testimonials-slider-highlight { + transition: all ease 0.3; + + .testimonials-photo, + .testimonials-title, + .testimonials-body, + .testimonials-author, + .testimonials-positon { + transition: all ease 0.3s; + } + + .tns-item:not(.tns-slide-active) + .tns-item.tns-slide-active { + .testimonials-photo { + height: 200px; + width: 200px; + transition: all ease 0.3s; + } + + .testimonials-title { + color: var(--#{$prefix}gray-900) !important; + font-size: 1.54rem !important; + transition: all ease 0.3s; + margin-bottom: 1.3rem !important; + } + + .testimonials-description { + color: var(--#{$prefix}gray-700) !important; + font-size: 1.38rem !important; + transition: all ease 0.3s; + margin-bottom: 1.7rem !important; + } + + .testimonials-author { + color: var(--#{$prefix}primary) !important; + font-size: 1.1rem !important; + transition: all ease 0.3s; + } + + .testimonials-positon { + color: var(--#{$prefix}gray-500) !important; + font-size: 0.9rem !important; + transition: all ease 0.3s; + } + } + } +} + +.testimonials-slider-quote { + .testimonials-quote { + opacity: 0.2; + } + + .tns-item:not(.tns-slide-active) + .tns-slide-active + .tns-slide-active { + .testimonials-quote { + opacity: 0.5; + color: var(--#{$prefix}primary) !important; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_theme-mode.scss b/src/_metronic/assets/sass/core/components/_theme-mode.scss new file mode 100644 index 0000000..46f5c5f --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_theme-mode.scss @@ -0,0 +1,38 @@ +// +// Theme Modes +// + +// Used for theme mode switching via JS +[data-kt-theme-mode-switching="true"] * { + transition: none !important; +} + +// Light mode +@include color-mode(light) { + .theme-dark-show { + display: none !important; + } + + .theme-light-bg-transparent { + background-color: transparent !important; + } + + .theme-light-bg-body { + background-color: var(--#{$prefix}body-bg) !important; + } +} + +// Dark mode +@include color-mode(dark) { + .theme-light-show { + display: none !important; + } + + .theme-dark-bg-transparent { + background-color: transparent !important; + } + + .theme-dark-bg-body { + background-color: var(--#{$prefix}body-bg) !important; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_timeline-label.scss b/src/_metronic/assets/sass/core/components/_timeline-label.scss new file mode 100644 index 0000000..7862117 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_timeline-label.scss @@ -0,0 +1,59 @@ +// +// Timeline Label +// + + +.timeline-label { + position: relative; + + $label-width: 50px; + + &:before { + content: ''; + position: absolute; + left: $label-width + 1px; + width: 3px; + top: 0; + bottom: 0; + background-color: var(--#{$prefix}gray-200); + } + + // + .timeline-item { + display: flex; + align-items: flex-start; + position: relative; + margin-bottom: 1.7rem; + + &:last-child { + margin-bottom: 0; + } + } + + .timeline-label { + width: $label-width; + flex-shrink: 0; + position: relative; + color: var(--#{$prefix}gray-800); + } + + .timeline-badge { + flex-shrink: 0; + background-color: var(--#{$prefix}body-bg); + width: 1rem; + height: 1rem; + display: flex; + justify-content: center; + align-items: center; + z-index: 1; + position: relative; + margin-top: 1px; + margin-left: -0.5rem; + padding: 3px !important; + border: 6px solid var(--#{$prefix}body-bg) !important; + } + + .timeline-content { + flex-grow: 1; + } +} diff --git a/src/_metronic/assets/sass/core/components/_timeline.scss b/src/_metronic/assets/sass/core/components/_timeline.scss new file mode 100644 index 0000000..df24b1d --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_timeline.scss @@ -0,0 +1,96 @@ +// +// Timeline +// + +// Base +.timeline { + // Variables + --#{$prefix}timeline-icon-size: #{$timeline-icon-size}; + --#{$prefix}timeline-icon-space: #{$timeline-icon-space}; + + // Item + .timeline-item { + position: relative; + padding: 0; + margin: 0; + display: flex; + align-items: flex-start; + + &:last-child { + .timeline-line { + bottom: 100%; + } + } + } + + // Line + .timeline-line { + display: block; + content: " "; + justify-content: center; + position: absolute; + z-index: 0; + left: 0; + top: var(--#{$prefix}timeline-icon-size); + bottom: 0; + transform: translate(50%); + border-left-width: 1px; + border-left-style: solid; + border-left-color: var(--#{$prefix}gray-300); + width: var(--#{$prefix}timeline-icon-size); + margin-top: var(--#{$prefix}timeline-icon-space); + margin-bottom: var(--#{$prefix}timeline-icon-space); + } + + // Icon + .timeline-icon { + z-index: 1; + flex-shrink: 0; + margin-right: 1rem; + width: var(--#{$prefix}timeline-icon-size); + height: var(--#{$prefix}timeline-icon-size); + display: flex; + text-align: center; + align-items: center; + justify-content: center; + border: 1px solid var(--#{$prefix}gray-300); + border-radius: 50%; + } + + // Content + .timeline-content { + width: 100%; + overflow: auto; + margin-bottom: 1.5rem; + } + + // Vertical center + &.timeline-center { + .timeline-item { + align-items: center; + + &:first-child { + .timeline-line { + top: 50%; + } + } + + &:last-child { + .timeline-line { + bottom: 50%; + } + } + } + } + + // Line solid + &.timeline-border-dashed { + .timeline-line { + border-left-style: dashed !important; + } + + .timeline-icon { + border-style: dashed !important; + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_toasts.scss b/src/_metronic/assets/sass/core/components/_toasts.scss new file mode 100644 index 0000000..7f8b992 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_toasts.scss @@ -0,0 +1,17 @@ +.toast { + .toast-header { + .btn-close { + margin-right: 0; + } + } +} + +@if $enable-dark-mode { + @include color-mode(dark) { + .toast { + --#{$prefix}toast-bg: #{$toast-background-color-dark}; + --#{$prefix}toast-header-bg: #{$toast-header-background-color-dark}; + --#{$prefix}toast-header-border-color: #{$toast-header-border-color-dark}; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_toggle.scss b/src/_metronic/assets/sass/core/components/_toggle.scss new file mode 100644 index 0000000..9f97ee2 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_toggle.scss @@ -0,0 +1,19 @@ +// +// Toggle +// + +.toggle { + &.collapsible:not(.collapsed), // Integration with Bootstrap Collapse + &.active { + .toggle-off { + display: none; + } + } + + &.collapsible.collapsed, // Integration with Bootstrap Collapse + &:not(.collapsible):not(.active) { + .toggle-on { + display: none; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_tooltip.scss b/src/_metronic/assets/sass/core/components/_tooltip.scss new file mode 100644 index 0000000..0e1ab87 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_tooltip.scss @@ -0,0 +1,32 @@ +// +// Tooltip +// + + +// Base +.tooltip { + .tooltip-inner { + box-shadow: var(--#{$prefix}tooltip-box-shadow); + } + + &.tooltop-auto-width { + .tooltip-inner { + white-space: nowrap; + max-width: none; + } + } + + &.tooltip-inverse { + --#{$prefix}tooltip-color: var(--#{$prefix}dark-inverse); + --#{$prefix}tooltip-bg: var(--#{$prefix}dark); + } +} + +@if $enable-dark-mode { + @include color-mode(dark) { + .tooltip:not(.tooltip-inverse) { + --#{$prefix}tooltip-bg: #{$tooltip-bg-dark}; + --#{$prefix}tooltip-box-shadow: #{$tooltip-box-shadow-dark}; + } + } +} diff --git a/src/_metronic/assets/sass/core/components/_tree.scss b/src/_metronic/assets/sass/core/components/_tree.scss new file mode 100644 index 0000000..ab56bc6 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_tree.scss @@ -0,0 +1,92 @@ +// +// Tree +// + +.tree { + // Css variables + --#{$prefix}tree-icon-size: #{$tree-icon-size}; + --#{$prefix}tree-icon-gap: #{$tree-icon-gap}; + --#{$prefix}tree-icon-color-open: var(--#{$prefix}success); + --#{$prefix}tree-icon-color-default: var(--#{$prefix}gray-500); + --#{$prefix}tree-icon-color-close: var(--#{$prefix}gray-500); + --#{$prefix}tree-line-color: var(--#{$prefix}gray-200); + + .tree-node { + padding-left: $tree-node-padding-x; + display: flex; + flex-direction: column; + align-items: start; + } + + .tree-sub { + padding: $tree-node-padding-y 0; + } + + .tree-content { + display: flex; + align-items: center; + padding: $tree-node-padding-y 0; + } + + .tree-wrapper { + padding-left: calc(var(--#{$prefix}tree-icon-size) + var(--#{$prefix}tree-icon-size)); + } + + .tree-section { + display: flex; + align-items: baseline; + padding-left: var(--#{$prefix}tree-icon-gap); + } + + .tree-toggle { + display: flex; + align-items: center; + width: var(--#{$prefix}tree-icon-size); + + .tree-icon-default { + font-size: 1.5rem; + color: var(--#{$prefix}tree-icon-color-default); + } + + .tree-icon-open { + font-size: 1.5rem; + color: var(--#{$prefix}tree-icon-color-open); + } + + .tree-icon-close { + font-size: 1.5rem; + color: var(--#{$prefix}tree-icon-color-close); + } + + &.collapsed { + .tree-icon-close { + display: flex; + } + + .tree-icon-open { + display: none; + } + } + + &:not(.collapsed) { + .tree-icon-close { + display: none; + } + + .tree-icon-open { + display: flex; + } + } + } + + & > .tree-node { + padding-left: 0 !important; + } + + &.tree-line { + .tree-sub { + border-left: 1px solid var(--#{$prefix}tree-line-color); + margin-left: calc(var(--#{$prefix}tree-icon-size) / 2); + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_type.scss b/src/_metronic/assets/sass/core/components/_type.scss new file mode 100644 index 0000000..41837af --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_type.scss @@ -0,0 +1,9 @@ + + +.blockquote-footer { + color: var(--#{$prefix}blockquote-footer-color); +} + +.list-style-none { + list-style: none; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_utilities.scss b/src/_metronic/assets/sass/core/components/_utilities.scss new file mode 100644 index 0000000..3b60a2e --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_utilities.scss @@ -0,0 +1,134 @@ +// +// Custom utilities +// + +$utilities: map-merge( + $utilities, + ( + "cursor": ( + property: cursor, + values: help wait crosshair not-allowed zoom-in grab pointer + ), + "position": ( + property: position, + responsive: true, + values: static relative absolute fixed sticky + ), + "overflow": ( + property: overflow, + responsive: true, + values: auto hidden visible scroll, + ), + "opacity": ( + property: opacity, + class: opacity, + values: $opacity-values + ), + "opacity-hover": ( + property: opacity, + state: hover, + class: opacity, + values: $opacity-values + ), + "font-size": ( + rfs: true, + responsive: true, + property: font-size, + class: fs, + values: $font-sizes + ), + "width": ( + responsive: true, + property: width, + class: w, + values: $custom-sizes + ), + "max-width": ( + responsive: true, + property: max-width, + class: mw, + values: $custom-sizes + ), + "min-width": ( + responsive: true, + property: min-width, + class: min-w, + values: $custom-sizes + ), + "height": ( + responsive: true, + property: height, + class: h, + values: $custom-sizes + ), + "max-height": ( + responsive: true, + property: max-height, + class: mh, + values: $custom-sizes + ), + "min-height": ( + responsive: true, + property: min-height, + class: min-h, + values: $custom-sizes + ), + "z-index": ( + property: z-index, + class: z-index, + values: $zindex-values + ), + "border-top-width": ( + property: border-top-width, + class: border-top, + values: $border-widths + ), + "border-bottom-width": ( + property: border-bottom-width, + class: border-bottom, + values: $border-widths + ), + "border-right-width": ( + property: border-right-width, + class: border-right, + values: $border-widths + ), + "border-left-width": ( + property: border-left-width, + class: border-left, + values: $border-widths + ), + "line-height": ( + property: line-height, + class: lh, + values: ( + 0: 0, + 1: 1, + sm: $line-height-sm, + base: $line-height-base, + lg: $line-height-lg, + xl: $line-height-xl, + xxl: $line-height-xxl + ) + ), + "letter-spacing": ( + property: letter-spacing, + class: ls, + values: $letter-spacing-values + ), + "rounded": ( + property: border-radius, + class: rounded, + values: ( + null: $border-radius, + 0: 0, + 1: $border-radius-sm, + 2: $border-radius, + 3: $border-radius-lg, + 4: $border-radius-xl, + circle: 50%, + pill: $border-radius-pill + ) + ) + ) +); diff --git a/src/_metronic/assets/sass/core/components/_variables-dark.scss b/src/_metronic/assets/sass/core/components/_variables-dark.scss new file mode 100644 index 0000000..a12139c --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_variables-dark.scss @@ -0,0 +1,333 @@ +// Bootstrap color system + +// +// Bootstrap & Custom Variables +// Safely override any variable in _variables.custom.scss +// + +$gray-100-dark: #1B1C22 !default; +$gray-200-dark: #26272F !default; +$gray-300-dark: #363843 !default; +$gray-400-dark: #464852 !default; +$gray-500-dark: #636674 !default; +$gray-600-dark: #808290 !default; +$gray-700-dark: #9A9CAE !default; +$gray-800-dark: #B5B7C8 !default; +$gray-900-dark: #F5F5F5 !default; + +$grays-dark: ( + "100": $gray-100-dark, + "200": $gray-200-dark, + "300": $gray-300-dark, + "400": $gray-400-dark, + "500": $gray-500-dark, + "600": $gray-600-dark, + "700": $gray-700-dark, + "800": $gray-800-dark, + "900": $gray-900-dark +) !default; + +// Bootstrap muted color +$text-muted-dark: $gray-500-dark !default; + +// Bootstrap contextual colors +// Primary colors +$primary-dark: #006AE6 !default; +$primary-active-dark: #107EFF !default; +$primary-light-dark: #172331 !default; +$primary-clarity-dark: rgba(#006AE6, 0.2) !default; +$primary-inverse-dark: $white !default; + +// Secondary colors +$secondary-dark: $gray-300-dark !default; +$secondary-active-dark: $gray-400-dark !default; +$secondary-light-dark: $gray-300-dark !default; +$secondary-clarity-dark: rgba($gray-300-dark, 0.2) !default; +$secondary-inverse-dark: $white !default; + +// Light colors +$light-dark: $gray-100-dark !default; +$light-active-dark: #1F212A !default; +$light-light-dark: #1F212A !default; +$light-clarity-dark: rgba(31, 33, 42, 0.20) !default; +$light-inverse-dark: $gray-600-dark !default; + +// Success colors +$success-dark: #00A261 !default; +$success-active-dark: #01BF73 !default; +$success-light-dark: #1F212A !default; +$success-clarity-dark: rgba(#00A261, 0.2) !default; +$success-inverse-dark: $white !default; + +// Info colors +$info-dark: #883FFF !default; +$info-active-dark: #9E63FF !default; +$info-light-dark: #272134 !default; +$info-clarity-dark: rgba(#883FFF, 0.2) !default; +$info-inverse-dark: $white !default; + +// Warning colors +$warning-dark: #C59A00 !default; +$warning-active-dark: #D9AA00 !default; +$warning-light-dark: #242320 !default; +$warning-clarity-dark: rgba(#C59A00, 0.2) !default; +$warning-inverse-dark: $white !default; + +// Danger colors +$danger-dark: #E42855 !default; +$danger-active-dark: #FF3767 !default; +$danger-light-dark: #302024 !default; +$danger-clarity-dark: rgba(#E42855, 0.2) !default; +$danger-inverse-dark: $white !default; + +// Dark colors +$dark-dark: #272A34 !default; +$dark-active-dark: #2D2F39 !default; +$dark-light-dark: #1E2027 !default; +$dark-clarity-dark: rgba(#272A34, 0.2) !default; +$dark-inverse-dark: $white !default; + +// Contextual colors +$theme-colors-dark: ( + "light": $light-dark, + "primary": $primary-dark, + "secondary": $secondary-dark, + "success": $success-dark, + "info": $info-dark, + "warning": $warning-dark, + "danger": $danger-dark, + "dark": $dark-dark +) !default; + +// Contextual active state colors +$theme-active-colors-dark: ( + "primary": $primary-active-dark, + "secondary": $secondary-active-dark, + "light": $light-active-dark, + "success": $success-active-dark, + "info": $info-active-dark, + "warning": $warning-active-dark, + "danger": $danger-active-dark, + "dark": $dark-active-dark +) !default; + +// Contextual inverse state colors +$theme-inverse-colors-dark: ( + "primary": $primary-inverse-dark, + "secondary": $secondary-inverse-dark, + "light": $light-inverse-dark, + "success": $success-inverse-dark, + "info": $info-inverse-dark, + "warning": $warning-inverse-dark, + "danger": $danger-inverse-dark, + "dark": $dark-inverse-dark +) !default; + +// Contextual light state colors +$theme-light-colors-dark: ( + "primary": $primary-light-dark, + "secondary": $secondary-light-dark, + "success": $success-light-dark, + "info": $info-light-dark, + "warning": $warning-light-dark, + "danger": $danger-light-dark, + "dark": $dark-light-dark, + "light": $light-light-dark +) !default; + +// Contextual light state colors +$theme-clarity-colors-dark: ( + "primary": $primary-clarity-dark, + "secondary": $secondary-clarity-dark, + "success": $success-clarity-dark, + "info": $info-clarity-dark, + "warning": $warning-clarity-dark, + "danger": $danger-clarity-dark, + "dark": $dark-clarity-dark, + "light": $light-clarity-dark, +) !default; + +// Text colors +$theme-text-colors-dark: ( + "white": $white, + "primary": $primary-dark, + "secondary": $secondary-dark, + "light": $light-dark, + "success": $success-dark, + "info": $info-dark, + "warning": $warning-dark, + "danger": $danger-dark, + "dark": $dark-dark, + "muted": $text-muted-dark, + "gray-100": $gray-100-dark, + "gray-200": $gray-200-dark, + "gray-300": $gray-300-dark, + "gray-400": $gray-400-dark, + "gray-500": $gray-500-dark, + "gray-600": $gray-600-dark, + "gray-700": $gray-700-dark, + "gray-800": $gray-800-dark, + "gray-900": $gray-900-dark +) !default; + + +// Body +// +// Settings for the `` element. +$body-bg-dark: #1C1D22 !default; +$body-bg-rgb-dark: to-rgb($body-bg-dark) !default; +$body-color-dark: $gray-900-dark !default; + + +// Links +// +// Style anchor elements. +$link-color-dark: $primary-dark !default; + + +// Components +// +// Define common padding and border radius sizes and more. +$border-color-dark: $gray-200-dark !default; +$border-dashed-color-dark: $gray-300-dark !default; + +// Keenthemes hover states +$component-hover-color-dark: $primary-dark !default; +$component-hover-bg-dark: $gray-100-dark !default; + +// Keenthemes active states +$component-active-color-dark: $primary-inverse !default; +$component-active-bg-dark: $primary-dark !default; + +// Keenthemes checked states +$component-checked-color-dark: $primary-inverse !default; +$component-checked-bg-dark: $primary-dark !default; + +$headings-color-dark: $gray-900-dark !default; +$blockquote-footer-color-dark: $gray-600-dark !default; + + +// Box shadow +$box-shadow-xs-dark: 0 .1rem 0.75rem 0.25rem rgba($black, 0.05) !default; +$box-shadow-sm-dark: 0 .1rem 1rem 0.25rem rgba($black, .05) !default; +$box-shadow-dark: 0 .5rem 1.5rem 0.5rem rgba($black, .075) !default; +$box-shadow-lg-dark: 0 1rem 2rem 1rem rgba($black, .1) !default; +$box-shadow-inset-dark: inset 0 1px 2px rgba($black, .075) !default; + + +// Card +$card-box-shadow-dark: null !default; +$card-border-color-dark: $border-color-dark !default; + +// Tables +$table-striped-bg-dark: rgba($gray-100-dark, 0.75) !default; +$table-loading-message-box-shadow-dark: 0px 0px 30px rgba(0, 0, 0, 0.3) !default; + +// Forms +$form-select-indicator-color-dark: $gray-600-dark !default; +$form-select-indicator-dark: url("data:image/svg+xml,") !default; +$form-switch-color-dark: rgba($white, .25) !default; +$form-switch-color-solid-dark: $gray-500-dark !default; +$form-switch-bg-image-dark: url("data:image/svg+xml,") !default; +$form-switch-bg-image-solid-dark: url("data:image/svg+xml,") !default; + + +// Accordion +$accordion-icon-color-dark: $body-color-dark!default; +$accordion-icon-active-color-dark: $primary-dark !default; +$accordion-button-icon-dark: url("data:image/svg+xml,") !default; +$accordion-button-active-icon-dark: url("data:image/svg+xml,") !default; + + +// Dropdowns +$dropdown-bg-dark: $body-bg-dark !default; +$dropdown-box-shadow-dark: 0px 0px 30px rgba(0, 0, 0, 0.3) !default; + +// Popover +$popover-bg-dark: $gray-200-dark !default; +$popover-border-color-dark: $gray-200-dark !default; +$popover-box-shadow-dark: $dropdown-box-shadow-dark !default; +$popover-header-border-color-dark: $gray-300-dark !default; + +// Toasts +$toast-background-color-dark: $gray-200-dark !default; +$toast-header-background-color-dark: $gray-200-dark !default; +$toast-header-border-color-dark: $gray-300-dark !default; + +// Tooltip +$tooltip-bg-dark: $gray-200-dark !default; +$tooltip-box-shadow-dark: 0px 0px 30px rgba(0, 0, 0, 0.15) !default; + +// Code +$code-bg-dark: #2b2b40 !default; +$code-shadow-dark: rgba(0, 0, 0, 0.08) 0px 3px 9px 0px !default; +$code-color-dark: #b93993 !default; +$code-border-color-dark: transparent !default; + +// Symbol +$symbol-border-color-dark: rgba($body-bg, 0.5); +$symbol-label-color-dark: $gray-800-dark; +$symbol-label-bg-dark: $gray-100-dark; + + +// Keenthemes bullet component +$bullet-bg-color-dark: $gray-400-dark !default; + +// Keenthemes scrolltop component +$scrolltop-opacity-dark: 0 !default; +$scrolltop-opacity-on-dark: 0.3 !default; +$scrolltop-opacity-hover-dark: 1 !default; +$scrolltop-box-shadow-dark: $box-shadow !default; +$scrolltop-bg-color-dark: $primary !default; +$scrolltop-bg-color-hover-dark: $primary !default; +$scrolltop-icon-color-dark: $primary-inverse !default; +$scrolltop-icon-color-hover-dark: $primary-inverse !default; + + +// Keenthemes drawer component +$drawer-box-shadow-dark: 0px 0px 30px rgba(0, 0, 0, 0.1) !default; +$drawer-bg-color-dark: $body-bg-dark !default; +$drawer-overlay-bg-color-dark: rgba($black, 0.4) !default; + +// Keenthemes menu component +$menu-dropdown-box-shadow-dark: $dropdown-box-shadow-dark !default; +$menu-dropdown-bg-color-dark: $dropdown-bg-dark !default; +$menu-link-color-hover-dark: $component-hover-color-dark !default; +$menu-link-color-show-dark: $component-hover-color-dark !default; +$menu-link-color-here-dark: $component-hover-color-dark !default; +$menu-link-color-active-dark: $component-hover-color-dark !default; +$menu-link-bg-color-hover-dark: $component-hover-bg-dark !default; +$menu-link-bg-color-show-dark: $component-hover-bg-dark !default; +$menu-link-bg-color-here-dark: $component-hover-bg-dark !default; +$menu-link-bg-color-active-dark: $component-hover-bg-dark !default; +$menu-heading-color-dark: $text-muted-dark !default; + +// Keenthemes scrollbar component +$scrollbar-color-dark: $gray-200-dark !default; +$scrollbar-hover-color-dark: $gray-300-dark !default; + +// Keenthemes overlay component +$overlay-bg-dark: rgba($white, 0.05) !default; + +// Keenthemes blockui component +$blockui-overlay-bg-dark: rgba($white, 0.05) !default; +$blockui-message-bg-dark: $tooltip-bg-dark !default; +$blockui-message-box-shadow-dark: $tooltip-box-shadow-dark !default; + +// Keenthemes rating component +$rating-color-default-dark: $gray-400-dark !default; +$rating-color-active-dark: #FFAD0F !default; + +// Keenthemes ribbon component +$ribbon-label-box-shadow-dark: 0px -1px 5px 0px rgba($white, 0.1) !default; +$ribbon-label-bg-dark: $primary !default; +$ribbon-label-border-color-dark: darken($primary, 20%) !default; +$ribbon-clip-bg-dark: $light !default; + +// Engage panel +$engage-btn-bg-dark: $gray-200-dark; +$engage-btn-box-shadow-dark: 0px 0px 30px rgba(0, 0, 0, 0.3); +$engage-btn-border-color-dark: $border-color-dark; +$engage-btn-color-dark: $gray-800-dark; +$engage-btn-icon-color-dark: $gray-600-dark; +$engage-btn-color-active-dark: $gray-800-dark; \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/_variables.scss b/src/_metronic/assets/sass/core/components/_variables.scss new file mode 100644 index 0000000..ac54e4d --- /dev/null +++ b/src/_metronic/assets/sass/core/components/_variables.scss @@ -0,0 +1,1274 @@ +// +// Bootstrap & Custom Variables +// Safely override any variable in _variables.custom.scss +// + +// Prefix for :root CSS variables +$prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix` + +// Custom coal colors +$coal-100: #15171C !default; +$coal-200: #13141A !default; +$coal-300: #111217 !default; +$coal-400: #0F1014 !default; +$coal-500: #0D0E12 !default; +$coal-600: #0B0C10 !default; +$coal-black: #000000 !default; +$coal-clarity: rgba(#18191F, 50) !default; + + +// Bootstrap color system +$white: #ffffff !default; +$black:#000000 !default; + +// Bootstrap grey colors +$gray-100: #F9F9F9 !default; +$gray-200: #F1F1F4 !default; +$gray-300: #DBDFE9 !default; +$gray-400: #C4CADA !default; +$gray-500: #99A1B7 !default; +$gray-600: #78829D !default; +$gray-700: #4B5675 !default; +$gray-800: #252F4A !default; +$gray-900: #071437 !default; + +// Bootstrap muted color +$text-muted: $gray-500 !default; + +// Bootstrap gray colors map +$grays: ( + "100": $gray-100, + "200": $gray-200, + "300": $gray-300, + "400": $gray-400, + "500": $gray-500, + "600": $gray-600, + "700": $gray-700, + "800": $gray-800, + "900": $gray-900 +) !default; + +// Bootstrap contextual colors +// Primary colors +$primary: #1B84FF !default; +$primary-active: #056EE9 !default; +$primary-light: #E9F3FF !default; +$primary-clarity: rgba(#1B84FF, 0.2) !default; +$primary-inverse: $white !default; + +// Secondary colors +$secondary: $gray-200 !default; +$secondary-active: $gray-400 !default; +$secondary-light: #F9F9F9 !default; +$secondary-clarity: rgba(#F9F9F9, 0.2) !default; +$secondary-inverse: $gray-800 !default; + +// Light colors +$light: $gray-100 !default; +$light-active: $gray-200 !default; +$light-light: #ffffff !default; +$light-clarity: rgba($white, 0.2) !default; +$light-inverse: $gray-800 !default; + +// Success colors +$success: #17C653 !default; +$success-active: #04B440 !default; +$success-light: #DFFFEA !default; +$success-clarity: rgba(#17C653, 0.2) !default; +$success-inverse: $white !default; + +// Info colors +$info: #7239EA !default; +$info-active: #5014D0 !default; +$info-light: #F8F5FF !default; +$info-clarity: rgba(#7239EA, 0.2) !default; +$info-inverse: $white !default; + +// Warning colors +$warning: #F6C000 !default; +$warning-active: #DEAD00 !default; +$warning-light: #FFF8DD !default; +$warning-clarity: rgba(#F6C000, 0.2) !default; +$warning-inverse: $white !default; + +// Danger colors +$danger: #F8285A !default; +$danger-active: #D81A48 !default; +$danger-light: #FFEEF3 !default; +$danger-clarity: rgba(#F8285A, 0.2) !default; +$danger-inverse: $white !default; + +// Dark colors +$dark: #1E2129 !default; +$dark-active: #111318 !default; +$dark-light: #F9F9F9 !default; +$dark-clarity: rgba(#1E2129, 0.2) !default; +$dark-inverse: $white !default; + +// Contextual colors +$theme-colors: ( + "light": $light, + "primary": $primary, + "secondary": $secondary, + "success": $success, + "info": $info, + "warning": $warning, + "danger": $danger, + "dark": $dark +) !default; + +// Contextual active state colors +$theme-active-colors: ( + "primary": $primary-active, + "secondary": $secondary-active, + "light": $light-active, + "success": $success-active, + "info": $info-active, + "warning": $warning-active, + "danger": $danger-active, + "dark": $dark-active +) !default; + +// Contextual inverse state colors +$theme-inverse-colors: ( + "primary": $primary-inverse, + "secondary": $secondary-inverse, + "light": $light-inverse, + "success": $success-inverse, + "info": $info-inverse, + "warning": $warning-inverse, + "danger": $danger-inverse, + "dark": $dark-inverse +) !default; + +// Contextual light state colors +$theme-light-colors: ( + "primary": $primary-light, + "secondary": $secondary-light, + "success": $success-light, + "info": $info-light, + "warning": $warning-light, + "danger": $danger-light, + "dark": $dark-light, + "light": $light-light +) !default; + +// Contextual light state colors +$theme-clarity-colors: ( + "primary": $primary-clarity, + "secondary": $secondary-clarity, + "success": $success-clarity, + "info": $info-clarity, + "warning": $warning-clarity, + "danger": $danger-clarity, + "dark": $dark-clarity, + "light": $light-clarity, +) !default; + +// Text colors +$theme-text-colors: ( + "white": $white, + "primary": $primary, + "secondary": $secondary, + "light": $light, + "success": $success, + "info": $info, + "warning": $warning, + "danger": $danger, + "dark": $dark, + "muted": $text-muted, + "gray-100": $gray-100, + "gray-200": $gray-200, + "gray-300": $gray-300, + "gray-400": $gray-400, + "gray-500": $gray-500, + "gray-600": $gray-600, + "gray-700": $gray-700, + "gray-800": $gray-800, + "gray-900": $gray-900 +) !default; + +// Options +// +// Quickly modify global styling by enabling or disabling optional features. +$enable-rounded: true !default; +$enable-shadows: true !default; +$enable-negative-margins: true !default; +$enable-smooth-scroll: false !default; + +// Spacing +// +// Control the default styling of most Bootstrap elements by modifying these +// variables. Mostly focused on spacing. +// You can add more entries to the $spacers map, should you need more variation. +$spacer: 1rem !default; + +$spacers: ( + 0: 0, + 1: ($spacer * .25), // 3.5px + 2: ($spacer * .5), // 7px; + 3: ($spacer * .75), // 10.5px + 4: ($spacer * 1), // 14px + 5: ($spacer * 1.25), // 17.5px + 6: ($spacer * 1.5), // 21px + 7: ($spacer * 1.75), // 24.5px + 8: ($spacer * 2), // 28px + 9: ($spacer * 2.25), // 31.5px + 10: ($spacer * 2.5), // 35px + 11: ($spacer * 2.75), // 38.5px + 12: ($spacer * 3), // 42px + 13: ($spacer * 3.25), // 45.5px + 14: ($spacer * 3.5), // 49px + 15: ($spacer * 3.75), // 52.5px + 16: ($spacer * 4), // 55px + 17: ($spacer * 4.25), // 58.5px + 18: ($spacer * 4.5), // 62px + 19: ($spacer * 4.75), // 65.5px + 20: ($spacer * 5), // 69px +); + + +// Position +// +// Define the edge positioning anchors of the position utilities. +$position-values: ( + 0: 0, + 25: 25%, + 50: 50%, + 75: 75%, + 100: 100% +) !default; + + +// Body +// +// Settings for the `` element. +$body-bg: $white !default; +$body-bg-rgb: to-rgb($body-bg) !default; +$body-color: $gray-900 !default; +$body-text-align: null !default; + + +// Links +// +// Style anchor elements. +$link-color: $primary !default; +$link-decoration: none !default; +$link-shade-percentage: 20% !default; +$link-hover-color: $primary-active !default; +$link-hover-decoration: none !default; + + +// Paragraphs +// +// Style p element. +$paragraph-margin-bottom: 1rem !default; + + +// Grid breakpoints +// +// Define the minimum dimensions at which your layout will change, +// adapting to different screen sizes, for use in media queries. +// scss-docs-start grid-breakpoints +$grid-breakpoints: ( + xs: 0, + sm: 576px, + md: 768px, + lg: 992px, + xl: 1200px, + xxl: 1400px +) !default; +// scss-docs-end grid-breakpoints + + +// Grid containers +// +// Define the maximum width of `.container` for different screen sizes. +$container-max-widths: ( + sm: 540px, + md: 720px, + lg: 960px, + xl: 1140px, + xxl: 1320px +) !default; + + +// Components +// +// Define common padding and border radius sizes and more. +$border-width: 1px !default; +$border-color: $gray-200 !default; +$border-dashed-color: $gray-300 !default; + +$border-widths: ( + 0: 0, + 1: 1px, + 2: 2px, + 3: 3px, + 4: 4px, + 5: 5px +) !default; + +// Border Radiues +$border-radius: .475rem !default; +$border-radius-sm: .425rem !default; +$border-radius-lg: .625rem !default; +$border-radius-xl: 1rem !default; +$border-radius-2xl: 2rem !default; +$border-radius-pill: 50rem !default; + +// Keenthemes hover states +$component-hover-color: $primary !default; +$component-hover-bg: $gray-100 !default; + +// Keenthemes active states +$component-active-color: $primary-inverse !default; +$component-active-bg: $primary !default; + +// Keenthemes checked states +$component-checked-color: $primary-inverse !default; +$component-checked-bg: $primary !default; + +// Keenthemes custom transition settings +$transition-link: color .2s ease !default; +$transition-input: color .2s ease !default; + +// Box shadow +// Shadows +$box-shadow-xs: 0 .1rem 0.75rem 0.25rem rgba($black, 0.05) !default; +$box-shadow-sm: 0 .1rem 1rem 0.25rem rgba($black, .05) !default; +$box-shadow: 0 .5rem 1.5rem 0.5rem rgba($black, .075) !default; +$box-shadow-lg: 0 1rem 2rem 1rem rgba($black, .1) !default; +$box-shadow-inset: inset 0 1px 2px rgba($black, .075) !default; + +// Keenthemes custom gutter sizes +$gutters: ( + 0: 0rem, + 1: ($spacer * .25), // 3.5px + 2: ($spacer * .5), // 7px; + 3: ($spacer * .75), // 10.5px + 4: ($spacer * 1), // 14px + 5: ($spacer * 1.25), // 17.5px + 6: ($spacer * 1.5), // 21px + 7: ($spacer * 1.75), // 24.5px + 8: ($spacer * 2), // 28px + 9: ($spacer * 2.25), // 31.5px + 10: ($spacer * 2.5), // 35px +) !default; + + +// Typography +// +// Font, line-height, and color for body text, headings, and more. +// Font family +$font-family-sans-serif: Inter, Helvetica, "sans-serif" !default; + +$font-size-base: 1rem !default; // Assumes the browser default, typically `13px` +$font-size-lg: $font-size-base * 1.075 !default; // 14.04px +$font-size-xl: $font-size-base * 1.21 !default; // 16.04px +$font-size-sm: $font-size-base * .95 !default; // 12.025px + +$font-weight-lighter: lighter !default; +$font-weight-light: 300 !default; +$font-weight-normal: 400 !default; +$font-weight-semibold: 500 !default; +$font-weight-bold: 600 !default; +$font-weight-bolder: 700 !default; + +$font-weight-base: $font-weight-normal !default; + +// Line heights +$line-height-base: 1.5 !default; +$line-height-sm: 1.25 !default; +$line-height-lg: 1.75 !default; + +// Keenthemes custom line heights +$line-height-xl: 2 !default; +$line-height-xxl: 2.25 !default; + +// Heading sizes +$h1-font-size: $font-size-base * 1.75 !default; // 22.75px +$h2-font-size: $font-size-base * 1.5 !default; // 19.50px +$h3-font-size: $font-size-base * 1.35 !default; // 17.55px +$h4-font-size: $font-size-base * 1.25 !default; // 16.25px +$h5-font-size: $font-size-base * 1.15 !default; // 14.95px +$h6-font-size: $font-size-base * 1.075 !default; // 13.97px + +// Font Sizes +$font-sizes: ( + 1: $h1-font-size, // 22.75px + 2: $h2-font-size, // 19.50px + 3: $h3-font-size, // 17.55px + 4: $h4-font-size, // 16.25px + 5: $h5-font-size, // 14.95px + 6: $h6-font-size, // 13.95px + + 7: $font-size-base * 0.95, // 12.35px + 8: $font-size-base * 0.85, // 11.05px + 9: $font-size-base * 0.75, // 9.75px + 10: $font-size-base * 0.5, // 6.50px + + sm: $font-size-sm, + base: $font-size-base, // 13px + lg: $font-size-lg, + xl: $font-size-xl, + + fluid: 100%, // 100% + + 2x: $font-size-base * 2, // 26px + 2qx: $font-size-base * 2.25, // 29.25px + 2hx: $font-size-base * 2.5, // 32.5px + 2tx: $font-size-base * 2.75, // 35.75px + + 3x: $font-size-base * 3, // 39px + 3qx: $font-size-base * 3.25, // 42.25px + 3hx: $font-size-base * 3.5, // 45.5px + 3tx: $font-size-base * 3.75, // 48.75px + + 4x: $font-size-base * 4, // 52px + 4qx: $font-size-base * 4.25, // 55.25px + 4hx: $font-size-base * 4.5, // 58.5px + 4tx: $font-size-base * 4.75, // 61.75px + + 5x: $font-size-base * 5, // 65px + 5qx: $font-size-base * 5.25, // 68.25px + 5hx: $font-size-base * 5.5, // 71.5px + 5tx: $font-size-base * 5.75, // 74.75px + + 6x: $font-size-base * 6, // 75px + 6qx: $font-size-base * 6.25, // 78.25px + 6hx: $font-size-base * 6.5, // 81.5px + 6tx: $font-size-base * 6.75, // 84.75px + + 7x: $font-size-base * 7, // 85px + 7qx: $font-size-base * 7.25, // 88.25px + 7hx: $font-size-base * 7.5, // 91.5px + 7tx: $font-size-base * 7.75 // 94.75px +) !default; + +$headings-font-weight: 600 !default; +$headings-color: $gray-900 !default; +$headings-line-height: 1.2 !default; + +$display-font-sizes: ( + 1: 5rem, + 2: 4.5rem, + 3: 4rem, + 4: 3.5rem, + 5: 3rem, + 6: 2.5rem +) !default; + +$display-font-weight: $font-weight-bolder !default; +$display-line-height: $headings-line-height !default; + +$blockquote-footer-color: $gray-600 !default; + + +// Tables +// +// Customizes the `.table` component with basic values, each used across all table variations. +$table-cell-padding-y: .75rem !default; +$table-cell-padding-x: .75rem !default; +$table-cell-padding-y-sm: .5rem !default; +$table-cell-padding-x-sm: .5rem !default; + +$table-color: var(--#{$prefix}body-color) !default; +$table-bg: transparent !default; +$table-accent-bg: transparent !default; +$table-striped-color: $table-color !default; +$table-striped-bg: rgba(var(--#{$prefix}gray-100-rgb), 0.75) !default; + +$table-active-color: $table-color !default; +$table-active-bg: var(--#{$prefix}gray-100) !default; + +$table-hover-color: $table-color !default; +$table-hover-bg: var(--#{$prefix}gray-100) !default; + +$table-border-factor: .1 !default; +$table-border-width: $border-width !default; +$table-border-color: var(--#{$prefix}border-color) !default; + +$table-caption-color: $text-muted !default; + +$table-loading-message-box-shadow: 0px 0px 50px 0px rgba(82,63,105, 0.15) !default; +$table-loading-message-bg: var(--#{$prefix}body-bg) !default; +$table-loading-message-color: var(--#{$prefix}gray-700) !default; + + +// Buttons + Forms +// +// Shared variables that are reassigned to `$input-` and `$btn-` specific variables. +$input-btn-padding-y: .775rem !default; +$input-btn-padding-x: 1rem !default; +$input-btn-font-family: null !default; +$input-btn-font-size: $font-size-base * 1.1 !default; +$input-btn-line-height: $line-height-base !default; + +$input-btn-focus-width: .25rem !default; +$input-btn-focus-color-opacity: .25 !default; +$input-btn-focus-color: rgba(var(--#{$prefix}component-active-bg), $input-btn-focus-color-opacity) !default; +$input-btn-focus-box-shadow: null !default; + + +$input-btn-padding-y-sm: .55rem !default; +$input-btn-padding-x-sm: .75rem !default; +$input-btn-font-size-sm: $font-size-sm !default; + +$input-btn-padding-y-lg: .825rem !default; +$input-btn-padding-x-lg: 1.5rem !default; +$input-btn-font-size-lg: $font-size-base * 1.15 !default; + +$input-btn-border-width: $border-width !default; + +// Buttons +// +// For each of Bootstrap's buttons, define text, background, and border color. +$btn-padding-y: $input-btn-padding-y !default; +$btn-padding-x: 1.5rem !default; +$btn-font-family: $input-btn-font-family !default; +$btn-font-size: $input-btn-font-size !default; +$btn-line-height: $input-btn-line-height !default; +$btn-white-space: null !default; // Set to `nowrap` to prevent text wrapping + +$btn-padding-y-sm: $input-btn-padding-y-sm !default; +$btn-padding-x-sm: 1rem !default; +$btn-font-size-sm: $input-btn-font-size-sm !default; + +$btn-padding-y-lg: $input-btn-padding-y-lg !default; +$btn-padding-x-lg: 1.75rem !default; +$btn-font-size-lg: $input-btn-font-size-lg !default; + +$btn-border-width: $input-btn-border-width !default; + +$btn-font-weight: $font-weight-semibold !default; +$btn-box-shadow: none !default; +$btn-focus-width: $input-btn-focus-width !default; +$btn-focus-box-shadow: none !default; +$btn-disabled-opacity: .65 !default; +$btn-active-box-shadow: none !default; + +$btn-link-color: var(--#{$prefix}link-color) !default; +$btn-link-hover-color: var(--#{$prefix}link-hover-color) !default; +$btn-link-disabled-color: var(--#{$prefix}gray-600) !default; + +// Allows for customizing button radius independently from global border radius +$btn-border-radius: $border-radius !default; +$btn-border-radius-sm: $border-radius-sm !default; +$btn-border-radius-lg: $border-radius-lg !default; + + +// Forms +$form-text-margin-top: .5rem !default; +$form-text-font-size: $font-size-sm !default; +$form-text-color: var(--#{$prefix}text-muted) !default; + +$form-label-margin-bottom: .5rem !default; +$form-label-font-size: 1.05rem !default; +$form-label-font-weight: 500 !default; +$form-label-color: var(--#{$prefix}gray-800) !default; + +$input-padding-y: $input-btn-padding-y !default; +$input-padding-x: $input-btn-padding-x !default; +$input-font-family: $input-btn-font-family !default; +$input-font-size: $input-btn-font-size !default; +$input-font-weight: $font-weight-semibold !default; +$input-line-height: $input-btn-line-height !default; + +$input-bg: var(--#{$prefix}body-bg) !default; + +$input-border-width: $input-btn-border-width !default; +$input-color: var(--#{$prefix}gray-700) !default; +$input-border-color: var(--#{$prefix}gray-300) !default; +$input-box-shadow: false !default; +$input-border-radius: $btn-border-radius !default; +$input-border-radius-sm: $btn-border-radius-sm !default; +$input-border-radius-lg: $btn-border-radius-lg !default; + +$input-focus-bg: $input-bg !default; +$input-focus-border-color: var(--#{$prefix}gray-400) !default; +$input-btn-focus-width: .25rem !default; +$input-focus-color: $input-color !default; +$input-focus-width: $input-btn-focus-width !default; + +$input-disabled-color: var(--#{$prefix}gray-500) !default; +$input-disabled-bg: var(--#{$prefix}gray-200) !default; +$input-disabled-border-color: $input-border-color !default; + +$input-placeholder-color: var(--#{$prefix}gray-500) !default; +$input-plaintext-color: var(--#{$prefix}gray-700) !default; + +$inpur-autifill-bg-color: var(--#{$prefix}gray-100) !default; + +// Keenthemes solid input style +$input-solid-color: var(--#{$prefix}gray-700) !default; +$input-solid-bg: var(--#{$prefix}gray-100) !default; +$input-solid-bg-focus: var(--#{$prefix}gray-200) !default; +$input-solid-placeholder-color: var(--#{$prefix}gray-500) !default; + + +// Form checks +$form-check-input-width: 1.75rem !default; +$form-check-input-width-sm: 1.55rem !default; +$form-check-input-width-lg: 2.25rem !default; +$form-check-input-bg-size: 60% 60% !default; +$form-check-min-height: $font-size-base * $line-height-base !default; +$form-check-padding-start: $form-check-input-width + .5rem !default; +$form-check-padding-left: $form-check-input-width + .5rem !default; +$form-check-margin-bottom: .125rem !default; +$form-check-label-color: var(--#{$prefix}gray-500) !default; +$form-check-label-color-checked: var(--#{$prefix}gray-700) !default; +$form-check-label-cursor: null !default; +$form-check-transition: null !default; +$form-check-inline-margin-right: 1rem !default; + +$form-check-input-active-filter: brightness(90%) !default; + +$form-check-input-bg: transparent !default; +$form-check-input-bg-solid: var(--#{$prefix}gray-200) !default; +$form-check-input-border: 1px solid $input-border-color !default; +$form-check-input-border-radius: .45em !default; +$form-check-radio-border-radius: 50% !default; +$form-check-input-focus-border: $input-focus-border-color !default; +$form-check-input-focus-box-shadow: none !default; + +$form-check-input-checked-color: $component-checked-color !default; +$form-check-input-checked-bg-color: $component-checked-bg !default; +$form-check-input-checked-border-color: $component-checked-bg !default; +$form-check-input-checked-bg-image: url("data:image/svg+xml,") !default; +$form-check-radio-checked-bg-image: url("data:image/svg+xml,") !default; + +$form-check-input-checked-bg-color-solid: $component-checked-bg !default; +$form-check-input-focus-bg-color-solid: $component-checked-bg !default; + +$form-check-input-indeterminate-color: $component-checked-color !default; +$form-check-input-indeterminate-bg-color: $component-checked-bg !default; +$form-check-input-indeterminate-border-color: $component-checked-bg !default; +$form-check-input-indeterminate-bg-image: url("data:image/svg+xml,") !default; + +$form-check-input-disabled-opacity: .5 !default; +$form-check-label-disabled-opacity: $form-check-input-disabled-opacity !default; +$form-check-btn-check-disabled-opacity: $btn-disabled-opacity !default; + +$form-switch-color: rgba($black, .25) !default; +$form-switch-color-solid: $white !default; +$form-switch-width: 3.25rem !default; +$form-switch-height: 2.25rem !default; +$form-switch-width-sm: 2.5rem !default; +$form-switch-height-sm: 1.5rem !default; +$form-switch-width-lg: 3.75rem !default; +$form-switch-height-lg: 2.75rem !default; + +$form-switch-padding-start: $form-switch-width + .5rem !default; +$form-switch-padding-left: $form-switch-width + .5rem !default; +$form-switch-bg-image: url("data:image/svg+xml,") !default; +$form-switch-bg-image-solid: url("data:image/svg+xml,") !default; +$form-switch-border-radius: $form-switch-width !default; + +$form-switch-focus-color: $form-switch-color !default; +$form-switch-focus-bg-image: url("data:image/svg+xml,") !default; + +$form-switch-checked-color: $component-checked-color !default; +$form-switch-checked-bg-image: url("data:image/svg+xml,") !default; +$form-switch-checked-bg-position: right center !default; + + +// Input groups +$input-group-addon-bg: var(--#{$prefix}gray-100) !default; +$input-group-addon-color: var(--#{$prefix}gray-700) !default; +$input-group-addon-border-color: $input-border-color !default; + + +// Form select +$form-select-color: $input-color !default; +$form-select-bg: $input-bg !default; +$form-select-disabled-color: $input-disabled-color !default; +$form-select-disabled-bg: var(--#{$prefix}gray-200) !default; +$form-select-disabled-border-color: $input-disabled-border-color !default; +$form-select-indicator-color: $gray-600 !default; +$form-select-indicator: url("data:image/svg+xml,") !default; +$form-select-border-color: $input-border-color !default; +$form-select-box-shadow: false !default; +$form-select-focus-border-color: $input-focus-border-color !default; +$form-select-focus-width: $input-focus-width !default; +$form-select-focus-box-shadow: 0 0 0 $form-select-focus-width $input-btn-focus-color !default; + + +// Form range +$form-range-track-border-radius: $border-radius !default; +$form-range-track-bg: var(--#{$prefix}gray-300) !default; +$form-range-thumb-disabled-bg: var(--#{$prefix}gray-500) !default; + + +// Form file button +$form-file-button-color: $input-color !default; +$form-file-button-bg: $input-group-addon-bg !default; +$form-file-button-hover-bg: shade-color($form-file-button-bg, 5%) !default; + + +// Form floating +$input-height-border: $input-border-width * 2 !default; +$form-floating-height: calc(3.75rem + #{$input-height-border}) !default; +$form-floating-input-padding-t: 1.85rem !default; + + +// Navs +$nav-link-transition: color .15s ease-in-out !default; +$nav-tabs-border-color: var(--#{$prefix}border-color) !default; + + +// Dropdowns +// Dropdown menu container and contents. +$dropdown-color: var(--#{$prefix}body-color) !default; +$dropdown-bg: var(--#{$prefix}body-bg) !default; +$dropdown-divider-bg: var(--#{$prefix}gray-100) !default; +$dropdown-box-shadow: 0px 0px 50px 0px rgba(82,63,105, 0.15) !default; +$dropdown-border-radius: $border-radius !default; +$dropdown-border-width: 0rem !default; +$dropdown-link-color: var(--#{$prefix}gray-900) !default; +$dropdown-link-active-color: var(--#{$prefix}component-hover-color) !default; +$dropdown-link-active-bg: var(--#{$prefix}component-hover-bg) !default; +$dropdown-link-active-color: var(--#{$prefix}component-active-color) !default; +$dropdown-link-active-bg: var(--#{$prefix}component-active-bg) !default; +$dropdown-link-disabled-color: var(--#{$prefix}gray-500) !default; +$dropdown-header-color: var(--#{$prefix}gray-600) !default; +$dropdown-item-padding-y: 0.65rem !default; +$dropdown-item-padding-x: 0.85rem !default; + + +// Pagination +$pagination-item-height: 2.5rem !default; +$pagination-item-bg: var(--#{$prefix}body-bg) !default; +$pagination-item-space: 0.5rem !default; +$pagination-item-space-tablet-and-mobile: 0.25rem !default; +$pagination-font-weight: $font-weight-semibold !default; +$pagination-font-size: $font-size-lg !default; +$pagination-icon-font-size: 0.85rem !default; +$pagination-icon-height: $pagination-item-height * 0.35 !default; + +$pagination-padding-y: .375rem !default; +$pagination-padding-x: .75rem !default; +$pagination-padding-y-sm: .25rem !default; +$pagination-padding-x-sm: .5rem !default; +$pagination-padding-y-lg: .75rem !default; +$pagination-padding-x-lg: 1.5rem !default; + +$pagination-color: var(--#{$prefix}gray-700) !default; +$pagination-bg: transparent !default; +$pagination-border-width: 0 !default; +$pagination-border-radius: $btn-border-radius !default; +$pagination-margin-left: 0 !default; +$pagination-border-color: transparent !default; + +$pagination-focus-color: var(--#{$prefix}component-hover-color) !default; +$pagination-focus-bg: var(--#{$prefix}component-hover-bg) !default; +$pagination-focus-box-shadow: none !default; +$pagination-focus-outline: 0 !default; + +$pagination-hover-color: var(--#{$prefix}component-hover-color) !default; +$pagination-hover-bg: var(--#{$prefix}component-hover-bg) !default; +$pagination-hover-border-color: transparent !default; + +$pagination-active-color: var(--#{$prefix}component-active-color) !default; +$pagination-active-bg: var(--#{$prefix}component-active-bg) !default; +$pagination-active-border-color: transparent !default; + +$pagination-disabled-color: var(--#{$prefix}gray-400) !default; +$pagination-disabled-bg: transparent !default; +$pagination-disabled-border-color: transparent !default; + +// Card +$card-box-shadow: 0px 0px 20px 0px rgba(76,87,125,0.02) !default; +$card-border-color: $border-color !default; +$card-border-width: 1px !default; +$card-border-style: solid !default; +$card-border-dashed-color: var(--#{$prefix}border-dashed-color) !default; +$card-color: null !default; +$card-cap-bg: transparent !default; +$card-py: 2rem !default; +$card-px: 2.25rem !default; +$card-border-radius: $border-radius-lg !default; +$card-header-py: 0.5rem !default; +$card-header-height: 70px !default; +$card-border-enabled: false !default; +$card-title-color: var(--#{$prefix}gray-900) !default; + +// Accordion +$accordion-color: var(--#{$prefix}body-color) !default; +$accordion-bg: var(--#{$prefix}body-bg) !default; +$accordion-padding-y: 1.5rem !default; +$accordion-padding-x: 1.5rem !default; +$accordion-border-color: var(--#{$prefix}border-color) !default; +$accordion-border-radius: $border-radius !default; +$accordion-button-color: $accordion-color !default; +$accordion-button-bg: $accordion-bg !default; +$accordion-button-active-bg: var(--#{$prefix}gray-100) !default; +$accordion-button-active-color: var(--#{$prefix}primary) !default; +$accordion-button-focus-border-color: var(--#{$prefix}border-color) !default; +$accordion-button-focus-box-shadow: none !default; + +$accordion-icon-width: 1.15rem !default; +$accordion-icon-color: $body-color !default; +$accordion-icon-active-color: $primary !default; +$accordion-button-icon: url("data:image/svg+xml,") !default; +$accordion-button-active-icon: url("data:image/svg+xml,") !default; + + +// Tooltips +$tooltip-font-size: 1rem !default; +$tooltip-max-width: 200px !default; +$tooltip-color: var(--#{$prefix}gray-800) !default; +$tooltip-bg: var(--#{$prefix}body-bg) !default; +$tooltip-border-radius: $btn-border-radius !default; +$tooltip-opacity: 1 !default; +$tooltip-box-shadow: 0px 0px 50px 0px rgba(82,63,105, 0.075) !default; +$tooltip-padding-y: .75rem !default; +$tooltip-padding-x: 1rem !default; +$tooltip-margin: 0 !default; + + +// Popovers +$popover-bg: $body-bg !default; +$popover-font-size: $font-size-base !default; +$popover-border-color: $popover-bg !default; +$popover-border-radius: $border-radius !default; +$popover-inner-border-radius: $border-radius !default; +$popover-box-shadow: $dropdown-box-shadow !default; +$popover-header-bg: $popover-bg !default; +$popover-header-color: var(--#{$prefix}gray-800) !default; +$popover-header-font-weight: 500 !default; +$popover-header-font-size: 1rem !default; +$popover-header-padding-y: 1rem !default; +$popover-header-padding-x: 1.25rem !default; +$popover-header-border-color: $border-color !default; +$popover-body-color: var(--#{$prefix}gray-800) !default; +$popover-body-padding-y: 1.25rem !default; +$popover-body-padding-x: 1.25rem !default; +$popover-dissmis-btn-size: 1.25rem !default; +$popover-dissmis-btn-top: 0.85rem !default; +$popover-dissmis-btn-end: 0.85rem !default; + + +// Toasts +$toast-color: var(--#{$prefix}gray-700) !default; +$toast-background-color: var(--#{$prefix}body-bg) !default; +$toast-box-shadow: var(--#{$prefix}box-shadow) !default; +$toast-header-color: var(--#{$prefix}gray-700) !default; +$toast-header-background-color: var(--#{$prefix}body-bg) !default; +$toast-header-border-color: var(--#{$prefix}border-color) !default; +$toast-border-color: transparent !default; + + +// Badges +$badge-font-size: 0.85rem !default; +$badge-font-size-sm: 0.8rem !default; +$badge-font-size-lg: 1rem !default; +$badge-font-weight: $font-weight-bold !default; +$badge-color: var(--#{$prefix}body-color) !default; +$badge-padding-y: .325rem !default; +$badge-padding-x: .5rem !default; +$badge-border-radius: $border-radius-sm !default; +$badge-size: 1.75rem !default; +$badge-size-sm: 1.5rem !default; +$badge-size-lg: 2rem !default; + +// Modals +// Padding applied to the modal body +$modal-inner-padding: 1.75rem !default; + +// Margin between elements in footer, must be lower than or equal to 2 * $modal-inner-padding +$modal-footer-margin-between: .5rem !default; + +$modal-dialog-margin: .5rem !default; +$modal-dialog-margin-y-sm-up: 1.75rem !default; + +$modal-content-color: null !default; +$modal-content-bg: var(--#{$prefix}body-bg) !default; +$modal-content-border-color: null !default; +$modal-content-border-width: 0 !default; +$modal-content-border-radius: $border-radius !default; +$modal-content-inner-border-radius: $border-radius !default; +$modal-content-box-shadow: 0 .25rem .5rem rgba($black, .05) !default; +$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .1) !default; +$modal-content-box-shadow-sm-up: 0 .5rem 1rem rgba($black, .1) !default; + +$modal-backdrop-bg: $black !default; +$modal-backdrop-opacity: 0.4 !default; + +$modal-header-border-color: var(--#{$prefix}border-color) !default; +$modal-footer-border-color: $modal-header-border-color !default; +$modal-header-border-width: 1px !default; + + +// Progress bars +$progress-height: 1rem !default; +$progress-font-size: $font-size-base * .75 !default; +$progress-bg: var(--#{$prefix}gray-100) !default; +$progress-border-radius: 6px !default; +$progress-box-shadow: none !default; + + +// List group +$list-group-color: var(--#{$prefix}gray-900) !default; +$list-group-bg: $white !default; +$list-group-border-color: rgba($black, .125) !default; + +$list-group-hover-bg: var(--#{$prefix}gray-100) !default; +$list-group-active-color: var(--#{$prefix}component-active-color) !default; +$list-group-active-bg: var(--#{$prefix}component-active-bg) !default; +$list-group-active-border-color: $list-group-active-bg !default; + +$list-group-disabled-color: var(--#{$prefix}gray-600) !default; +$list-group-disabled-bg: $list-group-bg !default; + +$list-group-action-color: var(--#{$prefix}gray-700) !default; +$list-group-action-hover-color: $list-group-action-color !default; + +$list-group-action-active-color: var(--#{$prefix}body-color) !default; +$list-group-action-active-bg: var(--#{$prefix}gray-200) !default; + +// Image thumbnails +$thumbnail-bg: var(--#{$prefix}body-bg) !default; +$thumbnail-border-color: var(--#{$prefix}border-color) !default; +$thumbnail-box-shadow: var(--#{$prefix}box-shadow-sm) !default; + + +// Figures +$figure-caption-color: var(--#{$prefix}gray-600) !default; + + +// Breadcrumbs +$breadcrumb-bg: null !default; +$breadcrumb-divider-color: var(--#{$prefix}gray-600) !default; +$breadcrumb-active-color: var(--#{$prefix}primary) !default; +$breadcrumb-item-padding-x: .5rem !default; + + +// Carousel +$carousel-custom-indicator-transition-speed: 0.3s !default; +$carousel-custom-indicator-default-bg-color: var(--#{$prefix}gray-200) !default; +$carousel-custom-indicator-active-bg-color: var(--#{$prefix}gray-400) !default; + +$carousel-custom-dots-indicator-default-size: 9px !default; +$carousel-custom-dots-indicator-active-size: 13px !default; + +$carousel-custom-bullet-indicator-default-size: 6px !default; +$carousel-custom-bullet-indicator-active-width: 16px !default; +$carousel-custom-bullet-indicator-default-bg-color: var(--#{$prefix}gray-400) !default; +$carousel-custom-bullet-indicator-active-bg-color: var(--#{$prefix}gray-600) !default; + +// Spinners +$spinner-border-width: .185rem !default; +$spinner-animation-speed: .65s !default; +$spinner-border-width-sm: .145em !default; + + +// Close +$btn-close-width: 0.75rem !default; +$btn-close-height: $btn-close-width !default; +$btn-close-color: $black !default; +$btn-close-bg: url("data:image/svg+xml,") !default; +$btn-close-focus-shadow: none !default; + +// Code +$code-bg: #f1f3f8 !default; +$code-shadow: 0px 3px 9px rgba(0,0,0,.08); +$code-color: #b93993 !default; +$code-border-color: transparent !default; +$code-padding: 0.1rem 0.4rem !default; +$code-margin: 0 0.5rem !default; +$code-font-size: 1rem !default; +$code-font-weight: 400 !default; +$code-border-radius: 0.3rem !default; +$code-space: 0.25rem !default; + +// Opacity +$opacity-values: ( + 0: 0, + 5: .05, + 10: .1, + 15: .15, + 20: .20, + 25: .25, + 50: .5, + 75: .75, + 100: 1, + ) !default; + +// Zindex +$zindex-values: ( + n1: -1, + n2: -2, + 0: 0, + 1: 1, + 2: 2, + 3: 3 +) !default; + +// Letter spacing +$letter-spacing-values: ( + 1: 0.1rem, + 2: 0.115rem, + 3: 0.125rem, + 4: 0.25rem, + 5: 0.5rem, + n1: -0.1rem, + n2: -0.115rem, + n3: -0.125rem, + n4: -0.25rem, + n5: -0.5rem, +) !default; + +// Keenthemes hight and width sizes +$custom-sizes: ( + unset: unset, + 25: 25%, + 50: 50%, + 75: 75%, + 100: 100%, + auto: auto, + 1px: 1px, + 2px: 2px, + 3px: 3px, + 4px: 4px, + 5px: 5px, + 6px: 6px, + 7px: 7px, + 8px: 8px, + 9px: 9px, + 10px: 10px, + 15px: 15px, + 20px: 20px, + 25px: 25px, + 30px: 30px, + 35px: 35px, + 40px: 40px, + 45px: 45px, + 50px: 50px, + 55px: 55px, + 60px: 60px, + 65px: 65px, + 70px: 70px, + 75px: 75px, + 80px: 80px, + 85px: 85px, + 90px: 90px, + 95px: 95px, + 100px: 100px, + 125px: 125px, + 150px: 150px, + 175px: 175px, + 200px: 200px, + 225px: 225px, + 250px: 250px, + 275px: 275px, + 300px: 300px, + 325px: 325px, + 350px: 350px, + 375px: 375px, + 400px: 400px, + 425px: 425px, + 450px: 450px, + 475px: 475px, + 500px: 500px, + 550px: 550px, + 600px: 600px, + 650px: 650px, + 700px: 700px, + 750px: 750px, + 800px: 800px, + 850px: 850px, + 900px: 900px, + 950px: 950px, + 1000px: 1000px +) !default; + + +// Keenthemes symbol component +$symbol-sizes: ( + 20px: 20px, + 25px: 25px, + 30px: 30px, + 35px: 35px, + 40px: 40px, + 45px: 45px, + default: 50px, + 50px: 50px, + 55px: 55px, + 60px: 60px, + 65px: 65px, + 70px: 70px, + 75px: 75px, + 90px: 90px, + 100px:100px, + 125px:125px, + 150px:150px, + 160px:160px, + 175px:175px, + 200px:200px +) !default; + +$symbol-border-color: rgba(var(--#{$prefix}body-bg), 0.5); +$symbol-label-color: var(--#{$prefix}gray-800); +$symbol-label-bg: var(--#{$prefix}gray-100); + +// Keenthemes timeline component +$timeline-icon-size: 38px; +$timeline-icon-space: 0.35rem; + + +// Keenthemes bullet component +$bullet-bg-color: var(--#{$prefix}gray-400) !default; +$bullet-dot-size: 4px !default; +$bullet-bar-height: 4px !default; +$bullet-bar-width: 8px !default; +$bullet-bar-border-radius: 6px !default; +$bullet-line-height: 1px !default; +$bullet-line-width: 5px !default; + + +// Keenthemes scrolltop component +$scrolltop-z-index: 105 !default; +$scrolltop-opacity: 0 !default; +$scrolltop-opacity-on: 0.3 !default; +$scrolltop-opacity-hover: 1 !default; +$scrolltop-bottom: 40px !default; +$scrolltop-bottom-mobile: 30px !default; +$scrolltop-end: 20px !default; +$scrolltop-end-mobile: 15px !default; +$scrolltop-size: 36px !default; +$scrolltop-size-mobile: 30px !default; +$scrolltop-box-shadow: var(--#{$prefix}box-shadow) !default; +$scrolltop-bg-color: var(--#{$prefix}primary) !default; +$scrolltop-bg-color-hover: var(--#{$prefix}primary) !default; +$scrolltop-icon-color: var(--#{$prefix}primary-inverse) !default; +$scrolltop-icon-color-hover: var(--#{$prefix}primary-inverse) !default; + +// Keenthemes sticky toolbar component +$sticky-toolbar-z-index: 95 !default; + + +// Keenthemes drawer component +$drawer-z-index: 110 !default; +$drawer-box-shadow: 0px 1px 9px -3px rgba(0,0,0, 0.05) !default; +$drawer-bg-color: $body-bg !default; +$drawer-transition-speed: 0.3s !default; +$drawer-overlay-bg-color: rgba($black, 0.2) !default; +$drawer-overlay-animation-speed: 0.3s !default; + +// Keenthemes menu component +$menu-dropdown-box-shadow: $dropdown-box-shadow !default; +$menu-dropdown-z-index: 107 !default; +$menu-dropdown-bg-color: $dropdown-bg !default; +$menu-dropdown-border-radius: $dropdown-border-radius !default; +$menu-dropdown-animation: true !default; +$menu-dropdown-animation-speed: 0.3s !default; +$menu-dropdown-animation-move-offset: 0.75rem !default; +$menu-accordion-indention: 1rem !default; +$menu-accordion-arrow-transition: transform 0.3s ease !default; +$menu-item-padding-y: 0.15rem !default; +$menu-item-padding-x: 0 !default; +$menu-link-padding-y: 0.65rem !default; +$menu-link-padding-x: 1rem !default; +$menu-link-border-radius: $border-radius !default; +$menu-link-color-hover: $component-hover-color !default; +$menu-link-color-show: $component-hover-color !default; +$menu-link-color-here: $component-hover-color !default; +$menu-link-color-active: $component-hover-color !default; +$menu-link-bg-color-hover: $component-hover-bg !default; +$menu-link-bg-color-show: $component-hover-bg !default; +$menu-link-bg-color-here: $component-hover-bg !default; +$menu-link-bg-color-active: $component-hover-bg !default; +$menu-icon-size: 2rem !default; +$menu-icon-space: 0.5rem !default; +$menu-bullet-size: 1.25rem !default; +$menu-bullet-space: 0.5rem !default; +$menu-badge-space: 0.5rem !default; +$menu-arrow-size: 9px !default; +$menu-arrow-space: 5px !default; +$menu-heading-color: $text-muted !default; + +// Keenthemes tree component +$tree-icon-size: 16px !default; +$tree-icon-gap: 14px !default; +$tree-node-padding-y: 0.35rem !default; +$tree-node-padding-x: 1.25rem !default; + + +// Keenthemes scrollbar component +$scrollbar-size: 5px !default; +$scrollbar-overlay-size: 19px !default; +$scrollbar-overlay-space: 7px !default; +$scrollbar-color: $gray-200 !default; +$scrollbar-hover-color: $gray-300 !default; +$body-scrollbar-width: 15px !default; + +// Keenthemes overlay component +$overlay-bg: rgba($black, 0.05) !default; + +// Keenthemes blockui component +$blockui-overlay-bg: rgba($black, 0.05) !default; +$blockui-message-bg: $tooltip-bg !default; +$blockui-message-box-shadow: $tooltip-box-shadow !default; + +// Keenthemes rating component +$rating-color-default: $gray-400 !default; +$rating-color-active: #FFAD0F !default; + +// Keenthemes ribbon component +$ribbon-label-box-shadow: 0px -1px 5px 0px rgba($dark, 0.1) !default; +$ribbon-label-bg: $primary !default; +$ribbon-label-border-color: darken($primary, 20%) !default; +$ribbon-clip-bg: $dark !default; + +// Keenthemes fixed component +$fixed-z-index: 101 !default; + +// Engage panel +$engage-btn-bg: $body-bg; +$engage-btn-box-shadow: 0px 0px 22px #E0E0E0; +$engage-btn-border-color: #E8E8E8; +$engage-btn-color: $gray-800; +$engage-btn-icon-color: $gray-600; +$engage-btn-color-active: $gray-800; +$engage-z-index: 5; + +// Social Network Colors Used With Boostrap Buttons(see: https://brandcolors.net) +$social-colors: ( + facebook: ( + base: #3b5998, + inverse: #ffffff, + light: rgba(#3b5998, 0.1), + active: darken(#3b5998, 7.5%) + ), + google: ( + base: #dd4b39, + inverse: #ffffff, + light: rgba(#dd4b39, 0.1), + active: darken(#dd4b39, 7.5%) + ), + twitter: ( + base: #1da1f2, + inverse: #ffffff, + light: rgba(#1da1f2, 0.1), + active: darken(#1da1f2, 7.5%) + ), + instagram: ( + base: #e1306c, + inverse: #ffffff, + light: rgba(#e1306c, 0.1), + active: darken(#e1306c, 7.5%) + ), + youtube: ( + base: #ff0000, + inverse: #ffffff, + light: rgba(#ff0000, 0.1), + active: darken(#ff0000, 7.5%) + ), + linkedin: ( + base: #0077b5, + inverse: #ffffff, + light: rgba(#0077b5, 0.1), + active: darken(#0077b5, 7.5%) + ) +) !default; \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/buttons/_base.scss b/src/_metronic/assets/sass/core/components/buttons/_base.scss new file mode 100644 index 0000000..5673535 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/buttons/_base.scss @@ -0,0 +1,129 @@ +// +// Buttons Base +// + +// Button +.btn { + --#{$prefix}btn-color: var(--#{$prefix}body-color); + + // Reset outline + outline: none !important; + + // Reset focus shadow + &:not(.btn-shadow):not(.shadow):not(.shadow-sm):not(.shadow-lg):not(.shadow-xs) { + box-shadow: none; + } + + // Remove border + &:not(.btn-outline):not(.btn-dashed):not(.btn-bordered):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon):not(.btn-hover-outline) { + border: 0; + padding: calc(#{$btn-padding-y} + #{$btn-border-width}) calc(#{$btn-padding-x} + #{$btn-border-width}); + + &.btn-lg { + padding: calc(#{$btn-padding-y-lg} + #{$btn-border-width}) calc(#{$btn-padding-x-lg} + #{$btn-border-width}); + } + + &.btn-sm { + padding: calc(#{$btn-padding-y-sm} + #{$btn-border-width}) calc(#{$btn-padding-x-sm} + #{$btn-border-width}); + } + } + + // Link + &.btn-link { + border: 0; + border-radius: 0; + padding-left: 0 !important; + padding-right: 0 !important; + text-decoration: none; + font-weight: $btn-font-weight; + } + + // Outline + &.btn-outline:not(.btn-outline-dashed) { + border: 1px solid $input-border-color; + } + + // Outline dashed + &.btn-outline-dashed { + border: 1px dashed $input-border-color; + } + + // Flush + &.btn-flush { + @include button-reset(); + } + + // Flex + &.btn-flex { + display: inline-flex; + align-items: center; + } + + // Align start + &.btn-trim-start { + justify-content: flex-start !important; + padding-left: 0 !important; + } + + // Align start + &.btn-trim-end { + justify-content: flex-end !important; + padding-right: 0 !important; + } +} + +// Reset +.btn-reset { + background-color: transparent; + border: 0; + box-shadow: none; + user-select: none; + outline: none; +} + +// Icons +.btn { + // Font icon + > i { + display: inline-flex; + font-size: $font-size-base; + padding-right: 0.35rem; + vertical-align: middle; + } + + // Icon only button + &.btn-icon { + display: inline-flex; + align-items: center; + justify-content: center; + padding: 0; + height: $input-height; + width: $input-height; + line-height: 1; + + i { + padding-right: 0; + } + + // Remove border + &:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush) { + border: 0; + } + + // Sizes + &.btn-sm { + height: $input-height-sm; + width: $input-height-sm; + + } + + &.btn-lg { + height: $input-height-lg; + width: $input-height-lg; + } + + &.btn-circle { + border-radius: 50%; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/buttons/_theme.scss b/src/_metronic/assets/sass/core/components/buttons/_theme.scss new file mode 100644 index 0000000..df520fc --- /dev/null +++ b/src/_metronic/assets/sass/core/components/buttons/_theme.scss @@ -0,0 +1,307 @@ +// +// Buttons Theme +// + +// Outline dashed basic style +.btn.btn-outline.btn-outline-dashed { + border-width: 1px; + border-style: dashed; + + $color: null; + $icon-color: null; + $border-color: null; + $bg-color: null;; + + $color-active: null; + $icon-color-active: null; + $border-color-active: var(--#{$prefix}primary); + $bg-color-active: null; + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); +} + +// Outline hover basic style +.btn.btn-hover-outline { + border-width: 1px; + border-style: solid; + + $color: null; + $icon-color: null; + $border-color: null; + $bg-color: null; + + $color-active: null; + $icon-color-active: null; + $border-color-active: $input-border-color; + $bg-color-active: null; + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); +} + +// Theme colors +@each $name, $value in $theme-colors { + // Base + .btn.btn-#{$name} { + $color: var(--#{$prefix}#{$name}-inverse); + $icon-color: var(--#{$prefix}#{$name}-inverse); + $border-color: var(--#{$prefix}#{$name}); + $bg-color: var(--#{$prefix}#{$name}); + + $color-active: var(--#{$prefix}#{$name}-inverse); + $icon-color-active: var(--#{$prefix}#{$name}-inverse); + $border-color-active: var(--#{$prefix}#{$name}-active); + $bg-color-active: var(--#{$prefix}#{$name}-active); + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + + // Light + @if ( theme-light-color($name) ) { + .btn.btn-light-#{$name} { + $color: var(--#{$prefix}#{$name}); + $icon-color: var(--#{$prefix}#{$name}); + @if $name == 'secondary' { + $color: var(--#{$prefix}#{$name}-inverse); + $icon-color: var(--#{$prefix}#{$name}-inverse); + } + + $border-color: var(--#{$prefix}#{$name}-light); + $bg-color: var(--#{$prefix}#{$name}-light); + + $color-active: var(--#{$prefix}#{$name}-inverse); + $icon-color-active: var(--#{$prefix}#{$name}-inverse); + $border-color-active: var(--#{$prefix}#{$name}); + $bg-color-active: var(--#{$prefix}#{$name}); + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + } + + // Background + .btn.btn-bg-#{$name} { + $color: null; + $icon-color: null; + $border-color: var(--#{$prefix}#{$name}); + $bg-color: var(--#{$prefix}#{$name}); + + $color-active: null; + $icon-color-active: null; + $border-color-active: null; + $bg-color-active: null; + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + + // Active + .btn.btn-active-#{$name} { + $color: null; + $icon-color: null; + $border-color: null; + $bg-color: null; + + $color-active: var(--#{$prefix}#{$name}-inverse); + $icon-color-active: var(--#{$prefix}#{$name}-inverse); + $border-color-active: var(--#{$prefix}#{$name}); + $bg-color-active: var(--#{$prefix}#{$name}); + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + + // Light + @if ( theme-light-color($name) ) { + .btn.btn-active-light-#{$name} { + $color: null; + $icon-color: null; + $border-color: null; + $bg-color: null; + + $color-active: var(--#{$prefix}#{$name}); + $icon-color-active: var(--#{$prefix}#{$name}); + @if $name == 'secondary' { + $color-active: var(--#{$prefix}#{$name}-inverse); + $icon-color-active: var(--#{$prefix}#{$name}-inverse); + } + + $border-color-active: var(--#{$prefix}#{$name}-light); + $bg-color-active: var(--#{$prefix}#{$name}-light); + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + } + + // Outline + .btn.btn-outline.btn-outline-#{$name} { + $color: var(--#{$prefix}#{$name}); + $icon-color: var(--#{$prefix}#{$name}); + $border-color: var(--#{$prefix}#{$name}); + + @if $name == 'secondary' { + $color: var(--#{$prefix}#{$name}-inverse); + $icon-color: var(--#{$prefix}#{$name}-inverse); + $border-color: var(--#{$prefix}#{$name}-inverse); + } + + $bg-color: transparent; + + $color-active: var(--#{$prefix}#{$name}-active); + $icon-color-active: var(--#{$prefix}#{$name}-active); + $border-color-active: var(--#{$prefix}#{$name}); + @if $name == 'secondary' { + $color-active: var(--#{$prefix}#{$name}-inverse); + $icon-color-active: var(--#{$prefix}#{$name}-inverse); + $border-color-active: var(--#{$prefix}#{$name}-inverse); + } + + $bg-color-active: var(--#{$prefix}#{$name}-light); + + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } +} + +// Theme text colors +@each $name, $value in $theme-text-colors { + // Text and icon colors + .btn.btn-color-#{$name} { + $color: var(--#{$prefix}text-#{$name}); + $icon-color: var(--#{$prefix}text-#{$name}); + $bg-color: null; + $border-color: null; + + $color-active: null; + $icon-color-active: null; + $border-color-active: null; + $bg-color-active: null; + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + + // Text and icon colors active state + .btn.btn-active-color-#{$name} { + $color: null; + $icon-color: null; + $border-color: null; + $bg-color: null; + + $color-active: var(--#{$prefix}text-#{$name}); + $icon-color-active: var(--#{$prefix}text-#{$name}); + $border-color-active: null; + $bg-color-active: null; + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + + // Icon colors + .btn.btn-icon-#{$name} { + $color: null; + $icon-color: var(--#{$prefix}text-#{$name}); + $bg-color: null; + $border-color: null; + + $color-active: null; + $icon-color-active: null; + $border-color-active: null; + $bg-color-active: null; + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + + // Icon colors active state + .btn.btn-active-icon-#{$name} { + $color: null; + $icon-color: null; + $bg-color: null; + $border-color: null; + + $color-active: null; + $icon-color-active: var(--#{$prefix}text-#{$name}); + $border-color-active: null; + $bg-color-active: null; + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + + // Text colors + .btn.btn-text-#{$name} { + $color: var(--#{$prefix}text-#{$name}); + $icon-color: null; + $bg-color: null; + $border-color: null; + + $color-active: null; + $icon-color-active: null; + $border-color-active: null; + $bg-color-active: null; + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + + // Text colors active state + .btn.btn-active-text-#{$name} { + $color: null; + $icon-color: null; + $bg-color: null; + $border-color: null; + + $color-active: var(--#{$prefix}text-#{$name}); + $icon-color-active: null; + $border-color-active: null; + $bg-color-active: null; + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } +} + +// Social colors +@each $name, $value in $social-colors { + // Base + .btn.btn-#{$name} { + $color: get($value, inverse); + $icon-color: get($value, inverse); + $border-color: get($value, base); + $bg-color: get($value, base); + + $color-active: null; + $icon-color-active: null; + $border-color-active: get($value, active); + $bg-color-active: get($value, active); + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } + + // Light + .btn.btn-light-#{$name} { + $color: get($value, base); + $icon-color: get($value, base); + $bg-color: get($value, light); + $border-color: get($value, light); + + $color-active: get($value, inverse); + $icon-color-active: get($value, inverse); + $bg-color-active: get($value, base); + $border-color-active: get($value, base); + + @if $name == 'secondary' { + color: var(--#{$prefix}#{$name}-inverse); + } @else { + color: var(--#{$prefix}#{$name}); + } + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } +} + +@include color-mode(dark) { + .btn.btn-dark { + @include button-custom-variant( + $color: $gray-800-dark, + $icon-color: $gray-800-dark, + $border-color: null, + $bg-color: $gray-400-dark, + $color-active: lighten($gray-800-dark, 3%), + $icon-color-active: lighten($gray-800-dark, 3%), + $border-color-active: null, + $bg-color-active: lighten($gray-400-dark, 3%), + ); + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/buttons_new/_base.scss b/src/_metronic/assets/sass/core/components/buttons_new/_base.scss new file mode 100644 index 0000000..6db2eb6 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/buttons_new/_base.scss @@ -0,0 +1,74 @@ +// +// Buttons Base +// + +// Base +.btn { +} + +// With icon +.btn { + // Font icon + > i { + display: inline-flex; + font-size: $font-size-base; + padding-right: 0.35rem; + vertical-align: middle; + } + + // Icon only button + &.btn-icon { + display: inline-flex; + align-items: center; + justify-content: center; + padding: 0; + height: $input-height; + width: $input-height; + line-height: 1; + + i { + padding-right: 0; + } + + // Sizes + &.btn-sm { + height: $input-height-sm; + width: $input-height-sm; + } + + &.btn-lg { + height: $input-height-lg; + width: $input-height-lg; + } + + &.btn-circle { + border-radius: 50%; + } + } +} + +// Utilities +.btn { + .btn-reset { + background-color: transparent; + border: 0; + box-shadow: none; + user-select: none; + outline: none; + } + + &.btn-flex { + display: inline-flex; + align-items: center; + } + + &.btn-trim-start { + justify-content: flex-start !important; + padding-left: 0 !important; + } + + &.btn-trim-end { + justify-content: flex-end !important; + padding-right: 0 !important; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/buttons_new/_theme.scss b/src/_metronic/assets/sass/core/components/buttons_new/_theme.scss new file mode 100644 index 0000000..e18fd88 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/buttons_new/_theme.scss @@ -0,0 +1,21 @@ +// +// Buttons Theme +// + +// Theme colors +@each $name, $value in $theme-colors { + // Base + .btn.btn-#{$name} { + $color: var(--#{$prefix}#{$name}-inverse); + $icon-color: var(--#{$prefix}#{$name}-inverse); + $border-color: var(--#{$prefix}#{$name}); + $bg-color: var(--#{$prefix}#{$name}); + + $color-active: var(--#{$prefix}#{$name}-inverse); + $icon-color-active: var(--#{$prefix}#{$name}-inverse); + $border-color-active: var(--#{$prefix}#{$name}-active); + $bg-color-active: var(--#{$prefix}#{$name}-active); + + @include button-custom-variant($color, $icon-color, $border-color, $bg-color, $color-active, $icon-color-active, $border-color-active, $bg-color-active); + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/components.scss b/src/_metronic/assets/sass/core/components/components.scss new file mode 100644 index 0000000..27eecf0 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/components.scss @@ -0,0 +1,68 @@ +// +// Components +// + +// Extended bootstrap utilities +@import "utilities"; + +// Bootstrap components +@import "bootstrap/scss/bootstrap"; + +// Custom components +@import "root"; +@import "reboot"; +@import "type"; +@import "theme-mode"; +@import "animation"; +@import "alert"; +@import "dropdown"; +@import "toasts"; +@import "nav"; +@import "nav-line-tabs"; +@import "nav-pills-custom"; +@import "pagination"; +@import "separator"; +@import "carousel"; +@import "menu"; +@import "anchor"; +@import "card"; +@import "breadcrumb"; +@import "buttons"; +@import "modal"; +@import "code"; +@import "forms"; +@import "progress"; +@import "tables"; +@import "popover"; +@import "tooltip"; +@import "accordion"; +@import "image-input"; +@import "symbol"; +@import "pulse"; +@import "page-loader"; +@import "scrolltop"; +@import "svg-icon"; +@import "fixed"; +@import "timeline"; +@import "timeline-label"; +@import "overlay"; +@import "bullet"; +@import "drawer"; +@import "badge"; +@import "indicator"; +@import "hover"; +@import "rotate"; +@import "scroll"; +@import "rating"; +@import "stepper"; +@import "toggle"; +@import "shape"; +@import "ribbon"; +@import "blockui"; +@import "explore"; +@import "engage"; +@import "cookiealert"; +@import "print"; +@import "helpers"; +@import "tree"; +@import "testimonials-slider"; \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/forms/_floating-labels.scss b/src/_metronic/assets/sass/core/components/forms/_floating-labels.scss new file mode 100644 index 0000000..b544320 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/forms/_floating-labels.scss @@ -0,0 +1,20 @@ +// +// Floating label +// + +.form-floating { + .form-control.form-control-solid { + &::placeholder { + color: transparent; + } + } + + &.form-control-solid-bg label, + > :disabled ~ label, + > :focus ~ label { + &::after { + background-color: transparent !important; + } + } +} + \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/forms/_form-check.scss b/src/_metronic/assets/sass/core/components/forms/_form-check.scss new file mode 100644 index 0000000..eb32a23 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/forms/_form-check.scss @@ -0,0 +1,193 @@ +// +// Form Check +// + +// Customization +.form-check { + // Input + &:not(.form-switch) { + .form-check-input { + &[type="checkbox"] { + background-size: $form-check-input-bg-size; + } + } + } + + // Sizing + &.form-check-sm { + .form-check-input { + height: $form-check-input-width-sm; + width: $form-check-input-width-sm; + } + } + + &.form-check-lg { + .form-check-input { + height: $form-check-input-width-lg; + width: $form-check-input-width-lg; + } + } + + // Inline + &.form-check-inline { + display: inline-block; + margin-right: $form-check-inline-margin-end; + } + + // Solid + &.form-check-solid { + .form-check-input { + border: 0; + + &:not(:checked) { + background-color: $form-check-input-bg-solid; + } + + &[type=checkbox]:indeterminate { + background-color: $form-check-input-checked-bg-color; + } + } + } + + // States + // Success state + &.form-check-success { + .form-check-input { + &:checked { + background-color: var(--#{$prefix}success); + } + } + } + + // Danger state + &.form-check-danger { + .form-check-input { + &:checked { + background-color: var(--#{$prefix}danger); + } + } + } + + // Warning state + &.form-check-warning { + .form-check-input { + &:checked { + background-color: var(--#{$prefix}warning); + } + } + } +} + +// Custom checkbox and radio +.form-check-custom { + display: flex; + align-items: center; + padding-left: 0; + margin: 0; + + // Input + .form-check-input { + margin: 0; + float: none; + flex-shrink: 0; + } + + // Label + .form-check-label { + margin-left: 0.55rem; + } +} + +// Switch +.form-switch { + &.form-check-custom { + .form-check-input { + height: $form-switch-height; + } + + &.form-switch-sm { + .form-check-input { + height: $form-switch-height-sm; + width: $form-switch-width-sm; + } + } + + &.form-switch-lg { + .form-check-input { + height: $form-switch-height-lg; + width: $form-switch-width-lg; + } + } + } + + // Solid + &.form-check-solid { + .form-check-input { + --#{$prefix}form-switch-bg: #{escape-svg($form-switch-bg-image-solid)}; + + &:not(:checked) { + background-color: $form-check-input-bg-solid; + } + } + } +} + +@if $enable-dark-mode { + @include color-mode(dark) { + .form-switch .form-check-input { + &:focus:not(:checked) { + --#{$prefix}form-switch-bg: #{escape-svg($form-switch-bg-image-dark)}; + } + } + } +} + +// Image +.form-check-image { + position: relative; + overflow: hidden; + + img { + max-width: 100%; + } + + .form-check-wrapper { + @include border-radius($border-radius-lg); + border: 2px solid transparent; + transition: $transition-base; + cursor: pointer; + overflow: hidden; + margin-bottom: 0.75rem; + } + + .form-check-rounded { + @include border-radius($border-radius-lg); + } + + .form-check-label { + font-weight: $font-weight-bold; + margin-left: 0.5rem; + } + + &.active:not(.form-check-success):not(.form-check-danger) { + .form-check-wrapper { + border-color: var(--#{$prefix}primary) !important; + } + } + + &.form-check-success.active { + .form-check-wrapper { + border-color: var(--#{$prefix}success) !important; + } + } + + &.form-check-danger.active { + .form-check-wrapper { + border-color: var(--#{$prefix}danger) !important; + } + } + + &.disabled { + opacity: $form-check-btn-check-disabled-opacity; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/forms/_form-control.scss b/src/_metronic/assets/sass/core/components/forms/_form-control.scss new file mode 100644 index 0000000..040eb5e --- /dev/null +++ b/src/_metronic/assets/sass/core/components/forms/_form-control.scss @@ -0,0 +1,70 @@ +// +// Form controls +// + +// Customization +.form-control { + // Transparent style + &.form-control-transparent { + background-color: transparent; + border-color: transparent; + + .dropdown.show > &, + &:active, + &.active, + &:focus, + &.focus { + background-color: transparent; + border-color: transparent; + } + } + + // Flush + &.form-control-flush { + @include input-reset(); + } +} + +// Solid style +.form-control.form-control-solid { + background-color: $input-solid-bg; + border-color: $input-solid-bg; + color: $input-solid-color; + @include placeholder($input-solid-placeholder-color); + transition: $transition-input; + + .dropdown.show > &, + &:active, + &.active, + &:focus, + &.focus { + background-color: $input-solid-bg-focus; + border-color: $input-solid-bg-focus; + color: $input-solid-color; + transition: $transition-input; + } +} + +// Form control solid bg +.form-control-solid-bg { + background-color: $input-solid-bg; +} + +// Readonly controls as plain text +.form-control-plaintext { + color: $input-plaintext-color +} + +// Placeholder colors +.placeholder-gray-500 { + @include placeholder(var(--#{$prefix}gray-500)); +} + +.placeholder-white { + @include placeholder($white); +} + +// Textarea reset resize +.resize-none { + resize: none; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/forms/_form-select.scss b/src/_metronic/assets/sass/core/components/forms/_form-select.scss new file mode 100644 index 0000000..3b277df --- /dev/null +++ b/src/_metronic/assets/sass/core/components/forms/_form-select.scss @@ -0,0 +1,68 @@ +// Select +// +// Replaces the browser default select with a custom one, mostly pulled from +// https://primer.github.io/. + +.form-select { + appearance: none; + //box-shadow: none !important; + + &:focus { + border-color: $form-select-focus-border-color; + @if $enable-shadows { + @include box-shadow($form-select-box-shadow, $form-select-focus-box-shadow); + } @else { + // Avoid using mixin so we can pass custom focus shadow properly + box-shadow: $form-select-focus-box-shadow; + } + } + + &:disabled { + color: $form-select-disabled-color; + background-color: $form-select-disabled-bg; + border-color: $form-select-disabled-border-color; + } + + // Remove outline from select box in FF + &:-moz-focusring { + text-shadow: 0 0 0 $form-select-color; + } + + // Solid style + &.form-select-solid { + @include placeholder($input-solid-placeholder-color); + background-color: $input-solid-bg; + border-color: $input-solid-bg; + color: $input-solid-color; + transition: $transition-input; + + .dropdown.show > &, + &:active, + &.active, + &:focus, + &.focus { + background-color: $input-solid-bg-focus; + border-color: $input-solid-bg-focus !important; + color: $input-solid-color; + transition: $transition-input; + } + } + + // Transparent style + &.form-select-transparent { + @include placeholder($input-placeholder-color); + background-color: transparent; + border-color: transparent; + color: $input-color; + + .dropdown.show > &, + &:active, + &.active, + &:focus, + &.focus { + background-color: transparent; + border-color: transparent !important; + color: $input-color; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/forms/_input-group.scss b/src/_metronic/assets/sass/core/components/forms/_input-group.scss new file mode 100644 index 0000000..3e9294b --- /dev/null +++ b/src/_metronic/assets/sass/core/components/forms/_input-group.scss @@ -0,0 +1,36 @@ +// +// Input Group +// + +// Form control +.input-group { + &.input-group-solid { + @include border-radius($input-border-radius); + + &.input-group-sm { + @include border-radius($input-border-radius-sm); + } + + &.input-group-lg { + @include border-radius($input-border-radius-lg); + } + + .input-group-text { + background-color: $input-solid-bg; + border-color: $input-solid-bg; + + & + .form-control { + border-left-color: $input-border-color; + } + } + + .form-control { + background-color: $input-solid-bg; + border-color: $input-solid-bg; + + & + .input-group-text { + border-left-color: $input-border-color; + } + } + } +} diff --git a/src/_metronic/assets/sass/core/components/forms/_labels.scss b/src/_metronic/assets/sass/core/components/forms/_labels.scss new file mode 100644 index 0000000..3043cda --- /dev/null +++ b/src/_metronic/assets/sass/core/components/forms/_labels.scss @@ -0,0 +1,8 @@ + +// +// Col form label +// + +.col-form-label { + @include font-size($form-label-font-size); +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/forms/_required.scss b/src/_metronic/assets/sass/core/components/forms/_required.scss new file mode 100644 index 0000000..f170ebc --- /dev/null +++ b/src/_metronic/assets/sass/core/components/forms/_required.scss @@ -0,0 +1,14 @@ +// +// Required Label +// + +.required { + &:after { + content: "*"; + position: relative; + font-size: inherit; + color: var(--#{$prefix}danger); + padding-left: 0.25rem; + font-weight: $font-weight-bold; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/helpers/_background.scss b/src/_metronic/assets/sass/core/components/helpers/_background.scss new file mode 100644 index 0000000..fc74d2f --- /dev/null +++ b/src/_metronic/assets/sass/core/components/helpers/_background.scss @@ -0,0 +1,248 @@ +// +// Custom background helpers +// + +// Background white color +.bg-white { + --#{$prefix}bg-rgb-color: var(--#{$prefix}white-bg-rgb); + background-color: $white !important; +} + +// Background black color +.bg-black { + --#{$prefix}bg-rgb-color: var(--#{$prefix}black-bg-rgb); + background-color: $black !important; +} + +// Background body color +.bg-body { + --#{$prefix}bg-rgb-color: var(--#{$prefix}body-bg-rgb); + background-color: var(--#{$prefix}body-bg) !important; +} + +.bg-hover-body { + cursor: pointer; + + &:hover { + background-color: var(--#{$prefix}body-bg) !important; + } +} + +.bg-active-body { + &.active { + background-color: var(--#{$prefix}body-bg) !important; + } +} + +.bg-state-body { + cursor: pointer; + + &.active, + &:hover { + background-color: var(--#{$prefix}body-bg) !important; + } +} + +.bg-hover-white { + cursor: pointer; + + &:hover { + --#{$prefix}bg-rgb-color: var(--#{$prefix}white-bg-rgb); + background-color: $white !important; + } +} + +.bg-active-white { + &.active { + --#{$prefix}bg-rgb-color: var(--#{$prefix}white-bg-rgb); + background-color: $white !important; + } +} + +.bg-state-white { + cursor: pointer; + + &.active, + &:hover { + --#{$prefix}bg-rgb-color: var(--#{$prefix}white-bg-rgb); + background-color: $white !important; + } +} + +// Background theme light colors +@each $name, $value in $theme-colors { + @if (theme-light-color($name)) { + .bg-light-#{$name} { + background-color: var(--#{$prefix}#{$name}-light) !important; + } + } + + .bg-#{$name} { + --#{$prefix}bg-rgb-color: var(--#{$prefix}#{$name}-rgb); + background-color: var(--#{$prefix}#{$name}) !important; + } + + .bg-#{$name}-active { + --#{$prefix}bg-rgb-color: var(--#{$prefix}#{$name}-active-rgb); + background-color: var(--#{$prefix}#{$name}-active) !important; + } + + @if (theme-light-color($name)) { + .bg-hover-light-#{$name} { + cursor: pointer; + + &:hover { + background-color: var(--#{$prefix}#{$name}-light) !important; + } + } + + .bg-state-light-#{$name} { + cursor: pointer; + + &.active, + &:hover { + background-color: var(--#{$prefix}#{$name}-light) !important; + } + } + } + + .bg-hover-#{$name} { + cursor: pointer; + + &:hover { + background-color: var(--#{$prefix}#{$name}) !important; + } + } + + .bg-active-#{$name} { + &.active { + background-color: var(--#{$prefix}#{$name}) !important; + } + } + + .bg-state-#{$name} { + cursor: pointer; + + &.active, + &:hover { + background-color: var(--#{$prefix}#{$name}) !important; + } + } +} + +// Background gray colors +@each $name, $value in $grays { + .bg-gray-#{$name} { + --#{$prefix}bg-rgb-color: var(--#{$prefix}gray-#{$name}-rgb); + background-color: var(--#{$prefix}gray-#{$name}); + } + + .bg-hover-gray-#{$name} { + &:hover { + --#{$prefix}bg-rgb-color: var(--#{$prefix}gray-#{$name}-rgb); + background-color: var(--#{$prefix}gray-#{$name}); + } + } + + .bg-gray-#{$name}i { + --#{$prefix}bg-rgb-color: var(--#{$prefix}gray-#{$name}-rgb); + background-color: var(--#{$prefix}gray-#{$name}) !important; + } +} + +// Opacity +@each $name, $value in $opacity-values { + .bg-opacity-#{$name} { + background-color: rgba(var(--#{$prefix}bg-rgb-color), #{$value}) !important; + } + + .bg-hover-opacity-#{$name}:hover { + background-color: rgba(var(--#{$prefix}bg-rgb-color), #{$value}) !important; + } + + .bg-active-opacity-#{$name}.active { + background-color: rgba(var(--#{$prefix}bg-rgb-color), #{$value}) !important; + } + + .bg-state-opacity-#{$name} { + .active, + &:hover { + background-color: rgba(var(--#{$prefix}bg-rgb-color), #{$value}) !important; + } + } +} + +// Background image helpers +// Background repeat +.bgi-no-repeat { + background-repeat: no-repeat; +} + +// Background positions +.bgi-position-y-top { + background-position-y: top; +} + +.bgi-position-y-bottom { + background-position-y: bottom; +} + +.bgi-position-y-center { + background-position-y: center; +} + +.bgi-position-x-start { + background-position-x: left; +} + +.bgi-position-x-end { + background-position-x: right; +} + +.bgi-position-x-center { + background-position-x: center; +} + +.bgi-position-top { + background-position: 0 top; +} + +.bgi-position-bottom { + background-position: 0 bottom; +} + +.bgi-position-center { + background-position: center; +} + +// Responsive helpers +@each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + // Background sizes + .bgi-size#{$infix}-auto { + background-size: auto; + } + + .bgi-size#{$infix}-cover { + background-size: cover; + } + + .bgi-size#{$infix}-contain { + background-size: contain; + } + + // Background attachment + .bgi-attachment#{$infix}-fixed { + background-attachment: fixed; + } + + .bgi-attachment#{$infix}-scroll { + background-attachment: scroll; + } + } +} + + + diff --git a/src/_metronic/assets/sass/core/components/helpers/_borders.scss b/src/_metronic/assets/sass/core/components/helpers/_borders.scss new file mode 100644 index 0000000..68af155 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/helpers/_borders.scss @@ -0,0 +1,123 @@ +// +// Border +// + +.border-active:not(.active):not(:active):not(:hover):not(:focus) { + border-color: transparent !important; +} + +.border-hover:not(:hover):not(:focus):not(.active):not(:active) { + cursor: pointer; + border-color: transparent !important; +} + +// Gray border colors +@each $name, $value in $grays { + // Initial + .border-gray-#{$name} { + border-color: var(--#{$prefix}gray-#{$name}) !important; + } +} + +// Hover border colors +@each $name, $value in $theme-colors { + .border-#{$name}-clarity { + border-color: var(--#{$prefix}#{$name}-clarity) !important; + } + + .border-hover-#{$name}:hover { + border-color: var(--#{$prefix}#{$name}) !important; + } + + .border-active-#{$name}.active { + border-color: var(--#{$prefix}#{$name}) !important; + } +} + +.border-hover-primary-clarity:hover, +.border-active-primary-clarity.active { + border-color: var(--#{$prefix}primary-clarity) !important; +} + +// Hover transparent +.border-hover-transparent:hover { + border-color: transparent !important; +} + +// Dashed style +.border-dashed { + border-style: dashed !important; + border-color: var(--#{$prefix}border-dashed-color); +} + +.border-top-dashed { + border-top-style: dashed !important; +} + +.border-bottom-dashed { + border-bottom-style: dashed !important; +} + +.border-start-dashed { + border-left-style: dashed !important; +} + +.border-end-dashed { + border-right-style: dashed !important; +} + +// Dotted style +.border-dotted { + border-style: dotted !important; +} + +.border-top-dotted { + border-top-style: dotted !important; +} + +.border-bottom-dotted { + border-bottom-style: dotted !important; +} + +.border-start-dotted { + border-left-style: dotted !important; +} + +.border-end-dotted { + border-right-style: dotted !important; +} + +// Border transparent +.border-transparent { + border-color: transparent !important; +} + +// Border body +.border-body { + border-color: var(--#{$prefix}body-bg) !important; +} + +// Border radiuses +.rounded-top-0 { + border-top-left-radius: 0 !important; + border-top-right-radius: 0 !important; +} + +.rounded-bottom-0 { + border-bottom-left-radius: 0 !important; + border-bottom-right-radius: 0 !important; +} + +.rounded-start-0 { + border-top-left-radius: 0 !important; + border-bottom-left-radius: 0 !important; +} + +.rounded-end-0 { + border-top-right-radius: 0 !important; + border-bottom-right-radius: 0 !important; +} + +.rounded-circle { + border-radius: 50% !important; +} diff --git a/src/_metronic/assets/sass/core/components/helpers/_flex.scss b/src/_metronic/assets/sass/core/components/helpers/_flex.scss new file mode 100644 index 0000000..87faaf9 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/helpers/_flex.scss @@ -0,0 +1,57 @@ +// +// Flex Utilities +// + + +@each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + .flex#{$infix}-root { + flex: 1; + } + + .flex#{$infix}-column-auto { + flex: none; + } + + .flex#{$infix}-column-fluid { + flex: 1 0 auto; + } + + .flex#{$infix}-row-auto { + flex: 0 0 auto; + } + + .flex#{$infix}-row-fluid { + flex: 1 auto; + min-width: 0; + } + + .flex#{$infix}-center { + justify-content: center; + align-items: center; + } + + .flex#{$infix}-start { + justify-content: start; + align-items: start; + } + + .flex#{$infix}-end { + justify-content: flex-end; + align-items: flex-end; + } + + .flex#{$infix}-stack { + justify-content: space-between; + align-items: center; + } + } +} + +.flex-equal { + flex-grow: 1; + flex-basis: 0; + flex-shrink: 0; +} diff --git a/src/_metronic/assets/sass/core/components/helpers/_opacity.scss b/src/_metronic/assets/sass/core/components/helpers/_opacity.scss new file mode 100644 index 0000000..80e26c8 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/helpers/_opacity.scss @@ -0,0 +1,18 @@ +// +// Opacity +// + +@each $name, $value in $opacity-values { + // Active state + .opacity-active-#{$name}.active { + opacity: #{$value} !important; + } + + // Active and hover states + .opacity-state-#{$name} { + &:hover, + &.active { + opacity: #{$value} !important; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/helpers/_shadow.scss b/src/_metronic/assets/sass/core/components/helpers/_shadow.scss new file mode 100644 index 0000000..74618af --- /dev/null +++ b/src/_metronic/assets/sass/core/components/helpers/_shadow.scss @@ -0,0 +1,19 @@ +// +// Shadow +// + +.shadow-xs { + box-shadow: var(--#{$prefix}box-shadow-xs); +} + +.shadow-sm { + box-shadow: var(--#{$prefix}box-shadow-sm); +} + +.shadow { + box-shadow: var(--#{$prefix}box-shadow); +} + +.shadow-lg { + box-shadow: var(--#{$prefix}box-shadow-lg); +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/helpers/_text.scss b/src/_metronic/assets/sass/core/components/helpers/_text.scss new file mode 100644 index 0000000..8e77cde --- /dev/null +++ b/src/_metronic/assets/sass/core/components/helpers/_text.scss @@ -0,0 +1,146 @@ +// +// Text +// + +// Text colors +@each $name, $color in $theme-text-colors { + // Base color + .text-#{$name} { + color: var(--#{$prefix}text-#{$name}) !important; + } + + // Inverse color + @if (theme-inverse-color($name)) { + .text-inverse-#{$name} { + color: var(--#{$prefix}#{$name}-inverse) !important; + } + } + + @if (theme-light-color($name)) { + // Light colors + .text-light-#{$name} { + color: var(--#{$prefix}#{$name}-light) !important; + } + } + + // Hover + .text-hover-#{$name} { + transition: $transition-link; + + i { + transition: $transition-link; + } + + &:hover { + transition: $transition-link; + color: var(--#{$prefix}text-#{$name}) !important; + + i { + transition: $transition-link; + color: var(--#{$prefix}text-#{$name}) !important; + } + + .svg-icon { + color: var(--#{$prefix}text-#{$name}) !important; + } + } + } + + // Active + .text-active-#{$name} { + transition: $transition-link; + + i { + transition: $transition-link; + } + + &.active { + transition: $transition-link; + color: var(--#{$prefix}text-#{$name}) !important; + + i { + transition: $transition-link; + color: var(--#{$prefix}text-#{$name}) !important; + } + + .svg-icon { + color: var(--#{$prefix}text-#{$name}) !important; + } + } + } +} + +// Parent hover +.parent-hover { + @each $name, $color in $theme-text-colors { + .parent-hover-#{$name} { + transition: $transition-link; + } + + &:hover { + .parent-hover-#{$name} { + transition: $transition-link; + color: var(--#{$prefix}text-#{$name}) !important; + } + } + } +} + +// Parent active +.parent-active { + @each $name, $color in $theme-text-colors { + .parent-active-#{$name} { + transition: $transition-link; + } + + &.active { + .parent-active-#{$name} { + transition: $transition-link; + color: var(--#{$prefix}text-#{$name}) !important; + } + } + } +} + +// Text transparent +.text-transparent { + color: transparent; +} + +// Cursor pointer +.cursor-pointer { + cursor: pointer; +} + +// Cursor default +.cursor-default { + cursor: default; +} +// Cursor move +.cursor-move { + cursor: move; +} + +// Icons +i { + &.bi, + &[class^="fonticon-"], + &[class*=" fonticon-"], + &[class^="fa-"], + &[class*=" fa-"], + &[class^="la-"], + &[class*=" la-"] { + line-height: 1; + font-size: 1rem; + color: var(--#{$prefix}text-muted); + } +} + +// Link transition +a { + transition: $transition-link; + + &:hover { + transition:$transition-link; + } +} diff --git a/src/_metronic/assets/sass/core/components/helpers/_transform.scss b/src/_metronic/assets/sass/core/components/helpers/_transform.scss new file mode 100644 index 0000000..0c8616f --- /dev/null +++ b/src/_metronic/assets/sass/core/components/helpers/_transform.scss @@ -0,0 +1,8 @@ +// +// Transform +// + +.transform-90 { + transform: rotate(90deg); + transform-origin: right top; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/menu/_base.scss b/src/_metronic/assets/sass/core/components/menu/_base.scss new file mode 100644 index 0000000..faad180 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/menu/_base.scss @@ -0,0 +1,316 @@ +// +// Menu Base +// + +// Menu group +.menu-group { + display: flex; +} + +// Menu & wrapper +.menu, +.menu-wrapper { + display: flex; + padding: 0; + margin: 0; + list-style: none; +} + +// Sub inner +.menu-inner { + padding: 0; + margin: 0; + list-style: none; +} + +// Sub menu +.menu-sub { + display: none; + padding: 0; + margin: 0; + list-style: none; + flex-direction: column; +} + +// Menu item +.menu-item { + display: block; + padding: $menu-item-padding-y $menu-item-padding-x; + + // Menu Link + .menu-link { + cursor: pointer; + display: flex; + align-items: center; + padding: 0; + flex: 0 0 100%; + padding: $menu-link-padding-y $menu-link-padding-x; + transition: none; + outline: none !important; + + .menu-icon { + flex-shrink: 0; + display: flex; + align-items: center; + justify-content: center; + width: $menu-icon-size; + margin-right: $menu-icon-space; + + i, + .svg-icon { + line-height: 1; + } + } + + .menu-bullet { + flex-shrink: 0; + display: flex; + align-items: center; + justify-content: center; + width: $menu-bullet-size; + margin-right: $menu-bullet-space; + } + + .menu-title { + display: flex; + align-items: center; + flex-grow: 1; + } + + .menu-badge { + display: flex; + align-items: center; + flex-shrink: 0; + margin-left: $menu-badge-space; + } + + .menu-arrow { + display: flex; + align-items: stretch; + position: relative; + overflow: hidden; + flex-shrink: 0; + margin-left: $menu-arrow-space; + width: $menu-arrow-size; + height: $menu-arrow-size; + + &:after { + display: block; + width: 100%; + content: " "; + will-change: transform; + background-size: 100% 100%; + @include svg-bg-icon(arrow-start, var(--#{$prefix}text-muted)); + /*rtl:begin:remove*/ + @include svg-bg-icon(arrow-end, var(--#{$prefix}text-muted)); + /*rtl:end:remove*/ + } + } + } + + // Menu Content + .menu-content { + padding: $menu-link-padding-y $menu-link-padding-x; + } +} + +// Accordion arrows +.menu-item { + &.show { + .menu-link { + .menu-arrow:after { + backface-visibility: hidden; + transition: $menu-accordion-arrow-transition; + } + } + } +} + +// No wrap +.menu-nowrap { + .menu-title, + .menu-link { + flex-wrap: nowrap; + flex-shrink: 0; + } +} + +// Center alignment +.menu-center { + justify-content: center; +} + +// Heading +.menu-heading { + color: var(--#{$prefix}menu-heading-color); +} + +// Responsive +@each $direction in (up, down) { + @each $breakpoint in map-keys($grid-breakpoints) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + @if $infix and $direction == down { + $infix: $infix + "-" + $direction; + } + + @include media-breakpoint-direction($direction, $breakpoint) { + // Accordion arrow + .menu-item.menu#{$infix}-accordion { + .menu-arrow:after { + @include menu-link-arrow-rotate(90deg, -90deg); + } + + &.showing:not(.menu-dropdown), + &.show:not(.hiding):not(.menu-dropdown) { + > .menu-link { + .menu-arrow:after { + @include menu-link-arrow-rotate(-90deg, 90deg); + } + } + } + } + + // Sub dropdown + .menu-sub#{$infix}-dropdown { + display: none; + border-radius: $menu-dropdown-border-radius; + background-color: var(--#{$prefix}menu-dropdown-bg-color); + box-shadow: var(--#{$prefix}menu-dropdown-box-shadow); + z-index: $menu-dropdown-z-index; + + // Dropdown show + .show.menu-dropdown > &, + &.menu.show, + &.show[data-popper-placement] { + display: flex; + will-change: transform; + + // Animation + @if ($menu-dropdown-animation == true) { + // Move up + animation: menu-sub-dropdown-animation-fade-in #{$menu-dropdown-animation-speed} ease 1, menu-sub-dropdown-animation-move-up #{$menu-dropdown-animation-speed} ease 1; + } + } + } + + // Sub accordion + .menu-sub#{$infix}-accordion { + display: none; + + .show:not(.menu-dropdown) > &, + &.show { + display: flex; + } + } + + // Sub indention + .menu-sub#{$infix}-indention { + @include menu-sub-indention($menu-accordion-indention); + + // Active link + .menu-item .menu-item .menu-link.active { + margin-right: $menu-link-padding-x; + } + } + + // Inline + .menu#{$infix}-inline { + display: flex; + } + + // Reset link left & right paddings of level 1 menu links + .menu#{$infix}-fit { + > .menu-item { + > .menu-content, + > .menu-link { + padding-left: 0 !important; + padding-right: 0 !important; + } + } + } + + .menu#{$infix}-column { + flex-direction: column; + width: 100%; + } + + .menu#{$infix}-row { + flex-direction: row; + + > .menu-item { + display: flex; + align-items: center; + + > .menu-link { + .menu-arrow:after { + @include menu-link-arrow-rotate(90deg, -90deg); + } + } + } + } + + // Border radiuses + .menu#{$infix}-rounded { + .menu-link { + @include border-radius($menu-link-border-radius); + } + } + + // Border radiuses + .menu#{$infix}-pill { + .menu-link { + border-radius: 50px; + } + } + + // Reset border radiuses + .menu#{$infix}-rounded-0 { + .menu-link { + border-radius: 0 !important; + } + } + } + } +} + +// Link indention +.menu-link-indention { + .menu-item { + padding-top: 0; + padding-bottom: 0; + } + + @include menu-link-indention($menu-accordion-indention, $menu-link-padding-x); +} + +// Menu animations +@keyframes menu-sub-dropdown-animation-fade-in { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + +@keyframes menu-sub-dropdown-animation-move-up { + from { + margin-top: #{$menu-dropdown-animation-move-offset}; + } + + to { + margin-top: 0; + } +} + +@keyframes menu-sub-dropdown-animation-move-down { + from { + margin-bottom: #{$menu-dropdown-animation-move-offset}; + } + + to { + margin-bottom: 0; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/menu/_theme.scss b/src/_metronic/assets/sass/core/components/menu/_theme.scss new file mode 100644 index 0000000..8898510 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/menu/_theme.scss @@ -0,0 +1,519 @@ +// +// Menu Theme +// + +// Theme text colors +@each $name, $color in $theme-text-colors { + .menu-#{$name} { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-default-state( var(--#{$prefix}#{$name}), var(--#{$prefix}#{$name}), var(--#{$prefix}#{$name}), var(--#{$prefix}#{$name}), null ); + } + } + + .menu-title-#{$name} { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-default-state( var(--#{$prefix}text-#{$name}), null, null, null, null ); + } + } + + .menu-icon-#{$name} { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-default-state( null, var(--#{$prefix}text-#{$name}), null, null, null ); + } + } + + .menu-bullet-#{$name} { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-default-state( null, null, var(--#{$prefix}text-#{$name}), null, null ); + } + } + + .menu-arrow-#{$name} { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-default-state( null, null, null, var(--#{$prefix}text-#{$name}), null ); + } + } +} + +// Default background states +.menu-hover-bg { + .menu-item { + @include menu-link-hover-state( + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-bg-color-hover) + ); + } +} + +.menu-here-bg { + .menu-item { + @include menu-link-here-state( + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-bg-color-here) + ); + } +} + +.menu-root-here-bg { + > .menu-item { + @include menu-link-here-state( + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-bg-color-here) + ); + } +} + +// Desktop mode +@include media-breakpoint-up(lg) { + .menu-root-here-bg-desktop { + > .menu-item { + @include menu-link-here-state( + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-bg-color-here) + ); + } + } +} + +.menu-show-bg { + .menu-item { + @include menu-link-show-state( + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-bg-color-show) + ); + } +} + +.menu-active-bg { + .menu-item { + @include menu-link-active-state( + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-bg-color-active) + ); + } +} + +.menu-state-bg { + .menu-item { + @include menu-link-hover-state( + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-bg-color-hover) + ); + + @include menu-link-here-state( + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-bg-color-here) + ); + + @include menu-link-show-state( + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-bg-color-show) + ); + + @include menu-link-active-state( + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-bg-color-active) + ); + } +} + +.menu-state-color { + .menu-item { + @include menu-link-hover-state( + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-color-hover), + var(--#{$prefix}menu-link-color-hover), + null + ); + + @include menu-link-here-state( + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + var(--#{$prefix}menu-link-color-here), + null + ); + + @include menu-link-show-state( + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-color-show), + var(--#{$prefix}menu-link-color-show), + null + ); + + @include menu-link-active-state( + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-color-active), + var(--#{$prefix}menu-link-color-active), + null + ); + } +} + +// Primary background states +.menu-hover-bg-primary { + .menu-item { + @include menu-link-hover-state( + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary) + ); + } +} + +.menu-show-bg-primary { + .menu-item { + @include menu-link-show-state( + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary) + ); + } +} + +.menu-here-bg-primary { + .menu-item { + @include menu-link-here-state( + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary) + ); + } +} + +.menu-active-bg-primary { + .menu-item { + @include menu-link-active-state( + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary) + ); + } +} + +.menu-state-bg-primary { + .menu-item { + @include menu-link-hover-state( + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary) + ); + + @include menu-link-show-state( + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary) + ); + + @include menu-link-here-state( + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary) + ); + + @include menu-link-active-state( + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary) + ); + + @include menu-link-show-state( + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary-inverse), + var(--#{$prefix}primary) + ); + } +} + +// Light primary background states +.menu-show-bg-light-primary { + .menu-item { + @include menu-link-show-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary-light) ); + } +} + +.menu-here-bg-light-primary { + .menu-item { + @include menu-link-here-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary-light) ); + } +} + +.menu-hover-bg-light-primary { + .menu-item { + @include menu-link-hover-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary-light) ); + } +} + +.menu-active-bg-light-primary { + .menu-item { + @include menu-link-active-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary-light) ); + } +} + +.menu-state-bg-light-primary { + .menu-item { + @include menu-link-show-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary-light) ); + @include menu-link-here-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary-light) ); + @include menu-link-hover-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary-light) ); + @include menu-link-active-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary-light) ); + } +} + +// Primary color states +.menu-hover-primary { + .menu-item { + @include menu-link-hover-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), null ); + } +} + +.menu-show-primary { + .menu-item { + @include menu-link-show-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), null ); + } +} + +.menu-here-primary { + .menu-item { + @include menu-link-here-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), null ); + } +} + +.menu-active-primary { + .menu-item { + @include menu-link-active-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), null ); + } +} + +.menu-state-primary { + .menu-item { + @include menu-link-hover-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), null ); + @include menu-link-show-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), null ); + @include menu-link-here-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), null ); + @include menu-link-active-state( var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), var(--#{$prefix}primary), null ); + } +} + +.menu-state-dark { + .menu-item { + @include menu-link-hover-state( var(--#{$prefix}dark), var(--#{$prefix}dark), var(--#{$prefix}dark), var(--#{$prefix}dark), null ); + @include menu-link-show-state( var(--#{$prefix}dark), var(--#{$prefix}dark), var(--#{$prefix}dark), var(--#{$prefix}dark), null ); + @include menu-link-here-state( var(--#{$prefix}dark), var(--#{$prefix}dark), var(--#{$prefix}dark), var(--#{$prefix}dark), null ); + @include menu-link-active-state( var(--#{$prefix}dark), var(--#{$prefix}dark), var(--#{$prefix}dark), var(--#{$prefix}dark), null ); + } +} + +.menu-state-gray-900 { + .menu-item { + @include menu-link-hover-state( var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), null ); + @include menu-link-show-state( var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), null ); + @include menu-link-here-state( var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), null ); + @include menu-link-active-state( var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), var(--#{$prefix}gray-900), null ); + } +} + +// Primary title color states +.menu-hover-title-primary { + .menu-item { + @include menu-link-hover-state( var(--#{$prefix}primary), null, null, null, null ); + } +} + +.menu-here-title-primary { + .menu-item { + @include menu-link-here-state( var(--#{$prefix}primary), null, null, null, null ); + } +} + +.menu-show-title-primary { + .menu-item { + @include menu-link-show-state( var(--#{$prefix}primary), null, null, null, null ); + } +} + +.menu-active-title-primary { + .menu-item { + @include menu-link-active-state( var(--#{$prefix}primary), null, null, null, null ); + } +} + +.menu-state-title-primary { + .menu-item { + @include menu-link-hover-state( var(--#{$prefix}primary), null, null, null, null ); + @include menu-link-here-state( var(--#{$prefix}primary), null, null, null, null ); + @include menu-link-show-state( var(--#{$prefix}primary), null, null, null, null ); + @include menu-link-active-state( var(--#{$prefix}primary), null, null, null, null ); + } +} + +// Primary icon color states +.menu-hover-icon-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-hover-state( null, var(--#{$prefix}primary), null, null, null ); + } +} + +.menu-here-icon-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-here-state( null, var(--#{$prefix}primary), null, null, null ); + } +} + +.menu-show-icon-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-show-state( null, var(--#{$prefix}primary), null, null, null ); + } +} + +.menu-active-icon-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-active-state( null, var(--#{$prefix}primary), null, null, null ); + } +} + +.menu-state-icon-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-hover-state( null, var(--#{$prefix}primary), null, null, null ); + @include menu-link-here-state( null, var(--#{$prefix}primary), null, null, null ); + @include menu-link-show-state( null, var(--#{$prefix}primary), null, null, null ); + @include menu-link-active-state( null, var(--#{$prefix}primary), null, null, null ); + } +} + +// Primary bullet color states +.menu-hover-bullet-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-hover-state( null, null, var(--#{$prefix}primary), null, null ); + } +} + +.menu-show-bullet-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-show-state( null, null, var(--#{$prefix}primary), null, null ); + } +} + +.menu-here-bullet-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-here-state( null, null, var(--#{$prefix}primary), null, null ); + } +} + +.menu-active-bullet-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-active-state( null, null, var(--#{$prefix}primary), null, null ); + } +} + +.menu-state-bullet-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-hover-state( null, null, var(--#{$prefix}primary), null, null ); + @include menu-link-here-state( null, null, var(--#{$prefix}primary), null, null ); + @include menu-link-show-state( null, null, var(--#{$prefix}primary), null, null ); + @include menu-link-active-state( null, null, var(--#{$prefix}primary), null, null ); + } +} + +// Primary arrow color states +.menu-hover-arrow-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-hover-state( null, null, null, var(--#{$prefix}primary), null ); + } +} + +.menu-here-arrow-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-here-state( null, null, null, var(--#{$prefix}primary), null ); + } +} + +.menu-show-arrow-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-show-state( null, null, null, var(--#{$prefix}primary), null ); + } +} + +.menu-active-arrow-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-active-state( null, null, null, var(--#{$prefix}primary), null ); + } +} + +.menu-state-arrow-primary { + .menu-item { + //$title-color, $icon-color, $bullet-color, $arrow-color, $bg-color + @include menu-link-hover-state( null, null, null, var(--#{$prefix}primary), null ); + @include menu-link-here-state( null, null, null, var(--#{$prefix}primary), null ); + @include menu-link-show-state( null, null, null, var(--#{$prefix}primary), null ); + @include menu-link-active-state( null, null, null, var(--#{$prefix}primary), null ); + } +} diff --git a/src/_metronic/assets/sass/core/components/mixins/_buttons.scss b/src/_metronic/assets/sass/core/components/mixins/_buttons.scss new file mode 100644 index 0000000..fd8ee49 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/mixins/_buttons.scss @@ -0,0 +1,84 @@ +// +// Button Mixins +// + +// Custom variant +@mixin button-custom-variant( + $color, + $icon-color, + $border-color, + $bg-color, + $color-active, + $icon-color-active, + $border-color-active, + $bg-color-active +) { + + @if ( $color != null ) { + color: $color; + } + + @if ( $icon-color != null ) { + i, + .svg-icon { + color: $icon-color; + } + + &.dropdown-toggle:after { + color: $icon-color; + } + } + + @if ( $border-color != null ) { + border-color: $border-color; + } + + @if ( $bg-color != null ) { + background-color: $bg-color; + } + + .btn-check:checked + &, + .btn-check:active + &, + &:focus:not(.btn-active), + &:hover:not(.btn-active), + &:active:not(.btn-active), + &.active, + &.show, + .show > & { + @if ( $color-active != null ) { + color: $color-active; + } + + @if ( $icon-color-active != null ) { + i, + .svg-icon { + color: $icon-color-active; + } + + &.dropdown-toggle:after { + color: $icon-color-active; + } + } + + @if ( $border-color-active != null ) { + border-color: $border-color-active; + } + + @if ( $bg-color-active != null ) { + background-color: $bg-color-active !important; + } + } +} + +@mixin button-active-state() { + .btn-check:checked + &, + .btn-check:active + &, + &:focus:not(.btn-active), + &:hover:not(.btn-active), + &:active:not(.btn-active), + &.active, + &.show, + .show > & { + @content; + } +} diff --git a/src/_metronic/assets/sass/core/components/mixins/_ki.scss b/src/_metronic/assets/sass/core/components/mixins/_ki.scss new file mode 100644 index 0000000..c83273a --- /dev/null +++ b/src/_metronic/assets/sass/core/components/mixins/_ki.scss @@ -0,0 +1,18 @@ +// +// Keenthemes Icons +// + +@mixin ki($icon) { + font-family: Ki; + font-style: normal; + font-weight: normal; + font-variant: normal; + line-height: 1; + text-decoration: inherit; + text-rendering: optimizeLegibility; + text-transform: none; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + font-smoothing: antialiased; + content: "#{$icon}"; +} diff --git a/src/_metronic/assets/sass/core/components/mixins/_menu.scss b/src/_metronic/assets/sass/core/components/mixins/_menu.scss new file mode 100644 index 0000000..f407618 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/mixins/_menu.scss @@ -0,0 +1,301 @@ +// +// Label +// + +// Set arrow direction +@mixin menu-link-arrow-rotate($angle, $angleRtl) { + /*rtl:ignore*/ + transform: rotateZ($angleRtl); + /*rtl:remove*/ + transform: rotateZ($angle); + transition: $menu-accordion-arrow-transition; +} + +// Set menu link padding x +@mixin menu-link-padding-x($value) { + // Menu item + .menu-item { + .menu-link, + .menu-content { + padding-left: $value; + padding-right: $value; + } + } +} + +// Set menu link padding y +@mixin menu-link-padding-y($value) { + // Menu item + .menu-item { + .menu-link, + .menu-content { + padding-top: $value; + padding-bottom: $value; + } + } +} + +// Set link indention +@mixin menu-link-indention($value, $offset) { + .menu-sub:not([data-popper-placement]) { + > .menu-item, + > .menu-inner > .menu-item { + > .menu-content, + > .menu-link { + padding-left: calc(#{1 * $value} + #{$offset}); + } + + > .menu-sub:not([data-popper-placement]) { + > .menu-item, + > .menu-inner > .menu-item { + > .menu-content, + > .menu-link { + padding-left: calc(#{2 * $value} + #{$offset}); + } + + > .menu-sub:not([data-popper-placement]) { + > .menu-item, + > .menu-inner > .menu-item { + > .menu-content, + > .menu-link { + padding-left: calc(#{3 * $value} + #{$offset}); + } + + > .menu-sub:not([data-popper-placement]) { + > .menu-item, + > .menu-inner > .menu-item { + > .menu-content, + > .menu-link { + padding-left: calc(#{4 * $value} + #{$offset}); + } + } + } + } + } + } + } + } + } + + &.menu-fit { + .menu-sub:not([data-popper-placement]) { + > .menu-item, + > .menu-inner > .menu-item { + > .menu-content, + > .menu-link { + padding-left: #{$value}; + padding-right: 0; + } + + > .menu-sub:not([data-popper-placement]) { + > .menu-item, + > .menu-inner > .menu-item { + > .menu-content, + > .menu-link { + padding-left: calc(#{2 * $value}); + padding-right: 0; + } + + > .menu-sub:not([data-popper-placement]) { + > .menu-item, + > .menu-inner > .menu-item { + > .menu-content, + > .menu-link { + padding-left: calc(#{3 * $value}); + padding-right: 0; + } + + > .menu-sub:not([data-popper-placement]) { + > .menu-item, + > .menu-inner > .menu-item { + > .menu-content, + > .menu-link { + padding-left: calc(#{4 * $value}); + padding-right: 0; + } + } + } + } + } + } + } + } + } + } +} + +// Set sub indention +@mixin menu-sub-indention($value) { + .menu-sub:not([data-popper-placement]) { + margin-left: $value; + } +} + +// Set menu link theme +@mixin menu-link-theme($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color: null) { + @if ( $bg-color != null ) { + background-color: $bg-color; + } + + @if ( $title-color != null ) { + color: $title-color; + + .menu-title { + color: $title-color; + } + } + + @if ( $icon-color != null ) { + .menu-icon { + &, + .svg-icon, + i { + color: $icon-color; + } + } + } + + @if ( $bullet-color != null ) { + .menu-bullet { + .bullet { + background-color: $bullet-color; + } + } + } + + @if ( $arrow-color != null ) { + // Arrow + .menu-arrow:after { + @include svg-bg-icon(arrow-start, $arrow-color); + /*rtl:begin:remove*/ + @include svg-bg-icon(arrow-end, $arrow-color); + /*rtl:end:remove*/ + } + } +} + +// Set menu link default state +@mixin menu-link-default-state($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color: null, $all-links: true) { + $sel: ''; + + @if ($all-links == false) { + $sel: '& > '; + } + + #{$sel}.menu-link { + @include menu-link-theme($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color); + } +} + +// Set menu link hover state +@mixin menu-link-hover-state($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color: null, $all-links: true) { + $sel: '&:not(.here) '; + + @if ($all-links == false) { + $sel: '&:not(.here) > '; + } + + &.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), + #{$sel}.menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: $transition-link; + + @include menu-link-theme($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color); + } +} + +// Set menu link active state +@mixin menu-link-active-state($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color: null, $all-links: true) { + $sel: ''; + + @if ($all-links == false) { + $sel: '& > '; + } + + #{$sel}.menu-link.active { + transition: $transition-link; + + @include menu-link-theme($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color); + } +} + +// Set menu link show state +@mixin menu-link-show-state($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color: null, $all-links: true) { + //&.here > .menu-link, + &.show > .menu-link { + transition: $transition-link; + + @include menu-link-theme($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color); + } +} + +// Set menu link here state +@mixin menu-link-here-state($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color: null, $all-links: true) { + &.here > .menu-link { + transition: $transition-link; + + @include menu-link-theme($title-color, $icon-color, $bullet-color, $arrow-color, $bg-color); + } +} + +// Set menu link default +@mixin menu-link-default($all-links: true) { + $sel: ''; + + @if ($all-links == false) { + $sel: '& > '; + } + + #{$sel}.menu-link { + @content; + } +} + +// Set menu link hover +@mixin menu-link-hover($all-links: true) { + $sel: '&:not(.here) '; + + @if ($all-links == false) { + $sel: '&:not(.here) > '; + } + + &.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), + #{$sel}.menu-link:hover:not(.disabled):not(.active):not(.here) { + transition: $transition-link; + + @content; + } +} + +// Set menu link active +@mixin menu-link-active($all-links: true) { + $sel: ''; + + @if ($all-links == false) { + $sel: '& > '; + } + + #{$sel}.menu-link.active { + transition: $transition-link; + + @content; + } +} + +// Set menu link show +@mixin menu-link-show($all-links: true) { + //&.here > .menu-link, + &.show > .menu-link { + transition: $transition-link; + + @content; + } +} + +// Set menu link here +@mixin menu-link-here($all-links: true) { + &.here > .menu-link { + transition: $transition-link; + + @content; + } +} diff --git a/src/_metronic/assets/sass/core/components/mixins/_scroll.scss b/src/_metronic/assets/sass/core/components/mixins/_scroll.scss new file mode 100644 index 0000000..e1bd6f7 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/mixins/_scroll.scss @@ -0,0 +1,34 @@ +// +// Scroll mixins +// + +@mixin scrollbar-color($color, $hover-color: null) { + // Firefox + scrollbar-color: $color transparent; + + // Webkit + &::-webkit-scrollbar-thumb { + background-color: $color; + } + + &::-webkit-scrollbar-corner { + background-color: transparent; + } + + @if ($hover-color != null) { + // Hover state + &:hover { + // Firefox + scrollbar-color: $hover-color transparent; + + // Webkit + &::-webkit-scrollbar-thumb { + background-color: $hover-color; + } + + &::-webkit-scrollbar-corner { + background-color: transparent; + } + } + } +} diff --git a/src/_metronic/assets/sass/core/components/mixins/_shape.scss b/src/_metronic/assets/sass/core/components/mixins/_shape.scss new file mode 100644 index 0000000..3395df0 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/mixins/_shape.scss @@ -0,0 +1,29 @@ + +@use 'sass:math'; + +@mixin shape($edges-number: 6, $main-radius: 30%, $rounding-radius: 10%, $rotated: true, $precision: 20) { + $central-angle: divide(360deg, $edges-number); + $angle: ($edges-number - 2) * divide(180deg, $edges-number); + $max-var-angle: 2 * (90deg - divide($angle, 2)); + $precision: 6; + $unit-var-angle: divide($max-var-angle, $precision); + $r-diff: $main-radius + $rounding-radius; + + $points: (); + + @for $i from 0 to $edges-number { + $vertex-angle: $i * $central-angle + if($rotated, -90deg, 0deg); + $vertex-x: 50% + $r-diff * math.cos($vertex-angle); + $vertex-y: 50% + $r-diff * math.sin($vertex-angle); + + @for $j from 0 through $precision { + $curr-angle: $vertex-angle + ($j - 0.5 * $precision) * $unit-var-angle; + $x: $vertex-x + $rounding-radius * math.cos($curr-angle); + $y: $vertex-y + $rounding-radius * math.sin($curr-angle); + + $points: $points, $x $y; + } + } + + clip-path: polygon($points); +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/mixins/_svg-bg-icon.scss b/src/_metronic/assets/sass/core/components/mixins/_svg-bg-icon.scss new file mode 100644 index 0000000..48ee125 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/mixins/_svg-bg-icon.scss @@ -0,0 +1,68 @@ +// +// SVG Bg Icons +// + +@mixin svg-bg-icon($type, $color: none, $update: false) { + $bg-image: ''; + + // Icon type; + @if ($type == close) { + $bg-image: url("data:image/svg+xml,"); + } + + @if ($type == check) { + $bg-image: url("data:image/svg+xml,"); + } + + @if ($type == arrow-top) { + $bg-image: url("data:image/svg+xml,"); + } + + @if ($type == arrow-bottom) { + $bg-image: url("data:image/svg+xml,"); + } + + @if ($type == arrow-start) { + $bg-image: url("data:image/svg+xml,"); + } + + @if ($type == arrow-end) { + $bg-image: url("data:image/svg+xml,"); + } + + @if ($type == sort) { + $bg-image: url("data:image/svg+xml,"); + } + + @if ($type == sort-asc) { + $bg-image: url("data:image/svg+xml,"); + } + + @if ($type == sort-desc) { + $bg-image: url("data:image/svg+xml,"); + } + + @if ($type == expand) { + $bg-image: url("data:image/svg+xml,"); + } + + @if ($type == collapse) { + $bg-image: url("data:image/svg+xml,"); + } + + // Icon style + @if $update == false { + mask-repeat: no-repeat; + mask-position: center; + -webkit-mask-repeat: no-repeat; + -webkit-mask-position: center; + } + + @if $color != none { + background-color: $color; + } + + -webkit-mask-image: escape-svg($bg-image); + mask-image: escape-svg($bg-image); +} + diff --git a/src/_metronic/assets/sass/core/components/mixins/_svg-icon.scss b/src/_metronic/assets/sass/core/components/mixins/_svg-icon.scss new file mode 100644 index 0000000..35da08c --- /dev/null +++ b/src/_metronic/assets/sass/core/components/mixins/_svg-icon.scss @@ -0,0 +1,11 @@ +// +// SVG Icon +// + + +@mixin svg-icon-size($size, $important: false) { + svg { + height: $size valueif($important, !important, null); + width: $size valueif($important, !important, null); + } +} diff --git a/src/_metronic/assets/sass/core/components/mixins/_symbol.scss b/src/_metronic/assets/sass/core/components/mixins/_symbol.scss new file mode 100644 index 0000000..904f394 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/mixins/_symbol.scss @@ -0,0 +1,42 @@ +// +// Symbol +// + +@mixin symbol-size($size) { + > img { + width: $size; + height: $size; + } + + .symbol-label { + width: $size; + height: $size; + } + + &.symbol-fixed { + .symbol-label { + width: $size; + height: $size; + } + + > img { + width: $size; + height: $size; + max-width: none; + } + } + + // Ratios + &.symbol-2by3 { + .symbol-label { + height: $size; + width: $size * divide(3, 2); + } + + > img { + height: $size; + width: $size * divide(3, 2); + max-width: none; + } + } +} diff --git a/src/_metronic/assets/sass/core/components/stepper/_base.scss b/src/_metronic/assets/sass/core/components/stepper/_base.scss new file mode 100644 index 0000000..9797933 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/stepper/_base.scss @@ -0,0 +1,106 @@ +// +// Stepper +// + +// Base +.stepper { + // Content + [data-kt-stepper-element="info"], + [data-kt-stepper-element="content"] { + display: none; + + &.current { + display: flex; + } + } + + // Enable cursor pointer on clickable steppers + .stepper-item[data-kt-stepper-action="step"] { + cursor: pointer; + } + + // States + & { + [data-kt-stepper-action="final"] { + display: none; + } + + [data-kt-stepper-action="previous"] { + display: none; + } + + [data-kt-stepper-action="next"] { + display: inline-block; + } + + [data-kt-stepper-action="submit"] { + display: none; + } + } + + &.first { + [data-kt-stepper-action="previous"] { + display: none; + } + + [data-kt-stepper-action="next"] { + display: inline-block; + } + + [data-kt-stepper-action="submit"] { + display: none; + } + } + + &.between { + [data-kt-stepper-action="previous"] { + display: inline-block; + } + + [data-kt-stepper-action="next"] { + display: inline-block; + } + + [data-kt-stepper-action="submit"] { + display: none; + } + } + + &.last { + [data-kt-stepper-action="final"] { + display: inline-block; + } + + [data-kt-stepper-action="final"].btn-flex { + display: flex; + } + + [data-kt-stepper-action="previous"] { + display: inline-block; + } + + [data-kt-stepper-action="previous"].btn-flex { + display: flex; + } + + [data-kt-stepper-action="previous"][data-kt-stepper-state="hide-on-last-step"] { + display: none !important; + } + + [data-kt-stepper-action="next"] { + display: none; + } + + [data-kt-stepper-action="next"].btn-flex { + display: flex; + } + + [data-kt-stepper-action="submit"] { + display: inline-block; + } + + [data-kt-stepper-action="submit"].btn-flex { + display: flex; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/stepper/_links.scss b/src/_metronic/assets/sass/core/components/stepper/_links.scss new file mode 100644 index 0000000..0cd9c28 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/stepper/_links.scss @@ -0,0 +1,57 @@ +// +// Stepper Links +// + +// Base +.stepper.stepper-links { + .stepper-nav { + display: flex; + margin: 0 auto; + justify-content: center; + align-items: center; + flex-wrap: wrap; + + .stepper-item { + position: relative; + flex-shrink: 0; + margin: 1rem 1.5rem; + + &:after { + content: " "; + position: absolute; + top: 2.3rem; + left: 0; + height: 2px; + width: 100%; + background-color: transparent; + transition: $transition-link; + } + + .stepper-title { + color: var(--#{$prefix}gray-900); + font-weight: 600; + font-size: 1.25rem; + } + + // Current + &.current { + transition: $transition-link; + + .stepper-title { + color: var(--#{$prefix}primary); + } + + &:after { + background-color: var(--#{$prefix}primary); + } + } + + &.current.mark-completed:last-child, + &.completed { + .stepper-title { + color: var(--#{$prefix}gray-500); + } + } + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/components/stepper/_pills.scss b/src/_metronic/assets/sass/core/components/stepper/_pills.scss new file mode 100644 index 0000000..4e1e851 --- /dev/null +++ b/src/_metronic/assets/sass/core/components/stepper/_pills.scss @@ -0,0 +1,201 @@ +// +// Stepper Pills +// + +// Base +.stepper.stepper-pills { + --#{$prefix}stepper-pills-size: 40px; + --#{$prefix}stepper-icon-border-radius: 9px; + --#{$prefix}stepper-icon-check-size: 1rem; + + --#{$prefix}stepper-icon-bg-color: var(--#{$prefix}primary-light); + --#{$prefix}stepper-icon-bg-color-current: var(--#{$prefix}primary); + --#{$prefix}stepper-icon-bg-color-completed: var(--#{$prefix}primary-light); + + --#{$prefix}stepper-icon-border: 0; + --#{$prefix}stepper-icon-border-current: 0; + --#{$prefix}stepper-icon-border-completed: 0; + + --#{$prefix}stepper-icon-number-color: var(--#{$prefix}primary); + --#{$prefix}stepper-icon-number-color-current: var(--#{$prefix}white); + + --#{$prefix}stepper-icon-check-color-completed: var(--#{$prefix}primary); + + --#{$prefix}stepper-label-title-opacity: 1; + --#{$prefix}stepper-label-title-opacity-current: 1; + --#{$prefix}stepper-label-title-opacity-completed: 1; + + --#{$prefix}stepper-label-title-color: var(--#{$prefix}gray-800); + --#{$prefix}stepper-label-title-color-current: var(--#{$prefix}gray-600); + --#{$prefix}stepper-label-title-color-completed: var(--#{$prefix}text-muted); + + --#{$prefix}stepper-label-desc-opacity: 1; + --#{$prefix}stepper-label-desc-opacity-current: 1; + --#{$prefix}stepper-label-desc-opacity-completed: 1; + + --#{$prefix}stepper-label-desc-color: var(--#{$prefix}text-muted); + --#{$prefix}stepper-label-desc-color-current: var(--#{$prefix}gray-500); + --#{$prefix}stepper-label-desc-color-completed: var(--#{$prefix}gray-500); + + --#{$prefix}stepper-line-border: 1px dashed var(--#{$prefix}gray-300); + + // Nav + .stepper-nav { + display: flex; + } + + // Item + .stepper-item { + display: flex; + align-items: center; + transition: $transition-link; + + // Icon + .stepper-icon { + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; + transition: $transition-link; + width: var(--#{$prefix}stepper-pills-size); + height: var(--#{$prefix}stepper-pills-size); + border-radius: var(--#{$prefix}stepper-icon-border-radius); + background-color: var(--#{$prefix}stepper-icon-bg-color); + border: var(--#{$prefix}stepper-icon-border); + margin-right: 1.5rem; + + .stepper-check { + display: none; + font-size: var(--#{$prefix}stepper-icon-check-size); + } + + .stepper-number { + font-weight: $font-weight-bold; + color: var(--#{$prefix}stepper-icon-number-color); + font-size: 1.25rem; + } + } + + // Label + .stepper-label { + display: flex; + flex-direction: column; + justify-content: center; + + .stepper-title { + color: var(--#{$prefix}stepper-label-title-color); + opacity: var(--#{$prefix}stepper-label-title-opacity); + font-weight: 600; + font-size: 1.25rem; + margin-bottom: .3rem; + } + + .stepper-desc { + opacity: var(--#{$prefix}stepper-label-desc-opacity); + color: var(--#{$prefix}stepper-label-desc-color); + } + } + + // Current + &.current { + transition: $transition-link; + + .stepper-icon { + transition: $transition-link; + background-color: var(--#{$prefix}stepper-icon-bg-color-current); + border: var(--#{$prefix}stepper-icon-border-current); + + .stepper-check { + display: none; + } + + .stepper-number { + color: var(--#{$prefix}stepper-icon-number-color-current); + font-size: 1.35rem; + } + } + + .stepper-label { + .stepper-title { + opacity: var(--#{$prefix}stepper-label-title-opacity-current); + color: var(--#{$prefix}stepper-label-title-color-current); + } + + .stepper-desc { + opacity: var(--#{$prefix}stepper-label-desc-opacity-current); + color: var(--#{$prefix}stepper-label-desc-color-current); + } + } + } + + // Completed + &.current.mark-completed:last-child, + &.completed { + .stepper-icon { + transition: $transition-link; + background-color: var(--#{$prefix}stepper-icon-bg-color-completed); + border: var(--#{$prefix}stepper-icon-border-completed); + + .stepper-check { + color: var(--#{$prefix}stepper-icon-check-color-completed); + display: inline-block; + } + + .stepper-number { + display: none; + } + } + + .stepper-label { + .stepper-title { + opacity: var(--#{$prefix}stepper-label-title-opacity-completed); + color: var(--#{$prefix}stepper-label-title-color-completed); + } + + .stepper-desc { + opacity: var(--#{$prefix}stepper-label-desc-opacity-completed); + color: var(--#{$prefix}stepper-label-desc-color-completed); + } + } + } + } + + // Column + &.stepper-column { + // Nav + .stepper-nav { + flex-direction: column; + align-items: start; + } + + // Item + .stepper-item { + flex-direction: column; + justify-content: start; + align-items: stretch; + padding: 0; + margin: 0; + } + + // Wrapper + .stepper-wrapper { + display: flex; + align-items: center; + } + + // Icon + .stepper-icon { + z-index: 1; + } + + // Line + .stepper-line { + display: block; + flex-grow: 1; + margin-left: calc(var(--#{$prefix}stepper-pills-size) / 2); + border-left: var(--#{$prefix}stepper-line-border); + margin-top: 2px; + margin-bottom: 2px; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/_base.scss b/src/_metronic/assets/sass/core/layout/_base.scss new file mode 100644 index 0000000..a2d8e61 --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/_base.scss @@ -0,0 +1,50 @@ +// +// Root +// + +html { + font-family: sans-serif; + text-size-adjust: 100%; +} + +html, +body { + height: 100%; + margin: 0px; + padding: 0px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + font-size: $root-font-size !important; + font-weight: $font-weight-base; + font-family: $font-family-sans-serif; + + // Tablet mode + @include media-breakpoint-down(lg) { + font-size: $root-font-size-lg !important; + } + + // Mobile mode + @include media-breakpoint-down(md) { + font-size: $root-font-size-md !important; + } +} + +body { + display: flex; + flex-direction: column; + + a:hover, + a:active, + a:focus { + text-decoration: none !important; + } +} + +canvas { + user-select: none; +} + +// Angular integration +router-outlet { + display: none; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_container.scss b/src/_metronic/assets/sass/core/layout/base/_container.scss new file mode 100644 index 0000000..8e19b06 --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_container.scss @@ -0,0 +1,30 @@ +// +// Container +// + +// Desktop mode +@include media-breakpoint-up(lg) { + .app-container { + padding-left: $app-container-padding-x !important; + padding-right: $app-container-padding-x !important; + } + + .app-container-fit-desktop { + padding-left: 0 !important; + padding-right: 0 !important; + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + .app-container { + max-width: none; + padding-left: $app-container-padding-x-mobile !important; + padding-right: $app-container-padding-x-mobile !important; + } + + .app-container-fit-mobile { + padding-left: 0 !important; + padding-right: 0 !important; + } +} diff --git a/src/_metronic/assets/sass/core/layout/base/_content.scss b/src/_metronic/assets/sass/core/layout/base/_content.scss new file mode 100644 index 0000000..6f9992e --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_content.scss @@ -0,0 +1,24 @@ +// +// Content +// + +// Desktop mode +@include media-breakpoint-up(lg) { + .app-content { + padding-top: $app-content-padding-y; + padding-bottom: $app-content-padding-y; + padding-left: $app-content-padding-x; + padding-right: $app-content-padding-x; + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + .app-content { + max-width: none; + padding-top: $app-content-padding-y-mobile; + padding-bottom: $app-content-padding-y-mobile; + padding-left: $app-content-padding-x-mobile; + padding-right: $app-content-padding-x-mobile; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_footer.scss b/src/_metronic/assets/sass/core/layout/base/_footer.scss new file mode 100644 index 0000000..eef913b --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_footer.scss @@ -0,0 +1,99 @@ +// +// Footer +// + +// General mode +.app-footer { + transition: $app-footer-transition; + display: flex; + align-items: center; + background-color: var(--#{$prefix}app-footer-bg-color); + border-top: var(--#{$prefix}app-footer-border-top); +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-footer { + @include property( z-index, $app-footer-z-index); + } + + // Vars + :root { + --#{$prefix}app-footer-height: #{$app-footer-height}; + } + + // States + .app-footer { + height: var(--#{$prefix}app-footer-height); + + [data-kt-app-footer-fixed="true"] & { + @include property( z-index, $app-footer-fixed-z-index); + box-shadow: var(--#{$prefix}app-footer-box-shadow); + position: fixed; + left: 0; + right: 0; + bottom: 0; + } + } + + // Integration + .app-footer { + // Sidebar + [data-kt-app-sidebar-fixed="true"][data-kt-app-sidebar-push-footer="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + ); + } + + // Sidebar Panel + [data-kt-app-sidebar-panel-fixed="true"][data-kt-app-sidebar-panel-push-footer="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + + var(--#{$prefix}app-sidebar-panel-width) + + var(--#{$prefix}app-sidebar-panel-gap-start, 0px) + + var(--#{$prefix}app-sidebar-panel-gap-end, 0px) + ); + } + + // Aside + [data-kt-app-aside-fixed="true"][data-kt-app-aside-push-footer="true"] & { + right: calc( + var(--#{$prefix}app-aside-width) + + var(--#{$prefix}app-aside-gap-start, 0px) + + var(--#{$prefix}app-aside-gap-end, 0px) + ); + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-footer { + @include property( z-index, $app-footer-z-index-mobile); + } + + // Vars + body { + --#{$prefix}app-footer-height: #{$app-footer-height-mobile}; + } + + // States + .app-footer { + height: var(--#{$prefix}app-footer-height); + + [data-kt-app-footer-fixed-mobile="true"] & { + @include property( z-index, $app-footer-fixed-z-index-mobile); + box-shadow: var(--#{$prefix}app-footer-box-shadow); + position: fixed; + left: 0; + right: 0; + bottom: 0; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_hero.scss b/src/_metronic/assets/sass/core/layout/base/_hero.scss new file mode 100644 index 0000000..bae8f7a --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_hero.scss @@ -0,0 +1,13 @@ +// +// Hero +// + +// General mode +.app-hero { + display: flex; + align-items: stretch; + background-color: var(--#{$prefix}app-hero-bg-color); + box-shadow: var(--#{$prefix}app-hero-box-shadow); + border-top: var(--#{$prefix}app-hero-border-top); + border-bottom: var(--#{$prefix}app-hero-border-bottom); +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_layout-builder.scss b/src/_metronic/assets/sass/core/layout/base/_layout-builder.scss new file mode 100644 index 0000000..513db2a --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_layout-builder.scss @@ -0,0 +1,19 @@ +// +// Layout builder +// + +// General mode +.app-layout-builder-toggle { + position: fixed; + z-index: $app-layout-builder-toggle-z-index; + bottom: $app-layout-builder-toggle-bottom; + right: $app-layout-builder-toggle-end; +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + .app-layout-builder-toggle { + bottom: $app-layout-builder-toggle-bottom-mobile; + right: $app-layout-builder-toggle-end-mobile; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_layout.scss b/src/_metronic/assets/sass/core/layout/base/_layout.scss new file mode 100644 index 0000000..8321a7e --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_layout.scss @@ -0,0 +1,29 @@ +// +// App Layout +// + +@import "mixins/layout-minimize"; +@import "mixins/layout-transition"; +@import "root"; +@import "reboot"; +@import "page"; +@import "page-loader"; +@import "container"; +@import "print"; +@import "navbar"; +@import "header/header"; +@import "header/header-primary"; +@import "header/header-secondary"; +@import "header/header-tertiary"; +@import "toolbar"; +@import "hero"; +@import "sidebar/sidebar"; +@import "sidebar/sidebar-primary"; +@import "sidebar/sidebar-secondary"; +@import "sidebar/sidebar-panel"; +@import "aside/aside"; +@import "wrapper"; +@import "main"; +@import "content"; +@import "footer"; +@import "layout-builder"; \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_main.scss b/src/_metronic/assets/sass/core/layout/base/_main.scss new file mode 100644 index 0000000..99818ef --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_main.scss @@ -0,0 +1,75 @@ +// +// Main +// + +// General mode +.app-main { + display: flex; +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-main { + transition: $app-main-transition; + + @include property( padding-left, $app-main-padding-x ); + @include property( padding-right, $app-main-padding-x ); + @include property( padding-top, $app-main-padding-y ); + @include property( padding-bottom, $app-main-padding-y ); + + @include property( margin-left, $app-main-margin-x ); + @include property( margin-right, $app-main-margin-x ); + @include property( margin-top, $app-main-margin-y ); + @include property( margin-bottom, $app-main-margin-y ); + } + + // Integration + .app-main { + // Sidebar + [data-kt-app-sidebar-sticky="true"] & { + margin-left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + ); + } + + // Sidebar Panel + [data-kt-app-sidebar-panel-sticky="true"] & { + margin-left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + + var(--#{$prefix}app-sidebar-panel-width) + + var(--#{$prefix}app-sidebar-panel-gap-start, 0px) + + var(--#{$prefix}app-sidebar-panel-gap-end, 0px) + ); + } + + // Aside + [data-kt-app-aside-sticky="true"] & { + margin-right: calc( + var(--#{$prefix}app-aside-width) + + var(--#{$prefix}app-aside-gap-start, 0px) + + var(--#{$prefix}app-aside-gap-end, 0px) + ); + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-main { + @include property( padding-left, $app-main-padding-x-mobile ); + @include property( padding-right, $app-main-padding-x-mobile ); + @include property( padding-top, $app-main-padding-y-mobile ); + @include property( padding-bottom, $app-main-padding-y-mobile ); + + @include property( margin-left, $app-main-margin-x-mobile ); + @include property( margin-right, $app-main-margin-x-mobile ); + @include property( margin-top, $app-main-margin-y-mobile ); + @include property( margin-bottom, $app-main-margin-y-mobile ); + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_navbar.scss b/src/_metronic/assets/sass/core/layout/base/_navbar.scss new file mode 100644 index 0000000..a6d329c --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_navbar.scss @@ -0,0 +1,19 @@ +// +// App Navbar +// + +.app-navbar { + display: flex; + align-items: stretch; + + .app-navbar-item { + display: flex; + align-items: center; + } + + &.app-navbar-stretch { + .app-navbar-item { + align-items: stretch; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_page-loader.scss b/src/_metronic/assets/sass/core/layout/base/_page-loader.scss new file mode 100644 index 0000000..d388e74 --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_page-loader.scss @@ -0,0 +1,31 @@ +// +// Page loader +// + +// CSS3 Transitions only after page load(data-kt-app-page-loading="on" attribute added to body tag and removed with JS on page loaded) +[data-kt-app-page-loading="on"] { + overflow: hidden; +} + +[data-kt-app-page-loading="on"] * { + transition: none !important; +} + +// Base +.app-page-loader { + background: var(--#{$prefix}body-bg); + color: var(--#{$prefix}body-color); + position: fixed; + top: 0; + bottom: 0; + left: 0; + right: 0; + z-index: 10000; + display: none; + + [data-kt-app-page-loading="on"] & { + display: flex; + justify-content: center; + align-items: center; + } +} diff --git a/src/_metronic/assets/sass/core/layout/base/_page.scss b/src/_metronic/assets/sass/core/layout/base/_page.scss new file mode 100644 index 0000000..78ec216 --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_page.scss @@ -0,0 +1,7 @@ +// +// Page +// + +.app-page { + display: flex; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_print.scss b/src/_metronic/assets/sass/core/layout/base/_print.scss new file mode 100644 index 0000000..c4c76cb --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_print.scss @@ -0,0 +1,34 @@ +// +// Print +// + +// Add .app-print-content-only class to body element in order to allow printing only the content area +@media print { + .app-print-content-only { + padding: 0 !important; + background: none !important; + + .app-wrapper, + .app-page, + .app-page-title, + .app-content, + .app-container { + background: none !important; + padding: 0 !important; + margin: 0 !important; + } + + .app-aside, + .app-aside-panel, + .app-sidebar, + .app-sidebar-panel, + .app-header, + .app-footer, + .app-toolbar, + .drawer, + .scrolltop, + .btn { + display: none !important; + } + } +} diff --git a/src/_metronic/assets/sass/core/layout/base/_reboot.scss b/src/_metronic/assets/sass/core/layout/base/_reboot.scss new file mode 100644 index 0000000..85b4f28 --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_reboot.scss @@ -0,0 +1,65 @@ +// +// Reboot +// + +html { + font-family: sans-serif; + text-size-adjust: 100%; +} + +html, +body { + height: 100%; + margin: 0px; + padding: 0px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + font-size: $app-general-root-font-size-desktop !important; + font-weight: $font-weight-base; + font-family: $font-family-sans-serif; + + // Tablet mode + @include media-breakpoint-down(lg) { + font-size: $app-general-root-font-size-tablet !important; + } + + // Mobile mode + @include media-breakpoint-down(md) { + font-size: $app-general-root-font-size-mobile !important; + } +} + +body { + display: flex; + flex-direction: column; + + a:hover, + a:active, + a:focus { + text-decoration: none !important; + } +} + +canvas { + user-select: none; +} + +// Angular integration +router-outlet { + display: none; +} + +// Layouts +body, +.app-default { + background-color: var(--#{$prefix}app-bg-color); +} + +.app-blank { + background-color: var(--#{$prefix}app-blank-bg-color); +} + +// Reset CSS3 Transitions for child elements +[data-kt-app-reset-transition="true"] * { + transition: none !important; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_root.scss b/src/_metronic/assets/sass/core/layout/base/_root.scss new file mode 100644 index 0000000..d34538b --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_root.scss @@ -0,0 +1,368 @@ +// +// Root +// + +@include color-mode(light) { + // Layouts + @include property(--#{$prefix}app-bg-color, $app-bg-color); + @include property(--#{$prefix}app-blank-bg-color, $app-blank-bg-color); + + // Header base + @include property(--#{$prefix}app-header-base-bg-color, $app-header-base-bg-color); + @include property(--#{$prefix}app-header-base-box-shadow, $app-header-base-box-shadow); + @include property(--#{$prefix}app-header-base-border-bottom, $app-header-base-border-bottom); + + // Header minimize + @include property(--#{$prefix}app-header-minimize-bg-color, $app-header-minimize-bg-color); + @include property(--#{$prefix}app-header-minimize-box-shadow, $app-header-minimize-box-shadow); + @include property(--#{$prefix}app-header-minimize-border-bottom, $app-header-minimize-border-bottom); + + // Header sticky + @include property(--#{$prefix}app-header-sticky-bg-color, $app-header-sticky-bg-color); + @include property(--#{$prefix}app-header-sticky-box-shadow, $app-header-sticky-box-shadow); + @include property(--#{$prefix}app-header-sticky-border-bottom, $app-header-sticky-border-bottom); + + // Header primary + @include property(--#{$prefix}app-header-primary-base-bg-color, $app-header-primary-base-bg-color); + @include property(--#{$prefix}app-header-primary-base-box-shadow, $app-header-primary-base-box-shadow); + @include property(--#{$prefix}app-header-primary-base-border-bottom, $app-header-primary-base-border-bottom); + + @include property(--#{$prefix}app-header-primary-minimize-bg-color, $app-header-primary-minimize-bg-color); + @include property(--#{$prefix}app-header-primary-minimize-box-shadow, $app-header-primary-minimize-box-shadow); + @include property(--#{$prefix}app-header-primary-minimize-border-top, $app-header-primary-minimize-border-top); + @include property(--#{$prefix}app-header-primary-minimize-border-bottom, $app-header-primary-minimize-border-bottom); + + @include property(--#{$prefix}app-header-primary-sticky-bg-color, $app-header-primary-sticky-bg-color); + @include property(--#{$prefix}app-header-primary-sticky-box-shadow, $app-header-primary-sticky-box-shadow); + @include property(--#{$prefix}app-header-primary-sticky-border-top, $app-header-primary-sticky-border-top); + @include property(--#{$prefix}app-header-primary-sticky-border-bottom, $app-header-primary-sticky-border-bottom); + + // Header secondary base + @include property(--#{$prefix}app-header-secondary-base-bg-color, $app-header-secondary-base-bg-color); + @include property(--#{$prefix}app-header-secondary-base-box-shadow, $app-header-secondary-base-box-shadow); + @include property(--#{$prefix}app-header-secondary-base-border-top, $app-header-secondary-base-border-top); + @include property(--#{$prefix}app-header-secondary-base-border-bottom, $app-header-secondary-base-border-bottom); + + // Header secondary minimize + @include property(--#{$prefix}app-header-secondary-minimize-bg-color, $app-header-secondary-minimize-bg-color); + @include property(--#{$prefix}app-header-secondary-minimize-box-shadow, $app-header-secondary-minimize-box-shadow); + @include property(--#{$prefix}app-header-secondary-minimize-border-top, $app-header-secondary-minimize-border-top); + @include property(--#{$prefix}app-header-secondary-minimize-border-bottom, $app-header-secondary-minimize-border-bottom); + + // Header secondary sticky + @include property(--#{$prefix}app-header-secondary-sticky-bg-color, $app-header-secondary-sticky-bg-color); + @include property(--#{$prefix}app-header-secondary-sticky-box-shadow, $app-header-secondary-sticky-box-shadow); + @include property(--#{$prefix}app-header-secondary-sticky-border-top, $app-header-secondary-sticky-border-top); + @include property(--#{$prefix}app-header-secondary-sticky-border-bottom, $app-header-secondary-sticky-border-bottom); + + // Header tertiary base + @include property(--#{$prefix}app-header-tertiary-base-bg-color, $app-header-tertiary-base-bg-color); + @include property(--#{$prefix}app-header-tertiary-base-box-shadow, $app-header-tertiary-base-box-shadow); + @include property(--#{$prefix}app-header-tertiary-base-border-top, $app-header-tertiary-base-border-top); + @include property(--#{$prefix}app-header-tertiary-base-border-bottom, $app-header-tertiary-base-border-bottom); + + // Header tertiary minimize + @include property(--#{$prefix}app-header-tertiary-minimize-bg-color, $app-header-tertiary-minimize-bg-color); + @include property(--#{$prefix}app-header-tertiary-minimize-box-shadow, $app-header-tertiary-minimize-box-shadow); + @include property(--#{$prefix}app-header-tertiary-minimize-border-top, $app-header-tertiary-minimize-border-top); + @include property(--#{$prefix}app-header-tertiary-minimize-border-bottom, $app-header-tertiary-minimize-border-bottom); + + // Header tertiary sticky + @include property(--#{$prefix}app-header-tertiary-sticky-bg-color, $app-header-tertiary-sticky-bg-color); + @include property(--#{$prefix}app-header-tertiary-sticky-box-shadow, $app-header-tertiary-sticky-box-shadow); + @include property(--#{$prefix}app-header-tertiary-sticky-border-top, $app-header-tertiary-sticky-border-top); + @include property(--#{$prefix}app-header-tertiary-sticky-border-bottom, $app-header-tertiary-sticky-border-bottom); + + // Toolbar base + @include property(--#{$prefix}app-toolbar-base-bg-color, $app-toolbar-base-bg-color); + @include property(--#{$prefix}app-toolbar-base-box-shadow, $app-toolbar-base-box-shadow); + @include property(--#{$prefix}app-toolbar-base-border-top, $app-toolbar-base-border-top); + @include property(--#{$prefix}app-toolbar-base-border-bottom, $app-toolbar-base-border-bottom); + + // Toolbar minimize + @include property(--#{$prefix}app-toolbar-minimize-bg-color, $app-toolbar-minimize-bg-color); + @include property(--#{$prefix}app-toolbar-minimize-box-shadow, $app-toolbar-minimize-box-shadow); + @include property(--#{$prefix}app-toolbar-minimize-border-top, $app-toolbar-minimize-border-top); + @include property(--#{$prefix}app-toolbar-minimize-border-bottom, $app-toolbar-minimize-border-bottom); + + // Toolbar sticky + @include property(--#{$prefix}app-toolbar-sticky-bg-color, $app-toolbar-sticky-bg-color); + @include property(--#{$prefix}app-toolbar-sticky-box-shadow, $app-toolbar-sticky-box-shadow); + @include property(--#{$prefix}app-toolbar-sticky-border-top, $app-toolbar-sticky-border-top); + @include property(--#{$prefix}app-toolbar-sticky-border-bottom, $app-toolbar-sticky-border-bottom); + + // Sidebar base + @include property(--#{$prefix}app-sidebar-base-bg-color, $app-sidebar-base-bg-color); + @include property(--#{$prefix}app-sidebar-base-box-shadow, $app-sidebar-base-box-shadow); + @include property(--#{$prefix}app-sidebar-base-border-start, $app-sidebar-base-border-start); + @include property(--#{$prefix}app-sidebar-base-border-end, $app-sidebar-base-border-end); + + // Hero + @include property(--#{$prefix}app-hero-bg-color, $app-hero-bg-color); + @include property(--#{$prefix}app-hero-box-shadow, $app-hero-box-shadow); + @include property(--#{$prefix}app-hero-border-top, $app-hero-border-top); + @include property(--#{$prefix}app-hero-border-bottom, $app-hero-border-bottom); + + // Sidebar sticky + @include property(--#{$prefix}app-sidebar-sticky-bg-color, $app-sidebar-sticky-bg-color); + @include property(--#{$prefix}app-sidebar-sticky-box-shadow, $app-sidebar-sticky-box-shadow); + @include property(--#{$prefix}app-sidebar-sticky-border-start, $app-sidebar-sticky-border-start); + @include property(--#{$prefix}app-sidebar-sticky-border-end, $app-sidebar-sticky-border-end); + + // Sidebar minimize + @include property(--#{$prefix}app-sidebar-minimize-bg-color, $app-sidebar-minimize-bg-color); + @include property(--#{$prefix}app-sidebar-minimize-box-shadow, $app-sidebar-minimize-box-shadow); + @include property(--#{$prefix}app-sidebar-minimize-hover-box-shadow, $app-sidebar-minimize-hover-box-shadow); + @include property(--#{$prefix}app-sidebar-minimize-border-start, $app-sidebar-minimize-border-start); + @include property(--#{$prefix}app-sidebar-minimize-border-end, $app-sidebar-minimize-border-end); + + // Sidebar primary + @include property(--#{$prefix}app-sidebar-primary-base-bg-color, $app-sidebar-primary-base-bg-color); + @include property(--#{$prefix}app-sidebar-primary-base-box-shadow, $app-sidebar-primary-base-box-shadow); + @include property(--#{$prefix}app-sidebar-primary-base-border-start, $app-sidebar-primary-base-border-start); + @include property(--#{$prefix}app-sidebar-primary-base-border-end, $app-sidebar-primary-base-border-end); + + // Sidebar primary minimize + @include property(--#{$prefix}app-sidebar-primary-minimize-bg-color, $app-sidebar-primary-minimize-bg-color); + @include property(--#{$prefix}app-sidebar-primary-minimize-box-shadow, $app-sidebar-primary-minimize-box-shadow); + @include property(--#{$prefix}app-sidebar-primary-minimize-hover-box-shadow, $app-sidebar-primary-minimize-hover-box-shadow); + @include property(--#{$prefix}app-sidebar-primary-minimize-border-start, $app-sidebar-primary-minimize-border-start); + @include property(--#{$prefix}app-sidebar-primary-minimize-border-end, $app-sidebar-primary-minimize-border-end); + + // Sidebar secondary base + @include property(--#{$prefix}app-sidebar-secondary-base-bg-color, $app-sidebar-secondary-base-bg-color); + @include property(--#{$prefix}app-sidebar-secondary-base-box-shadow, $app-sidebar-secondary-base-box-shadow); + @include property(--#{$prefix}app-sidebar-secondary-base-border-start, $app-sidebar-secondary-base-border-start); + @include property(--#{$prefix}app-sidebar-secondary-base-border-end, $app-sidebar-secondary-base-border-end); + + // Sidebar secondary minimize + @include property(--#{$prefix}app-sidebar-secondary-minimize-bg-color, $app-sidebar-secondary-minimize-bg-color); + @include property(--#{$prefix}app-sidebar-secondary-minimize-box-shadow, $app-sidebar-secondary-minimize-box-shadow); + @include property(--#{$prefix}app-sidebar-secondary-minimize-hover-box-shadow, $app-sidebar-secondary-minimize-hover-box-shadow); + @include property(--#{$prefix}app-sidebar-secondary-minimize-border-start, $app-sidebar-secondary-minimize-border-start); + @include property(--#{$prefix}app-sidebar-secondary-minimize-border-end, $app-sidebar-secondary-minimize-border-end); + + // Sidebar panel base + @include property(--#{$prefix}app-sidebar-panel-base-bg-color, $app-sidebar-panel-base-bg-color); + @include property(--#{$prefix}app-sidebar-panel-base-box-shadow, $app-sidebar-panel-base-box-shadow); + @include property(--#{$prefix}app-sidebar-panel-base-border-start, $app-sidebar-panel-base-border-start); + @include property(--#{$prefix}app-sidebar-panel-base-border-end, $app-sidebar-panel-base-border-end); + + // Sidebar panel sticky + @include property(--#{$prefix}app-sidebar-panel-sticky-bg-color, $app-sidebar-panel-sticky-bg-color); + @include property(--#{$prefix}app-sidebar-panel-sticky-box-shadow, $app-sidebar-panel-sticky-box-shadow); + @include property(--#{$prefix}app-sidebar-panel-sticky-border-start, $app-sidebar-panel-sticky-border-start); + @include property(--#{$prefix}app-sidebar-panel-sticky-border-end, $app-sidebar-panel-sticky-border-end); + + // Sidebar panel minimize + @include property(--#{$prefix}app-sidebar-panel-minimize-bg-color, $app-sidebar-panel-minimize-bg-color); + @include property(--#{$prefix}app-sidebar-panel-minimize-box-shadow, $app-sidebar-panel-minimize-box-shadow); + @include property(--#{$prefix}app-sidebar-panel-minimize-hover-box-shadow, $app-sidebar-panel-minimize-hover-box-shadow); + @include property(--#{$prefix}app-sidebar-panel-minimize-border-start, $app-sidebar-panel-minimize-border-start); + @include property(--#{$prefix}app-sidebar-panel-minimize-border-end, $app-sidebar-panel-minimize-border-end); + + // Aside base + @include property(--#{$prefix}app-aside-base-bg-color, $app-aside-base-bg-color); + @include property(--#{$prefix}app-aside-base-box-shadow, $app-aside-base-box-shadow); + + // Aside sticky + @include property(--#{$prefix}app-aside-sticky-bg-color, $app-aside-sticky-bg-color); + @include property(--#{$prefix}app-aside-sticky-box-shadow, $app-aside-sticky-box-shadow); + + // Aside minimize + @include property(--#{$prefix}app-aside-minimize-bg-color, $app-aside-minimize-bg-color); + @include property(--#{$prefix}app-aside-minimize-box-shadow, $app-aside-minimize-box-shadow); + @include property(--#{$prefix}app-aside-minimize-hover-box-shadow, $app-aside-minimize-hover-box-shadow); + + // Page + @include property(--#{$prefix}app-page-bg-color, $app-page-bg-color); + + // Wrapper + @include property(--#{$prefix}app-wrapper-bg-color, $app-wrapper-bg-color); + + // Footer + @include property(--#{$prefix}app-footer-bg-color, $app-footer-bg-color); + @include property(--#{$prefix}app-footer-box-shadow, $app-footer-box-shadow); + @include property(--#{$prefix}app-footer-border-top, $app-footer-border-top); +} + +@include color-mode(dark) { + // Layouts + @include property(--#{$prefix}app-bg-color, $app-bg-color-dark); + @include property(--#{$prefix}app-blank-bg-color, $app-blank-bg-color-dark); + + // Header base + @include property(--#{$prefix}app-header-base-bg-color, $app-header-base-bg-color-dark); + @include property(--#{$prefix}app-header-base-box-shadow, $app-header-base-box-shadow-dark); + @include property(--#{$prefix}app-header-base-border-bottom, $app-header-base-border-bottom-dark); + + // Header minimize + @include property(--#{$prefix}app-header-minimize-bg-color, $app-header-minimize-bg-color-dark); + @include property(--#{$prefix}app-header-minimize-box-shadow, $app-header-minimize-box-shadow-dark); + @include property(--#{$prefix}app-header-minimize-border-bottom, $app-header-minimize-border-bottom-dark); + + // Header sticky + @include property(--#{$prefix}app-header-sticky-bg-color, $app-header-sticky-bg-color-dark); + @include property(--#{$prefix}app-header-sticky-box-shadow, $app-header-sticky-box-shadow-dark); + @include property(--#{$prefix}app-header-sticky-border-bottom, $app-header-sticky-border-bottom-dark); + + // Header primary + @include property(--#{$prefix}app-header-primary-base-bg-color, $app-header-primary-base-bg-color-dark); + @include property(--#{$prefix}app-header-primary-base-box-shadow, $app-header-primary-base-box-shadow-dark); + @include property(--#{$prefix}app-header-primary-base-border-bottom, $app-header-primary-base-border-bottom-dark); + + @include property(--#{$prefix}app-header-primary-minimize-bg-color, $app-header-primary-minimize-bg-color-dark); + @include property(--#{$prefix}app-header-primary-minimize-box-shadow, $app-header-primary-minimize-box-shadow-dark); + @include property(--#{$prefix}app-header-primary-minimize-border-top, $app-header-primary-minimize-border-top-dark); + @include property(--#{$prefix}app-header-primary-minimize-border-bottom, $app-header-primary-minimize-border-bottom-dark); + + @include property(--#{$prefix}app-header-primary-sticky-bg-color, $app-header-primary-sticky-bg-color-dark); + @include property(--#{$prefix}app-header-primary-sticky-box-shadow, $app-header-primary-sticky-box-shadow-dark); + @include property(--#{$prefix}app-header-primary-sticky-border-top, $app-header-primary-sticky-border-top-dark); + @include property(--#{$prefix}app-header-primary-sticky-border-bottom, $app-header-primary-sticky-border-bottom-dark); + + // Header secondary base + @include property(--#{$prefix}app-header-secondary-base-bg-color, $app-header-secondary-base-bg-color-dark); + @include property(--#{$prefix}app-header-secondary-base-box-shadow, $app-header-secondary-base-box-shadow-dark); + @include property(--#{$prefix}app-header-secondary-base-border-top, $app-header-secondary-base-border-top-dark); + @include property(--#{$prefix}app-header-secondary-base-border-bottom, $app-header-secondary-base-border-bottom-dark); + + // Header secondary minimize + @include property(--#{$prefix}app-header-secondary-minimize-bg-color, $app-header-secondary-minimize-bg-color-dark); + @include property(--#{$prefix}app-header-secondary-minimize-box-shadow, $app-header-secondary-minimize-box-shadow-dark); + @include property(--#{$prefix}app-header-secondary-minimize-border-top, $app-header-secondary-minimize-border-top-dark); + @include property(--#{$prefix}app-header-secondary-minimize-border-bottom, $app-header-secondary-minimize-border-bottom-dark); + + // Header secondary sticky + @include property(--#{$prefix}app-header-secondary-sticky-bg-color, $app-header-secondary-sticky-bg-color-dark); + @include property(--#{$prefix}app-header-secondary-sticky-box-shadow, $app-header-secondary-sticky-box-shadow-dark); + @include property(--#{$prefix}app-header-secondary-sticky-border-top, $app-header-secondary-sticky-border-top-dark); + @include property(--#{$prefix}app-header-secondary-sticky-border-bottom, $app-header-secondary-sticky-border-bottom-dark); + + // Header tertiary base + @include property(--#{$prefix}app-header-tertiary-base-bg-color, $app-header-tertiary-base-bg-color-dark); + @include property(--#{$prefix}app-header-tertiary-base-box-shadow, $app-header-tertiary-base-box-shadow-dark); + @include property(--#{$prefix}app-header-tertiary-base-border-top, $app-header-tertiary-base-border-top-dark); + @include property(--#{$prefix}app-header-tertiary-base-border-bottom, $app-header-tertiary-base-border-bottom-dark); + + // Header tertiary minimize + @include property(--#{$prefix}app-header-tertiary-minimize-bg-color, $app-header-tertiary-minimize-bg-color-dark); + @include property(--#{$prefix}app-header-tertiary-minimize-box-shadow, $app-header-tertiary-minimize-box-shadow-dark); + @include property(--#{$prefix}app-header-tertiary-minimize-border-top, $app-header-tertiary-minimize-border-top-dark); + @include property(--#{$prefix}app-header-tertiary-minimize-border-bottom, $app-header-tertiary-minimize-border-bottom-dark); + + // Header tertiary sticky + @include property(--#{$prefix}app-header-tertiary-sticky-bg-color, $app-header-tertiary-sticky-bg-color-dark); + @include property(--#{$prefix}app-header-tertiary-sticky-box-shadow, $app-header-tertiary-sticky-box-shadow-dark); + @include property(--#{$prefix}app-header-tertiary-sticky-border-top, $app-header-tertiary-sticky-border-top-dark); + @include property(--#{$prefix}app-header-tertiary-sticky-border-bottom, $app-header-tertiary-sticky-border-bottom-dark); + + // Toolbar base + @include property(--#{$prefix}app-toolbar-base-bg-color, $app-toolbar-base-bg-color-dark); + @include property(--#{$prefix}app-toolbar-base-box-shadow, $app-toolbar-base-box-shadow-dark); + @include property(--#{$prefix}app-toolbar-base-border-top, $app-toolbar-base-border-top-dark); + @include property(--#{$prefix}app-toolbar-base-border-bottom, $app-toolbar-base-border-bottom-dark); + + // Toolbar minimize + @include property(--#{$prefix}app-toolbar-minimize-bg-color, $app-toolbar-minimize-bg-color-dark); + @include property(--#{$prefix}app-toolbar-minimize-box-shadow, $app-toolbar-minimize-box-shadow-dark); + @include property(--#{$prefix}app-toolbar-minimize-border-top, $app-toolbar-minimize-border-top-dark); + @include property(--#{$prefix}app-toolbar-minimize-border-bottom, $app-toolbar-minimize-border-bottom-dark); + + // Toolbar sticky + @include property(--#{$prefix}app-toolbar-sticky-bg-color, $app-toolbar-sticky-bg-color-dark); + @include property(--#{$prefix}app-toolbar-sticky-box-shadow, $app-toolbar-sticky-box-shadow-dark); + @include property(--#{$prefix}app-toolbar-sticky-border-top, $app-toolbar-sticky-border-top-dark); + @include property(--#{$prefix}app-toolbar-sticky-border-bottom, $app-toolbar-sticky-border-bottom-dark); + + // Hero + @include property(--#{$prefix}app-hero-bg-color, $app-hero-bg-color-dark); + @include property(--#{$prefix}app-hero-box-shadow, $app-hero-box-shadow-dark); + @include property(--#{$prefix}app-hero-border-top, $app-hero-border-top-dark); + @include property(--#{$prefix}app-hero-border-bottom, $app-hero-border-bottom-dark); + + // Sidebar base + @include property(--#{$prefix}app-sidebar-base-bg-color, $app-sidebar-base-bg-color-dark); + @include property(--#{$prefix}app-sidebar-base-box-shadow, $app-sidebar-base-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-base-border-start, $app-sidebar-base-border-start-dark); + @include property(--#{$prefix}app-sidebar-base-border-end, $app-sidebar-base-border-end-dark); + + // Sidebar sticky + @include property(--#{$prefix}app-sidebar-sticky-bg-color, $app-sidebar-sticky-bg-color-dark); + @include property(--#{$prefix}app-sidebar-sticky-box-shadow, $app-sidebar-sticky-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-sticky-border-start, $app-sidebar-sticky-border-start-dark); + @include property(--#{$prefix}app-sidebar-sticky-border-end, $app-sidebar-sticky-border-end-dark); + + // Sidebar minimize + @include property(--#{$prefix}app-sidebar-minimize-bg-color, $app-sidebar-minimize-bg-color-dark); + @include property(--#{$prefix}app-sidebar-minimize-box-shadow, $app-sidebar-minimize-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-minimize-hover-box-shadow, $app-sidebar-minimize-hover-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-minimize-border-start, $app-sidebar-minimize-border-start-dark); + @include property(--#{$prefix}app-sidebar-minimize-border-end, $app-sidebar-minimize-border-end-dark); + + // Sidebar primary + @include property(--#{$prefix}app-sidebar-primary-base-bg-color, $app-sidebar-primary-base-bg-color-dark); + @include property(--#{$prefix}app-sidebar-primary-base-box-shadow, $app-sidebar-primary-base-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-primary-base-border-start, $app-sidebar-primary-base-border-start-dark); + @include property(--#{$prefix}app-sidebar-primary-base-border-end, $app-sidebar-primary-base-border-end-dark); + + @include property(--#{$prefix}app-sidebar-primary-minimize-bg-color, $app-sidebar-primary-minimize-bg-color-dark); + @include property(--#{$prefix}app-sidebar-primary-minimize-box-shadow, $app-sidebar-primary-minimize-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-primary-minimize-hover-box-shadow, $app-sidebar-primary-minimize-hover-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-primary-minimize-border-start, $app-sidebar-primary-minimize-border-start-dark); + @include property(--#{$prefix}app-sidebar-primary-minimize-border-end, $app-sidebar-primary-minimize-border-end-dark); + + // Sidebar secondary + @include property(--#{$prefix}app-sidebar-secondary-base-bg-color, $app-sidebar-secondary-base-bg-color-dark); + @include property(--#{$prefix}app-sidebar-secondary-base-box-shadow, $app-sidebar-secondary-base-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-secondary-base-border-start, $app-sidebar-secondary-base-border-start-dark); + @include property(--#{$prefix}app-sidebar-secondary-base-border-end, $app-sidebar-secondary-base-border-end-dark); + + @include property(--#{$prefix}app-sidebar-secondary-minimize-bg-color, $app-sidebar-secondary-minimize-bg-color-dark); + @include property(--#{$prefix}app-sidebar-secondary-minimize-box-shadow, $app-sidebar-secondary-minimize-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-secondary-minimize-hover-box-shadow, $app-sidebar-secondary-minimize-hover-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-secondary-minimize-border-start, $app-sidebar-secondary-minimize-border-start-dark); + @include property(--#{$prefix}app-sidebar-secondary-minimize-border-end, $app-sidebar-secondary-minimize-border-end-dark); + + // Sidebar panel base + @include property(--#{$prefix}app-sidebar-panel-base-bg-color, $app-sidebar-panel-base-bg-color-dark); + @include property(--#{$prefix}app-sidebar-panel-base-box-shadow, $app-sidebar-panel-base-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-panel-base-border-start, $app-sidebar-panel-base-border-start-dark); + @include property(--#{$prefix}app-sidebar-panel-base-border-end, $app-sidebar-panel-base-border-end-dark); + + // Sidebar panel sticky + @include property(--#{$prefix}app-sidebar-panel-sticky-bg-color, $app-sidebar-panel-sticky-bg-color-dark); + @include property(--#{$prefix}app-sidebar-panel-sticky-box-shadow, $app-sidebar-panel-sticky-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-panel-sticky-border-start, $app-sidebar-panel-sticky-border-start-dark); + @include property(--#{$prefix}app-sidebar-panel-sticky-border-end, $app-sidebar-panel-sticky-border-end-dark); + + // Sidebar panel minimize + @include property(--#{$prefix}app-sidebar-panel-minimize-bg-color, $app-sidebar-panel-minimize-bg-color-dark); + @include property(--#{$prefix}app-sidebar-panel-minimize-box-shadow, $app-sidebar-panel-minimize-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-panel-minimize-hover-box-shadow, $app-sidebar-panel-minimize-hover-box-shadow-dark); + @include property(--#{$prefix}app-sidebar-panel-minimize-border-start, $app-sidebar-panel-minimize-border-start-dark); + @include property(--#{$prefix}app-sidebar-panel-minimize-border-end, $app-sidebar-panel-minimize-border-end-dark); + + // Aside base + @include property(--#{$prefix}app-aside-base-bg-color, $app-aside-base-bg-color-dark); + @include property(--#{$prefix}app-aside-base-box-shadow, $app-aside-base-box-shadow-dark); + + // Aside sticky + @include property(--#{$prefix}app-aside-sticky-bg-color, $app-aside-sticky-bg-color-dark); + + // Aside minimize + @include property(--#{$prefix}app-aside-minimize-bg-color, $app-aside-minimize-bg-color-dark); + @include property(--#{$prefix}app-aside-minimize-box-shadow, $app-aside-minimize-box-shadow-dark); + @include property(--#{$prefix}app-aside-minimize-hover-box-shadow, $app-aside-minimize-hover-box-shadow-dark); + + // Page + @include property(--#{$prefix}app-page-bg-color, $app-page-bg-color-dark); + + // Wrapper + @include property(--#{$prefix}app-wrapper-bg-color, $app-wrapper-bg-color-dark); + + // Footer + @include property(--#{$prefix}app-footer-bg-color, $app-footer-bg-color-dark); + @include property(--#{$prefix}app-footer-box-shadow, $app-footer-box-shadow-dark); + @include property(--#{$prefix}app-footer-border-top, $app-footer-border-top-dark); +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_toolbar.scss b/src/_metronic/assets/sass/core/layout/base/_toolbar.scss new file mode 100644 index 0000000..f504c51 --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_toolbar.scss @@ -0,0 +1,171 @@ +// +// Toolbar +// + +// General mode +.app-toolbar { + display: flex; + align-items: stretch; + background-color: var(--#{$prefix}app-toolbar-base-bg-color); + box-shadow: var(--#{$prefix}app-toolbar-base-box-shadow); + border-top: var(--#{$prefix}app-toolbar-base-border-top); + border-bottom: var(--#{$prefix}app-toolbar-base-border-bottom); + + &.app-toolbar-minimize { + transition: $app-toolbar-base-transition; + } +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Vars + :root { + --#{$prefix}app-toolbar-height: #{$app-toolbar-base-height}; + --#{$prefix}app-toolbar-height-actual: #{$app-toolbar-base-height}; + } + + [data-kt-app-toolbar-sticky="on"] { + --#{$prefix}app-toolbar-height: #{$app-toolbar-sticky-height}; + } + + [data-kt-app-toolbar-minimize="on"] { + --#{$prefix}app-toolbar-height: #{$app-toolbar-minimize-height}; + } + + // States + .app-toolbar { + height: var(--#{$prefix}app-toolbar-height); + + [data-kt-app-header-fixed="true"][data-kt-app-toolbar-fixed="true"] & { + @include property( z-index, $app-toolbar-base-z-index); + position: fixed; + left: 0; + right: 0; + top: 0; + } + + [data-kt-app-toolbar-sticky="on"] & { + position: fixed; + left: 0; + right: 0; + top: 0; + + box-shadow: var(--#{$prefix}app-toolbar-sticky-box-shadow); + background-color: var(--#{$prefix}app-toolbar-sticky-bg-color); + border-top: var(--#{$prefix}app-toolbar-sticky-border-top); + border-bottom: var(--#{$prefix}app-toolbar-sticky-border-bottom); + + @include property( z-index, $app-toolbar-sticky-z-index); + @include property( backdrop-filter, $app-toolbar-sticky-backdrop-filter); + } + + [data-kt-app-toolbar-minimize="on"] & { + transition: $app-toolbar-base-transition; + + box-shadow: var(--#{$prefix}app-toolbar-minimize-box-shadow); + background-color: var(--#{$prefix}app-toolbar-minimize-bg-color); + border-top: var(--#{$prefix}app-toolbar-minimize-border-top); + border-bottom: var(--#{$prefix}app-toolbar-minimize-border-bottom); + + @include property( z-index, $app-toolbar-minimize-z-index); + @include property( backdrop-filter, $app-toolbar-minimize-backdrop-filter); + } + } + + // Integration + .app-toolbar { + // Header + [data-kt-app-toolbar-fixed="true"][data-kt-app-header-fixed="true"] & { + top: var(--#{$prefix}app-header-height); + } + + // Sidebar + [data-kt-app-toolbar-sticky="on"][data-kt-app-sidebar-fixed="true"][data-kt-app-sidebar-push-toolbar="true"] &, + [data-kt-app-toolbar-fixed="true"][data-kt-app-sidebar-fixed="true"][data-kt-app-sidebar-push-toolbar="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + ); + } + + // Sidebar panel + [data-kt-app-toolbar-sticky="on"][data-kt-app-sidebar-panel-fixed="true"][data-kt-app-sidebar-panel-push-toolbar="true"] &, + [data-kt-app-toolbar-fixed="true"][data-kt-app-sidebar-panel-fixed="true"][data-kt-app-sidebar-panel-push-toolbar="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + + var(--#{$prefix}app-sidebar-panel-width) + + var(--#{$prefix}app-sidebar-panel-gap-start, 0px) + + var(--#{$prefix}app-sidebar-panel-gap-end, 0px) + ); + } + + // Aside + [data-kt-app-toolbar-sticky="on"][data-kt-app-aside-fixed="true"][data-kt-app-aside-push-toolbar="true"] &, + [data-kt-app-toolbar-fixed="true"][data-kt-app-aside-fixed="true"][data-kt-app-aside-push-toolbar="true"] & { + right: calc( + var(--#{$prefix}app-aside-width) + + var(--#{$prefix}app-aside-gap-start, 0px) + + var(--#{$prefix}app-aside-gap-end, 0px) + ); + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Vars + :root { + --#{$prefix}app-toolbar-height: #{$app-toolbar-base-height-mobile}; + } + + [data-kt-app-toolbar-sticky="on"] { + --#{$prefix}app-toolbar-height: #{$app-toolbar-sticky-height-mobile}; + } + + [data-kt-app-toolbar-minimize="on"] { + --#{$prefix}app-toolbar-height: #{$app-toolbar-minimize-height-mobile}; + } + + // States + .app-toolbar { + height: var(--#{$prefix}app-toolbar-height); + + [data-kt-app-header-fixed-mobile="true"][data-kt-app-toolbar-fixed-mobile="true"] & { + @include property( z-index, $app-toolbar-base-z-index-mobile); + position: fixed; + top: calc(var(--#{$prefix}app-header-height, 0px) + var(--#{$prefix}app-header-mobile-height, 0px)); + left: 0; + right: 0; + } + + [data-kt-app-toolbar-sticky="on"] & { + position: fixed; + left: 0; + right: 0; + top: var(--#{$prefix}app-header-height, 0px); + + box-shadow: var(--#{$prefix}app-toolbar-sticky-box-shadow); + background-color: var(--#{$prefix}app-toolbar-sticky-bg-color); + border-top: var(--#{$prefix}app-toolbar-sticky-border-top); + border-bottom: var(--#{$prefix}app-toolbar-sticky-border-bottom); + + @include property( z-index, $app-toolbar-sticky-z-index-mobile); + @include property( backdrop-filter, $app-toolbar-sticky-backdrop-filter-mobile); + } + + [data-kt-app-toolbar-minimize="on"] & { + transition: $app-toolbar-base-transition; + + box-shadow: var(--#{$prefix}app-toolbar-minimize-box-shadow); + background-color: var(--#{$prefix}app-toolbar-minimize-bg-color); + border-top: var(--#{$prefix}app-toolbar-minimize-border-top); + border-bottom: var(--#{$prefix}app-toolbar-minimize-border-bottom); + + @include property( z-index, $app-toolbar-minimize-z-index-mobile); + @include property( backdrop-filter, $app-toolbar-minimize-backdrop-filter-mobile); + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_variables.scss b/src/_metronic/assets/sass/core/layout/base/_variables.scss new file mode 100644 index 0000000..6ecd03b --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_variables.scss @@ -0,0 +1,615 @@ +// +// Variables +// + +// Reboot +$app-bg-color: #f5f8fa !default; +$app-bg-color-dark: #151521 !default; +$app-blank-bg-color: $white; +$app-blank-bg-color-dark: $app-bg-color-dark; + +// General +$app-general-transition-duration: .3s !default; +$app-general-transition-timing: ease !default; +$app-general-root-font-size-desktop: 13px !default; +$app-general-root-font-size-tablet: 12px !default; +$app-general-root-font-size-mobile: 12px !default; + +// Container +$app-container-padding-x: 30px !default; +$app-container-padding-x-mobile: 20px !default; + +// Page +$app-page-bg-color: null !default; +$app-page-bg-color-dark: null !default; + +// Main +$app-main-transition: margin $app-general-transition-duration $app-general-transition-timing; +$app-main-padding-y: null !default; +$app-main-padding-y-mobile: null !default; +$app-main-padding-x: null !default; +$app-main-padding-x-mobile: 0 !default; +$app-main-margin-y: null !default; +$app-main-margin-y-mobile: null !default; +$app-main-margin-x: null !default; +$app-main-margin-x-mobile: null !default; + +// Wrapper +$app-wrapper-transition: margin-left $app-general-transition-duration $app-general-transition-timing, margin-right $app-general-transition-duration $app-general-transition-timing; +$app-wrapper-bg-color: null !default; +$app-wrapper-bg-color-dark: null !default; + +// Content +$app-content-padding-y: 30px !default; +$app-content-padding-y-mobile: 20px !default; +$app-content-padding-x: 0 !default; +$app-content-padding-x-mobile: 0 !default; + +// Header base +$app-header-base-transition: none !default; +$app-header-base-height: 70px !default; +$app-header-base-height-mobile: 70px !default; +$app-header-base-z-index: null !default; +$app-header-base-z-index-mobile: null !default; +$app-header-base-bg-color: null !default; +$app-header-base-bg-color-dark: null !default; +$app-header-base-box-shadow: null !default; +$app-header-base-box-shadow-dark: null !default; +$app-header-base-border-bottom: null !default; +$app-header-base-border-bottom-dark: null !default; + +// Header fixed +$app-header-fixed-z-index: 100 !default; +$app-header-fixed-z-index-mobile: 100 !default; + +// Header minimize +$app-header-minimize-height: 70px !default; +$app-header-minimize-height-mobile: 70px !default; +$app-header-minimize-z-index: 100 !default; +$app-header-minimize-z-index-mobile: 100 !default; +$app-header-minimize-backdrop-filter: null !default; +$app-header-minimize-backdrop-filter-mobile: null !default; +$app-header-minimize-bg-color: null !default; +$app-header-minimize-bg-color-dark: null !default; +$app-header-minimize-box-shadow: null !default; +$app-header-minimize-box-shadow-dark: null !default; +$app-header-minimize-border-bottom: null !default; +$app-header-minimize-border-bottom-dark: null !default; + +// Header sticky +$app-header-sticky-height: 70px !default; +$app-header-sticky-height-mobile: 70px !default; +$app-header-sticky-z-index: 100 !default; +$app-header-sticky-z-index-mobile: 100 !default; +$app-header-sticky-backdrop-filter: null !default; +$app-header-sticky-backdrop-filter-mobile: null !default; +$app-header-sticky-bg-color: null !default; +$app-header-sticky-bg-color-dark: null !default; +$app-header-sticky-box-shadow: null !default; +$app-header-sticky-box-shadow-dark: null !default; +$app-header-sticky-border-bottom: null !default; +$app-header-sticky-border-bottom-dark: null !default; + +// Header primary +$app-header-primary-base-transition: none !default; +$app-header-primary-base-height: 70px !default; +$app-header-primary-base-height-mobile: 60px !default; +$app-header-primary-base-z-index: null !default; +$app-header-primary-base-z-index-mobile: null !default; +$app-header-primary-base-bg-color: null !default; +$app-header-primary-base-bg-color-dark: null !default; +$app-header-primary-base-box-shadow: null !default; +$app-header-primary-base-box-shadow-dark: null !default; +$app-header-primary-base-border-bottom: null !default; +$app-header-primary-base-border-bottom-dark: null !default; + +$app-header-primary-fixed-z-index: 100 !default; + +$app-header-primary-minimize-height: 70px !default; +$app-header-primary-minimize-height-mobile: 60px !default; +$app-header-primary-minimize-z-index: 100 !default; +$app-header-primary-minimize-bg-color: null !default; +$app-header-primary-minimize-bg-color-dark: null !default; +$app-header-primary-minimize-box-shadow: null !default; +$app-header-primary-minimize-box-shadow-dark: null !default; +$app-header-primary-minimize-border-top: null !default; +$app-header-primary-minimize-border-top-dark: null !default; +$app-header-primary-minimize-border-bottom: null !default; +$app-header-primary-minimize-border-bottom-dark: null !default; + +$app-header-primary-sticky-height: 70px !default; +$app-header-primary-sticky-height-mobile: 60px !default; +$app-header-primary-sticky-z-index: 100 !default; +$app-header-primary-sticky-bg-color: null !default; +$app-header-primary-sticky-bg-color-dark: null !default; +$app-header-primary-sticky-box-shadow: null !default; +$app-header-primary-sticky-box-shadow-dark: null !default; +$app-header-primary-sticky-border-top: null !default; +$app-header-primary-sticky-border-top-dark: null !default; +$app-header-primary-sticky-border-bottom: null !default; +$app-header-primary-sticky-border-bottom-dark: null !default; + +// Header secondary +$app-header-secondary-base-transition: none !default; +$app-header-secondary-base-height: 70px !default; +$app-header-secondary-base-height-mobile: 60px !default; +$app-header-secondary-base-z-index: null !default; +$app-header-secondary-base-z-index-mobile: null !default; +$app-header-secondary-base-bg-color: null !default; +$app-header-secondary-base-bg-color-dark: null !default; +$app-header-secondary-base-box-shadow: null !default; +$app-header-secondary-base-box-shadow-dark: null !default; +$app-header-secondary-base-border-top: null !default; +$app-header-secondary-base-border-top-dark: null !default; +$app-header-secondary-base-border-bottom: null !default; +$app-header-secondary-base-border-bottom-dark: null !default; + +$app-header-secondary-fixed-z-index: 100 !default; + +$app-header-secondary-minimize-height: 70px !default; +$app-header-secondary-minimize-height-mobile: 60px !default; +$app-header-secondary-minimize-z-index: 100 !default; +$app-header-secondary-minimize-bg-color: null !default; +$app-header-secondary-minimize-bg-color-dark: null !default; +$app-header-secondary-minimize-box-shadow: null !default; +$app-header-secondary-minimize-box-shadow-dark: null !default; +$app-header-secondary-minimize-border-top: null !default; +$app-header-secondary-minimize-border-top-dark: null !default; +$app-header-secondary-minimize-border-bottom: null !default; +$app-header-secondary-minimize-border-bottom-dark: null !default; + +$app-header-secondary-sticky-height: 70px !default; +$app-header-secondary-sticky-height-mobile: 60px !default; +$app-header-secondary-sticky-z-index: 100 !default; +$app-header-secondary-sticky-bg-color: null !default; +$app-header-secondary-sticky-bg-color-dark: null !default; +$app-header-secondary-sticky-box-shadow: null !default; +$app-header-secondary-sticky-box-shadow-dark: null !default; +$app-header-secondary-sticky-border-top: null !default; +$app-header-secondary-sticky-border-top-dark: null !default; +$app-header-secondary-sticky-border-bottom: null !default; +$app-header-secondary-sticky-border-bottom-dark: null !default; + +// Header tertiary +$app-header-tertiary-base-transition: none !default; +$app-header-tertiary-base-height: 70px !default; +$app-header-tertiary-base-height-mobile: 70px !default; +$app-header-tertiary-base-z-index: null !default; +$app-header-tertiary-base-z-index-mobile: null !default; +$app-header-tertiary-base-bg-color: null !default; +$app-header-tertiary-base-bg-color-dark: null !default; +$app-header-tertiary-base-box-shadow: null !default; +$app-header-tertiary-base-box-shadow-dark: null !default; +$app-header-tertiary-base-border-top: null !default; +$app-header-tertiary-base-border-top-dark: null !default; +$app-header-tertiary-base-border-bottom: null !default; +$app-header-tertiary-base-border-bottom-dark: null !default; + +$app-header-tertiary-fixed-z-index: 100 !default; + +$app-header-tertiary-minimize-height: 70px !default; +$app-header-tertiary-minimize-height-mobile: 60px !default; +$app-header-tertiary-minimize-z-index: 100 !default; +$app-header-tertiary-minimize-bg-color: null !default; +$app-header-tertiary-minimize-bg-color-dark: null !default; +$app-header-tertiary-minimize-box-shadow: null !default; +$app-header-tertiary-minimize-box-shadow-dark: null !default; +$app-header-tertiary-minimize-border-top: null !default; +$app-header-tertiary-minimize-border-top-dark: null !default; +$app-header-tertiary-minimize-border-bottom: null !default; +$app-header-tertiary-minimize-border-bottom-dark: null !default; + +$app-header-tertiary-sticky-height: 70px !default; +$app-header-tertiary-sticky-height-mobile: 60px !default; +$app-header-tertiary-sticky-z-index: 100 !default; +$app-header-tertiary-sticky-bg-color: null !default; +$app-header-tertiary-sticky-bg-color-dark: null !default; +$app-header-tertiary-sticky-box-shadow: null !default; +$app-header-tertiary-sticky-box-shadow-dark: null !default; +$app-header-tertiary-sticky-border-top: null !default; +$app-header-tertiary-sticky-border-top-dark: null !default; +$app-header-tertiary-sticky-border-bottom: null !default; +$app-header-tertiary-sticky-border-bottom-dark: null !default; + +// Toolbar base +$app-toolbar-base-transition: none !default; +$app-toolbar-base-height: null !default; +$app-toolbar-base-height-mobile: null !default; +$app-toolbar-base-z-index: 99 !default; +$app-toolbar-base-z-index-mobile: 99 !default; +$app-toolbar-base-bg-color: null !default; +$app-toolbar-base-bg-color-dark: null !default; +$app-toolbar-base-box-shadow: null !default; +$app-toolbar-base-box-shadow-dark: null !default; +$app-toolbar-base-border-top: null !default; +$app-toolbar-base-border-top-dark: null !default; +$app-toolbar-base-border-bottom: null !default; +$app-toolbar-base-border-bottom-dark: null !default; + +// Toolbar minimize +$app-toolbar-minimize-height: 70px !default; +$app-toolbar-minimize-height-mobile: 70px !default; +$app-toolbar-minimize-z-index: 99 !default; +$app-toolbar-minimize-z-index-mobile: 99 !default; +$app-toolbar-minimize-backdrop-filter: null !default; +$app-toolbar-minimize-backdrop-filter-mobile: null !default; +$app-toolbar-minimize-bg-color: null !default; +$app-toolbar-minimize-bg-color-dark: null !default; +$app-toolbar-minimize-box-shadow: null !default; +$app-toolbar-minimize-box-shadow-dark: null !default; +$app-toolbar-minimize-border-top: null !default; +$app-toolbar-minimize-border-top-dark: null !default; +$app-toolbar-minimize-border-bottom: null !default; +$app-toolbar-minimize-border-bottom-dark: null !default; + +// Toolbar sticky +$app-toolbar-sticky-height: 70px !default; +$app-toolbar-sticky-height-mobile: 70px !default; +$app-toolbar-sticky-z-index: 99 !default; +$app-toolbar-sticky-z-index-mobile: 99 !default; +$app-toolbar-sticky-backdrop-filter: null !default; +$app-toolbar-sticky-backdrop-filter-mobile: null !default; +$app-toolbar-sticky-bg-color: null !default; +$app-toolbar-sticky-bg-color-dark: null !default; +$app-toolbar-sticky-box-shadow: null !default; +$app-toolbar-sticky-box-shadow-dark: null !default; +$app-toolbar-sticky-border-top: null !default; +$app-toolbar-sticky-border-top-dark: null !default; +$app-toolbar-sticky-border-bottom: null !default; +$app-toolbar-sticky-border-bottom-dark: null !default; + +// Hero +$app-hero-bg-color: null !default; +$app-hero-bg-color-dark: null !default; +$app-hero-box-shadow: null !default; +$app-hero-box-shadow-dark: null !default; +$app-hero-border-top: null !default; +$app-hero-border-top-dark: null !default; +$app-hero-border-bottom: null !default; +$app-hero-border-bottom-dark: null !default; + +// Sidebar base +$app-sidebar-base-transition: width $app-general-transition-duration $app-general-transition-timing !default; +$app-sidebar-base-width: 300px !default; +$app-sidebar-base-width-mobile: 275px !default; +$app-sidebar-base-z-index: null !default; +$app-sidebar-base-z-index-mobile: 106 !default; +$app-sidebar-base-bg-color: null !default; +$app-sidebar-base-bg-color-dark: null !default; +$app-sidebar-base-box-shadow: null !default; +$app-sidebar-base-box-shadow-dark: null !default; +$app-sidebar-base-border-start: null !default; +$app-sidebar-base-border-start-dark: null !default; +$app-sidebar-base-border-end: null !default; +$app-sidebar-base-border-end-dark: null !default; +$app-sidebar-base-gap-start: 0px !default; +$app-sidebar-base-gap-end: 0px !default; +$app-sidebar-base-gap-top: 0px !default; +$app-sidebar-base-gap-bottom: 0px !default; +$app-sidebar-base-gap-start-mobile: 0px !default; +$app-sidebar-base-gap-end-mobile: 0px !default; +$app-sidebar-base-gap-top-mobile: 0px !default; +$app-sidebar-base-gap-bottom-mobile: 0px !default; + +// Sidebar fixed +$app-sidebar-fixed-z-index: 105 !default; +$app-sidebar-fixed-left: 0 !default; +$app-sidebar-fixed-top: 0 !default; +$app-sidebar-fixed-bottom: 0 !default; + +// Sidebar sticky +$app-sidebar-sticky-top: auto !default; +$app-sidebar-sticky-bottom: auto !default; +$app-sidebar-sticky-left: auto !default; +$app-sidebar-sticky-width: 300px !default; +$app-sidebar-sticky-z-index: 105 !default; +$app-sidebar-sticky-bg-color: null !default; +$app-sidebar-sticky-bg-color-dark: null !default; +$app-sidebar-sticky-box-shadow: null !default; +$app-sidebar-sticky-box-shadow-dark: null !default; +$app-sidebar-sticky-border-start: null !default; +$app-sidebar-sticky-border-start-dark: null !default; +$app-sidebar-sticky-border-end: null !default; +$app-sidebar-sticky-border-end-dark: null !default; +$app-sidebar-sticky-gap-start: 0px !default; +$app-sidebar-sticky-gap-end: 0px !default; +$app-sidebar-sticky-gap-top: 0px !default; +$app-sidebar-sticky-gap-bottom: 0px !default; +$app-sidebar-sticky-gap-start-mobile: 0px !default; +$app-sidebar-sticky-gap-end-mobile: 0px !default; +$app-sidebar-sticky-gap-top-mobile: 0px !default; +$app-sidebar-sticky-gap-bottom-mobile: 0px !default; + +// Sidebar minimize +$app-sidebar-minimize-width: 75px !default; +$app-sidebar-minimize-width-mobile: 75px !default; +$app-sidebar-minimize-bg-color: null !default; +$app-sidebar-minimize-bg-color-dark: null !default; +$app-sidebar-minimize-box-shadow: null !default; +$app-sidebar-minimize-box-shadow-dark: null !default; +$app-sidebar-minimize-hover-box-shadow: null !default; +$app-sidebar-minimize-hover-box-shadow-dark: null !default; +$app-sidebar-minimize-border-start: null !default; +$app-sidebar-minimize-border-start-dark: null !default; +$app-sidebar-minimize-border-end: null !default; +$app-sidebar-minimize-border-end-dark: null !default; +$app-sidebar-minimize-gap-start: 0px !default; +$app-sidebar-minimize-gap-end: 0px !default; +$app-sidebar-minimize-gap-top: 0px !default; +$app-sidebar-minimize-gap-bottom: 0px !default; +$app-sidebar-minimize-gap-start-mobile: 0px !default; +$app-sidebar-minimize-gap-end-mobile: 0px !default; +$app-sidebar-minimize-gap-top-mobile: 0px !default; +$app-sidebar-minimize-gap-bottom-mobile: 0px !default; + +// Sidebar primary +$app-sidebar-primary-base-transition: none !default; +$app-sidebar-primary-base-width: 100px !default; +$app-sidebar-primary-base-width-mobile: 100px !default; +$app-sidebar-primary-base-z-index: 1 !default; +$app-sidebar-primary-base-z-index-mobile: 1 !default; +$app-sidebar-primary-base-bg-color: null !default; +$app-sidebar-primary-base-bg-color-dark: null !default; +$app-sidebar-primary-base-box-shadow: null !default; +$app-sidebar-primary-base-box-shadow-dark: null !default; +$app-sidebar-primary-base-border-start: null !default; +$app-sidebar-primary-base-border-start-dark: null !default; +$app-sidebar-primary-base-border-end: null !default; +$app-sidebar-primary-base-border-end-dark: null !default; +$app-sidebar-primary-base-gap-start: 0px !default; +$app-sidebar-primary-base-gap-end: 0px !default; +$app-sidebar-primary-base-gap-top: 0px !default; +$app-sidebar-primary-base-gap-bottom: 0px !default; +$app-sidebar-primary-base-gap-start-mobile: 0px !default; +$app-sidebar-primary-base-gap-end-mobile: 0px !default; +$app-sidebar-primary-base-gap-top-mobile: 0px !default; +$app-sidebar-primary-base-gap-bottom-mobile: 0px !default; + +$app-sidebar-primary-minimize-width: 75px !default; +$app-sidebar-primary-minimize-width-mobile: 75px !default; +$app-sidebar-primary-minimize-z-index: null !default; +$app-sidebar-primary-minimize-bg-color: null !default; +$app-sidebar-primary-minimize-bg-color-dark: null !default; +$app-sidebar-primary-minimize-box-shadow: null !default; +$app-sidebar-primary-minimize-box-shadow-dark: null !default; +$app-sidebar-primary-minimize-hover-box-shadow: null !default; +$app-sidebar-primary-minimize-hover-box-shadow-dark: null !default; +$app-sidebar-primary-minimize-border-start: null !default; +$app-sidebar-primary-minimize-border-start-dark: null !default; +$app-sidebar-primary-minimize-border-end: null !default; +$app-sidebar-primary-minimize-border-end-dark: null !default; +$app-sidebar-primary-minimize-gap-start: 0px !default; +$app-sidebar-primary-minimize-gap-end: 0px !default; +$app-sidebar-primary-minimize-gap-top: 0px !default; +$app-sidebar-primary-minimize-gap-bottom: 0px !default; +$app-sidebar-primary-minimize-gap-start-mobile: 0px !default; +$app-sidebar-primary-minimize-gap-end-mobile: 0px !default; +$app-sidebar-primary-minimize-gap-top-mobile: 0px !default; +$app-sidebar-primary-minimize-gap-bottom-mobile: 0px !default; + + +// Sidebar secondary +$app-sidebar-secondary-base-transition: width $app-general-transition-duration $app-general-transition-timing, margin $app-general-transition-duration $app-general-transition-timing !default; +$app-sidebar-secondary-base-z-index: null !default; +$app-sidebar-secondary-base-z-index-mobile: null !default; +$app-sidebar-secondary-base-bg-color: null !default; +$app-sidebar-secondary-base-bg-color-dark: null !default; +$app-sidebar-secondary-base-box-shadow: null !default; +$app-sidebar-secondary-base-box-shadow-dark: null !default; +$app-sidebar-secondary-base-border-start: null !default; +$app-sidebar-secondary-base-border-start-dark: null !default; +$app-sidebar-secondary-base-border-end: null !default; +$app-sidebar-secondary-base-border-end-dark: null !default; +$app-sidebar-secondary-base-gap-start: 0px !default; +$app-sidebar-secondary-base-gap-end: 0px !default; +$app-sidebar-secondary-base-gap-top: 0px !default; +$app-sidebar-secondary-base-gap-bottom: 0px !default; +$app-sidebar-secondary-base-gap-start-mobile: 0px !default; +$app-sidebar-secondary-base-gap-end-mobile: 0px !default; +$app-sidebar-secondary-base-gap-top-mobile: 0px !default; +$app-sidebar-secondary-base-gap-bottom-mobile: 0px !default; + +$app-sidebar-secondary-minimize-width: 75px !default; +$app-sidebar-secondary-minimize-width-mobile: 75px !default; +$app-sidebar-secondary-minimize-z-index: null !default; +$app-sidebar-secondary-minimize-bg-color: null !default; +$app-sidebar-secondary-minimize-bg-color-dark: null !default; +$app-sidebar-secondary-minimize-box-shadow: null !default; +$app-sidebar-secondary-minimize-box-shadow-dark: null !default; +$app-sidebar-secondary-minimize-hover-box-shadow: null !default; +$app-sidebar-secondary-minimize-hover-box-shadow-dark: null !default; +$app-sidebar-secondary-minimize-border-start: null !default; +$app-sidebar-secondary-minimize-border-start-dark: null !default; +$app-sidebar-secondary-minimize-border-end: null !default; +$app-sidebar-secondary-minimize-border-end-dark: null !default; +$app-sidebar-secondary-minimize-gap-start: 0px !default; +$app-sidebar-secondary-minimize-gap-end: 0px !default; +$app-sidebar-secondary-minimize-gap-top: 0px !default; +$app-sidebar-secondary-minimize-gap-bottom: 0px !default; +$app-sidebar-secondary-minimize-gap-start-mobile: 0px !default; +$app-sidebar-secondary-minimize-gap-end-mobile: 0px !default; +$app-sidebar-secondary-minimize-gap-top-mobile: 0px !default; +$app-sidebar-secondary-minimize-gap-bottom-mobile: 0px !default; + +// Sidebar panel base +$app-sidebar-panel-base-transition: none !default; +$app-sidebar-panel-base-width: 300px !default; +$app-sidebar-panel-base-width-mobile: 300px !default; +$app-sidebar-panel-base-z-index: null !default; +$app-sidebar-panel-base-z-index-mobile: null !default; +$app-sidebar-panel-base-bg-color: null !default; +$app-sidebar-panel-base-bg-color-dark: null !default; +$app-sidebar-panel-base-bg-color-mobile: null !default; +$app-sidebar-panel-base-bg-color-mobile-dark: null !default; +$app-sidebar-panel-base-box-shadow: null !default; +$app-sidebar-panel-base-box-shadow-dark: null !default; +$app-sidebar-panel-base-box-shadow-mobile: null !default; +$app-sidebar-panel-base-box-shadow-mobile-dark: null !default; +$app-sidebar-panel-base-border-start: null !default; +$app-sidebar-panel-base-border-start-dark: null !default; +$app-sidebar-panel-base-border-start-mobile: null !default; +$app-sidebar-panel-base-border-start-mobile-dark: null !default; +$app-sidebar-panel-base-border-end: null !default; +$app-sidebar-panel-base-border-end-dark: null !default; +$app-sidebar-panel-base-border-end-mobile: null !default; +$app-sidebar-panel-base-border-end-mobile-dark: null !default; +$app-sidebar-panel-base-gap-start: 0px !default; +$app-sidebar-panel-base-gap-end: 0px !default; +$app-sidebar-panel-base-gap-top: 0px !default; +$app-sidebar-panel-base-gap-bottom: 0px !default; +$app-sidebar-panel-base-gap-start-mobile: 0px !default; +$app-sidebar-panel-base-gap-end-mobile: 0px !default; +$app-sidebar-panel-base-gap-top-mobile: 0px !default; +$app-sidebar-panel-base-gap-bottom-mobile: 0px !default; + +// Sidebar panel fixed +$app-sidebar-panel-fixed-z-index: 104 !default; +$app-sidebar-panel-fixed-z-index-mobile: 105 !default; + +// Sidebar panel sticky +$app-sidebar-panel-sticky-top: auto !default; +$app-sidebar-panel-sticky-bottom: auto !default; +$app-sidebar-panel-sticky-width: 300px !default; +$app-sidebar-panel-sticky-z-index: 104 !default; +$app-sidebar-panel-sticky-bg-color: null !default; +$app-sidebar-panel-sticky-bg-color-dark: null !default; +$app-sidebar-panel-sticky-box-shadow: null !default; +$app-sidebar-panel-sticky-box-shadow-dark: null !default; +$app-sidebar-panel-sticky-border-start: null !default; +$app-sidebar-panel-sticky-border-start-dark: null !default; +$app-sidebar-panel-sticky-border-end: null !default; +$app-sidebar-panel-sticky-border-end-dark: null !default; +$app-sidebar-panel-sticky-gap-start: 0px !default; +$app-sidebar-panel-sticky-gap-end: 0px !default; +$app-sidebar-panel-sticky-gap-top: 0px !default; +$app-sidebar-panel-sticky-gap-bottom: 0px !default; +$app-sidebar-panel-sticky-gap-start-mobile: 0px !default; +$app-sidebar-panel-sticky-gap-end-mobile: 0px !default; +$app-sidebar-panel-sticky-gap-top-mobile: 0px !default; +$app-sidebar-panel-sticky-gap-bottom-mobile: 0px !default; + +// Sidebar panel minimize +$app-sidebar-panel-minimize-width: 75px !default; +$app-sidebar-panel-minimize-width-mobile: 75px !default; +$app-sidebar-panel-minimize-bg-color: null !default; +$app-sidebar-panel-minimize-bg-color-dark: null !default; +$app-sidebar-panel-minimize-bg-color-mobile: null !default; +$app-sidebar-panel-minimize-bg-color-mobile-dark: null !default; +$app-sidebar-panel-minimize-box-shadow: null !default; +$app-sidebar-panel-minimize-box-shadow-dark: null !default; +$app-sidebar-panel-minimize-box-shadow-mobile: null !default; +$app-sidebar-panel-minimize-box-shadow-mobile-dark: null !default; +$app-sidebar-panel-minimize-hover-box-shadow: null !default; +$app-sidebar-panel-minimize-hover-box-shadow-dark: null !default; +$app-sidebar-panel-minimize-hover-box-shadow-mobile: null !default; +$app-sidebar-panel-minimize-hover-box-shadow-mobile-dark: null !default; +$app-sidebar-panel-minimize-border-start: null !default; +$app-sidebar-panel-minimize-border-start-dark: null !default; +$app-sidebar-panel-minimize-border-start-mobile: null !default; +$app-sidebar-panel-minimize-border-start-mobile-dark: null !default; +$app-sidebar-panel-minimize-border-end: null !default; +$app-sidebar-panel-minimize-border-end-dark: null !default; +$app-sidebar-panel-minimize-border-end-mobile: null !default; +$app-sidebar-panel-minimize-border-end-mobile-dark: null !default; +$app-sidebar-panel-minimize-gap-start: 0px !default; +$app-sidebar-panel-minimize-gap-end: 0px !default; +$app-sidebar-panel-minimize-gap-top: 0px !default; +$app-sidebar-panel-minimize-gap-bottom: 0px !default; +$app-sidebar-panel-minimize-gap-start-mobile: 0px !default; +$app-sidebar-panel-minimize-gap-end-mobile: 0px !default; +$app-sidebar-panel-minimize-gap-top-mobile: 0px !default; +$app-sidebar-panel-minimize-gap-bottom-mobile: 0px !default; + +// Aside base +$app-aside-base-transition: none; +$app-aside-base-width: 300px !default; +$app-aside-base-width-mobile: 275px !default; +$app-aside-base-z-index: null !default; +$app-aside-base-z-index-mobile: 106 !default; +$app-aside-base-bg-color: null !default; +$app-aside-base-bg-color-dark: null !default; +$app-aside-base-box-shadow: null !default; +$app-aside-base-box-shadow-dark: null !default; +$app-aside-base-gap-start: 0px !default; +$app-aside-base-gap-end: 0px !default; +$app-aside-base-gap-top: 0px !default; +$app-aside-base-gap-bottom: 0px !default; +$app-aside-base-gap-start-mobile: 0px !default; +$app-aside-base-gap-end-mobile: 0px !default; +$app-aside-base-gap-top-mobile: 0px !default; +$app-aside-base-gap-bottom-mobile: 0px !default; + +// Aside fixed +$app-aside-fixed-z-index: 99 !default; +$app-aside-fixed-right: 0 !default; +$app-aside-fixed-top: 0 !default; +$app-aside-fixed-bottom: 0 !default; + +// Aside sticky +$app-aside-sticky-top: auto !default; +$app-aside-sticky-bottom: auto !default; +$app-aside-sticky-left: auto !default; +$app-aside-sticky-width: 300px !default; +$app-aside-sticky-z-index: 99 !default; +$app-aside-sticky-bg-color: null !default; +$app-aside-sticky-bg-color-dark: null !default; +$app-aside-sticky-box-shadow: null !default; +$app-aside-sticky-box-shadow-dark: null !default; +$app-aside-sticky-gap-start: 0px !default; +$app-aside-sticky-gap-end: 0px !default; +$app-aside-sticky-gap-top: 0px !default; +$app-aside-sticky-gap-bottom: 0px !default; +$app-aside-sticky-gap-start-mobile: 0px !default; +$app-aside-sticky-gap-end-mobile: 0px !default; +$app-aside-sticky-gap-top-mobile: 0px !default; +$app-aside-sticky-gap-bottom-mobile: 0px !default; + +// Aside minimize +$app-aside-minimize-width: 75px !default; +$app-aside-minimize-width-mobile: 75px !default; +$app-aside-minimize-bg-color: null !default; +$app-aside-minimize-bg-color-dark: null !default; +$app-aside-minimize-bg-color-mobile: null !default; +$app-aside-minimize-bg-color-mobile-dark: null !default; +$app-aside-minimize-box-shadow: null !default; +$app-aside-minimize-box-shadow-dark: null !default; +$app-aside-minimize-box-shadow-mobile: null !default; +$app-aside-minimize-box-shadow-mobile-dark: null !default; +$app-aside-minimize-hover-box-shadow: null !default; +$app-aside-minimize-hover-box-shadow-dark: null !default; +$app-aside-minimize-border-start: null !default; +$app-aside-minimize-border-start-dark: null !default; +$app-aside-minimize-border-end: null !default; +$app-aside-minimize-border-end-dark: null !default; +$app-aside-minimize-gap-start: 0px !default; +$app-aside-minimize-gap-end: 0px !default; +$app-aside-minimize-gap-top: 0px !default; +$app-aside-minimize-gap-bottom: 0px !default; +$app-aside-minimize-gap-start-mobile: 0px !default; +$app-aside-minimize-gap-end-mobile: 0px !default; +$app-aside-minimize-gap-top-mobile: 0px !default; +$app-aside-minimize-gap-bottom-mobile: 0px !default; + +// Footer +$app-footer-transition: left $app-general-transition-duration $app-general-transition-timing, right $app-general-transition-duration $app-general-transition-timing; +$app-footer-height: auto !default; +$app-footer-height-mobile: auto !default; +$app-footer-z-index: null !default; +$app-footer-z-index-mobile: null !default; +$app-footer-bg-color: null !default; +$app-footer-bg-color-dark: null !default; +$app-footer-box-shadow: null !default; +$app-footer-box-shadow-dark: null !default; +$app-footer-border-top: null !default; +$app-footer-border-top-dark: null !default; + +// Footer fixed +$app-footer-fixed-z-index: 100 !default; +$app-footer-fixed-z-index-mobile: 100 !default; + +// Layout Builder +$app-layout-builder-toggle-z-index: 105 !default; +$app-layout-builder-toggle-bottom: 40px !default; +$app-layout-builder-toggle-bottom-mobile: 15px !default; +$app-layout-builder-toggle-end: 40px !default; +$app-layout-builder-toggle-end-mobile: 15px !default; \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/_wrapper.scss b/src/_metronic/assets/sass/core/layout/base/_wrapper.scss new file mode 100644 index 0000000..bcf24de --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/_wrapper.scss @@ -0,0 +1,100 @@ +// +// Wrapper +// + +// General mode +.app-wrapper { + display: flex; +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Integration + .app-wrapper { + transition: $app-wrapper-transition; + + // Header + [data-kt-app-header-sticky="on"] & { + margin-top: var(--#{$prefix}app-header-height-actual); + } + + [data-kt-app-header-fixed="true"] & { + margin-top: var(--#{$prefix}app-header-height); + } + + // Toolbar + [data-kt-app-toolbar-sticky="on"] & { + margin-top: var(--#{$prefix}app-toolbar-height); + } + + [data-kt-app-header-fixed="true"][data-kt-app-toolbar-sticky="on"] & { + margin-top: calc(var(--#{$prefix}app-header-height-actual) + var(--#{$prefix}app-toolbar-height-actual)); + } + + [data-kt-app-header-fixed="true"][data-kt-app-toolbar-fixed="true"] & { + margin-top: calc(var(--#{$prefix}app-header-height) + var(--#{$prefix}app-toolbar-height)); + } + + // Sidebar + [data-kt-app-sidebar-fixed="true"] & { + margin-left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + ); + } + + // Sidebar Panel + [data-kt-app-sidebar-panel-fixed="true"] & { + margin-left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + + var(--#{$prefix}app-sidebar-panel-width) + + var(--#{$prefix}app-sidebar-panel-gap-start, 0px) + + var(--#{$prefix}app-sidebar-panel-gap-end, 0px) + ); + } + + // Aside + [data-kt-app-aside-fixed="true"] & { + margin-right: calc( + var(--#{$prefix}app-aside-width) + + var(--#{$prefix}app-aside-gap-start, 0px) + + var(--#{$prefix}app-aside-gap-end, 0px) + ); + } + + // Footer + [data-kt-app-footer-fixed="true"] & { + margin-bottom: var(--#{$prefix}app-footer-height); + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Integration + .app-wrapper { + transition: $app-wrapper-transition; + + // Header + [data-kt-app-header-sticky="on"] & { + margin-top: var(--#{$prefix}app-header-height-actual); + } + + [data-kt-app-header-fixed-mobile="true"] & { + margin-top: var(--#{$prefix}app-header-height); + } + + // Toolbar + [data-kt-app-header-fixed-mobile="true"][data-kt-app-toolbar-sticky="on"] & { + margin-top: calc(var(--#{$prefix}app-header-height-actual) + var(--#{$prefix}app-toolbar-height-actual)); + } + + // Footer + [data-kt-app-footer-fixed-mobile="true"] & { + margin-bottom: var(--#{$prefix}app-footer-height); + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/aside/_aside.scss b/src/_metronic/assets/sass/core/layout/base/aside/_aside.scss new file mode 100644 index 0000000..61eab75 --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/aside/_aside.scss @@ -0,0 +1,275 @@ +// +// Aside +// + +// General mode +.app-aside { + transition: $app-aside-base-transition; + background-color: var(--#{$prefix}app-aside-base-bg-color); + box-shadow: var(--#{$prefix}app-aside-base-box-shadow); +} + +// Utilities +.app-aside-minimize-d-flex, +.app-aside-sticky-d-flex, +.app-aside-collapse-d-flex, +.app-aside-minimize-mobile-d-flex, +.app-aside-collapse-mobile-d-flex { + display: none; +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-aside { + display: flex; + flex-shrink: 0; + width: var(--#{$prefix}app-aside-width); + @include property( z-index, $app-aside-base-z-index); + @include property( margin-left, $app-aside-base-gap-start); + @include property( margin-right, $app-aside-base-gap-end); + @include property( margin-top, $app-aside-base-gap-top); + @include property( margin-bottom, $app-aside-base-gap-bottom); + } + + // Vars + :root { + --#{$prefix}app-aside-width: #{$app-aside-base-width}; + --#{$prefix}app-aside-width-actual: #{$app-aside-base-width}; + --#{$prefix}app-aside-gap-start: #{$app-aside-base-gap-start}; + --#{$prefix}app-aside-gap-end: #{$app-aside-base-gap-end}; + --#{$prefix}app-aside-gap-top: #{$app-aside-base-gap-top}; + --#{$prefix}app-aside-gap-bottom: #{$app-aside-base-gap-bottom}; + } + + [data-kt-app-aside-stacked="true"] { + --#{$prefix}app-aside-width: calc(var(--#{$prefix}app-aside-primary-width) + var(--#{$prefix}app-aside-secondary-width)); + } + + [data-kt-app-aside-minimize="on"] { + --#{$prefix}app-aside-width: #{$app-aside-minimize-width}; + --#{$prefix}app-aside-gap-start: #{$app-aside-minimize-gap-start}; + --#{$prefix}app-aside-gap-end: #{$app-aside-minimize-gap-end}; + --#{$prefix}app-aside-gap-top: #{$app-aside-minimize-gap-top}; + --#{$prefix}app-aside-gap-bottom: #{$app-aside-minimize-gap-bottom}; + } + + [data-kt-app-aside-sticky="on"] { + --#{$prefix}app-aside-width: #{$app-aside-sticky-width}; + --#{$prefix}app-aside-gap-start: #{$app-aside-sticky-gap-start}; + --#{$prefix}app-aside-gap-end: #{$app-aside-sticky-gap-end}; + --#{$prefix}app-aside-gap-top: #{$app-aside-sticky-gap-top}; + --#{$prefix}app-aside-gap-bottom: #{$app-aside-sticky-gap-bottom}; + } + + [data-kt-app-aside-collapse="on"] { + --#{$prefix}app-aside-width: 0px; + } + + // States + .app-aside { + [data-kt-app-aside-static="true"] & { + position: relative; + } + + [data-kt-app-aside-offcanvas="true"] & { + display: none; + } + + [data-kt-app-aside-fixed="true"] & { + position: fixed; + @include property( z-index, $app-aside-fixed-z-index); + @include property( top, $app-aside-fixed-top); + @include property( bottom, $app-aside-fixed-bottom); + @include property( right, $app-aside-fixed-right); + } + + [data-kt-app-aside-stacked="true"] & { + align-items: stretch; + } + + [data-kt-app-aside-sticky="on"] & { + position: fixed; + transition: $app-aside-base-transition; + + box-shadow: var(--#{$prefix}app-aside-sticky-box-shadow); + border-left: var(--#{$prefix}aside-sticky-border-start); + border-right: var(--#{$prefix}app-aside-sticky-border-end); + + @include property( top, $app-aside-sticky-top); + @include property( bottom, $app-aside-sticky-bottom); + @include property( left, $app-aside-sticky-left); + @include property( z-index, $app-aside-sticky-z-index); + @include property( margin-left, $app-aside-sticky-gap-start); + @include property( margin-right, $app-aside-sticky-gap-end); + @include property( margin-top, $app-aside-sticky-gap-top); + @include property( margin-bottom, $app-aside-sticky-gap-bottom); + } + + [data-kt-app-aside-minimize="on"] & { + transition: $app-aside-base-transition; + + //background-color: var(--#{$prefix}app-aside-minimize-bg-color); + //box-shadow: var(--#{$prefix}app-aside-minimize-box-shadow); + //border-start: var(--#{$prefix}app-aside-minimize-border-start); + //border-end: var(--#{$prefix}app-aside-minimize-border-end); + + @include property( margin-left, $app-aside-minimize-gap-start); + @include property( margin-right, $app-aside-minimize-gap-end); + @include property( margin-top, $app-aside-minimize-gap-top); + @include property( margin-bottom, $app-aside-minimize-gap-bottom); + } + + [data-kt-app-aside-hoverable="true"] & { + .app-aside-wrapper { + width: var(--#{$prefix}app-aside-width-actual); + } + } + + [data-kt-app-aside-hoverable="true"][data-kt-app-aside-minimize="on"] &:hover:not(.animating) { + transition: $app-aside-base-transition; + width: var(--#{$prefix}app-aside-width-actual); + box-shadow: var(--#{$prefix}app-aside-minimize-hover-box-shadow); + } + + [data-kt-app-aside-collapse="on"] & { + transition: $app-aside-base-transition; + width: var(--#{$prefix}app-aside-width-actual); + margin-right: calc( -1 * var(--#{$prefix}app-aside-width-actual)); + } + } + + // Utilities + [data-kt-app-aside-minimize="on"] { + .app-aside-minimize-d-none { + display: none !important; + } + + .app-aside-minimize-d-flex { + display: flex !important; + } + } + + [data-kt-app-aside-sticky="on"] { + .app-aside-sticky-d-none { + display: none !important; + } + + .app-aside-sticky-d-flex { + display: flex !important; + } + } + + [data-kt-app-aside-collapse="on"] { + .app-aside-collapse-d-none { + display: none !important; + } + + .app-aside-collapse-d-flex { + display: flex !important; + } + } + + // Integration + .app-aside { + // Header + [data-kt-app-aside-fixed="true"][data-kt-app-header-fixed="true"]:not([data-kt-app-aside-push-header="true"]) & { + top: var(--#{$prefix}app-header-height); + } + + // Toolbar + [data-kt-app-aside-fixed="true"][data-kt-app-header-fixed="true"][data-kt-app-toolbar-fixed="true"]:not([data-kt-app-aside-push-toolbar="true"]) & { + top: calc(var(--#{$prefix}app-header-height) + var(--#{$prefix}app-toolbar-height, 0px)); + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-aside { + display: none; + width: var(--#{$prefix}app-aside-width); + @include property( z-index, $app-aside-base-z-index-mobile); + @include property( margin-left, $app-aside-base-gap-start-mobile); + @include property( margin-right, $app-aside-base-gap-end-mobile); + @include property( margin-top, $app-aside-base-gap-top-mobile); + @include property( margin-bottom, $app-aside-base-gap-bottom-mobile); + } + + // Vars + :root { + --#{$prefix}app-aside-width: #{$app-aside-base-width-mobile}; + --#{$prefix}app-aside-width-actual: #{$app-aside-base-width-mobile}; + --#{$prefix}app-aside-gap-start: #{$app-aside-base-gap-start-mobile}; + --#{$prefix}app-aside-gap-end: #{$app-aside-base-gap-end-mobile}; + --#{$prefix}app-aside-gap-top: #{$app-aside-base-gap-top-mobile}; + --#{$prefix}app-aside-gap-bottom: #{$app-aside-base-gap-bottom-mobile}; + } + + [data-kt-app-aside-minimize-mobile="on"] { + --#{$prefix}app-aside-width: #{$app-aside-minimize-width-mobile}; + --#{$prefix}app-aside-gap-start: #{$app-aside-minimize-gap-start-mobile}; + --#{$prefix}app-aside-gap-end: #{$app-aside-minimize-gap-end-mobile}; + --#{$prefix}app-aside-gap-top: #{$app-aside-minimize-gap-top-mobile}; + --#{$prefix}app-aside-gap-bottom: #{$app-aside-minimize-gap-bottom-mobile}; + } + + [data-kt-app-aside-collapse-mobile="on"] { + --#{$prefix}app-aside-width: 0px; + } + + // States + .app-aside { + [data-kt-app-aside-stacked="true"] & { + align-items: stretch; + } + + [data-kt-app-aside-minimize-mobile="on"] & { + transition: $app-aside-base-transition; + @include property( margin-left, $app-aside-minimize-gap-start-mobile); + @include property( margin-right, $app-aside-minimize-gap-end-mobile); + @include property( margin-top, $app-aside-minimize-gap-top-mobile); + @include property( margin-bottom, $app-aside-minimize-gap-bottom-mobile); + } + + [data-kt-app-aside-hoverable-mobile="true"] & { + .app-aside-wrapper { + width: var(--#{$prefix}app-aside-width-actual); + } + } + + [data-kt-app-aside-hoverable-mobile="true"][data-kt-app-aside-minimize-mobile="on"] &:hover:not(.animating) { + transition: $app-aside-base-transition; + width: var(--#{$prefix}app-aside-width-actual); + box-shadow: var(--#{$prefix}app-aside-minimize-hover-box-shadow-mobile); + } + + [data-kt-app-aside-collapse-mobile="on"] & { + transition: $app-aside-base-transition; + width: var(--#{$prefix}app-aside-width-actual); + margin-right: calc( -1 * var(--#{$prefix}app-aside-width-actual)); + } + } + + // Utilities + [data-kt-app-aside-minimize-mobile="on"] { + .app-aside-minimize-mobile-d-none { + display: none !important; + } + + .app-aside-minimize-mobile-d-flex { + display: flex !important; + } + } + + [data-kt-app-aside-collapse-mobile="on"] { + .app-aside-collapse-mobile-d-none { + display: none !important; + } + + .app-aside-collapse-mobile-d-flex { + display: flex !important; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/header/_header-primary.scss b/src/_metronic/assets/sass/core/layout/base/header/_header-primary.scss new file mode 100644 index 0000000..245554f --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/header/_header-primary.scss @@ -0,0 +1,135 @@ +// +// Header primary +// + +// General mode +.app-header-primary { + transition: $app-header-primary-base-transition; + display: flex; + align-items: stretch; +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-header-primary { + @include property( z-index, $app-header-primary-base-z-index); + background-color: var(--#{$prefix}app-header-primary-base-bg-color); + box-shadow: var(--#{$prefix}app-header-primary-base-box-shadow); + border-bottom: var(--#{$prefix}app-header-primary-base-border-bottom); + } + + // Vars + [data-kt-app-header-primary-enabled="true"] { + --#{$prefix}app-header-primary-height: #{$app-header-primary-base-height}; + } + + [data-kt-app-header-primary-enabled="true"][data-kt-app-header-sticky="on"] { + --#{$prefix}app-header-primary-height: #{$app-header-primary-sticky-height}; + } + + [data-kt-app-header-primary-enabled="true"][data-kt-app-header-minimize="on"] { + --#{$prefix}app-header-primary-height: #{$app-header-primary-minimize-height}; + } + + [data-kt-app-header-primary-enabled="true"][data-kt-app-header-sticky="on"][data-kt-app-header-primary-sticky-hide="true"] { + --#{$prefix}app-header-primary-height: 0; + } + + // States + .app-header-primary { + height: var(--#{$prefix}app-header-primary-height); + + [data-kt-app-header-primary-fixed="true"] & { + @include property( z-index, $app-header-primary-fixed-z-index); + position: fixed; + left: 0; + right: 0; + top: 0; + } + + [data-kt-app-header-primary-static="true"] & { + position: relative; + } + + [data-kt-app-header-primary-sticky="on"] & { + position: fixed; + left: 0; + right: 0; + top: 0; + @include property( height, $app-header-primary-sticky-height); + @include property( z-index, $app-header-primary-sticky-z-index); + + background-color: var(--#{$prefix}app-header-primary-sticky-bg-color); + box-shadow: var(--#{$prefix}app-header-primary-sticky-box-shadow); + border-bottom: var(--#{$prefix}app-header-primary-sticky-border-bottom); + } + + [data-kt-app-header-primary-minimize="on"] & { + transition: $app-header-primary-base-transition; + @include property( height, $app-header-primary-minimize-height); + @include property( z-index, $app-header-primary-minimize-z-index); + + background-color: var(--#{$prefix}app-header-primary-minimize-bg-color); + box-shadow: var(--#{$prefix}app-header-primary-minimize-box-shadow); + border-bottom: var(--#{$prefix}app-header-primary-minimize-border-bottom); + } + + [data-kt-app-header-sticky="on"][data-kt-app-header-primary-sticky-hide="true"] & { + display: none !important; + } + } + + // Integration + .app-header-primary { + // Sidebar + [data-kt-app-header-primary-enabled="true"][data-kt-app-sidebar-fixed="true"][data-kt-app-sidebar-push-header="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + ); + } + + // Sidebar Panel + [data-kt-app-header-primary-enabled="true"][data-kt-app-sidebar-panel-fixed="true"][data-kt-app-sidebar-panel-push-header="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + + var(--#{$prefix}app-sidebar-panel-width) + + var(--#{$prefix}app-sidebar-panel-gap-start, 0px) + + var(--#{$prefix}app-sidebar-panel-gap-end, 0px) + ); + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-header .app-header-primary { + flex-grow: 1; + @include property( z-index, $app-header-primary-base-z-index-mobile); + height: var(--#{$prefix}app-header-primary-height); + border-bottom: var(--#{$prefix}app-header-primary-base-border-bottom); + box-shadow: var(--#{$prefix}app-header-primary-base-box-shadow); + } + + .app-header-primary { + background-color: var(--#{$prefix}app-header-primary-base-bg-color); + } + + // Vars + [data-kt-app-header-primary-enabled="true"] { + --#{$prefix}app-header-primary-height: #{$app-header-primary-base-height-mobile}; + } + + [data-kt-app-header-primary-enabled="true"][data-kt-app-header-sticky="on"] { + --#{$prefix}app-header-primary-height: #{$app-header-primary-sticky-height-mobile}; + } + + [data-kt-app-header-primary-enabled="true"][data-kt-app-header-minimize="on"] { + --#{$prefix}app-header-primary-height: #{$app-header-primary-minimize-height-mobile}; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/header/_header-secondary.scss b/src/_metronic/assets/sass/core/layout/base/header/_header-secondary.scss new file mode 100644 index 0000000..d2802ed --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/header/_header-secondary.scss @@ -0,0 +1,139 @@ +// +// Header secondary +// + +// General mode +.app-header-secondary { + transition: $app-header-secondary-base-transition; + display: flex; + align-items: stretch; +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-header-secondary { + @include property( z-index, $app-header-secondary-base-z-index); + + background-color: var(--#{$prefix}app-header-secondary-base-bg-color); + box-shadow: var(--#{$prefix}app-header-secondary-base-box-shadow); + border-top: var(--#{$prefix}app-header-secondary-base-border-top); + border-bottom: var(--#{$prefix}app-header-secondary-base-border-bottom); + } + + // Vars + [data-kt-app-header-secondary-enabled="true"] { + --#{$prefix}app-header-secondary-height: #{$app-header-secondary-base-height}; + } + + [data-kt-app-header-secondary-enabled="true"][data-kt-app-header-sticky="on"] { + --#{$prefix}app-header-secondary-height: #{$app-header-secondary-sticky-height}; + } + + [data-kt-app-header-secondary-enabled="true"][data-kt-app-header-minimize="on"] { + --#{$prefix}app-header-secondary-height: #{$app-header-secondary-minimize-height}; + } + + [data-kt-app-header-secondary-enabled="true"][data-kt-app-header-sticky="on"][data-kt-app-header-secondary-sticky-hide="true"] { + --#{$prefix}app-header-secondary-height: 0; + } + + // States + .app-header-secondary { + height: var(--#{$prefix}app-header-secondary-height); + + [data-kt-app-header-secondary-fixed="true"] & { + @include property( z-index, $app-header-secondary-fixed-z-index); + position: fixed; + left: 0; + right: 0; + top: 0; + } + + [data-kt-app-header-secondary-static="true"] & { + position: static; + } + + [data-kt-app-header-secondary-sticky="on"] & { + transition: $app-header-secondary-base-transition; + position: fixed; + left: 0; + right: 0; + top: 0; + @include property( height, $app-header-secondary-sticky-height); + @include property( z-index, $app-header-secondary-sticky-z-index); + + background-color: var(--#{$prefix}app-header-secondary-sticky-bg-color); + box-shadow: var(--#{$prefix}app-header-secondary-sticky-box-shadow); + border-bottom: var(--#{$prefix}app-header-secondary-sticky-border-bottom); + } + + [data-kt-app-header-secondary-minimize="on"] & { + transition: $app-header-secondary-base-transition; + @include property( height, $app-header-secondary-minimize-height); + @include property( z-index, $app-header-secondary-minimize-z-index); + + background-color: var(--#{$prefix}app-header-secondary-minimize-bg-color); + box-shadow: var(--#{$prefix}app-header-secondary-minimize-box-shadow); + border-bottom: var(--#{$prefix}app-header-secondary-minimize-border-bottom); + } + + [data-kt-app-header-sticky="on"][data-kt-app-header-secondary-sticky-hide="true"] & { + display: none !important; + } + } + + // Integration + .app-header-secondary { + // Sidebar + [data-kt-app-header-secondary-enabled="true"][data-kt-app-sidebar-fixed="true"][data-kt-app-sidebar-push-header="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + ); + } + + // Sidebar Panel + [data-kt-app-header-secondary-enabled="true"][data-kt-app-sidebar-panel-fixed="true"][data-kt-app-sidebar-panel-push-header="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + + var(--#{$prefix}app-sidebar-panel-width) + + var(--#{$prefix}app-sidebar-panel-gap-start, 0px) + + var(--#{$prefix}app-sidebar-panel-gap-end, 0px) + ); + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-header .app-header-secondary { + flex-grow: 1; + height: var(--#{$prefix}app-header-secondary-height); + box-shadow: var(--#{$prefix}app-header-secondary-base-box-shadow); + border-top: var(--#{$prefix}app-header-secondary-base-border-top); + border-bottom: var(--#{$prefix}app-header-secondary-base-border-bottom); + @include property( z-index, $app-header-secondary-base-z-index-mobile); + } + + .app-header-secondary { + background-color: var(--#{$prefix}app-header-secondary-base-bg-color); + } + + // Vars + [data-kt-app-header-secondary-enabled="true"] { + --#{$prefix}app-header-secondary-height: #{$app-header-secondary-base-height-mobile}; + } + + [data-kt-app-header-secondary-enabled="true"][data-kt-app-header-sticky="on"] { + --#{$prefix}app-header-secondary-height: #{$app-header-secondary-sticky-height-mobile}; + } + + [data-kt-app-header-secondary-enabled="true"][data-kt-app-header-minimize="on"] { + --#{$prefix}app-header-secondary-height: #{$app-header-secondary-minimize-height-mobile}; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/header/_header-tertiary.scss b/src/_metronic/assets/sass/core/layout/base/header/_header-tertiary.scss new file mode 100644 index 0000000..afb5d35 --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/header/_header-tertiary.scss @@ -0,0 +1,138 @@ +// +// Header tertiary +// + +// General mode +.app-header-tertiary { + transition: $app-header-tertiary-base-transition; + display: flex; + align-items: stretch; +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-header-tertiary { + @include property( z-index, $app-header-tertiary-base-z-index); + + background-color: var(--#{$prefix}app-header-tertiary-base-bg-color); + box-shadow: var(--#{$prefix}app-header-tertiary-base-box-shadow); + border-top: var(--#{$prefix}app-header-tertiary-base-border-top); + border-bottom: var(--#{$prefix}app-header-tertiary-base-border-bottom); + } + + // Vars + [data-kt-app-header-tertiary-enabled="true"] { + --#{$prefix}app-header-tertiary-height: #{$app-header-tertiary-base-height}; + } + + [data-kt-app-header-tertiary-enabled="true"][data-kt-app-header-sticky="on"] { + --#{$prefix}app-header-tertiary-height: #{$app-header-tertiary-sticky-height}; + } + + [data-kt-app-header-tertiary-enabled="true"][data-kt-app-header-minimize="on"] { + --#{$prefix}app-header-tertiary-height: #{$app-header-tertiary-minimize-height}; + } + + [data-kt-app-header-tertiary-enabled="true"][data-kt-app-header-sticky="on"][data-kt-app-header-tertiary-sticky-hide="true"] { + --#{$prefix}app-header-tertiary-height: 0; + } + + // States + .app-header-tertiary { + height: var(--#{$prefix}app-header-tertiary-height); + + [data-kt-app-header-tertiary-fixed="true"] & { + @include property( z-index, $app-header-tertiary-fixed-z-index); + position: fixed; + left: 0; + right: 0; + top: 0; + } + + [data-kt-app-header-tertiary-static="true"] & { + position: static; + } + + [data-kt-app-header-tertiary-sticky="on"] & { + transition: $app-header-tertiary-base-transition; + position: fixed; + left: 0; + right: 0; + top: 0; + @include property( height, $app-header-tertiary-sticky-height); + @include property( z-index, $app-header-tertiary-sticky-z-index); + + background-color: var(--#{$prefix}app-header-tertiary-sticky-bg-color); + box-shadow: var(--#{$prefix}app-header-tertiary-sticky-box-shadow); + border-bottom: var(--#{$prefix}app-header-tertiary-sticky-border-bottom); + } + + [data-kt-app-header-tertiary-minimize="on"] & { + transition: $app-header-tertiary-base-transition; + @include property( height, $app-header-tertiary-minimize-height); + @include property( z-index, $app-header-tertiary-minimize-z-index); + + background-color: var(--#{$prefix}app-header-tertiary-minimize-bg-color); + box-shadow: var(--#{$prefix}app-header-tertiary-minimize-box-shadow); + border-bottom: var(--#{$prefix}app-header-tertiary-minimize-border-bottom); + } + + [data-kt-app-header-sticky="on"][data-kt-app-header-tertiary-sticky-hide="true"] & { + display: none !important; + } + } + + // Integration + .app-header-tertiary { + // Sidebar + [data-kt-app-header-tertiary-enabled="true"][data-kt-app-sidebar-fixed="true"][data-kt-app-sidebar-push-header="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + ); + } + + // Sidebar Panel + [data-kt-app-header-tertiary-enabled="true"][data-kt-app-sidebar-panel-fixed="true"][data-kt-app-sidebar-panel-push-header="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + + var(--#{$prefix}app-sidebar-panel-width) + + var(--#{$prefix}app-sidebar-panel-gap-start, 0px) + + var(--#{$prefix}app-sidebar-panel-gap-end, 0px) + ); + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-header .app-header-tertiary { + flex-grow: 1; + height: var(--#{$prefix}app-header-tertiary-height); + border-top: var(--#{$prefix}app-header-tertiary-base-border-top); + box-shadow: var(--#{$prefix}app-header-tertiary-base-box-shadow); + @include property( z-index, $app-header-tertiary-base-z-index-mobile); + } + + .app-header-tertiary { + background-color: var(--#{$prefix}app-header-tertiary-base-bg-color); + } + + // Vars + [data-kt-app-header-tertiary-enabled="true"] { + --#{$prefix}app-header-tertiary-height: #{$app-header-tertiary-base-height-mobile}; + } + + [data-kt-app-header-tertiary-enabled="true"][data-kt-app-header-sticky="on"] { + --#{$prefix}app-header-tertiary-height: #{$app-header-tertiary-sticky-height-mobile}; + } + + [data-kt-app-header-secondary-enabled="true"][data-kt-app-header-minimize="on"] { + --#{$prefix}app-header-tertiary-height: #{$app-header-tertiary-minimize-height-mobile}; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/header/_header.scss b/src/_metronic/assets/sass/core/layout/base/header/_header.scss new file mode 100644 index 0000000..892a2c0 --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/header/_header.scss @@ -0,0 +1,239 @@ +// +// sidebar +// + +// General mode +.app-header { + transition: $app-header-base-transition; + display: flex; + align-items: stretch; + background-color: var(--#{$prefix}app-header-base-bg-color); + box-shadow: var(--#{$prefix}app-header-base-box-shadow); + border-bottom: var(--#{$prefix}app-header-base-border-bottom); +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-header { + @include property( z-index, $app-header-base-z-index); + } + + // Vars + :root { + --#{$prefix}app-header-height: #{$app-header-base-height}; + --#{$prefix}app-header-height-actual: #{$app-header-base-height}; + } + + [data-kt-app-header-fixed="true"][data-kt-app-header-stacked="true"] { + --#{$prefix}app-header-height: calc(var(--#{$prefix}app-header-primary-height, 0px) + var(--#{$prefix}app-header-secondary-height, 0px) + var(--#{$prefix}app-header-tertiary-height, 0px)); + --#{$prefix}app-header-height-actual: calc(#{$app-header-primary-base-height} + #{$app-header-secondary-base-height} + #{$app-header-tertiary-base-height}); + } + + [data-kt-app-header-sticky="on"] { + --#{$prefix}app-header-height: #{$app-header-sticky-height}; + --#{$prefix}app-header-height-actual: #{$app-header-base-height}; + } + + [data-kt-app-header-sticky="on"][data-kt-app-header-stacked="true"] { + --#{$prefix}app-header-height: calc(var(--#{$prefix}app-header-primary-height, 0px) + var(--#{$prefix}app-header-secondary-height, 0px) + var(--#{$prefix}app-header-tertiary-height, 0px)); + --#{$prefix}app-header-height-actual: calc(#{$app-header-primary-base-height} + #{$app-header-secondary-base-height} + #{$app-header-tertiary-base-height}); + } + + [data-kt-app-header-minimize="on"] { + --#{$prefix}app-header-height: #{$app-header-minimize-height}; + } + + // States + .app-header { + height: var(--#{$prefix}app-header-height); + + [data-kt-app-header-fixed="true"] & { + @include property( z-index, $app-header-fixed-z-index); + position: fixed; + left: 0; + right: 0; + top: 0; + } + + [data-kt-app-header-static="true"] & { + position: relative; + } + + [data-kt-app-header-stacked="true"] & { + flex-direction: column; + height: calc(var(--#{$prefix}app-header-primary-height) + var(--#{$prefix}app-header-secondary-height, 0px) + var(--#{$prefix}app-header-tertiary-height, 0px)); + } + + [data-kt-app-header-sticky="on"] & { + position: fixed; + left: 0; + right: 0; + top: 0; + @include property( z-index, $app-header-sticky-z-index); + @include property( backdrop-filter, $app-header-sticky-backdrop-filter); + + background-color: var(--#{$prefix}app-header-sticky-bg-color); + box-shadow: var(--#{$prefix}app-header-sticky-box-shadow); + border-bottom: var(--#{$prefix}app-header-sticky-border-bottom); + } + + [data-kt-app-header-minimize="on"] & { + transition: $app-header-base-transition; + @include property( z-index, $app-header-minimize-z-index); + @include property( backdrop-filter, $app-header-minimize-backdrop-filter); + + background-color: var(--#{$prefix}app-header-minimize-bg-color); + box-shadow: var(--#{$prefix}app-header-minimize-box-shadow); + border-bottom: var(--#{$prefix}app-header-minimize-border-bottom); + } + + .app-header-mobile-drawer { + display: flex; + } + } + + // Integration + .app-header { + // Sidebar + [data-kt-app-header-fixed="true"][data-kt-app-sidebar-fixed="true"][data-kt-app-sidebar-push-header="true"] &, + [data-kt-app-header-fixed="true"][data-kt-app-sidebar-sticky="on"][data-kt-app-sidebar-push-header="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + ); + } + + body:not([data-kt-app-header-fixed="true"])[data-kt-app-sidebar-fixed="true"][data-kt-app-sidebar-push-header="true"] &, + body:not([data-kt-app-header-fixed="true"])[data-kt-app-sidebar-sticky="on"][data-kt-app-sidebar-push-header="true"] & { + margin-left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + ); + } + + // Sidebar Panel + [data-kt-app-header-fixed="true"][data-kt-app-sidebar-panel-fixed="true"][data-kt-app-sidebar-panel-push-header="true"] &, + [data-kt-app-header-fixed="true"][data-kt-app-sidebar-panel-sticky="on"][data-kt-app-sidebar-panel-push-header="true"] & { + left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + + var(--#{$prefix}app-sidebar-panel-width) + + var(--#{$prefix}app-sidebar-panel-gap-start, 0px) + + var(--#{$prefix}app-sidebar-panel-gap-end, 0px) + ); + } + + body:not([data-kt-app-header-fixed="true"])[data-kt-app-sidebar-panel-fixed="true"][data-kt-app-sidebar-panel-push-header="true"] &, + body:not([data-kt-app-header-fixed="true"])[data-kt-app-sidebar-panel-sticky="on"][data-kt-app-sidebar-panel-push-header="true"] & { + margin-left: calc( + var(--#{$prefix}app-sidebar-width) + + var(--#{$prefix}app-sidebar-gap-start, 0px) + + var(--#{$prefix}app-sidebar-gap-end, 0px) + + var(--#{$prefix}app-sidebar-panel-width) + + var(--#{$prefix}app-sidebar-panel-gap-start, 0px) + + var(--#{$prefix}app-sidebar-panel-gap-end, 0px) + ); + } + + // Aside + [data-kt-app-header-fixed="true"][data-kt-app-aside-fixed="true"][data-kt-app-aside-push-header="true"] &, + [data-kt-app-header-fixed="true"][data-kt-app-aside-sticky="on"][data-kt-app-aside-push-header="true"] & { + right: calc( + var(--#{$prefix}app-aside-width) + + var(--#{$prefix}app-aside-gap-start, 0px) + + var(--#{$prefix}app-aside-gap-end, 0px) + ); + } + + // Toolbar + [data-kt-app-header-fixed="true"][data-kt-app-toolbar-fixed="true"] & { + box-shadow: none; + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-header { + @include property( z-index, $app-header-base-z-index-mobile); + } + + // Vars + :root { + --#{$prefix}app-header-height: #{$app-header-base-height-mobile}; + } + + [data-kt-app-header-sticky="on"] { + --#{$prefix}app-header-height: #{$app-header-sticky-height-mobile}; + --#{$prefix}app-header-height-actual: #{$app-header-sticky-height-mobile}; + } + + [data-kt-app-header-minimize="on"] { + --#{$prefix}app-header-height: #{$app-header-minimize-height-mobile}; + --#{$prefix}app-header-height-actual: #{$app-header-minimize-height-mobile}; + } + + // States + .app-header { + height: var(--#{$prefix}app-header-height); + align-items: stretch; + + .app-header-mobile-drawer { + display: none; + } + + [data-kt-app-header-stacked="true"] & { + flex-direction: column; + height: calc(var(--#{$prefix}app-header-primary-height) + var(--#{$prefix}app-header-secondary-height, 0px) + var(--#{$prefix}app-header-tertiary-height, 0px)); + } + + [data-kt-app-header-fixed-mobile="true"] & { + @include property( z-index, $app-header-fixed-z-index-mobile); + transition: $app-header-base-transition; + position: fixed; + left: 0; + right: 0; + top: 0; + } + + [data-kt-app-header-sticky="on"] & { + position: fixed; + left: 0; + right: 0; + top: 0; + @include property( z-index, $app-header-sticky-z-index-mobile); + @include property( backdrop-filter, $app-header-sticky-backdrop-filter-mobile); + + background-color: var(--#{$prefix}app-header-sticky-bg-color); + box-shadow: var(--#{$prefix}app-header-sticky-box-shadow); + border-bottom: var(--#{$prefix}app-header-sticky-border-bottom); + } + + [data-kt-app-header-minimize="on"] & { + @include property( z-index, $app-header-minimize-z-index-mobile); + @include property( backdrop-filter, $app-header-minimize-backdrop-filter-mobile); + + transition: $app-header-base-transition; + background-color: var(--#{$prefix}app-header-minimize-bg-color); + box-shadow: var(--#{$prefix}app-header-minimize-box-shadow); + border-bottom: var(--#{$prefix}app-header-minimize-border-bottom); + } + } + + // Integration + .app-header { + // Toolbar + [data-kt-app-header-fixed-mobile="true"][data-kt-app-toolbar-fixed-mobile="true"] & { + box-shadow: none; + } + + [data-kt-app-header-fixed-mobile="true"][data-kt-app-toolbar-sticky="on"] & { + box-shadow: none; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/mixins/_layout-minimize.scss b/src/_metronic/assets/sass/core/layout/base/mixins/_layout-minimize.scss new file mode 100644 index 0000000..31b88d0 --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/mixins/_layout-minimize.scss @@ -0,0 +1,41 @@ +// +// Hoverable +// + +@mixin app-layout-minimize($class) { + // Desktop mode + @include media-breakpoint-up(lg) { + [data-kt-#{$class}-minimize="on"]:not([data-kt-#{$class}-hoverable="true"]) { + .#{$class} { + @content; + } + } + + [data-kt-#{$class}-minimize="on"][data-kt-#{$class}-hoverable="true"] { + .#{$class} { + &:not(:hover) { + @content; + } + } + } + } +} + +@mixin app-layout-minimize-mobile($class) { + // Tablet & mobile modes + @include media-breakpoint-down(lg) { + [data-kt-#{$class}-minimize-mobile="on"]:not[data-kt-#{$class}-hoverable-mobile="true"] { + .#{$class} { + @content; + } + } + + [data-kt-#{$class}-minimize-mobile="on"][data-kt-#{$class}-hoverable-mobile="true"] { + .#{$class} { + &:not(:hover) { + @content; + } + } + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/mixins/_layout-transition.scss b/src/_metronic/assets/sass/core/layout/base/mixins/_layout-transition.scss new file mode 100644 index 0000000..4e0a84d --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/mixins/_layout-transition.scss @@ -0,0 +1,7 @@ +// +// Layout Transition Mixin +// + +@mixin app-layout-transition($properties: all) { + transition: $properties $app-general-transition-duration $app-general-transition-timing !important; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar-panel.scss b/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar-panel.scss new file mode 100644 index 0000000..e03c2ce --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar-panel.scss @@ -0,0 +1,281 @@ +// +// sidebar +// + +// General mode +.app-sidebar-panel { + transition: $app-sidebar-panel-base-transition; + background-color: var(--#{$prefix}app-sidebar-panel-base-bg-color); + box-shadow: var(--#{$prefix}app-sidebar-panel-base-box-shadow); + border-left: var(--#{$prefix}app-sidebar-panel-base-border-start); + border-right: var(--#{$prefix}app-sidebar-panel-base-border-end); +} + +// Utilities +.app-sidebar-panel-minimize-d-flex, +.app-sidebar-panel-sticky-d-flex, +.app-sidebar-panel-collapse-d-flex, +.app-sidebar-panel-minimize-mobile-d-flex, +.app-sidebar-panel-collapse-mobile-d-flex { + display: none; +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-sidebar-panel { + display: flex; + flex-shrink: 0; + width: var(--#{$prefix}app-sidebar-panel-width); + + @include property( z-index, $app-sidebar-panel-base-z-index); + @include property( margin-left, $app-sidebar-panel-base-gap-start); + @include property( margin-right, $app-sidebar-panel-base-gap-end); + @include property( margin-top, $app-sidebar-panel-base-gap-top); + @include property( margin-bottom, $app-sidebar-panel-base-gap-bottom); + } + + // Vars + :root { + --#{$prefix}app-sidebar-panel-width: #{$app-sidebar-panel-base-width}; + --#{$prefix}app-sidebar-panel-width-actual: #{$app-sidebar-panel-base-width}; + + --#{$prefix}app-sidebar-panel-gap-start: #{$app-sidebar-panel-base-gap-start}; + --#{$prefix}app-sidebar-panel-gap-end: #{$app-sidebar-panel-base-gap-end}; + --#{$prefix}app-sidebar-panel-gap-top: #{$app-sidebar-panel-base-gap-top}; + --#{$prefix}app-sidebar-panel-gap-bottom: #{$app-sidebar-panel-base-gap-bottom}; + } + + [data-kt-app-sidebar-panel-minimize="on"] { + --#{$prefix}app-sidebar-panel-width: #{$app-sidebar-panel-minimize-width}; + + --#{$prefix}app-sidebar-panel-gap-start: #{$app-sidebar-panel-minimize-gap-start}; + --#{$prefix}app-sidebar-panel-gap-end: #{$app-sidebar-panel-minimize-gap-end}; + --#{$prefix}app-sidebar-panel-gap-top: #{$app-sidebar-panel-minimize-gap-top}; + --#{$prefix}app-sidebar-panel-gap-bottom: #{$app-sidebar-panel-minimize-gap-bottom}; + } + + [data-kt-app-sidebar-panel-sticky="on"] { + --#{$prefix}app-sidebar-panel-width: #{$app-sidebar-panel-sticky-width}; + + --#{$prefix}app-sidebar-panel-gap-start: #{$app-sidebar-panel-sticky-gap-start}; + --#{$prefix}app-sidebar-panel-gap-end: #{$app-sidebar-panel-sticky-gap-end}; + --#{$prefix}app-sidebar-panel-gap-top: #{$app-sidebar-panel-sticky-gap-top}; + --#{$prefix}app-sidebar-panel-gap-bottom: #{$app-sidebar-panel-sticky-gap-bottom}; + } + + [data-kt-app-sidebar-panel-collapse="on"] { + --#{$prefix}app-sidebar-panel-width-actual: #{$app-sidebar-panel-base-width}; + --#{$prefix}app-sidebar-panel-width: 0px; + } + + // States + .app-sidebar-panel { + [data-kt-app-sidebar-panel-static="true"] & { + position: relative; + } + + [data-kt-app-sidebar-panel-offcanvas="true"] & { + display: none; + } + + [data-kt-app-sidebar-panel-fixed="true"] & { + @include property( z-index, $app-sidebar-panel-fixed-z-index); + position: fixed; + left: calc(var(--#{$prefix}app-sidebar-width) + var(--#{$prefix}app-sidebar-gap-start, 0px) + var(--#{$prefix}app-sidebar-gap-end, 0px)); + top: 0; + bottom: 0; + } + + [data-kt-app-sidebar-panel-sticky="on"] & { + position: fixed; + left: calc(var(--#{$prefix}app-sidebar-width) + var(--#{$prefix}app-sidebar-gap-start, 0px) + var(--#{$prefix}app-sidebar-gap-end, 0px)); + top: 0; + bottom: 0; + transition: $app-sidebar-panel-base-transition; + + //box-shadow: var(--#{$prefix}app-sidebar-panel-sticky-box-shadow); + //border-left: var(--#{$prefix}app-sidebar-panel-sticky-border-start); + //border-right: var(--#{$prefix}app-sidebar-panel-sticky-border-end); + + @include property( z-index, $app-sidebar-panel-sticky-z-index); + @include property( margin-left, $app-sidebar-panel-sticky-gap-start); + @include property( margin-right, $app-sidebar-panel-sticky-gap-end); + @include property( margin-top, $app-sidebar-panel-sticky-gap-top); + @include property( margin-bottom, $app-sidebar-panel-sticky-gap-bottom); + } + + [data-kt-app-sidebar-panel-minimize="on"] & { + transition: $app-sidebar-panel-base-transition; + + //background-color: var(--#{$prefix}app-sidebar-panel-minimize-bg-color); + //box-shadow: var(--#{$prefix}app-sidebar-panel-minimize-box-shadow); + //border-left: var(--#{$prefix}app-sidebar-panel-minimize-border-start); + //border-right: var(--#{$prefix}app-sidebar-panel-minimize-border-end); + + @include property( margin-left, $app-sidebar-panel-minimize-gap-start); + @include property( margin-right, $app-sidebar-panel-minimize-gap-end); + @include property( margin-top, $app-sidebar-panel-minimize-gap-top); + @include property( margin-bottom, $app-sidebar-panel-minimize-gap-bottom); + } + + [data-kt-app-sidebar-panel-hoverable="true"] & { + .app-sidebar-panel-hoverable { + width: var(--#{$prefix}app-sidebar-panel-width-actual); + } + } + + [data-kt-app-sidebar-panel-hoverable="true"][data-kt-app-sidebar-panel-minimize="on"] &:hover:not(.animating) { + transition: $app-sidebar-panel-base-transition; + width: var(--#{$prefix}app-sidebar-panel-width-actual); + box-shadow: var(--#{$prefix}app-sidebar-panel-minimize-hover-box-shadow); + } + + [data-kt-app-sidebar-panel-collapse="on"] & { + transition: $app-sidebar-panel-base-transition; + width: var(--#{$prefix}app-sidebar-panel-width-actual); + margin-left: calc( -1 * (var(--#{$prefix}app-sidebar-panel-width-actual) + var(--#{$prefix}app-sidebar-gap-start, 0px) + var(--#{$prefix}app-sidebar-gap-end, 0px))); + } + } + + // Integration + .app-sidebar-panel { + // Header + [data-kt-app-sidebar-panel-fixed="true"][data-kt-app-header-fixed="true"]:not([data-kt-app-sidebar-panel-push-header="true"]) & { + top: var(--#{$prefix}app-header-height); + } + + // Toolbar + [data-kt-app-sidebar-panel-fixed="true"][data-kt-app-header-fixed="true"][data-kt-app-toolbar-fixed="true"]:not([data-kt-app-sidebar-panel-push-toolbar="true"]) & { + top: calc(var(--#{$prefix}app-header-height) + var(--#{$prefix}app-toolbar-height, 0)); + } + } + + // Utilities + [data-kt-app-sidebar-panel-minimize="on"] { + .app-sidebar-panel-minimize-d-none { + display: none !important; + } + + .app-sidebar-panel-minimize-d-flex { + display: flex !important; + } + } + + [data-kt-app-sidebar-panel-sticky="on"] { + .app-sidebar-panel-sticky-d-none { + display: none !important; + } + + .app-sidebar-panel-sticky-d-flex { + display: flex !important; + } + } + + [data-kt-app-sidebar-panel-collapse="on"] { + .app-sidebar-panel-collapse-d-none { + display: none !important; + } + + .app-sidebar-panel-collapse-d-flex { + display: flex !important; + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-sidebar-panel { + display: none; + width: var(--#{$prefix}app-sidebar-panel-width); + + @include property( z-index, $app-sidebar-panel-base-z-index-mobile); + @include property( margin-left, $app-sidebar-panel-base-gap-start-mobile); + @include property( margin-right, $app-sidebar-panel-base-gap-end-mobile); + @include property( margin-top, $app-sidebar-panel-base-gap-top-mobile); + @include property( margin-bottom, $app-sidebar-panel-base-gap-bottom-mobile); + } + + // Vars + :root { + --#{$prefix}app-sidebar-panel-width: #{$app-sidebar-panel-base-width-mobile}; + --#{$prefix}app-sidebar-panel-width-actual: #{$app-sidebar-panel-base-width-mobile}; + + --#{$prefix}app-sidebar-panel-gap-start: #{$app-sidebar-panel-base-gap-start-mobile}; + --#{$prefix}app-sidebar-panel-gap-end: #{$app-sidebar-panel-base-gap-end-mobile}; + --#{$prefix}app-sidebar-panel-gap-top: #{$app-sidebar-panel-base-gap-top-mobile}; + --#{$prefix}app-sidebar-panel-gap-bottom: #{$app-sidebar-panel-base-gap-bottom-mobile}; + } + + [data-kt-app-sidebar-panel-minimize-mobile="on"] { + --#{$prefix}app-sidebar-panel-width: #{$app-sidebar-panel-minimize-width-mobile}; + + --#{$prefix}app-sidebar-panel-gap-start: #{$app-sidebar-panel-minimize-gap-start-mobile}; + --#{$prefix}app-sidebar-panel-gap-end: #{$app-sidebar-panel-minimize-gap-end-mobile}; + --#{$prefix}app-sidebar-panel-gap-top: #{$app-sidebar-panel-minimize-gap-top-mobile}; + --#{$prefix}app-sidebar-panel-gap-bottom: #{$app-sidebar-panel-minimize-gap-bottom-mobile}; + } + + [data-kt-app-sidebar-panel-collapse-mobile="on"] { + --#{$prefix}app-sidebar-panel-width-actual: #{$app-sidebar-panel-base-width-mobile}; + --#{$prefix}app-sidebar-panel-width: 0px; + } + + // States + .app-sidebar-panel { + [data-kt-app-sidebar-panel-minimize-mobile="on"] & { + transition: $app-sidebar-panel-base-transition; + + background-color: var(--#{$prefix}app-sidebar-panel-minimize-bg-color-mobile); + box-shadow: var(--#{$prefix}app-sidebar-panel-minimize-box-shadow-mobile); + border-left: var(--#{$prefix}app-sidebar-panel-minimize-border-start-mobile); + border-right: var(--#{$prefix}app-sidebar-panel-minimize-border-end-mobile); + + @include property( margin-left, $app-sidebar-panel-minimize-gap-start-mobile); + @include property( margin-right, $app-sidebar-panel-minimize-gap-end-mobile); + @include property( margin-top, $app-sidebar-panel-minimize-gap-top-mobile); + @include property( margin-bottom, $app-sidebar-panel-minimize-gap-bottom-mobile); + } + + [data-kt-app-sidebar-panel-hoverable-mobile="true"] & { + .app-sidebar-panel-hoverable { + width: var(--#{$prefix}app-sidebar-panel-width-actual); + } + } + + [data-kt-app-sidebar-panel-hoverable-mobile="true"][data-kt-app-sidebar-panel-minimize-mobile="on"] &:hover:not(.animating) { + transition: $app-sidebar-panel-base-transition; + width: var(--#{$prefix}app-sidebar-panel-width-actual); + + box-shadow: var(--#{$prefix}app-sidebar-panel-minimize-hover-box-shadow-mobile); + } + + [data-kt-app-sidebar-panel-collapse-mobile="on"] & { + transition: $app-sidebar-panel-base-transition; + width: var(--#{$prefix}app-sidebar-panel-width-actual); + margin-left: calc( -1 * var(--#{$prefix}app-sidebar-panel-width-actual)); + } + } + + // Utilities + [data-kt-app-sidebar-panel-minimize-mobile="on"] { + .app-sidebar-panel-minimize-mobile-d-none { + display: none !important; + } + + .app-sidebar-panel-minimize-mobile-d-flex { + display: flex !important; + } + } + + [data-kt-app-sidebar-panel-collapse-mobile="on"] { + .app-sidebar-panel-collapse-mobile-d-none { + display: none !important; + } + + .app-sidebar-panel-collapse-mobile-d-flex { + display: flex !important; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar-primary.scss b/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar-primary.scss new file mode 100644 index 0000000..7bd4b8d --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar-primary.scss @@ -0,0 +1,230 @@ +// +// sidebar Primary +// + +// General mode +.app-sidebar-primary { + transition: $app-sidebar-primary-base-transition; + position: relative; + flex-shrink: 0; + background-color: var(--#{$prefix}app-sidebar-primary-base-bg-color); + box-shadow: var(--#{$prefix}app-sidebar-primary-base-box-shadow); + border-left: var(--#{$prefix}app-sidebar-primary-base-border-start); + border-right: var(--#{$prefix}app-sidebar-primary-base-border-end); +} + +// Utilities +.app-sidebar-primary-collapse-d-flex, +.app-sidebar-primary-minimize-d-flex, +.app-sidebar-primary-collapse-mobile-d-flex, +.app-sidebar-primary-minimize-mobile-d-flex { + display: none; +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-sidebar-primary { + @include property( z-index, $app-sidebar-primary-base-z-index); + @include property( margin-left, $app-sidebar-primary-base-gap-start); + @include property( margin-right, $app-sidebar-primary-base-gap-end); + @include property( margin-top, $app-sidebar-primary-base-gap-top); + @include property( margin-bottom, $app-sidebar-primary-base-gap-bottom); + } + + // Vars + :root { + --#{$prefix}app-sidebar-primary-width-actual: #{$app-sidebar-primary-base-width}; + } + + [data-kt-app-sidebar-stacked="true"] { + --#{$prefix}app-sidebar-primary-width: #{$app-sidebar-primary-base-width}; + + --#{$prefix}app-sidebar-primary-gap-start: #{$app-sidebar-primary-base-gap-start}; + --#{$prefix}app-sidebar-primary-gap-end: #{$app-sidebar-primary-base-gap-end}; + --#{$prefix}app-sidebar-primary-gap-top: #{$app-sidebar-primary-base-gap-top}; + --#{$prefix}app-sidebar-primary-gap-bottom: #{$app-sidebar-primary-base-gap-bottom}; + } + + [data-kt-app-sidebar-primary-minimize="on"] { + --#{$prefix}app-sidebar-primary-width: #{$app-sidebar-primary-minimize-width}; + + --#{$prefix}app-sidebar-primary-gap-start: #{$app-sidebar-primary-minimize-gap-start}; + --#{$prefix}app-sidebar-primary-gap-end: #{$app-sidebar-primary-minimize-gap-end}; + --#{$prefix}app-sidebar-primary-gap-top: #{$app-sidebar-primary-minimize-gap-top}; + --#{$prefix}app-sidebar-primary-gap-bottom: #{$app-sidebar-primary-minimize-gap-bottom}; + } + + [data-kt-app-sidebar-primary-collapse="on"] { + --#{$prefix}app-sidebar-primary-width: 0px; + } + + // States + .app-sidebar-primary { + width: var(--#{$prefix}app-sidebar-primary-width); + + [data-kt-app-sidebar-primary-collapse="on"] & { + transition: $app-sidebar-primary-base-transition; + width: var(--#{$prefix}app-sidebar-primary-width-actual); + margin-left: calc( -1 * var(--#{$prefix}app-sidebar-primary-width-actual)); + } + + [data-kt-app-sidebar-primary-minimize="on"] & { + transition: $app-sidebar-primary-base-transition; + + //background-color: var(--#{$prefix}app-sidebar-primary-minimize-bg-color); + //box-shadow: var(--#{$prefix}app-sidebar-primary-minimize-box-shadow); + //border-left: var(--#{$prefix}app-sidebar-primary-minimize-border-start); + //border-right: var(--#{$prefix}app-sidebar-primary-minimize-border-end); + + @include property( margin-left, $app-sidebar-primary-minimize-gap-start); + @include property( margin-right, $app-sidebar-primary-minimize-gap-end); + @include property( margin-top, $app-sidebar-primary-minimize-gap-top); + @include property( margin-bottom, $app-sidebar-primary-minimize-gap-bottom); + } + + [data-kt-app-sidebar-primary-hoverable="true"] & { + .app-sidebar-primary-hoverable { + width: var(--#{$prefix}app-sidebar-primary-width-actual); + } + } + + // Hover minimized + [data-kt-app-sidebar-primary-hoverable="true"][data-kt-app-sidebar-primary-minimize="on"] &:hover:not(.animating) { + transition: $app-sidebar-primary-base-transition; + width: var(--#{$prefix}app-sidebar-primary-width-actual); + box-shadow: var(--#{$prefix}app-sidebar-primary-minimize-hover-box-shadow); + } + } + + // Integration + .app-sidebar-primary { + // Header + [data-kt-app-sidebar-fixed="true"][data-kt-app-header-fixed="true"][data-kt-app-sidebar-primary-below-header="true"] & { + top: var(--#{$prefix}app-header-height); + } + + // Toolbar + [data-kt-app-sidebar-fixed="true"][data-kt-app-header-fixed="true"][data-kt-app-toolbar-fixed="true"][data-kt-app-sidebar-primary-below-toolbar="true"] & { + top: calc(var(--#{$prefix}app-header-height) + var(--#{$prefix}app-toolbar-height, 0)); + } + } + + // Utilities + [data-kt-app-sidebar-primary-minimize="on"] { + .app-sidebar-primary-minimize-d-none { + display: none !important; + } + + .app-sidebar-primary-minimize-d-flex { + display: flex !important; + } + } + + [data-kt-app-sidebar-primary-collapse="on"] { + .app-sidebar-primary-collapse-d-none { + display: none !important; + } + + .app-sidebar-primary-collapse-d-flex { + display: flex !important; + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-sidebar-primary { + @include property( z-index, $app-sidebar-primary-base-z-index-mobile); + @include property( margin-left, $app-sidebar-primary-base-gap-start-mobile); + @include property( margin-right, $app-sidebar-primary-base-gap-end-mobile); + @include property( margin-top, $app-sidebar-primary-base-gap-top-mobile); + @include property( margin-bottom, $app-sidebar-primary-base-gap-bottom-mobile); + } + + // Vars + :root { + --#{$prefix}app-sidebar-primary-width-actual: #{$app-sidebar-primary-base-width-mobile}; + } + + [data-kt-app-sidebar-stacked="true"] { + --#{$prefix}app-sidebar-primary-width: #{$app-sidebar-primary-base-width-mobile}; + + --#{$prefix}app-sidebar-primary-gap-start: #{$app-sidebar-primary-base-gap-start-mobile}; + --#{$prefix}app-sidebar-primary-gap-end: #{$app-sidebar-primary-base-gap-end-mobile}; + --#{$prefix}app-sidebar-primary-gap-top: #{$app-sidebar-primary-base-gap-top-mobile}; + --#{$prefix}app-sidebar-primary-gap-bottom: #{$app-sidebar-primary-base-gap-bottom-mobile}; + } + + [data-kt-app-sidebar-primary-minimize-mobile="on"] { + --#{$prefix}app-sidebar-primary-width: #{$app-sidebar-primary-minimize-width-mobile}; + + --#{$prefix}app-sidebar-primary-gap-start: #{$app-sidebar-primary-minimize-gap-start-mobile}; + --#{$prefix}app-sidebar-primary-gap-end: #{$app-sidebar-primary-minimize-gap-end-mobile}; + --#{$prefix}app-sidebar-primary-gap-top: #{$app-sidebar-primary-minimize-gap-top-mobile}; + --#{$prefix}app-sidebar-primary-gap-bottom: #{$app-sidebar-primary-minimize-gap-bottom-mobile}; + } + + [data-kt-app-sidebar-primary-collapse-mobile="on"] { + --#{$prefix}app-sidebar-primary-width: 0px; + } + + // States + .app-sidebar-primary { + width: var(--#{$prefix}app-sidebar-primary-width); + + [data-kt-app-sidebar-primary-collapse-mobile="on"] & { + transition: $app-sidebar-primary-base-transition; + width: var(--#{$prefix}app-sidebar-primary-width-actual); + margin-left: calc( -1 * var(--#{$prefix}app-sidebar-primary-width-actual)); + } + + [data-kt-app-sidebar-primary-minimize-mobile="on"] & { + transition: $app-sidebar-primary-base-transition; + + //background-color: var(--#{$prefix}app-sidebar-primary-minimize-bg-color-mobile); + //box-shadow: var(--#{$prefix}app-sidebar-primary-base-box-shadow-mobile); + //border-left: var(--#{$prefix}app-sidebar-primary-minimize-border-start-mobile); + //border-left: var(--#{$prefix}app-sidebar-primary-minimize-border-end-mobile); + + @include property( margin-left, $app-sidebar-primary-minimize-gap-start-mobile); + @include property( margin-right, $app-sidebar-primary-minimize-gap-end-mobile); + @include property( margin-top, $app-sidebar-primary-minimize-gap-top-mobile); + @include property( margin-bottom, $app-sidebar-primary-minimize-gap-bottom-mobile); + } + + [data-kt-app-sidebar-primary-hoverable-mobile="true"] & { + .app-sidebar-primary-hoverable { + width: var(--#{$prefix}app-sidebar-primary-width-actual); + } + } + + [data-kt-app-sidebar-primary-hoverable-mobile="true"][data-kt-app-sidebar-primary-minimize-mobile="on"] &:hover:not(.animating) { + transition: $app-sidebar-primary-base-transition; + width: var(--#{$prefix}app-sidebar-primary-width-actual); + box-shadow: var(--#{$prefix}app-sidebar-primary-minimize-hover-box-shadow-mobile); + } + } + + // Utilities + [data-kt-app-sidebar-primary-minimize-mobile="on"] { + .app-sidebar-primary-minimize-mobile-d-none { + display: none !important; + } + + .app-sidebar-primary-minimize-mobile-d-flex { + display: flex !important; + } + } + + [data-kt-app-sidebar-primary-collapse-mobile="on"] { + .app-sidebar-primary-collapse-mobile-d-none { + display: none !important; + } + + .app-sidebar-primary-collapse-mobile-d-flex { + display: flex !important; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar-secondary.scss b/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar-secondary.scss new file mode 100644 index 0000000..9c5816b --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar-secondary.scss @@ -0,0 +1,274 @@ +// +// sidebar Secondary +// + +// General mode +.app-sidebar-secondary { + transition: $app-sidebar-secondary-base-transition; + position: relative; + flex-shrink: 0; + background-color: var(--#{$prefix}app-sidebar-secondary-base-bg-color); + box-shadow: var(--#{$prefix}app-sidebar-secondary-base-box-shadow); + border-left: var(--#{$prefix}app-sidebar-secondary-base-border-start); + border-right: var(--#{$prefix}app-sidebar-secondary-base-border-end); +} + +// Utilities +.app-sidebar-secondary-collapse-d-flex, +.app-sidebar-secondary-minimize-d-flex, +.app-sidebar-secondary-collapse-mobile-d-flex, +.app-sidebar-secondary-minimize-mobile-d-flex { + display: none; +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-sidebar-secondary { + @include property( z-index, $app-sidebar-secondary-base-z-index); + @include property( margin-left, $app-sidebar-secondary-base-gap-start-mobile); + @include property( margin-right, $app-sidebar-secondary-base-gap-end-mobile); + @include property( margin-top, $app-sidebar-secondary-base-gap-top-mobile); + @include property( margin-bottom, $app-sidebar-secondary-base-gap-bottom-mobile); + } + + // Vars + [data-kt-app-sidebar-secondary-enabled="true"] { + --#{$prefix}app-sidebar-secondary-width-actual: calc( + #{$app-sidebar-base-width} - + #{$app-sidebar-primary-base-width} - + #{$app-sidebar-primary-base-gap-start} - + #{$app-sidebar-primary-base-gap-end} - + #{$app-sidebar-secondary-base-gap-start} - + #{$app-sidebar-secondary-base-gap-end} + ); + } + + [data-kt-app-sidebar-secondary-enabled="true"][data-kt-app-sidebar-stacked="true"] { + --#{$prefix}app-sidebar-secondary-width: calc( + #{$app-sidebar-base-width} - + #{$app-sidebar-primary-base-width} - + #{$app-sidebar-primary-base-gap-start} - + #{$app-sidebar-primary-base-gap-end} - + #{$app-sidebar-secondary-base-gap-start} - + #{$app-sidebar-secondary-base-gap-end} + ); + + --#{$prefix}app-sidebar-secondary-gap-start: #{$app-sidebar-secondary-base-gap-start}; + --#{$prefix}app-sidebar-secondary-gap-end: #{$app-sidebar-secondary-base-gap-end}; + --#{$prefix}app-sidebar-secondary-gap-top: #{$app-sidebar-secondary-base-gap-top}; + --#{$prefix}app-sidebar-secondary-gap-bottom: #{$app-sidebar-secondary-base-gap-bottom}; + } + + [data-kt-app-sidebar-secondary-enabled="true"][data-kt-app-sidebar-secondary-minimize="on"] { + --#{$prefix}app-sidebar-secondary-width: #{$app-sidebar-secondary-minimize-width}; + + --#{$prefix}app-sidebar-secondary-gap-start: #{$app-sidebar-secondary-minimize-gap-start}; + --#{$prefix}app-sidebar-secondary-gap-end: #{$app-sidebar-secondary-minimize-gap-end}; + --#{$prefix}app-sidebar-secondary-gap-top: #{$app-sidebar-secondary-minimize-gap-top}; + --#{$prefix}app-sidebar-secondary-gap-bottom: #{$app-sidebar-secondary-minimize-gap-bottom}; + } + + [data-kt-app-sidebar-secondary-enabled="true"][data-kt-app-sidebar-secondary-collapse="on"] { + --#{$prefix}app-sidebar-secondary-width-actual: calc( + #{$app-sidebar-base-width} - + #{$app-sidebar-primary-base-width} - + #{$app-sidebar-primary-base-gap-start} - + #{$app-sidebar-primary-base-gap-end} - + #{$app-sidebar-secondary-base-gap-start} - + #{$app-sidebar-secondary-base-gap-end} + ); + + --#{$prefix}app-sidebar-secondary-width: 0px; + } + + // States + .app-sidebar-secondary { + width: var(--#{$prefix}app-sidebar-secondary-width); + + [data-kt-app-sidebar-secondary-collapse="on"] & { + transition: $app-sidebar-secondary-base-transition; + width: var(--#{$prefix}app-sidebar-secondary-width-actual); + margin-left: calc( -1 * var(--#{$prefix}app-sidebar-secondary-width-actual)); + } + + [data-kt-app-sidebar-secondary-minimize="on"] & { + transition: $app-sidebar-secondary-base-transition; + + //background-color: var(--#{$prefix}app-sidebar-secondary-minimize-bg-color); + //box-shadow: var(--#{$prefix}app-sidebar-secondary-minimize-box-shadow); + //border-left: var(--#{$prefix}app-sidebar-secondary-minimize-border-start); + //border-right: var(--#{$prefix}app-sidebar-secondary-minimize-border-end); + + @include property( margin-left, $app-sidebar-secondary-minimize-gap-start-mobile); + @include property( margin-right, $app-sidebar-secondary-minimize-gap-end-mobile); + @include property( margin-top, $app-sidebar-secondary-minimize-gap-top-mobile); + @include property( margin-bottom, $app-sidebar-secondary-minimize-gap-bottom-mobile); + } + + [data-kt-app-sidebar-secondary-hoverable="true"] & { + .app-sidebar-secondary-hoverable { + width: var(--#{$prefix}app-sidebar-secondary-width-actual); + } + } + + [data-kt-app-sidebar-secondary-hoverable="true"][data-kt-app-sidebar-secondary-minimize="on"] &:hover:not(.animating) { + transition: $app-sidebar-secondary-base-transition; + width: var(--#{$prefix}app-sidebar-secondary-width-actual); + box-shadow: var(--#{$prefix}app-sidebar-secondary-minimize-hover-box-shadow); + } + } + + // Integration + .app-sidebar-secondary { + // Header + [data-kt-app-sidebar-fixed="true"][data-kt-app-header-fixed="true"][data-kt-app-sidebar-secondary-below-header="true"] & { + top: var(--#{$prefix}app-header-height); + } + + // Toolbar + [data-kt-app-sidebar-fixed="true"][data-kt-app-header-fixed="true"][data-kt-app-toolbar-fixed="true"][data-kt-app-sidebar-secondary-below-toolbar="true"] & { + top: calc(var(--#{$prefix}app-header-height) + var(--#{$prefix}app-toolbar-height, 0)); + } + } + + // Utilities + [data-kt-app-sidebar-secondary-enabled="true"][data-kt-app-sidebar-secondary-minimize="on"] { + .app-sidebar-secondary-minimize-d-none { + display: none !important; + } + + .app-sidebar-secondary-minimize-d-flex { + display: flex !important; + } + } + + [data-kt-app-sidebar-secondary-enabled="true"][data-kt-app-sidebar-secondary-collapse="on"] { + .app-sidebar-secondary-collapse-d-none { + display: none !important; + } + + .app-sidebar-secondary-collapse-d-flex { + display: flex !important; + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-sidebar-secondary { + @include property( z-index, $app-sidebar-secondary-base-z-index-mobile); + @include property( margin-left, $app-sidebar-secondary-base-gap-start-mobile); + @include property( margin-right, $app-sidebar-secondary-base-gap-end-mobile); + @include property( margin-top, $app-sidebar-secondary-base-gap-top-mobile); + @include property( margin-bottom, $app-sidebar-secondary-base-gap-bottom-mobile); + } + + // Vars + [data-kt-app-sidebar-secondary-enabled="true"] { + --#{$prefix}app-sidebar-secondary-width-actual: calc( + #{$app-sidebar-base-width-mobile} - + #{$app-sidebar-primary-base-width-mobile} - + #{$app-sidebar-primary-base-gap-start-mobile} - + #{$app-sidebar-primary-base-gap-end-mobile} - + #{$app-sidebar-secondary-base-gap-start-mobile} - + #{$app-sidebar-secondary-base-gap-end-mobile} + ); + } + + [data-kt-app-sidebar-secondary-enabled="true"][data-kt-app-sidebar-stacked="true"] { + --#{$prefix}app-sidebar-secondary-width: calc( + #{$app-sidebar-base-width-mobile} - + #{$app-sidebar-primary-base-width-mobile} - + #{$app-sidebar-primary-base-gap-start-mobile} - + #{$app-sidebar-primary-base-gap-end-mobile} - + #{$app-sidebar-secondary-base-gap-start-mobile} - + #{$app-sidebar-secondary-base-gap-end-mobile} + ); + + --#{$prefix}app-sidebar-secondary-gap-start: #{$app-sidebar-secondary-base-gap-start-mobile}; + --#{$prefix}app-sidebar-secondary-gap-end: #{$app-sidebar-secondary-base-gap-end-mobile}; + --#{$prefix}app-sidebar-secondary-gap-top: #{$app-sidebar-secondary-base-gap-top-mobile}; + --#{$prefix}app-sidebar-secondary-gap-bottom: #{$app-sidebar-secondary-base-gap-bottom-mobile}; + } + + [data-kt-app-sidebar-secondary-enabled="true"][data-kt-app-sidebar-secondary-minimize-mobile="on"] { + --#{$prefix}app-sidebar-secondary-width: #{$app-sidebar-secondary-minimize-width-mobile}; + + --#{$prefix}app-sidebar-secondary-gap-start: #{$app-sidebar-secondary-minimize-gap-start-mobile}; + --#{$prefix}app-sidebar-secondary-gap-end: #{$app-sidebar-secondary-minimize-gap-end-mobile}; + --#{$prefix}app-sidebar-secondary-gap-top: #{$app-sidebar-secondary-minimize-gap-top-mobile}; + --#{$prefix}app-sidebar-secondary-gap-bottom: #{$app-sidebar-secondary-minimize-gap-bottom-mobile}; + } + + [data-kt-app-sidebar-secondary-enabled="true"][data-kt-app-sidebar-secondary-collapse-mobile="on"] { + --#{$prefix}app-sidebar-secondary-width-actual: calc( + #{$app-sidebar-base-width-mobile} - + #{$app-sidebar-primary-base-width-mobile} - + #{$app-sidebar-primary-base-gap-start-mobile} - + #{$app-sidebar-primary-base-gap-end-mobile} - + #{$app-sidebar-secondary-base-gap-start-mobile} - + #{$app-sidebar-secondary-base-gap-end-mobile} + ); + + --#{$prefix}app-sidebar-secondary-width: 0px; + } + + // States + .app-sidebar-secondary { + width: var(--#{$prefix}app-sidebar-secondary-width); + + [data-kt-app-sidebar-secondary-collapse-mobile="on"] & { + transition: $app-sidebar-secondary-base-transition; + width: var(--#{$prefix}app-sidebar-secondary-width-actual); + margin-left: calc( -1 * var(--#{$prefix}app-sidebar-secondary-width-actual)); + } + + [data-kt-app-sidebar-secondary-minimize-mobile="on"] & { + transition: $app-sidebar-secondary-base-transition; + background-color: var(--#{$prefix}app-sidebar-secondary-minimize-bg-color-mobile); + box-shadow: var(--#{$prefix}app-sidebar-secondary-minimize-box-shadow-mobile); + border-left: var(--#{$prefix}app-sidebar-secondary-minimize-border-start-mobile); + border-right: var(--#{$prefix}app-sidebar-secondary-minimize-border-end-mobile); + + //@include property( margin-left, $app-sidebar-secondary-minimize-gap-start-mobile); + //@include property( margin-right, $app-sidebar-secondary-minimize-gap-end-mobile); + //@include property( margin-top, $app-sidebar-secondary-minimize-gap-top-mobile); + //@include property( margin-bottom, $app-sidebar-secondary-minimize-gap-bottom-mobile); + } + + [data-kt-app-sidebar-secondary-hoverable-mobile="true"] & { + .app-sidebar-secondary-hoverable { + width: var(--#{$prefix}app-sidebar-secondary-width-actual); + } + } + + [data-kt-app-sidebar-secondary-hoverable-mobile="true"][data-kt-app-sidebar-secondary-minimize-mobile="on"] &:hover:not(.animating) { + transition: $app-sidebar-secondary-base-transition; + width: var(--#{$prefix}app-sidebar-secondary-width-actual); + box-shadow: var(--#{$prefix}app-sidebar-secondary-minimize-hover-box-shadow-mobile); + } + } + + // Utilities + [data-kt-app-sidebar-secondary-enabled="true"][data-kt-app-sidebar-secondary-minimize-mobile="on"] { + .app-sidebar-secondary-minimize-mobile-d-none { + display: none !important; + } + + .app-sidebar-secondary-minimize-mobile-d-flex { + display: flex !important; + } + } + + [data-kt-app-sidebar-secondary-enabled="true"][data-kt-app-sidebar-secondary-collapse="on"] { + .app-sidebar-secondary-collapse-mobile-d-none { + display: none !important; + } + + .app-sidebar-secondary-collapse-mobile-d-flex { + display: flex !important; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar.scss b/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar.scss new file mode 100644 index 0000000..382f80d --- /dev/null +++ b/src/_metronic/assets/sass/core/layout/base/sidebar/_sidebar.scss @@ -0,0 +1,284 @@ +// +// sidebar +// + +// General mode +.app-sidebar { + transition: $app-sidebar-base-transition; + background-color: var(--#{$prefix}app-sidebar-base-bg-color); + box-shadow: var(--#{$prefix}app-sidebar-base-box-shadow); + border-left: var(--#{$prefix}app-sidebar-base-border-start); + border-right: var(--#{$prefix}app-sidebar-base-border-end); +} + +// Utilities +.app-sidebar-minimize-d-flex, +.app-sidebar-sticky-d-flex, +.app-sidebar-collapse-d-flex, +.app-sidebar-minimize-mobile-d-flex, +.app-sidebar-collapse-mobile-d-flex { + display: none; +} + +// Desktop mode +@include media-breakpoint-up(lg) { + // Base + .app-sidebar { + display: flex; + flex-shrink: 0; + width: var(--#{$prefix}app-sidebar-width); + + @include property( z-index, $app-sidebar-base-z-index); + @include property( margin-left, $app-sidebar-base-gap-start); + @include property( margin-right, $app-sidebar-base-gap-end); + @include property( margin-top, $app-sidebar-base-gap-top); + @include property( margin-bottom, $app-sidebar-base-gap-bottom); + } + + // Vars + :root { + --#{$prefix}app-sidebar-width: #{$app-sidebar-base-width}; + --#{$prefix}app-sidebar-width-actual: #{$app-sidebar-base-width}; + + --#{$prefix}app-sidebar-gap-start: #{$app-sidebar-base-gap-start}; + --#{$prefix}app-sidebar-gap-end: #{$app-sidebar-base-gap-end}; + --#{$prefix}app-sidebar-gap-top: #{$app-sidebar-base-gap-top}; + --#{$prefix}app-sidebar-gap-bottom: #{$app-sidebar-base-gap-bottom}; + } + + [data-kt-app-sidebar-stacked="true"] { + --#{$prefix}app-sidebar-width: calc(var(--#{$prefix}app-sidebar-primary-width) + var(--#{$prefix}app-sidebar-secondary-width, 0px)); + } + + [data-kt-app-sidebar-minimize="on"] { + --#{$prefix}app-sidebar-width: #{$app-sidebar-minimize-width}; + + --#{$prefix}app-sidebar-gap-start: #{$app-sidebar-minimize-gap-start}; + --#{$prefix}app-sidebar-gap-end: #{$app-sidebar-minimize-gap-end}; + --#{$prefix}app-sidebar-gap-top: #{$app-sidebar-minimize-gap-top}; + --#{$prefix}app-sidebar-gap-bottom: #{$app-sidebar-minimize-gap-bottom}; + } + + [data-kt-app-sidebar-sticky="on"] { + --#{$prefix}app-sidebar-width: #{$app-sidebar-sticky-width}; + + --#{$prefix}app-sidebar-gap-start: #{$app-sidebar-sticky-gap-start}; + --#{$prefix}app-sidebar-gap-end: #{$app-sidebar-sticky-gap-end}; + --#{$prefix}app-sidebar-gap-top: #{$app-sidebar-sticky-gap-top}; + --#{$prefix}app-sidebar-gap-bottom: #{$app-sidebar-sticky-gap-bottom}; + } + + [data-kt-app-sidebar-collapse="on"] { + --#{$prefix}app-sidebar-width: 0px; + } + + // States + .app-sidebar { + [data-kt-app-sidebar-static="true"] & { + position: relative; + } + + [data-kt-app-sidebar-offcanvas="true"] & { + display: none; + } + + [data-kt-app-sidebar-fixed="true"] & { + position: fixed; + @include property( z-index, $app-sidebar-fixed-z-index); + @include property( top, $app-sidebar-fixed-top); + @include property( bottom, $app-sidebar-fixed-bottom); + @include property( left, $app-sidebar-fixed-left); + } + + [data-kt-app-sidebar-stacked="true"] & { + align-items: stretch; + } + + [data-kt-app-sidebar-sticky="on"] & { + position: fixed; + transition: $app-sidebar-base-transition; + @include property( top, $app-sidebar-sticky-top); + @include property( bottom, $app-sidebar-sticky-bottom); + @include property( left, $app-sidebar-sticky-left); + @include property( z-index, $app-sidebar-sticky-z-index); + + box-shadow: var(--#{$prefix}app-sidebar-sticky-box-shadow); + border-left: var(--#{$prefix}app-sidebar-sticky-border-start); + border-right: var(--#{$prefix}app-sidebar-sticky-border-end); + + @include property( margin-left, $app-sidebar-sticky-gap-start); + @include property( margin-right, $app-sidebar-sticky-gap-end); + @include property( margin-top, $app-sidebar-sticky-gap-top); + @include property( margin-bottom, $app-sidebar-sticky-gap-bottom); + } + + [data-kt-app-sidebar-minimize="on"] & { + transition: $app-sidebar-base-transition; + + @include property( margin-left, $app-sidebar-minimize-gap-start); + @include property( margin-right, $app-sidebar-minimize-gap-end); + @include property( margin-top, $app-sidebar-minimize-gap-top); + @include property( margin-bottom, $app-sidebar-minimize-gap-bottom); + } + + [data-kt-app-sidebar-hoverable="true"] & { + .app-sidebar-wrapper { + width: var(--#{$prefix}app-sidebar-width-actual); + } + } + + [data-kt-app-sidebar-hoverable="true"][data-kt-app-sidebar-minimize="on"] &:hover:not(.animating) { + transition: $app-sidebar-base-transition; + width: var(--#{$prefix}app-sidebar-width-actual); + @include property( box-shadow, $app-sidebar-minimize-hover-box-shadow); + } + + [data-kt-app-sidebar-collapse="on"] & { + transition: $app-sidebar-base-transition; + width: var(--#{$prefix}app-sidebar-width-actual); + margin-left: calc( -1 * var(--#{$prefix}app-sidebar-width-actual)); + } + } + + // Utilities + [data-kt-app-sidebar-minimize="on"] { + .app-sidebar-minimize-d-none { + display: none !important; + } + + .app-sidebar-minimize-d-flex { + display: flex !important; + } + } + + [data-kt-app-sidebar-sticky="on"] { + .app-sidebar-sticky-d-none { + display: none !important; + } + + .app-sidebar-sticky-d-flex { + display: flex !important; + } + } + + [data-kt-app-sidebar-collapse="on"] { + .app-sidebar-collapse-d-none { + display: none !important; + } + + .app-sidebar-collapse-d-flex { + display: flex !important; + } + } + + // Integration + .app-sidebar { + // Header + [data-kt-app-sidebar-fixed="true"][data-kt-app-header-fixed="true"]:not([data-kt-app-sidebar-push-header="true"]) & { + top: var(--#{$prefix}app-header-height); + } + + // Toolbar + [data-kt-app-sidebar-fixed="true"][data-kt-app-header-fixed="true"][data-kt-app-toolbar-fixed="true"]:not([data-kt-app-sidebar-push-toolbar="true"]) & { + top: calc(var(--#{$prefix}app-header-height) + var(--#{$prefix}app-toolbar-height, 0px)); + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + // Base + .app-sidebar { + display: none; + width: var(--#{$prefix}app-sidebar-width); + + @include property( z-index, $app-sidebar-base-z-index-mobile); + @include property( margin-left, $app-sidebar-base-gap-start-mobile); + @include property( margin-right, $app-sidebar-base-gap-end-mobile); + @include property( margin-top, $app-sidebar-base-gap-top-mobile); + @include property( margin-bottom, $app-sidebar-base-gap-bottom-mobile); + } + + // Vars + :root { + --#{$prefix}app-sidebar-width: #{$app-sidebar-base-width-mobile}; + --#{$prefix}app-sidebar-width-actual: #{$app-sidebar-base-width-mobile}; + + --#{$prefix}app-sidebar-gap-start: #{$app-sidebar-base-gap-start-mobile}; + --#{$prefix}app-sidebar-gap-end: #{$app-sidebar-base-gap-end-mobile}; + --#{$prefix}app-sidebar-gap-top: #{$app-sidebar-base-gap-top-mobile}; + --#{$prefix}app-sidebar-gap-bottom: #{$app-sidebar-base-gap-bottom-mobile}; + } + + [data-kt-app-sidebar-stacked="true"] { + --#{$prefix}app-sidebar-width: calc(var(--#{$prefix}app-sidebar-primary-width) + var(--#{$prefix}app-sidebar-secondary-width, 0)); + } + + [data-kt-app-sidebar-minimize-mobile="on"] { + --#{$prefix}app-sidebar-width: #{$app-sidebar-minimize-width-mobile}; + + --#{$prefix}app-sidebar-gap-start: #{$app-sidebar-minimize-gap-start-mobile}; + --#{$prefix}app-sidebar-gap-end: #{$app-sidebar-minimize-gap-end-mobile}; + --#{$prefix}app-sidebar-gap-top: #{$app-sidebar-minimize-gap-top-mobile}; + --#{$prefix}app-sidebar-gap-bottom: #{$app-sidebar-minimize-gap-bottom-mobile}; + } + + [data-kt-app-sidebar-collapse-mobile="on"] { + --#{$prefix}app-sidebar-width: 0px; + } + + // States + .app-sidebar { + [data-kt-app-sidebar-stacked="true"] & { + align-items: stretch; + } + + [data-kt-app-sidebar-minimize-mobile="on"] & { + transition: $app-sidebar-base-transition; + + @include property( margin-left, $app-sidebar-minimize-gap-start-mobile); + @include property( margin-right, $app-sidebar-minimize-gap-end-mobile); + @include property( margin-top, $app-sidebar-minimize-gap-top-mobile); + @include property( margin-bottom, $app-sidebar-minimize-gap-bottom-mobile); + } + + [data-kt-app-sidebar-hoverable-mobile="true"] & { + .app-sidebar-wrapper { + width: var(--#{$prefix}app-sidebar-width-actual); + } + } + + [data-kt-app-sidebar-hoverable-mobile="true"][data-kt-app-sidebar-minimize-mobile="on"] &:hover:not(.animating) { + transition: $app-sidebar-base-transition; + width: var(--#{$prefix}app-sidebar-width-actual); + box-shadow: var(--#{$prefix}app-sidebar-minimize-hover-box-shadow-mobile); + } + + [data-kt-app-sidebar-collapse-mobile="on"] & { + transition: $app-sidebar-base-transition; + width: var(--#{$prefix}app-sidebar-width-actual); + margin-left: calc( -1 * var(--#{$prefix}app-sidebar-width-actual)); + } + } + + // Utilities + [data-kt-app-sidebar-minimize-mobile="on"] { + .app-sidebar-minimize-mobile-d-none { + display: none !important; + } + + .app-sidebar-minimize-mobile-d-flex { + display: flex !important; + } + } + + [data-kt-app-sidebar-collapse-mobile="on"] { + .app-sidebar-collapse-mobile-d-none { + display: none !important; + } + + .app-sidebar-collapse-mobile-d-flex { + display: flex !important; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_apexcharts.scss b/src/_metronic/assets/sass/core/vendors/plugins/_apexcharts.scss new file mode 100644 index 0000000..73f9bbc --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_apexcharts.scss @@ -0,0 +1,129 @@ +// +// Apexcharts +// + +// Text +.apexcharts-text, +.apexcharts-title-text, +.apexcharts-legend-text { + font-family: $font-family-sans-serif !important; +} + +.apexcharts-title-text { + font-weight: $font-weight-normal; +} + +.apexcharts-pie-label { + font-weight: $font-weight-normal; + font-size: $font-size-sm; +} + +// Dropdown +.apexcharts-toolbar{ + text-align: left !important; +} + +.apexcharts-menu { + background: var(--#{$prefix}body-bg) !important; + border: 0 !important; + padding: 0.5rem 0 !important; + box-shadow: var(--#{$prefix}dropdown-box-shadow); + border-radius: $border-radius !important; + overflow: hidden; + min-width: 10rem !important; + + .apexcharts-menu-item { + padding: $dropdown-item-padding-y $dropdown-item-padding-x; + transition: $transition-base; + + &:hover{ + background-color: var(--#{$prefix}component-hover-bg) !important; + } + } +} + +// Tooltips +.apexcharts-tooltip { + &.apexcharts-theme-light { + @include border-radius($border-radius); + box-shadow: var(--#{$prefix}dropdown-box-shadow); + border: 0 !important; + background: var(--#{$prefix}body-bg) !important; + color: var(--#{$prefix}gray-800); + + .apexcharts-tooltip-title { + background: var(--#{$prefix}body-bg) !important; + font-weight: $font-weight-semibold; + color: var(--#{$prefix}gray-800); + border-bottom: 1px solid var(--#{$prefix}gray-100) !important; + } + } + + .apexcharts-tooltip-title { + padding: 0.5rem 1rem; + } + + .apexcharts-tooltip-series-group { + } +} + +.apexcharts-xaxistooltip { + &.apexcharts-theme-light { + @include border-radius($border-radius !important); + box-shadow: var(--#{$prefix}dropdown-box-shadow) !important; + border: 0 !important; + background: var(--#{$prefix}dropdown-box-shadow) !important; + color: var(--#{$prefix}gray-800); + + &:before { + border-bottom: 0 !important; + } + + &:after { + border-bottom-color: var(--#{$prefix}dropdown-box-shadow) !important; + } + } +} + +// Border radius integration +.card-rounded-bottom { + .apexcharts-canvas { + svg { + border-bottom-left-radius: $card-border-radius; + border-bottom-right-radius: $card-border-radius; + } + } +} + +// Border radius options +.rounded { + .apexcharts-canvas { + svg { + border-radius: $border-radius !important; + } + } +} + +.rounded-sm { + .apexcharts-canvas { + svg { + border-radius: $border-radius-sm !important; + } + } +} + +.rounded-lg { + .apexcharts-canvas { + svg { + border-radius: $border-radius-lg !important; + } + } +} + +.rounded-xl { + .apexcharts-canvas { + svg { + border-radius: $border-radius-xl !important; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_bootstrap-maxlength.scss b/src/_metronic/assets/sass/core/vendors/plugins/_bootstrap-maxlength.scss new file mode 100644 index 0000000..a450979 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_bootstrap-maxlength.scss @@ -0,0 +1,16 @@ +// +// Bootstrap Maxlength +// + +.bootstrap-maxlength { + z-index: $bootstrap-maxlength-z-index !important; + + // In modal + .modal-open & { + z-index: #{$zindex-modal + 5} !important; + } + + &.badge { + display: inline-flex !important; + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_ckeditor.scss b/src/_metronic/assets/sass/core/vendors/plugins/_ckeditor.scss new file mode 100644 index 0000000..a659b74 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_ckeditor.scss @@ -0,0 +1,54 @@ +// +// CKEditor +// + + +// Base +.ck-target{ + display: none; +} + +.ck-toolbar{ + @include border-radius($border-radius !important); +} + +.ck-content{ + min-height: 200px; + @include border-radius($border-radius !important); + + &.ck-focused{ + border-color: var(--#{$prefix}primary) !important; + box-shadow: none !important; + } +} + +// CKEditor Classic & Document +.ck-editor{ + .ck-toolbar{ + @include border-top-radius($border-radius !important); + @include border-bottom-radius(0 !important); + } + .ck-content{ + @include border-bottom-radius($border-radius !important); + @include border-top-radius(0 !important); + } +} + +// CKEditor Inline / Balloon / Balloon Block +.ck-body { + .ck-balloon-panel{ + .ck-content{ + min-height: 200px; + border-color: transparent !important; + + &.ck-focused{ + border-color: var(--#{$prefix}primary) !important; + } + } + + &.ck-toolbar-container, + .ck-toolbar { + @include border-radius($border-radius !important); + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_datatables.scss b/src/_metronic/assets/sass/core/vendors/plugins/_datatables.scss new file mode 100644 index 0000000..dc44e20 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_datatables.scss @@ -0,0 +1,292 @@ +// +// DataTables +// + +$toolbar-spacing: 1rem 0; + +// Base +table.dataTable { + width: 100% !important; + margin: 0 !important; + + th { + border-bottom-color: var(--#{$prefix}table-border-color); + } +} + +// Toolbar +div.dataTables_wrapper div.dataTables_length { + padding: $toolbar-spacing; +} + +div.dataTables_wrapper div.dataTables_filter { + padding: $toolbar-spacing; +} + +div.dataTables_wrapper div.dataTables_info { + display: flex; + flex-direction: column; + font-weight: $font-weight-semibold; + color: var(--#{$prefix}gray-700); + padding: $toolbar-spacing; + + .select-info, + .select-item { + margin-left: 0; + font-size: 0.9rem; + color: var(--#{$prefix}text-muted); + } +} + +div.dataTables_length + div.dataTables_info { + margin-left: 1rem; +} + +// Pagination +div.dataTables_wrapper div.dataTables_paginate { + padding: $toolbar-spacing; + margin-left: 0.5rem; + + .pagination { + margin: 0; + } +} + +// Head +table.dataTable>thead>tr> { + td, th { + &:not(.sorting_disabled) { + padding-right: 0; + } + } +} + +// Sorting +table.dataTable > thead { + .sorting { + &:after, + &:before { + display: none !important; + } + } + + .sorting_asc, + .sorting_desc { + vertical-align: middle; + + &:before, + &:after { + position: relative !important; + opacity: 1 !important; + display: inline-block !important; + width: 0.75rem; + height: 0.75rem; + content: " " !important; + //top: 50%; + bottom: auto; + right: auto !important; + left: auto; + margin-left: 0.5rem; + } + + &:before { + display: none !important; + } + } +} + +table.dataTable > thead .sorting_asc:after { + opacity: 1; + @include svg-bg-icon(arrow-top, var(--#{$prefix}text-muted)); +} + +table.dataTable > thead .sorting_desc:after { + opacity: 1; + @include svg-bg-icon(arrow-bottom, var(--#{$prefix}text-muted)); +} + +// Processing +div.dataTables_wrapper { + .table-responsive { + position: relative; + } + + div.dataTables_processing { + @include border-radius($border-radius); + box-shadow: var(--#{$prefix}dropdown-box-shadow); + background-color: $tooltip-bg; + color: var(--#{$prefix}gray-700); + font-weight: $font-weight-semibold; + margin: 0 !important; + width: auto; + padding: 1rem 2rem !important; + transform: translateX(-50%) translateY(-50%); + + > div { + display: none; + } + } +} + +// Responsive +table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control, +table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control, +table.dataTable.dtr-column.collapsed > tbody > tr > td.dtr-control, +table.dataTable.dtr-column.collapsed > tbody > tr > th.dtr-control { + $icon-size: 1.35rem; + + &:before { + top: 50%; + left: 0; + height: $icon-size; + width: $icon-size; + line-height: 1.5; + text-indent: -999px !important; + margin-top: -(divide($icon-size, 2)); + margin-right: divide($icon-size, 2); + display: inline-block; + position: relative; + font-size: 1.05rem; + border: 0; + box-shadow: none; + mask-size: 85%; + -webkit-mask-size: 85%; + content: "."; + + :root &, + [data-bs-theme="light"] & { + @include svg-bg-icon(expand, $gray-600); + } + + [data-bs-theme="dark"] & { + @include svg-bg-icon(expand, $gray-600-dark); + } + } + + &.dtr-control-last { + &:before { + left: 100%; + right: 0; + } + } +} + +table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before, +table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before, +table.dataTable.dtr-column.collapsed > tbody > tr.parent > td.dtr-control:before, +table.dataTable.dtr-column.collapsed > tbody > tr.parent > th.dtr-control:before { + @include svg-bg-icon(collapse, $primary); +} + +table.dataTable > tbody > tr.child span.dtr-title { + display: inline-block; + min-width: 100px; + font-weight: $font-weight-semibold; +} + +table.dataTable > tbody > tr.child span.dtr-data { + font-weight: $font-weight-normal; +} + +// Striped +table.dataTable.table-striped > tbody > tr.odd > * { + box-shadow: inset 0 0 0 9999px var(--#{$prefix}table-striped-bg); +} + +table.dataTable > tbody > tr.selected > * { + box-shadow: inset 0 0 0 9999px var(--#{$prefix}primary); + color: var(--#{$prefix}primary-inverse); + + a:not([class="btn"]) { + color: var(--#{$prefix}primary-light); + font-weight: $font-weight-semibold; + text-decoration: underline; + text-decoration-style: dotted; + + &:hover { + color: var(--#{$prefix}primary-inverse); + } + } +} + +// Scroll +div.dataTables_scrollBody { + border-left: 0 !important; + + .sorting_disabled.sorting_asc, + .sorting_disabled.sorting_desc { + &:after { + display: none !important; + } + } +} + +.dataTables_scroll > .dataTables_scrollBody > .table > thead { + line-height: 0; + + .sorting { + &:after, + &:before { + display: none !important; + } + } +} + +div.dtfc-right-top-blocker, +div.dtfc-left-top-blocker { + background-color: var(--#{$prefix}body-bg); +} + +// Fixed column +table.dataTable thead tr > .dtfc-fixed-left, +table.dataTable thead tr > .dtfc-fixed-right { + background-color: var(--#{$prefix}body-bg); +} + +table.dataTable tbody tr > .dtfc-fixed-left, +table.dataTable tbody tr > .dtfc-fixed-right { + background-color: var(--#{$prefix}body-bg); +} + +// Fixed header +.dtfh-floatingparent { + box-shadow: var(--#{$prefix}box-shadow-sm); + + .table { + background-color: var(--#{$prefix}body-bg) !important; + } + + &, + .table, + .table th { + border-top-left-radius: 0 !important; + border-top-right-radius: 0 !important; + } +} + +// Child details +.dtr-details { + display: table !important; + + li { + display: table-row !important; + + .dtr-title { + padding-right: 0.75rem; + color: var(--#{$prefix}gray-900); + } + + .dtr-data { + color: var(--#{$prefix}gray-700); + } + + .dtr-title, + .dtr-data { + font-size: 1rem; + padding-top: 0.25rem; + padding-bottom: 0.25rem; + display: table-cell !important; + border-bottom: 1px solid var(--#{$prefix}border-color); + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_daterangepicker.scss b/src/_metronic/assets/sass/core/vendors/plugins/_daterangepicker.scss new file mode 100644 index 0000000..b949fe6 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_daterangepicker.scss @@ -0,0 +1,272 @@ +// +// Bootstrap Daterangepicker plugin customization: https://www.daterangepicker.com +// + + +// Base +.daterangepicker { + padding: 0; + margin: 0; + border: 0; + width: auto; + background-color: var(--#{$prefix}body-bg); + box-shadow: var(--#{$prefix}dropdown-box-shadow); + font-family: $font-family-sans-serif; + z-index: $zindex-dropdown; + @include border-radius($dropdown-border-radius); + + &:after, + &:before { + display: none; + } + + td { + &.off, + &.off.in-range, + &.off.start-date, + &.off.end-date { + background-color: transparent; + } + } + + .modal-open & { + z-index: $zindex-modal + 1; + } + + .calendar-table { + background-color: var(--#{$prefix}body-bg); + border: 0; + } + + .ranges { + @include border-radius($dropdown-border-radius); + background-color: var(--#{$prefix}body-bg); + position: relative; + overflow: hidden; + + ul { + padding: 1rem 0; + width: $daterangepicker-ranges-list-width; + overflow: auto; + max-height: $daterangepicker-ranges-list-height; + } + + li { + padding: 0.7rem 1.75rem; + font-weight: 500; + font-size: 1rem; + color: var(--#{$prefix}gray-600); + transition: $transition-link; + + &:hover { + background-color: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + transition: $transition-link; + } + + &.active { + background-color: var(--#{$prefix}component-active-bg); + color: var(--#{$prefix}component-active-color); + transition: $transition-link; + } + } + } + + &.show-calendar { + .ranges { + @include border-radius(0); + @include border-top-start-radius($dropdown-border-radius); + margin-top: 0; + height: 297px; + } + } + + &.show-ranges { + &.show-calendar { + .ranges { + border-right: 1px solid var(--#{$prefix}gray-200); + } + } + + .drp-calendar.left { + border-left: 0; + } + } + + .drp-buttons { + padding: 1rem 1.75rem; + border-top: 1px solid var(--#{$prefix}gray-200); + + .btn { + font-size: 1rem; + font-weight: $font-weight-semibold; + padding: 0.5rem 1rem; + } + + .cancelBtn { + @include button-custom-variant( + $color: var(--#{$prefix}light-inverse), + $icon-color: var(--#{$prefix}light-inverse), + $border-color: var(--#{$prefix}light), + $bg-color: var(--#{$prefix}light), + $color-active: var(--#{$prefix}light-inverse), + $icon-color-active: var(--#{$prefix}light-inverse), + $border-color-active: var(--#{$prefix}light-active), + $bg-color-active: var(--#{$prefix}light-active) + ); + } + } + + .drp-selected { + font-size: 0.9rem; + } + + .drp-calendar { + &.left, + &.right { + padding: 1rem 1rem; + } + + &.left { + border-left: 0 !important; + } + + th, + td { + font-size: 1rem; + font-weight: $font-weight-normal; + width: 33px; + height: 33px; + + &.available:hover { + @include border-radius($border-radius); + background-color: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + } + } + + th { + font-weight: $font-weight-semibold; + color: var(--#{$prefix}gray-800); + + &.month { + font-weight: $font-weight-semibold; + color: var(--#{$prefix}gray-800); + } + + &.next, + &.prev { + span { + border-width: 0 1px 1px 0; + border-color: var(--#{$prefix}gray-600); + } + + &.available:hover { + span { + border-color: var(--#{$prefix}component-hover-color); + } + } + } + + &.next { + span { + margin-right: 1px; + } + } + + &.prev { + span { + margin-left: 1px; + } + } + } + + td { + color: var(--#{$prefix}gray-700); + + &.available.off { + color: var(--#{$prefix}gray-500); + } + + &.active { + background-color: var(--#{$prefix}component-active-bg) !important; + color: var(--#{$prefix}component-active-color) !important; + @include border-radius($border-radius); + + &.start-date { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + + &.end-date { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + + &.start-date.end-date { + @include border-radius($border-radius); + } + } + + &.today, + &.today.active { + background: var(--#{$prefix}gray-200) !important; + color: var(--#{$prefix}gray-700) !important; + @include border-radius($border-radius); + } + + &.in-range.available:not(.active):not(.off):not(.today) { + background-color: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + } + + &:hover { + background-color: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + } + } + } + + select.ampmselect, + select.minuteselect, + select.hourselect, + select.monthselect, + select.yearselect { + padding-top: 0.35rem; + padding-bottom: 0.35rem; + @include border-radius($border-radius); + background-color: var(--#{$prefix}body-bg) !important; + border-color: transparent; + color: var(--#{$prefix}input-color); + font-weight: $font-weight-semibold; + outline: 0 !important; + + &:focus { + background-color: var(--#{$prefix}gray-100); + } + } +} + +// Tablet mode +@include media-breakpoint-down(md) { + .daterangepicker { + &.show-calendar { + .ranges { + float: none !important; + height: auto !important; + + ul { + width: 100%; + } + } + + .drp-calendar { + float: none !important; + max-width: unset !important; + display: flex; + flex-direction: column; + align-items: center; + } + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_draggable.scss b/src/_metronic/assets/sass/core/vendors/plugins/_draggable.scss new file mode 100644 index 0000000..9fe051b --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_draggable.scss @@ -0,0 +1,28 @@ +// +// Draggable plugin customization: https://shopify.github.io/draggable +// + +.draggable { + transition: opacity 0.3s ease; + outline: none !important; + + &.draggable-mirror { + opacity: 0.8; + transition: opacity 0.3s ease; + border: 1px dashed var(--#{$prefix}gray-300) !important; + @include border-radius($border-radius); + } + + &.draggable--original { + opacity: 0 !important; + } + + &.draggable-source--is-dragging.draggable--over { + opacity: 0 !important; + } + + // Handle + .draggable-handle { + cursor: move; + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_dropzone.scss b/src/_metronic/assets/sass/core/vendors/plugins/_dropzone.scss new file mode 100644 index 0000000..56231bd --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_dropzone.scss @@ -0,0 +1,188 @@ +// +// Dropzone plugin customization: https://www.dropzonejs.com +// + +// Basic +.dropzone { + min-height: auto; + padding: 1.5rem 1.75rem; + text-align: center; + cursor: pointer; + border: 1px dashed var(--#{$prefix}primary); + background-color: var(--#{$prefix}primary-light); + border-radius: $border-radius !important; + + .dz-message{ + margin: 0; + display: flex; + text-align: left; + } + + .dz-preview { + border-radius: $border-radius !important; + margin: 0.75rem; + + .dz-image { + border-radius: $border-radius !important; + z-index: 1; + } + + &.dz-file-preview { + .dz-image { + background: var(--#{$prefix}gray-200); + } + } + } + + .dz-success-mark, + .dz-error-mark { + $size: 40px; + + margin-left: -(divide($size, 2)) !important; + margin-top: -(divide($size, 2)) !important; + + svg { + height: $size !important; + width: $size !important; + } + } + + .dz-remove { + $size: 1.65rem; + display:flex; + justify-content: center; + align-items: center; + height: $size; + width: $size; + font-size: 1rem; + text-indent: -9999px; + white-space: nowrap; + position: absolute; + z-index: 2; + background-color: var(--#{$prefix}body-bg) !important; + box-shadow: var(--#{$prefix}box-shadow); + border-radius: 100%; + top: -(divide($size,2)); + right: -(divide($size,2)); + + &:after { + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; + display: block; + content: ""; + mask-size: 40%; + -webkit-mask-size: 40%; + @include svg-bg-icon(close, var(--#{$prefix}gray-600)); + } + + &:hover { + &:after { + @include svg-bg-icon(close, var(--#{$prefix}primary)); + } + } + } + + .dz-error-message { + color: var(--#{$prefix}danger-inverse); + background: var(--#{$prefix}danger); + } +} + +// Queue upload +.dropzone.dropzone-queue { + border: 0; + padding: 0; + background-color: transparent; + text-align: left; + + .dz-message{ + display: none; + } + + .dropzone-panel { + .dropzone-upload, + .dropzone-remove-all{ + display: none; + } + } + + .dropzone-item { + display: flex; + align-items: center; + margin-top: 0.75rem; + @include border-radius($border-radius); + padding: 0.5rem 1rem; + background-color: var(--#{$prefix}gray-100); + + .dropzone-file { + flex-grow: 1; + + .dropzone-filename { + font-size: 0.9rem; + font-weight: 500; + color: var(--#{$prefix}gray-600); + text-overflow: ellipsis; + margin-right: 0.5rem; + + &:hover { + color: var(--#{$prefix}primary); + } + } + + .dropzone-error { + margin-top: 0.25rem; + font-size: 0.9rem; + font-weight: 400; + color: var(--#{$prefix}danger); + text-overflow: ellipsis; + } + } + + .dropzone-progress { + width: 15%; + + .progress { + height: 5px; + @include transition; + } + } + + .dropzone-toolbar { + margin-left: 1rem; + display: flex; + flex-wrap: nowrap; + + .dropzone-start, + .dropzone-cancel, + .dropzone-delete { + height: 25px; + width: 25px; + display: inline-flex; + align-items: center; + justify-content: center; + cursor: pointer; + transition: $transition-link; + + > i { + transition: $transition-link; + font-size: 0.8rem; + color: var(--#{$prefix}gray-600); + } + + &:hover { + transition: $transition-link; + > i { + color: var(--#{$prefix}primary); + } + } + } + + .dropzone-start{ + transition: $transition-link; + } + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_flatpickr.scss b/src/_metronic/assets/sass/core/vendors/plugins/_flatpickr.scss new file mode 100644 index 0000000..75fc85c --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_flatpickr.scss @@ -0,0 +1,407 @@ +// +// Flatpickr +// + +$flatpickr-padding-y: 0.5rem; +$flatpickr-padding-x: 1rem; +$flatpickr-width: 280px; +$flatpickr-width-week-numbers: 325px; +$flatpickr-day-height: 36px; +$flatpickr-day-width: 100%; +$flatpickr-time-height: 46px; + +// Container +.flatpickr-calendar { + width: $flatpickr-width !important; + font-family: inherit; + border: 0; + border-radius: 0; + box-shadow: var(--#{$prefix}dropdown-box-shadow); + background-color: var(--#{$prefix}body-bg); + @include border-radius($dropdown-border-radius); + + // Remow arrows + &:before, + &:after { + display: none; + } + + // Week numbers + &.hasWeeks { + width: $flatpickr-width-week-numbers !important; + } +} + +// Months container +.flatpickr-months { + padding: 0 $flatpickr-padding-x; + padding-top: $flatpickr-padding-y; +} + +// Inner container +.flatpickr-innerContainer { + padding: $flatpickr-padding-y $flatpickr-padding-x; +} + +// Day containers +.flatpickr-days, +.dayContainer { + width: 100% !important; + min-width: 100% !important; + max-width: 100% !important; +} + +// Months +.flatpickr-months { + .flatpickr-month { + background: transparent; + color: var(--#{$prefix}gray-600); + fill: var(--#{$prefix}gray-600); + height: 46px; + } + + .flatpickr-prev-month, + .flatpickr-next-month { + display: flex; + align-items: center; + justify-content: center; + @include border-radius($border-radius); + top: 1rem; + + svg { + fill: var(--#{$prefix}gray-500); + height: 13px; + width: 13px; + } + + &:hover { + background: var(--#{$prefix}gray-100); + + svg { + fill: var(--#{$prefix}gray-700); + } + } + } + + .flatpickr-prev-month.flatpickr-prev-month, + .flatpickr-next-month.flatpickr-prev-month { + /*rtl:begin:ignore*/ + left: $flatpickr-padding-x; + /*rtl:end:ignore*/ + } + + .flatpickr-prev-month.flatpickr-next-month, + .flatpickr-next-month.flatpickr-next-month { + /*rtl:begin:ignore*/ + right: $flatpickr-padding-x; + /*rtl:end:ignore*/ + } +} + +// Month selector +.flatpickr-current-month { + font-weight: $font-weight-semibold; + color: inherit; + + .numInputWrapper { + @include border-radius($border-radius); + width: 65px; + + span { + &.arrowUp { + @include border-top-end-radius($border-radius); + } + + &.arrowDown { + @include border-bottom-end-radius($border-radius); + } + } + } + + .flatpickr-monthDropdown-months { + border: 0 !important; + background-color: var(--#{$prefix}body-bg); + font-size: 1rem; + color: var(--#{$prefix}gray-700); + font-weight: $font-weight-semibold; + padding: 0.5rem 0.75rem; + margin-right: 0.5rem; + outline: none !important; + @include border-radius($border-radius); + appearance: none; + -moz-appearance: none; + -webkit-appearance: none; + + &:hover { + background: var(--#{$prefix}gray-100); + } + + .flatpickr-monthDropdown-month { + font-size: 1rem; + color: var(--#{$prefix}gray-700); + font-weight: $font-weight-semibold; + background-color: transparent; + outline: none; + padding: 0; + } + } + + span.cur-month { + color: var(--#{$prefix}gray-700); + font-size: 1rem; + font-weight: $font-weight-semibold; + + &:hover { + background: var(--#{$prefix}gray-100); + } + } + + input.cur-year { + color: var(--#{$prefix}gray-700); + font-size: 1.1rem !important; + padding: 0.5rem 0.75rem; + font-weight: $font-weight-semibold; + outline: 0 !important; + } +} + +// Week days +span.flatpickr-weekday { + color: var(--#{$prefix}gray-800); + font-size: 1rem; + font-weight: $font-weight-bold; +} + +// Time +.flatpickr-time { + @include border-bottom-radius($border-radius); + + .flatpickr-calendar.hasTime & { + height: height; + line-height: height; + max-height: height; + border-top: 1px solid var(--#{$prefix}gray-100); + } + + .numInputWrapper { + height: height; + } + + .flatpickr-am-pm { + color: var(--#{$prefix}gray-700); + font-size: 1rem; + font-weight: $font-weight-semibold; + } + + input { + &.flatpickr-hour, + &.flatpickr-minute { + color: var(--#{$prefix}gray-700); + font-size: 1rem; + font-weight: $font-weight-semibold; + } + } + + input:hover, + .flatpickr-am-pm:hover, + input:focus, + .flatpickr-am-pm:focus { + background: transparent; + } +} + +// Number input +.numInputWrapper { + span { + border-left: 0 !important; + border-top: 0 !important; + border-bottom: 0 !important; + border-right: 0 !important; + + &:hover { + background: transparent !important; + } + + &:after { + top: 50% !important; + transform: translateY(-50%); + } + + &.arrowUp { + &:after { + border-bottom-color: var(--#{$prefix}gray-500) !important; + } + + &:hover { + &:after { + border-bottom-color: var(--#{$prefix}gray-700) !important; + } + } + } + + &.arrowDown { + &:after { + border-top-color: var(--#{$prefix}gray-500) !important; + } + + &:hover { + &:after { + border-top-color: var(--#{$prefix}gray-700) !important; + } + } + } + } + + &:hover { + background: transparent; + } +} + +// Day +.flatpickr-day { + font-size: 1rem; + @include border-radius($border-radius); + box-shadow: none !important; + height: $flatpickr-day-height; + width: $flatpickr-day-width; + max-width: 100% !important; + margin: 0; + line-height: $flatpickr-day-height; + color: var(--#{$prefix}gray-600); + margin-top: 0 !important; + + &.inRange, + &.prevMonthDay.inRange, + &.nextMonthDay.inRange, + &.today.inRange, + &.prevMonthDay.today.inRange, + &.nextMonthDay.today.inRange, + &:hover, + &.prevMonthDay:hover, + &.nextMonthDay:hover, + &:focus, + &.prevMonthDay:focus, + &.nextMonthDay:focus { + cursor: pointer; + outline: 0; + background: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + border-color: transparent; + } + + // Today + &.today { + background: var(--#{$prefix}gray-100); + color: var(--#{$prefix}gray-600); + border-color: transparent; + + &:hover, + &:focus { + border-color: transparent; + background: var(--#{$prefix}gray-200); + color: var(--#{$prefix}gray-700); + } + } + + // Selected + &.selected, + &.startRange, + &.endRange, + &.selected.inRange, + &.startRange.inRange, + &.endRange.inRange, + &.selected:focus, + &.startRange:focus, + &.endRange:focus, + &.selected:hover, + &.startRange:hover, + &.endRange:hover, + &.selected.prevMonthDay, + &.startRange.prevMonthDay, + &.endRange.prevMonthDay, + &.selected.nextMonthDay, + &.startRange.nextMonthDay, + &.endRange.nextMonthDay { + background: var(--#{$prefix}component-active-bg); + color: var(--#{$prefix}component-active-color);; + border-color: transparent; + } + + &.inRange, + &.prevMonthDay.inRange, + &.nextMonthDay.inRange, + &.today.inRange, + &.prevMonthDay.today.inRange, + &.nextMonthDay.today.inRange, + &:hover, + &.prevMonthDay:hover, + &.nextMonthDay:hover, + &:focus, + &.prevMonthDay:focus, + &.nextMonthDay:focus { + cursor: pointer; + outline: 0; + background: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + border-color: transparent; + } + + // Today + &.today { + border-color: transparent; + } + + &.today:hover, + &.today:focus { + border-color: transparent; + background: var(--#{$prefix}gray-100); + color: var(--#{$prefix}gray-600); + } + + // Selected + &.selected, + &.startRange, + &.endRange, + &.selected.inRange, + &.startRange.inRange, + &.endRange.inRange, + &.selected:focus, + &.startRange:focus, + &.endRange:focus, + &.selected:hover, + &.startRange:hover, + &.endRange:hover, + &.selected.prevMonthDay, + &.startRange.prevMonthDay, + &.endRange.prevMonthDay, + &.selected.nextMonthDay, + &.startRange.nextMonthDay, + &.endRange.nextMonthDay { + background: var(--#{$prefix}component-active-bg); + color: var(--#{$prefix}component-active-color);; + border-color: transparent; + } + + // Disabled + &.flatpickr-disabled, + &.flatpickr-disabled:hover, + &.prevMonthDay, + &.nextMonthDay, + &.notAllowed, + &.notAllowed.prevMonthDay, + &.notAllowed.nextMonthDay { + color: var(--#{$prefix}gray-500); + background: transparent; + border-color: transparent; + } + &.flatpickr-disabled, + &.flatpickr-disabled:hover { + cursor: not-allowed; + color: var(--#{$prefix}gray-500); + } +} + +// Week numbers +.flatpickr-weekwrapper { + margin-right: 5px; +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_formvalidation.scss b/src/_metronic/assets/sass/core/vendors/plugins/_formvalidation.scss new file mode 100644 index 0000000..91d798a --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_formvalidation.scss @@ -0,0 +1,20 @@ +// +// FormValidation Customization. More info: https://formvalidation.io/ +// + +.fv-plugins-message-container { + --input-invalid-color: var(--#{$prefix}danger); + margin-top: 0.3rem; + + .fv-help-block { + color: var(--#{$prefix}danger); + font-size: 1rem; + font-weight: $font-weight-normal; + } + + &.valid-feedback, + &.invalid-feedback { + display: block; + font-weight: $font-weight-normal; + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_fslightbox.scss b/src/_metronic/assets/sass/core/vendors/plugins/_fslightbox.scss new file mode 100644 index 0000000..a9390cf --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_fslightbox.scss @@ -0,0 +1,11 @@ +// +// fslightbox +// + +.fslightbox-slide-btn { + border-radius: $border-radius; +} + +.fslightbox-toolbar { + border-bottom-left-radius: $border-radius; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_fullcalendar.scss b/src/_metronic/assets/sass/core/vendors/plugins/_fullcalendar.scss new file mode 100644 index 0000000..1b67c5e --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_fullcalendar.scss @@ -0,0 +1,297 @@ +// +// Fullcalendar plugin customization: https://fullcalendar.io/ +// + +body { + --fc-event-border-color: var(--#{$prefix}primary); + --fc-event-bg-color: var(--#{$prefix}primary); + --fc-event-text-color: var(--#{$prefix}primary-inverse); +} + +// Base +.fc { + // Border color + --fc-border-color: #{var(--#{$prefix}gray-200)}; + --fc-page-bg-color: #{$white}; + --fc-small-font-size: 0.95rem; + + // General + --fc-highlight-color: var(--#{$prefix}light); + //--fc-non-business-color: + //--fc-bg-event-color: + --fc-bg-event-opacity: 0.3; + --fc-neutral-bg-color: var(--#{$prefix}light); + //--fc-event-selected-overlay-color: + --fc-today-bg-color: var(--#{$prefix}success-light); + //--fc-neutral-bg-color: + //--fc-neutral-text-color: + //--fc-more-link-text-color: + //--fc-more-link-bg-color: + --fc-now-indicator-color: var(--#{$prefix}danger); + --fc-list-event-hover-bg-color: var(--#{$prefix}light); + + // Buttons + --fc-button-text-color: var(--#{$prefix}gray-600); + --fc-button-bg-color: var(--#{$prefix}gray-100); + --fc-button-border-color: var(--#{$prefix}gray-100); + + --fc-button-hover-bg-color: var(--#{$prefix}gray-100); + --fc-button-hover-border-color: var(--#{$prefix}gray-100); + + --fc-button-active-bg-color: var(--#{$prefix}gray-200); + --fc-button-active-border-color: var(--#{$prefix}gray-200); + + // Table + table { + font-size: 1rem; + } + + // Button + .fc-button { + padding: 0.75rem 1.25rem; + box-shadow: none !important; + border: 0 !important; + border-radius: $btn-border-radius; + vertical-align: middle; + font-weight: $font-weight-semibold; + text-transform: capitalize; + } + + // Primary button + .fc-button-primary { + margin: 0; + + // Icon + .fc-icon { + font-size: 1.35rem; + margin-bottom: 0.15rem; + } + + &:not(:disabled):not(.fc-button-active) { + &:focus, + &:hover, + &:active { + color: var(--#{$prefix}gray-900); + + .fc-icon { + color: var(--#{$prefix}gray-900); + } + } + } + + &:not(:disabled).fc-button-active { + color: var(--#{$prefix}gray-900); + + .fc-icon { + color: var(--#{$prefix}gray-900); + } + } + } + + // Button group + .fc-button-group { + .fc-button { + margin: 0 !important; + } + } + + // Toolbar title + .fc-toolbar-title { + font-size: 1.5rem; + font-weight: $font-weight-bold; + color: var(--#{$prefix}gray-800); + } + + // Header cell + .fc-col-header-cell { + padding: 0.75rem 0.5rem; + + .fc-col-header-cell-cushion { + font-size: 1.1rem; + font-weight: $font-weight-semibold; + color: var(--#{$prefix}gray-800); + } + } + + // Border radius + .fc-scrollgrid { + @include border-radius($border-radius); + + thead > tr { + td:first-child { + @include border-top-start-radius($border-radius); + } + + td:last-child { + @include border-top-end-radius($border-radius); + } + } + + tbody > tr:last-child { + td:first-child { + @include border-bottom-start-radius($border-radius); + } + + td:last-child { + @include border-bottom-end-radius($border-radius); + } + } + } + + // Event + .fc-daygrid-event { + margin-top: 3px; + } + + // Event title + .fc-daygrid-dot-event, + .fc-daygrid-block-event { + .fc-event-title, + .fc-event-time { + padding: 0.25rem 0.25rem; + } + } + + // Day number + .fc-daygrid-day-number { + color: var(--#{$prefix}gray-800); + } + + // Dot event + .fc-daygrid-dot-event { + background-color: var(--#{$prefix}light); + color: var(--#{$prefix}gray-600); + + .fc-event-title { + font-weight: $font-weight-semibold; + } + + &:hover, + &.fc-event-mirror { + background-color: var(--#{$prefix}light); + color: var(--#{$prefix}primary); + } + } + + // Event dot + .fc-daygrid-event-dot { + margin-left: 0.5rem; + margin-right: 0.1rem; + } + + // Popover + .fc-popover { + border: 0 !important; + background-color: $tooltip-bg; + box-shadow: var(--#{$prefix}dropdown-box-shadow); + @include border-radius($dropdown-border-radius); + + .fc-popover-header { + @include border-top-radius($dropdown-border-radius); + padding: 0.65rem 0.75rem; + background-color: var(--#{$prefix}tooltip-bg); + + .fc-popover-title { + color: var(--#{$prefix}gray-800); + font-size: 1rem; + font-weight: $font-weight-semibold; + } + + .fc-popover-close { + font-size: 1rem; + color: var(--#{$prefix}gray-600); + + &:hover { + color: var(--#{$prefix}primary); + } + } + } + + .fc-popover-body { + padding: 0.5rem 0.75rem 0.75rem 0.75rem; + } + } + + // More link + .fc-daygrid-more-link { + font-weight: $font-weight-semibold; + } + + // Slot + .fc-timegrid-slot { + height: 2rem; + font-size: 0.95rem; + } + + // List + .fc-list-day-cushion, + .fc-list-table td { + padding: 0.85rem 1.15rem; + } + + .fc-list-day-text, + .fc-list-day-side-text { + font-size: 1.1rem; + color: var(--#{$prefix}gray-900); + font-weight: $font-weight-bold; + } + + .fc-list, + //.fc-scroller, + .fc-list-table { + @include border-radius($border-radius); + } + + .fc-list { + overflow: hidden; + position: relative; + } + + // Week + .fc-timegrid-axis { + padding-left: 0rem; + padding-right: 0; + } + + // Main + .fc-timegrid-event .fc-event-main { + padding: 0.25rem 0.25rem; + } + + // Indicator arrow + .fc-timegrid-now-indicator-arrow { + margin-top: -1px; + } +} + +// Event +.fc-h-event { + font-weight: $font-weight-normal; +} + +// Mobile mode +@include media-breakpoint-down(md) { + .fc { + // Header toolbar + .fc-header-toolbar { + flex-direction: column; + align-items: flex-start; + + .fc-toolbar-chunk { + &:nth-child(1), + &:nth-child(3) { + order: 2; + } + + &:nth-child(2) { + order: 1; + } + + &:nth-child(2), + &:nth-child(1) { + margin-bottom: 1rem; + } + } + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_gmaps.scss b/src/_metronic/assets/sass/core/vendors/plugins/_gmaps.scss new file mode 100644 index 0000000..0f9dd4c --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_gmaps.scss @@ -0,0 +1,18 @@ +// +// Gmaps Plugin +// + +.gmaps { + /* important! bootstrap sets max-width on img to 100% which conflicts with google map canvas*/ + img { + max-width: none; + } + + &.gmaps-static { + > div { + background-repeat: no-repeat ; + background-position: 50% 50% ; + display:block; + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_jkanban.scss b/src/_metronic/assets/sass/core/vendors/plugins/_jkanban.scss new file mode 100644 index 0000000..60b41e3 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_jkanban.scss @@ -0,0 +1,94 @@ +// +// Kanban Board +// + +// Variables +$kanban-spacer-y: 1.25rem; +$kanban-spacer-x: 1.25rem; + +.kanban-container { + width: 100% !important; + display: flex; + flex-wrap: wrap; + + .kanban-board { + float: none; + flex-shrink: 0; + margin-bottom: $kanban-spacer-y; + margin-right: $kanban-spacer-x !important; + background-color: var(--#{$prefix}gray-100); + @include border-radius($border-radius); + + &:last-child { + margin-right: 0 !important; + } + + .kanban-board-header { + @include border-top-start-radius($border-radius); + @include border-top-end-radius($border-radius); + + .kanban-title-board { + font-size: 1.2rem; + font-weight: 500; + color: var(--#{$prefix}gray-900); + } + + @each $name, $color in $theme-colors { + &.#{$name} { + background-color: var(--#{$prefix}#{$name}); + box-shadow: none; + + .kanban-title-board { + color: var(--#{$prefix}#{$name}-inverse); + } + } + + &.light-#{$name} { + color: rgba(var(--#{$prefix}#{$name}), 0.1); + box-shadow: none; + + .kanban-title-board { + color: var(--#{$prefix}#{$name}); + } + } + } + } + + .kanban-drag { + .kanban-item { + @include border-radius($border-radius); + box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.05); + background: var(--#{$prefix}body-bg); + + @each $name, $color in $theme-colors { + &[data-class="#{$name}"] { + background-color: var(--#{$prefix}#{$name}); + color: var(--#{$prefix}#{$name}-inverse); + box-shadow: none; + } + + &[data-class="light-#{$name}"] { + background-color: var(--#{$prefix}#{$name}-light); + color: var(--#{$prefix}#{$name}); + box-shadow: none; + } + } + } + } + + footer { + } + } +} + +// Fixed height +.kanban-fixed-height { + .kanban-container { + .kanban-board { + .kanban-drag { + position: relative; + overflow-y: auto; + } + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_jstree.scss b/src/_metronic/assets/sass/core/vendors/plugins/_jstree.scss new file mode 100644 index 0000000..82c472e --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_jstree.scss @@ -0,0 +1,150 @@ +// +// jsTree +// + +.jstree-default { + .jstree-anchor { + color: var(--#{$prefix}gray-700); + padding: 0 8px 0 4px; + } + + .jstree-icon { + color: var(--#{$prefix}gray-700); + + font-size: 1.3rem; + + &.la { + font-size: 1.5rem; + } + &.fa { + font-size: 1.2rem; + } + } + + .jstree-disabled { + cursor: not-allowed; + line-height: auto; + height: auto; + opacity: 0.7; + + .jstree-icon { + color: var(--#{$prefix}gray-700); + } + } + + .jstree-clicked { + border: 0; + background: var(--#{$prefix}gray-100); + box-shadow: none; + } + + .jstree-hovered { + border: 0; + background-color: var(--#{$prefix}gray-100); + box-shadow: none; + } + + .jstree-wholerow-clicked, + .jstree-wholerow-clicked { + background: var(--#{$prefix}gray-200); + box-shadow: none; + } + + .jstree-wholerow-hovered, + &.jstree-wholerow .jstree-wholerow-hovered { + border: 0; + background-color: var(--#{$prefix}gray-100); + box-shadow: none; + } +} + +.jstree-open>.jstree-anchor>.fa-folder:before { + margin-left: 2px; + content: "\f07c"; +} + +.jstree-open>.jstree-anchor>.la-folder:before { + margin-left: 2px; + content: "\f200"; +} + +.jstree-default.jstree-rtl .jstree-node { + background-position: 100% 1px#{'/*rtl:ignore*/'} !important; +} + +.jstree-default.jstree-rtl .jstree-last { + background: transparent #{'/*rtl:ignore*/'}; + background-repeat: no-repeat; +} + +.jstree-rtl .jstree-anchor { + padding: 0 4px 0 8px#{'/*rtl:ignore*/'}; +} + +// context menu +.vakata-context, +.vakata-context ul { + padding: 0.5rem 0; + min-width: 150px; + font-size: 1rem; + font-family: $font-family-base; + background: var(--#{$prefix}body-bg); + box-shadow: var(--#{$prefix}dropdown-box-shadow); + border: 0; + @include border-radius($border-radius); + + li { + padding: 0; + border: 0; + + a { + padding: 0rem 1.2rem; + border: 0; + //line-height: 2.2em; + + i { + display: none; + } + + .vakata-contextmenu-sep { + display: none; + } + + span, + ins { + display: none; + border: 0 !important; + } + } + } + + .vakata-context-hover>a, + li a:hover { + margin: 0; + background-color: var(--#{$prefix}gray-100); + color: var(--#{$prefix}primary); + box-shadow: none; + + .span, + .ins { + border: 0 !important; + } + } +} + +.vakata-context .vakata-context-separator a, +.vakata-context-rtl .vakata-context-separator a { + margin: 0; + border: 0; + height: 2px; + background-color: var(--#{$prefix}gray-200); +} + +.jstree-rename-input { + outline: none !important; + padding: 2px 6px !important; + margin-right: -4px !important; + background-color: var(--#{$prefix}gray-100) !important; + border: 1px solid var(--#{$prefix}gray-100) !important; + @include border-radius($border-radius); +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_keenicons.scss b/src/_metronic/assets/sass/core/vendors/plugins/_keenicons.scss new file mode 100644 index 0000000..23ace9e --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_keenicons.scss @@ -0,0 +1,12 @@ +// +// Keenicons +// + +.ki-duotone, +.ki-outline, +.ki-solid { + line-height: 1; + font-size: 1rem; + color: var(--#{$prefix}text-muted); +} + \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_leaflet.scss b/src/_metronic/assets/sass/core/vendors/plugins/_leaflet.scss new file mode 100644 index 0000000..56682a1 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_leaflet.scss @@ -0,0 +1,23 @@ +// +// leaflet +// + +.leaflet-container { + .leaflet-pane, + .leaflet-top, + .leaflet-bottom, + .leaflet-control { + z-index: 1 !important; + } + + .leaflet-popup-content-wrapper { + border-radius: $border-radius !important; + text-align: center; + box-shadow: var(--#{$prefix}box-shadow) !important; + + .leaflet-popup-content { + font-family: $font-family-sans-serif; + font-size: $font-size-base; + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_mixins.scss b/src/_metronic/assets/sass/core/vendors/plugins/_mixins.scss new file mode 100644 index 0000000..c22460e --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_mixins.scss @@ -0,0 +1,5 @@ +// +// Mixins +// + +@import "mixins/nouislider"; diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_nouislider.scss b/src/_metronic/assets/sass/core/vendors/plugins/_nouislider.scss new file mode 100644 index 0000000..405f9b0 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_nouislider.scss @@ -0,0 +1,103 @@ +// +// NoUiSlider +// + + +// Base +.noUi-target { + border: 0; + background: var(--#{$prefix}gray-100); + box-shadow:none; + + &.noUi-horizontal { + height: 15px; + + .noUi-handle { + width: 24px; + height: 24px; + top: -4.5px; + border-radius: 50%; + outline: none; + + &::before { + display: none; + } + + &::after { + display: none; + } + } + } + + &.noUi-vertical { + height: 150px; + width: 15px; + + .noUi-handle { + width: 24px; + height: 24px; + right: -4.5px; + border-radius: 50%; + outline: none; + + &::before { + display: none; + } + + &::after { + display: none; + } + } + } + + .noUi-connect { + background: var(--#{$prefix}component-active-bg); + } + + .noUi-handle { + background-color: $white; //var(--#{$prefix}body-bg); + border: 1px solid var(--#{$prefix}gray-200); + box-shadow:var(--#{$prefix}box-shadow-sm) + } + + // Small size + &.noUi-sm { + @include nouislider-size(6px, 20px, 20px, 7px); + } + + // Large size + &.noUi-lg { + @include nouislider-size(18px, 30px, 30px, 6px); + } +} + +// Theme colors +@each $name, $value in $theme-colors { + // NoUiSlider success color option + .noUi-target.noUi-target-#{$name} { + .noUi-connects { + background-color: var(--#{$prefix}#{$name}-light); + + .noUi-connect { + background-color: var(--#{$prefix}#{$name}); + } + } + + .noUi-handle { + border: 1px solid var(--#{$prefix}#{$name}); + box-shadow: 0 3px 6px -3px rgba(var(--#{$prefix}#{$name}), 0.7); + background-color: var(--#{$prefix}#{$name}); + } + } +} + +// Tooltip +.noUi-tooltip { + box-shadow: var(--#{$prefix}tooltip-box-shadow); + background: var(--#{$prefix}tooltip-bg); + color: var(--#{$prefix}tooltip-color); + font-size: $tooltip-font-size; + border: 0; + padding: 0.5rem 0.75rem; + @include border-radius($tooltip-border-radius); +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_plugins.angular.scss b/src/_metronic/assets/sass/core/vendors/plugins/_plugins.angular.scss new file mode 100644 index 0000000..0242e13 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_plugins.angular.scss @@ -0,0 +1,12 @@ +// +// Plugins +// + +// Import Dependencies +@import "root"; +@import "prismjs"; +@import "nouislider"; +@import "apexcharts"; +@import "fslightbox"; +@import "tiny-slider"; +@import "fullcalendar"; \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_plugins.react.scss b/src/_metronic/assets/sass/core/vendors/plugins/_plugins.react.scss new file mode 100644 index 0000000..0242e13 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_plugins.react.scss @@ -0,0 +1,12 @@ +// +// Plugins +// + +// Import Dependencies +@import "root"; +@import "prismjs"; +@import "nouislider"; +@import "apexcharts"; +@import "fslightbox"; +@import "tiny-slider"; +@import "fullcalendar"; \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_plugins.scss b/src/_metronic/assets/sass/core/vendors/plugins/_plugins.scss new file mode 100644 index 0000000..cf76d23 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_plugins.scss @@ -0,0 +1,34 @@ +// +// Plugins +// + +// Import Dependencies +@import "root"; +@import "prismjs"; +@import "fslightbox"; +@import "select2"; +@import "formvalidation"; +@import "daterangepicker"; +@import "flatpickr"; +@import "tagify"; +@import "bootstrap-maxlength"; +@import "ckeditor"; +@import "datatables"; +@import "dropzone"; +@import "gmaps"; +@import "nouislider"; +@import "quill"; +@import "recaptcha"; +@import "sweetalert2"; +@import "tinymce"; +@import "toastr"; +@import "draggable"; +@import "apexcharts"; +@import "leaflet"; +@import "tiny-slider"; +@import "fullcalendar"; +@import "jkanban"; +@import "jstree"; +@import "vis-timeline"; +@import "tempus-dominus"; +@import "keenicons"; \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_plugins.vue.scss b/src/_metronic/assets/sass/core/vendors/plugins/_plugins.vue.scss new file mode 100644 index 0000000..0242e13 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_plugins.vue.scss @@ -0,0 +1,12 @@ +// +// Plugins +// + +// Import Dependencies +@import "root"; +@import "prismjs"; +@import "nouislider"; +@import "apexcharts"; +@import "fslightbox"; +@import "tiny-slider"; +@import "fullcalendar"; \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_prismjs.scss b/src/_metronic/assets/sass/core/vendors/plugins/_prismjs.scss new file mode 100644 index 0000000..1e9b4eb --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_prismjs.scss @@ -0,0 +1,84 @@ +// +// Prismjs +// + +// Highlight +.highlight { + position: relative; + background: var(--#{$prefix}prismjs-bg); + border-radius: $border-radius; + padding: 1.75rem 1.5rem 1.75rem 1.5rem; + + // Tabs + .nav { + border-bottom: 1px solid var(--#{$prefix}prismjs-border); + padding-bottom: 1rem; + margin-bottom: 1rem; + margin-top: -0.25rem; + + .nav-item { + margin-right: 0.75rem; + } + + .nav-link { + font-size: 0.9rem; + font-weight: 500; + padding: 0.35rem 1rem; + border-radius: $border-radius; + color: var(--#{$prefix}prismjs-btn-color); + transition: $transition-base; + background-color: transparent; + + &:focus, + &.active { + transition: $transition-base; + background-color: var(--#{$prefix}prismjs-btn-bg-hover); + color: var(--#{$prefix}prismjs-btn-color-hover); + } + } + } + + .highlight-copy { + display: none; + position: absolute; + right: 1.75rem; + top: 1.5rem; + font-size: 0.85rem; + font-weight: 500; + padding: 0.35rem 1rem !important; + transition: $transition-base; + background-color: var(--#{$prefix}prismjs-btn-bg); + color: var(--#{$prefix}prismjs-btn-color); + + &:focus, + &:hover { + transition: $transition-base; + background-color: var(--#{$prefix}prismjs-btn-bg-hover); + color: var(--#{$prefix}prismjs-btn-color-hover); + } + } + + &:hover { + .highlight-copy { + display: flex; + } + } + + // Code + .highlight-code { + pre { + background-color: transparent; + overflow: auto; + padding: 0; + margin: 0; + + @include scrollbar-color( var(--#{$prefix}prismjs-scrollbar-color), var(--#{$prefix}prismjs-scrollbar-color-hover)); + + code[class*="language-"] { + padding: 0; + margin: 0; + font-size: 1rem !important; + } + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_quill.scss b/src/_metronic/assets/sass/core/vendors/plugins/_quill.scss new file mode 100644 index 0000000..ceab78c --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_quill.scss @@ -0,0 +1,196 @@ +// +// Quill +// + +// Base +.ql-toolbar { + font-family: $font-family-sans-serif; + + &.ql-snow { + border: 1px solid var(--#{$prefix}border-color); + @include border-top-radius($border-radius); + + .ql-picker, + button { + .ql-fill, + .ql-stroke { + stroke: var(--#{$prefix}gray-500); + } + + .ql-fill { + fill: var(--#{$prefix}gray-500); + } + + &.ql-expanded, + &.ql-active, + &:focus, + &:hover { + .ql-fill, + .ql-stroke { + stroke: var(--#{$prefix}primary); + } + + .ql-fill { + fill: var(--#{$prefix}primary); + } + } + } + } +} + +.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg { + right: 0; + + [direction="rtl"] &, + [dir="rtl"] & { + left: 0; + right: auto; + } +} + +.ql-editor { + color: var(--#{$prefix}input-color); + text-align: initial; + + &.ql-blank { + &:before { + left: auto !important; + right: auto !important; + color: var(--#{$prefix}text-muted) !important; + font-style: normal !important; + } + } +} + +.ql-container { + &.ql-snow { + background-color: var(--#{$prefix}input-bg); + border: 1px solid var(--#{$prefix}gray-200); + border-top: 0; + @include border-bottom-radius($border-radius); + } +} + +.ql-snow { + .ql-picker { + .ql-picker-label { + color: var(--#{$prefix}gray-500); + + &.ql-active, + &:hover { + color: var(--#{$prefix}primary); + } + } + + &.ql-expanded { + outline: none !important; + border-color: transparent !important; + + .ql-picker-label { + border-color: transparent !important; + color: var(--#{$prefix}primary); + outline: none !important; + + &.ql-active, + &:hover { + color: var(--#{$prefix}primary); + } + } + + .ql-picker-options { + border: 0; + padding: 0.5rem 1rem; + box-shadow: var(--#{$prefix}dropdown-box-shadow); + background-color: var(--#{$prefix}body-bg); + @include border-radius($border-radius); + + .ql-picker-item { + color: var(--#{$prefix}gray-600); + outline: none; + + &.ql-selected, + &.ql-active, + &:hover { + color: var(--#{$prefix}primary); + } + } + } + } + } + + .ql-tooltip { + border: 0; + padding: 0.5rem 1rem; + box-shadow: var(--#{$prefix}dropdown-box-shadow); + @include border-radius($border-radius); + + input[type=text] { + @include input-reset(); + border: 1px solid var(--#{$prefix}border-color); + color: $input-plaintext-color; + outline: none !important; + @include border-radius($border-radius); + + &:active, + &:focus { + border-color: var(--#{$prefix}input-focus-border-color) !important; + } + } + + .ql-preview { + color: var(--#{$prefix}gray-600); + } + + .ql-action { + transition: color 0.3s ease; + color: var(--#{$prefix}gray-600); + + &:hover { + transition: color 0.3s ease; + color: var(--#{$prefix}primary); + } + } + + // Tooltip adjustment in modal + .modal & { + &.ql-editing { + left: 20px !important; + } + } + } + + .ql-editor { + pre.ql-syntax { + background-color: var(--#{$prefix}gray-900); + color: var(--#{$prefix}text-muted); + overflow: visible; + @include border-radius($border-radius); + } + } +} + +// Plain Style +.ql-quil.ql-quil-plain { + .ql-toolbar { + padding: 0; + margin: 0; + border: 0; + + &:after { + display: none; + } + + .ql-picker-label { + padding-left: 0; + } + } + + .ql-container { + border: 0; + } + + .ql-editor { + border: 0; + padding: 0; + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_recaptcha.scss b/src/_metronic/assets/sass/core/vendors/plugins/_recaptcha.scss new file mode 100644 index 0000000..c15c0a7 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_recaptcha.scss @@ -0,0 +1,32 @@ +// +// Recaptcha +// + + +// Base +.recaptcha { + padding: 15px; + border: 1px solid var(--#{$prefix}gray-200); + @include border-radius($border-radius); + + .recaptcha-img { + margin-bottom: 10px; + } + + .recaptcha_only_if_incorrect_sol { + color: var(--#{$prefix}danger); + } + + .input-group { + .btn { + i { + padding-right: 0; + } + } + + .form-control { + @include border-top-start-radius($border-radius !important); + @include border-bottom-start-radius($border-radius !important); + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_root.scss b/src/_metronic/assets/sass/core/vendors/plugins/_root.scss new file mode 100644 index 0000000..a328d5a --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_root.scss @@ -0,0 +1,36 @@ +// +// CSS Variables +// + +:root, +[data-bs-theme="light"] { + // Select2 + + // Prismjs + --#{$prefix}prismjs-bg: #{$prismjs-bg}; + + --#{$prefix}prismjs-border: #{$prismjs-border}; + + --#{$prefix}prismjs-btn-bg: #{$prismjs-btn-bg}; + --#{$prefix}prismjs-btn-bg-hover: #{$prismjs-btn-bg-hover}; + --#{$prefix}prismjs-btn-color: #{$prismjs-btn-color}; + --#{$prefix}prismjs-btn-color-hover: #{$prismjs-btn-color-hover}; + + --#{$prefix}prismjs-scrollbar-color: #{$prismjs-scrollbar-color}; + --#{$prefix}prismjs-scrollbar-color-hover: #{$prismjs-scrollbar-color-hover}; +} + +[data-bs-theme="dark"] { + // Prismjs + --#{$prefix}prismjs-bg: #{$prismjs-bg-dark}; + + --#{$prefix}prismjs-border: #{$prismjs-border-dark}; + + --#{$prefix}prismjs-btn-bg: #{$prismjs-btn-bg-dark}; + --#{$prefix}prismjs-btn-bg-hover: #{$prismjs-btn-bg-hover-dark}; + --#{$prefix}prismjs-btn-color: #{$prismjs-btn-color-dark}; + --#{$prefix}prismjs-btn-color-hover: #{$prismjs-btn-color-hover-dark}; + + --#{$prefix}prismjs-scrollbar-color: #{$prismjs-scrollbar-color-dark}; + --#{$prefix}prismjs-scrollbar-color-hover: #{$prismjs-scrollbar-color-hover-dark}; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_select2.scss b/src/_metronic/assets/sass/core/vendors/plugins/_select2.scss new file mode 100644 index 0000000..6670b93 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_select2.scss @@ -0,0 +1,418 @@ +// +// Select2 plugin customization: https://select2.org +// + +$select2-dropdown-padding: 1rem 0; +$select2-dropdown-option-padding: 0.75rem 1.25rem; +$select2-dropdown-option-margin: 0 0; +$select2-dropdown-option-check-padding: 1.25rem; + +$select2-dropdown-group-padding: 0 1.25rem 0 1.25rem; +$select2-dropdown-group-margin: 0 0 0.25rem 0; + +$select2-search-padding: 0.5rem 1.25rem; +$select2-search-margin: 0 0 0.5rem 0; + +$select2-clear-size: 0.7rem; +$select2-clear-color: var(--#{$prefix}gray-700); +$select2-clear-color-dark: var(--#{$prefix}gray-700); +$select2-clear-color-hover: var(--#{$prefix}primary); +$select2-clear-right: $form-select-indicator-padding; //$form-select-padding-x + + + +// Bootstrap .form-control sizing integration +$select2-tag-clear-size: 0.6rem; + +$select2-tag-padding-y-sm: 0.1rem; +$select2-tag-padding-x-sm: 0.35rem; +$select2-input-padding-y-sm: $input-padding-y-sm - $select2-tag-padding-y-sm * 2; + +$select2-tag-padding-y: 0.1rem; +$select2-tag-padding-x: 0.5rem; +$select2-input-padding-y: $input-padding-y - $select2-tag-padding-y * 2; + +$select2-tag-padding-y-lg: 0.15rem; +$select2-tag-padding-x-lg: 0.65rem; +$select2-input-padding-y-lg: $input-padding-y-lg - $select2-tag-padding-y-lg * 2; + +// Bootstrapa 5 Theme +.select2-container--bootstrap5 { + // Selection + .select2-selection { + box-shadow: none; + height: auto; + outline: none !important; + } + + // Selection focus & open states + &.select2-container--focus:not(.select2-container--disabled), + &.select2-container--open:not(.select2-container--disabled) { + .form-select-solid { + background-color: $input-solid-bg-focus; + } + + .form-select:not(.form-select-solid):not(.form-select-transparent) { + border-color: $input-focus-border-color; + } + } + + &.select2-container--disabled { + .form-select { + background-color: $form-select-disabled-bg; + border-color: $form-select-disabled-border-color; + + .select2-selection__rendered, + .select2-selection__placeholder { + color: $form-select-disabled-color !important; + } + + &.form-select-transparent { + background-color: transparent; + border-color: transparent; + } + } + } + + // Search + .select2-search.select2-search--inline { + flex-grow: 1; + + .select2-search__field { + color: $input-color; + @include placeholder($input-placeholder-color); + font-weight: $input-font-weight; + font-family: inherit !important; + background-color: transparent; + border: 0; + box-shadow: none; + outline: none; + line-height: 1; + margin: 0; + padding: 0; + } + } + + .form-select-solid .select2-search.select2-search--inline { + .select2-search__field { + color: $input-solid-color; + font-family: inherit !important; + @include placeholder($input-solid-placeholder-color); + } + } + + // Single mode + .select2-selection--single { + display: flex; + align-items: center; + + // Selected + .select2-selection__rendered { + display: block; + padding-left: 0; + padding-right: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + color: var(--#{$prefix}input-color); + } + + // Placeholder + .select2-selection__placeholder { + color: $input-solid-placeholder-color; + } + + // Form select solid + &.form-select-solid { + // Selected + .select2-selection__rendered { + color: $input-solid-color; + } + + // Placeholder + .select2-selection__placeholder { + color: $input-solid-placeholder-color; + } + } + + // Form select transparent + &.form-select-transparent { + // Selected + .select2-selection__rendered { + color: var(--#{$prefix}gray-800); + } + + // Placeholder + .select2-selection__placeholder { + color: var(--#{$prefix}gray-800); + } + } + + // Form select dark color + &.form-select-dark { + // Selected + .select2-selection__rendered { + color: var(--#{$prefix}gray-900); + } + } + } + + // Multiple mode + .select2-selection--multiple { + display: flex; + align-items: center; + + // Search + .select2-search.select2-search--inline { + display: inline-flex; + } + + // Selected + .select2-selection__rendered { + display: inline; + margin: 0; + padding: 0; + + .select2-selection__choice { + display: inline-flex; + align-items: center; + position: relative; + background-color: var(--#{$prefix}gray-300); + + .select2-selection__choice__remove { + @include svg-bg-icon(close, var(--#{$prefix}gray-700)); + display: block; + position: absolute; + transform: translateY(-50%); + opacity: 0.5; + border: 0; + transition: $transition-link; + top: 50%; + + span { + display: none; + } + + &:hover { + opacity: 1; + @include svg-bg-icon(close, var(--#{$prefix}primary)); + transition: $transition-link; + } + } + + .select2-selection__choice__display { + font-weight: $font-weight-semibold; + } + } + } + + // Choice + .select2-selection__choice { + .select2-selection__choice__remove { + height: $select2-tag-clear-size; + width: $select2-tag-clear-size; + } + } + + // Sizes + &.form-select-sm { + min-height: $input-height-sm; + padding-top: $select2-input-padding-y-sm; + padding-bottom: $select2-input-padding-y-sm; + + .select2-selection__choice { + border-radius: $btn-border-radius-sm; + padding: $select2-tag-padding-y-sm $select2-tag-padding-x-sm; + margin-right: $select2-tag-padding-x-sm; + margin-top: $select2-tag-padding-y-sm; + margin-bottom: $select2-tag-padding-y-sm; + + .select2-selection__choice__display { + margin-left: $select2-tag-padding-x-sm + $select2-tag-clear-size; + font-size: $input-btn-font-size-sm; + } + } + + .select2-search__field { + height: 14px; + } + } + + &:not(.form-select-sm):not(.form-select-lg) { + min-height: $input-height; + padding-top: $select2-input-padding-y; + padding-bottom: $select2-input-padding-y; + + .select2-selection__choice { + border-radius: $btn-border-radius; + padding: $select2-tag-padding-y $select2-tag-padding-x; + margin-right: $select2-tag-padding-x; + margin-top: $select2-tag-padding-y; + margin-bottom: $select2-tag-padding-y; + + .select2-selection__choice__display { + margin-left: $select2-tag-padding-x + $select2-tag-clear-size; + font-size: $input-btn-font-size; + } + } + + .select2-search__field { + height: 16px; + } + } + + &.form-select-lg { + min-height: $input-height-lg; + padding-top: $select2-input-padding-y-lg; + padding-bottom: $select2-input-padding-y-lg; + + .select2-selection__choice { + border-radius: $btn-border-radius-lg; + padding: $select2-tag-padding-y-lg $select2-tag-padding-x-lg; + margin-right: $select2-tag-padding-x-lg; + margin-top: $select2-tag-padding-y-lg; + margin-bottom: $select2-tag-padding-y-lg; + + .select2-selection__choice__display { + margin-left: $select2-tag-padding-x-lg + $select2-tag-clear-size; + font-size: $input-btn-font-size-lg; + } + } + + .select2-search__field { + height: 18px; + } + } + } + + // Dropdown + .select2-dropdown { + border: 0; + box-shadow: var(--#{$prefix}dropdown-box-shadow); + border-radius: $dropdown-border-radius; + padding: $select2-dropdown-padding; + background-color: var(--#{$prefix}dropdown-bg); + + // In modal + .modal-open & { + z-index: $zindex-modal + 1; + } + + // Search + .select2-search { + padding: $select2-search-padding; + margin: $select2-search-margin; + + .select2-search__field { + background-color: var(--#{$prefix}body-bg); + padding: $input-padding-y-sm $input-padding-x-sm; + color: $input-color; + font-size: $input-font-size-sm; + border: 1px solid $input-border-color; + border-radius: $input-border-radius-sm; + outline: 0 !important; + + &:focus, + &:active { + border: 1px solid $input-focus-border-color; + } + } + } + + // Options + .select2-results > .select2-results__options { + max-height: 250px; + overflow-y: auto; + } + + // Option + .select2-results__option { + color: var(--#{$prefix}gray-700); + transition: $transition-link; + padding: $select2-dropdown-option-padding; + margin: $select2-dropdown-option-margin; + + &.select2-results__option--highlighted { + background-color: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + transition: $transition-link; + } + + &.select2-results__option--selected { + background-color: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + transition: $transition-link; + position: relative; + + &:after { + top: 50%; + display: block; + position: absolute; + transform: translateY(-50%); + height: 0.75rem; + width: 0.75rem; + content: ""; + @include svg-bg-icon(check, var(--#{$prefix}component-hover-color)); + mask-position: center; + -webkit-mask-position: center; + right: $select2-dropdown-option-check-padding; + } + } + + &.select2-results__option--disabled { + color: var(--#{$prefix}gray-400); + } + + &.select2-results__message { + color: var(--#{$prefix}gray-600); + } + + &.select2-results__option--group { + padding-left: 0; + padding-right: 0; + + .select2-results__group { + display: block; + color: var(--#{$prefix}gray-800); + font-weight: $font-weight-semibold; + font-size: $h5-font-size; + padding: $select2-dropdown-group-padding; + margin: $select2-dropdown-group-margin; + } + + .select2-results__option { + padding: $select2-dropdown-option-padding; + margin: $select2-dropdown-option-margin; + } + } + } + } + + // Clear + .select2-selection__clear { + display: block; + height: $select2-clear-size; + width: $select2-clear-size; + top: 50%; + right: $select2-clear-right; + position: absolute; + transform: translateY(-50%); + background-color: var(--#{$prefix}gray-700) !important; + @include svg-bg-icon(close, var(--#{$prefix}gray-700)); + + span { + display: none; + } + + &:hover { + background-color: var(--#{$prefix}primary) !important; + @include svg-bg-icon(close, var(--#{$prefix}primary)); + } + } +} + +// Floating label integration +.form-floating { + .form-select { + padding-top: $form-floating-input-padding-t !important; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_sweetalert2.scss b/src/_metronic/assets/sass/core/vendors/plugins/_sweetalert2.scss new file mode 100644 index 0000000..df29b87 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_sweetalert2.scss @@ -0,0 +1,112 @@ +// +// SweetAlert2 +// + +// Base +html.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown), +body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown):not(.modal-open) { + overflow-y: initial !important; + + &:not(.sweetalert2-nopadding) { + padding-right: 0 !important; + } +} + +// Popup +.swal2-popup { + background-color: var(--#{$prefix}body-bg); + padding: 2rem; + @include border-radius($border-radius); + + .swal2-title { + font-weight: 500; + font-size: 1.3rem; + color: var(--#{$prefix}dark); + } + + .swal2-html-container, + .swal2-content { + font-weight: normal; + font-size: 1.1rem; + margin-top: 1.5rem; + color: var(--#{$prefix}gray-800); + } + + .btn { + margin: 15px 5px 0; + } + + .swal2-styled { + &:focus { + box-shadow: none; + } + } + + .swal2-actions { + margin: 1.5rem auto 1rem auto; + } +} + +// Container +.swal2-container { + overflow-y: hidden !important; + + &.swal2-shown { + background-color: rgba($black, 0.2); + } + + // Content + .swal2-html-container { + max-height: 200px; + overflow: auto; + } +} + +body.swal2-height-auto { + height: 100% !important; +} + +// State Colors +.swal2-icon { + // Warning + &.swal2-warning { + border-color: var(--#{$prefix}warning); + color: var(--#{$prefix}warning); + } + + // Error + &.swal2-error { + border-color: var(--#{$prefix}danger); + color: var(--#{$prefix}danger); + + [class^=swal2-x-mark-line] { + background-color: rgba(var(--#{$prefix}danger-rgb), 0.75); + } + } + + // Success + &.swal2-success { + border-color: var(--#{$prefix}success); + color: var(--#{$prefix}success); + + [class^=swal2-success-line] { + background-color: var(--#{$prefix}success); + } + + .swal2-success-ring { + border-color: rgba(var(--#{$prefix}success-rgb), 0.3); + } + } + + // Info + &.swal2-info { + border-color: var(--#{$prefix}info); + color: var(--#{$prefix}info); + } + + // Question + &.swal2-question { + border-color: var(--#{$prefix}primary); + color: var(--#{$prefix}primary); + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_tagify.scss b/src/_metronic/assets/sass/core/vendors/plugins/_tagify.scss new file mode 100644 index 0000000..65cee5b --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_tagify.scss @@ -0,0 +1,222 @@ +// +// Tagify +// + +// Bootstrap .form-control sizing integration +$tagify-tag-padding-y-sm: 0.3rem; +$tagify-tag-padding-x-sm: 0.3rem; +$tagify-input-padding-y-sm: #{$input-padding-y-sm - $tagify-tag-padding-y-sm}; + +$tagify-tag-padding-y: 0.4rem; +$tagify-tag-padding-x: 0.4rem; +$tagify-input-padding-y: $input-padding-y - $tagify-tag-padding-y; + +$tagify-tag-padding-y-lg: 0.5rem; +$tagify-tag-padding-x-lg: 0.5rem; +$tagify-input-padding-y-lg: $input-padding-y-lg - $tagify-tag-padding-y-lg; + +// Base +.tagify { + --tagify-dd-bg-color : var(--#{$prefix}body-bg); + --tags-border-color : #{$input-border-color}; + --tags-hover-border-color : #{$input-border-color}; + --tags-focus-border-color : #{$input-focus-border-color}; + --tag-bg : var(--#{$prefix}gray-200); + --tag-hover : var(--#{$prefix}gray-200); + --tag-text-color : var(--#{$prefix}gray-700); + --tag-text-color--edit : var(--#{$prefix}gray-700); + --tag-pad : 0 0.5rem; + --tag-inset-shadow-size : 1rem; + --tag-invalid-color : var(--#{$prefix}danger); + --tag-invalid-bg : var(--#{$prefix}danger-light); + --tag-remove-bg : var(--#{$prefix}gray-200); + --tag-remove-btn-color : transparent; + --tag-remove-btn-bg : transparent; + --tag-remove-btn-bg--hover : transparent; + --input-color : var(--#{$prefix}gray-700); + --placeholder-color : var(--#{$prefix}gray-400); + --placeholder-color-focus : var(--#{$prefix}gray-500); + --loader-size : .8rem; + --tagify-dd-item--hidden-duration : 0.3s; + + .tagify__tag { + background-color: var(--tag-bg); + margin: 0; + line-height: 1; + + div { + border-radius: inherit; + } + + .tagify__tag-text { + overflow: visible; + } + + .tagify__tag__removeBtn { + width: 0.6rem; + height: 0.6rem; + margin: 0 0.5rem 0 0; + border-radius: 0; + content: " "; + @include svg-bg-icon(close, var(--#{$prefix}gray-500)); + + &:after { + display: none; + } + + &:hover { + @include svg-bg-icon(close, var(--#{$prefix}primary)); + } + } + + // Not allowed state + &.tagify--notAllowed { + div { + .tagify__tag-text { + color: var(--#{$prefix}danger); + opacity: .5; + } + } + + .tagify__tag__removeBtn { + opacity: .5; + @include svg-bg-icon(close, var(--#{$prefix}danger)); + + &:hover { + background: transparent; + opacity: .75; + } + } + } + } + + .tagify__input { + margin: 0; + + &:before { + font-size: inherit; + line-height: inherit; + font-weight: inherit; + } + } + + // Sizing + &.form-control { + display: flex; + align-items: center; + gap: 0.25rem; + } + + &.form-control-sm { + border-radius: $btn-border-radius-sm; + min-height: $input-height-sm; + padding-top: $tagify-input-padding-y-sm; + padding-bottom: $tagify-input-padding-y-sm; + + .tagify__tag { + padding: $tagify-tag-padding-y-sm $tagify-tag-padding-x-sm; + border-radius: $btn-border-radius-sm; + + .tagify__tag-text { + font-size: $input-btn-font-size-sm; + } + } + } + + &:not(.form-control-sm):not(.form-control-lg) { + border-radius: $btn-border-radius; + min-height: $input-height; + padding-top: $tagify-input-padding-y; + padding-bottom: $tagify-input-padding-y; + + .tagify__tag { + padding: $tagify-tag-padding-y $tagify-tag-padding-x; + border-radius: $btn-border-radius; + + .tagify__tag-text { + font-size: $input-btn-font-size; + } + } + } + + &.form-control-lg { + border-radius: $btn-border-radius-lg; + min-height: $input-height-lg; + padding-top: $tagify-input-padding-y-lg; + padding-bottom: $tagify-input-padding-y-lg; + + .tagify__tag { + padding: $tagify-tag-padding-y-lg $tagify-tag-padding-x-lg; + border-radius: $btn-border-radius-lg; + + .tagify__tag-text { + font-size: $input-btn-font-size-lg; + } + } + } +} + +// Dropdown +.tagify__dropdown { + box-shadow: var(--#{$prefix}dropdown-box-shadow); + border: 0 !important; + outline: none !important; + padding: 0.75rem 0; + z-index: $zindex-dropdown; + background-color: var(--#{$prefix}body-bg); + @include border-radius($border-radius); + + // Wrapper + ._wrapper { + max-height: none; + @include border-radius($border-radius); + } + + // In modal + .modal-open & { + z-index: $zindex-modal + 1; + } + + .tagify__dropdown__wrapper { + background-color: var(--#{$prefix}body-bg); + border: 0 !important; + outline: none !important; + box-shadow: none; + } + + .tagify__dropdown__item { + color: var(--#{$prefix}gray-700); + border-radius: 0; + padding: 0.75rem 1.5rem; + margin: 0; + box-shadow: none; + font-weight: $font-weight-semibold; + + &:hover, + &.tagify__dropdown__item--active { + background-color: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + } + } + + // Suggestions + &.tagify__inline__suggestions { + padding: $input-padding-y $input-padding-x; + + .tagify__dropdown__item { + display: inline-block; + font-size: $font-size-sm; + padding: 0.35rem 0.5rem; + margin: 0.25rem 0.5rem 0.25rem 0; + background-color: var(--#{$prefix}gray-200); + color: var(--#{$prefix}gray-700); + @include border-radius($border-radius); + + &:hover, + &.tagify__dropdown__item--active { + background-color: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + } + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_tempus-dominus.scss b/src/_metronic/assets/sass/core/vendors/plugins/_tempus-dominus.scss new file mode 100644 index 0000000..42088f5 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_tempus-dominus.scss @@ -0,0 +1,163 @@ +// +// Tempus Dominus +// + +$td-light: var(--#{$prefix}body-bg); +$td-widget-background: $td-light; +$td-font-color: var(--#{$prefix}gray-900); +$td-active-bg: var(--#{$prefix}primary); +$td-active-color: $td-light; +$td-active-border-color: $td-light; +$td-btn-hover-bg: var(--#{$prefix}gray-200); +$td-disabled-color: var(--#{$prefix}gray-400); +$td-alternate-color: rgba(var(--#{$prefix}gray-900-rgb), 0.38); +$td-secondary-border-color: var(--#{$prefix}border-color); +$td-secondary-border-color-rgba: rgba(var(--#{$prefix}gray-900-rgb), 0.2); +$td-primary-border-color: $td-light; +$td-text-shadow: 0 -1px 0 rgba(var(--#{$prefix}gray-900-rgb), 0.25); +$td-dow-color: var(--#{$prefix}gray-700); + +.tempus-dominus-widget { + padding: 1rem 0.5rem 0.5rem 0.5rem; + width: 280px !important; + box-shadow: var(--#{$prefix}dropdown-box-shadow) !important; + background-color: var(--#{$prefix}body-bg) !important; + @include border-radius($dropdown-border-radius); + + i:not(.ki-outline):not(.ki-solid):not(.ki-duotone) { + font-size: 0.9rem !important; + } + + .picker-switch { + font-size: 1.05rem; + font-weight: $font-weight-bold; + } + + .date-container-days { + grid-auto-rows: 36px; + + .day { + @include border-radius($btn-border-radius !important); + } + } + + .date-container-months { + grid-auto-rows: 36px; + + .month { + @include border-radius($btn-border-radius !important); + } + } + + .date-container-years { + grid-auto-rows: 36px; + + .year { + @include border-radius($btn-border-radius !important); + } + } + + .time-container { + .separator { + border: 0px !important; + } + + .time-container-clock { + div { + @include border-radius($btn-border-radius !important); + } + } + } + + .toolbar div { + @include border-radius($btn-border-radius); + + i:not(.ki-outline):not(.ki-solid):not(.ki-duotone) { + font-size: 1.1rem !important; + } + } + + // Theming + &.light, + &.dark { + color: $td-font-color; + + [data-action] { + &.disabled, + &.disabled:hover { + color: $td-disabled-color; + } + } + + .toolbar { + div { + &:hover { + background: $td-btn-hover-bg; + } + } + } + + .date-container-days { + .dow { + color: $td-dow-color !important; + } + + .cw { + color: $td-alternate-color; + } + } + + .date-container-decades, + .date-container-years, + .date-container-months, + .date-container-days, + .time-container-clock, + .time-container-hour, + .time-container-minute, + .time-container-second { + div:not(.no-highlight) { + &:hover { + background: $td-btn-hover-bg; + } + + &.active { + background-color: $td-active-bg; + color: $td-active-color; + text-shadow: $td-text-shadow; + + &.old, + &.new { + color: $td-active-color; + } + } + + &.active.today:before { + border-bottom-color: $td-active-border-color; + } + + &.old, + &.new { + color: $td-alternate-color; + } + + &.disabled, + &.disabled:hover { + color: $td-disabled-color; + } + + &.today { + &:before { + border-bottom-color: $td-active-bg; + border-top-color: $td-secondary-border-color-rgba; + } + } + } + } + + button { + color: $td-active-color; + background-color: $td-active-bg; + border-color: $td-active-bg; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_tiny-slider.scss b/src/_metronic/assets/sass/core/vendors/plugins/_tiny-slider.scss new file mode 100644 index 0000000..9fc8de6 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_tiny-slider.scss @@ -0,0 +1,141 @@ +// +// Slider +// + +// Base +.tns { + position: relative; + overflow: hidden; + + [data-tns="true"] { + display: none; + } + + .tns-item { + opacity: 0; + transition: all 0.3s ease; + } + + .tns-controls { + display: flex; + justify-content: center; + align-items: center; + + button { + outline: none; + border: 0; + margin: 0 0.25rem; + @include border-radius($btn-border-radius); + padding: 0.5rem 0.75rem; + background-color: var(--#{$prefix}primary); + color: var(--#{$prefix}primary-inverse); + + &:hover { + background-color: var(--#{$prefix}primary-active); + } + } + } + + .tns-nav { + display: flex; + justify-content: center; + align-items: center; + padding-top: 1.5rem; + padding-bottom: 1.5rem; + + button { + display: block; + outline: none; + width: 1.25rem; + height: 0.75rem; + background-color: var(--#{$prefix}gray-200); + margin: 0 0.25rem; + border: 0; + @include border-radius(0.35rem); + + &.tns-nav-active{ + background-color: var(--#{$prefix}primary); + } + } + } + + &.tns-initiazlied { + [data-tns="true"] { + display: flex; + } + + .tns-item { + opacity: 1; + transition: all 0.3s ease; + } + } + + // Default + &.tns-default { + position: relative; + + // Navs + [data-controls="prev"], + [data-controls="next"] { + position: absolute; + top: 50%; + transform: translateY(-50%); + } + + [data-controls="prev"] { + left: 0; + } + + [data-controls="next"] { + right: 0; + } + + .tns-outer { + margin: 0 4rem; + + // Tablet mode + @include media-breakpoint-down(md) { + margin: 0 2rem; + } + } + } + + &.tns-flush { + .tns-outer { + margin: 0; + } + } + + &.tns-circle-nav { + .tns-nav { + display: flex; + justify-content: center; + align-items: center; + padding-top: 1.5rem; + padding-bottom: 1.5rem; + + button { + display: block; + outline: none; + width: 1.15rem; + height: 1.15rem; + background-color: var(--#{$prefix}gray-200); + margin: 0 0.55rem; + border: 0; + @include border-radius(50%); + + &.tns-nav-active{ + background-color: var(--#{$prefix}gray-400); + } + } + } + } +} + + +// Utils +.tns-hide-disabled-nav { + [disabled] { + display: none !important; + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_tinymce.scss b/src/_metronic/assets/sass/core/vendors/plugins/_tinymce.scss new file mode 100644 index 0000000..bc9f624 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_tinymce.scss @@ -0,0 +1,13 @@ +// +// TinyMCE +// + + +// Base +.tox-target{ + display: none; +} + +.tox-tinymce{ + @include border-radius($border-radius !important); +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_toastr.scss b/src/_metronic/assets/sass/core/vendors/plugins/_toastr.scss new file mode 100644 index 0000000..539bad1 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_toastr.scss @@ -0,0 +1,87 @@ +// +// Toastr +// + +// Base +.toastr { + // this is for RTL + background-position: calc(100% - 1.5rem) center !important; + /*rtl:ignore*/ + background-position: 1.5rem center !important; + box-shadow: var(--#{$prefix}dropdown-box-shadow) !important; + border-radius: $dropdown-border-radius !important; + border: 0 !important; + background-color: var(--#{$prefix}gray-100); + color: var(--#{$prefix}gray-700); + padding: 1.25rem 1.25rem 1.25rem 4.5rem !important; + + .toastr-close-button { + outline: none !important; + font-size: 0; + width: 0.85rem; + height: 0.85rem; + } + + // Title + .toastr-title { + font-size: 1.15rem; + font-weight: $font-weight-semibold; + + & + .toastr-message { + margin-top: 0.25rem; + } + } + + // Message + .toastr-message { + font-size: 1rem; + font-weight: $font-weight-normal; + } + + // States + &.toastr-success { + background-color: var(--#{$prefix}success); + color: var(--#{$prefix}success-inverse); + + .toastr-close-button { + @include svg-bg-icon(close, var(--#{$prefix}success-inverse)); + } + } + + &.toastr-info { + background-color: var(--#{$prefix}info); + color: var(--#{$prefix}info-inverse); + + .toastr-close-button { + @include svg-bg-icon(close, var(--#{$prefix}info-inverse)); + } + } + + &.toastr-warning { + background-color: var(--#{$prefix}warning); + color: var(--#{$prefix}warning-inverse); + + .toastr-close-button { + @include svg-bg-icon(close, var(--#{$prefix}warning-inverse)); + } + } + + &.toastr-error { + background-color: var(--#{$prefix}danger); + color: var(--#{$prefix}danger-inverse); + + .toastr-close-button { + @include svg-bg-icon(close, var(--#{$prefix}danger-inverse)); + } + } +} + + +// Placements +.toastr-top-center { + top: 12px; +} + +.toastr-bottom-center { + bottom: 12px; +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_variables-dark.scss b/src/_metronic/assets/sass/core/vendors/plugins/_variables-dark.scss new file mode 100644 index 0000000..ffa4513 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_variables-dark.scss @@ -0,0 +1,18 @@ +// +// 3rd-party config +// + + +// Prismjs +$prismjs-bg-dark: #151521; + +$prismjs-border-dark: rgba($white, 0.1); + +$prismjs-btn-bg-dark: lighten($prismjs-bg-dark, 9%); +$prismjs-btn-bg-hover-dark: lighten($prismjs-bg-dark, 9%); + +$prismjs-btn-color-dark: rgba($white, 0.75); +$prismjs-btn-color-hover-dark: $primary; + +$prismjs-scrollbar-color-dark: lighten($prismjs-bg-dark, 12%); +$prismjs-scrollbar-color-hover-dark: lighten($prismjs-bg-dark, 15%); diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_variables.scss b/src/_metronic/assets/sass/core/vendors/plugins/_variables.scss new file mode 100644 index 0000000..4126f66 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_variables.scss @@ -0,0 +1,27 @@ +// +// 3rd-party config +// + + +// Prismjs +$prismjs-bg: #1e1e3f; + +$prismjs-border: rgba($white, 0.1); + +$prismjs-btn-bg: lighten($prismjs-bg, 9%); +$prismjs-btn-bg-hover: lighten($prismjs-bg, 9%); + +$prismjs-btn-color: rgba($white, 0.75); +$prismjs-btn-color-hover: $primary; + +$prismjs-scrollbar-color: lighten($prismjs-bg, 12%); +$prismjs-scrollbar-color-hover: lighten($prismjs-bg, 15%); + +// Bootstrap Maxlength +$bootstrap-maxlength-z-index: 1040; + +// Daterangepicker +$daterangepicker-ranges-list-height: 260px; +$daterangepicker-ranges-list-width: 150px; + + diff --git a/src/_metronic/assets/sass/core/vendors/plugins/_vis-timeline.scss b/src/_metronic/assets/sass/core/vendors/plugins/_vis-timeline.scss new file mode 100644 index 0000000..186ed7b --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/_vis-timeline.scss @@ -0,0 +1,131 @@ +// +// Vis Timeline +// + +// Variables +$vis-border-color: var(--#{$prefix}border-color); +$vis-border-dashed-color: var(--#{$prefix}border-dashed-color); + +// General +.vis-timeline { + border: 1px solid $vis-border-color !important; + + @if ($enable-rounded) { + border-radius: $border-radius !important; + } + + .vis-labelset { + .vis-label { + display: flex; + align-items: center; + padding-left: 1rem; + padding-right: 1rem; + border-bottom: none; + font-size: $h4-font-size; + font-weight: $font-weight-semibold; + color: var(--#{$prefix}gray-900); + } + } + + .vis-itemset { + } + + .vis-foreground { + .vis-group { + border-bottom: none; + } + } + + .vis-item { + position: absolute; + color: var(--#{$prefix}gray-700); + border-color: var(--#{$prefix}primary); + border-width: 1px; + background-color: var(--#{$prefix}gray-100); + + @if ($enable-rounded) { + border-radius: $border-radius !important; + } + + &.vis-selected { + background-color: var(--#{$prefix}warning-light); + color: var(--#{$prefix}gray-700); + border-color: var(--#{$prefix}warning); + } + + .vis-item-content { + padding: 0.75rem 1rem; + width: 100%; + transform: none !important; + } + } + + .vis-time-axis { + font-size: $font-size-sm; + text-transform: uppercase; + font-weight: $font-weight-semibold; + + .vis-text { + color: var(--#{$prefix}gray-400); + } + + .vis-grid.vis-minor { + border-left-color: $vis-border-dashed-color !important; + } + + .vis-grid.vis-vertical { + border-left-style: dashed !important; + } + } + + .vis-panel { + .vis-shadow { + box-shadow: none !important; + } + } + + .vis-panel { + &.vis-bottom, + &.vis-center, + &.vis-left, + &.vis-right, + &.vis-top { + border-color: $vis-border-color !important; + } + } + + .vis-current-time { + background-color: var(--#{$prefix}success); + } +} + +// Custom style +.vis-timeline-custom { + .vis-timeline { + border: 0 !important; + + .vis-label { + padding-left: 0 !important; + } + } + + .vis-panel { + &.vis-bottom, + &.vis-center, + &.vis-left, + &.vis-right, + &.vis-top { + border: 0 !important; + } + } + + .vis-item { + background-color: transparent; + border: 0 !important; + border-radius: 0 !important; + + .vis-item-content { + padding: 0 !important; + } + } +} diff --git a/src/_metronic/assets/sass/core/vendors/plugins/mixins/_nouislider.scss b/src/_metronic/assets/sass/core/vendors/plugins/mixins/_nouislider.scss new file mode 100644 index 0000000..455a2b2 --- /dev/null +++ b/src/_metronic/assets/sass/core/vendors/plugins/mixins/_nouislider.scss @@ -0,0 +1,13 @@ +// +// noUiSlider Mixins +// + +@mixin nouislider-size($height, $handle-width, $handle-height, $handle-pos-top) { + height: $height; + + .noUi-handle { + width: $handle-width; + height: $handle-height; + top: -#{$handle-pos-top}; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/_aside.scss b/src/_metronic/assets/sass/layout/_aside.scss new file mode 100644 index 0000000..443a749 --- /dev/null +++ b/src/_metronic/assets/sass/layout/_aside.scss @@ -0,0 +1,22 @@ +// +// Aside +// + +// Desktop mode +@include media-breakpoint-up(lg) { + .app-aside { + border: 1px solid var(--#{$prefix}border-color); + border-radius: $card-border-radius; + box-shadow: $card-box-shadow; + } +} + +// Dark mode +@include color-mode(dark) { + // Desktop mode + @include media-breakpoint-up(lg) { + .app-aside { + //box-shadow: $card-box-shadow-dark; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/_content.scss b/src/_metronic/assets/sass/layout/_content.scss new file mode 100644 index 0000000..9a72983 --- /dev/null +++ b/src/_metronic/assets/sass/layout/_content.scss @@ -0,0 +1,22 @@ +// +// Content +// + + +// Desktop mode +@include media-breakpoint-up(lg) { + .app-content { + [data-kt-app-toolbar-enabled="true"]:not([data-kt-app-toolbar-fixed="true"]) & { + padding-top: 0; + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + .app-content { + [data-kt-app-toolbar-enabled="true"]:not([data-kt-app-toolbar-fixed-mobile="true"]) & { + padding-top: 0; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/_layout.scss b/src/_metronic/assets/sass/layout/_layout.scss new file mode 100644 index 0000000..f6d4fd9 --- /dev/null +++ b/src/_metronic/assets/sass/layout/_layout.scss @@ -0,0 +1,17 @@ +// +// Layout +// + +@import "root"; +@import "sidebar/sidebar"; +@import "sidebar/sidebar-minimize"; +@import "sidebar/sidebar-dark"; +@import "sidebar/sidebar-light"; +@import "aside"; +@import "header/header"; +@import "header/header-dark"; +@import "header/header-sidebar-light"; +@import "content"; +@import "toolbar"; +@import "main"; +@import "page-title"; \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/_main.scss b/src/_metronic/assets/sass/layout/_main.scss new file mode 100644 index 0000000..2a45251 --- /dev/null +++ b/src/_metronic/assets/sass/layout/_main.scss @@ -0,0 +1,21 @@ +// +// Main +// + + +// Desktop mode +@include media-breakpoint-up(lg) { + .app-main { + :not([data-kt-app-footer-fixed="true"]) & { + .app-content { + padding-bottom: 0 !important; + } + } + + [data-kt-app-footer-fixed="true"] & { + .app-content { + padding-bottom: $app-content-padding-y !important; + } + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/_page-title.scss b/src/_metronic/assets/sass/layout/_page-title.scss new file mode 100644 index 0000000..f345706 --- /dev/null +++ b/src/_metronic/assets/sass/layout/_page-title.scss @@ -0,0 +1,14 @@ +// +// Page Title(used by Dark Header layout only) +// + +// Desktop mode +@include media-breakpoint-up(lg) { + [data-kt-app-layout="dark-header"] { + .app-header { + .page-heading { + color: $white !important; + } + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/_root.scss b/src/_metronic/assets/sass/layout/_root.scss new file mode 100644 index 0000000..bb379d9 --- /dev/null +++ b/src/_metronic/assets/sass/layout/_root.scss @@ -0,0 +1,49 @@ +// +// Root +// + +// Light mode +@include color-mode(light) { + // Header light + --#{$prefix}app-header-light-separator-color: #{$app-header-light-separator-color}; + + // Sidebar base + --#{$prefix}app-sidebar-base-toggle-btn-box-shadow: #{$app-sidebar-base-toggle-btn-box-shadow}; + --#{$prefix}app-sidebar-base-toggle-btn-bg-color: #{$app-sidebar-base-toggle-btn-bg-color}; + --#{$prefix}app-sidebar-base-toggle-btn-border-color: #{$app-sidebar-base-toggle-btn-border-color}; + --#{$prefix}app-sidebar-base-border-color: #{$app-sidebar-base-border-color}; + + // Sidebar light + --#{$prefix}app-sidebar-light-bg-color: #{$app-sidebar-light-bg-color}; + --#{$prefix}app-sidebar-light-box-shadow: #{$app-sidebar-light-box-shadow}; + --#{$prefix}app-sidebar-light-separator-color: #{$app-sidebar-light-separator-color}; + --#{$prefix}app-sidebar-light-scrollbar-color-hover: #{$app-sidebar-light-scrollbar-color-hover}; + --#{$prefix}app-sidebar-light-menu-heading-color: #{$app-sidebar-light-menu-heading-color}; + --#{$prefix}app-sidebar-light-menu-link-bg-color-active: #{$app-sidebar-light-menu-link-bg-color-active}; + --#{$prefix}app-sidebar-light-header-menu-link-bg-color-active: #{$app-sidebar-light-header-menu-link-bg-color-active}; + --#{$prefix}app-sidebar-light-menu-link-color: #{$app-sidebar-light-menu-link-color}; + --#{$prefix}app-sidebar-light-menu-link-icon-color: #{$app-sidebar-light-menu-link-icon-color}; +} + +// Dark mode +@include color-mode(dark) { + // Header light + --#{$prefix}app-header-light-separator-color: #{$app-header-light-separator-color-dark}; + + // Sidebar base + --#{$prefix}app-sidebar-base-toggle-btn-box-shadow: #{$app-sidebar-base-toggle-btn-box-shadow-dark}; + --#{$prefix}app-sidebar-base-toggle-btn-bg-color: #{$app-sidebar-base-toggle-btn-bg-color-dark}; + --#{$prefix}app-sidebar-base-toggle-btn-border-color: #{$app-sidebar-base-toggle-btn-border-color-dark}; + --#{$prefix}app-sidebar-base-border-color: #{$app-sidebar-base-border-color-dark}; + + // Sidebar light + --#{$prefix}app-sidebar-light-bg-color: #{$app-sidebar-light-bg-color-dark}; + --#{$prefix}app-sidebar-light-box-shadow: #{$app-sidebar-light-box-shadow-dark}; + --#{$prefix}app-sidebar-light-separator-color: #{$app-sidebar-light-separator-color-dark}; + --#{$prefix}app-sidebar-light-scrollbar-color-hover: #{$app-sidebar-light-scrollbar-color-hover-dark}; + --#{$prefix}app-sidebar-light-menu-heading-color: #{$app-sidebar-light-menu-heading-color-dark}; + --#{$prefix}app-sidebar-light-menu-link-bg-color-active: #{$app-sidebar-light-menu-link-bg-color-active-dark}; + --#{$prefix}app-sidebar-light-header-menu-link-bg-color-active: #{$app-sidebar-light-header-menu-link-bg-color-active-dark}; + --#{$prefix}app-sidebar-light-menu-link-color: #{$app-sidebar-light-menu-link-color-dark}; + --#{$prefix}app-sidebar-light-menu-link-icon-color: #{$app-sidebar-light-menu-link-icon-color-dark}; +} diff --git a/src/_metronic/assets/sass/layout/_toolbar.scss b/src/_metronic/assets/sass/layout/_toolbar.scss new file mode 100644 index 0000000..4ee5e71 --- /dev/null +++ b/src/_metronic/assets/sass/layout/_toolbar.scss @@ -0,0 +1,42 @@ +// +// Toolbar +// + +// Form controls +:is([data-kt-app-layout="light-sidebar"], [data-kt-app-layout="light-header"], [data-kt-app-layout="dark-header"]) { + .app-toolbar { + .form-select { + background-color: var(--#{$prefix}body-bg) !important; + } + } +} + +// Desktop mode +@include media-breakpoint-up(lg) { + .app-toolbar { + [data-kt-app-layout="light-sidebar"] & { + border-top: 1px solid var(--#{$prefix}border-color); + } + + body:not([data-kt-app-toolbar-fixed="true"]) & { + height: auto; + background-color: transparent; + border-top: 0; + border-bottom: 0; + box-shadow: none; + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + .app-toolbar { + body:not([data-kt-app-toolbar-fixed-mobile="true"]) & { + height: auto; + background-color: transparent; + border-top: 0; + border-bottom: 0; + box-shadow: none; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/_variables.custom.scss b/src/_metronic/assets/sass/layout/_variables.custom.scss new file mode 100644 index 0000000..85121b4 --- /dev/null +++ b/src/_metronic/assets/sass/layout/_variables.custom.scss @@ -0,0 +1,132 @@ +// +// Variables +// + +// Reboot +$app-bg-color: #fcfcfc; +$app-bg-color-dark: $coal-400; +$app-blank-bg-color: $app-bg-color; +$app-blank-bg-color-dark: $app-bg-color-dark; + +// General +$app-general-root-font-size-desktop: 13px; +$app-general-root-font-size-tablet: 12px; +$app-general-root-font-size-mobile: 12px; + +// Container +$app-container-padding-x: 30px; +$app-container-padding-x-mobile: 20px; + +// Header base +$app-header-base-height: 74px; +$app-header-base-height-mobile: 60px; +$app-header-base-bg-color: transparent; +$app-header-base-bg-color-dark: $coal-500; +$app-header-base-bg-color-mobile: $app-header-base-bg-color; +$app-header-base-bg-color-mobile-dark: $app-header-base-bg-color-dark; +$app-header-base-box-shadow: none; +$app-header-base-box-shadow-dark: none; + +// Header minimize +$app-header-minimize-height: 74px; +$app-header-minimize-height-mobile: 60px; +$app-header-minimize-bg-color: $body-bg; +$app-header-minimize-bg-color-dark: $app-header-base-bg-color-dark; +$app-header-minimize-box-shadow: 0px 10px 30px 0px rgba(82,63,105,0.05); +$app-header-minimize-box-shadow-dark: $box-shadow-sm-dark; + +// Header light +$app-header-light-separator-color: #E4E6EF; +$app-header-light-separator-color-dark: $border-color-dark; + +// Header dark +$app-header-dark-bg-color:$coal-600; +$app-header-dark-separator-color: #282a3d; +$app-header-dark-scrollbar-color: #3b3b64; +$app-header-dark-scrollbar-color-hover: lighten($app-header-dark-scrollbar-color, 3%); +$app-header-dark-menu-active-link-bg-color: #242424; + +// Sidebar base +$app-sidebar-base-width: 265px; +$app-sidebar-base-width-mobile: 250px; + +$app-sidebar-base-toggle-btn-box-shadow: 0px 8px 14px rgba(15, 42, 81, 0.04); +$app-sidebar-base-toggle-btn-box-shadow-dark: none; +$app-sidebar-base-toggle-btn-bg-color: $body-bg; +$app-sidebar-base-toggle-btn-bg-color-dark: $gray-200-dark; +$app-sidebar-base-toggle-btn-border-color: #F1F1F2; +$app-sidebar-base-toggle-btn-border-color-dark: none; +$app-sidebar-base-border-color: #F1F1F2; +$app-sidebar-base-border-color-dark: none; + +// Sidebar minimize +$app-sidebar-minimize-width: 75px; + +// Sidebar light +$app-sidebar-light-bg-color: $body-bg; +$app-sidebar-light-bg-color-dark:$coal-500; + +$app-sidebar-light-box-shadow: 0 0 28px 0 rgba(82,63,105,.05); +$app-sidebar-light-box-shadow-dark: none; + +$app-sidebar-light-separator-color: $app-header-light-separator-color; +$app-sidebar-light-separator-color-dark: $app-header-light-separator-color-dark; + +$app-sidebar-light-scrollbar-color-hover: $gray-200; +$app-sidebar-light-scrollbar-color-hover-dark: $gray-200-dark; +$app-sidebar-light-menu-heading-color: #B5B5C3; +$app-sidebar-light-menu-heading-color-dark: $gray-500-dark; +$app-sidebar-light-menu-link-bg-color-active:#F7F8FB; +$app-sidebar-light-menu-link-bg-color-active-dark:#2A2A3C; +$app-sidebar-light-menu-link-color: #252F4A; +$app-sidebar-light-menu-link-color-dark: $gray-300; +$app-sidebar-light-menu-link-icon-color: #99A1B7; +$app-sidebar-light-menu-link-icon-color-dark: #7F8194; +$app-sidebar-light-header-menu-link-bg-color-active: #F7F8FB; +$app-sidebar-light-header-menu-link-bg-color-active-dark: $gray-100-dark; + +// Sidebar dark +$app-sidebar-dark-bg-color: $coal-500; +$app-sidebar-dark-separator-color: $light-light-dark; +$app-sidebar-dark-scrollbar-color-hover: lighten($app-sidebar-dark-separator-color, 2%); +$app-sidebar-dark-menu-heading-color: $gray-500-dark; +$app-sidebar-dark-menu-sub-link-color: $gray-600-dark;; +$app-sidebar-dark-menu-link-bg-color-active: #1C1C21; + +// Aside base +$app-aside-base-width: 320px; +$app-aside-base-width-mobile: 300px; +$app-aside-base-bg-color: $body-bg; +$app-aside-base-bg-color-dark: #131313; +$app-aside-base-gap-end: $app-container-padding-x; +$app-aside-base-gap-top: $app-container-padding-x; +$app-aside-base-gap-bottom: $app-container-padding-x; + +// Toolbar base +$app-toolbar-base-height: 55px; +$app-toolbar-base-bg-color: $body-bg; +$app-toolbar-base-bg-color-dark: #131313; +$app-toolbar-base-box-shadow: 0px 10px 30px 0px rgba(82,63,105,0.05); +$app-toolbar-base-box-shadow-dark: none; +$app-toolbar-base-border-top: 1px dashed $border-dashed-color; +$app-toolbar-base-border-top-dark: 1px dashed $border-dashed-color-dark; + +// Footer +$app-footer-height: 60px; +$app-footer-height-mobile: auto; +$app-footer-bg-color: transparent; +$app-footer-bg-color-dark: transparent; +$app-footer-box-shadow: 0px 10px 30px 0px rgba(49, 25, 79, 0.05); +$app-footer-box-shadow-dark: none; + +// Scrolltop +$scrolltop-bottom: 43px; +$scrolltop-bottom-mobile: 23px; +$scrolltop-end: 7px; +$scrolltop-end-mobile: 5px; + +// Layout builder toggle(used for Demo purposes only) +$app-layout-builder-toggle-end: 50px; +$app-layout-builder-toggle-end-mobile: 40px; +$app-layout-builder-toggle-bottom: 40px; +$app-layout-builder-toggle-bottom-mobile: 20px; \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/header/_header-dark.scss b/src/_metronic/assets/sass/layout/header/_header-dark.scss new file mode 100644 index 0000000..b17c054 --- /dev/null +++ b/src/_metronic/assets/sass/layout/header/_header-dark.scss @@ -0,0 +1,77 @@ +// +// Dark Header(used by Dark Header layout only) +// + +[data-kt-app-layout="dark-header"] { + .app-header { + background-color: $app-header-dark-bg-color; + border-bottom: 0 !important; + + .btn-custom { + @include button-custom-variant( + $color: $gray-600-dark, + $icon-color: $gray-600-dark, + $border-color: null, + $bg-color: null, + $color-active: var(--#{$prefix}primary), + $icon-color-active: var(--#{$prefix}primary), + $border-color-active: null, + $bg-color-active: rgba(63, 66, 84, 0.35) + ); + } + } + + + // General mode + .app-header-menu { + .menu { + // Menu root links + > .menu-item { + @include menu-link-default-state( + $title-color: $gray-600-dark, + $icon-color:$gray-600-dark, + $bullet-color:$gray-600-dark, + $arrow-color: $gray-600-dark, + $bg-color: null, + $all-links: false + ); + + @include menu-link-hover-state( + $title-color: var(--#{$prefix}primary-inverse), + $icon-color: var(--#{$prefix}primary-inverse), + $bullet-color: var(--#{$prefix}primary-inverse), + $arrow-color: var(--#{$prefix}primary-inverse), + $bg-color: null, + $all-links: false + ); + + @include menu-link-show-state( + $title-color: var(--#{$prefix}primary-inverse), + $icon-color: var(--#{$prefix}primary-inverse), + $bullet-color: var(--#{$prefix}primary-inverse), + $arrow-color: var(--#{$prefix}primary-inverse), + $bg-color: null, + $all-links: false + ); + + @include menu-link-here-state( + $title-color: var(--#{$prefix}primary-inverse), + $icon-color: var(--#{$prefix}primary-inverse), + $bullet-color: var(--#{$prefix}primary-inverse), + $arrow-color: var(--#{$prefix}primary-inverse), + $bg-color: $app-header-dark-menu-active-link-bg-color, + $all-links: false + ); + + @include menu-link-active-state( + $title-color: var(--#{$prefix}primary-inverse), + $icon-color: var(--#{$prefix}primary-inverse), + $bullet-color: var(--#{$prefix}primary-inverse), + $arrow-color: var(--#{$prefix}primary-inverse), + $bg-color: $app-header-dark-menu-active-link-bg-color, + $all-links: false + ); + } + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/header/_header-sidebar-light.scss b/src/_metronic/assets/sass/layout/header/_header-sidebar-light.scss new file mode 100644 index 0000000..db00e15 --- /dev/null +++ b/src/_metronic/assets/sass/layout/header/_header-sidebar-light.scss @@ -0,0 +1,55 @@ +// +// Custom Header(used by Light Sidebar layout only) +// + + +[data-kt-app-layout="light-sidebar"] { + // Desktop mode + @include media-breakpoint-up(lg) { + .app-header-menu { + .menu { + // Menu root item + > .menu-item { + @include menu-link-here-state( + $title-color: var(--#{$prefix}primary), + $icon-color: var(--#{$prefix}primary), + $bullet-color: var(--#{$prefix}primary), + $arrow-color: var(--#{$prefix}primary), + $bg-color: null, + $all-links: false + ); + + @include menu-link-active-state( + $title-color: var(--#{$prefix}primary), + $icon-color: var(--#{$prefix}primary), + $bullet-color: var(--#{$prefix}primary), + $arrow-color: var(--#{$prefix}primary), + $bg-color: var(--#{$prefix}gray-100), + $all-links: false + ); + } + } + } + } +} + +// Desktop mode +@include media-breakpoint-up(lg) { + [data-kt-app-layout="light-sidebar"]:not([data-kt-app-header-fixed="true"]) { + .app-header { + background-color: transparent; + box-shadow: none; + border-bottom: none; + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + [data-kt-app-layout="light-sidebar"]:not([data-kt-app-header-fixed-mobile="true"]) { + .app-header { + background-color: transparent; + box-shadow: none; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/header/_header.scss b/src/_metronic/assets/sass/layout/header/_header.scss new file mode 100644 index 0000000..a7d814a --- /dev/null +++ b/src/_metronic/assets/sass/layout/header/_header.scss @@ -0,0 +1,170 @@ +// +// Header +// + +// General mode +.app-header-menu { + .menu { + // General + .menu-item { + @include menu-link-default-state( + $title-color: var(--#{$prefix}gray-700), + $icon-color: var(--#{$prefix}gray-500), + $bullet-color: var(--#{$prefix}gray-500), + $arrow-color: var(--#{$prefix}gray-500), + $bg-color: null + ); + + @include menu-link-hover-state( + $title-color: var(--#{$prefix}primary), + $icon-color: var(--#{$prefix}primary), + $bullet-color: var(--#{$prefix}primary), + $arrow-color: var(--#{$prefix}primary), + $bg-color: null + ); + + @include menu-link-show-state( + $title-color: var(--#{$prefix}primary), + $icon-color: var(--#{$prefix}primary), + $bullet-color: var(--#{$prefix}primary), + $arrow-color: var(--#{$prefix}primary), + $bg-color: null + ); + + @include menu-link-here-state( + $title-color: var(--#{$prefix}primary), + $icon-color: var(--#{$prefix}primary), + $bullet-color: var(--#{$prefix}primary), + $arrow-color: var(--#{$prefix}primary), + $bg-color: null + ); + + @include menu-link-active-state( + $title-color: var(--#{$prefix}primary), + $icon-color: var(--#{$prefix}primary), + $bullet-color: var(--#{$prefix}primary), + $arrow-color: var(--#{$prefix}primary), + $bg-color: var(--#{$prefix}gray-100) + ); + } + + // Root + > .menu-item { + > .menu-link { + > .menu-title { + font-weight: $font-weight-bold; + font-size: 1.1rem; + } + } + } + } + + .menu-extended { + --#{$prefix}menu-link-bg-color-active: rgba(var(--#{$prefix}gray-100-rgb), 0.7); + --#{$prefix}menu-link-bg-color-hover: rgba(var(--#{$prefix}gray-100-rgb), 0.7); + + .menu-custom-icon { + background-color: var(--#{$prefix}gray-100); + } + + .menu-link { + &.active, + &:hover { + .menu-custom-icon { + background-color: var(--#{$prefix}gray-200); + } + } + } + } +} + +// Desktop mode +@include media-breakpoint-up(lg) { + .app-header-menu { + .menu { + // Menu root item + > .menu-item { + margin-right: 0.5rem; + + @include menu-link-here-state( + $title-color: var(--#{$prefix}primary), + $icon-color: var(--#{$prefix}primary), + $bullet-color: var(--#{$prefix}primary), + $arrow-color: var(--#{$prefix}primary), + $bg-color: var(--#{$prefix}gray-100) + ); + + > .menu-link { + padding-top: 0.675rem; + padding-bottom: 0.675rem; + font-weight: $font-weight-semibold; + } + } + } + } + + [data-kt-app-layout="dark-sidebar"] { + .app-header-menu { + .menu { + // Menu root item + > .menu-item { + &.active, + &.here { + > .menu-link { + background-color: transparent; + box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.03); + } + } + } + } + } + } + + [data-kt-app-toolbar-fixed="true"] { + .app-header { + background-color: var(--#{$prefix}app-header-minimize-bg-color); + } + } + + // Modal open fix + [data-kt-app-header-fixed="true"].modal-open { + .app-header { + padding-right: $body-scrollbar-width !important; + } + } +} + +// Dark mode +@include color-mode(dark) { + // Desktop mode + @include media-breakpoint-up(lg) { + [data-kt-app-layout="dark-sidebar"] { + .app-header-menu { + .menu { + // Menu root item + > .menu-item { + &.active, + &.here { + > .menu-link { + box-shadow: none; + background-color: var(--#{$prefix}gray-100); + } + } + } + } + } + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + .app-header { + background-color: var(--#{$prefix}app-header-minimize-bg-color); + border-bottom: 1px solid var(--#{$prefix}border-color) !important; + + .page-title { + display: none !important; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/sidebar/_sidebar-dark.scss b/src/_metronic/assets/sass/layout/sidebar/_sidebar-dark.scss new file mode 100644 index 0000000..e87f418 --- /dev/null +++ b/src/_metronic/assets/sass/layout/sidebar/_sidebar-dark.scss @@ -0,0 +1,105 @@ +// +// Dark Sidebar(used by Dark Sidebar layout only) +// + +[data-kt-app-layout="dark-sidebar"] { + .app-sidebar { + background-color: $app-sidebar-dark-bg-color; + border-right: 0; + + .scroll-y, + .hover-scroll-overlay-y { + @include scrollbar-color(transparent, $app-sidebar-dark-scrollbar-color-hover); + } + + .app-sidebar-logo { + border-bottom: 1px dashed $app-sidebar-dark-separator-color; + } + + .btn-custom { + @include button-custom-variant( + $color:#B5B5C3, + $icon-color: #B5B5C3, + $border-color: null, + $bg-color: rgba(63, 66, 84, 0.35), + $color-active: #B5B5C3, + $icon-color-active: null, + $border-color-active: null, + $bg-color-active: rgba(63, 66, 84, 0.35) + ); + } + + .menu { + .menu-item { + .menu-heading { + color: $app-sidebar-dark-menu-heading-color !important; + } + + @include menu-link-default-state( + $title-color: $gray-700-dark, + $icon-color: $gray-400-dark, + $bullet-color:$gray-400-dark, + $arrow-color: $gray-400-dark, + $bg-color: null, + $all-links: true + ); + + @include menu-link-here-state( + $title-color: $gray-900-dark, + $icon-color: $gray-900-dark, + $bullet-color: $gray-900-dark, + $arrow-color: $gray-900-dark, + $bg-color: null, + $all-links: true + ); + + @include menu-link-show-state( + $title-color: $gray-900-dark, + $icon-color: $gray-900-dark, + $bullet-color: $gray-900-dark, + $arrow-color: $gray-900-dark, + $bg-color: null, + $all-links: true + ); + + @include menu-link-hover-state( + $title-color: $gray-900-dark, + $icon-color: $gray-900-dark, + $bullet-color: $gray-900-dark, + $arrow-color: $gray-900-dark, + $bg-color: null, + $all-links: true + ); + + @include menu-link-active-state( + $title-color: $gray-900-dark, + $icon-color: $gray-900-dark, + $bullet-color: $gray-900-dark, + $arrow-color: $gray-900-dark, + $bg-color: $app-sidebar-dark-menu-link-bg-color-active, + $all-links: true + ); + } + } + } +} + +// Desktop mode +@include media-breakpoint-up(lg) { + [data-kt-app-layout="dark-sidebar"] { + .app-sidebar { + .menu-sub-lg-dropdown { + background-color: $app-sidebar-dark-bg-color; + } + } + } +} + +// Dark mode +@include color-mode(dark) { + [data-kt-app-layout="dark-sidebar"] { + .app-sidebar { + border-right: 1px solid $app-sidebar-dark-separator-color; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/sidebar/_sidebar-light.scss b/src/_metronic/assets/sass/layout/sidebar/_sidebar-light.scss new file mode 100644 index 0000000..5e73163 --- /dev/null +++ b/src/_metronic/assets/sass/layout/sidebar/_sidebar-light.scss @@ -0,0 +1,105 @@ +// +// Light Sidebar(used by Light Sidebar layout only) +// + +[data-kt-app-layout="light-sidebar"] { + .app-sidebar { + background-color: var(--#{$prefix}app-sidebar-light-bg-color); + border-right: 1px solid var(--#{$prefix}gray-200); + + .scroll-y, + .hover-scroll-overlay-y { + @include scrollbar-color(transparent, var(--#{$prefix}app-sidebar-light-scrollbar-color-hover)); + } + + .app-sidebar-logo { + border-bottom: 0; + } + + .app-sidebar-toggle { + border-radius: 50%; + box-shadow: none !important; + } + + .menu { + font-weight: $font-weight-semibold; + + .menu-item { + .menu-heading { + color: var(--#{$prefix}app-sidebar-light-menu-heading-color) !important; + } + + @include menu-link-default-state( + $title-color: var(--#{$prefix}app-sidebar-light-menu-link-color), + $icon-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $bullet-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $arrow-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $bg-color: null + ); + + @include menu-link-hover-state( + $title-color: var(--#{$prefix}app-sidebar-light-menu-link-color), + $icon-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $bullet-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $arrow-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $bg-color: null + ); + + @include menu-link-show-state( + $title-color: var(--#{$prefix}app-sidebar-light-menu-link-color), + $icon-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $bullet-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $arrow-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $bg-color: null + ); + + @include menu-link-here-state( + $title-color: var(--#{$prefix}app-sidebar-light-menu-link-color), + $icon-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $bullet-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $arrow-color: var(--#{$prefix}app-sidebar-light-menu-link-icon-color), + $bg-color: null + ); + + @include menu-link-active-state( + $title-color: var(--#{$prefix}primary), + $icon-color: var(--#{$prefix}primary), + $bullet-color: var(--#{$prefix}primary), + $arrow-color: var(--#{$prefix}primary), + $bg-color: var(--#{$prefix}app-sidebar-light-menu-link-bg-color-active) + ); + + .menu-sub { + .menu-item { + .menu-link { + .menu-title { + color: #4B5675; + } + + &.active { + .menu-title { + color: var(--#{$prefix}primary); + } + } + } + } + } + } + } + } +} + +[data-kt-app-layout="light-sidebar"][data-kt-app-header-fixed="true"] { + [data-kt-app-header-minimize=on] .app-header { + transition: none; + z-index: 100; + background-color: var(--bs-app-header-minimize-bg-color); + box-shadow: var(--bs-app-header-minimize-box-shadow); + } + + .app-sidebar { + .app-sidebar-logo { + border-bottom: 0; + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/sidebar/_sidebar-minimize.scss b/src/_metronic/assets/sass/layout/sidebar/_sidebar-minimize.scss new file mode 100644 index 0000000..a6f5b2d --- /dev/null +++ b/src/_metronic/assets/sass/layout/sidebar/_sidebar-minimize.scss @@ -0,0 +1,64 @@ +// +// Sidebar Minimize +// + +.app-sidebar-logo-minimize { + display: none; +} + +// Sidebar footer +.app-sidebar-footer { + .btn-custom { + .btn-icon { + display: none; + } + } +} + +// Desktop sidebar minimize mode +@include app-layout-minimize(app-sidebar) { + .app-sidebar-logo { + .app-sidebar-logo-default { + display: none; + } + + .app-sidebar-logo-minimize { + display: inline-block; + } + } + + .app-sidebar-wrapper { + width: var(--#{$prefix}app-sidebar-width-actual); + } + + .app-sidebar-menu { + .menu-content, + .menu-title { + opacity: 0; + @include app-layout-transition(opacity); + } + + .menu-item.show > .menu-sub { + height: 0; + overflow: hidden; + @include app-layout-transition(height); + } + } + + .app-sidebar-footer { + .btn-custom { + padding-left: 0 !important; + padding-right: 0 !important; + + .btn-label { + width: 0; + display: none; + } + + .btn-icon { + width: auto; + display: block; + } + } + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/layout/sidebar/_sidebar.scss b/src/_metronic/assets/sass/layout/sidebar/_sidebar.scss new file mode 100644 index 0000000..7f6566d --- /dev/null +++ b/src/_metronic/assets/sass/layout/sidebar/_sidebar.scss @@ -0,0 +1,60 @@ +// +// Sidebar +// + +// Desktop mode +@include media-breakpoint-up(lg) { + .app-sidebar-toggle { + box-shadow: var(--#{$prefix}app-sidebar-base-toggle-btn-box-shadow) !important; + background-color: var(--#{$prefix}app-sidebar-base-toggle-btn-bg-color) !important; + border: 1px solid var(--#{$prefix}app-sidebar-base-border-color) !important; + + .active i { + transform: rotateZ(0deg) !important; + } + } + + [dir="rtl"] { + .app-sidebar-toggle { + i { + transform: rotateZ(180deg); + } + + &.active i { + transform: rotateZ(0deg) !important; + } + } + } + + .app-sidebar-logo { + height: calc(var(--#{$prefix}app-header-height) + 1px); + display: flex; + align-items: center; + justify-content: space-between; + position: relative; + flex-shrink: 0; + } + + .app-sidebar-menu { + .menu { + // Root + > .menu-item { + margin-left: 0.115rem; + + > .menu-link { + > .menu-title { + font-weight: $font-weight-bold; + font-size: 1.1rem; + } + } + } + } + } +} + +// Tablet & mobile modes +@include media-breakpoint-down(lg) { + .app-sidebar-logo { + display: none; + } +} \ No newline at end of file diff --git a/src/_metronic/assets/sass/style.react.scss b/src/_metronic/assets/sass/style.react.scss new file mode 100644 index 0000000..a5eadb5 --- /dev/null +++ b/src/_metronic/assets/sass/style.react.scss @@ -0,0 +1,28 @@ +// React vendors +@import 'socicon/css/socicon.css'; +@import '@fortawesome/fontawesome-free/css/all.min.css'; +@import 'line-awesome/dist/line-awesome/css/line-awesome.css'; +@import 'prism-themes/themes/prism-shades-of-purple.css'; +@import 'bootstrap-icons/font/bootstrap-icons.css'; +@import 'animate.css/animate.css'; +@import 'nouislider/dist/nouislider.css'; +@import 'flatpickr/dist/flatpickr.css'; + +// +// Vendors customization +// + +//////////////////////////////////////////////////////////////// +///////////// DO NOT MODIFY BELOW INCLUDE ORDER //////////////// +//////////////////////////////////////////////////////////////// + +// Initialize +@import "init"; + +// Plugins +@import "./core/vendors/plugins/plugins"; +@import "vendors/react-select.scss"; + +#root { + display: contents; +} diff --git a/src/_metronic/assets/sass/style.scss b/src/_metronic/assets/sass/style.scss new file mode 100644 index 0000000..ae464dd --- /dev/null +++ b/src/_metronic/assets/sass/style.scss @@ -0,0 +1,14 @@ +// +// Theme style +// + +// Initialize +@import "init"; + +// Components +@import "./core/components/components"; +@import "components/components"; + +// Layout +@import "./core/layout/base/layout"; +@import "layout/layout"; \ No newline at end of file diff --git a/src/_metronic/assets/sass/vendors/react-select.scss b/src/_metronic/assets/sass/vendors/react-select.scss new file mode 100644 index 0000000..3346c25 --- /dev/null +++ b/src/_metronic/assets/sass/vendors/react-select.scss @@ -0,0 +1,199 @@ +$react-select-dropdown-padding: 1rem 0; +$react-select-dropdown-option-padding: 0.75rem 1.25rem; +$react-select-dropdown-option-margin: 0 0; + +// solid input styles +.react-select-solid.react-select-styled .react-select { + &__control { + background-color: var(--#{$prefix}gray-100); + border-color: var(--#{$prefix}gray-100); + color: $input-solid-color; + + &--is-disabled { + background-color: $form-select-disabled-bg; + border-color: $form-select-disabled-border-color; + + .react-select__placeholder { + color: $form-select-disabled-color; + } + } + } +} + +// transparent input styles +.react-select-transparent.react-select-styled .react-select { + &__control { + background-color: transparent; + border-color: transparent; + color: var(--#{$prefix}gray-800); + + &--is-disabled { + background-color: transparent !important; + border-color: transparent !important; + + .react-select__placeholder { + color: $form-select-disabled-color; + } + } + } + + &__placeholder { + color: var(--#{$prefix}gray-800); + } +} + +// sm size input field +.react-select-sm.react-select-styled .react-select { + &__control { + font-size: $input-btn-font-size-sm; + border-radius: 0.425rem; + } + + &__value-container { + padding-top: 0.55rem; + padding-bottom: 0.55rem; + padding-left: 0.75rem; + } +} + +// lg size input field +.react-select-lg.react-select-styled .react-select { + &__control { + font-size: $input-btn-font-size-lg; + border-radius: 0.625rem; + } + + &__value-container { + padding-top: 0.825rem; + padding-bottom: .825rem; + padding-left: 1.5rem; + } +} + +// default styles +.react-select-styled .react-select { + &__control { + --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2378829D' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e"); + border-color: var(--bs-gray-400); + width: 100% ; + font-size: 1.1rem ; + font-weight: 500 ; + font-family: inherit; + line-height: 1.5 ; + color: var(--bs-gray-700) ; + appearance: none ; + background-color: var(--bs-body-bg) ; + background-image: var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none) ; + background-repeat: no-repeat ; + background-position: right 1rem center ; + background-size: 16px 12px ; + border: 1px solid var(--bs-gray-300) ; + border-radius: 0.475rem ; + box-shadow: none; + transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out; + border: 0; + box-shadow: 'none'; + + &--is-disabled { + background-color: $form-select-disabled-bg; + border-color: $form-select-disabled-border-color; + + .react-select__placeholder { + color: $form-select-disabled-color; + } + } + + &--is-focused { + background-color: var(--#{$prefix}gray-200); + } + } + + &__single-value { + color: var(--#{$prefix}input-color); + margin-left: 0px; + } + + &__placeholder { + color: var(--#{$prefix}gray-500); + } + + &__indicator-separator { + display: none; + } + + &__indicator { + cursor: pointer; + position: relative; + left: -26px; + } + + &__dropdown-indicator { + display: none; + } + + &__value-container { + padding: 0.775rem 3rem 0.775rem 1rem ; + cursor: pointer; + } + + &__input-container { + padding: 0; + margin: 0; + } + + &__input-container::after { + content: ""; + } + + &__menu { + border: 0; + border-radius: $dropdown-border-radius; + padding: $react-select-dropdown-padding; + background-color: var(--#{$prefix}dropdown-bg); + box-shadow: var(--#{$prefix}dropdown-box-shadow); + } + + &__option { + cursor: pointer; + color: var(--#{$prefix}gray-700); + transition: $transition-link; + padding: $react-select-dropdown-option-padding; + margin: $react-select-dropdown-option-margin; + + &--is-selected { + background-color: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + transition: $transition-link; + position: relative; + + &:after { + top: 50%; + display: block; + position: absolute; + transform: translateY(-50%); + height: 0.75rem; + width: 0.75rem; + content: ""; + @include svg-bg-icon(check, var(--#{$prefix}component-hover-color)); + mask-position: center; + right: 1.25rem; + } + } + + &--is-focused:not(&--is-selected) { + background-color: var(--#{$prefix}component-hover-bg); + color: var(--#{$prefix}component-hover-color); + transition: $transition-link; + position: relative; + } + } + + &__multi-value { + border-radius: 0.475rem; + background-color: var(--#{$prefix}gray-300); + } + + &__multi-value__label { + color: var(--#{$prefix}gray-700); + } +} \ No newline at end of file diff --git a/src/_metronic/assets/ts/_utils/DomHelpers.ts b/src/_metronic/assets/ts/_utils/DomHelpers.ts new file mode 100644 index 0000000..29be515 --- /dev/null +++ b/src/_metronic/assets/ts/_utils/DomHelpers.ts @@ -0,0 +1,478 @@ +import {OffsetModel} from './models/OffsetModel' +import {ViewPortModel} from './models/ViewPortModel' +import {ElementStyleUtil} from './_ElementStyleUtil' +import {DataUtil} from './_DataUtil' +import {ElementAnimateUtil} from './ElementAnimateUtil' +import {getObjectPropertyValueByKey, toJSON} from './_TypesHelpers' + +function getCSS(el: HTMLElement, styleProp: string) { + const defaultView = (el.ownerDocument || document).defaultView + + if (!defaultView) { + return '' + } + + // sanitize property name to css notation + // (hyphen separated words eg. font-Size) + styleProp = styleProp.replace(/([A-Z])/g, '-$1').toLowerCase() + + return defaultView.getComputedStyle(el, null).getPropertyValue(styleProp) +} + +function getCSSVariableValue(variableName: string) { + let hex = getComputedStyle(document.documentElement).getPropertyValue(variableName) + if (hex && hex.length > 0) { + hex = hex.trim() + } + + return hex +} + +function getElementActualCss(el: HTMLElement, prop: any, cache: boolean) { + let css = '' + + if (!el.getAttribute('kt-hidden-' + prop) || cache === false) { + let value + + // the element is hidden so: + // making the el block so we can meassure its height but still be hidden + css = el.style.cssText + el.style.cssText = 'position: absolute; visibility: hidden; display: block;' + + if (prop === 'width') { + value = el.offsetWidth + } else if (prop === 'height') { + value = el.offsetHeight + } + + el.style.cssText = css + + // store it in cache + if (value !== undefined) { + el.setAttribute('kt-hidden-' + prop, value.toString()) + return parseFloat(value.toString()) + } + return 0 + } else { + // store it in cache + const attributeValue = el.getAttribute('kt-hidden-' + prop) + if (attributeValue || attributeValue === '0') { + return parseFloat(attributeValue) + } + } +} + +function getElementActualHeight(el: HTMLElement) { + return getElementActualCss(el, 'height', false) +} + +function getElementActualWidth(el: HTMLElement, cache?: boolean) { + return getElementActualCss(el, 'width', false) +} + +function getElementIndex(element: HTMLElement) { + if (element.parentNode) { + const c = element.parentNode.children + for (let i = 0; i < c.length; i++) { + if (c[i] === element) return i + } + } + return -1 +} + +// https://developer.mozilla.org/en-US/docs/Web/API/Element/matches +function getElementMatches(element: HTMLElement, selector: string) { + const p = Element.prototype + const f = p.matches || p.webkitMatchesSelector + + if (element && element.tagName) { + return f.call(element, selector) + } else { + return false + } +} + +function getElementOffset(el: HTMLElement): OffsetModel { + // Return zeros for disconnected and hidden (display: none) elements (gh-2310) + // Support: IE <=11 only + // Running getBoundingClientRect on a + // disconnected node in IE throws an error + if (!el.getClientRects().length) { + return {top: 0, left: 0} + } + + // Get document-relative position by adding viewport scroll to viewport-relative gBCR + const rect = el.getBoundingClientRect() + const win = el.ownerDocument.defaultView + if (win) { + return { + top: rect.top + win.pageYOffset, + left: rect.left + win.pageXOffset, + } + } + + return rect +} + +function getElementParents(element: Element, selector: string) { + // Element.matches() polyfill + if (!Element.prototype.matches) { + Element.prototype.matches = function (s) { + const matches = (document || this.ownerDocument).querySelectorAll(s) + let i = matches.length + while (--i >= 0 && matches.item(i) !== this) {} + return i > -1 + } + } + + // Set up a parent array + const parents: Array = [] + + let el: Element | null = element + + // Push each parent element to the array + for (; el && el !== document.body; el = el.parentElement) { + if (selector) { + if (el.matches(selector)) { + parents.push(el) + } + continue + } + parents.push(el) + } + + // Return our parent array + return parents +} + +function getHighestZindex(el: HTMLElement) { + let bufferNode: Node | null = el as Node + let buffer = el + while (bufferNode && bufferNode !== document) { + // Ignore z-index if position is set to a value where z-index is ignored by the browser + // This makes behavior of this function consistent across browsers + // WebKit always returns auto if the element is positioned + const position = buffer.style.getPropertyValue('position') + if (position === 'absolute' || position === 'relative' || position === 'fixed') { + // IE returns 0 when zIndex is not specified + // other browsers return a string + // we ignore the case of nested elements with an explicit value of 0 + //
+ const value = parseInt(buffer.style.getPropertyValue('z-index')) + if (!isNaN(value) && value !== 0) { + return value + } + } + + bufferNode = bufferNode.parentNode + buffer = bufferNode as HTMLElement + } + return null +} + +function getScrollTop(): number { + return (document.scrollingElement || document.documentElement).scrollTop +} + +// https://developer.mozilla.org/en-US/docs/Web/API/Window/innerWidth +function getViewPort(): ViewPortModel { + return { + width: window.innerWidth, + height: window.innerHeight, + } +} + +function insertAfterElement(el: HTMLElement, referenceNode: HTMLElement) { + return referenceNode.parentNode?.insertBefore(el, referenceNode.nextSibling) +} + +function isElementHasClasses(element: HTMLElement, classesStr: string): boolean { + const classes = classesStr.split(' ') + for (let i = 0; i < classes.length; i++) { + if (!element.classList.contains(classes[i])) { + return false + } + } + + return true +} + +function isVisibleElement(element: HTMLElement): boolean { + return !(element.offsetWidth === 0 && element.offsetHeight === 0) +} + +// Throttle function: Input as function which needs to be throttled and delay is the time interval in milliseconds +function throttle(timer: number | undefined, func: Function, delay?: number) { + // If setTimeout is already scheduled, no need to do anything + if (timer) { + return + } + + // Schedule a setTimeout after delay seconds + timer = window.setTimeout(function () { + func() + + // Once setTimeout function execution is finished, timerId = undefined so that in
+ // the next scroll event function execution can be scheduled by the setTimeout + timer = undefined + }, delay) +} + +function getElementChildren(element: HTMLElement, selector: string): Array | null { + if (!element || !element.childNodes) { + return null + } + + const result: Array = [] + for (let i = 0; i < element.childNodes.length; i++) { + const child = element.childNodes[i] + // child.nodeType == 1 => Element, Text, Comment, ProcessingInstruction, CDATASection, EntityReference + if (child.nodeType === 1 && getElementMatches(child as HTMLElement, selector)) { + result.push(child as HTMLElement) + } + } + + return result +} + +function getElementChild(element: HTMLElement, selector: string): HTMLElement | null { + const children = getElementChildren(element, selector) + return children ? children[0] : null +} + +function isMobileDevice(): boolean { + let test = getViewPort().width < +getBreakpoint('lg') ? true : false + + if (test === false) { + // For use within normal web clients + test = navigator.userAgent.match(/iPad/i) != null + } + + return test +} + +function slide(el: HTMLElement, dir: string, speed: number, callback: any) { + if ( + !el || + (dir === 'up' && isVisibleElement(el) === false) || + (dir === 'down' && isVisibleElement(el) === true) + ) { + return + } + + speed = speed ? speed : 600 + const calcHeight = getElementActualHeight(el) + let calcPaddingTop: number = 0 + let calcPaddingBottom: number = 0 + + if (ElementStyleUtil.get(el, 'padding-top') && DataUtil.get(el, 'slide-padding-top') !== true) { + DataUtil.set(el, 'slide-padding-top', ElementStyleUtil.get(el, 'padding-top')) + } + + if ( + ElementStyleUtil.get(el, 'padding-bottom') && + DataUtil.has(el, 'slide-padding-bottom') !== true + ) { + DataUtil.set(el, 'slide-padding-bottom', ElementStyleUtil.get(el, 'padding-bottom')) + } + + if (DataUtil.has(el, 'slide-padding-top')) { + const data = DataUtil.get(el, 'slide-padding-top') as string + calcPaddingTop = parseInt(data as string) + } + + if (DataUtil.has(el, 'slide-padding-bottom')) { + const data = DataUtil.get(el, 'slide-padding-bottom') as string + calcPaddingBottom = parseInt(data) + } + + if (dir === 'up') { + // up + el.style.cssText = 'display: block; overflow: hidden;' + + if (calcPaddingTop) { + ElementAnimateUtil.animate(0, calcPaddingTop, speed, function (value: number) { + el.style.paddingTop = calcPaddingTop - value + 'px' + }) + } + + if (calcPaddingBottom) { + ElementAnimateUtil.animate(0, calcPaddingBottom, speed, function (value: number) { + el.style.paddingBottom = calcPaddingBottom - value + 'px' + }) + } + + ElementAnimateUtil.animate( + 0, + calcHeight || 0, + speed, + function (value: number) { + el.style.height = (calcHeight || 0) - value + 'px' + }, + function () { + el.style.height = '' + el.style.display = 'none' + + if (typeof callback === 'function') { + callback() + } + } + ) + } else if (dir === 'down') { + // down + el.style.cssText = 'display: block; overflow: hidden;' + + if (calcPaddingTop) { + ElementAnimateUtil.animate( + 0, + calcPaddingTop, + speed, + function (value: number) { + // + el.style.paddingTop = value + 'px' + }, + function () { + el.style.paddingTop = '' + } + ) + } + + if (calcPaddingBottom) { + ElementAnimateUtil.animate( + 0, + calcPaddingBottom, + speed, + function (value: number) { + el.style.paddingBottom = value + 'px' + }, + function () { + el.style.paddingBottom = '' + } + ) + } + + ElementAnimateUtil.animate( + 0, + calcHeight || 0, + speed, + function (value: number) { + el.style.height = value + 'px' + }, + function () { + el.style.height = '' + el.style.display = '' + el.style.overflow = '' + + if (typeof callback === 'function') { + callback() + } + } + ) + } +} + +function slideUp(el: HTMLElement, speed: number, callback: any) { + slide(el, 'up', speed, callback) +} + +function slideDown(el: HTMLElement, speed: number, callback: any) { + slide(el, 'down', speed, callback) +} + +function getBreakpoint(breakpoint: string) { + let value: number | string = getCSSVariableValue('--bs-' + breakpoint) + if (value) { + value = parseInt(value.trim()) + } + + return value +} + +function getAttributeValueByBreakpoint(incomingAttr: string): string | JSON { + const value = toJSON(incomingAttr) + if (typeof value !== 'object') { + return incomingAttr + } + + const width = getViewPort().width + let resultKey + let resultBreakpoint = -1 + let breakpoint + + for (const key in value) { + if (key === 'default') { + breakpoint = 0 + } else { + breakpoint = getBreakpoint(key) ? +getBreakpoint(key) : parseInt(key) + } + + if (breakpoint <= width && breakpoint > resultBreakpoint) { + resultKey = key + resultBreakpoint = breakpoint + } + } + + return resultKey ? getObjectPropertyValueByKey(value, resultKey) : value +} + +function colorLighten(color: string, amount: number) { + const addLight = (_color: string, _amount: number) => { + const cc = parseInt(_color, 16) + _amount + const cNum = cc > 255 ? 255 : cc + const c = cNum.toString(16).length > 1 ? cNum.toString(16) : `0${cNum.toString(16)}` + return c + } + + color = color.indexOf('#') >= 0 ? color.substring(1, color.length) : color + amount = parseInt(((255 * amount) / 100).toString()) + return (color = `#${addLight(color.substring(0, 2), amount)}${addLight( + color.substring(2, 4), + amount + )}${addLight(color.substring(4, 6), amount)}`) +} + +function colorDarken(color: string, amount: number) { + const subtractLight = (_color: string, _amount: number) => { + const cc = parseInt(color, 16) - amount + const cNum = cc < 0 ? 0 : cc + const c = cNum.toString(16).length > 1 ? cNum.toString(16) : `0${cNum.toString(16)}` + return c + } + + color = color.indexOf('#') >= 0 ? color.substring(1, color.length) : color + amount = parseInt(((255 * amount) / 100).toString()) + + return (color = `#${subtractLight(color.substring(0, 2), amount)}${subtractLight( + color.substring(2, 4), + amount + )}${subtractLight(color.substring(4, 6), amount)}`) +} + +export { + getBreakpoint, + getCSS, + getCSSVariableValue, + getElementActualCss, + getElementActualHeight, + getElementActualWidth, + getElementIndex, + getElementMatches, + getElementOffset, + getElementParents, + getHighestZindex, + getScrollTop, + getViewPort, + insertAfterElement, + isElementHasClasses, + isVisibleElement, + throttle, + getElementChildren, + getElementChild, + isMobileDevice, + slide, + slideUp, + slideDown, + getAttributeValueByBreakpoint, + colorLighten, + colorDarken, +} diff --git a/src/_metronic/assets/ts/_utils/ElementAnimateUtil.ts b/src/_metronic/assets/ts/_utils/ElementAnimateUtil.ts new file mode 100644 index 0000000..e7f7ec0 --- /dev/null +++ b/src/_metronic/assets/ts/_utils/ElementAnimateUtil.ts @@ -0,0 +1,111 @@ +import {DOMEventHandlerUtil} from './_DOMEventHandlerUtil' +import {ElementStyleUtil} from './_ElementStyleUtil' +import {getElementOffset} from './DomHelpers' + +export class ElementAnimateUtil { + public static animate( + from: number, + to: number, + duration: number, + update: Function, + complete?: Function + ) { + /** + * TinyAnimate.easings + * Adapted from jQuery Easing + */ + const easings = { + linear: function (t: number, b: number, c: number, d: number) { + return (c * t) / d + b + }, + } + + // Create mock done() function if necessary + if (!complete) { + complete = function () {} + } + + // Animation loop + // let canceled = false; + const change = to - from + + function loop(timestamp: number) { + const time = (timestamp || +new Date()) - start + + if (time >= 0) { + update(easings.linear(time, from, change, duration)) + } + if (time >= 0 && time >= duration) { + update(to) + if (complete) { + complete() + } + } else { + window.requestAnimationFrame(loop) + } + } + + update(from) + + // Start animation loop + const start = + window.performance && window.performance.now ? window.performance.now() : +new Date() + + window.requestAnimationFrame(loop) + } + + public static animateClass( + element: HTMLElement, + animationName: string, + callBack?: Function + ): void { + const animateClasses = animationName.split(' ') + animateClasses.forEach((cssClass) => element.classList.add(cssClass)) + DOMEventHandlerUtil.one(element, 'animationend', function () { + animateClasses.forEach((cssClass) => element.classList.remove(cssClass)) + }) + + if (callBack) { + DOMEventHandlerUtil.one(element, 'animationend', callBack) + } + } + + public static transitionEnd(element: HTMLElement, callBack: Function) { + DOMEventHandlerUtil.one(element, 'transitionend', callBack) + } + + public static animationEnd(element: HTMLElement, callBack: Function) { + DOMEventHandlerUtil.one(element, 'animationend', callBack) + } + + public static animationDelay(element: HTMLElement, value: string) { + ElementStyleUtil.set(element, 'animation-delay', value) + } + + public static animationDuration(element: HTMLElement, value: string) { + ElementStyleUtil.set(element, 'animation-duration', value) + } + + public static scrollTo(element: HTMLElement | null, offset: number, duration: number = 500) { + let targetPos = element ? getElementOffset(element).top : 0 + let scrollPos = + window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0 + + if (offset) { + scrollPos += offset + targetPos = targetPos - offset + } + + const from = scrollPos + const to = targetPos + + ElementAnimateUtil.animate(from, to, duration, function (value: number) { + document.documentElement.scrollTop = value + // document.body.parentNode.scrollTop = value; + document.body.scrollTop = value + }) //, easing, done + } + public static scrollTop(offset: number, duration: number) { + ElementAnimateUtil.scrollTo(null, offset, duration) + } +} diff --git a/src/_metronic/assets/ts/_utils/EventHandlerUtil.ts b/src/_metronic/assets/ts/_utils/EventHandlerUtil.ts new file mode 100644 index 0000000..878a793 --- /dev/null +++ b/src/_metronic/assets/ts/_utils/EventHandlerUtil.ts @@ -0,0 +1,144 @@ +import {DataUtil} from './_DataUtil' +import {getUniqueIdWithPrefix} from './_TypesHelpers' + +export interface EventMeta { + name: string + callback: Function + one: boolean + fired: boolean +} + +export class EventHandlerUtil { + static store: { + [name: string]: { + [handlerId: string]: EventMeta + } + } = {} + + private static setEventMetasByName( + name: string, + handlers: { + [handlerId: string]: EventMeta + } + ): void { + EventHandlerUtil.store[name] = handlers + } + + private static getEventMetaByName(name: string): + | { + [handlerId: string]: EventMeta + } + | undefined { + return EventHandlerUtil.store[name] + } + + private static setEventMetaByNameAndHandlerId( + name: string, + handlerId: string, + meta: EventMeta + ): void { + if (EventHandlerUtil.store[name]) { + EventHandlerUtil.store[name][handlerId] = meta + return + } + EventHandlerUtil.store[name] = {} + EventHandlerUtil.store[name][handlerId] = meta + } + + private static getEventMetaByHandlerId(name: string, handlerId: string): EventMeta | undefined { + const handlersIds = EventHandlerUtil.store[name] + if (!handlersIds) { + return + } + return handlersIds[handlerId] + } + + private static setFiredByNameAndHandlerId(name: string, handerId: string, fired: boolean): void { + const meta = EventHandlerUtil.getEventMetaByHandlerId(name, handerId) + if (!meta) { + return + } + + meta.fired = fired + EventHandlerUtil.setEventMetaByNameAndHandlerId(name, handerId, meta) + } + + private static addEvent( + element: HTMLElement, + name: string, + callback: Function, + one: boolean = false + ): string { + const handlerId = getUniqueIdWithPrefix('event') + const data = DataUtil.get(element, name) + const handlersIds = data ? (data as string[]) : [] + handlersIds.push(handlerId) + + DataUtil.set(element, name, handlersIds) + + const meta: EventMeta = { + name: name, + callback: callback, + one: one, + fired: false, + } + + EventHandlerUtil.setEventMetaByNameAndHandlerId(name, handlerId, meta) + return handlerId + } + + private static removeEvent(element: HTMLElement, name: string, handerId: string) { + DataUtil.removeOne(element, name, handerId) + const handlersIds = EventHandlerUtil.store[name] + if (handlersIds) { + return + } + + delete EventHandlerUtil.store[name][handerId] + } + + public static trigger(element: HTMLElement, name: string, target?: any, e?: Event): boolean { + let returnValue = true + if (!DataUtil.has(element, name)) { + return returnValue + } + + let eventValue + let handlerId + const data = DataUtil.get(element, name) + const handlersIds = data ? (data as string[]) : [] + for (let i = 0; i < handlersIds.length; i++) { + handlerId = handlersIds[i] + if (EventHandlerUtil.store[name] && EventHandlerUtil.store[name][handlerId]) { + const handler = EventHandlerUtil.store[name][handlerId] + if (handler.name === name) { + if (handler.one) { + if (handler.fired) { + EventHandlerUtil.store[name][handlerId].fired = true + eventValue = handler.callback.call(this, target) + } + } else { + eventValue = handler.callback.call(this, target) + } + + if (eventValue === false) { + returnValue = false + } + } + } + } + return returnValue + } + + public static on = function (element: HTMLElement, name: string, callBack: Function): void { + EventHandlerUtil.addEvent(element, name, callBack, false) + } + + public static one(element: HTMLElement, name: string, callBack: Function): void { + EventHandlerUtil.addEvent(element, name, callBack, true) + } + + public static off(element: HTMLElement, name: string, handerId: string): void { + EventHandlerUtil.removeEvent(element, name, handerId) + } +} diff --git a/src/_metronic/assets/ts/_utils/_DOMEventHandlerUtil.ts b/src/_metronic/assets/ts/_utils/_DOMEventHandlerUtil.ts new file mode 100644 index 0000000..568f812 --- /dev/null +++ b/src/_metronic/assets/ts/_utils/_DOMEventHandlerUtil.ts @@ -0,0 +1,60 @@ +import {getUniqueIdWithPrefix} from './_TypesHelpers' + +export class DOMEventHandlerUtil { + public static store = new Map() + + public static on( + element: HTMLElement, + selector: string, + eventName: string, + callBack: any + ): string { + const eventId = getUniqueIdWithPrefix('DOMEvent') + DOMEventHandlerUtil.store.set(eventId, (e: Event) => { + const targets = element.querySelectorAll(selector) + let target: HTMLElement | null = e.target as HTMLElement + while (target && target !== element) { + for (let i = 0; i < targets.length; i++) { + if (target === targets[i]) { + callBack.call(target, e) + } + } + + if (target.parentElement) { + target = target.parentElement + } else { + target = null + } + } + }) + element.addEventListener(eventName, DOMEventHandlerUtil.store.get(eventId)) + return eventId + } + + public static off(element: HTMLElement, eventName: string, eventId: string): void { + const funcFromStore = DOMEventHandlerUtil.store.get(eventId) + if (!funcFromStore) { + return + } + + element.removeEventListener(eventName, funcFromStore) + DOMEventHandlerUtil.store.delete(eventId) + } + + public static one(element: HTMLElement, eventName: string, callBack: Function): void { + element.addEventListener(eventName, function calee(e) { + // remove event + if (e.target && e.target.removeEventListener) { + e.target.removeEventListener(e.type, calee) + } + + if (element && e && e.currentTarget) { + // if (element && element.removeEventListener && e && e.currentTarget) { + e.currentTarget.removeEventListener(e.type, calee) + } + + // call hander + return callBack(e) + }) + } +} diff --git a/src/_metronic/assets/ts/_utils/_DataUtil.ts b/src/_metronic/assets/ts/_utils/_DataUtil.ts new file mode 100644 index 0000000..14e9cae --- /dev/null +++ b/src/_metronic/assets/ts/_utils/_DataUtil.ts @@ -0,0 +1,72 @@ +export class DataUtil { + static store: Map> = new Map() + + public static set(instance: HTMLElement | undefined, key: string, data: unknown): void { + if (!instance) { + return + } + + const instanceData = DataUtil.store.get(instance) + if (!instanceData) { + const newMap = new Map().set(key, data) + DataUtil.store.set(instance, newMap) + return + } + + instanceData.set(key, data) + } + + public static get(instance: HTMLElement, key: string): unknown | undefined { + const instanceData = DataUtil.store.get(instance) + if (!instanceData) { + return + } + + return instanceData.get(key) + } + + public static remove(instance: HTMLElement, key: string): void { + const instanceData = DataUtil.store.get(instance) + if (!instanceData) { + return + } + + instanceData.delete(key) + } + + public static removeOne(instance: HTMLElement, key: string, eventId: string) { + const instanceData = DataUtil.store.get(instance) + if (!instanceData) { + return + } + + const eventsIds = instanceData.get(key) + if (!eventsIds) { + return + } + + const updateEventsIds = (eventsIds as string[]).filter((f) => f !== eventId) + DataUtil.set(instance, key, updateEventsIds) + } + + public static has(instance: HTMLElement, key: string): boolean { + const instanceData = DataUtil.store.get(instance) + if (instanceData) { + return instanceData.has(key) + } + + return false + } + + public static getAllInstancesByKey(key: string) { + const result: any[] = [] + DataUtil.store.forEach((val) => { + val.forEach((v, k) => { + if (k === key) { + result.push(v) + } + }) + }) + return result + } +} diff --git a/src/_metronic/assets/ts/_utils/_ElementStyleUtil.ts b/src/_metronic/assets/ts/_utils/_ElementStyleUtil.ts new file mode 100644 index 0000000..b0ddda4 --- /dev/null +++ b/src/_metronic/assets/ts/_utils/_ElementStyleUtil.ts @@ -0,0 +1,17 @@ +export class ElementStyleUtil { + public static set(element: HTMLElement, property: string, value?: any, important?: boolean) { + if (important) { + element.style.setProperty(property, value, 'important') + } else { + element.style.setProperty(property, value) + } + } + + public static get(element: HTMLElement, attributeName: string) { + return element.style.getPropertyValue(attributeName) + } + + public static remove(element: HTMLElement, attibuteName: string) { + element.style.removeProperty(attibuteName) + } +} diff --git a/src/_metronic/assets/ts/_utils/_TypesHelpers.ts b/src/_metronic/assets/ts/_utils/_TypesHelpers.ts new file mode 100644 index 0000000..ea0578b --- /dev/null +++ b/src/_metronic/assets/ts/_utils/_TypesHelpers.ts @@ -0,0 +1,54 @@ +function getObjectPropertyValueByKey(obj: any, key: string): any | undefined { + const map = new Map(Object.entries(obj)) + if (obj.hasOwnProperty(key) && map) { + return map.get(key) + } +} + +/** + * Generates unique ID for give prefix. + * @param {string} prefix Prefix for generated ID + * @returns {boolean} + */ +function getUniqueIdWithPrefix(prefix: string | undefined): string { + const result = Math.floor(Math.random() * new Date().getTime()).toString() + if (!prefix) { + return result + } + + return `${prefix}${result}` +} + +/* eslint-disable no-useless-escape */ +function stringSnakeToCamel(str: string): string { + return str.replace(/(\-\w)/g, function (m) { + return m[1].toUpperCase() + }) +} + +function toJSON(value: string | JSON): JSON | undefined { + if (typeof value !== 'string') { + return value + } + + if (!value) { + return undefined + } + + // ("'" => "\""); + const result = value + .toString() + .split('') + .map((el) => (el !== "'" ? el : '"')) + .join('') + const jsonStr = result.replace(/(\w+:)|(\w+ :)/g, function (matched) { + return '"' + matched.substring(0, matched.length - 1) + '":' + }) + try { + return JSON.parse(jsonStr) + } catch { + return undefined + } +} + +export {getObjectPropertyValueByKey, getUniqueIdWithPrefix, stringSnakeToCamel, toJSON} diff --git a/src/_metronic/assets/ts/_utils/index.ts b/src/_metronic/assets/ts/_utils/index.ts new file mode 100644 index 0000000..02ad68f --- /dev/null +++ b/src/_metronic/assets/ts/_utils/index.ts @@ -0,0 +1,12 @@ +// Types +export * from './models/OffsetModel' +export * from './models/ViewPortModel' +// Helpers +export * from './DomHelpers' +export * from './_TypesHelpers' +// Basic +export * from './_DataUtil' +export * from './_DOMEventHandlerUtil' +export * from './_ElementStyleUtil' +export * from './ElementAnimateUtil' +export * from './EventHandlerUtil' diff --git a/src/_metronic/assets/ts/_utils/models/OffsetModel.ts b/src/_metronic/assets/ts/_utils/models/OffsetModel.ts new file mode 100644 index 0000000..bea6c4e --- /dev/null +++ b/src/_metronic/assets/ts/_utils/models/OffsetModel.ts @@ -0,0 +1,4 @@ +export interface OffsetModel { + top: number + left: number +} diff --git a/src/_metronic/assets/ts/_utils/models/ViewPortModel.ts b/src/_metronic/assets/ts/_utils/models/ViewPortModel.ts new file mode 100644 index 0000000..63ee145 --- /dev/null +++ b/src/_metronic/assets/ts/_utils/models/ViewPortModel.ts @@ -0,0 +1,4 @@ +export interface ViewPortModel { + width: number + height: number +} diff --git a/src/_metronic/assets/ts/components/MenuComponent.ts b/src/_metronic/assets/ts/components/MenuComponent.ts new file mode 100644 index 0000000..814783d --- /dev/null +++ b/src/_metronic/assets/ts/components/MenuComponent.ts @@ -0,0 +1,1090 @@ +import {createPopper, VirtualElement} from '@popperjs/core' +import { + getElementChild, + getElementParents, + getAttributeValueByBreakpoint, + getUniqueIdWithPrefix, + DataUtil, + ElementStyleUtil, + EventHandlerUtil, + insertAfterElement, + slideUp, + slideDown, + DOMEventHandlerUtil, + throttle, + getHighestZindex, +} from '../_utils/index' + +export interface MenuOptions { + dropdown: { + hoverTimeout: number + zindex: number + } + accordion: { + slideSpeed: number + expand: boolean + } +} + +const defaultMenuOptions: MenuOptions = { + dropdown: { + hoverTimeout: 200, + zindex: 105, + }, + accordion: { + slideSpeed: 250, + expand: false, + }, +} + +type PopperPlacement = + | 'right' + | 'auto' + | 'auto-start' + | 'auto-end' + | 'top' + | 'bottom' + | 'left' + | 'top-start' + | 'top-end' + | 'bottom-start' + | 'bottom-end' + | 'right-start' + | 'right-end' + | 'left-start' + | 'left-end' + | undefined + +class MenuComponent { + element: HTMLElement + options: MenuOptions + instanceUid: string + triggerElement: HTMLElement | null = null + + constructor(_element: HTMLElement, options: MenuOptions) { + this.element = _element + this.options = Object.assign(defaultMenuOptions, options) + this.instanceUid = getUniqueIdWithPrefix('menu') + // this.element.setAttribute('data-kt-menu', 'true') + this._setTriggerElement() + this._update() + DataUtil.set(this.element, 'menu', this) + return this + } + + // Set external trigger element + private _setTriggerElement = () => { + const target = document.querySelector( + `[data-kt-menu-target="#${this.element.getAttribute('id')}"` + ) + + if (target) { + this.triggerElement = target as HTMLElement + } else if (this.element.closest('[data-kt-menu-trigger]')) { + this.triggerElement = this.element.closest('[data-kt-menu-trigger]') as HTMLElement + } else if ( + this.element.parentNode && + getElementChild(this.element.parentNode as HTMLElement, '[data-kt-menu-trigger]') + ) { + const child = getElementChild( + this.element.parentNode as HTMLElement, + '[data-kt-menu-trigger]' + ) + if (child) { + this.triggerElement = child + } + } + + if (this.triggerElement) { + DataUtil.set(this.triggerElement, 'menu', this) + } + } + + // Test if menu has external trigger element + private _isTriggerElement = (item: HTMLElement) => { + return this.triggerElement === item + } + + // Get item option(through html attributes) + private _getItemOption = (item: HTMLElement, name: string) => { + let value: string | JSON | null | boolean = null + if (item && item.hasAttribute('data-kt-menu-' + name)) { + const attr = item.getAttribute('data-kt-menu-' + name) || '' + value = getAttributeValueByBreakpoint(attr) + if (value !== null && String(value) === 'true') { + value = true + } else if (value !== null && String(value) === 'false') { + value = false + } + } + return value + } + + // Get item element + private _getItemElement = (_element: HTMLElement): HTMLElement | undefined => { + // Element is the external trigger element + if (this._isTriggerElement(_element)) { + return _element + } + + // Element has item toggler attribute + if (_element.hasAttribute('data-kt-menu-trigger')) { + return _element + } + + // Element has item DOM reference in it's data storage + const itemElement = DataUtil.get(_element, 'item') + if (itemElement) { + return itemElement as HTMLElement + } + + // Item is parent of element + const item = _element.closest('.menu-item[data-kt-menu-trigger]') + if (item) { + return item + } + + // Element's parent has item DOM reference in it's data storage + const sub = _element.closest('.menu-sub') + if (sub) { + const subItem = DataUtil.get(sub as HTMLElement, 'item') + if (subItem) { + return subItem as HTMLElement + } + } + } + + // Get item parent element + private _getItemParentElement = (item: HTMLElement) => { + const sub = item.closest('.menu-sub') + if (!sub) { + return null + } + + const subItem = DataUtil.get(sub, 'item') + if (subItem) { + return subItem as HTMLElement + } + + const parentItem = sub.closest('.menu-item[data-kt-menu-trigger]') + if (sub && parentItem) { + return parentItem + } + + return null + } + + // Get item parent elements + private _getItemParentElements = (item: HTMLElement) => { + const parents: Array = [] + let parent: HTMLElement | null + let i = 0 + let buffer: HTMLElement = item + + do { + parent = this._getItemParentElement(buffer) + if (parent) { + parents.push(parent) + buffer = parent as HTMLElement + } + + i++ + } while (parent !== null && i < 20) + + if (this.triggerElement) { + parents.unshift(this.triggerElement) + } + + return parents + } + + // Prepare popper config for dropdown(see: https://popper.js.org/docs/v2/) + private _getDropdownPopperConfig = (item: HTMLElement) => { + // Placement + const placementOption = this._getItemOption(item, 'placement') + let placement: PopperPlacement = 'right' + if (placementOption) { + placement = placementOption as PopperPlacement + } + + // Flip + // const flipValue = this._getItemOption(item, 'flip') + // const flip = flipValue ? flipValue.toString().split(',') : [] + + // Offset + const offsetValue = this._getItemOption(item, 'offset') + const offset = offsetValue ? offsetValue.toString().split(',') : [] + + // Strategy + const strategy: 'absolute' | 'fixed' | undefined = + this._getItemOption(item, 'overflow') === true ? 'absolute' : 'fixed' + + return { + placement: placement, + strategy: strategy, + modifiers: [ + { + name: 'offset', + options: { + offset: offset, + }, + }, + { + name: 'preventOverflow', + }, + { + name: 'flip', + options: { + // altBoundary: true, + // fallbackPlacements: flip, + flipVariations: false, + }, + }, + ], + } + } + + // Get item child element + private _getItemChildElement = (item: HTMLElement): HTMLElement | null => { + let selector = item + + const subItem = DataUtil.get(item, 'sub') + if (subItem) { + selector = subItem as HTMLElement + } + + if (selector) { + //element = selector.querySelector('.show.menu-item[data-kt-menu-trigger]'); + const element = selector.querySelector('.menu-item[data-kt-menu-trigger]') + if (element) { + return element + } + } + return null + } + + // Get item child elements + private _getItemChildElements = (item: HTMLElement) => { + const children: Array = [] + let child: HTMLElement | null + let i = 0 + let buffer = item + do { + child = this._getItemChildElement(buffer) + if (child) { + children.push(child) + buffer = child as HTMLElement + } + + i++ + } while (child !== null && i < 20) + + return children + } + + // Get item sub element + private _getItemSubElement = (item: HTMLElement): HTMLElement | null => { + if (!item) { + return null + } + + if (this._isTriggerElement(item)) { + return this.element + } + + if (item.classList.contains('menu-sub')) { + return item + } else if (DataUtil.has(item, 'sub')) { + const itemSub = DataUtil.get(item, 'sub') + return itemSub ? (itemSub as HTMLElement) : null + } else { + return getElementChild(item, '.menu-sub') + } + } + + private _getCss = (el: HTMLElement, styleProp: string) => { + const defaultView = (el.ownerDocument || document).defaultView + if (!defaultView) { + return '' + } + + // sanitize property name to css notation + // (hyphen separated words eg. font-Size) + styleProp = styleProp.replace(/([A-Z])/g, '-$1').toLowerCase() + + return defaultView.getComputedStyle(el, null).getPropertyValue(styleProp) + } + + // Get item sub type + private _getItemSubType = (element: HTMLElement) => { + const sub = this._getItemSubElement(element) + if (sub && parseInt(this._getCss(sub as HTMLElement, 'z-index')) > 0) { + return 'dropdown' + } else { + return 'accordion' + } + } + + // Test if item's sub is shown + private _isItemSubShown = (item: HTMLElement) => { + const sub = this._getItemSubElement(item) + if (sub) { + if (this._getItemSubType(item) === 'dropdown') { + const subHTMLElement = sub as HTMLElement + return ( + subHTMLElement.classList.contains('show') && + subHTMLElement.hasAttribute('data-popper-placement') + ) + } else { + return item.classList.contains('show') + } + } + + return false + } + + // Test if item dropdown is permanent + private _isItemDropdownPermanent = (item: HTMLElement) => { + return this._getItemOption(item, 'permanent') === true + } + + // Test if item's parent is shown + private _isItemParentShown = (item: HTMLElement) => { + return getElementParents(item, '.menu-item.show').length > 0 + } + + // Test of it is item sub element + private _isItemSubElement = (item: HTMLElement) => { + return item.classList.contains('menu-sub') + } + + // Test if item has sub + private _hasItemSub = (item: HTMLElement) => { + return item.classList.contains('menu-item') && item.hasAttribute('data-kt-menu-trigger') + } + + // Get link element + private _getItemLinkElement = (item: HTMLElement) => { + return getElementChild(item, '.menu-link') + } + + // Get toggle element + private _getItemToggleElement = (item: HTMLElement) => { + if (this.triggerElement) { + return this.triggerElement + } + + return this._getItemLinkElement(item) + } + + // Show item dropdown + private _showDropdown = (item: HTMLElement) => { + if (EventHandlerUtil.trigger(this.element, 'kt.menu.dropdown.show') === false) { + return + } + + // Hide all currently shown dropdowns except current one + MenuComponent.hideDropdowns(item) + + // const toggle = this._isTriggerElement(item) ? item : this._getItemLinkElement(item); + const sub = this._getItemSubElement(item) + const width = this._getItemOption(item, 'width') + const height = this._getItemOption(item, 'height') + + let zindex = this.options.dropdown.zindex + const parentZindex = getHighestZindex(item) // update + // Apply a new z-index if dropdown's toggle element or it's parent has greater z-index // update + if (parentZindex !== null && parentZindex >= zindex) { + zindex = parentZindex + 1 + } + + if (zindex && sub) { + ElementStyleUtil.set(sub, 'z-index', zindex) + } + + if (width && sub) { + ElementStyleUtil.set(sub, 'width', width) + } + + if (height && sub) { + ElementStyleUtil.set(sub, 'height', height) + } + + this.initDropdownPopper(item, sub as HTMLElement) + + item.classList.add('show') + item.classList.add('menu-dropdown') + sub?.classList.add('show') + + // Append the sub the the root of the menu + if (this._getItemOption(item, 'overflow') === true) { + if (sub) { + document.body.appendChild(sub) + DataUtil.set(item, 'sub', sub) + DataUtil.set(sub, 'item', item) + DataUtil.set(sub, 'menu', this) + } + } else { + if (sub) { + DataUtil.set(sub, 'item', item) + } + } + + EventHandlerUtil.trigger(this.element, 'kt.menu.dropdown.shown') + } + + // Init dropdown popper(new) + private initDropdownPopper = (item: HTMLElement, sub: HTMLElement) => { + // Setup popper instance + let reference + const attach = this._getItemOption(item, 'attach') as string + + if (attach) { + if (attach === 'parent') { + reference = item.parentNode + } else { + reference = document.querySelector(attach) + } + } else { + reference = item + } + + if (reference) { + const popper = createPopper( + reference as Element | VirtualElement, + sub, + this._getDropdownPopperConfig(item) + ) + DataUtil.set(item, 'popper', popper) + } + } + + // Hide item dropdown + private _hideDropdown = (item: HTMLElement) => { + if (EventHandlerUtil.trigger(this.element, 'kt.menu.dropdown.hide') === false) { + return + } + + const sub = this._getItemSubElement(item) + if (sub) { + ElementStyleUtil.set(sub, 'z-index', '') + ElementStyleUtil.set(sub, 'width', '') + ElementStyleUtil.set(sub, 'height', '') + } + + item.classList.remove('show') + item.classList.remove('menu-dropdown') + if (sub) { + sub.classList.remove('show') + } + + // Append the sub back to it's parent + if (this._getItemOption(item, 'overflow') === true) { + if (item.classList.contains('menu-item')) { + if (sub) { + item.appendChild(sub) + } + } else { + insertAfterElement(this.element, item) + } + + if (sub) { + DataUtil.remove(item, 'sub') + DataUtil.remove(sub, 'item') + DataUtil.remove(sub, 'menu') + } + } + + if (DataUtil.has(item, 'popper') === true) { + // @ts-ignore + DataUtil.get(item, 'popper').destroy() + DataUtil.remove(item, 'popper') + } + + // Destroy popper(new) + this.destroyDropdownPopper(item) + EventHandlerUtil.trigger(this.element, 'kt.menu.dropdown.hidden') + } + + // Destroy dropdown popper(new) + private destroyDropdownPopper = (item: HTMLElement) => { + if (DataUtil.has(item, 'popper') === true) { + // @ts-ignore + DataUtil.get(item, 'popper').destroy() + DataUtil.remove(item, 'popper') + } + + EventHandlerUtil.trigger(this.element, 'kt.menu.dropdown.hidden') + } + + private _showAccordion = (item: HTMLElement) => { + if (EventHandlerUtil.trigger(this.element, 'kt.menu.accordion.show') === false) { + return + } + + if (this.options.accordion.expand === false) { + this._hideAccordions(item) + } + + if (DataUtil.has(item, 'popper') === true) { + this._hideDropdown(item) + } + + item.classList.add('hover') // updateWW + item.classList.add('showing') + + const subElement = this._getItemSubElement(item) + if (subElement) { + const sub = subElement as HTMLElement + slideDown(sub, this.options.accordion.slideSpeed, () => { + item.classList.remove('showing') + item.classList.add('show') + sub.classList.add('show') + EventHandlerUtil.trigger(this.element, 'kt.menu.accordion.shown') + }) + } + } + + private _hideAccordion = (item: HTMLElement) => { + if (EventHandlerUtil.trigger(this.element, 'kt.menu.accordion.hide') === false) { + return + } + + const sub = this._getItemSubElement(item) + item.classList.add('hiding') + + if (sub) { + slideUp(sub, this.options.accordion.slideSpeed, () => { + item.classList.remove('hiding') + item.classList.remove('show') + sub.classList.remove('show') + item.classList.remove('hover') // update + EventHandlerUtil.trigger(this.element, 'kt.menu.accordion.hidden') + }) + } + } + + // Hide all shown accordions of item + private _hideAccordions = (item: HTMLElement) => { + const itemsToHide = this.element.querySelectorAll('.show[data-kt-menu-trigger]') + if (itemsToHide && itemsToHide.length > 0) { + for (let i = 0, len = itemsToHide.length; i < len; i++) { + const itemToHide = itemsToHide[i] as HTMLElement + + if ( + this._getItemSubType(itemToHide) === 'accordion' && + itemToHide !== item && + item.contains(itemToHide) === false && + itemToHide.contains(item) === false + ) { + this._hideAccordion(itemToHide) + } + } + } + } + + // Event Handlers + // Reset item state classes if item sub type changed + private _reset = (item: HTMLElement) => { + if (this._hasItemSub(item) === false) { + return + } + + const sub = this._getItemSubElement(item) + + // Reset sub state if sub type is changed during the window resize + if (DataUtil.has(item, 'type') && DataUtil.get(item, 'type') !== this._getItemSubType(item)) { + // updated + item.classList.remove('hover') + item.classList.remove('show') + item.classList.remove('show') + if (sub) { + sub.classList.remove('show') + } + } // updated + } + + // TODO: not done + private _destroy = () => {} + + // Update all item state classes if item sub type changed + private _update = () => { + const items = this.element.querySelectorAll('.menu-item[data-kt-menu-trigger]') + items.forEach((el) => this._reset(el as HTMLElement)) + } + + // Hide item sub + private _hide = (item: HTMLElement) => { + if (!item) { + return + } + + if (this._isItemSubShown(item) === false) { + return + } + + if (this._getItemSubType(item) === 'dropdown') { + this._hideDropdown(item) + } else if (this._getItemSubType(item) === 'accordion') { + this._hideAccordion(item) + } + } + + // Show item sub + private _show = (item: HTMLElement) => { + if (!item) { + return + } + + if (this._isItemSubShown(item) === true) { + return + } + + if (this._getItemSubType(item) === 'dropdown') { + this._showDropdown(item) // // show current dropdown + } else if (this._getItemSubType(item) === 'accordion') { + this._showAccordion(item) + } + + // Remember last submenu type + + DataUtil.set(item, 'type', this._getItemSubType(item)) // updated + } + + // Toggle item sub + private _toggle = (item: HTMLElement) => { + if (!item) { + return + } + + if (this._isItemSubShown(item) === true) { + this._hide(item) + } else { + this._show(item) + } + } + + // Mouseout handle + private _mouseout = (element: HTMLElement, e: MouseEvent) => { + const item = this._getItemElement(element) + if (!item) { + return + } + + if (this._getItemOption(item, 'trigger') !== 'hover') { + return + } + + const timeout = setTimeout(() => { + if (DataUtil.get(item, 'hover') === '1') { + this._hide(item) + } + }, this.options.dropdown.hoverTimeout) + + DataUtil.set(item, 'hover', '1') + DataUtil.set(item, 'timeout', timeout) + } + + // Mouseover handle + private _mouseover = (element: HTMLElement, e: MouseEvent) => { + const item = this._getItemElement(element) + if (!item) { + return + } + + if (this._getItemOption(item, 'trigger') !== 'hover') { + return + } + + if (DataUtil.get(item, 'hover') === '1') { + const timeout = DataUtil.get(item, 'timeout') + if (timeout) { + clearTimeout(timeout as number) + } + DataUtil.remove(item, 'hover') + DataUtil.remove(item, 'timeout') + } + + this._show(item) + } + + // Dismiss handler + private _dismiss = (element: HTMLElement, e: Event) => { + const item = this._getItemElement(element) + if (!item) { + return + } + const items = this._getItemChildElements(item) + //if ( item !== null && _getItemOption(item, 'trigger') === 'click' && _getItemSubType(item) === 'dropdown' ) { + const itemSubType = this._getItemSubType(item) + if (item !== null && itemSubType === 'dropdown') { + this._hide(item) // hide items dropdown + + // Hide all child elements as well + if (items.length > 0) { + for (let i = 0, len = items.length; i < len; i++) { + //if ( _getItemOption(item, 'trigger') === 'click' && _getItemSubType(item) === 'dropdown' ) { + if (items[i] !== null && this._getItemSubType(items[i] as HTMLElement) === 'dropdown') { + this._hide(items[i] as HTMLElement) + } + } + } + } + } + + // Link handler + private _link = (element: HTMLElement, e: Event) => { + if (EventHandlerUtil.trigger(this.element, 'kt.menu.link.click') === false) { + return + } + + // Dismiss all shown dropdowns + MenuComponent.hideDropdowns(undefined) + EventHandlerUtil.trigger(this.element, 'kt.menu.link.clicked') + } + + private _click = (element: HTMLElement, e: Event) => { + e.preventDefault() + const item = this._getItemElement(element) + if (item) { + if (this._getItemOption(item, 'trigger') !== 'click') { + return + } + + if (this._getItemOption(item, 'toggle') === false) { + this._show(item) + } else { + this._toggle(item) + } + } + } + + /////////////////////// + // ** Public API ** // + /////////////////////// + public click = (element: HTMLElement, e: Event) => { + return this._click(element, e) + } + + public link = (element: HTMLElement, e: Event) => { + return this._link(element, e) + } + + public dismiss = (element: HTMLElement, e: Event) => { + return this._dismiss(element, e) + } + + public mouseover = (element: HTMLElement, e: Event) => { + return this._mouseover(element, e as MouseEvent) + } + + public mouseout = (element: HTMLElement, e: Event) => { + return this._mouseout(element, e as MouseEvent) + } + + // General Methods + public getItemTriggerType = (item: HTMLElement) => { + return this._getItemOption(item, 'trigger') + } + + public getItemSubType = (element: HTMLElement) => { + return this._getItemSubType(element) + } + + public show = (item: HTMLElement) => { + return this._show(item) + } + + public hide = (item: HTMLElement) => { + return this._hide(item) + } + + public reset = (item: HTMLElement) => { + return this._reset(item) + } + + public update = () => { + return this._update() + } + + public getElement = () => { + return this.element + } + + public getItemLinkElement = (item: HTMLElement) => { + return this._getItemLinkElement(item) + } + + public getItemToggleElement = (item: HTMLElement) => { + return this._getItemToggleElement(item) + } + + public getItemSubElement = (item: HTMLElement) => { + return this._getItemSubElement(item) + } + + public getItemParentElements = (item: HTMLElement) => { + return this._getItemParentElements(item) + } + + public isItemSubShown = (item: HTMLElement) => { + return this._isItemSubShown(item) + } + + public isItemParentShown = (item: HTMLElement) => { + return this._isItemParentShown(item) + } + + public getTriggerElement = () => { + return this.triggerElement + } + + public isItemDropdownPermanent = (item: HTMLElement) => { + return this._isItemDropdownPermanent(item) + } + + // Accordion Mode Methods + public hideAccordions = (item: HTMLElement) => { + return this._hideAccordions(item) + } + + // Event API + public on = (name: string, handler: any) => { + return EventHandlerUtil.on(this.element, name, handler) + } + + public one = (name: string, handler: any) => { + return EventHandlerUtil.one(this.element, name, handler) + } + + public off = (name: string, handlerId: string) => { + return EventHandlerUtil.off(this.element, name, handlerId) + } + + // public static methods + // Get KTMenu instance by element + public static getInstance = (element: HTMLElement): MenuComponent | null => { + // Element has menu DOM reference in it's DATA storage + const elementMenu = DataUtil.get(element, 'menu') + if (elementMenu) { + return elementMenu as MenuComponent + } + + // Element has .menu parent + const menu = element.closest('.menu') + if (menu) { + const menuData = DataUtil.get(menu as HTMLElement, 'menu') + if (menuData) { + return menuData as MenuComponent + } + } + + // Element has a parent with DOM reference to .menu in it's DATA storage + if (element.classList.contains('menu-link')) { + const sub = element.closest('.menu-sub') + if (sub) { + const subMenu = DataUtil.get(sub as HTMLElement, 'menu') + if (subMenu) { + return subMenu as MenuComponent + } + } + } + + return null + } + + // Hide all dropdowns and skip one if provided + public static hideDropdowns = (skip: HTMLElement | undefined) => { + const items = document.querySelectorAll( + '.show.menu-dropdown[data-kt-menu-trigger]' + ) + + if (items && items.length > 0) { + for (let i = 0, len = items.length; i < len; i++) { + const item = items[i] + const menu = MenuComponent.getInstance(item as HTMLElement) + + if (menu && menu.getItemSubType(item) === 'dropdown') { + if (skip) { + if ( + // @ts-ignore + menu.getItemSubElement(item).contains(skip) === false && + item.contains(skip) === false && + item !== skip + ) { + menu.hide(item) + } + } else { + menu.hide(item) + } + } + } + } + } + + public static updateDropdowns = () => { + const items = document.querySelectorAll('.show.menu-dropdown[data-kt-menu-trigger]') + if (items && items.length > 0) { + for (let i = 0, len = items.length; i < len; i++) { + const item = items[i] + + if (DataUtil.has(item as HTMLElement, 'popper')) { + // @ts-ignore + DataUtil.get(item as HTMLElement, 'popper').forceUpdate() + } + } + } + } + + // Global handlers + public static createInstances = (selector: string) => { + // Initialize menus + document.querySelectorAll(selector).forEach((el) => { + const menuItem = el as HTMLElement + let menuInstance = MenuComponent.getInstance(menuItem) + if (!menuInstance) { + menuInstance = new MenuComponent(el as HTMLElement, defaultMenuOptions) + } + }) + } + + public static initGlobalHandlers = () => { + // Dropdown handler + document.addEventListener('click', (e) => { + const menuItems = document.querySelectorAll( + '.show.menu-dropdown[data-kt-menu-trigger]:not([data-kt-menu-static="true"])' + ) + if (menuItems && menuItems.length > 0) { + for (let i = 0; i < menuItems.length; i++) { + const item = menuItems[i] as HTMLElement + const menuObj = MenuComponent.getInstance(item) as MenuComponent + if (menuObj && menuObj.getItemSubType(item) === 'dropdown') { + // eslint-disable-next-line @typescript-eslint/no-unused-vars + const menu = menuObj.getElement() + const sub = menuObj.getItemSubElement(item) as HTMLElement + if (item === e.target || item.contains(e.target as HTMLElement)) { + continue + } + + if (sub && (sub === e.target || sub.contains(e.target as HTMLElement))) { + continue + } + menuObj.hide(item) + } + } + } + }) + + // Sub toggle handler + DOMEventHandlerUtil.on( + document.body, + '.menu-item[data-kt-menu-trigger] > .menu-link, [data-kt-menu-trigger]:not(.menu-item):not([data-kt-menu-trigger="auto"])', + 'click', + function (this: HTMLElement, e: Event) { + const menu = MenuComponent.getInstance(this) as MenuComponent + if (menu) { + return menu.click(this, e) + } + } + ) + + // // Link handler + DOMEventHandlerUtil.on( + document.body, + '.menu-item:not([data-kt-menu-trigger]) > .menu-link', + 'click', + function (this: HTMLElement, e: Event) { + e.stopPropagation() + const menu = MenuComponent.getInstance(this) + if (menu && menu.link) { + return menu.link(this, e) + } + } + ) + + // Dismiss handler + DOMEventHandlerUtil.on( + document.body, + '[data-kt-menu-dismiss="true"]', + 'click', + function (this: HTMLElement, e: Event) { + const menu = MenuComponent.getInstance(this) as MenuComponent + if (menu) { + return menu.dismiss(this, e) + } + } + ) + + // Mouseover handler + DOMEventHandlerUtil.on( + document.body, + '[data-kt-menu-trigger], .menu-sub', + 'mouseover', + function (this: HTMLElement, e: Event) { + const menu = MenuComponent.getInstance(this) as MenuComponent + if (menu && menu.getItemSubType(this) === 'dropdown') { + return menu.mouseover(this, e) + } + } + ) + + // Mouseout handler + DOMEventHandlerUtil.on( + document.body, + '[data-kt-menu-trigger], .menu-sub', + 'mouseout', + function (this: HTMLElement, e: Event) { + const menu = MenuComponent.getInstance(this) as MenuComponent + if (menu && menu.getItemSubType(this) === 'dropdown') { + return menu.mouseout(this, e) + } + } + ) + + // Resize handler + window.addEventListener('resize', () => { + let timer + throttle( + timer, + () => { + // Locate and update Drawer instances on window resize + const elements = document.querySelectorAll('[data-kt-menu="true"]') + elements.forEach((el) => { + const menu = MenuComponent.getInstance(el as HTMLElement) + if (menu) { + menu.update() + } + }) + }, + 200 + ) + }) + } + + public static bootstrap = () => { + MenuComponent.initGlobalHandlers() + MenuComponent.createInstances('[data-kt-menu="true"]') + } + + public static reinitialization = () => { + MenuComponent.createInstances('[data-kt-menu="true"]') + } + + public static createInsance = ( + selector: string, + options: MenuOptions = defaultMenuOptions + ): MenuComponent | undefined => { + const element = document.body.querySelector(selector) + if (!element) { + return + } + const item = element as HTMLElement + let menu = MenuComponent.getInstance(item) + if (!menu) { + menu = new MenuComponent(item, options) + } + return menu + } +} + +export {MenuComponent, defaultMenuOptions} diff --git a/src/_metronic/assets/ts/components/SearchComponent.ts b/src/_metronic/assets/ts/components/SearchComponent.ts new file mode 100644 index 0000000..429c00e --- /dev/null +++ b/src/_metronic/assets/ts/components/SearchComponent.ts @@ -0,0 +1,478 @@ +import { + EventHandlerUtil, + DataUtil, + getBreakpoint, + getAttributeValueByBreakpoint, + stringSnakeToCamel, + getObjectPropertyValueByKey, + getViewPort, + isVisibleElement, + throttle, +} from '../_utils/index' + +import {MenuComponent, defaultMenuOptions} from './MenuComponent' + +export interface ISearchOptions { + minLength: number // Miniam text lenght to query search + keypress: boolean // Enable search on keypress + enter: boolean // Enable search on enter key press + layout: 'menu' | 'inline' // Use 'menu' or 'inline' layout options to display search results + responsive?: number // Pass integer value or bootstrap compatible breakpoint key(sm,md,lg,xl,xxl) to enable reponsive form mode for device width below the breakpoint value + showOnFocus: boolean // Always show menu on input focus +} + +export interface ISearchQueries { + componentName: string + instanseQuery: string + attrQuery: string +} + +const defaultSearchOptions: ISearchOptions = { + minLength: 2, // Miniam text lenght to query search + keypress: true, // Enable search on keypress + enter: true, // Enable search on enter key press + layout: 'menu', // Use 'menu' or 'inline' layout options to display search results + showOnFocus: true, // Always show menu on input focus +} + +const defaultSearchQueires: ISearchQueries = { + componentName: 'search', + instanseQuery: '[data-kt-search]', + attrQuery: 'data-kt-search-', +} + +class SearchComponent { + element: HTMLElement + contentElement: HTMLElement + formElement: HTMLFormElement + inputElement: HTMLInputElement + spinnerElement: HTMLElement + clearElement: HTMLElement + toggleElement: HTMLElement + submitElement: HTMLElement + toolbarElement: HTMLElement + resultsElement: HTMLElement + suggestionElement: HTMLElement + emptyElement: HTMLElement + layout: any + + options: ISearchOptions + queries: ISearchQueries + + processing: boolean = false + menuObject: MenuComponent | undefined + + constructor(_element: HTMLElement, _options: ISearchOptions, _queries: ISearchQueries) { + // Variables + this.options = Object.assign(defaultSearchOptions, _options) + this.queries = _queries + + // Elements + this.element = _element + this.contentElement = this._getElement('content') as HTMLElement + this.formElement = this._getElement('form') as HTMLFormElement + this.inputElement = this._getElement('input') as HTMLInputElement + this.spinnerElement = this._getElement('spinner') as HTMLElement + this.clearElement = this._getElement('clear') as HTMLElement + this.toggleElement = this._getElement('toggle') as HTMLElement + this.submitElement = this._getElement('submit') as HTMLElement + this.toolbarElement = this._getElement('toolbar') as HTMLElement + + this.resultsElement = this._getElement('results') as HTMLElement + this.suggestionElement = this._getElement('suggestion') as HTMLElement + this.emptyElement = this._getElement('empty') as HTMLElement + + // Layout + this.layout = this.getOption('layout') + if (this.layout === 'menu') { + this.menuObject = new MenuComponent(this.contentElement, defaultMenuOptions) + } + + // Update + this.update() + + // Event Handlers + this.handlers() + + DataUtil.set(this.element, this.queries.componentName, this) + } + + private _getElement = (name: string) => { + return this.element.querySelector('[data-kt-search-element="' + name + '"]') + } + + // Get option + private getOption = (name: string) => { + const attr = this.element.getAttribute(`${this.queries.attrQuery}${name}`) + if (attr) { + const value = getAttributeValueByBreakpoint(attr) + + if (value !== null && String(value) === 'true') { + return true + } else if (value !== null && String(value) === 'false') { + return false + } + + return value + } else { + const optionName = stringSnakeToCamel(name) + + const option = getObjectPropertyValueByKey(this.options, optionName) + if (option) { + return getAttributeValueByBreakpoint(option) + } else { + return null + } + } + } + + // Check if responsive form mode is enabled + private getResponsiveFormMode = () => { + const responsive = this.getOption('responsive') as string + const width = getViewPort().width + + if (!responsive) { + return null + } + + const breakpoint = getBreakpoint(responsive) + let breakPointNum = -1 + if (!breakpoint) { + breakPointNum = parseInt(responsive) + } else { + breakPointNum = +breakpoint + } + + if (width < breakPointNum) { + return 'on' + } else { + return 'off' + } + } + + // Focus + private focus = () => { + this.element.classList.add('focus') + + if ( + this.getOption('show-on-focus') === true || + this.inputElement.value.length >= this.options.minLength + ) { + this.show() + } + } + + // Blur + private blur = () => { + this.element.classList.remove('focus') + } + + // Enter + private enter = (e: KeyboardEvent) => { + const key = e.charCode || e.keyCode || 0 + + if (key === 13) { + e.preventDefault() + + this.search() + } + } + + // Input + private input = () => { + if (this.getOption('min-length')) { + const minLength = parseInt(this.getOption('min-length') as string) + + if (this.inputElement.value.length >= minLength) { + this.search() + } else if (this.inputElement.value.length === 0) { + this.clear() + } + } + } + + private handlers(): void { + const context = this + + // Focus + this.inputElement.addEventListener('focus', this.focus) + + // Blur + this.inputElement.addEventListener('blur', this.blur) + + // Keypress + if (this.getOption('keypress') === true) { + this.inputElement.addEventListener('input', this.input) + } + + // Submit + if (this.submitElement) { + this.submitElement.addEventListener('click', this.search) + } + + // Enter + if (this.getOption('enter') === true) { + this.inputElement.addEventListener('keypress', this.enter) + } + + // Clear + if (this.clearElement) { + this.clearElement.addEventListener('click', this.clear) + } + + // Menu + if (this.menuObject) { + // Toggle menu + if (this.toggleElement) { + this.toggleElement.addEventListener('click', this.show) + + this.menuObject.on('kt.menu.dropdown.show', function () { + // @ts-ignore + if (isVisibleElement(context.toggleElement)) { + // @ts-ignore + context.toggleElement.classList.add('active') + // @ts-ignore + context.toggleElement.classList.add('show') + } + }) + + this.menuObject.on('kt.menu.dropdown.hide', function () { + // @ts-ignore + if (isVisibleElement(context.toggleElement)) { + // @ts-ignore + context.toggleElement.classList.remove('active') + // @ts-ignore + context.toggleElement.classList.remove('show') + } + }) + } + + this.menuObject.on('kt.menu.dropdown.shown', function () { + // @ts-ignore + context.inputElement.focus() + }) + } + + // Window resize handling + window.addEventListener('resize', () => { + let timer + + throttle( + timer, + () => { + this.update() + }, + 200 + ) + }) + } + + /////////////////////// + // ** Public API ** // + /////////////////////// + // Update + public update = () => { + // Handle responsive form + if (this.layout === 'menu') { + const responsiveFormMode = this.getResponsiveFormMode() + + if (responsiveFormMode === 'on' && !this.contentElement.contains(this.formElement)) { + this.contentElement.prepend(this.formElement) + this.formElement.classList.remove('d-none') + } else if (responsiveFormMode === 'off' && this.contentElement.contains(this.formElement)) { + this.element.prepend(this.formElement) + this.formElement.classList.add('d-none') + } + } + } + + // Show menu + public show = () => { + if (this.menuObject) { + this.update() + + this.menuObject.show(this.element) + } + } + + // Hide menu + public hide = () => { + if (this.menuObject) { + this.update() + + this.menuObject.hide(this.element) + } + } + + // Search + public search = () => { + if (!this.processing) { + // Show search spinner + if (this.spinnerElement) { + this.spinnerElement.classList.remove('d-none') + } + + // Hide search clear button + if (this.clearElement) { + this.clearElement.classList.add('d-none') + } + + // Hide search toolbar + if (this.toolbarElement) { + this.toolbarElement.classList.add('d-none') + } + + // Focus input + this.inputElement.focus() + + this.processing = true + EventHandlerUtil.trigger(this.element, 'kt.search.process', this) + } + } + + // Complete + public complete = () => { + if (this.spinnerElement) { + this.spinnerElement.classList.add('d-none') + } + + // Show search toolbar + if (this.clearElement) { + this.clearElement.classList.remove('d-none') + } + + if (this.inputElement.value.length === 0) { + this.clear() + } + + // Focus input + this.inputElement.focus() + + this.show() + + this.processing = false + } + + // Clear + public clear = () => { + if (EventHandlerUtil.trigger(this.element, 'kt.search.clear') === false) { + return + } + + // Clear and focus input + this.inputElement.value = '' + this.inputElement.focus() + + // Hide clear icon + if (this.clearElement) { + this.clearElement.classList.add('d-none') + } + + // Show search toolbar + if (this.toolbarElement) { + this.toolbarElement.classList.remove('d-none') + } + + // Hide menu + if (this.getOption('show-on-focus') === false) { + this.hide() + } + + EventHandlerUtil.trigger(this.element, 'kt.search.cleared') + } + + public isProcessing = () => { + return this.processing + } + + public getQuery = () => { + return this.inputElement.value + } + + public getMenu = () => { + return this.menuObject + } + + public getFormElement = () => { + return this.formElement + } + + public getInputElement(): HTMLInputElement { + return this.inputElement + } + + public getContentElement(): HTMLElement { + return this.contentElement + } + + public getElement(): HTMLElement { + return this.element + } + + // Event API + public on = (name: string, handler: Function) => { + return EventHandlerUtil.on(this.element, name, handler) + } + + public one = (name: string, handler: Function) => { + return EventHandlerUtil.one(this.element, name, handler) + } + + public off = (name: string, handlerId: string) => { + return EventHandlerUtil.off(this.element, name, handlerId) + } + + // Static methods + public static getInstance = ( + el: HTMLElement, + componentName: string = defaultSearchQueires.componentName + ) => { + const Search = DataUtil.get(el, componentName) + if (Search) { + return Search as SearchComponent + } + + return null + } + + public static createInstances = ( + selector: string = defaultSearchQueires.instanseQuery, + options: ISearchOptions = defaultSearchOptions, + queries: ISearchQueries = defaultSearchQueires + ) => { + const elements = document.body.querySelectorAll(selector) + elements.forEach((el) => { + const item = el as HTMLElement + let Search = SearchComponent.getInstance(item) + if (!Search) { + Search = new SearchComponent(item, options, queries) + } + }) + } + + public static createInsance = ( + selector: string = defaultSearchQueires.instanseQuery, + options: ISearchOptions = defaultSearchOptions, + queries: ISearchQueries = defaultSearchQueires + ): SearchComponent | undefined => { + const element = document.body.querySelector(selector) + if (!element) { + return + } + const item = element as HTMLElement + let Search = SearchComponent.getInstance(item) + if (!Search) { + Search = new SearchComponent(item, options, queries) + } + return Search + } + + public static bootstrap = (selector: string = defaultSearchQueires.instanseQuery) => { + SearchComponent.createInstances(selector) + } + + public static reinitialization = (selector: string = defaultSearchQueires.instanseQuery) => { + SearchComponent.createInstances(selector) + } +} +export {SearchComponent, defaultSearchOptions, defaultSearchQueires} diff --git a/src/_metronic/assets/ts/components/_CookieComponent.ts b/src/_metronic/assets/ts/components/_CookieComponent.ts new file mode 100644 index 0000000..e05add8 --- /dev/null +++ b/src/_metronic/assets/ts/components/_CookieComponent.ts @@ -0,0 +1,60 @@ +/* eslint-disable no-useless-escape */ +// DOCS: https://javascript.info/cookie +export class CookieComponent { + /** + * Returns the cookie with the given name, or undefined if not found + * + * @param {string} name - cookie name + * @returns string | null + */ + public static get(name: string): string | undefined { + const matches = document.cookie.match( + new RegExp('(?:^|; )' + name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + '=([^;]*)') + ) + return matches ? decodeURIComponent(matches[1]) : undefined + } + + /** + * Please note that a cookie value is encoded, + * so getCookie uses a built-in decodeURIComponent function to decode it. + * + * @param {string} name - cookie name + * @param {string | number | boolean} value - cookie value + * @param {any} cookieOptions - cookie options + * @returns void + */ + public static set(name: string, value: string | number | boolean, cookieOptions: any): void { + const options = { + path: '/', + // add other defaults here if necessary + ...cookieOptions, + } + + if (options.expires instanceof Date) { + options.expires = options.expires.toUTCString() + } + + let updatedCookie = encodeURIComponent(name) + '=' + encodeURIComponent(value) + + for (const optionKey in options) { + updatedCookie += '; ' + optionKey + const optionValue = options[optionKey] + if (optionValue !== true) { + updatedCookie += '=' + optionValue + } + } + + document.cookie = updatedCookie + } + + /** + * To delete a cookie, we can call it with a negative expiration date + * + * @param {string} name + */ + public static delete(name: string): void { + CookieComponent.set(name, '', { + 'max-age': -1, + }) + } +} diff --git a/src/_metronic/assets/ts/components/_DrawerComponent.ts b/src/_metronic/assets/ts/components/_DrawerComponent.ts new file mode 100644 index 0000000..4a04ec5 --- /dev/null +++ b/src/_metronic/assets/ts/components/_DrawerComponent.ts @@ -0,0 +1,388 @@ +import { + EventHandlerUtil, + getUniqueIdWithPrefix, + getObjectPropertyValueByKey, + stringSnakeToCamel, + getAttributeValueByBreakpoint, + throttle, + getCSS, + DOMEventHandlerUtil, + ElementStyleUtil, +} from '../_utils/index' + +export class DrawerStore { + static store: Map = new Map() + + public static set(instanceId: string, drawerComponentObj: DrawerComponent): void { + if (DrawerStore.has(instanceId)) { + return + } + + DrawerStore.store.set(instanceId, drawerComponentObj) + } + + public static get(instanceId: string): DrawerComponent | undefined { + if (!DrawerStore.has(instanceId)) { + return + } + return DrawerStore.store.get(instanceId) + } + + public static remove(instanceId: string): void { + if (!DrawerStore.has(instanceId)) { + return + } + + DrawerStore.store.delete(instanceId) + } + + public static has(instanceId: string): boolean { + return DrawerStore.store.has(instanceId) + } + + public static getAllInstances() { + return DrawerStore.store + } +} + +export interface DrawerOptions { + overlay: boolean + baseClass: string + overlayClass: string + direction: string +} + +const defaultDrawerOptions: DrawerOptions = { + overlay: true, + baseClass: 'drawer', + overlayClass: 'drawer-overlay', + direction: 'end', +} + +class DrawerComponent { + element: HTMLElement + overlayElement: HTMLElement | null = null + toggleElement: HTMLElement | null = null + options: DrawerOptions + instanceUid: string + name: string = '' + shown: boolean = false + lastWidth: number = 0 + closeElement: HTMLElement | null = null + + constructor(_element: HTMLElement, options: DrawerOptions) { + this.element = _element + this.options = Object.assign(defaultDrawerOptions, options) + this.instanceUid = getUniqueIdWithPrefix('drawer') + this.overlayElement = null + this.name = this.element.getAttribute('data-kt-drawer-name') || '' + this.shown = false + this.toggleElement = null + // Event Handlers + this._handlers() + // Update Instance + this._update() + // Bind Instance + DrawerStore.set(this.element.id, this) + } + + private _handlers = () => { + const togglers = this._getOption('toggle') as string + const closers = this._getOption('close') as string + + if (togglers !== null && togglers.length > 0) { + DOMEventHandlerUtil.on(document.body, togglers, 'click', (e: Event) => { + e.preventDefault() + this.toggleElement = document.getElementById(togglers) + this._toggle() + }) + } + + if (closers !== null && closers.length > 0) { + DOMEventHandlerUtil.on(document.body, closers, 'click', (e: Event) => { + e.preventDefault() + this.closeElement = document.getElementById(closers) + + this._hide() + }) + } + } + + private _update = () => { + const width = String(this._getOption('width')) + const direction = String(this._getOption('direction')) + + // Reset state + const hasBaseClass = this.element.classList.contains(`${this.options.baseClass}-on`) + const bodyCanvasAttr = String(document.body.getAttribute(`data-kt-drawer-${this.name}-`)) + + if (hasBaseClass === true && bodyCanvasAttr === 'on') { + this.shown = true + } else { + this.shown = false + } + + // Activate/deactivate + if (this._getOption('activate') === true) { + this.element.classList.add(this.options.baseClass) + this.element.classList.add(`${this.options.baseClass}-${direction}`) + ElementStyleUtil.set(this.element, 'width', width, true) + + this.lastWidth = parseInt(width) + } else { + ElementStyleUtil.set(this.element, 'width', '') + this.element.classList.remove(this.options.baseClass) + this.element.classList.remove(`${this.options.baseClass}-${direction}`) + this._hide() + } + } + + private _getOption = (name: string) => { + const attr = this.element.getAttribute(`data-kt-drawer-${name}`) + if (attr) { + const value = getAttributeValueByBreakpoint(attr) + if (value !== null && String(value) === 'true') { + return true + } else { + if (value !== null && String(value) === 'false') { + return false + } + } + + return value + } else { + const optionName = stringSnakeToCamel(name) + const option = getObjectPropertyValueByKey(this.options, optionName) + if (option) { + return getAttributeValueByBreakpoint(option) + } else { + return null + } + } + } + + private _toggle = () => { + if (EventHandlerUtil.trigger(this.element, 'kt.drawer.toggle') === false) { + return + } + + if (this.shown) { + this._hide() + } else { + this._show() + } + + EventHandlerUtil.trigger(this.element, 'kt.drawer.toggled') + } + + private _hide = () => { + if (EventHandlerUtil.trigger(this.element, 'kt.drawer.hide') === false) { + return + } + + this.shown = false + this._deleteOverlay() + document.body.removeAttribute(`data-kt-drawer-${this.name}`) + document.body.removeAttribute(`data-kt-drawer`) + this.element.classList.remove(`${this.options.baseClass}-on`) + if (this.toggleElement != null) { + this.toggleElement.classList.remove('active') + } + + EventHandlerUtil.trigger(this.element, 'kt.drawer.after.hidden') + } + + private _show = () => { + if (EventHandlerUtil.trigger(this.element, 'kt.drawer.show') === false) { + return + } + + this.shown = true + this._createOverlay() + document.body.setAttribute(`data-kt-drawer-${this.name}`, 'on') + document.body.setAttribute('data-kt-drawer', 'on') + this.element.classList.add(`${this.options.baseClass}-on`) + if (this.toggleElement !== null) { + this.toggleElement.classList.add('active') + } + + EventHandlerUtil.trigger(this.element, 'kt.drawer.shown') + } + + private _createOverlay = () => { + if (this._getOption('overlay') === true) { + this.overlayElement = document.createElement('DIV') + const elementZIndex = getCSS(this.element, 'z-index') + if (elementZIndex) { + const overlayZindex = parseInt(elementZIndex) - 1 + ElementStyleUtil.set(this.overlayElement, 'z-index', overlayZindex) // update + } + document.body.append(this.overlayElement) + const overlayClassOption = this._getOption('overlay-class') + if (overlayClassOption) { + this.overlayElement.classList.add(overlayClassOption.toString()) + } + + if(!this._getOption('permanent')){ + this.overlayElement.addEventListener('click', (e) => { + e.preventDefault() + this._hide() + }) + } + } + } + + private _deleteOverlay = () => { + if (this.overlayElement !== null && this.overlayElement.parentNode) { + this.overlayElement.parentNode.removeChild(this.overlayElement) + } + } + + private _getDirection = () => { + return String(this._getOption('direction')) === 'left' ? 'left' : 'right' + } + + private _getWidth = () => { + let width = this._getOption('width') + if (width && width === 'auto') { + width = getCSS(this.element, 'width') + } + + return width + } + + /////////////////////// + // ** Public API ** // + /////////////////////// + public toggle = () => { + this._toggle() + } + + public show = () => { + this._show() + } + + public hide = () => { + this._hide() + } + + public isShown = () => { + return this.shown + } + + public update = () => { + this._update() + } + + public goElement = () => { + return this.element + } + + // Event API + public on = (name: string, handler: Function) => { + return EventHandlerUtil.on(this.element, name, handler) + } + + public one = (name: string, handler: Function) => { + return EventHandlerUtil.one(this.element, name, handler) + } + + public off = (name: string, handerId: string) => { + return EventHandlerUtil.off(this.element, name, handerId) + } + + public trigger = (name: string, event: Event) => { + return EventHandlerUtil.trigger(this.element, name, event) + } + + // Static methods + public static hasInstace = (elementId: string): boolean => { + return DrawerStore.has(elementId) + } + + public static getInstance = (elementId: string) => { + return DrawerStore.get(elementId) + } + + public static hideAll = () => { + const oldInstances = DrawerStore.getAllInstances() + oldInstances.forEach((dr) => { + dr.hide() + }) + } + + public static updateAll = () => { + const oldInstances = DrawerStore.getAllInstances() + oldInstances.forEach((dr) => { + dr.update() + }) + } + + // Create Instances + public static createInstances(selector: string): void { + const elements = document.body.querySelectorAll(selector) + elements.forEach((element) => { + const item = element as HTMLElement + let drawer = DrawerComponent.getInstance(item.id) + if (!drawer) { + drawer = new DrawerComponent(item, defaultDrawerOptions) + } + drawer.element = item + drawer.hide() + }) + } + + // Dismiss instances + public static handleDismiss = () => { + // External drawer toggle handler + DOMEventHandlerUtil.on(document.body, '[data-kt-drawer-dismiss="true"]', 'click', () => { + /* @ts-ignore */ + const element = this.closest('[data-kt-drawer="true"]') + if (element) { + const drawer = DrawerComponent.getInstance(element) + if (drawer && drawer.isShown()) { + drawer.hide() + } + } + }) + } + + // Global Initialization + public static initGlobalHandlers(): void { + // Window Resize Handling + window.addEventListener('resize', function () { + let timer: number | undefined + throttle( + timer, + () => { + // Locate and update Drawer instances on window resize + const elements = document.body.querySelectorAll('[data-kt-drawer="true"]') + elements.forEach((el) => { + const item = el as HTMLElement + const instance = DrawerComponent.getInstance(item.id) + if (instance) { + instance.element = item + instance.update() + } + }) + }, + 200 + ) + }) + } + + public static bootstrap = () => { + DrawerComponent.createInstances('[data-kt-drawer="true"]') + DrawerComponent.initGlobalHandlers() + DrawerComponent.handleDismiss() + } + + public static reinitialization = () => { + DrawerComponent.createInstances('[data-kt-drawer="true"]') + DrawerComponent.hideAll() + DrawerComponent.updateAll() + DrawerComponent.handleDismiss() + } +} + +export {DrawerComponent, defaultDrawerOptions} diff --git a/src/_metronic/assets/ts/components/_FeedbackComponent.ts b/src/_metronic/assets/ts/components/_FeedbackComponent.ts new file mode 100644 index 0000000..c3ebb12 --- /dev/null +++ b/src/_metronic/assets/ts/components/_FeedbackComponent.ts @@ -0,0 +1,152 @@ +import { + DataUtil, + ElementStyleUtil, + EventHandlerUtil, + getUniqueIdWithPrefix, + getAttributeValueByBreakpoint, +} from '../_utils/index' + +export interface FeedbackOptions { + width?: number + placement?: string + content?: string + type?: string +} + +const defaultFeedbackOptions: FeedbackOptions = { + width: 100, + placement: 'top-center', + content: '', + type: 'popup', +} + +class FeedbackComponent { + element: HTMLElement + options: FeedbackOptions + instanceUid: string + shown: boolean + + constructor(_element: HTMLElement, options: FeedbackOptions) { + this.element = _element + this.options = Object.assign(defaultFeedbackOptions, options) + this.instanceUid = getUniqueIdWithPrefix('feedback') + this.shown = false + + // Event handlers + this._handlers() // will add in the show popup + DataUtil.set(this.element, 'feedback', this) + } + + private _handlers = () => { + this.element.addEventListener('click', (e: Event) => { + e.preventDefault() + this._go() + }) + } + + private _go = () => {} + + private showPopup = () => { + this.element = document.createElement('DIV') + + this.element.classList.add('feedback feedback-popup') + this.element.innerHTML = this.options.content || '' + + if (this.options.placement === 'top-center') { + this.setPopupTopCenterPosition() + } + + document.body.appendChild(this.element) + this.element.classList.add('feedback-shown') + this.shown = true + } + + private setPopupTopCenterPosition = () => { + const width = getAttributeValueByBreakpoint(this.options.width?.toString() || '0') + const height = ElementStyleUtil.get(this.element, 'height') + this.element.classList.add('feedback-top-center') + ElementStyleUtil.set(this.element, 'width', width) + ElementStyleUtil.set(this.element, 'left', '50%') + ElementStyleUtil.set(this.element, 'top', '-' + height) + } + + private hidePopup = () => { + this.element.remove() + } + + /////////////////////// + // ** Public API ** // + /////////////////////// + public show = () => { + if (EventHandlerUtil.trigger(this.element, 'kt.feedback.show') === false) { + return + } + + if (this.options.type === 'popup') { + this.showPopup() + } + + EventHandlerUtil.trigger(this.element, 'kt.feedback.shown') + + return this + } + + public hide = () => { + if (EventHandlerUtil.trigger(this.element, 'kt.feedback.hide') === false) { + return + } + + if (this.options.type === 'popup') { + this.hidePopup() + } + + this.shown = false + EventHandlerUtil.trigger(this.element, 'kt.feedback.hidden') + return this + } + + public isShown = () => { + return this.isShown + } + + public getElement = () => { + return this.element + } + + // Event API + public on = (name: string, handler: Function) => { + return EventHandlerUtil.on(this.element, name, handler) + } + + public one = (name: string, handler: Function) => { + return EventHandlerUtil.one(this.element, name, handler) + } + + public off = (name: string, handerId: string) => { + return EventHandlerUtil.off(this.element, name, handerId) + } + + public trigger = (name: string, event: Event) => { + return EventHandlerUtil.trigger(this.element, name, event) + } + + // Create Instances + public static createInstances(selector: string) { + throw new Error('not implemented') + } + + // Static methods + public static hasInstace(element: HTMLElement) { + throw new Error('not implemented') + } + + public static getInstance(element: HTMLElement) { + throw new Error('not implemented') + } + + public static bootstrap(attr: string = '[data-Feedback]') { + throw new Error('not implemented') + } +} + +export {FeedbackComponent, defaultFeedbackOptions} diff --git a/src/_metronic/assets/ts/components/_ImageInputComponent.ts b/src/_metronic/assets/ts/components/_ImageInputComponent.ts new file mode 100644 index 0000000..1301a95 --- /dev/null +++ b/src/_metronic/assets/ts/components/_ImageInputComponent.ts @@ -0,0 +1,229 @@ +import {EventHandlerUtil, DataUtil, getUniqueIdWithPrefix, getCSS} from '../_utils/index' + +export interface IImageInputOptions {} + +export interface IImageInputQueries { + componentName: string + instanseQuery: string + inputQuery: string + wrapperQuery: string + cancelQuery: string + removeQuery: string + hiddenQuery: string +} + +const defaultImageInputOptions = {} + +const defaultImageInputQueires: IImageInputQueries = { + componentName: 'image-input', + instanseQuery: '[data-kt-image-input]', + inputQuery: 'input[type="file"]', + wrapperQuery: '.image-input-wrapper', + cancelQuery: '[data-kt-image-input-action="cancel"]', + removeQuery: '[data-kt-image-input-action="remove"]', + hiddenQuery: 'input[type="hidden"]', +} + +class ImageInputComponent { + element: HTMLElement + inputElement: HTMLInputElement | null + wrapperElement: HTMLElement | null + cancelElement: HTMLElement | null + removeElement: HTMLElement | null + hiddenElement: HTMLInputElement | null + src: string = '' + options: IImageInputOptions + queries: IImageInputQueries + uid: string + value: string = '' + + constructor(_element: HTMLElement, _options: IImageInputOptions, _queries: IImageInputQueries) { + // Variables + this.options = Object.assign(defaultImageInputOptions, _options) + this.queries = _queries + this.uid = getUniqueIdWithPrefix(this.queries.componentName) + + // Elements + this.element = _element + this.inputElement = this.element.querySelector(this.queries.inputQuery) + this.wrapperElement = this.element.querySelector(this.queries.wrapperQuery) + this.cancelElement = this.element.querySelector(this.queries.cancelQuery) + this.removeElement = this.element.querySelector(this.queries.removeQuery) + this.hiddenElement = this.element.querySelector(this.queries.hiddenQuery) + if (this.wrapperElement) { + this.src = getCSS(this.wrapperElement, 'backgroundImage') + } + + // Event Handlers + this.handlers() + + DataUtil.set(this.element, this.queries.componentName, this) + } + + private handlers(): void { + this.element.addEventListener('change', this._change) + if (this.cancelElement) { + this.cancelElement.addEventListener('click', this._cancel) + } + + if (this.removeElement) { + this.removeElement.addEventListener('click', this._cancel) + } + } + + // Event Handlers + private _change = (e: Event) => { + e.preventDefault() + + if (this.inputElement !== null && this.inputElement.files && this.inputElement.files[0]) { + // Fire change event + if (EventHandlerUtil.trigger(this.element, 'kt.imageinput.change', e) === false) { + return + } + + const reader = new FileReader() + + reader.onload = (e: ProgressEvent) => { + if (this.wrapperElement && e.target) { + this.wrapperElement.style.setProperty('background-image', `url('${e.target.result}')`) + } + } + + reader.readAsDataURL(this.inputElement.files[0]) + this.element.classList.add('image-input-changed') + this.element.classList.remove('image-input-empty') + + // Fire removed event + EventHandlerUtil.trigger(this.element, 'kt.imageinput.changed', e) + } + } + + private _cancel = (e: Event) => { + e.preventDefault() + + // Fire cancel event + if (EventHandlerUtil.trigger(this.element, 'kt.imageinput.cancel', e) === false) { + return + } + + this.element.classList.remove('image-input-changed') + this.element.classList.remove('image-input-empty') + this.element.style.setProperty('background-image', this.src) + if (this.inputElement) { + this.inputElement.value = '' + } + + if (this.hiddenElement !== null) { + this.hiddenElement.value = '0' + } + + // Fire canceled event + EventHandlerUtil.trigger(this.element, 'kt.imageinput.canceled', e) + } + + private _remove = (e: Event) => { + e.preventDefault() + + // Fire remove event + if (EventHandlerUtil.trigger(this.element, 'kt.imageinput.remove', e) === false) { + return + } + + this.element.classList.remove('image-input-changed') + this.element.classList.add('image-input-empty') + if (this.wrapperElement) { + this.wrapperElement.style.setProperty('background-image', 'none') + } + + if (this.inputElement) { + this.inputElement.value = '' + } + + if (this.hiddenElement !== null) { + this.hiddenElement.value = '1' + } + + // Fire removed event + EventHandlerUtil.trigger(this.element, 'kt.imageinput.removed', e) + } + + /////////////////////// + // ** Public API ** // + /////////////////////// + public getInputElement(): HTMLInputElement | null { + return this.inputElement + } + + public getElement(): HTMLElement { + return this.element + } + + // Event API + public on = (name: string, handler: Function) => { + return EventHandlerUtil.on(this.element, name, handler) + } + + public one = (name: string, handler: Function) => { + return EventHandlerUtil.one(this.element, name, handler) + } + + public off = (name: string, handlerId: string) => { + return EventHandlerUtil.off(this.element, name, handlerId) + } + + public trigger = (name: string, event: Event) => { + return EventHandlerUtil.trigger(this.element, name, event) + } + + // Static methods + public static getInstance = ( + el: HTMLElement, + componentName: string = defaultImageInputQueires.componentName + ): ImageInputComponent | undefined => { + const ImageInput = DataUtil.get(el, componentName) + if (ImageInput) { + return ImageInput as ImageInputComponent + } + } + + public static createInstances = ( + selector: string = defaultImageInputQueires.instanseQuery, + options: IImageInputOptions = defaultImageInputOptions, + queries: IImageInputQueries = defaultImageInputQueires + ) => { + const elements = document.body.querySelectorAll(selector) + elements.forEach((el) => { + const item = el as HTMLElement + let ImageInput = ImageInputComponent.getInstance(item) + if (!ImageInput) { + ImageInput = new ImageInputComponent(item, options, queries) + } + }) + } + + public static createInsance = ( + selector: string = defaultImageInputQueires.instanseQuery, + options: IImageInputOptions = defaultImageInputOptions, + queries: IImageInputQueries = defaultImageInputQueires + ): ImageInputComponent | undefined => { + const element = document.body.querySelector(selector) + if (!element) { + return + } + const item = element as HTMLElement + let ImageInput = ImageInputComponent.getInstance(item) + if (!ImageInput) { + ImageInput = new ImageInputComponent(item, options, queries) + } + return ImageInput + } + + public static bootstrap = (selector: string = defaultImageInputQueires.instanseQuery) => { + ImageInputComponent.createInstances(selector) + } + + public static reinitialization = (selector: string = defaultImageInputQueires.instanseQuery) => { + ImageInputComponent.createInstances(selector) + } +} +export {ImageInputComponent, defaultImageInputOptions, defaultImageInputQueires} diff --git a/src/_metronic/assets/ts/components/_PasswordMeterComponent.ts b/src/_metronic/assets/ts/components/_PasswordMeterComponent.ts new file mode 100644 index 0000000..afb59ad --- /dev/null +++ b/src/_metronic/assets/ts/components/_PasswordMeterComponent.ts @@ -0,0 +1,271 @@ + +/* eslint-disable no-useless-escape */ +import {DataUtil} from '../_utils/index' + +export interface IPasswordMeterOptions { + minLength: number + checkUppercase: boolean + checkLowercase: boolean + checkDigit: boolean + checkChar: boolean + scoreHighlightClass: string +} + +export interface IPasswordMeterQueries { + componentName: string + instanseQuery: string + inputQuery: string + visibilityQuery: string + highlightQuery: string +} + +const defaultPasswordMeterOptions = { + minLength: 8, + checkUppercase: true, + checkLowercase: true, + checkDigit: true, + checkChar: true, + scoreHighlightClass: 'active', +} + +const defaultPasswordMeterQueires: IPasswordMeterQueries = { + componentName: 'password-meter', + instanseQuery: '[data-kt-password-meter]', + inputQuery: 'input[type]', + visibilityQuery: '[data-kt-password-meter-control="visibility"]', + highlightQuery: '[data-kt-password-meter-control="highlight"]', +} + +class PasswordMeterComponent { + element: HTMLElement + inputElement: HTMLInputElement | null + visibilityElement: HTMLElement | null + highlightElement: HTMLElement | null + options: IPasswordMeterOptions + queries: IPasswordMeterQueries + score: number + checkSteps: number + + constructor( + _element: HTMLElement, + _options: IPasswordMeterOptions, + _queries: IPasswordMeterQueries + ) { + this.element = _element + this.options = Object.assign(defaultPasswordMeterOptions, _options) + this.queries = _queries + this.score = 0 + this.checkSteps = 5 + + // Elements + this.inputElement = this.element.querySelector(this.queries.inputQuery) + this.visibilityElement = this.element.querySelector(this.queries.visibilityQuery) + this.highlightElement = this.element.querySelector(this.queries.highlightQuery) + + // Event Handlers + this.handlers() + + DataUtil.set(this.element, this.queries.componentName, this) + } + + private handlers(): void { + if (this.inputElement) { + this.inputElement.addEventListener('input', () => { + this.check() + }) + } + + if (this.visibilityElement) { + this.visibilityElement.addEventListener('click', () => { + this.visitbility() + }) + } + } + + private visitbility() { + if (this.visibilityElement && this.inputElement) { + const visibleIcon = this.visibilityElement.querySelector('i:not(.d-none), .:not(.d-none)') + + const hiddenIcon = this.visibilityElement.querySelector('i.d-none, ..d-none') + + const typeAttr = this.inputElement.getAttribute('type') || '' + + if (typeAttr === 'password') { + this.inputElement.setAttribute('type', 'text') + } else { + this.inputElement.setAttribute('type', 'password') + } + + visibleIcon?.classList.add('d-none') + hiddenIcon?.classList.remove('d-none') + + this.inputElement.focus() + } + } + + private checkScore(): number { + return 0 + } + + private checkLength(): boolean { + if (this.inputElement) { + return this.inputElement.value.length >= this.options.minLength // 20 score + } + + return false + } + + private checkLowerCase(): boolean { + const val = this.inputElement ? this.inputElement.value : '' + return /[a-z]/.test(val) // 20 score + } + + private checkUppercase(): boolean { + const val = this.inputElement ? this.inputElement.value : '' + return /[A-Z]/.test(val) // 20 score + } + + private checkDigit(): boolean { + const val = this.inputElement ? this.inputElement.value : '' + return /[0-9]/.test(val) // 20 score + } + + private checkChar(): boolean { + const val = this.inputElement ? this.inputElement.value : '' + return /[~`!#$%\^&*+=\-\[\]\\';,/{}|\\":<>\?]/g.test(val) // 20 score + } + + private getCheckScore(): number { + let count = 1 + if (this.options.checkUppercase) { + count++ + } + + if (this.options.checkLowercase) { + count++ + } + + if (this.options.checkDigit) { + count++ + } + + if (this.options.checkChar) { + count++ + } + + this.checkSteps = count + return 100 / this.checkSteps + } + + private highlight() { + const items = this.highlightElement + ? [].slice.call(this.highlightElement.querySelectorAll('div')) + : [] + const total = items.length + let index = 0 + const checkScore = this.getCheckScore() + const score = this.getScore() + + items.map((item: HTMLElement) => { + index++ + if (checkScore * index * (this.checkSteps / total) <= score) { + item.classList.add('active') + } else { + item.classList.remove('active') + } + }) + } + + /////////////////////// + // ** Public API ** // + /////////////////////// + public reset = () => { + this.score = 0 + this.highlight() + } + + public getScore() { + return this.score + } + + public check() { + let score = 0 + const checkScore = this.getCheckScore() + if (this.checkLength()) { + score = score + checkScore + } + + if (this.options.checkUppercase && this.checkLowerCase()) { + score = score + checkScore + } + + if (this.options.checkLowercase && this.checkUppercase()) { + score = score + checkScore + } + + if (this.options.checkDigit && this.checkDigit()) { + score = score + checkScore + } + + if (this.options.checkChar && this.checkChar()) { + score = score + checkScore + } + + this.score = score + this.highlight() + } + + // Static methods + public static getInstance = ( + el: HTMLElement, + componentName: string = defaultPasswordMeterQueires.componentName + ): PasswordMeterComponent | undefined => { + const passwordMeter = DataUtil.get(el, componentName) + if (passwordMeter) { + return passwordMeter as PasswordMeterComponent + } + } + + public static createInstances = ( + selector: string = defaultPasswordMeterQueires.instanseQuery, + options: IPasswordMeterOptions = defaultPasswordMeterOptions, + queries: IPasswordMeterQueries = defaultPasswordMeterQueires + ) => { + const elements = document.body.querySelectorAll(selector) + elements.forEach((el) => { + const item = el as HTMLElement + let passwordMeter = PasswordMeterComponent.getInstance(item) + if (!passwordMeter) { + passwordMeter = new PasswordMeterComponent(item, options, queries) + } + }) + } + + public static createInsance = ( + selector: string = defaultPasswordMeterQueires.instanseQuery, + options: IPasswordMeterOptions = defaultPasswordMeterOptions, + queries: IPasswordMeterQueries = defaultPasswordMeterQueires + ): PasswordMeterComponent | undefined => { + const element = document.body.querySelector(selector) + if (!element) { + return + } + const item = element as HTMLElement + let passwordMeter = PasswordMeterComponent.getInstance(item) + if (!passwordMeter) { + passwordMeter = new PasswordMeterComponent(item, options, queries) + } + return passwordMeter + } + + public static bootstrap = (selector: string = defaultPasswordMeterQueires.instanseQuery) => { + PasswordMeterComponent.createInstances(selector) + } + + public static reinitialization = ( + selector: string = defaultPasswordMeterQueires.instanseQuery + ) => { + PasswordMeterComponent.createInstances(selector) + } +} +export {PasswordMeterComponent, defaultPasswordMeterOptions, defaultPasswordMeterQueires} diff --git a/src/_metronic/assets/ts/components/_ScrollComponent.ts b/src/_metronic/assets/ts/components/_ScrollComponent.ts new file mode 100644 index 0000000..26f31a3 --- /dev/null +++ b/src/_metronic/assets/ts/components/_ScrollComponent.ts @@ -0,0 +1,312 @@ +import { + DataUtil, + getObjectPropertyValueByKey, + stringSnakeToCamel, + getAttributeValueByBreakpoint, + getViewPort, + isVisibleElement, + throttle, + getCSS, + ElementStyleUtil, +} from '../_utils/index' +import {CookieComponent} from './_CookieComponent' + +export interface ScrollOptions { + saveState?: boolean +} + +const defaultScrollOptions: ScrollOptions = { + saveState: true, +} + +class ScrollComponent { + element: HTMLElement + options: ScrollOptions + id: string + + constructor(_element: HTMLElement, options: ScrollOptions) { + this.element = _element + this.options = Object.assign(defaultScrollOptions, options) + this.id = this.element.getAttribute('id') || '' + this.update() + // this.element.setAttribute('data-kt-scrolltop', 'true') + DataUtil.set(this.element, 'scroll', this) + } + + private getOption = (name: string) => { + if (this.element.hasAttribute('data-kt-scroll-' + name) === true) { + const attr = this.element.getAttribute('data-kt-scroll-' + name) || '' + let value: string | JSON | boolean = getAttributeValueByBreakpoint(attr) + if (value !== null && String(value) === 'true') { + value = true + } else if (value !== null && String(value) === 'false') { + value = false + } + + return value + } else { + const optionName = stringSnakeToCamel(name) + const option = getObjectPropertyValueByKey(this.options, optionName) + if (option) { + return getAttributeValueByBreakpoint(option) + } else { + return null + } + } + } + + private getHeightType = () => { + if (this.getOption('height')) { + return 'height' + } + if (this.getOption('min-height')) { + return 'min-height' + } + if (this.getOption('max-height')) { + return 'max-height' + } + } + + private getAutoHeight = () => { + let height: number | string = getViewPort().height + const dependencies = this.getOption('dependencies') + const wrappers = this.getOption('wrappers') + const offset = this.getOption('offset') + + // Height dependencies + if (dependencies !== null) { + const elements = document.querySelectorAll(dependencies as string) + if (elements && elements.length > 0) { + for (let i = 0, len = elements.length; i < len; i++) { + const element = elements[i] as HTMLElement + if (isVisibleElement(element) === false) { + continue + } + + height = height - parseInt(getCSS(element, 'height')) + height = height - parseInt(getCSS(element, 'margin-top')) + height = height - parseInt(getCSS(element, 'margin-bottom')) + + const borderTop = getCSS(element, 'border-top') + if (borderTop) { + height = height - parseInt(borderTop) + } + + const borderBottom = getCSS(element, 'border-bottom') + if (borderBottom) { + height = height - parseInt(borderBottom) + } + } + } + } + + // Wrappers + if (wrappers !== null) { + const elements = document.querySelectorAll(wrappers as string) + if (elements && elements.length > 0) { + for (let i = 0, len = elements.length; i < len; i++) { + const element = elements[i] as HTMLElement + + if (!isVisibleElement(element)) { + continue + } + + height = height - parseInt(getCSS(element, 'margin-top')) + height = height - parseInt(getCSS(element, 'margin-bottom')) + height = height - parseInt(getCSS(element, 'padding-top')) + height = height - parseInt(getCSS(element, 'padding-bottom')) + + const borderTop = getCSS(element, 'border-top') + if (borderTop) { + height = height - parseInt(borderTop) + } + + const borderBottom = getCSS(element, 'border-bottom') + if (borderBottom) { + height = height - parseInt(borderBottom) + } + } + } + } + + // Custom offset + if (offset !== null) { + height = height - parseInt(offset as string) + } + + height = height - parseInt(getCSS(this.element, 'margin-top')) + height = height - parseInt(getCSS(this.element, 'margin-bottom')) + + const borderTop = getCSS(this.element, 'border-top') + if (borderTop) { + height = height - parseInt(borderTop) + } + + const borderBottom = getCSS(this.element, 'border-bottom') + if (borderBottom) { + height = height - parseInt(borderBottom) + } + + height = String(height) + 'px' + + return height + } + + private setupHeight = () => { + const height = this.getHeight() + const heightType = this.getHeightType() as string + + // Set height + if (height !== null && height.length > 0) { + ElementStyleUtil.set(this.element, heightType, height) + } else { + ElementStyleUtil.set(this.element, heightType, '') + } + } + + private setupState = () => { + if (this.getOption('save-state') === true && this.id) { + const cookie = CookieComponent.get(this.id + 'st') + if (cookie) { + const pos = parseInt(cookie) + + if (pos > 0) { + this.element.scrollTop = pos + } + } + } + } + + private setupScrollHandler = () => { + if (this.getOption('save-state') === true && this.id) { + this.element.addEventListener('scroll', this.scrollHandler) + } else { + this.element.removeEventListener('scroll', this.scrollHandler) + } + } + + private scrollHandler = () => { + const cookieId = this.id + 'st' + CookieComponent.set(cookieId, this.element.scrollTop, {}) + } + + private destroyScrollHandler = () => { + this.element.removeEventListener('scroll', this.scrollHandler) + } + + private resetHeight = () => { + const heghtType = this.getHeightType() + if (heghtType) { + ElementStyleUtil.set(this.element, heghtType, '') + } + } + + /////////////////////// + // ** Public API ** // + /////////////////////// + public update = () => { + // Activate/deactivate + if ( + this.getOption('activate') === true || + !this.element.hasAttribute('data-kt-scroll-activate') + ) { + this.setupHeight() + this.setupScrollHandler() + this.setupState() + } else { + this.resetHeight() + this.destroyScrollHandler() + } + } + + public getHeight = () => { + const heightType = this.getHeightType() + const height = this.getOption(heightType || '') + if (height instanceof Function) { + return height.call(height) + } else if (height !== null && typeof height === 'string' && height.toLowerCase() === 'auto') { + return this.getAutoHeight() + } else { + return height + } + } + + public getElement = () => { + return this.element + } + + // Static methods + public static hasInstace(element: HTMLElement) { + return DataUtil.has(element, 'scroll') + } + + public static getInstance(element: HTMLElement): ScrollComponent | undefined { + if (element !== null && ScrollComponent.hasInstace(element)) { + const data = DataUtil.get(element, 'scroll') + if (data) { + return data as ScrollComponent + } + } + } + + // Create Instances + public static createInstances(selector: string) { + const elements = document.body.querySelectorAll(selector) + elements.forEach((element: Element) => { + const item = element as HTMLElement + let scroll = ScrollComponent.getInstance(item) + if (!scroll) { + scroll = new ScrollComponent(item, defaultScrollOptions) + } + }) + } + + public static destroyAll(attr: string = '[data-kt-scroll="true"]') {} + + public static bootstrap(attr: string = '[data-kt-scroll="true"]') { + ScrollComponent.createInstances(attr) + ScrollComponent.resize() + } + + public static createInstance = ( + element: HTMLElement, + options: ScrollOptions = defaultScrollOptions + ): ScrollComponent | undefined => { + let scroll = ScrollComponent.getInstance(element) + if (!scroll) { + scroll = new ScrollComponent(element, options) + } + return scroll + } + + public static reinitialization(attr: string = '[data-kt-scroll="true"]') { + ScrollComponent.createInstances(attr) + } + + public static updateAll() { + const elements = document.body.querySelectorAll('[data-kt-scroll="true"]') + elements.forEach((element: Element) => { + const instance = ScrollComponent.getInstance(element as HTMLElement) + if (instance) { + instance.update() + } + }) + } + + public static resize() { + // Window Resize Handling + window.addEventListener('resize', function () { + let timer + throttle( + timer, + () => { + // Locate and update Drawer instances on window resize + ScrollComponent.updateAll() + }, + 200 + ) + }) + } +} + +export {ScrollComponent, defaultScrollOptions} diff --git a/src/_metronic/assets/ts/components/_ScrollTopComponent.ts b/src/_metronic/assets/ts/components/_ScrollTopComponent.ts new file mode 100644 index 0000000..ea8d924 --- /dev/null +++ b/src/_metronic/assets/ts/components/_ScrollTopComponent.ts @@ -0,0 +1,148 @@ +import { + getScrollTop, + getAttributeValueByBreakpoint, + throttle, + getObjectPropertyValueByKey, + stringSnakeToCamel, + getUniqueIdWithPrefix, + DataUtil, + ElementAnimateUtil, +} from '../_utils/index' + +export interface IScrollTopOptions { + offset: number + speed: number +} + +const defaultScrollTopOptions: IScrollTopOptions = { + offset: 200, + speed: 600, +} + +class ScrollTopComponent { + element: HTMLElement + options: IScrollTopOptions + instanceUid: string + + constructor(_element: HTMLElement, options: IScrollTopOptions) { + this.element = _element + this.options = Object.assign(defaultScrollTopOptions, options) + this.instanceUid = getUniqueIdWithPrefix('scrolltop') + + // Event Handlers + this._handlers() + + // Bind Instance + DataUtil.set(this.element, 'scrolltop', this) + } + + private _handlers = () => { + let timer: number + window.addEventListener('scroll', () => { + throttle(timer, () => { + this._scroll() + }) + }) + + this.element.addEventListener('click', (e: Event) => { + e.preventDefault() + this._go() + }) + } + + private _scroll = () => { + const offset = parseInt(this._getOption('offset') as string) + const pos = getScrollTop() // current vertical position + if (pos > offset) { + if (!document.body.hasAttribute('data-kt-scrolltop')) { + document.body.setAttribute('data-kt-scrolltop', 'on') + } + } else { + if (document.body.hasAttribute('data-kt-scrolltop')) { + document.body.removeAttribute('data-kt-scrolltop') + } + } + } + + private _go = () => { + const speed = parseInt(this._getOption('speed') as string) + ElementAnimateUtil.scrollTop(0, speed) + } + + private _getOption = (name: string) => { + const attr = this.element.getAttribute(`data-kt-scrolltop-${name}`) + if (attr) { + const value = getAttributeValueByBreakpoint(attr) + return value !== null && String(value) === 'true' + } + + const optionName = stringSnakeToCamel(name) + const option = getObjectPropertyValueByKey(this.options, optionName) + if (option) { + return getAttributeValueByBreakpoint(option) + } + + return null + } + + /////////////////////// + // ** Public API ** // + /////////////////////// + + // Plugin API + public go = () => { + return this._go() + } + + public getElement = () => { + return this.element + } + + // Static methods + public static getInstance = (el: HTMLElement): ScrollTopComponent | undefined => { + const scrollTop = DataUtil.get(el, 'scrolltop') + if (scrollTop) { + return scrollTop as ScrollTopComponent + } + } + + public static createInstances = (selector: string) => { + const elements = document.body.querySelectorAll(selector) + elements.forEach((el) => { + const item = el as HTMLElement + let scrollTop = ScrollTopComponent.getInstance(item) + if (!scrollTop) { + scrollTop = new ScrollTopComponent(item, defaultScrollTopOptions) + } + }) + } + + public static createInsance = ( + selector: string, + options: IScrollTopOptions = defaultScrollTopOptions + ): ScrollTopComponent | undefined => { + const element = document.body.querySelector(selector) + if (!element) { + return + } + const item = element as HTMLElement + let scrollTop = ScrollTopComponent.getInstance(item) + if (!scrollTop) { + scrollTop = new ScrollTopComponent(item, options) + } + return scrollTop + } + + public static bootstrap = () => { + ScrollTopComponent.createInstances('[data-kt-scrolltop="true"]') + } + + public static reinitialization = () => { + ScrollTopComponent.createInstances('[data-kt-scrolltop="true"]') + } + + public static goTop = () => { + ElementAnimateUtil.scrollTop(0, defaultScrollTopOptions.speed) + } +} +export {ScrollTopComponent, defaultScrollTopOptions} diff --git a/src/_metronic/assets/ts/components/_StepperComponent.ts b/src/_metronic/assets/ts/components/_StepperComponent.ts new file mode 100644 index 0000000..c7a03d2 --- /dev/null +++ b/src/_metronic/assets/ts/components/_StepperComponent.ts @@ -0,0 +1,332 @@ +import { + DataUtil, + DOMEventHandlerUtil, + ElementAnimateUtil, + ElementStyleUtil, + EventHandlerUtil, + getElementIndex, + getUniqueIdWithPrefix, +} from '../_utils/index' + +export interface IStepperOptions { + startIndex: number + animation: boolean + animationSpeed: string + animationNextClass: string + animationPreviousClass: string +} + +const defaultStepperOptions: IStepperOptions = { + startIndex: 1, + animation: false, + animationSpeed: '0.3s', + animationNextClass: 'animate__animated animate__slideInRight animate__fast', + animationPreviousClass: 'animate__animated animate__slideInLeft animate__fast', +} + +class StepperComponent { + element: HTMLElement + options: IStepperOptions + instanceUid: string + steps: NodeListOf + btnNext: HTMLElement | null + btnPrev: HTMLElement | null + btnSubmit: HTMLElement | null + totalStepsNumber: number = 0 + passedStepIndex: number = 0 + currentStepIndex: number = 1 + + constructor(_element: HTMLElement, options: IStepperOptions) { + this.element = _element + this.options = Object.assign(defaultStepperOptions, options) + this.instanceUid = getUniqueIdWithPrefix('stepper') + + // Elements + this.steps = this.element.querySelectorAll('[data-kt-stepper-element="nav"]') + this.btnNext = this.element.querySelector('[data-kt-stepper-action="next"]') + this.btnPrev = this.element.querySelector('[data-kt-stepper-action="previous"]') + this.btnSubmit = this.element.querySelector('[data-kt-stepper-action="submit"]') + + // Variables + this.totalStepsNumber = this.steps?.length | 0 + this.passedStepIndex = 0 + this.currentStepIndex = 1 + + // Set Current Step + if (this.options.startIndex > 1) { + this._goTo(this.options.startIndex) + } + + // Event Handlers + this.initHandlers() + + // Bind Instance + DataUtil.set(this.element, 'stepper', this) + } + + private _goTo = (index: number) => { + EventHandlerUtil.trigger(this.element, 'kt.stepper.change') + // Skip if this step is already shown + if (index === this.currentStepIndex || index > this.totalStepsNumber || index < 0) { + return + } + + // Validate step number + index = parseInt(index.toString()) + // Set current step + this.passedStepIndex = this.currentStepIndex + this.currentStepIndex = index + + // Refresh elements + this.refreshUI() + + EventHandlerUtil.trigger(this.element, 'kt.stepper.changed') + } + + private initHandlers = () => { + this.btnNext?.addEventListener('click', (e: Event) => { + e.preventDefault() + + EventHandlerUtil.trigger(this.element, 'kt.stepper.next', e) + }) + + this.btnPrev?.addEventListener('click', (e: Event) => { + e.preventDefault() + + EventHandlerUtil.trigger(this.element, 'kt.stepper.previous', e) + }) + + DOMEventHandlerUtil.on(this.element, '[data-kt-stepper-action="step"]', 'click', (e: Event) => { + e.preventDefault() + + if (this.steps && this.steps.length > 0) { + for (let i = 0; i < this.steps.length; i++) { + if ((this.steps[i] as HTMLElement) === this.element) { + const index = i + 1 + + const stepDirection = this._getStepDirection(index) + EventHandlerUtil.trigger(this.element, `stepper.${stepDirection}`, e) + return + } + } + } + }) + } + + private _getStepDirection = (index: number) => { + return index > this.currentStepIndex ? 'next' : 'previous' + } + + private getStepContent = (index: number) => { + const content = this.element.querySelectorAll('[data-kt-stepper-element="content"]') + if (!content) { + return false + } + + if (content[index - 1]) { + return content[index - 1] + } + + return false + } + + private getLastStepIndex = () => { + return this.totalStepsNumber + } + + private getTotalStepsNumber = () => { + return this.totalStepsNumber + } + + private refreshUI = () => { + let state = '' + + if (this.isLastStep()) { + state = 'last' + } else if (this.isFirstStep()) { + state = 'first' + } else { + state = 'between' + } + + // Set state class + this.element.classList.remove('last') + this.element.classList.remove('first') + this.element.classList.remove('between') + + this.element.classList.add(state) + + // Step Items + const elements = this.element.querySelectorAll( + '[data-kt-stepper-element="nav"], [data-kt-stepper-element="content"], [data-kt-stepper-element="info"]' + ) + + if (!elements || elements.length <= 0) { + return + } + + for (let i = 0, len = elements.length; i < len; i++) { + const element = elements[i] as HTMLElement + const index = getElementIndex(element) + 1 + + element.classList.remove('current') + element.classList.remove('completed') + element.classList.remove('pending') + + if (index === this.currentStepIndex) { + element.classList.add('current') + + if ( + this.options.animation !== false && + element.getAttribute('data-kt-stepper-element') === 'content' + ) { + ElementStyleUtil.set(element, 'animationDuration', this.options.animationSpeed) + + const animation = + this._getStepDirection(this.passedStepIndex) === 'previous' + ? this.options.animationPreviousClass + : this.options.animationNextClass + ElementAnimateUtil.animateClass(element, animation) + } + } else { + if (index < this.currentStepIndex) { + element.classList.add('completed') + } else { + element.classList.add('pending') + } + } + } + } + + private isLastStep = () => { + return this.currentStepIndex === this.totalStepsNumber + } + + private isFirstStep = () => { + return this.currentStepIndex === 1 + } + + private isBetweenStep = () => { + return this.isLastStep() === false && this.isFirstStep() === false + } + + // /////////////////////// + // // ** Public API ** // + // /////////////////////// + + // // Plugin API + public goto = (index: number) => { + return this._goTo(index) + } + + public goNext = () => { + return this.goto(this.getNextStepIndex()) + } + + public goPrev = () => { + return this.goto(this.getPrevStepIndex()) + } + + public goFirst = () => { + return this.goto(1) + } + + public goLast = () => { + return this.goto(this.getLastStepIndex()) + } + + public getCurrentStepIndex = () => { + return this.currentStepIndex + } + + public getNextStepIndex = () => { + if (this.totalStepsNumber >= this.currentStepIndex + 1) { + return this.currentStepIndex + 1 + } else { + return this.totalStepsNumber + } + } + + public getPassedStepIndex = () => { + return this.passedStepIndex + } + + public getPrevStepIndex = () => { + if (this.currentStepIndex - 1 > 1) { + return this.currentStepIndex - 1 + } else { + return 1 + } + } + + public getElement = (index: number) => { + return this.element + } + + // Event API + public on = (name: string, handler: Function) => { + return EventHandlerUtil.on(this.element, name, handler) + } + + public one = (name: string, handler: Function) => { + return EventHandlerUtil.one(this.element, name, handler) + } + + public off = (name: string, handlerId: string) => { + return EventHandlerUtil.off(this.element, name, handlerId) + } + + public destroy = () => { + console.log('destroy stepper') + } + + public trigger = (name: string, event: Event) => { + return EventHandlerUtil.trigger(this.element, name, event) + } + + // Static methods + public static hasInstace(element: HTMLElement): boolean { + return DataUtil.has(element, 'stepper') + } + + public static getInstance(element: HTMLElement): StepperComponent | undefined { + if (element !== null && StepperComponent.hasInstace(element)) { + const data = DataUtil.get(element, 'stepper') + if (data) { + return data as StepperComponent + } + } + } + + // Create Instances + public static createInstances(selector: string): void { + const elements = document.body.querySelectorAll(selector) + elements.forEach((element) => { + const item = element as HTMLElement + let stepper = StepperComponent.getInstance(item) + if (!stepper) { + stepper = new StepperComponent(item, defaultStepperOptions) + } + }) + } + + public static createInsance = ( + element: HTMLElement, + options: IStepperOptions = defaultStepperOptions + ): StepperComponent | null => { + if (!element) { + return null + } + let stepper = StepperComponent.getInstance(element) + if (!stepper) { + stepper = new StepperComponent(element, options) + } + return stepper + } + + public static bootstrap(attr: string = '[data-kt-stepper]') { + StepperComponent.createInstances(attr) + } +} + +export {StepperComponent, defaultStepperOptions} diff --git a/src/_metronic/assets/ts/components/_StickyComponent.ts b/src/_metronic/assets/ts/components/_StickyComponent.ts new file mode 100644 index 0000000..1b3d552 --- /dev/null +++ b/src/_metronic/assets/ts/components/_StickyComponent.ts @@ -0,0 +1,297 @@ +import { + getElementOffset, + getScrollTop, + getAttributeValueByBreakpoint, + getUniqueIdWithPrefix, + getObjectPropertyValueByKey, + stringSnakeToCamel, + getCSS, + DataUtil, + ElementAnimateUtil, + ElementStyleUtil, + EventHandlerUtil, +} from '../_utils/index' + +export interface StickyOptions { + offset: number + reverse: boolean + animation: boolean + animationSpeed: string + animationClass: string +} + +const defaultStickyOptions: StickyOptions = { + offset: 200, + reverse: false, + animation: true, + animationSpeed: '0.3s', + animationClass: 'animation-slide-in-down', +} + +class StickyComponent { + element: HTMLElement + options: StickyOptions + instanceUid: string + instanceName: string | null = '' + attributeName: string + attributeName2: string + eventTriggerState: boolean + lastScrollTop: number + + constructor(_element: HTMLElement, options: StickyOptions) { + this.element = _element + this.options = Object.assign(defaultStickyOptions, options) + this.instanceUid = getUniqueIdWithPrefix('sticky') + this.instanceName = this.element.getAttribute('data-kt-sticky-name') + this.attributeName = 'data-kt-sticky-' + this.instanceName + this.attributeName2 = 'data-kt-' + this.instanceName + this.eventTriggerState = true + this.lastScrollTop = 0 + + // Event Handlers + window.addEventListener('scroll', this.scroll) + + // Initial Launch + this.scroll() + + DataUtil.set(this.element, 'sticky', this) + } + + private scroll = () => { + const offset = this.getOption('offset') + const reverse = this.getOption('reverse') + + // Exit if false + if (offset === false) { + return + } + + let offsetNum = 0 + if (typeof offset === 'string') { + offsetNum = parseInt(offset) + } + + const st = getScrollTop() + + // Reverse scroll mode + if (reverse === true) { + // Release on reverse scroll mode + if (st > offsetNum && this.lastScrollTop < st) { + if (document.body.hasAttribute(this.attributeName) === false) { + this.enable() + document.body.setAttribute(this.attributeName, 'on') + document.body.setAttribute(this.attributeName2, 'on') + } + + if (this.eventTriggerState === true) { + EventHandlerUtil.trigger(this.element, 'kt.sticky.on') + EventHandlerUtil.trigger(this.element, 'kt.sticky.change') + + this.eventTriggerState = false + } + } else { + // Back scroll mode + if (document.body.hasAttribute(this.attributeName)) { + this.disable() + document.body.removeAttribute(this.attributeName) + document.body.removeAttribute(this.attributeName2) + } + + if (this.eventTriggerState === false) { + EventHandlerUtil.trigger(this.element, 'kt.sticky.off') + EventHandlerUtil.trigger(this.element, 'kt.sticky.change') + + this.eventTriggerState = true + } + } + + this.lastScrollTop = st + return + } + + // Classic scroll mode + if (st > offsetNum) { + if (document.body.hasAttribute(this.attributeName) === false) { + this.enable() + document.body.setAttribute(this.attributeName, 'on') + document.body.setAttribute(this.attributeName2, 'on') + } + + if (this.eventTriggerState === true) { + EventHandlerUtil.trigger(this.element, 'kt.sticky.on') + EventHandlerUtil.trigger(this.element, 'kt.sticky.change') + this.eventTriggerState = false + } + } else { + // back scroll mode + if (document.body.hasAttribute(this.attributeName) === true) { + this.disable() + document.body.removeAttribute(this.attributeName) + document.body.removeAttribute(this.attributeName2) + } + + if (this.eventTriggerState === false) { + EventHandlerUtil.trigger(this.element, 'kt.sticky.off') + EventHandlerUtil.trigger(this.element, 'kt.sticky.change') + this.eventTriggerState = true + } + } + } + + private getOption = (name: string) => { + const dataStickyAttr = 'data-kt-sticky-' + name + if (this.element.hasAttribute(dataStickyAttr) === true) { + const attrValueInStr = this.element.getAttribute(dataStickyAttr) + const attrValue = getAttributeValueByBreakpoint(attrValueInStr || '') + if (attrValue !== null && String(attrValue) === 'true') { + return true + } else if (attrValue !== null && String(attrValue) === 'false') { + return false + } + + return attrValue + } else { + const optionName = stringSnakeToCamel(name) + const option = getObjectPropertyValueByKey(this.options, optionName) + if (option) { + return getAttributeValueByBreakpoint(option) + } + } + } + + private disable = () => { + ElementStyleUtil.remove(this.element, 'top') + ElementStyleUtil.remove(this.element, 'width') + ElementStyleUtil.remove(this.element, 'left') + ElementStyleUtil.remove(this.element, 'right') + ElementStyleUtil.remove(this.element, 'z-index') + ElementStyleUtil.remove(this.element, 'position') + } + + private enable = (update: boolean = false) => { + const top = this.getOption('top') + const left = this.getOption('left') + // const right = this.getOption("right"); + let width = this.getOption('width') + const zindex = this.getOption('zindex') + + if (update !== true && this.getOption('animation') === true) { + ElementStyleUtil.set(this.element, 'animationDuration', this.getOption('animationSpeed')) + ElementAnimateUtil.animateClass(this.element, 'animation ' + this.getOption('animationClass')) + } + + if (zindex !== null) { + ElementStyleUtil.set(this.element, 'z-index', zindex) + ElementStyleUtil.set(this.element, 'position', 'fixed') + } + + if (top !== null) { + ElementStyleUtil.set(this.element, 'top', top) + } + + if (width !== null && width !== undefined) { + const widthTarget = getObjectPropertyValueByKey(width, 'target') + if (widthTarget) { + const targetElement = document.querySelector(widthTarget) + if (targetElement) { + width = getCSS(targetElement, 'width') + } + } + ElementStyleUtil.set(this.element, 'width', width) + } + + if (left !== null) { + if (String(left).toLowerCase() === 'auto') { + const offsetLeft = getElementOffset(this.element).left + + if (offsetLeft > 0) { + ElementStyleUtil.set(this.element, 'left', String(offsetLeft) + 'px') + } + } + } + } + + public update = () => { + if (document.body.hasAttribute(this.attributeName) === true) { + this.disable() + document.body.removeAttribute(this.attributeName) + document.body.removeAttribute(this.attributeName2) + this.enable(true) + document.body.setAttribute(this.attributeName, 'on') + document.body.setAttribute(this.attributeName2, 'on') + } + } + + // Event API + public on = (name: string, callBack: Function) => { + return EventHandlerUtil.on(this.element, name, callBack) + } + + public one = (name: string, callback: Function) => { + return EventHandlerUtil.one(this.element, name, callback) + } + + public off = (name: string, handlerId: string) => { + return EventHandlerUtil.off(this.element, name, handlerId) + } + + public trigger = (name: string) => { + return EventHandlerUtil.trigger(this.element, name) + } + + // Static methods + public static hasInstace(element: HTMLElement) { + return DataUtil.has(element, 'sticky') + } + + public static getInstance(element: HTMLElement): StickyComponent | undefined { + if (element !== null && StickyComponent.hasInstace(element)) { + const data = DataUtil.get(element, 'sticky') + if (data) { + return data as StickyComponent + } + } + } + + // Create Instances + public static createInstances(selector: string) { + DataUtil.getAllInstancesByKey("sticky").forEach((stickyInst) => { + window.removeEventListener("scroll", stickyInst.scroll); + }); + + const elements = document.body.querySelectorAll(selector) + elements.forEach((element) => { + const item = element as HTMLElement + let sticky = StickyComponent.getInstance(item) + if (!sticky) { + sticky = new StickyComponent(item, defaultStickyOptions) + } + }) + } + + public static createInsance = ( + selector: string, + options: StickyOptions = defaultStickyOptions + ): StickyComponent | undefined => { + const element = document.body.querySelector(selector) + if (!element) { + return + } + const item = element as HTMLElement + let sticky = StickyComponent.getInstance(item) + if (!sticky) { + sticky = new StickyComponent(item, options) + } + return sticky + } + + public static bootstrap(attr: string = '[data-kt-sticky="true"]') { + StickyComponent.createInstances(attr) + } + + public static reInitialization(attr: string = '[data-kt-sticky="true"]') { + StickyComponent.createInstances(attr) + } +} + +export {StickyComponent, defaultStickyOptions} diff --git a/src/_metronic/assets/ts/components/_SwapperComponent.ts b/src/_metronic/assets/ts/components/_SwapperComponent.ts new file mode 100644 index 0000000..c476b98 --- /dev/null +++ b/src/_metronic/assets/ts/components/_SwapperComponent.ts @@ -0,0 +1,210 @@ +import { + getAttributeValueByBreakpoint, + stringSnakeToCamel, + getObjectPropertyValueByKey, + EventHandlerUtil, + throttle, +} from '../_utils/index' + +export class SwapperStore { + static store: Map = new Map() + + public static set(instanceId: string, drawerComponentObj: SwapperComponent): void { + if (SwapperStore.has(instanceId)) { + return + } + + SwapperStore.store.set(instanceId, drawerComponentObj) + } + + public static get(instanceId: string): SwapperComponent | undefined { + if (!SwapperStore.has(instanceId)) { + return + } + return SwapperStore.store.get(instanceId) + } + + public static remove(instanceId: string): void { + if (!SwapperStore.has(instanceId)) { + return + } + + SwapperStore.store.delete(instanceId) + } + + public static has(instanceId: string): boolean { + return SwapperStore.store.has(instanceId) + } + + public static getAllInstances() { + return SwapperStore.store + } +} + +export interface ISwapperOptions { + mode: string +} + +export interface ISwapperQueries { + componentName: string + instanseQuery: string + attrQuery: string +} + +const defaultSwapperOptions: ISwapperOptions = { + mode: 'append', +} + +const defaultSwapperQueires: ISwapperQueries = { + componentName: 'swapper', + instanseQuery: '[data-kt-swapper="true"]', + attrQuery: 'data-kt-swapper-', +} + +class SwapperComponent { + element: HTMLElement + options: ISwapperOptions + queries: ISwapperQueries + + constructor(_element: HTMLElement, _options: ISwapperOptions, _queries: ISwapperQueries) { + this.element = _element + this.options = Object.assign(defaultSwapperOptions, _options) + this.queries = _queries + + // Initial update + this.update() + + SwapperStore.set(this.element.id, this) + } + + private getOption(name: string) { + const attr = this.element.getAttribute(`${this.queries.attrQuery}${name}`) + if (attr) { + const value = getAttributeValueByBreakpoint(attr) + if (attr != null && String(value) === 'true') { + return true + } else if (value !== null && String(value) === 'false') { + return false + } + return value + } else { + const optionName = stringSnakeToCamel(name) + const option = getObjectPropertyValueByKey(this.options, optionName) + if (option) { + return getAttributeValueByBreakpoint(option) + } else { + return null + } + } + } + + /////////////////////// + // ** Public API ** // + /////////////////////// + public update = () => { + const parentSelector = this.getOption('parent')?.toString() + const mode = this.getOption('mode') + const parentElement = parentSelector ? document.querySelector(parentSelector) : null + if (parentElement && this.element.parentNode !== parentElement) { + const alreadyPended = document.getElementById('kt_header_menu') !== null + if (!alreadyPended) { + if (mode === 'prepend') { + parentElement.prepend(this.element) + } else if (mode === 'append') { + parentElement.append(this.element) + } + } + } + } + + // Event API + public on = (name: string, handler: Function) => { + return EventHandlerUtil.on(this.element, name, handler) + } + + public one = (name: string, handler: Function) => { + return EventHandlerUtil.one(this.element, name, handler) + } + + public off = (name: string, handlerId: string) => { + return EventHandlerUtil.off(this.element, name, handlerId) + } + + public trigger = (name: string, event: Event) => { + return EventHandlerUtil.trigger(this.element, name, event) + } + + // Static methods + public static getInstance = ( + el: HTMLElement, + componentName: string = defaultSwapperQueires.componentName + ): SwapperComponent | null => { + const place = SwapperStore.get(el.id) + if (place) { + return place as SwapperComponent + } + + return null + } + + public static createInstances = ( + selector: string = defaultSwapperQueires.instanseQuery, + options: ISwapperOptions = defaultSwapperOptions, + queries: ISwapperQueries = defaultSwapperQueires + ) => { + const elements = document.body.querySelectorAll(selector) + elements.forEach((el) => { + const item = el as HTMLElement + let place = SwapperComponent.getInstance(item) + if (!place) { + place = new SwapperComponent(item, options, queries) + } + }) + } + + public static createInsance = ( + selector: string = defaultSwapperQueires.instanseQuery, + options: ISwapperOptions = defaultSwapperOptions, + queries: ISwapperQueries = defaultSwapperQueires + ): SwapperComponent | undefined => { + const element = document.body.querySelector(selector) + if (!element) { + return + } + const item = element as HTMLElement + let place = SwapperComponent.getInstance(item) + if (!place) { + place = new SwapperComponent(item, options, queries) + } + return place + } + + public static bootstrap = (selector: string = defaultSwapperQueires.instanseQuery) => { + SwapperComponent.createInstances(selector) + } + + public static reinitialization = (selector: string = defaultSwapperQueires.instanseQuery) => { + SwapperComponent.createInstances(selector) + } +} + +// Window resize handler +window.addEventListener('resize', function () { + let timer + throttle( + timer, + () => { + // Locate and update Offcanvas instances on window resize + const elements = document.querySelectorAll(defaultSwapperQueires.instanseQuery) + elements.forEach((el) => { + const place = SwapperComponent.getInstance(el as HTMLElement) + if (place) { + place.update() + } + }) + }, + 200 + ) +}) + +export {SwapperComponent, defaultSwapperOptions, defaultSwapperQueires} diff --git a/src/_metronic/assets/ts/components/_ToggleComponent.ts b/src/_metronic/assets/ts/components/_ToggleComponent.ts new file mode 100644 index 0000000..9119b94 --- /dev/null +++ b/src/_metronic/assets/ts/components/_ToggleComponent.ts @@ -0,0 +1,200 @@ +import {DataUtil, getUniqueIdWithPrefix, EventHandlerUtil} from '../_utils/index' +// Helpers +import {CookieComponent} from './_CookieComponent' + +export interface ToggleOptions { + saveState: boolean + targetState?: string + toggleState?: string + targetToggleMode?: string +} + +const defaultToggleOptions: ToggleOptions = { + saveState: false, +} + +class ToggleComponent { + element: HTMLElement + instanceUid: string + options: ToggleOptions + state: string = '' + mode: string = '' + target: HTMLElement | null = null + attribute: string = '' + + constructor(_element: HTMLElement, options: ToggleOptions) { + this.options = Object.assign(defaultToggleOptions, options) + this.instanceUid = getUniqueIdWithPrefix('toggle') + this.element = _element + + const elementTargetAttr = this.element.getAttribute('data-kt-toggle-target') + if (elementTargetAttr) { + this.target = document.querySelector(elementTargetAttr) + } + const elementToggleAttr = this.element.getAttribute('data-kt-toggle-state') + this.state = elementToggleAttr || '' + const elementModeAttr = this.element.getAttribute('data-kt-toggle-mode') + this.mode = elementModeAttr || '' + this.attribute = 'data-kt-' + this.element.getAttribute('data-kt-toggle-name') + + // Event Handlers + this._handlers() + + // Update Instance + // Bind Instance + DataUtil.set(this.element, 'toggle', this) + } + + private _handlers = () => { + this.element.addEventListener('click', (e: Event) => { + e.preventDefault() + + if (this.mode === '') { + this._toggle() + return + } + + if (this.mode === 'off' && !this._isEnabled()) { + this._toggle() + } else if (this.mode === 'on' && this._isEnabled()) { + this._toggle() + } + }) + } + + // Event handlers + private _toggle = () => { + // Trigger "after.toggle" event + EventHandlerUtil.trigger(this.element, 'kt.toggle.change') + + if (this._isEnabled()) { + this._disable() + } else { + this._enable() + } + + // Trigger "before.toggle" event + EventHandlerUtil.trigger(this.element, 'kt.toggle.changed') + return this + } + + private _enable = () => { + if (this._isEnabled()) { + return + } + + EventHandlerUtil.trigger(this.element, 'kt.toggle.enable') + this.target?.setAttribute(this.attribute, 'on') + if (this.state.length > 0) { + this.element.classList.add(this.state) + } + + if (this.options.saveState) { + CookieComponent.set(this.attribute, 'on', {}) + } + + EventHandlerUtil.trigger(this.element, 'kt.toggle.enabled') + return this + } + + private _disable = () => { + if (!this._isEnabled()) { + return false + } + + EventHandlerUtil.trigger(this.element, 'kt.toggle.disable') + this.target?.removeAttribute(this.attribute) + + if (this.state.length > 0) { + this.element.classList.remove(this.state) + } + + if (this.options.saveState) { + CookieComponent.delete(this.attribute) + } + + EventHandlerUtil.trigger(this.element, 'kt.toggle.disabled') + return this + } + + private _isEnabled = () => { + if (!this.target) { + return false + } + + return String(this.target.getAttribute(this.attribute)).toLowerCase() === 'on' + } + + /////////////////////// + // ** Public API ** // + /////////////////////// + + // Plugin API + // Plugin API + public toggle = () => { + return this._toggle() + } + + public enable = () => { + return this._enable() + } + + public disable = () => { + return this._disable() + } + + public isEnabled = () => { + return this._isEnabled() + } + + public goElement = () => { + return this.element + } + + // Event API + public on = (name: string, handler: Function) => { + return EventHandlerUtil.on(this.element, name, handler) + } + + public one = (name: string, handler: Function) => { + return EventHandlerUtil.one(this.element, name, handler) + } + + public off = (name: string, handlerId: string) => { + return EventHandlerUtil.off(this.element, name, handlerId) + } + + public trigger = (name: string, event?: Event) => { + return EventHandlerUtil.trigger(this.element, name, event) + } + + // Static methods + public static getInstance = (el: HTMLElement) => { + const toggleElement = DataUtil.get(el, 'toggle') + if (toggleElement) { + return toggleElement + } + + return null + } + + public static createInstances = (selector: string) => { + const elements = document.body.querySelectorAll(selector) + elements.forEach((el) => { + let toggle = ToggleComponent.getInstance(el) + if (!toggle) { + toggle = new ToggleComponent(el, defaultToggleOptions) + } + }) + } + + public static reinitialization = () => { + ToggleComponent.createInstances('[data-kt-toggle]') + } + + public static bootstrap = () => { + ToggleComponent.createInstances('[data-kt-toggle]') + } +} + +export {ToggleComponent, defaultToggleOptions} diff --git a/src/_metronic/assets/ts/components/index.ts b/src/_metronic/assets/ts/components/index.ts new file mode 100644 index 0000000..bf59774 --- /dev/null +++ b/src/_metronic/assets/ts/components/index.ts @@ -0,0 +1,14 @@ +export * from './_CookieComponent' +export * from './_DrawerComponent' +export * from './_FeedbackComponent' +export * from './_ImageInputComponent' +export * from './_ScrollComponent' +export * from './_ScrollTopComponent' +export * from './_StepperComponent' +export * from './_StickyComponent' +export * from './_ToggleComponent' +// export * from './_DialerComponent'; +export * from './_PasswordMeterComponent' +export * from './_SwapperComponent' +export * from './MenuComponent' +export * from './SearchComponent' diff --git a/src/_metronic/assets/ts/index.ts b/src/_metronic/assets/ts/index.ts new file mode 100644 index 0000000..eb9a9f9 --- /dev/null +++ b/src/_metronic/assets/ts/index.ts @@ -0,0 +1,43 @@ +export * as KTUtil from './_utils/index' +export * as components from './components/index' +// declare global { +// interface Window { +// keenthemes: any; +// } +// } + +// window.keenthemes = { +// components: { +// ScrollTop: components.ScrollTopComponent, +// Coockie: components.CookieComponent, +// Drawer: components.DrawerComponent, +// Feedback: components.FeedbackComponent, +// ImageInput: components.ImageInputComponent, +// Scroll: components.ScrollComponent, +// Stepper: components.StepperComponent, +// Sticky: components.StickyComponent, +// Toggle: components.ToggleComponent, +// Menu: components.MenuComponent, +// Search: components.SearchComponent, +// Dialder: components.DialerComponent, +// PasswordMeter: components.PasswordMeterComponent, +// Place: components.PlaceComponent, +// defaultDialerOptions: components.defaultDialerOptions, +// defaultDialderQueries: components.defaultDialerQueires, +// defaultPasswordMeterOptions: components.defaultPasswordMeterOptions, +// defaultPasswordMeterQueries: components.defaultPasswordMeterQueires, +// defaultPlaceOptions: components.defaultPlaceOptions, +// defaultPlaceQueries: components.defaultPlaceQueires, +// defaultDrawerOptions: components.defaultDrawerOptions, +// defaultFeedbackOptions: components.defaultFeedbackOptions, +// defaultImageInputOptions: components.defaultImageInputOptions, +// defaultScrollOptions: components.defaultScrollOptions, +// defaultScrollTopOptions: components.defaultScrollTopOptions, +// defaultStepperOptions: components.defaultStepperOptions, +// defaultStickyOptions: components.defaultStickyOptions, +// defaultToggleOptions: components.defaultToggleOptions, +// defaultMenuOptions: components.defaultMenuOptions, +// defaultSearchOptions: components.defaultSearchOptions, +// }, +// utils: KTUtil, +// }; diff --git a/src/_metronic/assets/ts/layout/ThemeMode.ts b/src/_metronic/assets/ts/layout/ThemeMode.ts new file mode 100644 index 0000000..9895853 --- /dev/null +++ b/src/_metronic/assets/ts/layout/ThemeMode.ts @@ -0,0 +1,211 @@ +import {EventHandlerUtil} from '../_utils' + +type Mode = 'light' | 'dark' | 'system' + +class ThemeMode { + menu: HTMLElement | null = null + element: HTMLElement | null = null + + private getParamName = (postfix: string): string => { + const ktName = document.body.hasAttribute('data-kt-name') + const name = ktName ? ktName + '_' : '' + return 'kt_' + name + 'theme_mode_' + postfix + } + + public getMode = (): Mode => { + const modeParam: string = this.getParamName('value') + const themeMode: Mode | '' = this.getMenuMode() + const defaultMode = 'light' + if (!localStorage.getItem(modeParam)) { + return defaultMode + } + + const ls = localStorage.getItem(modeParam) + if (ls) { + return ls as Mode + } + + const dataTheme = this.element?.getAttribute('data-bs-theme') + if (dataTheme) { + return dataTheme as Mode + } + + if (!themeMode) { + return defaultMode + } + + if (themeMode === 'system') { + return this.getSystemMode() + } + + return themeMode + } + + public setMode = (mode: Mode, menuMode: Mode | ''): void => { + // Check input values + if (mode !== 'light' && mode !== 'dark') { + return + } + + // Get param names + const modeParam: string = this.getParamName('value') + const menuModeParam: string = this.getParamName('menu') + + // Reset mode if system mode was changed + if (menuMode === 'system') { + if (this.getSystemMode() !== mode) { + mode = this.getSystemMode() + } + } + + // Check menu mode + if (!menuMode) { + menuMode = mode + } + + // Read active menu mode value + const activeMenuItem: HTMLElement | null = + this.menu?.querySelector('[data-kt-element="mode"][data-kt-value="' + menuMode + '"]') || null + + // Enable switching state + this.element?.setAttribute('data-kt-theme-mode-switching', 'true') + + // Set mode to the target element + this.element?.setAttribute('data-bs-theme', mode) + + // Disable switching state + const self = this + setTimeout(function () { + self.element?.removeAttribute('data-kt-theme-mode-switching') + }, 300) + + // Store mode value in storage + if (localStorage) { + localStorage.setItem(modeParam, mode) + } + + // Set active menu item + if (activeMenuItem && localStorage) { + localStorage.setItem(menuModeParam, menuMode) + this.setActiveMenuItem(activeMenuItem) + } + + // Flip images + this.flipImages() + } + + public getMenuMode = (): Mode | '' => { + const menuModeParam = this.getParamName('menu') + const menuItem = this.menu?.querySelector('.active[data-kt-element="mode"]') + const dataKTValue = menuItem?.getAttribute('data-kt-value') + if (dataKTValue) { + return dataKTValue as Mode + } + + if (!menuModeParam) { + return '' + } + + const ls = localStorage ? localStorage.getItem(menuModeParam) : null + return (ls as Mode) || '' + } + + public getSystemMode = (): Mode => { + return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light' + } + + private initMode = (): void => { + this.setMode(this.getMode(), this.getMenuMode()) + if (this.element) { + EventHandlerUtil.trigger(this.element, 'kt.thememode.init') + } + } + + private getActiveMenuItem = (): HTMLElement | null => { + return ( + this.menu?.querySelector( + '[data-kt-element="mode"][data-kt-value="' + this.getMenuMode() + '"]' + ) || null + ) + } + + private setActiveMenuItem = (item: HTMLElement): void => { + const menuModeParam = this.getParamName('menu') + const menuMode = item.getAttribute('data-kt-value') + const activeItem = this.menu?.querySelector('.active[data-kt-element="mode"]') + if (activeItem) { + activeItem.classList.remove('active') + } + + item.classList.add('active') + if (localStorage && menuMode && menuModeParam) { + localStorage.setItem(menuModeParam, menuMode) + } + } + + private handleMenu = (): void => { + this.menu + ?.querySelectorAll('[data-kt-element="mode"]') + ?.forEach((item: HTMLElement) => { + item.addEventListener('click', (e) => { + e.preventDefault() + + const menuMode: string | null = item.getAttribute('data-kt-value') + const mode = menuMode === 'system' ? this.getSystemMode() : menuMode + + if (mode) { + this.setMode(mode as Mode, menuMode as Mode | '') + } + }) + }) + } + + public flipImages = () => { + document.querySelectorAll('[data-kt-img-dark]')?.forEach((item: HTMLElement) => { + if (item.tagName === 'IMG') { + if (this.getMode() === 'dark' && item.hasAttribute('data-kt-img-dark')) { + item.setAttribute('data-kt-img-light', item.getAttribute('src') || '') + item.setAttribute('src', item.getAttribute('data-kt-img-dark') || '') + } else if (this.getMode() === 'light' && item.hasAttribute('data-kt-img-light')) { + item.setAttribute('data-kt-img-dark', item.getAttribute('src') || '') + item.setAttribute('src', item.getAttribute('data-kt-img-light') || '') + } + } else { + if (this.getMode() === 'dark' && item.hasAttribute('data-kt-img-dark')) { + item.setAttribute('data-kt-img-light', item.getAttribute('src') || '') + item.style.backgroundImage = "url('" + item.getAttribute('data-kt-img-dark') + "')" + } else if (this.getMode() === 'light' && item.hasAttribute('data-kt-img-light')) { + item.setAttribute('data-kt-img-dark', item.getAttribute('src') || '') + item.style.backgroundImage = "url('" + item.getAttribute('data-kt-img-light') + "')" + } + } + }) + } + + public on = (name: string, hander: Function) => { + if (this.element) { + return EventHandlerUtil.on(this.element, name, hander) + } + } + + public off = (name: string, handlerId: string) => { + if (this.element) { + return EventHandlerUtil.off(this.element, name, handlerId) + } + } + + public init = () => { + this.menu = document.querySelector('[data-kt-element="theme-mode-menu"]') + this.element = document.documentElement + + this.initMode() + + if (this.menu) { + this.handleMenu() + } + } +} + +const ThemeModeComponent = new ThemeMode() +// Initialize app on document ready => ThemeModeComponent.init() +export {ThemeModeComponent} diff --git a/src/_metronic/assets/ts/layout/index.ts b/src/_metronic/assets/ts/layout/index.ts new file mode 100644 index 0000000..8b157b2 --- /dev/null +++ b/src/_metronic/assets/ts/layout/index.ts @@ -0,0 +1 @@ +export * from './ThemeMode' diff --git a/src/_metronic/helpers/AssetHelpers.ts b/src/_metronic/helpers/AssetHelpers.ts new file mode 100644 index 0000000..d502161 --- /dev/null +++ b/src/_metronic/helpers/AssetHelpers.ts @@ -0,0 +1,24 @@ +import { useLayout } from "../layout/core"; +import { ThemeModeComponent } from "../assets/ts/layout"; + +export const toAbsoluteUrl = (pathname: string) => + import.meta.env.BASE_URL + pathname; + +export const useIllustrationsPath = (illustrationName: string): string => { + const { config } = useLayout(); + + const extension = illustrationName.substring( + illustrationName.lastIndexOf("."), + illustrationName.length + ); + const illustration = + ThemeModeComponent.getMode() === "dark" + ? `${illustrationName.substring( + 0, + illustrationName.lastIndexOf(".") + )}-dark` + : illustrationName.substring(0, illustrationName.lastIndexOf(".")); + return toAbsoluteUrl( + `media/illustrations/${config.illustrations?.set}/${illustration}${extension}` + ); +}; diff --git a/src/_metronic/helpers/RouterHelpers.ts b/src/_metronic/helpers/RouterHelpers.ts new file mode 100644 index 0000000..7cc10dc --- /dev/null +++ b/src/_metronic/helpers/RouterHelpers.ts @@ -0,0 +1,20 @@ +export function getCurrentUrl(pathname: string) { + return pathname.split(/[?#]/)[0] +} + +export function checkIsActive(pathname: string, url: string) { + const current = getCurrentUrl(pathname) + if (!current || !url) { + return false + } + + if (current === url) { + return true + } + + if (current.indexOf(url) > -1) { + return true + } + + return false +} diff --git a/src/_metronic/helpers/components/KTCard.tsx b/src/_metronic/helpers/components/KTCard.tsx new file mode 100644 index 0000000..dace09c --- /dev/null +++ b/src/_metronic/helpers/components/KTCard.tsx @@ -0,0 +1,62 @@ +import {FC} from 'react' +import clsx from 'clsx' +import {WithChildren} from '../react18MigrationHelpers' + +// Wrapper on html card: +// https://preview.keenthemes.com/metronic8/demo1/documentation/base/cards.html + +type Props = { + className?: string + shadow?: boolean + flush?: boolean // https://preview.keenthemes.com/metronic8/demo1/documentation/base/cards.html#flush + resetSidePaddings?: boolean // https://preview.keenthemes.com/metronic8/demo1/documentation/base/cards.html#reset-side-paddings + border?: boolean // https://preview.keenthemes.com/metronic8/demo1/documentation/base/cards.html#bordered + dashed?: boolean // https://preview.keenthemes.com/metronic8/demo1/documentation/base/cards.html#dashed + stretch?: 'stretch' | 'stretch-75' | 'stretch-50' | 'stretch-33' | 'stretch-25' // https://preview.keenthemes.com/metronic8/demo1/documentation/base/cards.html#stretch + rounded?: 'rounded' | 'rounded-top' | 'rounded-bottom' + // https://preview.keenthemes.com/metronic8/demo1/documentation/base/cards.html#utilities + utilityP?: number + utilityPY?: number + utilityPX?: number +} + +const KTCard: FC = (props) => { + const { + className, + shadow, + flush, + resetSidePaddings, + border, + dashed, + stretch, + rounded, + utilityP, + utilityPY, + utilityPX, + children, + } = props + return ( +
+ {children} +
+ ) +} + +export {KTCard} diff --git a/src/_metronic/helpers/components/KTCardBody.tsx b/src/_metronic/helpers/components/KTCardBody.tsx new file mode 100644 index 0000000..3611852 --- /dev/null +++ b/src/_metronic/helpers/components/KTCardBody.tsx @@ -0,0 +1,29 @@ +import clsx from 'clsx' +import {FC} from 'react' +import {WithChildren} from '../react18MigrationHelpers' + +type Props = { + className?: string + scroll?: boolean + height?: number +} + +const KTCardBody: FC = (props) => { + const {className, scroll, height, children} = props + return ( +
+ {children} +
+ ) +} + +export {KTCardBody} diff --git a/src/_metronic/helpers/components/KTIcon.tsx b/src/_metronic/helpers/components/KTIcon.tsx new file mode 100644 index 0000000..63844f2 --- /dev/null +++ b/src/_metronic/helpers/components/KTIcon.tsx @@ -0,0 +1,31 @@ +import { FC } from 'react' +import icons from '../icons-config/icons' +import {getLayoutFromLocalStorage} from '../../layout/core' + +type Props = { + className?: string + iconType?: 'duotone' | 'solid' | 'outline' + iconName: string +} + +const KTIcon: FC = ({className = '', iconType, iconName}) => { + if (!iconType) { + iconType = getLayoutFromLocalStorage().main?.iconType + } + + return ( + + {iconType === 'duotone' && + [...Array(icons[iconName])].map((_e, i) => { + return ( + + ) + })} + + ) +} + +export {KTIcon} diff --git a/src/_metronic/helpers/components/KTSVG.tsx b/src/_metronic/helpers/components/KTSVG.tsx new file mode 100644 index 0000000..3ca39a9 --- /dev/null +++ b/src/_metronic/helpers/components/KTSVG.tsx @@ -0,0 +1,16 @@ +import { FC } from 'react' +import SVG from 'react-inlinesvg' +import {toAbsoluteUrl} from '../AssetHelpers' +type Props = { + className?: string + path: string + svgClassName?: string +} + +export const KTSVG: FC = ({className = '', path, svgClassName = 'mh-50px'}) => { + return ( + + + + ) +} \ No newline at end of file diff --git a/src/_metronic/helpers/crud-helper/consts.ts b/src/_metronic/helpers/crud-helper/consts.ts new file mode 100644 index 0000000..8c09903 --- /dev/null +++ b/src/_metronic/helpers/crud-helper/consts.ts @@ -0,0 +1,5 @@ +const QUERIES = { + USERS_LIST: 'users-list', +} + +export {QUERIES} diff --git a/src/_metronic/helpers/crud-helper/helpers.tsx b/src/_metronic/helpers/crud-helper/helpers.tsx new file mode 100644 index 0000000..3341678 --- /dev/null +++ b/src/_metronic/helpers/crud-helper/helpers.tsx @@ -0,0 +1,124 @@ +import {createContext, Dispatch, SetStateAction, useEffect, useState} from 'react' +import qs from 'qs' +import {ID, QueryResponseContextProps, QueryState} from './models' + +function createResponseContext(initialState: QueryResponseContextProps) { + return createContext(initialState) +} + +function isNotEmpty(obj: unknown) { + return obj !== undefined && obj !== null && obj !== '' +} + +// Example: page=1&items_per_page=10&sort=id&order=desc&search=a&filter_name=a&filter_online=false +function stringifyRequestQuery(state: QueryState): string { + const pagination = qs.stringify(state, {filter: ['page', 'items_per_page'], skipNulls: true}) + const sort = qs.stringify(state, {filter: ['sort', 'order'], skipNulls: true}) + const search = isNotEmpty(state.search) + ? qs.stringify(state, {filter: ['search'], skipNulls: true}) + : '' + + const filter = state.filter + ? Object.entries(state.filter) + .filter((obj) => isNotEmpty(obj[1])) + .map((obj) => { + return `filter_${obj[0]}=${obj[1]}` + }) + .join('&') + : '' + + return [pagination, sort, search, filter] + .filter((f) => f) + .join('&') + .toLowerCase() +} + +function parseRequestQuery(query: string): QueryState { + const cache: unknown = qs.parse(query) + return cache as QueryState +} + +function calculatedGroupingIsDisabled(isLoading: boolean, data: Array | undefined): boolean { + if (isLoading) { + return true + } + + return !data || !data.length +} + +function calculateIsAllDataSelected(data: Array | undefined, selected: Array): boolean { + if (!data) { + return false + } + + return data.length > 0 && data.length === selected.length +} + +function groupingOnSelect( + id: ID, + selected: Array, + setSelected: Dispatch>> +) { + if (!id) { + return + } + + if (selected.includes(id)) { + setSelected(selected.filter((itemId) => itemId !== id)) + } else { + const updatedSelected = [...selected] + updatedSelected.push(id) + setSelected(updatedSelected) + } +} + +function groupingOnSelectAll( + isAllSelected: boolean, + setSelected: Dispatch>>, + data?: Array +) { + if (isAllSelected) { + setSelected([]) + return + } + + if (!data || !data.length) { + return + } + + setSelected(data.filter((item) => item.id).map((item) => item.id)) +} + +// Hook +function useDebounce(value: string | undefined, delay: number) { + // State and setters for debounced value + const [debouncedValue, setDebouncedValue] = useState(value) + useEffect( + () => { + // Update debounced value after delay + const handler = setTimeout(() => { + setDebouncedValue(value) + }, delay) + // Cancel the timeout if value changes (also on delay change or unmount) + // This is how we prevent debounced value from updating if value is changed ... + // .. within the delay period. Timeout gets cleared and restarted. + return () => { + clearTimeout(handler) + } + }, + [value, delay] // Only re-call effect if value or delay changes + ) + return debouncedValue +} + +export { + createResponseContext, + stringifyRequestQuery, + parseRequestQuery, + calculatedGroupingIsDisabled, + calculateIsAllDataSelected, + groupingOnSelect, + groupingOnSelectAll, + useDebounce, + isNotEmpty, +} diff --git a/src/_metronic/helpers/crud-helper/models.ts b/src/_metronic/helpers/crud-helper/models.ts new file mode 100644 index 0000000..3f36d9f --- /dev/null +++ b/src/_metronic/helpers/crud-helper/models.ts @@ -0,0 +1,83 @@ +import {Dispatch, SetStateAction} from 'react' + +export type ID = undefined | null | number + +export type PaginationState = { + page: number + items_per_page: 10 | 30 | 50 | 100 + links?: Array<{label: string; active: boolean; url: string | null; page: number | null}> +} + +export type SortState = { + sort?: string + order?: 'asc' | 'desc' +} + +export type FilterState = { + filter?: unknown +} + +export type SearchState = { + search?: string +} + +export type Response = { + data?: T + payload?: { + message?: string + errors?: { + [key: string]: Array + } + pagination?: PaginationState + } +} + +export type QueryState = PaginationState & SortState & FilterState & SearchState + +export type QueryRequestContextProps = { + state: QueryState + updateState: (updates: Partial) => void +} + +export const initialQueryState: QueryState = { + page: 1, + items_per_page: 10, +} + +export const initialQueryRequest: QueryRequestContextProps = { + state: initialQueryState, + updateState: () => {}, +} + +export type QueryResponseContextProps = { + response?: Response> | undefined + refetch: () => void + isLoading: boolean + query: string +} + +export const initialQueryResponse = {refetch: () => {}, isLoading: false, query: ''} + +export type ListViewContextProps = { + selected: Array + onSelect: (selectedId: ID) => void + onSelectAll: () => void + clearSelected: () => void + // NULL => (CREATION MODE) | MODAL IS OPENED + // NUMBER => (EDIT MODE) | MODAL IS OPENED + // UNDEFINED => MODAL IS CLOSED + itemIdForUpdate?: ID + setItemIdForUpdate: Dispatch> + isAllSelected: boolean + disabled: boolean +} + +export const initialListView: ListViewContextProps = { + selected: [], + onSelect: () => {}, + onSelectAll: () => {}, + clearSelected: () => {}, + setItemIdForUpdate: () => {}, + isAllSelected: false, + disabled: false, +} diff --git a/src/_metronic/helpers/dataExamples.ts b/src/_metronic/helpers/dataExamples.ts new file mode 100644 index 0000000..0d2554a --- /dev/null +++ b/src/_metronic/helpers/dataExamples.ts @@ -0,0 +1,281 @@ +export interface MessageModel { + user: number + type: 'in' | 'out' + text: string + time: string + template?: boolean +} + +const defaultMessages: Array = [ + { + user: 4, + type: 'in', + text: 'How likely are you to recommend our company to your friends and family ?', + time: '2 mins', + }, + { + user: 2, + type: 'out', + text: 'Hey there, we’re just writing to let you know that you’ve been subscribed to a repository on GitHub.', + time: '5 mins', + }, + { + user: 4, + type: 'in', + text: 'Ok, Understood!', + time: '1 Hour', + }, + { + user: 2, + type: 'out', + text: 'You’ll receive notifications for all issues, pull requests!', + time: '2 Hours', + }, + { + user: 4, + type: 'in', + text: 'You can unwatch this repository immediately by clicking here: Keenthemes.com', + time: '3 Hours', + }, + { + user: 2, + type: 'out', + text: 'Most purchased Business courses during this sale!', + time: '4 Hours', + }, + { + user: 4, + type: 'in', + text: 'Company BBQ to celebrate the last quater achievements and goals. Food and drinks provided', + time: '5 Hours', + }, + { + template: true, + user: 2, + type: 'out', + text: '', + time: 'Just now', + }, + { + template: true, + user: 4, + type: 'in', + text: 'Right before vacation season we have the next Big Deal for you.', + time: 'Just now', + }, +] + +export interface UserInfoModel { + initials?: {label: string; state: 'warning' | 'danger' | 'primary' | 'success' | 'info'} + name: string + avatar?: string + email: string + position: string + online: boolean +} + +const defaultUserInfos: Array = [ + { + name: 'Emma Smith', + avatar: 'avatars/300-6.jpg', + email: 'e.smith@kpmg.com.au', + position: 'Art Director', + online: false, + }, + { + name: 'Melody Macy', + initials: {label: 'M', state: 'danger'}, + email: 'melody@altbox.com', + position: 'Marketing Analytic', + online: true, + }, + { + name: 'Max Smith', + avatar: 'avatars/300-1.jpg', + email: 'max@kt.com', + position: 'Software Enginer', + online: false, + }, + { + name: 'Sean Bean', + avatar: 'avatars/300-5.jpg', + email: 'sean@dellito.com', + position: 'Web Developer', + online: false, + }, + { + name: 'Brian Cox', + avatar: 'avatars/300-25.jpg', + email: 'brian@exchange.com', + position: 'UI/UX Designer', + online: false, + }, + { + name: 'Mikaela Collins', + initials: {label: 'M', state: 'warning'}, + email: 'mikaela@pexcom.com', + position: 'Head Of Marketing', + online: true, + }, + { + name: 'Francis Mitcham', + avatar: 'avatars/300-9.jpg', + email: 'f.mitcham@kpmg.com.au', + position: 'Software Arcitect', + online: false, + }, + + { + name: 'Olivia Wild', + initials: {label: 'O', state: 'danger'}, + email: 'olivia@corpmail.com', + position: 'System Admin', + online: true, + }, + { + name: 'Neil Owen', + initials: {label: 'N', state: 'primary'}, + email: 'owen.neil@gmail.com', + position: 'Account Manager', + online: true, + }, + { + name: 'Dan Wilson', + avatar: 'avatars/300-23.jpg', + email: 'dam@consilting.com', + position: 'Web Desinger', + online: false, + }, + { + name: 'Emma Bold', + initials: {label: 'E', state: 'danger'}, + email: 'emma@intenso.com', + position: 'Corporate Finance', + online: true, + }, + { + name: 'Ana Crown', + avatar: 'avatars/300-12.jpg', + email: 'ana.cf@limtel.com', + position: 'Customer Relationship', + online: false, + }, + { + name: 'Robert Doe', + initials: {label: 'A', state: 'info'}, + email: 'robert@benko.com', + position: 'Marketing Executive', + online: true, + }, + { + name: 'John Miller', + avatar: 'avatars/300-13.jpg', + email: 'miller@mapple.com', + position: 'Project Manager', + online: false, + }, + { + name: 'Lucy Kunic', + initials: {label: 'L', state: 'success'}, + email: 'lucy.m@fentech.com', + position: 'SEO Master', + online: true, + }, + { + name: 'Ethan Wilder', + avatar: 'avatars/300-21.jpg', + email: 'ethan@loop.com.au', + position: 'Accountant', + online: true, + }, +] + +const messageFromClient: MessageModel = { + user: 4, + type: 'in', + text: 'Thank you for your awesome support!', + time: 'Just now', +} + +export interface AlertModel { + title: string + description: string + time: string + icon: string + state: 'primary' | 'danger' | 'warning' | 'success' | 'info' +} + +const defaultAlerts: Array = [ + { + title: 'Project Alice', + description: 'Phase 1 development', + time: '1 hr', + icon: 'technology-2', + state: 'primary', + }, + { + title: 'HR Confidential', + description: 'Confidential staff documents', + time: '2 hrs', + icon: 'information-5', + state: 'danger', + }, + { + title: 'Company HR', + description: 'Corporeate staff profiles', + time: '5 hrs', + icon: 'map001', + state: 'warning', + }, + { + title: 'Project Red', + description: 'New frontend admin theme', + time: '2 days', + icon: 'cloud-change', + state: 'success', + }, + { + title: 'Project Breafing', + description: 'Product launch status update', + time: '21 Jan', + icon: 'compass', + state: 'primary', + }, + { + title: 'Banner Assets', + description: 'Collection of banner images', + time: '21 Jan', + icon: 'graph-3', + state: 'info', + }, + { + title: 'Icon Assets', + description: 'Collection of SVG icons', + time: '20 March', + icon: 'color-swatch', + state: 'warning', + }, +] +export interface LogModel { + code: string + state: 'success' | 'danger' | 'warning' + message: string + time: string +} + +const defaultLogs: Array = [ + {code: '200 OK', state: 'success', message: 'New order', time: 'Just now'}, + {code: '500 ERR', state: 'danger', message: 'New customer', time: '2 hrs'}, + {code: '200 OK', state: 'success', message: 'Payment process', time: '5 hrs'}, + {code: '300 WRN', state: 'warning', message: 'Search query', time: '2 days'}, + {code: '200 OK', state: 'success', message: 'API connection', time: '1 week'}, + {code: '200 OK', state: 'success', message: 'Database restore', time: 'Mar 5'}, + {code: '300 WRN', state: 'warning', message: 'System update', time: 'May 15'}, + {code: '300 WRN', state: 'warning', message: 'Server OS update', time: 'Apr 3'}, + {code: '300 WRN', state: 'warning', message: 'API rollback', time: 'Jun 30'}, + {code: '500 ERR', state: 'danger', message: 'Refund process', time: 'Jul 10'}, + {code: '500 ERR', state: 'danger', message: 'Withdrawal process', time: 'Sep 10'}, + {code: '500 ERR', state: 'danger', message: 'Mail tasks', time: 'Dec 10'}, +] + +export {defaultMessages, defaultUserInfos, defaultAlerts, defaultLogs, messageFromClient} diff --git a/src/_metronic/helpers/icons-config/icons.ts b/src/_metronic/helpers/icons-config/icons.ts new file mode 100644 index 0000000..8631afc --- /dev/null +++ b/src/_metronic/helpers/icons-config/icons.ts @@ -0,0 +1,581 @@ +interface IIcons { + [key: string]: number +} + +const icons: IIcons = { + 'abstract-33': 2, + 'abstract-27': 2, + 'abstract-26': 2, + 'abstract-32': 2, + 'abstract-18': 2, + 'abstract-24': 2, + 'abstract-30': 2, + 'abstract-8': 2, + 'abstract-9': 2, + 'abstract-31': 2, + 'abstract-25': 2, + 'abstract-19': 2, + 'abstract-21': 2, + 'abstract-35': 2, + 'abstract-34': 2, + 'abstract-20': 2, + 'abstract-36': 2, + 'abstract-22': 2, + 'abstract-23': 2, + 'abstract-37': 2, + 'abstract-44': 2, + abstract: 2, + 'abstract-45': 2, + 'abstract-47': 2, + 'abstract-46': 2, + 'abstract-42': 2, + 'abstract-43': 2, + 'abstract-41': 2, + 'abstract-40': 2, + 'abstract-48': 3, + 'abstract-49': 3, + 'abstract-12': 2, + 'abstract-2': 2, + 'abstract-3': 2, + 'abstract-13': 2, + 'abstract-39': 2, + 'abstract-11': 2, + 'abstract-1': 2, + 'abstract-10': 2, + 'abstract-38': 2, + 'abstract-14': 2, + 'abstract-28': 2, + 'abstract-4': 2, + 'abstract-5': 2, + 'abstract-29': 2, + 'abstract-15': 2, + 'abstract-17': 2, + 'abstract-7': 2, + 'abstract-6': 0, + 'abstract-16': 2, + 'toggle-on': 2, + 'toggle-on-circle': 2, + 'toggle-off': 2, + category: 4, + setting: 2, + 'toggle-off-circle': 2, + 'more-2': 4, + 'setting-4': 0, + 'setting-2': 2, + 'setting-3': 5, + eraser: 3, + paintbucket: 3, + 'add-item': 3, + 'design-2': 2, + brush: 2, + size: 2, + design: 2, + copy: 0, + text: 0, + 'design-frame': 2, + bucket: 4, + glass: 3, + feather: 2, + pencil: 2, + 'colors-square': 4, + 'design-mask': 2, + 'bucket-square': 3, + 'copy-success': 2, + 'color-swatch': 21, + instagram: 2, + snapchat: 2, + classmates: 2, + facebook: 2, + whatsapp: 2, + 'social-media': 2, + youtube: 2, + dribbble: 6, + twitter: 2, + tiktok: 2, + behance: 2, + underlining: 3, + disconnect: 5, + code: 4, + gear: 2, + loading: 2, + scroll: 3, + wrench: 2, + 'square-brackets': 4, + frame: 4, + 'message-programming': 4, + data: 5, + fasten: 2, + click: 5, + 'tech-wifi': 2, + joystick: 4, + faceid: 6, + 'technology-3': 4, + 'technology-2': 2, + electricity: 10, + 'fingerprint-scanning': 5, + 'technology-4': 7, + 'artificial-intelligence': 8, + technology: 9, + 'basket-ok': 4, + cheque: 7, + handcart: 0, + shop: 5, + tag: 3, + purchase: 2, + discount: 2, + package: 3, + percentage: 2, + barcode: 8, + 'lots-shopping': 8, + basket: 4, + 'book-square': 3, + 'receipt-square': 2, + 'save-2': 2, + 'archive-tick': 2, + 'shield-search': 3, + 'password-check': 5, + 'shield-tick': 2, + lock: 3, + key: 2, + shield: 2, + 'shield-cross': 3, + 'key-square': 2, + 'eye-slash': 4, + 'security-check': 4, + 'lock-3': 3, + 'scan-barcode': 8, + 'lock-2': 5, + eye: 3, + 'shield-slash': 3, + 'security-user': 2, + triangle: 3, + subtitle: 5, + ghost: 3, + information: 3, + milk: 3, + home: 0, + 'happy-emoji': 2, + 'mouse-square': 2, + 'filter-tick': 2, + 'filter-search': 3, + 'wifi-home': 4, + 'trash-square': 4, + 'paper-clip': 0, + archive: 3, + pin: 2, + 'wifi-square': 4, + 'auto-brightness': 3, + coffee: 6, + icon: 3, + 'emoji-happy': 4, + 'general-mouse': 2, + ranking: 4, + slider: 4, + 'crown-2': 3, + rescue: 2, + 'flash-circle': 2, + 'safe-home': 2, + 'cloud-change': 3, + crown: 2, + 'filter-edit': 2, + picture: 2, + verify: 2, + send: 2, + 'tag-cross': 3, + 'cloud-add': 2, + 'home-3': 2, + disk: 2, + trash: 5, + star: 0, + cd: 2, + 'home-2': 2, + 'mouse-circle': 2, + 'home-1': 2, + call: 8, + gift: 4, + share: 6, + sort: 4, + magnifier: 2, + 'filter-square': 2, + tree: 3, + filter: 2, + switch: 2, + cloud: 0, + cup: 2, + diamonds: 2, + status: 3, + rocket: 2, + 'cloud-download': 2, + menu: 4, + chrome: 2, + 'geolocation-home': 2, + map: 3, + 'telephone-geolocation': 3, + satellite: 6, + flag: 2, + focus: 2, + pointers: 3, + compass: 2, + route: 4, + geolocation: 2, + 'brifecase-timer': 3, + briefcase: 2, + clipboard: 3, + 'bookmark-2': 2, + note: 2, + 'note-2': 4, + 'book-open': 4, + book: 4, + teacher: 2, + award: 3, + 'brifecase-tick': 3, + 'brifecase-cros': 3, + bookmark: 2, + 'chart-line': 2, + chart: 2, + 'graph-3': 2, + 'chart-pie-3': 3, + 'graph-2': 3, + 'chart-line-down': 2, + 'chart-pie-too': 2, + 'chart-pie-4': 3, + 'chart-line-down-2': 3, + 'graph-4': 2, + 'chart-line-up-2': 2, + badge: 5, + 'chart-line-up': 2, + 'chart-simple-3': 4, + 'chart-pie-simple': 2, + 'chart-simple-2': 4, + 'graph-up': 6, + 'chart-line-star': 3, + graph: 4, + 'chart-simple': 4, + 'tablet-delete': 3, + 'file-added': 2, + 'file-up': 2, + 'minus-folder': 2, + file: 2, + 'delete-files': 2, + 'add-folder': 2, + 'file-left': 2, + 'file-deleted': 2, + 'some-files': 2, + 'file-right': 2, + notepad: 5, + 'notepad-bookmark': 6, + document: 2, + 'like-folder': 2, + 'folder-up': 2, + 'folder-added': 2, + 'file-down': 2, + 'filter-tablet': 2, + 'tablet-book': 2, + 'update-file': 4, + 'add-notepad': 4, + 'questionnaire-tablet': 2, + 'tablet-up': 3, + 'tablet-ok': 3, + 'update-folder': 2, + 'files-tablet': 2, + 'folder-down': 2, + 'notepad-edit': 2, + 'tablet-text-up': 2, + 'search-list': 3, + 'tablet-text-down': 4, + 'add-files': 3, + 'tablet-down': 3, + 'delete-folder': 2, + folder: 2, + 'file-sheet': 2, + bootstrap: 3, + figma: 5, + dropbox: 5, + xaomi: 2, + microsoft: 4, + android: 6, + vue: 2, + js: 2, + 'spring-framework': 0, + github: 2, + dj: 0, + 'google-play': 2, + angular: 3, + 'soft-3': 2, + python: 2, + 'soft-2': 2, + ts: 3, + xd: 3, + spotify: 2, + 'js-2': 2, + laravel: 7, + css: 2, + google: 2, + photoshop: 2, + twitch: 3, + illustrator: 4, + pails: 9, + react: 2, + html: 2, + slack: 8, + soft: 6, + yii: 3, + apple: 2, + vuesax: 3, + 'calendar-add': 6, + 'calendar-search': 4, + 'calendar-2': 5, + 'calendar-tick': 6, + time: 2, + watch: 2, + 'calendar-edit': 3, + calendar: 2, + 'calendar-8': 6, + timer: 3, + 'calendar-remove': 6, + 'heart-circle': 2, + like: 2, + 'information-4': 3, + 'information-5': 3, + 'information-2': 3, + 'information-3': 3, + question: 3, + dislike: 2, + 'message-question': 3, + 'medal-star': 4, + 'like-tag': 2, + 'like-2': 2, + 'support-24': 3, + 'question-2': 3, + lovely: 2, + 'like-shapes': 2, + heart: 2, + user: 2, + 'user-square': 3, + 'user-tick': 3, + people: 5, + 'user-edit': 3, + 'profile-user': 4, + 'profile-circle': 3, + capsule: 2, + virus: 3, + bandage: 2, + thermometer: 2, + flask: 2, + 'test-tubes': 2, + syringe: 3, + mask: 3, + pill: 0, + pulse: 2, + 'burger-menu': 4, + 'burger-menu-6': 0, + 'burger-menu-5': 0, + 'burger-menu-4': 0, + 'burger-menu-1': 4, + 'burger-menu-3': 9, + 'burger-menu-2': 10, + 'text-align-center': 4, + 'text-italic': 4, + 'text-bold': 3, + 'text-strikethrough': 3, + 'text-underline': 3, + 'text-number': 6, + 'text-align-left': 4, + 'text-align-right': 4, + 'text-circle': 6, + 'text-align-justify-center': 4, + theta: 2, + dollar: 3, + binance: 5, + nexo: 2, + euro: 3, + avalanche: 2, + bitcoin: 2, + wallet: 4, + 'price-tag': 3, + 'finance-calculator': 7, + dash: 2, + lts: 2, + vibe: 2, + 'credit-cart': 2, + paypal: 2, + bill: 6, + ocean: 19, + celsius: 2, + educare: 4, + 'enjin-coin': 2, + 'two-credit-cart': 5, + bank: 2, + 'binance-usd': 4, + wanchain: 2, + trello: 3, + 'save-deposit': 4, + xmr: 2, + 'financial-schedule': 4, + 'office-bag': 4, + 'night-day': 10, + sun: 9, + drop: 2, + moon: 2, + 'exit-right-corner': 2, + 'dots-circle-vertical': 4, + 'check-square': 2, + 'right-left': 3, + 'arrow-down': 2, + 'dots-horizontal': 3, + 'arrow-right-left': 2, + 'up-down': 3, + 'double-check': 2, + 'arrow-up-left': 2, + down: 0, + 'exit-up': 2, + 'up-square': 2, + 'down-square': 2, + 'plus-square': 3, + 'dots-circle': 4, + 'arrow-down-left': 2, + 'double-check-circle': 3, + up: 0, + 'entrance-right': 2, + 'arrow-right': 2, + 'arrow-two-diagonals': 5, + 'minus-square': 2, + 'arrow-diagonal': 3, + 'black-left': 0, + 'arrow-down-refraction': 2, + 'black-right': 0, + 'double-left': 2, + 'arrow-circle-left': 2, + 'arrow-zigzag': 2, + plus: 0, + check: 0, + 'exit-left': 2, + 'arrow-circle-right': 2, + 'cross-square': 2, + 'entrance-left': 2, + 'left-square': 2, + 'arrows-loop': 2, + 'black-left-line': 2, + 'double-left-arrow': 2, + 'check-circle': 2, + right: 0, + 'dots-square-vertical': 4, + 'arrow-up-right': 2, + 'exit-down': 2, + 'dots-square': 4, + 'to-left': 0, + 'double-down': 3, + 'plus-circle': 2, + 'black-down': 0, + 'double-up': 3, + 'black-up': 0, + 'double-right-arrow': 2, + 'arrow-up': 2, + 'black-right-line': 2, + 'arrow-up-refraction': 2, + 'arrow-left': 2, + cross: 2, + 'minus-circle': 2, + 'arrow-down-right': 2, + 'exit-right': 2, + 'to-right': 0, + 'double-right': 2, + 'arrow-mix': 2, + 'right-square': 2, + 'arrows-circle': 2, + 'cross-circle': 2, + left: 0, + minus: 0, + 'dots-vertical': 3, + 'arrow-up-down': 2, + 'message-text-2': 3, + 'message-notif': 5, + 'message-add': 3, + sms: 2, + 'directbox-default': 4, + 'message-text': 3, + messages: 5, + 'address-book': 3, + 'message-edit': 2, + 'message-minus': 2, + 'notification-circle': 2, + 'notification-favorite': 3, + 'notification-2': 2, + notification: 3, + 'notification-bing': 3, + 'notification-status': 4, + 'notification-on': 5, + 'scooter-2': 0, + parcel: 5, + 'delivery-time': 5, + delivery: 5, + 'delivery-24': 4, + ship: 3, + courier: 3, + logistic: 7, + trailer: 5, + 'car-2': 6, + 'car-3': 3, + 'airplane-square': 2, + scooter: 7, + truck: 5, + 'cube-3': 2, + bus: 5, + 'cube-2': 3, + 'delivery-door': 4, + 'delivery-3': 3, + 'delivery-2': 9, + car: 5, + 'courier-express': 7, + airplane: 2, + 'delivery-geolocation': 5, + 'parcel-tracking': 3, + 'monitor-mobile': 2, + devices: 5, + keyboard: 2, + 'devices-2': 3, + bluetooth: 2, + wifi: 4, + airpod: 3, + 'simcard-2': 2, + speaker: 3, + printer: 5, + simcard: 5, + router: 2, + phone: 2, + 'electronic-clock': 4, + 'external-drive': 5, + laptop: 2, + tablet: 3, + screen: 4, + calculator: 6, + mouse: 2, + grid: 2, + 'slider-vertical-2': 3, + maximize: 5, + 'slider-vertical': 3, + 'row-horizontal': 2, + kanban: 2, + 'row-vertical': 2, + 'fat-rows': 2, + 'grid-2': 2, + 'element-8': 2, + 'element-9': 2, + 'element-12': 3, + 'element-4': 2, + 'element-5': 2, + 'grid-frame': 3, + 'element-11': 4, + 'element-7': 2, + 'element-6': 2, + 'element-10': 3, + 'element-2': 2, + 'element-3': 2, + 'element-equal': 5, + 'element-1': 4, + 'slider-horizontal-2': 3, + 'slider-horizontal': 3, + 'element-plus': 5, +} + +export default icons diff --git a/src/_metronic/helpers/index.ts b/src/_metronic/helpers/index.ts new file mode 100644 index 0000000..5dadac1 --- /dev/null +++ b/src/_metronic/helpers/index.ts @@ -0,0 +1,11 @@ +export * from './AssetHelpers' +export * from './RouterHelpers' +export * from './components/KTSVG' +export * from './components/KTIcon' +export * from './components/KTCard' +export * from './components/KTCardBody' +export * from './dataExamples' +export * from './crud-helper/helpers' +export * from './crud-helper/models' +export * from './crud-helper/consts' +export * from './react18MigrationHelpers' diff --git a/src/_metronic/helpers/react18MigrationHelpers.ts b/src/_metronic/helpers/react18MigrationHelpers.ts new file mode 100644 index 0000000..256f0a2 --- /dev/null +++ b/src/_metronic/helpers/react18MigrationHelpers.ts @@ -0,0 +1,14 @@ +import {ReactNode} from 'react' +import {MenuComponent} from '../assets/ts/components' + +type WithChildren = { + children?: ReactNode +} + +const reInitMenu = () => { + setTimeout(() => { + MenuComponent.reinitialization() + }, 500) +} + +export {type WithChildren, reInitMenu} diff --git a/src/_metronic/i18n/Metronici18n.tsx b/src/_metronic/i18n/Metronici18n.tsx new file mode 100644 index 0000000..40f050c --- /dev/null +++ b/src/_metronic/i18n/Metronici18n.tsx @@ -0,0 +1,43 @@ +/* eslint-disable react-refresh/only-export-components */ +import {FC, createContext, useContext} from 'react' +import {WithChildren} from '../helpers' + +const I18N_CONFIG_KEY = import.meta.env.VITE_APP_I18N_CONFIG_KEY || 'i18nConfig' + +type Props = { + selectedLang: 'de' | 'en' | 'es' | 'fr' | 'ja' | 'zh' +} +const initialState: Props = { + selectedLang: 'en', +} + +function getConfig(): Props { + const ls = localStorage.getItem(I18N_CONFIG_KEY) + if (ls) { + try { + return JSON.parse(ls) as Props + } catch (er) { + console.error(er) + } + } + return initialState +} + +// Side effect +export function setLanguage(lang: string) { + localStorage.setItem(I18N_CONFIG_KEY, JSON.stringify({selectedLang: lang})) + window.location.reload() +} + +const I18nContext = createContext(initialState) + +const useLang = () => { + return useContext(I18nContext).selectedLang +} + +const MetronicI18nProvider: FC = ({children}) => { + const lang = getConfig() + return {children} +} + +export {MetronicI18nProvider, useLang} diff --git a/src/_metronic/i18n/i18nProvider.tsx b/src/_metronic/i18n/i18nProvider.tsx new file mode 100644 index 0000000..248271b --- /dev/null +++ b/src/_metronic/i18n/i18nProvider.tsx @@ -0,0 +1,40 @@ +import {FC} from 'react' +import {useLang} from './Metronici18n' +import {IntlProvider} from 'react-intl' +import '@formatjs/intl-relativetimeformat/polyfill' +import '@formatjs/intl-relativetimeformat/locale-data/en' +import '@formatjs/intl-relativetimeformat/locale-data/de' +import '@formatjs/intl-relativetimeformat/locale-data/es' +import '@formatjs/intl-relativetimeformat/locale-data/fr' +import '@formatjs/intl-relativetimeformat/locale-data/ja' +import '@formatjs/intl-relativetimeformat/locale-data/zh' + +import deMessages from './messages/de.json' +import enMessages from './messages/en.json' +import esMessages from './messages/es.json' +import frMessages from './messages/fr.json' +import jaMessages from './messages/ja.json' +import zhMessages from './messages/zh.json' +import {WithChildren} from '../helpers' + +const allMessages = { + de: deMessages, + en: enMessages, + es: esMessages, + fr: frMessages, + ja: jaMessages, + zh: zhMessages, +} + +const I18nProvider: FC = ({children}) => { + const locale = useLang() + const messages = allMessages[locale] + + return ( + + {children} + + ) +} + +export {I18nProvider} diff --git a/src/_metronic/i18n/messages/de.json b/src/_metronic/i18n/messages/de.json new file mode 100644 index 0000000..37ba3ce --- /dev/null +++ b/src/_metronic/i18n/messages/de.json @@ -0,0 +1,69 @@ +{ + "TRANSLATOR.SELECT": "Wähle deine Sprache", + "MENU.NEW": "Neu", + "MENU.ACTIONS": "Aktionen", + "MENU.CREATE_POST": "Erstellen Sie einen neuen Beitrag", + "MENU.PAGES": "Pages", + "MENU.FEATURES": "Eigenschaften", + "MENU.APPS": "Apps", + "MENU.DASHBOARD": "Instrumententafel", + "AUTH.GENERAL.OR": "Oder", + "AUTH.GENERAL.SUBMIT_BUTTON": "einreichen", + "AUTH.GENERAL.NO_ACCOUNT": "Hast du kein Konto?", + "AUTH.GENERAL.SIGNUP_BUTTON": "Anmelden", + "AUTH.GENERAL.FORGOT_BUTTON": "Passwort vergessen", + "AUTH.GENERAL.BACK_BUTTON": "Zurück", + "AUTH.GENERAL.PRIVACY": "Privatsphäre", + "AUTH.GENERAL.LEGAL": "Legal", + "AUTH.GENERAL.CONTACT": "Kontakt", + "AUTH.LOGIN.TITLE": "Create Account", + "AUTH.LOGIN.BUTTON": "Sign In", + "AUTH.FORGOT.TITLE": "Forgotten Password?", + "AUTH.FORGOT.DESC": "Enter your email to reset your password", + "AUTH.FORGOT.SUCCESS": "Your account has been successfully reset.", + "AUTH.REGISTER.TITLE": "Sign Up", + "AUTH.REGISTER.DESC": "Enter your details to create your account", + "AUTH.REGISTER.SUCCESS": "Your account has been successfuly registered.", + "AUTH.INPUT.EMAIL": "Email", + "AUTH.INPUT.FULLNAME": "Fullname", + "AUTH.INPUT.PASSWORD": "Password", + "AUTH.INPUT.CONFIRM_PASSWORD": "Confirm Password", + "AUTH.INPUT.USERNAME": "Nutzername", + "AUTH.VALIDATION.INVALID": "{name} is not valid", + "AUTH.VALIDATION.REQUIRED": "{name} is required", + "AUTH.VALIDATION.MIN_LENGTH": "{name}} minimum length is {{min}", + "AUTH.VALIDATION.AGREEMENT_REQUIRED": "Accepting terms & conditions are required", + "AUTH.VALIDATION.NOT_FOUND": "The requested {name} is not found", + "AUTH.VALIDATION.INVALID_LOGIN": "The login detail is incorrect", + "AUTH.VALIDATION.REQUIRED_FIELD": "Required field", + "AUTH.VALIDATION.MIN_LENGTH_FIELD": "Minimum field length:", + "AUTH.VALIDATION.MAX_LENGTH_FIELD": "Maximum field length:", + "AUTH.VALIDATION.INVALID_FIELD": "Field is not valid", + "ECOMMERCE.COMMON.SELECTED_RECORDS_COUNT": "Selected records count: ", + "ECOMMERCE.COMMON.ALL": "All", + "ECOMMERCE.COMMON.SUSPENDED": "Suspended", + "ECOMMERCE.COMMON.ACTIVE": "Active", + "ECOMMERCE.COMMON.FILTER": "Filter", + "ECOMMERCE.COMMON.BY_STATUS": "by Status", + "ECOMMERCE.COMMON.BY_TYPE": "by Type", + "ECOMMERCE.COMMON.BUSINESS": "Business", + "ECOMMERCE.COMMON.INDIVIDUAL": "Individual", + "ECOMMERCE.COMMON.SEARCH": "Search", + "ECOMMERCE.COMMON.IN_ALL_FIELDS": "in all fields", + "ECOMMERCE.ECOMMERCE": "eCommerce", + "ECOMMERCE.CUSTOMERS.CUSTOMERS": "Customers", + "ECOMMERCE.CUSTOMERS.CUSTOMERS_LIST": "Customers list", + "ECOMMERCE.CUSTOMERS.NEW_CUSTOMER": "New Customer", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.TITLE": "Customer Delete", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.DESCRIPTION": "Are you sure to permanently delete this customer?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.WAIT_DESCRIPTION": "Customer is deleting...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.MESSAGE": "Customer has been deleted", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.TITLE": "Customers Delete", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.DESCRIPTION": "Are you sure to permanently delete selected customers?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.WAIT_DESCRIPTION": "Customers are deleting...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.MESSAGE": "Selected customers have been deleted", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.TITLE": "Status has been updated for selected customers", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.MESSAGE": "Selected customers status have successfully been updated", + "ECOMMERCE.CUSTOMERS.EDIT.UPDATE_MESSAGE": "Customer has been updated", + "ECOMMERCE.CUSTOMERS.EDIT.ADD_MESSAGE": "Customer has been created" +} diff --git a/src/_metronic/i18n/messages/en.json b/src/_metronic/i18n/messages/en.json new file mode 100644 index 0000000..1835e12 --- /dev/null +++ b/src/_metronic/i18n/messages/en.json @@ -0,0 +1,69 @@ +{ + "TRANSLATOR.SELECT": "Select your language", + "MENU.NEW": "new", + "MENU.ACTIONS": "Actions", + "MENU.CREATE_POST": "Create New Post", + "MENU.PAGES": "Pages", + "MENU.FEATURES": "Features", + "MENU.APPS": "Apps", + "MENU.DASHBOARD": "Dashboard", + "AUTH.GENERAL.OR": "Or", + "AUTH.GENERAL.SUBMIT_BUTTON": "Submit", + "AUTH.GENERAL.NO_ACCOUNT": "Don't have an account?", + "AUTH.GENERAL.SIGNUP_BUTTON": "Sign Up", + "AUTH.GENERAL.FORGOT_BUTTON": "Forgot Password", + "AUTH.GENERAL.BACK_BUTTON": "Back", + "AUTH.GENERAL.PRIVACY": "Privacy", + "AUTH.GENERAL.LEGAL": "Legal", + "AUTH.GENERAL.CONTACT": "Contact", + "AUTH.LOGIN.TITLE": "Login Account", + "AUTH.LOGIN.BUTTON": "Sign In", + "AUTH.FORGOT.TITLE": "Forgotten Password?", + "AUTH.FORGOT.DESC": "Enter your email to reset your password", + "AUTH.FORGOT.SUCCESS": "Your account has been successfully reset.", + "AUTH.REGISTER.TITLE": "Sign Up", + "AUTH.REGISTER.DESC": "Enter your details to create your account", + "AUTH.REGISTER.SUCCESS": "Your account has been successfuly registered.", + "AUTH.INPUT.EMAIL": "Email", + "AUTH.INPUT.FULLNAME": "Fullname", + "AUTH.INPUT.PASSWORD": "Password", + "AUTH.INPUT.CONFIRM_PASSWORD": "Confirm Password", + "AUTH.INPUT.USERNAME": "Username", + "AUTH.VALIDATION.INVALID": "{name} is not valid", + "AUTH.VALIDATION.REQUIRED": "{name} is required", + "AUTH.VALIDATION.MIN_LENGTH": "{name}} minimum length is {{min}", + "AUTH.VALIDATION.AGREEMENT_REQUIRED": "Accepting terms & conditions are required", + "AUTH.VALIDATION.NOT_FOUND": "The requested {name} is not found", + "AUTH.VALIDATION.INVALID_LOGIN": "The login detail is incorrect", + "AUTH.VALIDATION.REQUIRED_FIELD": "Required field", + "AUTH.VALIDATION.MIN_LENGTH_FIELD": "Minimum field length:", + "AUTH.VALIDATION.MAX_LENGTH_FIELD": "Maximum field length:", + "AUTH.VALIDATION.INVALID_FIELD": "Field is not valid", + "ECOMMERCE.COMMON.SELECTED_RECORDS_COUNT": "Selected records count: ", + "ECOMMERCE.COMMON.ALL": "All", + "ECOMMERCE.COMMON.SUSPENDED": "Suspended", + "ECOMMERCE.COMMON.ACTIVE": "Active", + "ECOMMERCE.COMMON.FILTER": "Filter", + "ECOMMERCE.COMMON.BY_STATUS": "by Status", + "ECOMMERCE.COMMON.BY_TYPE": "by Type", + "ECOMMERCE.COMMON.BUSINESS": "Business", + "ECOMMERCE.COMMON.INDIVIDUAL": "Individual", + "ECOMMERCE.COMMON.SEARCH": "Search", + "ECOMMERCE.COMMON.IN_ALL_FIELDS": "in all fields", + "ECOMMERCE.ECOMMERCE": "eCommerce", + "ECOMMERCE.CUSTOMERS.CUSTOMERS": "Customers", + "ECOMMERCE.CUSTOMERS.CUSTOMERS_LIST": "Customers list", + "ECOMMERCE.CUSTOMERS.NEW_CUSTOMER": "New Customer", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.TITLE": "Customer Delete", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.DESCRIPTION": "Are you sure to permanently delete this customer?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.WAIT_DESCRIPTION": "Customer is deleting...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.MESSAGE": "Customer has been deleted", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.TITLE": "Customers Delete", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.DESCRIPTION": "Are you sure to permanently delete selected customers?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.WAIT_DESCRIPTION": "Customers are deleting...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.MESSAGE": "Selected customers have been deleted", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.TITLE": "Status has been updated for selected customers", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.MESSAGE": "Selected customers status have successfully been updated", + "ECOMMERCE.CUSTOMERS.EDIT.UPDATE_MESSAGE": "Customer has been updated", + "ECOMMERCE.CUSTOMERS.EDIT.ADD_MESSAGE": "Customer has been created" +} diff --git a/src/_metronic/i18n/messages/es.json b/src/_metronic/i18n/messages/es.json new file mode 100644 index 0000000..b2d3693 --- /dev/null +++ b/src/_metronic/i18n/messages/es.json @@ -0,0 +1,69 @@ +{ + "TRANSLATOR.SELECT": "Elige tu idioma", + "MENU.NEW": "nuevo", + "MENU.ACTIONS": "Comportamiento", + "MENU.CREATE_POST": "Crear nueva publicación", + "MENU.PAGES": "Pages", + "MENU.FEATURES": "Caracteristicas", + "MENU.APPS": "Aplicaciones", + "MENU.DASHBOARD": "Tablero", + "AUTH.GENERAL.OR": "O", + "AUTH.GENERAL.SUBMIT_BUTTON": "Enviar", + "AUTH.GENERAL.NO_ACCOUNT": "No tienes una cuenta?", + "AUTH.GENERAL.SIGNUP_BUTTON": "Regístrate", + "AUTH.GENERAL.FORGOT_BUTTON": "Se te olvidó tu contraseña", + "AUTH.GENERAL.BACK_BUTTON": "Espalda", + "AUTH.GENERAL.PRIVACY": "Intimidad", + "AUTH.GENERAL.LEGAL": "Legal", + "AUTH.GENERAL.CONTACT": "Contacto", + "AUTH.LOGIN.TITLE": "Crear una cuenta", + "AUTH.LOGIN.BUTTON": "Registrarse", + "AUTH.FORGOT.TITLE": "Contraseña olvidada?", + "AUTH.FORGOT.DESC": "Ingrese su correo electrónico para restablecer su contraseña", + "AUTH.FORGOT.SUCCESS": "Your account has been successfully reset.", + "AUTH.REGISTER.TITLE": "Sign Up", + "AUTH.REGISTER.DESC": "Enter your details to create your account", + "AUTH.REGISTER.SUCCESS": "Your account has been successfuly registered.", + "AUTH.INPUT.EMAIL": "Email", + "AUTH.INPUT.FULLNAME": "Fullname", + "AUTH.INPUT.PASSWORD": "Password", + "AUTH.INPUT.CONFIRM_PASSWORD": "Confirm Password", + "AUTH.INPUT.USERNAME": "Usuario", + "AUTH.VALIDATION.INVALID": "{name} is not valid", + "AUTH.VALIDATION.REQUIRED": "{name} is required", + "AUTH.VALIDATION.MIN_LENGTH": "{name}} minimum length is {{min}", + "AUTH.VALIDATION.AGREEMENT_REQUIRED": "Accepting terms & conditions are required", + "AUTH.VALIDATION.NOT_FOUND": "The requested {name} is not found", + "AUTH.VALIDATION.INVALID_LOGIN": "The login detail is incorrect", + "AUTH.VALIDATION.REQUIRED_FIELD": "Required field", + "AUTH.VALIDATION.MIN_LENGTH_FIELD": "Minimum field length:", + "AUTH.VALIDATION.MAX_LENGTH_FIELD": "Maximum field length:", + "AUTH.VALIDATION.INVALID_FIELD": "Field is not valid", + "ECOMMERCE.COMMON.SELECTED_RECORDS_COUNT": "Selected records count: ", + "ECOMMERCE.COMMON.ALL": "All", + "ECOMMERCE.COMMON.SUSPENDED": "Suspended", + "ECOMMERCE.COMMON.ACTIVE": "Active", + "ECOMMERCE.COMMON.FILTER": "Filter", + "ECOMMERCE.COMMON.BY_STATUS": "by Status", + "ECOMMERCE.COMMON.BY_TYPE": "by Type", + "ECOMMERCE.COMMON.BUSINESS": "Business", + "ECOMMERCE.COMMON.INDIVIDUAL": "Individual", + "ECOMMERCE.COMMON.SEARCH": "Search", + "ECOMMERCE.COMMON.IN_ALL_FIELDS": "in all fields", + "ECOMMERCE.ECOMMERCE": "eCommerce", + "ECOMMERCE.CUSTOMERS.CUSTOMERS": "Customers", + "ECOMMERCE.CUSTOMERS.CUSTOMERS_LIST": "Customers list", + "ECOMMERCE.CUSTOMERS.NEW_CUSTOMER": "New Customer", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.TITLE": "Customer Delete", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.DESCRIPTION": "Are you sure to permanently delete this customer?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.WAIT_DESCRIPTION": "Customer is deleting...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.MESSAGE": "Customer has been deleted", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.TITLE": "Customers Delete", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.DESCRIPTION": "Are you sure to permanently delete selected customers?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.WAIT_DESCRIPTION": "Customers are deleting...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.MESSAGE": "Selected customers have been deleted", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.TITLE": "Status has been updated for selected customers", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.MESSAGE": "Selected customers status have successfully been updated", + "ECOMMERCE.CUSTOMERS.EDIT.UPDATE_MESSAGE": "Customer has been updated", + "ECOMMERCE.CUSTOMERS.EDIT.ADD_MESSAGE": "Customer has been created" +} diff --git a/src/_metronic/i18n/messages/fr.json b/src/_metronic/i18n/messages/fr.json new file mode 100644 index 0000000..accb3f3 --- /dev/null +++ b/src/_metronic/i18n/messages/fr.json @@ -0,0 +1,69 @@ +{ + "TRANSLATOR.SELECT": "choisissez votre langue", + "MENU.NEW": "Nouveau", + "MENU.ACTIONS": "Actes", + "MENU.CREATE_POST": "Créer un nouveau Post", + "MENU.PAGES": "Pages", + "MENU.FEATURES": "Fonctionnalités", + "MENU.APPS": "Applications", + "MENU.DASHBOARD": "Tableau de Bord", + "AUTH.GENERAL.OR": "Ou", + "AUTH.GENERAL.SUBMIT_BUTTON": "Soumettre", + "AUTH.GENERAL.NO_ACCOUNT": "Ne pas avoir de compte?", + "AUTH.GENERAL.SIGNUP_BUTTON": "Registre", + "AUTH.GENERAL.FORGOT_BUTTON": "Mot de passe oublié", + "AUTH.GENERAL.BACK_BUTTON": "Back", + "AUTH.GENERAL.PRIVACY": "Privacy", + "AUTH.GENERAL.LEGAL": "Legal", + "AUTH.GENERAL.CONTACT": "Contact", + "AUTH.LOGIN.TITLE": "Créer un compte", + "AUTH.LOGIN.BUTTON": "Sign In", + "AUTH.FORGOT.TITLE": "Forgotten Password?", + "AUTH.FORGOT.DESC": "Enter your email to reset your password", + "AUTH.FORGOT.SUCCESS": "Your account has been successfully reset.", + "AUTH.REGISTER.TITLE": "Sign Up", + "AUTH.REGISTER.DESC": "Enter your details to create your account", + "AUTH.REGISTER.SUCCESS": "Your account has been successfuly registered.", + "AUTH.INPUT.EMAIL": "Email", + "AUTH.INPUT.FULLNAME": "Fullname", + "AUTH.INPUT.PASSWORD": "Mot de passe", + "AUTH.INPUT.CONFIRM_PASSWORD": "Confirm Password", + "AUTH.INPUT.USERNAME": "Nom d'utilisateur", + "AUTH.VALIDATION.INVALID": "{name} n'est pas valide", + "AUTH.VALIDATION.REQUIRED": "{name} est requis", + "AUTH.VALIDATION.MIN_LENGTH": "{name}} minimum length is {{min}", + "AUTH.VALIDATION.AGREEMENT_REQUIRED": "Accepting terms & conditions are required", + "AUTH.VALIDATION.NOT_FOUND": "The requested {name} is not found", + "AUTH.VALIDATION.INVALID_LOGIN": "The login detail is incorrect", + "AUTH.VALIDATION.REQUIRED_FIELD": "Required field", + "AUTH.VALIDATION.MIN_LENGTH_FIELD": "Minimum field length:", + "AUTH.VALIDATION.MAX_LENGTH_FIELD": "Maximum field length:", + "AUTH.VALIDATION.INVALID_FIELD": "Field is not valid", + "ECOMMERCE.COMMON.SELECTED_RECORDS_COUNT": "Nombre d'enregistrements sélectionnés: ", + "ECOMMERCE.COMMON.ALL": "All", + "ECOMMERCE.COMMON.SUSPENDED": "Suspended", + "ECOMMERCE.COMMON.ACTIVE": "Active", + "ECOMMERCE.COMMON.FILTER": "Filter", + "ECOMMERCE.COMMON.BY_STATUS": "by Status", + "ECOMMERCE.COMMON.BY_TYPE": "by Type", + "ECOMMERCE.COMMON.BUSINESS": "Business", + "ECOMMERCE.COMMON.INDIVIDUAL": "Individual", + "ECOMMERCE.COMMON.SEARCH": "Search", + "ECOMMERCE.COMMON.IN_ALL_FIELDS": "in all fields", + "ECOMMERCE.ECOMMERCE": "éCommerce", + "ECOMMERCE.CUSTOMERS.CUSTOMERS": "Les clients", + "ECOMMERCE.CUSTOMERS.CUSTOMERS_LIST": "Liste des clients", + "ECOMMERCE.CUSTOMERS.NEW_CUSTOMER": "Nouveau client", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.TITLE": "Suppression du client", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.DESCRIPTION": "Êtes-vous sûr de supprimer définitivement ce client?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.WAIT_DESCRIPTION": "Le client est en train de supprimer ...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.MESSAGE": "Le client a été supprimé", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.TITLE": "Supprimer les clients", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.DESCRIPTION": "Êtes-vous sûr de supprimer définitivement les clients sélectionnés?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.WAIT_DESCRIPTION": "Les clients suppriment ...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.MESSAGE": "Les clients sélectionnés ont été supprimés", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.TITLE": "Le statut a été mis à jour pour les clients sélectionnés", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.MESSAGE": "Le statut des clients sélectionnés a été mis à jour avec succès", + "ECOMMERCE.CUSTOMERS.EDIT.UPDATE_MESSAGE": "Le client a été mis à jour", + "ECOMMERCE.CUSTOMERS.EDIT.ADD_MESSAGE": "Le client a été créé" +} diff --git a/src/_metronic/i18n/messages/ja.json b/src/_metronic/i18n/messages/ja.json new file mode 100644 index 0000000..0f3c395 --- /dev/null +++ b/src/_metronic/i18n/messages/ja.json @@ -0,0 +1,69 @@ +{ + "TRANSLATOR.SELECT": "あなたが使う言語を選んでください", + "MENU.NEW": "新しい", + "MENU.ACTIONS": "行動", + "MENU.CREATE_POST": "新しい投稿を作成", + "MENU.PAGES": "Pages", + "MENU.FEATURES": "特徴", + "MENU.APPS": "アプリ", + "MENU.DASHBOARD": "ダッシュボード", + "AUTH.GENERAL.OR": "または", + "AUTH.GENERAL.SUBMIT_BUTTON": "提出する", + "AUTH.GENERAL.NO_ACCOUNT": "アカウントを持っていない?", + "AUTH.GENERAL.SIGNUP_BUTTON": "サインアップ", + "AUTH.GENERAL.FORGOT_BUTTON": "パスワードをお忘れですか", + "AUTH.GENERAL.BACK_BUTTON": "バック", + "AUTH.GENERAL.PRIVACY": "プライバシー", + "AUTH.GENERAL.LEGAL": "法的", + "AUTH.GENERAL.CONTACT": "接触", + "AUTH.LOGIN.TITLE": "Create Account", + "AUTH.LOGIN.BUTTON": "Sign In", + "AUTH.FORGOT.TITLE": "Forgotten Password?", + "AUTH.FORGOT.DESC": "Enter your email to reset your password", + "AUTH.FORGOT.SUCCESS": "Your account has been successfully reset.", + "AUTH.REGISTER.TITLE": "Sign Up", + "AUTH.REGISTER.DESC": "Enter your details to create your account", + "AUTH.REGISTER.SUCCESS": "Your account has been successfuly registered.", + "AUTH.INPUT.EMAIL": "Email", + "AUTH.INPUT.FULLNAME": "Fullname", + "AUTH.INPUT.PASSWORD": "Password", + "AUTH.INPUT.CONFIRM_PASSWORD": "Confirm Password", + "AUTH.INPUT.USERNAME": "ユーザー名", + "AUTH.VALIDATION.INVALID": "{name} is not valid", + "AUTH.VALIDATION.REQUIRED": "{name} is required", + "AUTH.VALIDATION.MIN_LENGTH": "{name}} minimum length is {{min}", + "AUTH.VALIDATION.AGREEMENT_REQUIRED": "Accepting terms & conditions are required", + "AUTH.VALIDATION.NOT_FOUND": "The requested {name} is not found", + "AUTH.VALIDATION.INVALID_LOGIN": "The login detail is incorrect", + "AUTH.VALIDATION.REQUIRED_FIELD": "Required field", + "AUTH.VALIDATION.MIN_LENGTH_FIELD": "Minimum field length:", + "AUTH.VALIDATION.MAX_LENGTH_FIELD": "Maximum field length:", + "AUTH.VALIDATION.INVALID_FIELD": "Field is not valid", + "ECOMMERCE.COMMON.SELECTED_RECORDS_COUNT": "Selected records count: ", + "ECOMMERCE.COMMON.ALL": "All", + "ECOMMERCE.COMMON.SUSPENDED": "Suspended", + "ECOMMERCE.COMMON.ACTIVE": "Active", + "ECOMMERCE.COMMON.FILTER": "Filter", + "ECOMMERCE.COMMON.BY_STATUS": "by Status", + "ECOMMERCE.COMMON.BY_TYPE": "by Type", + "ECOMMERCE.COMMON.BUSINESS": "Business", + "ECOMMERCE.COMMON.INDIVIDUAL": "Individual", + "ECOMMERCE.COMMON.SEARCH": "Search", + "ECOMMERCE.COMMON.IN_ALL_FIELDS": "in all fields", + "ECOMMERCE.ECOMMERCE": "eCommerce", + "ECOMMERCE.CUSTOMERS.CUSTOMERS": "Customers", + "ECOMMERCE.CUSTOMERS.CUSTOMERS_LIST": "Customers list", + "ECOMMERCE.CUSTOMERS.NEW_CUSTOMER": "New Customer", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.TITLE": "Customer Delete", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.DESCRIPTION": "Are you sure to permanently delete this customer?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.WAIT_DESCRIPTION": "Customer is deleting...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.MESSAGE": "Customer has been deleted", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.TITLE": "Customers Delete", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.DESCRIPTION": "Are you sure to permanently delete selected customers?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.WAIT_DESCRIPTION": "Customers are deleting...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.MESSAGE": "Selected customers have been deleted", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.TITLE": "Status has been updated for selected customers", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.MESSAGE": "Selected customers status have successfully been updated", + "ECOMMERCE.CUSTOMERS.EDIT.UPDATE_MESSAGE": "Customer has been updated", + "ECOMMERCE.CUSTOMERS.EDIT.ADD_MESSAGE": "Customer has been created" +} diff --git a/src/_metronic/i18n/messages/zh.json b/src/_metronic/i18n/messages/zh.json new file mode 100644 index 0000000..1389d5c --- /dev/null +++ b/src/_metronic/i18n/messages/zh.json @@ -0,0 +1,69 @@ +{ + "TRANSLATOR.SELECT": "选择你的语言", + "MENU.NEW": "新", + "MENU.ACTIONS": "行动", + "MENU.CREATE_POST": "创建新帖子", + "MENU.PAGES": "Pages", + "MENU.FEATURES": "特征", + "MENU.APPS": "应用", + "MENU.DASHBOARD": "仪表板", + "AUTH.GENERAL.OR": "要么", + "AUTH.GENERAL.SUBMIT_BUTTON": "提交", + "AUTH.GENERAL.NO_ACCOUNT": "没有账号?", + "AUTH.GENERAL.SIGNUP_BUTTON": "注册", + "AUTH.GENERAL.FORGOT_BUTTON": "忘记密码", + "AUTH.GENERAL.BACK_BUTTON": "背部", + "AUTH.GENERAL.PRIVACY": "隐私", + "AUTH.GENERAL.LEGAL": "法律", + "AUTH.GENERAL.CONTACT": "联系", + "AUTH.LOGIN.TITLE": "创建帐号", + "AUTH.LOGIN.BUTTON": "签到", + "AUTH.FORGOT.TITLE": "Forgotten Password?", + "AUTH.FORGOT.DESC": "Enter your email to reset your password", + "AUTH.FORGOT.SUCCESS": "Your account has been successfully reset.", + "AUTH.REGISTER.TITLE": "Sign Up", + "AUTH.REGISTER.DESC": "Enter your details to create your account", + "AUTH.REGISTER.SUCCESS": "Your account has been successfuly registered.", + "AUTH.INPUT.EMAIL": "Email", + "AUTH.INPUT.FULLNAME": "Fullname", + "AUTH.INPUT.PASSWORD": "Password", + "AUTH.INPUT.CONFIRM_PASSWORD": "Confirm Password", + "AUTH.INPUT.USERNAME": "用戶名", + "AUTH.VALIDATION.INVALID": "{name} is not valid", + "AUTH.VALIDATION.REQUIRED": "{name} is required", + "AUTH.VALIDATION.MIN_LENGTH": "{name}} minimum length is {{min}", + "AUTH.VALIDATION.AGREEMENT_REQUIRED": "Accepting terms & conditions are required", + "AUTH.VALIDATION.NOT_FOUND": "The requested {name} is not found", + "AUTH.VALIDATION.INVALID_LOGIN": "The login detail is incorrect", + "AUTH.VALIDATION.REQUIRED_FIELD": "Required field", + "AUTH.VALIDATION.MIN_LENGTH_FIELD": "Minimum field length:", + "AUTH.VALIDATION.MAX_LENGTH_FIELD": "Maximum field length:", + "AUTH.VALIDATION.INVALID_FIELD": "Field is not valid", + "ECOMMERCE.COMMON.SELECTED_RECORDS_COUNT": "Selected records count: ", + "ECOMMERCE.COMMON.ALL": "All", + "ECOMMERCE.COMMON.SUSPENDED": "Suspended", + "ECOMMERCE.COMMON.ACTIVE": "Active", + "ECOMMERCE.COMMON.FILTER": "Filter", + "ECOMMERCE.COMMON.BY_STATUS": "by Status", + "ECOMMERCE.COMMON.BY_TYPE": "by Type", + "ECOMMERCE.COMMON.BUSINESS": "Business", + "ECOMMERCE.COMMON.INDIVIDUAL": "Individual", + "ECOMMERCE.COMMON.SEARCH": "Search", + "ECOMMERCE.COMMON.IN_ALL_FIELDS": "in all fields", + "ECOMMERCE.ECOMMERCE": "eCommerce", + "ECOMMERCE.CUSTOMERS.CUSTOMERS": "顾客", + "ECOMMERCE.CUSTOMERS.CUSTOMERS_LIST": "客户名单", + "ECOMMERCE.CUSTOMERS.NEW_CUSTOMER": "New Customer", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.TITLE": "Customer Delete", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.DESCRIPTION": "Are you sure to permanently delete this customer?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.WAIT_DESCRIPTION": "Customer is deleting...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_SIMPLE.MESSAGE": "Customer has been deleted", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.TITLE": "Customers Delete", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.DESCRIPTION": "Are you sure to permanently delete selected customers?", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.WAIT_DESCRIPTION": "Customers are deleting...", + "ECOMMERCE.CUSTOMERS.DELETE_CUSTOMER_MULTY.MESSAGE": "Selected customers have been deleted", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.TITLE": "Status has been updated for selected customers", + "ECOMMERCE.CUSTOMERS.UPDATE_STATUS.MESSAGE": "Selected customers status have successfully been updated", + "ECOMMERCE.CUSTOMERS.EDIT.UPDATE_MESSAGE": "Customer has been updated", + "ECOMMERCE.CUSTOMERS.EDIT.ADD_MESSAGE": "Customer has been created" +} diff --git a/src/_metronic/layout/MasterInit.tsx b/src/_metronic/layout/MasterInit.tsx new file mode 100644 index 0000000..57713dd --- /dev/null +++ b/src/_metronic/layout/MasterInit.tsx @@ -0,0 +1,43 @@ +import {useEffect, useState} from 'react' +import {Tab} from 'bootstrap' +import { + MenuComponent, + DrawerComponent, + ScrollComponent, + ScrollTopComponent, + StickyComponent, + ToggleComponent, + SwapperComponent, +} from '../assets/ts/components' +import {ThemeModeComponent} from '../assets/ts/layout' + +import {useLayout} from './core' + +export function MasterInit() { + const {config} = useLayout() + const [initialized, setInitialized] = useState(false) + const pluginsInitialization = () => { + ThemeModeComponent.init() + setTimeout(() => { + ToggleComponent.bootstrap() + ScrollTopComponent.bootstrap() + DrawerComponent.bootstrap() + StickyComponent.bootstrap() + MenuComponent.bootstrap() + ScrollComponent.bootstrap() + SwapperComponent.bootstrap() + document.querySelectorAll('[data-bs-toggle="tab"]').forEach((tab) => { + Tab.getOrCreateInstance(tab) + }) + }, 500) + } + + useEffect(() => { + if (!initialized) { + setInitialized(true) + pluginsInitialization() + } + }, [config, initialized]) + + return <> +} diff --git a/src/_metronic/layout/MasterLayout.tsx b/src/_metronic/layout/MasterLayout.tsx new file mode 100644 index 0000000..85c5fd2 --- /dev/null +++ b/src/_metronic/layout/MasterLayout.tsx @@ -0,0 +1,50 @@ +import {useEffect} from 'react' +import {Outlet, useLocation} from 'react-router-dom' +import {HeaderWrapper} from './components/header' +import {RightToolbar} from '../partials/layout/RightToolbar' +import {ScrollTop} from './components/scroll-top' +import {FooterWrapper} from './components/footer' +import {Sidebar} from './components/sidebar' +import {ActivityDrawer, DrawerMessenger, InviteUsers, UpgradePlan} from '../partials' +import {PageDataProvider} from './core' +import {reInitMenu} from '../helpers' + +const MasterLayout = () => { + const location = useLocation() + useEffect(() => { + reInitMenu() + }, [location.key]) + + return ( + +
+
+ +
+ +
+
+ +
+ +
+
+
+
+ + {/* begin:: Drawers */} + + + + {/* end:: Drawers */} + + {/* begin:: Modals */} + + + {/* end:: Modals */} + +
+ ) +} + +export {MasterLayout} diff --git a/src/_metronic/layout/components/content/Content.tsx b/src/_metronic/layout/components/content/Content.tsx new file mode 100644 index 0000000..73d5f4f --- /dev/null +++ b/src/_metronic/layout/components/content/Content.tsx @@ -0,0 +1,42 @@ +import {useEffect} from 'react' +import {useLocation} from 'react-router' +import clsx from 'clsx' +import {useLayout} from '../../core' +import {DrawerComponent} from '../../../assets/ts/components' +import {WithChildren} from '../../../helpers' + +const Content = ({children}: WithChildren) => { + const {config, classes} = useLayout() + const location = useLocation() + useEffect(() => { + DrawerComponent.hideAll() + }, [location]) + + const appContentContainer = config.app?.content?.container + return ( +
+ {appContentContainer ? ( +
+ {children} +
+ ) : ( + <>{children} + )} +
+ ) +} + +export {Content} diff --git a/src/_metronic/layout/components/content/index.ts b/src/_metronic/layout/components/content/index.ts new file mode 100644 index 0000000..aa90efe --- /dev/null +++ b/src/_metronic/layout/components/content/index.ts @@ -0,0 +1 @@ +export * from './Content' diff --git a/src/_metronic/layout/components/footer/Footer.tsx b/src/_metronic/layout/components/footer/Footer.tsx new file mode 100644 index 0000000..2ea2ec6 --- /dev/null +++ b/src/_metronic/layout/components/footer/Footer.tsx @@ -0,0 +1,61 @@ +import {useEffect} from 'react' +import {ILayout, useLayout} from '../../core' + +const Footer = () => { + const {config} = useLayout() + useEffect(() => { + updateDOM(config) + }, [config]) + return ( + <> +
+ + {new Date().getFullYear().toString()}© + + + WrenchBoard + +
+ + + + ) +} + +const updateDOM = (config: ILayout) => { + if (config.app?.footer?.fixed?.desktop) { + document.body.classList.add('data-kt-app-footer-fixed', 'true') + } + + if (config.app?.footer?.fixed?.mobile) { + document.body.classList.add('data-kt-app-footer-fixed-mobile', 'true') + } +} + +export {Footer} diff --git a/src/_metronic/layout/components/footer/FooterWrapper.tsx b/src/_metronic/layout/components/footer/FooterWrapper.tsx new file mode 100644 index 0000000..4b6e6de --- /dev/null +++ b/src/_metronic/layout/components/footer/FooterWrapper.tsx @@ -0,0 +1,30 @@ +import clsx from 'clsx' +import {useLayout} from '../../core' +import {Footer} from './Footer' + +const FooterWrapper = () => { + const {config} = useLayout() + if (!config.app?.footer?.display) { + return null + } + + return ( + + ) +} + +export {FooterWrapper} diff --git a/src/_metronic/layout/components/footer/index.ts b/src/_metronic/layout/components/footer/index.ts new file mode 100644 index 0000000..eeeabf7 --- /dev/null +++ b/src/_metronic/layout/components/footer/index.ts @@ -0,0 +1 @@ +export * from './FooterWrapper' diff --git a/src/_metronic/layout/components/header/Header.tsx b/src/_metronic/layout/components/header/Header.tsx new file mode 100644 index 0000000..e37a062 --- /dev/null +++ b/src/_metronic/layout/components/header/Header.tsx @@ -0,0 +1,92 @@ +/* eslint-disable no-prototype-builtins */ +import {FC, useEffect} from 'react' +import {ILayout, useLayout} from '../../core' +import {MenuInner} from './header-menus' + +const Header: FC = () => { + const {config} = useLayout() + useEffect(() => { + updateDOM(config) + }, [config]) + + return ( +
+ +
+ ) +} + +const updateDOM = (config: ILayout) => { + if (config.app?.header?.default?.fixed?.desktop) { + document.body.setAttribute('data-kt-app-header-fixed', 'true') + + document.body.setAttribute('data-kt-app-header-minimize', 'on') + } + + if (config.app?.header?.default?.fixed?.mobile) { + document.body.setAttribute('data-kt-app-header-fixed-mobile', 'true') + } + + if (config.app?.header?.default?.stacked) { + document.body.setAttribute('data-kt-app-header-stacked', 'true') + } + + const appHeaderDefaultStickyEnabled = config.app?.header?.default?.sticky?.enabled + let appHeaderDefaultStickyAttributes: {[attrName: string]: string} = {} + if (appHeaderDefaultStickyEnabled) { + appHeaderDefaultStickyAttributes = config.app?.header?.default?.sticky?.attributes as { + [attrName: string]: string + } + } + + const appHeaderDefaultMinimizeEnabled = config.app?.header?.default?.minimize?.enabled + let appHeaderDefaultMinimizeAttributes: {[attrName: string]: string} = {} + if (appHeaderDefaultMinimizeEnabled) { + appHeaderDefaultMinimizeAttributes = config.app?.header?.default?.minimize?.attributes as { + [attrName: string]: string + } + } + + setTimeout(() => { + const headerElement = document.getElementById('kt_app_header') + // header + if (headerElement) { + const headerAttributes = headerElement + .getAttributeNames() + .filter((t) => t.indexOf('data-') > -1) + headerAttributes.forEach((attr) => headerElement.removeAttribute(attr)) + + if (appHeaderDefaultStickyEnabled) { + for (const key in appHeaderDefaultStickyAttributes) { + if (appHeaderDefaultStickyAttributes.hasOwnProperty(key)) { + headerElement.setAttribute(key, appHeaderDefaultStickyAttributes[key]) + } + } + } + + if (appHeaderDefaultMinimizeEnabled) { + for (const key in appHeaderDefaultMinimizeAttributes) { + if (appHeaderDefaultMinimizeAttributes.hasOwnProperty(key)) { + headerElement.setAttribute(key, appHeaderDefaultMinimizeAttributes[key]) + } + } + } + } + }, 0) +} + +export {Header} diff --git a/src/_metronic/layout/components/header/HeaderWrapper.tsx b/src/_metronic/layout/components/header/HeaderWrapper.tsx new file mode 100644 index 0000000..e06f4be --- /dev/null +++ b/src/_metronic/layout/components/header/HeaderWrapper.tsx @@ -0,0 +1,111 @@ + +import clsx from 'clsx' +import {Link} from 'react-router-dom' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' +import {LayoutSetup, useLayout} from '../../core' +import {Header} from './Header' +import {Navbar} from './Navbar' + +export function HeaderWrapper() { + const {config, classes} = useLayout() + if (config.app?.header?.default?.container === 'fluid') { + LayoutSetup.classes.headerContainer.push("container-fluid"); + } else { + LayoutSetup.classes.headerContainer.push("container-xxl"); + } + if (!config.app?.header?.display) { + return null + } + + return ( +
+
+ {config.app.sidebar?.display && ( + <> + {config.layoutType !== 'dark-header' && config.layoutType !== 'light-header' ? ( +
+
+ +
+
+ + Logo + +
+
+ ) : null} + + )} + + {!(config.layoutType === 'dark-sidebar' || config.layoutType === 'light-sidebar') && ( +
+ + {config.layoutType === 'dark-header' ? ( + Logo + ) : ( + <> + Logo + Logo + + )} + +
+ )} + +
+ {config.app.header.default?.content === 'menu' && + config.app.header.default.menu?.display && ( +
+
+
+ )} + +
+
+
+ ) +} diff --git a/src/_metronic/layout/components/header/Navbar.tsx b/src/_metronic/layout/components/header/Navbar.tsx new file mode 100644 index 0000000..2389589 --- /dev/null +++ b/src/_metronic/layout/components/header/Navbar.tsx @@ -0,0 +1,75 @@ +import clsx from 'clsx' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' +import {HeaderNotificationsMenu, HeaderUserMenu, Search, ThemeModeSwitcher} from '../../../partials' +import {useLayout} from '../../core' + +const itemClass = 'ms-1 ms-md-4' +const btnClass = + 'btn btn-icon btn-custom btn-icon-muted btn-active-light btn-active-color-primary w-35px h-35px' +const userAvatarClass = 'symbol-35px' +const btnIconClass = 'fs-2' + +const Navbar = () => { + const {config} = useLayout() + return ( +
+
+ +
+ +
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ + +
+
+ +
+ +
+ +
+
+ +
+ +
+ + {config.app?.header?.default?.menu?.display && ( +
+
+ +
+
+ )} +
+ ) +} + +export {Navbar} diff --git a/src/_metronic/layout/components/header/header-menus/MegaMenu.tsx b/src/_metronic/layout/components/header/header-menus/MegaMenu.tsx new file mode 100644 index 0000000..842748f --- /dev/null +++ b/src/_metronic/layout/components/header/header-menus/MegaMenu.tsx @@ -0,0 +1,162 @@ + +import {FC} from 'react' +import {Link} from 'react-router-dom' +import {toAbsoluteUrl} from '../../../../helpers' +import {useLayout} from '../../../core' + +const MegaMenu: FC = () => { + const {setLayoutType, setToolbarType} = useLayout() + return ( +
+ {/* begin:Col */} +
+ {/* begin:Row */} +
+ {/* begin:Col */} +
+ {/* begin:Heading */} +

Layouts

+ {/* end:Heading */} + {/* begin:Menu item */} +
+ {/* begin:Menu link */} + setLayoutType('light-sidebar')} className='menu-link'> + + + + Light Sidebar + + {/* end:Menu link */} +
+ {/* end:Menu item */} + {/* begin:Menu item */} +
+ {/* begin:Menu link */} + setLayoutType('dark-sidebar')} className='menu-link'> + + + + Dark Sidebar + + {/* end:Menu link */} +
+ {/* end:Menu item */} + {/* begin:Menu item */} +
+ {/* begin:Menu link */} + setLayoutType('light-header')} className='menu-link'> + + + + Light Header + + {/* end:Menu link */} +
+ {/* end:Menu item */} + {/* begin:Menu item */} +
+ {/* begin:Menu link */} + setLayoutType('dark-header')} className='menu-link'> + + + + Dark Header + + {/* end:Menu link */} +
+ {/* end:Menu item */} +
+ {/* end:Col */} + {/* begin:Col */} +
+ {/* begin:Heading */} +

Toolbars

+ {/* end:Heading */} + {/* begin:Menu item */} +
+ {/* begin:Menu link */} + setToolbarType('classic')} className='menu-link'> + + + + Classic + + {/* end:Menu link */} +
+ {/* end:Menu item */} + {/* begin:Menu item */} +
+ {/* begin:Menu link */} + setToolbarType('saas')} className='menu-link'> + + + + SaaS + + {/* end:Menu link */} +
+ {/* end:Menu item */} + {/* begin:Menu item */} +
+ {/* begin:Menu link */} + setToolbarType('accounting')} className='menu-link'> + + + + Accounting + + {/* end:Menu link */} +
+ {/* end:Menu item */} + {/* begin:Menu item */} +
+ {/* begin:Menu link */} + setToolbarType('extended')} className='menu-link'> + + + + Extended + + {/* end:Menu link */} +
+ {/* end:Menu item */} + {/* begin:Menu item */} +
+ {/* begin:Menu link */} + setToolbarType('reports')} className='menu-link'> + + + + Reports + + {/* end:Menu link */} +
+ {/* end:Menu item */} +
+ {/* end:Col */} +
+ {/* end:Row */} +
+ {/* begin:Layout Builder */} +
+
+
Layout Builder
+
Customize view
+
+ + Try Builder + +
+ {/* end:Layout Builder */} +
+ {/* end:Col */} + {/* begin:Col */} +
+ +
+ {/* end:Col */} +
+ ) +} + +export {MegaMenu} diff --git a/src/_metronic/layout/components/header/header-menus/MenuInner.tsx b/src/_metronic/layout/components/header/header-menus/MenuInner.tsx new file mode 100644 index 0000000..5e29675 --- /dev/null +++ b/src/_metronic/layout/components/header/header-menus/MenuInner.tsx @@ -0,0 +1,130 @@ +import {useIntl} from 'react-intl' +import {MenuItem} from './MenuItem' +import {MenuInnerWithSub} from './MenuInnerWithSub' +import {MegaMenu} from './MegaMenu' + +export function MenuInner() { + const intl = useIntl() + return ( + <> + + + + {/* PAGES */} + + + + + + + + + + + + + + + {/* ACCOUNT */} + + + + + + {/* ERRORS */} + + + + + + {/* Widgets */} + + + + + + + + + + + + {/* PAGES */} + + + + + + + + + + + + + ) +} diff --git a/src/_metronic/layout/components/header/header-menus/MenuInnerWithSub.tsx b/src/_metronic/layout/components/header/header-menus/MenuInnerWithSub.tsx new file mode 100644 index 0000000..e17b5dc --- /dev/null +++ b/src/_metronic/layout/components/header/header-menus/MenuInnerWithSub.tsx @@ -0,0 +1,82 @@ +import {FC, useEffect, useRef} from 'react' +import {useLocation} from 'react-router' +import clsx from 'clsx' +import {checkIsActive, KTIcon, WithChildren} from '../../../../helpers' + +type Props = { + to: string + title: string + icon?: string + fontIcon?: string + menuTrigger?: 'click' | `{default:'click', lg: 'hover'}` + menuPlacement?: 'right-start' | 'bottom-start' | 'left-start' + hasArrow?: boolean + hasBullet?: boolean + isMega?: boolean +} + +const MenuInnerWithSub: FC = ({ + children, + to, + title, + icon, + fontIcon, + menuTrigger, + menuPlacement, + hasArrow = false, + hasBullet = false, + isMega = false, +}) => { + const menuItemRef = useRef(null) + const {pathname} = useLocation() + + useEffect(() => { + if (menuItemRef.current && menuTrigger && menuPlacement) { + menuItemRef.current.setAttribute('data-kt-menu-trigger', menuTrigger) + menuItemRef.current.setAttribute('data-kt-menu-placement', menuPlacement) + } + }, [menuTrigger, menuPlacement]) + + return ( +
+ + {hasBullet && ( + + + + )} + + {icon && ( + + + + )} + + {fontIcon && ( + + + + )} + + {title} + + {hasArrow && } + +
+ {children} +
+
+ ) +} + +export {MenuInnerWithSub} diff --git a/src/_metronic/layout/components/header/header-menus/MenuItem.tsx b/src/_metronic/layout/components/header/header-menus/MenuItem.tsx new file mode 100644 index 0000000..082908d --- /dev/null +++ b/src/_metronic/layout/components/header/header-menus/MenuItem.tsx @@ -0,0 +1,53 @@ +import {FC} from 'react' +import {useLocation} from 'react-router' +import {Link} from 'react-router-dom' +import clsx from 'clsx' +import {checkIsActive, KTIcon} from '../../../../helpers' + +type Props = { + to: string + title: string + icon?: string + fontIcon?: string + hasArrow?: boolean + hasBullet?: boolean +} + +const MenuItem: FC = ({to, title, icon, fontIcon, hasArrow = false, hasBullet = false}) => { + const {pathname} = useLocation() + + return ( +
+ + {hasBullet && ( + + + + )} + + {icon && ( + + + + )} + + {fontIcon && ( + + + + )} + + {title} + + {hasArrow && } + +
+ ) +} + +export {MenuItem} diff --git a/src/_metronic/layout/components/header/header-menus/index.ts b/src/_metronic/layout/components/header/header-menus/index.ts new file mode 100644 index 0000000..fecbc56 --- /dev/null +++ b/src/_metronic/layout/components/header/header-menus/index.ts @@ -0,0 +1 @@ +export * from './MenuInner' diff --git a/src/_metronic/layout/components/header/index.ts b/src/_metronic/layout/components/header/index.ts new file mode 100644 index 0000000..1019be4 --- /dev/null +++ b/src/_metronic/layout/components/header/index.ts @@ -0,0 +1 @@ +export * from './HeaderWrapper' diff --git a/src/_metronic/layout/components/scroll-top/ScrollTop.tsx b/src/_metronic/layout/components/scroll-top/ScrollTop.tsx new file mode 100644 index 0000000..4b4547d --- /dev/null +++ b/src/_metronic/layout/components/scroll-top/ScrollTop.tsx @@ -0,0 +1,57 @@ +import {useEffect, useState} from 'react' +import {useLocation} from 'react-router-dom' +import { + DrawerComponent, + ScrollTopComponent, + StickyComponent, + ToggleComponent, +} from '../../../assets/ts/components' +import {KTIcon} from '../../../helpers' + +export function ScrollTop() { + const {pathname} = useLocation() + const [initialized, setInintialized] = useState(false) + + const pluginsReinitialization = () => { + setTimeout(() => { + StickyComponent.reInitialization() + setTimeout(() => { + ToggleComponent.reinitialization() + DrawerComponent.reinitialization() + }, 70) + }, 140) + } + + const scrollTop = () => { + ScrollTopComponent.goTop() + } + + const updateHeaderSticky = () => { + const stickyHeader = document.body.querySelectorAll(`[data-kt-sticky-name="header"]`) + if (stickyHeader && stickyHeader.length > 0) { + const sticky = StickyComponent.getInstance(stickyHeader[0] as HTMLElement) + if (sticky) { + sticky.update() + } + } + } + + useEffect(() => { + if (!initialized) { + setInintialized(true) + } else { + pluginsReinitialization() + } + + updateHeaderSticky() + setTimeout(() => { + scrollTop() + }, 0) + }, [initialized, pathname]) + + return ( +
+ +
+ ) +} diff --git a/src/_metronic/layout/components/scroll-top/index.ts b/src/_metronic/layout/components/scroll-top/index.ts new file mode 100644 index 0000000..44b0415 --- /dev/null +++ b/src/_metronic/layout/components/scroll-top/index.ts @@ -0,0 +1 @@ +export * from './ScrollTop' diff --git a/src/_metronic/layout/components/sidebar/Sidebar.tsx b/src/_metronic/layout/components/sidebar/Sidebar.tsx new file mode 100644 index 0000000..a4d84a2 --- /dev/null +++ b/src/_metronic/layout/components/sidebar/Sidebar.tsx @@ -0,0 +1,141 @@ +/* eslint-disable no-prototype-builtins */ +import clsx from 'clsx' +import {useEffect, useRef} from 'react' +import {ILayout, useLayout} from '../../core' +import {SidebarMenu} from './sidebar-menu/SidebarMenu' +import {SidebarFooter} from './SidebarFooter' +import {SidebarLogo} from './SidebarLogo' + +const Sidebar = () => { + const {config} = useLayout() + const sidebarRef = useRef(null) + + useEffect(() => { + updateDOM(config) + }, [config]) + + if (!config.app?.sidebar?.display) { + return null + } + + return ( + <> + {(config.layoutType === 'dark-sidebar' || config.layoutType === 'light-sidebar') && ( +
+ + + +
+ )} + + ) +} + +const updateDOM = (config: ILayout) => { + if (config.layoutType === 'dark-sidebar' || config.layoutType === 'light-sidebar') { + if (config.app?.sidebar?.default?.minimize?.desktop?.enabled) { + if (config.app?.sidebar?.default?.minimize?.desktop?.default) { + document.body.setAttribute('data-kt-app-sidebar-minimize', 'on') + } + + if (config.app?.sidebar?.default?.minimize?.desktop?.hoverable) { + document.body.setAttribute('data-kt-app-sidebar-hoverable', 'true') + } + } + + if (config.app?.sidebar?.default?.minimize?.mobile?.enabled) { + if (config.app?.sidebar?.default?.minimize?.mobile?.default) { + document.body.setAttribute('data-kt-app-sidebar-minimize-mobile', 'on') + } + + if (config.app?.sidebar?.default?.minimize?.mobile?.hoverable) { + document.body.setAttribute('data-kt-app-sidebar-hoverable-mobile', 'true') + } + } + + if (config.app?.sidebar?.default?.collapse?.desktop?.enabled) { + if (config.app?.sidebar?.default?.collapse?.desktop?.default) { + document.body.setAttribute('data-kt-app-sidebar-collapse', 'on') + } + } + + if (config.app?.sidebar?.default?.collapse?.mobile?.enabled) { + if (config.app?.sidebar?.default?.collapse?.mobile?.default) { + document.body.setAttribute('data-kt-app-sidebar-collapse-mobile', 'on') + } + } + + if (config.app?.sidebar?.default?.push) { + if (config.app?.sidebar?.default?.push?.header) { + document.body.setAttribute('data-kt-app-sidebar-push-header', 'true') + } + + if (config.app?.sidebar?.default?.push?.toolbar) { + document.body.setAttribute('data-kt-app-sidebar-push-toolbar', 'true') + } + + if (config.app?.sidebar?.default?.push?.footer) { + document.body.setAttribute('data-kt-app-sidebar-push-footer', 'true') + } + } + + if (config.app?.sidebar?.default?.stacked) { + document.body.setAttribute('app-sidebar-stacked', 'true') + } + + document.body.setAttribute('data-kt-app-sidebar-enabled', 'true') + document.body.setAttribute( + 'data-kt-app-sidebar-fixed', + config.app?.sidebar?.default?.fixed?.desktop?.toString() || '' + ) + + const appSidebarDefaultDrawerEnabled = config.app?.sidebar?.default?.drawer?.enabled + let appSidebarDefaultDrawerAttributes: {[attrName: string]: string} = {} + if (appSidebarDefaultDrawerEnabled) { + appSidebarDefaultDrawerAttributes = config.app?.sidebar?.default?.drawer?.attributes as { + [attrName: string]: string + } + } + + const appSidebarDefaultStickyEnabled = config.app?.sidebar?.default?.sticky?.enabled + let appSidebarDefaultStickyAttributes: {[attrName: string]: string} = {} + if (appSidebarDefaultStickyEnabled) { + appSidebarDefaultStickyAttributes = config.app?.sidebar?.default?.sticky?.attributes as { + [attrName: string]: string + } + } + + setTimeout(() => { + const sidebarElement = document.getElementById('kt_app_sidebar') + // sidebar + if (sidebarElement) { + const sidebarAttributes = sidebarElement + .getAttributeNames() + .filter((t) => t.indexOf('data-') > -1) + sidebarAttributes.forEach((attr) => sidebarElement.removeAttribute(attr)) + + if (appSidebarDefaultDrawerEnabled) { + for (const key in appSidebarDefaultDrawerAttributes) { + if (appSidebarDefaultDrawerAttributes.hasOwnProperty(key)) { + sidebarElement.setAttribute(key, appSidebarDefaultDrawerAttributes[key]) + } + } + } + + if (appSidebarDefaultStickyEnabled) { + for (const key in appSidebarDefaultStickyAttributes) { + if (appSidebarDefaultStickyAttributes.hasOwnProperty(key)) { + sidebarElement.setAttribute(key, appSidebarDefaultStickyAttributes[key]) + } + } + } + } + }, 0) + } +} + +export {Sidebar} diff --git a/src/_metronic/layout/components/sidebar/SidebarFooter.tsx b/src/_metronic/layout/components/sidebar/SidebarFooter.tsx new file mode 100644 index 0000000..5e7f8c7 --- /dev/null +++ b/src/_metronic/layout/components/sidebar/SidebarFooter.tsx @@ -0,0 +1,26 @@ + +import {KTIcon} from '../../../helpers' + +const SidebarFooter = () => { + return ( +
+ +
+ // + ) +} + +export {SidebarFooter} diff --git a/src/_metronic/layout/components/sidebar/SidebarLogo.tsx b/src/_metronic/layout/components/sidebar/SidebarLogo.tsx new file mode 100644 index 0000000..4aa9269 --- /dev/null +++ b/src/_metronic/layout/components/sidebar/SidebarLogo.tsx @@ -0,0 +1,105 @@ +import {Link} from 'react-router-dom' +import clsx from 'clsx' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' +import {useLayout} from '../../core' +import {MutableRefObject, useEffect, useRef} from 'react' +import {ToggleComponent} from '../../../assets/ts/components' + +type PropsType = { + sidebarRef: MutableRefObject +} + +const SidebarLogo = (props: PropsType) => { + const {config} = useLayout() + const toggleRef = useRef(null) + + const appSidebarDefaultMinimizeDesktopEnabled = + config?.app?.sidebar?.default?.minimize?.desktop?.enabled + const appSidebarDefaultCollapseDesktopEnabled = + config?.app?.sidebar?.default?.collapse?.desktop?.enabled + const toggleType = appSidebarDefaultCollapseDesktopEnabled + ? 'collapse' + : appSidebarDefaultMinimizeDesktopEnabled + ? 'minimize' + : '' + const toggleState = appSidebarDefaultMinimizeDesktopEnabled ? 'active' : '' + const appSidebarDefaultMinimizeDefault = config.app?.sidebar?.default?.minimize?.desktop?.default + + useEffect(() => { + setTimeout(() => { + const toggleObj = ToggleComponent.getInstance(toggleRef.current!) as ToggleComponent | null + + if (toggleObj === null) { + return + } + + // Add a class to prevent sidebar hover effect after toggle click + toggleObj.on('kt.toggle.change', function () { + // Set animation state + props.sidebarRef.current!.classList.add('animating') + + // Wait till animation finishes + setTimeout(function () { + // Remove animation state + props.sidebarRef.current!.classList.remove('animating') + }, 300) + }) + }, 600) + }, [toggleRef, props.sidebarRef]) + + return ( + + ) +} + +export {SidebarLogo} diff --git a/src/_metronic/layout/components/sidebar/index.ts b/src/_metronic/layout/components/sidebar/index.ts new file mode 100644 index 0000000..9130e63 --- /dev/null +++ b/src/_metronic/layout/components/sidebar/index.ts @@ -0,0 +1 @@ +export * from './Sidebar' diff --git a/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenu.tsx b/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenu.tsx new file mode 100644 index 0000000..187d09e --- /dev/null +++ b/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenu.tsx @@ -0,0 +1,30 @@ +import {SidebarMenuMain} from './SidebarMenuMain' + +const SidebarMenu = () => { + return ( +
+
+
+ +
+
+
+ ) +} + +export {SidebarMenu} diff --git a/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenuItem.tsx b/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenuItem.tsx new file mode 100644 index 0000000..3bdab68 --- /dev/null +++ b/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenuItem.tsx @@ -0,0 +1,53 @@ +import {FC} from 'react' +import clsx from 'clsx' +import {Link} from 'react-router-dom' +import {useLocation} from 'react-router' +import {checkIsActive, KTIcon, WithChildren} from '../../../../helpers' +import {useLayout} from '../../../core' + +type Props = { + to: string + title: string + icon?: string + fontIcon?: string + hasBullet?: boolean +} + +const SidebarMenuItem: FC = ({ + children, + to, + title, + icon, + fontIcon, + hasBullet = false, +}) => { + const {pathname} = useLocation() + const isActive = checkIsActive(pathname, to) + const {config} = useLayout() + const {app} = config + + return ( +
+ + {hasBullet && ( + + + + )} + {icon && app?.sidebar?.default?.menu?.iconType === 'svg' && ( + + {' '} + + + )} + {fontIcon && app?.sidebar?.default?.menu?.iconType === 'font' && ( + + )} + {title} + + {children} +
+ ) +} + +export {SidebarMenuItem} diff --git a/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenuItemWithSub.tsx b/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenuItemWithSub.tsx new file mode 100644 index 0000000..3805f35 --- /dev/null +++ b/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenuItemWithSub.tsx @@ -0,0 +1,57 @@ +import React from 'react' +import clsx from 'clsx' +import {useLocation} from 'react-router' +import {checkIsActive, KTIcon, WithChildren} from '../../../../helpers' +import {useLayout} from '../../../core' + +type Props = { + to: string + title: string + icon?: string + fontIcon?: string + hasBullet?: boolean +} + +const SidebarMenuItemWithSub: React.FC = ({ + children, + to, + title, + icon, + fontIcon, + hasBullet, +}) => { + const {pathname} = useLocation() + const isActive = checkIsActive(pathname, to) + const {config} = useLayout() + const {app} = config + + return ( +
+ + {hasBullet && ( + + + + )} + {icon && app?.sidebar?.default?.menu?.iconType === 'svg' && ( + + + + )} + {fontIcon && app?.sidebar?.default?.menu?.iconType === 'font' && ( + + )} + {title} + + +
+ {children} +
+
+ ) +} + +export {SidebarMenuItemWithSub} diff --git a/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenuMain.tsx b/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenuMain.tsx new file mode 100644 index 0000000..c3cedfb --- /dev/null +++ b/src/_metronic/layout/components/sidebar/sidebar-menu/SidebarMenuMain.tsx @@ -0,0 +1,131 @@ +import {useIntl} from 'react-intl' +import {KTIcon} from '../../../../helpers' +import {SidebarMenuItemWithSub} from './SidebarMenuItemWithSub' +import {SidebarMenuItem} from './SidebarMenuItem' + +const SidebarMenuMain = () => { + const intl = useIntl() + + return ( + <> + + + {/* */} + + <> + {/* SIDE APPS SECTION */} +
+
+ Apps +
+
+ {/* + + + + */} + + + +
+
+ Crafted +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {/*
*/} + {/* */} + {/* */} + {/* */} + {/* */} + {/* Changelog {import.meta.env.VITE_APP_VERSION}*/} + {/* */} + {/*
*/} + + ) +} + +export {SidebarMenuMain} diff --git a/src/_metronic/layout/components/toolbar/Toolbar.tsx b/src/_metronic/layout/components/toolbar/Toolbar.tsx new file mode 100644 index 0000000..4d48a18 --- /dev/null +++ b/src/_metronic/layout/components/toolbar/Toolbar.tsx @@ -0,0 +1,102 @@ +/* eslint-disable no-prototype-builtins */ +import {useEffect} from 'react' +import {ILayout, useLayout} from '../../core' +import { + ToolbarAccounting, + ToolbarClassic, + ToolbarExtended, + ToolbarReports, + ToolbarSaas, +} from './toolbars' + +const Toolbar = () => { + const {config} = useLayout() + useEffect(() => { + updateDOM(config) + document.body.setAttribute('data-kt-app-toolbar-enabled', 'true') + }, [config]) + + switch (config.app?.toolbar?.layout) { + case 'classic': + return + case 'accounting': + return + case 'extended': + return + case 'reports': + return + case 'saas': + return + default: + return + } +} + +const updateDOM = (config: ILayout) => { + let appToolbarSwapAttributes: {[attrName: string]: string} = {} + const appToolbarSwapEnabled = config.app?.toolbar?.swap?.enabled + if (appToolbarSwapEnabled) { + appToolbarSwapAttributes = config.app?.toolbar?.swap?.attributes as {[attrName: string]: string} + } + + let appToolbarStickyAttributes: {[attrName: string]: string} = {} + const appToolbarStickyEnabled = config.app?.toolbar?.sticky?.enabled + if (appToolbarStickyEnabled) { + appToolbarStickyAttributes = config.app?.toolbar?.sticky?.attributes as { + [attrName: string]: string + } + + let appToolbarMinimizeAttributes: {[attrName: string]: string} = {} + const appToolbarMinimizeEnabled = config.app?.toolbar?.minimize?.enabled + if (appToolbarMinimizeEnabled) { + appToolbarMinimizeAttributes = config.app?.toolbar?.minimize?.attributes as { + [attrName: string]: string + } + } + + if (config.app?.toolbar?.fixed?.desktop) { + document.body.setAttribute('data-kt-app-toolbar-fixed', 'true') + } + + if (config.app?.toolbar?.fixed?.mobile) { + document.body.setAttribute('data-kt-app-toolbar-fixed-mobile', 'true') + } + + setTimeout(() => { + const toolbarElement = document.getElementById('kt_app_toolbar') + // toolbar + if (toolbarElement) { + const toolbarAttributes = toolbarElement + .getAttributeNames() + .filter((t) => t.indexOf('data-') > -1) + toolbarAttributes.forEach((attr) => toolbarElement.removeAttribute(attr)) + + if (appToolbarSwapEnabled) { + for (const key in appToolbarSwapAttributes) { + if (appToolbarSwapAttributes.hasOwnProperty(key)) { + toolbarElement.setAttribute(key, appToolbarSwapAttributes[key]) + } + } + } + + if (appToolbarStickyEnabled) { + for (const key in appToolbarStickyAttributes) { + if (appToolbarStickyAttributes.hasOwnProperty(key)) { + toolbarElement.setAttribute(key, appToolbarStickyAttributes[key]) + } + } + } + + if (appToolbarMinimizeEnabled) { + for (const key in appToolbarMinimizeAttributes) { + if (appToolbarMinimizeAttributes.hasOwnProperty(key)) { + toolbarElement.setAttribute(key, appToolbarMinimizeAttributes[key]) + } + } + } + } + }, 0) + } +} + +export {Toolbar} diff --git a/src/_metronic/layout/components/toolbar/ToolbarWrapper.tsx b/src/_metronic/layout/components/toolbar/ToolbarWrapper.tsx new file mode 100644 index 0000000..e95d0fe --- /dev/null +++ b/src/_metronic/layout/components/toolbar/ToolbarWrapper.tsx @@ -0,0 +1,51 @@ +import clsx from 'clsx' +import {ToolbarType, useLayout} from '../../core' +import {Toolbar} from './Toolbar' +import {PageTitleWrapper} from './page-title' + +const ToolbarWrapper = () => { + const {config, classes} = useLayout() + if (!config.app?.toolbar?.display) { + return null + } + + const isPageTitleVisible = showPageTitle( + config.app?.toolbar?.layout, + config.app?.pageTitle?.display + ) + + return ( +
+
+ {isPageTitleVisible && } + +
+
+ ) +} + +const showPageTitle = (appToolbarLayout?: ToolbarType, appPageTitleDisplay?: boolean): boolean => { + const viewsWithPageTitles = ['classic', 'reports', 'saas'] + if (!appToolbarLayout || !appPageTitleDisplay) { + return false + } + + return appPageTitleDisplay && viewsWithPageTitles.some((t) => t === appToolbarLayout) +} + +export {ToolbarWrapper} diff --git a/src/_metronic/layout/components/toolbar/index.ts b/src/_metronic/layout/components/toolbar/index.ts new file mode 100644 index 0000000..f89cb26 --- /dev/null +++ b/src/_metronic/layout/components/toolbar/index.ts @@ -0,0 +1 @@ +export * from './ToolbarWrapper' diff --git a/src/_metronic/layout/components/toolbar/page-title/PageTitle.tsx b/src/_metronic/layout/components/toolbar/page-title/PageTitle.tsx new file mode 100644 index 0000000..12d71b5 --- /dev/null +++ b/src/_metronic/layout/components/toolbar/page-title/PageTitle.tsx @@ -0,0 +1,86 @@ +import clsx from 'clsx' +import {Link} from 'react-router-dom' +import {useLayout} from '../../../core' +import {usePageData} from '../../../core/PageData' + +const PageTitle = () => { + const {pageTitle, pageDescription, pageBreadcrumbs} = usePageData() + const {config, classes} = useLayout() + const appPageTitleDirection = config.app?.pageTitle?.direction + + return ( +
+ {/* begin::Title */} + {config.app?.pageTitle?.display && pageTitle && ( +

+ {pageTitle} + {pageDescription && config.app?.pageTitle && config.app?.pageTitle?.description && ( + + {config.app?.pageTitle?.direction === 'row' && ( + + )} + {pageDescription}{' '} + + )} +

+ )} + {/* end::Title */} + + {pageBreadcrumbs && + pageBreadcrumbs.length > 0 && + config.app?.pageTitle && + config.app?.pageTitle?.breadCrumb && ( + <> + {config.app?.pageTitle?.direction === 'row' && ( + + )} +
    + {Array.from(pageBreadcrumbs).map((item, index) => ( +
  • + {!item.isSeparator ? ( + + {item.title} + + ) : ( + + )} +
  • + ))} +
  • {pageTitle}
  • +
+ + )} +
+ ) +} + +export {PageTitle} diff --git a/src/_metronic/layout/components/toolbar/page-title/PageTitleWrapper.tsx b/src/_metronic/layout/components/toolbar/page-title/PageTitleWrapper.tsx new file mode 100644 index 0000000..87360e5 --- /dev/null +++ b/src/_metronic/layout/components/toolbar/page-title/PageTitleWrapper.tsx @@ -0,0 +1,13 @@ +import {useLayout} from '../../../core' +import {PageTitle} from './PageTitle' + +const PageTitleWrapper = () => { + const {config} = useLayout() + if (!config.app?.pageTitle?.display) { + return null + } + + return +} + +export {PageTitleWrapper} diff --git a/src/_metronic/layout/components/toolbar/page-title/index.ts b/src/_metronic/layout/components/toolbar/page-title/index.ts new file mode 100644 index 0000000..9c82991 --- /dev/null +++ b/src/_metronic/layout/components/toolbar/page-title/index.ts @@ -0,0 +1 @@ +export * from './PageTitleWrapper' diff --git a/src/_metronic/layout/components/toolbar/toolbars/ToolbarAccounting.tsx b/src/_metronic/layout/components/toolbar/toolbars/ToolbarAccounting.tsx new file mode 100644 index 0000000..843259f --- /dev/null +++ b/src/_metronic/layout/components/toolbar/toolbars/ToolbarAccounting.tsx @@ -0,0 +1,139 @@ + +import {FC, useEffect, useState} from 'react' +import {KTIcon} from '../../../../helpers' + +const ToolbarAccounting: FC = () => { + const [progress, setProgress] = useState('1') + const [filter, setFilter] = useState('1') + + useEffect(() => { + document.body.setAttribute('data-kt-app-toolbar-fixed', 'true') + }, []) + + return ( + <> +
+ {/* begin::Input group */} +
+ {/* begin::Label */} + Actions: + {/* end::Label */} + + {/* begin::Actions */} +
+ {/* begin::Button */} +
+ + + +
+ {/* end::Button */} + + {/* begin::Button */} +
+ + + +
+ {/* end::Button */} + + {/* begin::Button */} +
+ + + +
+ {/* end::Button */} +
+ {/* end::Actions */} +
+ {/* end::Input group */} + + {/* begin::Input group */} +
+ {/* begin::Desktop separartor */} +
+ {/* end::Desktop separartor */} + + {/* begin::Label */} + Progress: + {/* end::Label */} + +
+
+ 72% +
+
+
+ {/* end::Input group */} + {/* end::Toolbar start */} +
+ {/* begin::Toolbar end */} +
+ {/* begin::Input group */} +
+ {/* begin::Select */} + + {/* end::Select */} +
+ {/* end::Input group- */} + + {/* begin::Input group- */} +
+ {/* begin::Select */} + + {/* end::Content */} +
+ {/* end::Input group- */} +
+ + ) +} + +export {ToolbarAccounting} diff --git a/src/_metronic/layout/components/toolbar/toolbars/ToolbarClassic.tsx b/src/_metronic/layout/components/toolbar/toolbars/ToolbarClassic.tsx new file mode 100644 index 0000000..10906fc --- /dev/null +++ b/src/_metronic/layout/components/toolbar/toolbars/ToolbarClassic.tsx @@ -0,0 +1,66 @@ + +import clsx from 'clsx' +import {useState} from 'react' +import {KTIcon} from '../../../../helpers' +import {CreateAppModal, Dropdown1} from '../../../../partials' +import {useLayout} from '../../../core' + +const ToolbarClassic = () => { + const {config} = useLayout() + const [showCreateAppModal, setShowCreateAppModal] = useState(false) + const daterangepickerButtonClass = config.app?.toolbar?.fixed?.desktop + ? 'btn-light' + : 'bg-body btn-color-gray-700 btn-active-color-primary' + + return ( +
+ {config.app?.toolbar?.filterButton && ( + + )} + + {config.app?.toolbar?.daterangepickerButton && ( +
+
Loading date range...
+ +
+ )} + + {config.app?.toolbar?.secondaryButton && ( + + Filter + + )} + + {config.app?.toolbar?.primaryButton && ( + setShowCreateAppModal(true)} + className='btn btn-sm fw-bold btn-primary' + > + Create + + )} + setShowCreateAppModal(false)} /> +
+ ) +} + +export {ToolbarClassic} diff --git a/src/_metronic/layout/components/toolbar/toolbars/ToolbarExtended.tsx b/src/_metronic/layout/components/toolbar/toolbars/ToolbarExtended.tsx new file mode 100644 index 0000000..635c04c --- /dev/null +++ b/src/_metronic/layout/components/toolbar/toolbars/ToolbarExtended.tsx @@ -0,0 +1,154 @@ + +import {FC, useEffect, useState} from 'react' +import {KTIcon, toAbsoluteUrl} from '../../../../helpers' + +const ToolbarExtended: FC = () => { + const [progress, setProgress] = useState('1') + const [search, setSearch] = useState('') + + useEffect(() => { + document.body.setAttribute('data-kt-app-toolbar-fixed', 'true') + }, []) + + return ( + <> +
+ {/* begin::Label */} + Team: + {/* end::Label */} + + {/* begin::Users */} +
+ {/* begin::User */} +
+
A
+
+ {/* end::User */} + + {/* begin::User */} +
+ +
+ {/* end::User */} + + {/* begin::User */} +
+ +
+ {/* end::User */} + + {/* begin::User */} +
+
S
+
+ {/* end::User */} + + {/* begin::User */} +
+ +
+ {/* end::User */} + + {/* begin::User */} +
+
P
+
+ {/* end::User */} + + {/* begin::User */} +
+ +
+ {/* end::User */} +
+ {/* end::Users */} + + {/* begin::Button */} +
+ + + +
+
+ {/* end::Button */} + {/* end::Toolbar start */} + + {/* begin::Toolbar end */} +
+ {/* begin::Search */} +
+ + setSearch(e.target.value)} + placeholder='Search Team' + /> +
+ {/* end::Search */} + + {/* begin::Separartor */} +
+ {/* end::Separartor */} + + {/* begin::Label */} + + Sort By: + + {/* end::Label */} + + {/* begin::Select */} + + {/* end::Select */} + + {/* begin::Actions */} +
+ + + +
+ {/* end::Actions */} +
+ + ) +} + +export {ToolbarExtended} diff --git a/src/_metronic/layout/components/toolbar/toolbars/ToolbarReports.tsx b/src/_metronic/layout/components/toolbar/toolbars/ToolbarReports.tsx new file mode 100644 index 0000000..0900e77 --- /dev/null +++ b/src/_metronic/layout/components/toolbar/toolbars/ToolbarReports.tsx @@ -0,0 +1,115 @@ + +import {useEffect, useState} from 'react' +import {KTIcon} from '../../../../helpers' + +const ToolbarReports = () => { + const [progress, setProgress] = useState('1') + + useEffect(() => { + document.body.setAttribute('data-kt-app-toolbar-fixed', 'true') + }, []) + + return ( +
+ {/* begin::Wrapper */} +
+ {/* begin::Label */} + + Filter By: + + {/* end::Label */} + +
+ +
+
+ {/* end::Wrapper */} + + {/* begin::Separartor */} +
+ {/* end::Separartor */} + + {/* begin::Wrapper */} +
+ {/* begin::Label */} + + Sort By: + + {/* end::Label */} + + {/* begin::Select */} + + {/* end::Select */} + + {/* begin::Actions */} +
+ + + +
+ {/* end::Actions */} +
+ {/* end::Wrapper */} +
+ ) +} + +export {ToolbarReports} diff --git a/src/_metronic/layout/components/toolbar/toolbars/ToolbarSaas.tsx b/src/_metronic/layout/components/toolbar/toolbars/ToolbarSaas.tsx new file mode 100644 index 0000000..bb65d13 --- /dev/null +++ b/src/_metronic/layout/components/toolbar/toolbars/ToolbarSaas.tsx @@ -0,0 +1,126 @@ + +import {FC, useEffect, useState} from 'react' +import {KTIcon} from '../../../../helpers' + +const ToolbarSaas: FC = () => { + const [progress, setProgress] = useState('1') + useEffect(() => { + document.body.setAttribute('data-kt-app-toolbar-fixed', 'true') + }, []) + + return ( +
+ {/* begin::Action wrapper */} +
+ {/* begin::Label */} + + Sort By: + + {/* end::Label */} + + {/* begin::Select */} + + {/* end::Select */} +
+ {/* end::Action wrapper */} + + {/* begin::Action wrapper */} +
+ {/* begin::Separartor */} +
+ {/* end::Separartor */} + + {/* begin::Label */} + Impact Level: + {/* end::Label */} + + {/* begin::NoUiSlider */} +
+
+ + +
+ {/* end::NoUiSlider */} + + {/* begin::Separartor */} +
+ {/* end::Separartor */} +
+ {/* end::Action wrapper */} + + {/* begin::Action wrapper */} +
+ {/* begin::Label */} + Quick Tools: + {/* end::Label */} + + {/* begin::Actions */} +
+ {/* begin::Action */} + + + + {/* end::Action */} + + {/* begin::Action */} + + + + {/* end::Action */} + + {/* begin::Action */} + + + + {/* end::Action */} +
+ {/* end::Actions */} +
+ {/* end::Action wrapper */} +
+ ) +} + +export {ToolbarSaas} diff --git a/src/_metronic/layout/components/toolbar/toolbars/index.ts b/src/_metronic/layout/components/toolbar/toolbars/index.ts new file mode 100644 index 0000000..c3a7436 --- /dev/null +++ b/src/_metronic/layout/components/toolbar/toolbars/index.ts @@ -0,0 +1,5 @@ +export * from './ToolbarAccounting' +export * from './ToolbarClassic' +export * from './ToolbarExtended' +export * from './ToolbarReports' +export * from './ToolbarSaas' diff --git a/src/_metronic/layout/core/MetronicSplashScreen.tsx b/src/_metronic/layout/core/MetronicSplashScreen.tsx new file mode 100644 index 0000000..ad82d6f --- /dev/null +++ b/src/_metronic/layout/core/MetronicSplashScreen.tsx @@ -0,0 +1,77 @@ +import { + createContext, + Dispatch, + FC, + SetStateAction, + useContext, + useEffect, + useState, +} from 'react' +import {WithChildren} from '../../helpers' + +const MetronicSplashScreenContext = createContext> | undefined>( + undefined +) + +const MetronicSplashScreenProvider: FC = ({children}) => { + const [count, setCount] = useState(0) + const visible = count > 0 + + useEffect(() => { + // Show SplashScreen + if (visible) { + document.body.classList.remove('page-loading') + + return () => { + document.body.classList.add('page-loading') + } + } + + // Hide SplashScreen + let timeout: number + if (!visible) { + timeout = window.setTimeout(() => { + document.body.classList.add('page-loading') + }, 3000) + } + + return () => { + clearTimeout(timeout) + } + }, [visible]) + + return ( + + {children} + + ) +} + +const LayoutSplashScreen: FC<{visible?: boolean}> = ({visible = true}) => { + // Everything are ready - remove splashscreen + const setCount = useContext(MetronicSplashScreenContext) + + useEffect(() => { + if (!visible) { + return + } + + if (setCount) { + setCount((prev) => { + return prev + 1 + }) + } + + return () => { + if (setCount) { + setCount((prev) => { + return prev - 1 + }) + } + } + }, [setCount, visible]) + + return null +} + +export {MetronicSplashScreenProvider, LayoutSplashScreen} diff --git a/src/_metronic/layout/core/PageData.tsx b/src/_metronic/layout/core/PageData.tsx new file mode 100644 index 0000000..89dfcb7 --- /dev/null +++ b/src/_metronic/layout/core/PageData.tsx @@ -0,0 +1,99 @@ +/* eslint-disable react-hooks/exhaustive-deps */ +/* eslint-disable react-refresh/only-export-components */ +/* eslint-disable @typescript-eslint/no-unused-vars */ + +import {FC, createContext, useContext, useEffect, useState} from 'react' +import {WithChildren} from '../../helpers' + +export interface PageLink { + title: string + path: string + isActive: boolean + isSeparator?: boolean +} + +export interface PageDataContextModel { + pageTitle?: string + setPageTitle: (_title: string) => void + pageDescription?: string + setPageDescription: (_description: string) => void + pageBreadcrumbs?: Array + setPageBreadcrumbs: (_breadcrumbs: Array) => void +} + +const PageDataContext = createContext({ + setPageTitle: (_title: string) => {}, + setPageBreadcrumbs: (_breadcrumbs: Array) => {}, + setPageDescription: (_description: string) => {}, +}) + +const PageDataProvider: FC = ({children}) => { + const [pageTitle, setPageTitle] = useState('') + const [pageDescription, setPageDescription] = useState('') + const [pageBreadcrumbs, setPageBreadcrumbs] = useState>([]) + const value: PageDataContextModel = { + pageTitle, + setPageTitle, + pageDescription, + setPageDescription, + pageBreadcrumbs, + setPageBreadcrumbs, + } + return {children} +} + +function usePageData() { + return useContext(PageDataContext) +} + +type Props = { + description?: string + breadcrumbs?: Array +} + +const PageTitle: FC = ({children, description, breadcrumbs}) => { + const {setPageTitle, setPageDescription, setPageBreadcrumbs} = usePageData() + useEffect(() => { + if (children) { + setPageTitle(children.toString()) + } + return () => { + setPageTitle('') + } + }, [children]) + + useEffect(() => { + if (description) { + setPageDescription(description) + } + return () => { + setPageDescription('') + } + }, [description]) + + useEffect(() => { + if (breadcrumbs) { + setPageBreadcrumbs(breadcrumbs) + } + return () => { + setPageBreadcrumbs([]) + } + }, [breadcrumbs]) + + return <> +} + +const PageDescription: FC = ({children}) => { + const {setPageDescription} = usePageData() + useEffect(() => { + if (children) { + setPageDescription(children.toString()) + } + return () => { + setPageDescription('') + } + }, [children]) + return <> +} + +export {PageDescription, PageTitle, PageDataProvider, usePageData} diff --git a/src/_metronic/layout/core/_LayoutConfig.ts b/src/_metronic/layout/core/_LayoutConfig.ts new file mode 100644 index 0000000..df6bddf --- /dev/null +++ b/src/_metronic/layout/core/_LayoutConfig.ts @@ -0,0 +1,139 @@ +import {ILayout} from './_Models' + +export const DefaultConfig: ILayout = { + layoutType: 'dark-sidebar', + main: { + componentName: 'main', + type: 'default', + pageBgWhite: false, + iconType: 'duotone', + }, + app: { + general: { + componentName: 'general', + evolution: true, + layoutType: 'default', + mode: 'light', + rtl: false, + primaryColor: '#50CD89', + pageBgWhite: false, + pageWidth: 'default', + }, + header: { + componentName: 'header', + display: true, + default: { + container: 'fluid', + containerClass: 'd-flex align-items-stretch justify-content-between', + fixed: { + desktop: true, + mobile: false, + }, + content: 'menu', + menu: { + display: true, + iconType: 'svg', + }, + }, + }, + sidebar: { + componentName: 'sidebar', + display: true, + default: { + class: 'flex-column', + push: { + header: true, + toolbar: true, + footer: true, + }, + drawer: { + enabled: true, + attributes: { + 'data-kt-drawer': 'true', + 'data-kt-drawer-name': 'app-sidebar', + 'data-kt-drawer-activate': '{default: true, lg: false}', + 'data-kt-drawer-overlay': 'true', + 'data-kt-drawer-width': '225px', + 'data-kt-drawer-direction': 'start', + 'data-kt-drawer-toggle': '#kt_app_sidebar_mobile_toggle', + }, + }, + fixed: { + desktop: true, + }, + minimize: { + desktop: { + enabled: true, + default: false, + hoverable: true, + }, + }, + menu: { + iconType: 'svg', + }, + }, + }, + toolbar: { + componentName: 'toolbar', + display: true, + layout: 'classic', + class: 'py-3 py-lg-6', + container: 'fluid', + containerClass: 'd-flex flex-stack', + fixed: { + desktop: false, + mobile: false, + }, + // custom settings, + filterButton: true, + daterangepickerButton: false, + primaryButton: true, + primaryButtonLabel: 'Create', + primaryButtonModal: 'create-app', + }, + pageTitle: { + componentName: 'page-title', + display: true, + breadCrumb: true, + description: false, + direction: 'column', + }, + content: { + componentName: 'content', + container: 'fluid', + }, + footer: { + componentName: 'footer', + display: true, + container: 'fluid', + containerClass: 'd-flex flex-column flex-md-row flex-center flex-md-stack py-3', + fixed: { + desktop: false, + mobile: false, + }, + }, + pageLoader: { + componentName: 'page-loader', + type: 'none', + logoImage: 'default.svg', + logoClass: 'mh-75px', + }, + }, + illustrations: { + componentName: 'illustrations', + set: 'sketchy-1', + }, + scrolltop: { + componentName: 'scrolltop', + display: true, + }, + engage: { + componentName: 'engage', + demos: { + enabled: true, + }, + purchase: { + enabled: false, + }, + }, +} diff --git a/src/_metronic/layout/core/_LayoutProvider.tsx b/src/_metronic/layout/core/_LayoutProvider.tsx new file mode 100644 index 0000000..7c47499 --- /dev/null +++ b/src/_metronic/layout/core/_LayoutProvider.tsx @@ -0,0 +1,113 @@ +/* eslint-disable react-refresh/only-export-components */ +/* eslint-disable @typescript-eslint/no-unused-vars */ +import {FC, createContext, useContext, useState, useEffect} from 'react' +import {DefaultConfig} from './_LayoutConfig' +import { + setLayoutIntoLocalStorage, + getEmptyCssClasses, + getEmptyCSSVariables, + getEmptyHTMLAttributes, + LayoutSetup, +} from './_LayoutSetup' +import { + ILayout, + ILayoutCSSVariables, + ILayoutCSSClasses, + ILayoutHTMLAttributes, + LayoutType, + ToolbarType, +} from './_Models' +import {WithChildren} from '../../helpers' + +export interface LayoutContextModel { + config: ILayout + classes: ILayoutCSSClasses + attributes: ILayoutHTMLAttributes + cssVariables: ILayoutCSSVariables + setLayout: (config: LayoutSetup) => void + setLayoutType: (layoutType: LayoutType) => void + setToolbarType: (toolbarType: ToolbarType) => void +} + +const LayoutContext = createContext({ + config: DefaultConfig, + classes: getEmptyCssClasses(), + attributes: getEmptyHTMLAttributes(), + cssVariables: getEmptyCSSVariables(), + setLayout: (_config: LayoutSetup) => {}, + setLayoutType: (_layoutType: LayoutType) => {}, + setToolbarType: (_toolbarType: ToolbarType) => {}, +}) + +const enableSplashScreen = () => { + const splashScreen = document.getElementById('splash-screen') + if (splashScreen) { + splashScreen.style.setProperty('display', 'flex') + } +} + +const disableSplashScreen = () => { + const splashScreen = document.getElementById('splash-screen') + if (splashScreen) { + splashScreen.style.setProperty('display', 'none') + } +} + +const LayoutProvider: FC = ({children}) => { + const [config, setConfig] = useState(LayoutSetup.config) + const [classes, setClasses] = useState(LayoutSetup.classes) + const [attributes, setAttributes] = useState(LayoutSetup.attributes) + const [cssVariables, setCSSVariables] = useState(LayoutSetup.cssVariables) + + const setLayout = (_themeConfig: Partial) => { + enableSplashScreen() + const bodyClasses = Array.from(document.body.classList) + bodyClasses.forEach((cl) => document.body.classList.remove(cl)) + const updatedConfig = LayoutSetup.updatePartialConfig(_themeConfig) + setConfig(Object.assign({}, updatedConfig)) + setClasses(LayoutSetup.classes) + setAttributes(LayoutSetup.attributes) + setCSSVariables(LayoutSetup.cssVariables) + setTimeout(() => { + disableSplashScreen() + }, 500) + } + + const setToolbarType = (toolbarType: ToolbarType) => { + const updatedConfig = {...config} + if (updatedConfig.app?.toolbar) { + updatedConfig.app.toolbar.layout = toolbarType + } + + setLayoutIntoLocalStorage(updatedConfig) + window.location.reload() + } + + const setLayoutType = (layoutType: LayoutType) => { + const updatedLayout = {...config, layoutType} + setLayoutIntoLocalStorage(updatedLayout) + window.location.reload() + } + + const value: LayoutContextModel = { + config, + classes, + attributes, + cssVariables, + setLayout, + setLayoutType, + setToolbarType, + } + + useEffect(() => { + disableSplashScreen() + }, []) + + return {children} +} + +export {LayoutContext, LayoutProvider} + +export function useLayout() { + return useContext(LayoutContext) +} diff --git a/src/_metronic/layout/core/_LayoutSetup.ts b/src/_metronic/layout/core/_LayoutSetup.ts new file mode 100644 index 0000000..dd2b1cd --- /dev/null +++ b/src/_metronic/layout/core/_LayoutSetup.ts @@ -0,0 +1,245 @@ +import { + ILayout, + ILayoutCSSClasses, + ILayoutCSSVariables, + ILayoutHTMLAttributes, +} from "./_Models"; +import { DefaultConfig } from "./_LayoutConfig"; + +const LAYOUT_CONFIG_KEY = + import.meta.env.VITE_APP_BASE_LAYOUT_CONFIG_KEY || "LayoutConfig"; + +const getLayoutFromLocalStorage = (): ILayout => { + const ls = localStorage.getItem(LAYOUT_CONFIG_KEY); + if (ls) { + try { + return JSON.parse(ls) as ILayout; + } catch (er) { + console.error(er); + } + } + return DefaultConfig; +}; + +const setLayoutIntoLocalStorage = (config: ILayout) => { + try { + localStorage.setItem(LAYOUT_CONFIG_KEY, JSON.stringify(config)); + } catch (er) { + console.error(er); + } +}; + +const getEmptyCssClasses = (): ILayoutCSSClasses => { + return { + header: [], + headerContainer: [], + headerMobile: [], + headerMenu: [], + aside: [], + asideMenu: [], + asideToggle: [], + toolbar: [], + toolbarContainer: [], + content: [], + contentContainer: [], + footerContainer: [], + sidebar: [], + pageTitle: [], + pageContainer: [], + }; +}; + +const getEmptyHTMLAttributes = () => { + return { + asideMenu: new Map(), + headerMobile: new Map(), + headerMenu: new Map(), + headerContainer: new Map(), + pageTitle: new Map(), + }; +}; + +const getEmptyCSSVariables = () => { + return { + body: new Map(), + }; +}; + +class LayoutSetup { + public static isLoaded: boolean = false; + public static config: ILayout = getLayoutFromLocalStorage(); + public static classes: ILayoutCSSClasses = getEmptyCssClasses(); + public static attributes: ILayoutHTMLAttributes = getEmptyHTMLAttributes(); + public static cssVariables: ILayoutCSSVariables = getEmptyCSSVariables(); + + private static initCSSClasses(): void { + LayoutSetup.classes = getEmptyCssClasses(); + } + + private static initHTMLAttributes(): void { + LayoutSetup.attributes = Object.assign({}, getEmptyHTMLAttributes()); + } + + private static initCSSVariables(): void { + LayoutSetup.cssVariables = getEmptyCSSVariables(); + } + + private static initConfig(config: ILayout): ILayout { + let updatedConfig = LayoutSetup.initLayoutSettings(config); + updatedConfig = LayoutSetup.initToolbarSetting(updatedConfig); + return LayoutSetup.initWidthSettings(updatedConfig); + } + + private static initLayoutSettings(config: ILayout): ILayout { + const updatedConfig = { ...config }; + // clear body classes + document.body.className = ""; + // clear body attributes + const bodyAttributes = document.body + .getAttributeNames() + .filter((t) => t.indexOf("data-") > -1); + bodyAttributes.forEach((attr) => document.body.removeAttribute(attr)); + document.body.setAttribute("style", ""); + document.body.setAttribute("id", "kt_app_body"); + document.body.setAttribute("data-kt-app-layout", updatedConfig.layoutType); + document.body.classList.add("app-default"); + + const pageWidth = updatedConfig.app?.general?.pageWidth; + if ( + updatedConfig.layoutType === "light-header" || + updatedConfig.layoutType === "dark-header" + ) { + if (pageWidth === "default") { + const header = updatedConfig.app?.header; + if (header && header.default && header.default.container) { + header.default.container = "fixed"; + } + + const toolbar = updatedConfig.app?.toolbar; + if (toolbar) { + toolbar.container = "fixed"; + } + + const content = updatedConfig.app?.content; + if (content) { + content.container = "fixed"; + } + + const footer = updatedConfig.app?.footer; + if (footer) { + footer.container = "fixed"; + } + + const updatedApp = { + ...updatedConfig.app, + ...header, + ...toolbar, + ...content, + ...footer, + }; + return { ...updatedConfig, app: updatedApp }; + } + } + + LayoutSetup.initHeaderSettigs(updatedConfig); + + return updatedConfig; + } + + private static initToolbarSetting(config: ILayout): ILayout { + const updatedConfig = { ...config }; + const appHeaderDefaultContent = updatedConfig.app?.header?.default?.content; + if (appHeaderDefaultContent === "page-title") { + const toolbar = updatedConfig.app?.toolbar; + if (toolbar) { + toolbar.display = false; + const updatedApp = { ...updatedConfig.app, ...toolbar }; + return { ...updatedConfig, app: updatedApp }; + } + return updatedConfig; + } + + const pageTitle = updatedConfig.app?.pageTitle; + if (pageTitle) { + pageTitle.description = false; + pageTitle.breadCrumb = true; + const updatedApp = { ...updatedConfig.app, ...pageTitle }; + return { ...updatedConfig, app: updatedApp }; + } + + return updatedConfig; + } + + private static initHeaderSettigs(config: ILayout) { + const container = config.app?.header?.default?.container; + if (container === "fluid") { + this.classes.headerContainer.push("container-fluid"); + } else { + this.classes.headerContainer.push("container-xxl"); + } + } + + private static initWidthSettings(config: ILayout): ILayout { + const updatedConfig = { ...config }; + const pageWidth = updatedConfig.app?.general?.pageWidth; + if (!pageWidth || pageWidth === "default") { + return config; + } + + const header = updatedConfig.app?.header; + if (header && header.default) { + header.default.container = pageWidth; + } + const toolbar = updatedConfig.app?.toolbar; + if (toolbar) { + toolbar.container = pageWidth; + } + const content = updatedConfig.app?.content; + if (content) { + content.container = pageWidth; + } + const footer = updatedConfig.app?.footer; + if (footer) { + footer.container = pageWidth; + } + const updatedApp = { + ...updatedConfig.app, + ...header, + ...toolbar, + ...content, + ...footer, + }; + return { ...updatedConfig, app: updatedApp }; + } + + public static updatePartialConfig(fieldsToUpdate: Partial): ILayout { + const config = LayoutSetup.config; + const updatedConfig = { ...config, ...fieldsToUpdate }; + LayoutSetup.initCSSClasses(); + LayoutSetup.initCSSVariables(); + LayoutSetup.initHTMLAttributes(); + LayoutSetup.isLoaded = false; + LayoutSetup.config = LayoutSetup.initConfig( + Object.assign({}, updatedConfig) + ); + LayoutSetup.isLoaded = true; // remove loading there + return updatedConfig; + } + + public static setConfig(config: ILayout): void { + setLayoutIntoLocalStorage(config); + } + + public static bootstrap = (() => { + LayoutSetup.updatePartialConfig(LayoutSetup.config); + })(); +} + +export { + LayoutSetup, + getLayoutFromLocalStorage, + setLayoutIntoLocalStorage, + getEmptyCssClasses, + getEmptyCSSVariables, + getEmptyHTMLAttributes, +}; diff --git a/src/_metronic/layout/core/_Models.ts b/src/_metronic/layout/core/_Models.ts new file mode 100644 index 0000000..8b60397 --- /dev/null +++ b/src/_metronic/layout/core/_Models.ts @@ -0,0 +1,258 @@ +export type LayoutType = 'dark-sidebar' | 'light-sidebar' | 'dark-header' | 'light-header' + +export type CSSClassesType = { + [key: string]: string[] +} + +export type HTMLAttributesType = { + [key: string]: { + [attrName: string]: string | boolean + } +} + +export interface ILayoutComponent { + componentName?: string +} + +export interface IPageLoader extends ILayoutComponent { + componentName?: 'page-loader' + type?: 'none' | 'default' | 'spinner-message' | 'spinner-logo' + logoImage?: string + logoClass?: string +} + +export interface IScrollTop extends ILayoutComponent { + display?: boolean +} + +export interface IHeader extends ILayoutComponent { + componentName?: 'header' + display?: boolean + default?: { + container?: 'fluid' | 'fixed' + containerClass?: string + fixed?: { + desktop?: boolean + mobile?: boolean + } + content?: string + menu?: { + display?: boolean + iconType?: 'svg' | 'font' + } + stacked?: boolean + sticky?: { + enabled?: boolean + attributes?: {[attrName: string]: string} + } + minimize?: { + enabled?: boolean + attributes?: {[attrName: string]: string} + } + } +} + +export interface ISidebar extends ILayoutComponent { + componentName?: 'sidebar' + display?: boolean + default?: { + class?: string + push?: { + header?: boolean + toolbar?: boolean + footer?: boolean + } + drawer?: { + enabled?: boolean + attributes?: {[attrName: string]: string} + } + sticky?: { + enabled?: boolean + attributes?: {[attrName: string]: string} + } + fixed?: { + desktop?: boolean + } + minimize?: { + desktop?: { + enabled?: boolean + default?: boolean + hoverable?: boolean + } + mobile?: { + enabled?: boolean + default?: boolean + hoverable?: boolean + } + } + menu?: { + iconType?: 'svg' | 'font' + } + collapse?: { + desktop?: { + enabled?: boolean + default?: boolean + } + mobile?: { + enabled?: boolean + default?: boolean + } + } + stacked?: boolean + } + toggle?: boolean +} + +export type ToolbarType = 'classic' | 'accounting' | 'extended' | 'reports' | 'saas' + +export interface IToolbar extends ILayoutComponent { + componentName?: 'toolbar' + display?: boolean + layout?: ToolbarType + class?: string + container?: 'fixed' | 'fluid' + containerClass?: string + fixed?: { + desktop?: boolean + mobile?: boolean + } + swap?: { + enabled?: boolean + attributes?: {[attrName: string]: string} + } + sticky?: { + enabled?: boolean + attributes?: {[attrName: string]: string} + } + minimize?: { + enabled?: boolean + attributes?: {[attrName: string]: string} + } + + // Custom settings + filterButton?: boolean + daterangepickerButton?: boolean + primaryButton?: boolean + primaryButtonLabel?: string + primaryButtonModal?: string + secondaryButton?: boolean +} + +export interface IMain extends ILayoutComponent { + type?: 'blank' | 'default' | 'none' // Set layout type: default|blank|none + pageBgWhite?: boolean // Set true if page background color is white + iconType: 'duotone' | 'solid' | 'outline' +} + +export interface IIllustrations extends ILayoutComponent { + componentName?: 'illustrations' + set?: 'dozzy-1' | 'sigma-1' | 'sketchy-1' | 'unitedpalms-1' +} + +export interface IGeneral extends ILayoutComponent { + componentName?: 'general' + evolution?: boolean + layoutType?: 'default' | 'blank' + mode?: 'light' | 'dark' | 'system' + rtl?: boolean + primaryColor?: string // Used in email templates + pageBgWhite?: boolean // Set true if page background color is white + pageWidth?: 'default' | 'fluid' | 'fixed' +} + +export interface IMegaMenu extends ILayoutComponent { + display: boolean +} + +export interface ISidebarPanel extends ILayoutComponent { + componentName?: 'sidebar-panel' + display: boolean +} + +export interface IContent extends ILayoutComponent { + componentName?: 'content' + container?: 'fixed' | 'fluid' + class?: string +} + +export interface IFooter extends ILayoutComponent { + componentName?: 'footer' + display?: boolean + container?: 'fluid' | 'fixed' + containerClass?: string + placement?: string + fixed?: { + desktop?: boolean + mobile?: boolean + } +} + +export interface IPageTitle extends ILayoutComponent { + componentName?: 'page-title' + display?: boolean + breadCrumb?: boolean + description?: boolean + direction?: 'row' | 'column' + class?: string +} + +export interface IEngage extends ILayoutComponent { + componentName?: 'engage' + demos?: { + enabled?: boolean + } + purchase?: { + enabled?: boolean + } +} + +export interface IApp { + general?: IGeneral + header?: IHeader + sidebar?: ISidebar + sidebarPanel?: ISidebarPanel + toolbar?: IToolbar + pageTitle?: IPageTitle + content?: IContent + footer?: IFooter + pageLoader?: IPageLoader +} + +export interface ILayout { + layoutType: LayoutType + main?: IMain + app?: IApp + illustrations?: IIllustrations + scrolltop?: IScrollTop + engage?: IEngage +} + +export interface ILayoutCSSClasses { + header: Array + headerContainer: Array + headerMobile: Array + headerMenu: Array + aside: Array + asideMenu: Array + asideToggle: Array + sidebar: Array + toolbar: Array + toolbarContainer: Array + content: Array + contentContainer: Array + footerContainer: Array + pageTitle: Array + pageContainer: Array +} + +export interface ILayoutHTMLAttributes { + asideMenu: Map + headerMobile: Map + headerMenu: Map + headerContainer: Map + pageTitle: Map +} + +export interface ILayoutCSSVariables { + body: Map +} diff --git a/src/_metronic/layout/core/index.ts b/src/_metronic/layout/core/index.ts new file mode 100644 index 0000000..90d0d9b --- /dev/null +++ b/src/_metronic/layout/core/index.ts @@ -0,0 +1,6 @@ +export * from './_LayoutConfig' +export * from './_LayoutProvider' +export * from './_Models' +export * from './_LayoutSetup' +export * from './PageData' +export * from './MetronicSplashScreen' diff --git a/src/_metronic/partials/chat/ChatInner.tsx b/src/_metronic/partials/chat/ChatInner.tsx new file mode 100644 index 0000000..d946627 --- /dev/null +++ b/src/_metronic/partials/chat/ChatInner.tsx @@ -0,0 +1,195 @@ + +import {FC, useState} from 'react' +import clsx from 'clsx' +import { + toAbsoluteUrl, + defaultMessages, + defaultUserInfos, + MessageModel, + UserInfoModel, + messageFromClient, +} from '../../helpers' + +type Props = { + isDrawer?: boolean +} + +const bufferMessages = defaultMessages + +const ChatInner: FC = ({isDrawer = false}) => { + const [chatUpdateFlag, toggleChatUpdateFlat] = useState(false) + const [message, setMessage] = useState('') + const [messages, setMessages] = useState(bufferMessages) + const [userInfos] = useState(defaultUserInfos) + + const sendMessage = () => { + const newMessage: MessageModel = { + user: 2, + type: 'out', + text: message, + time: 'Just now', + } + + bufferMessages.push(newMessage) + setMessages(bufferMessages) + toggleChatUpdateFlat(!chatUpdateFlag) + setMessage('') + setTimeout(() => { + bufferMessages.push(messageFromClient) + setMessages(() => bufferMessages) + toggleChatUpdateFlat((flag) => !flag) + }, 1000) + } + + const onEnterPress = (e: React.KeyboardEvent) => { + if (e.keyCode === 13 && e.shiftKey === false) { + e.preventDefault() + sendMessage() + } + } + + return ( +
+
+ {messages.map((message, index) => { + const userInfo = userInfos[message.user] + const state = message.type === 'in' ? 'info' : 'primary' + const templateAttr = {} + if (message.template) { + Object.defineProperty(templateAttr, 'data-kt-element', { + value: `template-${message.type}`, + }) + } + const contentClass = `${isDrawer ? '' : 'd-flex'} justify-content-${ + message.type === 'in' ? 'start' : 'end' + } mb-10` + return ( +
+
+
+ {message.type === 'in' ? ( + <> +
+ Pic +
+
+ + {userInfo.name} + + {message.time} +
+ + ) : ( + <> +
+ {message.time} + + You + +
+
+ Pic +
+ + )} +
+ +
+
+
+ ) + })} +
+ +
+ + +
+
+ + +
+ +
+
+
+ ) +} + +export {ChatInner} diff --git a/src/_metronic/partials/content/activity/Item1.tsx b/src/_metronic/partials/content/activity/Item1.tsx new file mode 100644 index 0000000..12b7cf0 --- /dev/null +++ b/src/_metronic/partials/content/activity/Item1.tsx @@ -0,0 +1,103 @@ + +import {FC} from 'react' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' + +const Item1: FC = () => { + return ( +
+
+ +
+
+ +
+
+ +
+
+
+ There are 2 new tasks for you in “AirPlus Mobile APp” project: +
+ +
+
Added at 4:23 PM by
+ +
+ img +
+
+
+ +
+
+ + Meeting with customer + + +
+ Application Design +
+ +
+
+ img +
+ +
+ img +
+ +
+
A
+
+
+ +
+ In Progress +
+ + + View + +
+ +
+ + Project Delivery Preparation + + +
+ CRM System Development +
+ +
+
+ img +
+ +
+
B
+
+
+ +
+ Completed +
+ + + View + +
+
+
+
+ ) +} + +export {Item1} diff --git a/src/_metronic/partials/content/activity/Item2.tsx b/src/_metronic/partials/content/activity/Item2.tsx new file mode 100644 index 0000000..49e67f6 --- /dev/null +++ b/src/_metronic/partials/content/activity/Item2.tsx @@ -0,0 +1,40 @@ +import {FC} from 'react' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' + +const Item2: FC = () => { + return ( +
+
+ +
+
+ +
+
+ +
+
+
+ Invitation for crafting engaging designs that speak human workshop +
+ +
+
Sent at 4:23 PM by
+ +
+ img +
+
+
+
+
+ ) +} + +export {Item2} diff --git a/src/_metronic/partials/content/activity/Item3.tsx b/src/_metronic/partials/content/activity/Item3.tsx new file mode 100644 index 0000000..4cd91cb --- /dev/null +++ b/src/_metronic/partials/content/activity/Item3.tsx @@ -0,0 +1,81 @@ + +import {FC} from 'react' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' + +const Item3: FC = () => { + return ( +
+
+ +
+
+ +
+
+ +
+
+ + 3 New Incoming Project Files: + + +
+
Sent at 10:30 PM by
+ +
+ img +
+
+
+ +
+
+
+ + + +
+ + + +
+ + + +
+
+
+
+
+ ) +} + +export {Item3} diff --git a/src/_metronic/partials/content/activity/Item4.tsx b/src/_metronic/partials/content/activity/Item4.tsx new file mode 100644 index 0000000..2d3892a --- /dev/null +++ b/src/_metronic/partials/content/activity/Item4.tsx @@ -0,0 +1,49 @@ + +import {FC} from 'react' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' + +const Item4: FC = () => { + return ( +
+
+ +
+
+ +
+
+ +
+
+
+ Task{' '} + + #45890 + + merged with{' '} + + #45890 + {' '} + in “Ads Pro Admin Dashboard project: +
+ +
+
Initiated at 4:23 PM by
+ +
+ img +
+
+
+
+
+ ) +} + +export {Item4} diff --git a/src/_metronic/partials/content/activity/Item5.tsx b/src/_metronic/partials/content/activity/Item5.tsx new file mode 100644 index 0000000..69399be --- /dev/null +++ b/src/_metronic/partials/content/activity/Item5.tsx @@ -0,0 +1,91 @@ + +import {FC} from 'react' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' + +const Item5: FC = () => { + return ( +
+
+ +
+
+ +
+
+ +
+
+
3 new application design concepts added:
+ +
+
Created at 4:23 PM by
+ +
+ img +
+
+
+ +
+
+
+
+ img +
+ + +
+ +
+
+ img +
+ + +
+ +
+
+ img +
+ + +
+
+
+
+
+ ) +} + +export {Item5} diff --git a/src/_metronic/partials/content/activity/Item6.tsx b/src/_metronic/partials/content/activity/Item6.tsx new file mode 100644 index 0000000..98d9c1c --- /dev/null +++ b/src/_metronic/partials/content/activity/Item6.tsx @@ -0,0 +1,41 @@ + +import {FC} from 'react' +import {KTIcon} from '../../../helpers' + +const Item6: FC = () => { + return ( +
+
+ +
+
+ +
+
+ +
+
+
+ New case{' '} + + #67890 + + is assigned to you in Multi-platform Database Design project +
+ +
+
+
Added at 4:23 PM by
+ + + Alice Tan + +
+
+
+
+
+ ) +} + +export {Item6} diff --git a/src/_metronic/partials/content/activity/Item7.tsx b/src/_metronic/partials/content/activity/Item7.tsx new file mode 100644 index 0000000..13e7161 --- /dev/null +++ b/src/_metronic/partials/content/activity/Item7.tsx @@ -0,0 +1,59 @@ + +import {FC} from 'react' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' + +const Item7: FC = () => { + return ( +
+
+ +
+
+ +
+
+ +
+
+
You have received a new order:
+ +
+
Placed at 5:05 AM by
+ +
+ img +
+
+
+ +
+
+ +
+
+

Database Backup Process Completed!

+
+ Login into Metronic Admin Dashboard to make sure the data integrity is OK +
+
+ + Proceed + +
+
+
+
+
+ ) +} + +export {Item7} diff --git a/src/_metronic/partials/content/activity/Item8.tsx b/src/_metronic/partials/content/activity/Item8.tsx new file mode 100644 index 0000000..e2397be --- /dev/null +++ b/src/_metronic/partials/content/activity/Item8.tsx @@ -0,0 +1,39 @@ + +import {FC} from 'react' +import {KTIcon} from '../../../helpers' + +const Item8: FC = () => { + return ( +
+
+ +
+
+ +
+
+ +
+
+
+ New order{' '} + + #67890 + + is placed for Workshow Planning & Budget Estimation +
+ +
+
Placed at 4:23 PM by
+ + + Jimmy Bold + +
+
+
+
+ ) +} + +export {Item8} diff --git a/src/_metronic/partials/content/cards/Card1.tsx b/src/_metronic/partials/content/cards/Card1.tsx new file mode 100644 index 0000000..deec832 --- /dev/null +++ b/src/_metronic/partials/content/cards/Card1.tsx @@ -0,0 +1,68 @@ + +import {FC} from 'react' +import {toAbsoluteUrl} from '../../../helpers' + +type Props = { + color?: string + avatar?: string + online?: boolean + name: string + job: string + avgEarnings: string + totalEarnings: string +} + +const Card1: FC = ({ + color = '', + avatar = '', + online = false, + name, + job, + avgEarnings, + totalEarnings, +}) => { + return ( +
+
+
+
+ {color ? ( + + {name.charAt(0)} + + ) : ( + Pic + )} + {online && ( +
+ )} +
+
+ + + {name} + + +
{job}
+ +
+
+
{avgEarnings}
+
Avg. Earnings
+
+ +
+
{totalEarnings}
+
Total Sales
+
+
+ + +
+
+ ) +} + +export {Card1} diff --git a/src/_metronic/partials/content/cards/Card2.tsx b/src/_metronic/partials/content/cards/Card2.tsx new file mode 100644 index 0000000..4d23be0 --- /dev/null +++ b/src/_metronic/partials/content/cards/Card2.tsx @@ -0,0 +1,87 @@ + +import {FC} from 'react' +import {Link} from 'react-router-dom' +import {IconUserModel} from '../../../../app/modules/profile/ProfileModels' +import {UsersList} from '../../../../app/modules/profile/components/UsersList' +import {toAbsoluteUrl} from '../../../helpers' + +type Props = { + icon: string + badgeColor: string + status: string + statusColor: string + title: string + description: string + date: string + budget: string + progress: number + users?: Array +} + +const Card2: FC = ({ + icon, + badgeColor, + status, + statusColor, + title, + description, + date, + budget, + progress, + users = undefined, +}) => { + return ( + +
+
+
+ card2 +
+
+ +
+ + {status} + +
+
+ +
+
{title}
+ +

{description}

+ +
+
+
{date}
+
Due Date
+
+ +
+
{budget}
+
Budget
+
+
+ +
+
+
+ + +
+ + ) +} + +export {Card2} diff --git a/src/_metronic/partials/content/cards/Card3.tsx b/src/_metronic/partials/content/cards/Card3.tsx new file mode 100644 index 0000000..05f3958 --- /dev/null +++ b/src/_metronic/partials/content/cards/Card3.tsx @@ -0,0 +1,69 @@ + +import {FC} from 'react' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' + +type Props = { + color?: string + avatar?: string + online?: boolean + name: string + job: string + avgEarnings: string + totalEarnings: string +} + +const Card3: FC = ({ + color = '', + avatar = '', + online = false, + name, + job, + avgEarnings, + totalEarnings, +}) => { + return ( +
+
+
+
+ {color ? ( + + {name.charAt(0)} + + ) : ( + Pic + )} + {online && ( +
+ )} +
+
+ + + {name} + + +
{job}
+ +
+
+
{avgEarnings}
+
Avg. Earnings
+
+ +
+
{totalEarnings}
+
Total Sales
+
+
+ + + + Connect + +
+
+ ) +} + +export {Card3} diff --git a/src/_metronic/partials/content/cards/Card4.tsx b/src/_metronic/partials/content/cards/Card4.tsx new file mode 100644 index 0000000..77d0ae5 --- /dev/null +++ b/src/_metronic/partials/content/cards/Card4.tsx @@ -0,0 +1,27 @@ + +import {FC} from 'react' +import {toAbsoluteUrl} from '../../../helpers' + +type Props = { + icon: string + title: string + description: string +} + +const Card4: FC = ({icon, title, description}) => { + return ( +
+
+ +
+ +
+
{title}
+
+
{description}
+
+
+ ) +} + +export {Card4} diff --git a/src/_metronic/partials/content/cards/Card5.tsx b/src/_metronic/partials/content/cards/Card5.tsx new file mode 100644 index 0000000..1b0ecfc --- /dev/null +++ b/src/_metronic/partials/content/cards/Card5.tsx @@ -0,0 +1,84 @@ + +import {FC} from 'react' +import {KTIcon, toAbsoluteUrl} from '../../../helpers' +import {Dropdown1} from '../dropdown/Dropdown1' + +type Props = { + image: string + title: string + description: string + status: 'up' | 'down' + statusValue: number + statusDesc: string + progress: number + progressType: string +} + +const Card5: FC = ({ + image, + title, + description, + status, + statusValue, + statusDesc, + progress, + progressType, +}) => { + return ( +
+
+
+
+ Metronic +
+ + + {title} + +
+ +
+ + + +
+
+ +
+
{description}
+ +
+ {status === 'up' && ( + + )} + + {status === 'down' && ( + + )} + +
+ {status === 'up' ? '+' : '-'} + {statusValue}% +
+ +
{statusDesc}
+
+ +
+ {progress}% + {progressType} +
+
+
+ ) +} + +export {Card5} diff --git a/src/_metronic/partials/content/code-highlight/CodeBlock.tsx b/src/_metronic/partials/content/code-highlight/CodeBlock.tsx new file mode 100644 index 0000000..e5bc95c --- /dev/null +++ b/src/_metronic/partials/content/code-highlight/CodeBlock.tsx @@ -0,0 +1,72 @@ + +import {useState, useEffect, useRef, FC} from 'react' +import {CopyToClipboard} from 'react-copy-to-clipboard' +import {Highlight} from 'prism-react-renderer' +import {OverlayTrigger, Tooltip} from 'react-bootstrap' + +type Props = { + code: string + language: string +} + +const CodeBlock: FC = ({code, language}) => { + const codeRef = useRef(null) + const [copied, setCopied] = useState(false) + useEffect(() => { + if (!copied) { + return + } + + setTimeout(() => { + setCopied(false) + }, 1500) + }, [copied]) + + useEffect(() => { + if (!codeRef.current) { + return + } + + const prismCodeElement = codeRef.current.querySelector('.prism-code ') as HTMLDivElement + if (prismCodeElement) { + prismCodeElement.style.background = 'none' + prismCodeElement.style.fontSize = '13px' + } + }, []) + + return ( +
+
+ Copy Code} + > + setCopied(true)}> + {copied ? 'copied' : 'copy'} + + + +
+ + {({className, style, tokens, getLineProps, getTokenProps}) => { + return ( +
+                  {tokens.map((line, i) => (
+                    
+ {line.map((token, key) => ( + + ))} +
+ ))} +
+ ) + }} +
+
+
+
+ ) +} + +export {CodeBlock} diff --git a/src/_metronic/partials/content/dropdown/Dropdown1.tsx b/src/_metronic/partials/content/dropdown/Dropdown1.tsx new file mode 100644 index 0000000..4b59082 --- /dev/null +++ b/src/_metronic/partials/content/dropdown/Dropdown1.tsx @@ -0,0 +1,79 @@ + +export function Dropdown1() { + return ( +
+
+
Filter Options
+
+ +
+ +
+
+ + +
+ +
+
+ +
+ + +
+ + + +
+
+ +
+ + +
+ + +
+
+ +
+ + + +
+
+
+ ) +} diff --git a/src/_metronic/partials/content/dropdown/Dropdown2.tsx b/src/_metronic/partials/content/dropdown/Dropdown2.tsx new file mode 100644 index 0000000..285c104 --- /dev/null +++ b/src/_metronic/partials/content/dropdown/Dropdown2.tsx @@ -0,0 +1,79 @@ + +import {FC} from 'react' + +const Dropdown2: FC = () => { + return ( +
+
+
Quick Actions
+
+ +
+ + + + + + + + + +
+ + +
+ ) +} + +export {Dropdown2} diff --git a/src/_metronic/partials/content/dropdown/Dropdown3.tsx b/src/_metronic/partials/content/dropdown/Dropdown3.tsx new file mode 100644 index 0000000..80377c3 --- /dev/null +++ b/src/_metronic/partials/content/dropdown/Dropdown3.tsx @@ -0,0 +1,96 @@ + +import {FC} from 'react' + +const Dropdown3: FC = () => { + return ( +
+
+
Payments
+
+ + + + + + + +
+ + Subscription + + + +
+ + + + + + +
+ +
+
+ +
+
+
+
+ + +
+ ) +} + +export {Dropdown3} diff --git a/src/_metronic/partials/content/editor/EditorToolbar.ts b/src/_metronic/partials/content/editor/EditorToolbar.ts new file mode 100644 index 0000000..f656c1a --- /dev/null +++ b/src/_metronic/partials/content/editor/EditorToolbar.ts @@ -0,0 +1,52 @@ +export const editorToolbarSettings = { + options: ['inline', 'fontSize', 'fontFamily', 'link', 'image'], + inline: { + inDropdown: false, + className: undefined, + component: undefined, + dropdownClassName: undefined, + options: ['bold', 'italic', 'underline', 'strikethrough'], + }, + fontSize: { + options: [8, 9, 10, 11, 12, 14, 16, 18, 24, 30, 36, 48, 60, 72, 96], + className: undefined, + component: undefined, + dropdownClassName: undefined, + }, + fontFamily: { + options: ['Arial', 'Georgia', 'Impact', 'Tahoma', 'Times New Roman', 'Verdana'], + className: undefined, + component: undefined, + dropdownClassName: undefined, + }, + + link: { + inDropdown: false, + className: undefined, + component: undefined, + popupClassName: undefined, + dropdownClassName: undefined, + showOpenOptionOnHover: true, + defaultTargetOption: '_self', + options: ['link', 'unlink'], + link: {className: undefined}, + unlink: {className: undefined}, + linkCallback: undefined, + }, + image: { + className: undefined, + component: undefined, + popupClassName: undefined, + urlEnabled: true, + uploadEnabled: true, + alignmentEnabled: true, + uploadCallback: undefined, + previewImage: false, + inputAccept: 'image/gif,image/jpeg,image/jpg,image/png,image/svg', + alt: {present: false, mandatory: false}, + defaultSize: { + height: 'auto', + width: 'auto', + }, + }, +} diff --git a/src/_metronic/partials/content/portal/Portal.tsx b/src/_metronic/partials/content/portal/Portal.tsx new file mode 100644 index 0000000..aff6de3 --- /dev/null +++ b/src/_metronic/partials/content/portal/Portal.tsx @@ -0,0 +1,27 @@ + +import {FC, useState, useEffect} from 'react' +import {createPortal} from 'react-dom' +import {WithChildren} from '../../../helpers' + +/** + * React portal based on https://stackoverflow.com/a/59154364 + * @param children Child elements + * @param className CSS classname + * @param el HTML element to create. default: div + */ +const Portal: FC<{className?: string} & WithChildren> = ({children, className = ''}) => { + const [container] = useState(document.createElement('div')) + + if (className) container.classList.add(className) + + useEffect(() => { + document.body.appendChild(container) + return () => { + document.body.removeChild(container) + } + }, [container]) + + return createPortal(children, container) +} + +export {Portal} diff --git a/src/_metronic/partials/index.ts b/src/_metronic/partials/index.ts new file mode 100644 index 0000000..b372347 --- /dev/null +++ b/src/_metronic/partials/index.ts @@ -0,0 +1,32 @@ +export * from './layout/quick-links/QuicLinks' +export * from './layout/search/Search' +export * from './layout/search/SearchInner' +export * from './layout/SearchModal' +export * from './layout/InboxCompose' +export * from './layout/header-menus/HeaderUserMenu' +export * from './layout/header-menus/HeaderNotificationsMenu' +export * from './layout/drawer-messenger/DrawerMessenger' +export * from './layout/activity-drawer/ActivityDrawer' +export * from './layout/create-app/CreateApp' +export * from './layout/theme-mode/ThemeModeProvider' +export * from './layout/theme-mode/ThemeModeSwitcher' + +// dropdpwns +export * from './content/dropdown/Dropdown1' +export * from './content/dropdown/Dropdown2' + +// editors +export * from './content/editor/EditorToolbar' + +export * from './content/code-highlight/CodeBlock' + +export * from './content/portal/Portal' + +// modals +export * from './modals/create-app-stepper/CreateAppModal' +export * from './modals/select-location/SelectLocationModal' +export * from './modals/invite-users/InviteUsers' +export * from './modals/upgrade-plan/UpgradePlan' + +// chat +export * from './chat/ChatInner' diff --git a/src/_metronic/partials/layout/InboxCompose.tsx b/src/_metronic/partials/layout/InboxCompose.tsx new file mode 100644 index 0000000..b678515 --- /dev/null +++ b/src/_metronic/partials/layout/InboxCompose.tsx @@ -0,0 +1,218 @@ + +import {useRef, useState, FC } from 'react' +import {Modal} from 'react-bootstrap' +import {KTIcon} from '../../helpers' + +export type Props = { + show: boolean + handleClose: () => void +} + +const InboxCompose: FC = ({show, handleClose}) => { + const composeToRef = useRef(null) + const formRef = useRef(null) + const [composeCC, setComposeCC] = useState('') + const [composeBCC, setComposeBCC] = useState('') + const [subject, setSubject] = useState('') + + return ( + + ) +} + +export {InboxCompose} diff --git a/src/_metronic/partials/layout/RightToolbar.tsx b/src/_metronic/partials/layout/RightToolbar.tsx new file mode 100644 index 0000000..4ab35aa --- /dev/null +++ b/src/_metronic/partials/layout/RightToolbar.tsx @@ -0,0 +1,19 @@ +import {FC} from 'react' +import {ToggleHelpDrawer} from './help-drawer/ToggleHelpDrawer' +import {HelpDrawer} from './help-drawer/HelpDrawer' +import {PurchaseButton} from './purchase/PurchaseButton' + +const RightToolbar: FC = () => { + return ( + <> +
+ + {/**/} +
+ + + + ) +} + +export {RightToolbar} diff --git a/src/_metronic/partials/layout/SearchModal.tsx b/src/_metronic/partials/layout/SearchModal.tsx new file mode 100644 index 0000000..1371d91 --- /dev/null +++ b/src/_metronic/partials/layout/SearchModal.tsx @@ -0,0 +1,152 @@ + +import { FC } from 'react' +import {Modal} from 'react-bootstrap' +import {KTIcon, toAbsoluteUrl} from '../../helpers' +// import {ListsWidget4, ListsWidget5} from '../widgets' + +type Props = { + show: boolean + handleClose: () => void +} + +const SearchModal: FC = ({show, handleClose}) => { + return ( +