diff --git a/express-distribution-sys/.editorconfig b/express-distribution-sys/.editorconfig new file mode 100644 index 0000000..ecea360 --- /dev/null +++ b/express-distribution-sys/.editorconfig @@ -0,0 +1,6 @@ +[*.{js,jsx,mjs,cjs,ts,tsx,mts,cts,vue}] +charset = utf-8 +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true diff --git a/express-distribution-sys/.gitignore b/express-distribution-sys/.gitignore new file mode 100644 index 0000000..8ee54e8 --- /dev/null +++ b/express-distribution-sys/.gitignore @@ -0,0 +1,30 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +/cypress/videos/ +/cypress/screenshots/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +*.tsbuildinfo diff --git a/express-distribution-sys/.prettierrc.json b/express-distribution-sys/.prettierrc.json new file mode 100644 index 0000000..effc164 --- /dev/null +++ b/express-distribution-sys/.prettierrc.json @@ -0,0 +1,7 @@ + +{ + "$schema": "https://json.schemastore.org/prettierrc", + "semi": false, + "singleQuote": true, + "arrowParens": "avoid" +} diff --git a/express-distribution-sys/.vscode/extensions.json b/express-distribution-sys/.vscode/extensions.json new file mode 100644 index 0000000..c92168f --- /dev/null +++ b/express-distribution-sys/.vscode/extensions.json @@ -0,0 +1,8 @@ +{ + "recommendations": [ + "Vue.volar", + "dbaeumer.vscode-eslint", + "EditorConfig.EditorConfig", + "esbenp.prettier-vscode" + ] +} diff --git a/express-distribution-sys/README.md b/express-distribution-sys/README.md new file mode 100644 index 0000000..274b345 --- /dev/null +++ b/express-distribution-sys/README.md @@ -0,0 +1,35 @@ +# express-distribution-sys + +This template should help get you started developing with Vue 3 in Vite. + +## Recommended IDE Setup + +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). + +## Customize configuration + +See [Vite Configuration Reference](https://vite.dev/config/). + +## Project Setup + +```sh +npm install +``` + +### Compile and Hot-Reload for Development + +```sh +npm run dev +``` + +### Compile and Minify for Production + +```sh +npm run build +``` + +### Lint with [ESLint](https://eslint.org/) + +```sh +npm run lint +``` diff --git a/express-distribution-sys/eslint.config.js b/express-distribution-sys/eslint.config.js new file mode 100644 index 0000000..76c70ec --- /dev/null +++ b/express-distribution-sys/eslint.config.js @@ -0,0 +1,19 @@ +import js from '@eslint/js' +import pluginVue from 'eslint-plugin-vue' +import skipFormatting from '@vue/eslint-config-prettier/skip-formatting' + +export default [ + { + name: 'app/files-to-lint', + files: ['**/*.{js,mjs,jsx,vue}'], + }, + + { + name: 'app/files-to-ignore', + ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**'], + }, + + js.configs.recommended, + ...pluginVue.configs['flat/essential'], + skipFormatting, +] diff --git a/express-distribution-sys/index.html b/express-distribution-sys/index.html new file mode 100644 index 0000000..99f583a --- /dev/null +++ b/express-distribution-sys/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git a/express-distribution-sys/jsconfig.json b/express-distribution-sys/jsconfig.json new file mode 100644 index 0000000..5a1f2d2 --- /dev/null +++ b/express-distribution-sys/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "paths": { + "@/*": ["./src/*"] + } + }, + "exclude": ["node_modules", "dist"] +} diff --git a/express-distribution-sys/package-lock.json b/express-distribution-sys/package-lock.json new file mode 100644 index 0000000..b6095d0 --- /dev/null +++ b/express-distribution-sys/package-lock.json @@ -0,0 +1,3881 @@ +{ + "name": "express-distribution-sys", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "express-distribution-sys", + "version": "0.0.0", + "dependencies": { + "@element-plus/icons-vue": "^2.3.1", + "axios": "^1.7.7", + "echarts": "^5.5.1", + "element-plus": "^2.8.6", + "pinia": "^2.2.4", + "pinia-persistedstate-plugin": "^0.1.0", + "qweather-icons": "^1.6.0", + "vue": "^3.5.12", + "vue-router": "^4.4.5" + }, + "devDependencies": { + "@eslint/js": "^9.13.0", + "@vitejs/plugin-vue": "^5.1.4", + "@vitejs/plugin-vue-jsx": "^4.0.1", + "@vue/eslint-config-prettier": "^10.0.0", + "eslint": "^9.13.0", + "eslint-plugin-vue": "^9.29.0", + "prettier": "^3.3.3", + "sass-embedded": "^1.80.4", + "vite": "^5.4.10" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.25.9.tgz", + "integrity": "sha512-z88xeGxnzehn2sqZ8UdGQEvYErF1odv2CftxInpSYJt6uHuPe9YjahKZITGs3l5LeI9d2ROG+obuDAoSlqbNfQ==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.25.9", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.9.tgz", + "integrity": "sha512-yD+hEuJ/+wAJ4Ox2/rpNv5HIuPG82x3ZlQvYVn8iYCprdxzE7P1udpGF1jyjQVBU4dgznN+k2h103vxZ7NdPyw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.9.tgz", + "integrity": "sha512-WYvQviPw+Qyib0v92AwNIrdLISTp7RfDkM7bPqBvpbnhY4wq8HvHBZREVdYDXk98C8BkOIVnHAY3yvj7AVISxQ==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.25.9", + "@babel/generator": "^7.25.9", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helpers": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.9.tgz", + "integrity": "sha512-omlUGkr5EaoIJrhLf9CJ0TvjBRpd9+AXRG//0GEQ9THSo8wPiTlbpy1/Ow8ZTrbXpjd9FHXfbFQx32I04ht0FA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.9", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", + "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", + "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.9.tgz", + "integrity": "sha512-TvLZY/F3+GvdRYFZFyxMvnsKi+4oJdgZzU3BoGN9Uc2d9C6zfNwJcKKhjqLAhK8i46mv93jsO74fDh3ih6rpHA==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-simple-access": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", + "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz", + "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", + "dev": true, + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.9.tgz", + "integrity": "sha512-c6WHXuiaRsJTyHYLJV75t9IqsmTbItYfdj99PnzYGQZkYKvan5/2jKJ7gu31J3/BJ/A18grImSPModuyG/Eo0Q==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.9.tgz", + "integrity": "sha512-oKWp3+usOJSzDZOucZUAMayhPz/xVjzymyDzUN8dk0Wd3RWMlGLXi07UCQ/CgQVb8LvXx3XBajJH4XGgkt7H7g==", + "dev": true, + "dependencies": { + "@babel/template": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.9.tgz", + "integrity": "sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.9.tgz", + "integrity": "sha512-aI3jjAAO1fh7vY/pBGsn1i9LDbRP43+asrRlkPuTXW5yHXtd1NgTEMudbBoDDxrf1daEEfPJqR+JBMakzrR4Dg==", + "dependencies": { + "@babel/types": "^7.25.9" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", + "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.9.tgz", + "integrity": "sha512-7PbZQZP50tzv2KGGnhh82GSyMB01yKY9scIjf1a+GfZCtInOWqUH5+1EBU4t9fyR5Oykkkc9vFTs4OHrhHXljQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-syntax-typescript": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", + "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.25.9", + "@babel/generator": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/template": "^7.25.9", + "@babel/types": "^7.25.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.9.tgz", + "integrity": "sha512-OwS2CM5KocvQ/k7dFJa8i5bNGJP0hXWfVCfDkqRFP1IreH1JDC7wG6eCYCi0+McbfT8OR/kNqsI0UU0xP9H6PQ==", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bufbuild/protobuf": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.2.0.tgz", + "integrity": "sha512-+imAQkHf7U/Rwvu0wk1XWgsP3WnpCWmK7B48f0XqSNzgk64+grljTKC7pnO/xBiEMUziF7vKRfbBnOQhg126qQ==", + "dev": true + }, + "node_modules/@ctrl/tinycolor": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz", + "integrity": "sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@element-plus/icons-vue": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@element-plus/icons-vue/-/icons-vue-2.3.1.tgz", + "integrity": "sha512-XxVUZv48RZAd87ucGS48jPf6pKu0yV5UCg9f4FFwtrYxXOwWuVJo6wOvSLKEoMQKjv8GsX/mhP6UsC1lRwbUWg==", + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "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/eslint-utils/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-community/regexpp": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.1.tgz", + "integrity": "sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.18.0.tgz", + "integrity": "sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==", + "dev": true, + "dependencies": { + "@eslint/object-schema": "^2.1.4", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.7.0.tgz", + "integrity": "sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", + "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.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": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.13.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.13.0.tgz", + "integrity": "sha512-IFLyoY4d72Z5y/6o/BazFBezupzI/taV8sGumxTAVw3lXG9A6md1Dc34T9s1FoD/an9pJH8RHbAxsaEbBed9lA==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", + "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.1.tgz", + "integrity": "sha512-HFZ4Mp26nbWk9d/BpvP0YNL6W4UoZF0VFcTw/aPPA8RpOxeFQgK+ClABGgAUXs9Y/RGX/l1vOmrqz1MQt9MNuw==", + "dev": true, + "dependencies": { + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.8.tgz", + "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==", + "dependencies": { + "@floating-ui/utils": "^0.2.8" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.11", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.11.tgz", + "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==", + "dependencies": { + "@floating-ui/core": "^1.6.0", + "@floating-ui/utils": "^0.2.8" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz", + "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==" + }, + "node_modules/@humanfs/core": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.0.tgz", + "integrity": "sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==", + "dev": true, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.5", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.5.tgz", + "integrity": "sha512-KSPA4umqSG4LHYRodq31VDwKAvaTF4xmVlzM8Aeh4PlU1JQ3IG0wiA8C25d3RQ9nJyM3mBHyI53K06VVL/oFFg==", + "dev": true, + "dependencies": { + "@humanfs/core": "^0.19.0", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "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/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "node_modules/@popperjs/core": { + "name": "@sxzz/popperjs-es", + "version": "2.11.7", + "resolved": "https://registry.npmjs.org/@sxzz/popperjs-es/-/popperjs-es-2.11.7.tgz", + "integrity": "sha512-Ccy0NlLkzr0Ex2FKvh2X+OyERHXJ88XJ1MXtsI9y9fGexlaXaVTPzBCRBwIxFkORuOb+uBqeu+RqnpgYTEZRUQ==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz", + "integrity": "sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.0.tgz", + "integrity": "sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.0.tgz", + "integrity": "sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.0.tgz", + "integrity": "sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.0.tgz", + "integrity": "sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.0.tgz", + "integrity": "sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.0.tgz", + "integrity": "sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.0.tgz", + "integrity": "sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.0.tgz", + "integrity": "sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.0.tgz", + "integrity": "sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.0.tgz", + "integrity": "sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.0.tgz", + "integrity": "sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.0.tgz", + "integrity": "sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.0.tgz", + "integrity": "sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.0.tgz", + "integrity": "sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.0.tgz", + "integrity": "sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true + }, + "node_modules/@types/js-cookie": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/js-cookie/-/js-cookie-3.0.6.tgz", + "integrity": "sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==" + }, + "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/lodash": { + "version": "4.17.12", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.12.tgz", + "integrity": "sha512-sviUmCE8AYdaF/KIHLDJBQgeYzPBI0vf/17NaYehBJfYD1j6/L95Slh07NlyK2iNyBNaEkb3En2jRt+a8y3xZQ==" + }, + "node_modules/@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "dependencies": { + "@types/lodash": "*" + } + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.16", + "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz", + "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==" + }, + "node_modules/@vitejs/plugin-vue": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.1.4.tgz", + "integrity": "sha512-N2XSI2n3sQqp5w7Y/AN/L2XDjBIRGqXko+eDp42sydYSBeJuSm5a1sLf8zakmo8u7tA8NmBgoDLA1HeOESjp9A==", + "dev": true, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@vitejs/plugin-vue-jsx": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-4.0.1.tgz", + "integrity": "sha512-7mg9HFGnFHMEwCdB6AY83cVK4A6sCqnrjFYF4WIlebYAQVVJ/sC/CiTruVdrRlhrFoeZ8rlMxY9wYpPTIRhhAg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.24.7", + "@vue/babel-plugin-jsx": "^1.2.2" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0", + "vue": "^3.0.0" + } + }, + "node_modules/@vue/babel-helper-vue-transform-on": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.5.tgz", + "integrity": "sha512-lOz4t39ZdmU4DJAa2hwPYmKc8EsuGa2U0L9KaZaOJUt0UwQNjNA3AZTq6uEivhOKhhG1Wvy96SvYBoFmCg3uuw==", + "dev": true + }, + "node_modules/@vue/babel-plugin-jsx": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.5.tgz", + "integrity": "sha512-zTrNmOd4939H9KsRIGmmzn3q2zvv1mjxkYZHgqHZgDrXz5B1Q3WyGEjO2f+JrmKghvl1JIRcvo63LgM1kH5zFg==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.6", + "@babel/types": "^7.25.6", + "@vue/babel-helper-vue-transform-on": "1.2.5", + "@vue/babel-plugin-resolve-type": "1.2.5", + "html-tags": "^3.3.1", + "svg-tags": "^1.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + } + } + }, + "node_modules/@vue/babel-plugin-resolve-type": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.2.5.tgz", + "integrity": "sha512-U/ibkQrf5sx0XXRnUZD1mo5F7PkpKyTbfXM3a3rC4YnUz6crHEz9Jg09jzzL6QYlXNto/9CePdOg/c87O4Nlfg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/parser": "^7.25.6", + "@vue/compiler-sfc": "^3.5.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.12", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.12.tgz", + "integrity": "sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/shared": "3.5.12", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.12", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.12.tgz", + "integrity": "sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==", + "dependencies": { + "@vue/compiler-core": "3.5.12", + "@vue/shared": "3.5.12" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.12", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.5.12.tgz", + "integrity": "sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==", + "dependencies": { + "@babel/parser": "^7.25.3", + "@vue/compiler-core": "3.5.12", + "@vue/compiler-dom": "3.5.12", + "@vue/compiler-ssr": "3.5.12", + "@vue/shared": "3.5.12", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.11", + "postcss": "^8.4.47", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.12", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.5.12.tgz", + "integrity": "sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==", + "dependencies": { + "@vue/compiler-dom": "3.5.12", + "@vue/shared": "3.5.12" + } + }, + "node_modules/@vue/devtools-api": { + "version": "6.6.4", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.4.tgz", + "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==" + }, + "node_modules/@vue/eslint-config-prettier": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-10.1.0.tgz", + "integrity": "sha512-J6wV91y2pXc0Phha01k0WOHBTPsoSTf4xlmMjoKaeSxBpAdsgTppGF5RZRdOHM7OA74zAXD+VLANrtYXpiPKkQ==", + "dev": true, + "dependencies": { + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-prettier": "^5.2.1" + }, + "peerDependencies": { + "eslint": ">= 8.21.0", + "prettier": ">= 3.0.0" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.12", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.5.12.tgz", + "integrity": "sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==", + "dependencies": { + "@vue/shared": "3.5.12" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.12", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.5.12.tgz", + "integrity": "sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==", + "dependencies": { + "@vue/reactivity": "3.5.12", + "@vue/shared": "3.5.12" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.12", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.5.12.tgz", + "integrity": "sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==", + "dependencies": { + "@vue/reactivity": "3.5.12", + "@vue/runtime-core": "3.5.12", + "@vue/shared": "3.5.12", + "csstype": "^3.1.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.12", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.5.12.tgz", + "integrity": "sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==", + "dependencies": { + "@vue/compiler-ssr": "3.5.12", + "@vue/shared": "3.5.12" + }, + "peerDependencies": { + "vue": "3.5.12" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.12", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.12.tgz", + "integrity": "sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==" + }, + "node_modules/@vueuse/core": { + "version": "9.13.0", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-9.13.0.tgz", + "integrity": "sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==", + "dependencies": { + "@types/web-bluetooth": "^0.0.16", + "@vueuse/metadata": "9.13.0", + "@vueuse/shared": "9.13.0", + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/core/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/@vueuse/metadata": { + "version": "9.13.0", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-9.13.0.tgz", + "integrity": "sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "9.13.0", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-9.13.0.tgz", + "integrity": "sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==", + "dependencies": { + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/acorn": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", + "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "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/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/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/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/async-validator": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-4.2.5.tgz", + "integrity": "sha512-7HhHjtERjqlNbZtqNqy2rckN/SpOOlmDliet+lP7k+eKZEjPk3DgyeU9lIXLdeLz0uBbbVp+9Qdow9wJWgwwfg==" + }, + "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/axios": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", + "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "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==", + "dev": true + }, + "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/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/browserslist": { + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "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.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/buffer-builder": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/buffer-builder/-/buffer-builder-0.2.0.tgz", + "integrity": "sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==", + "dev": true + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001669", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001669.tgz", + "integrity": "sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==", + "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": "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/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-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/colorjs.io": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/colorjs.io/-/colorjs.io-0.5.2.tgz", + "integrity": "sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==", + "dev": true + }, + "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/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "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/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/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/dayjs": { + "version": "1.11.13", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.13.tgz", + "integrity": "sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==" + }, + "node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.3" + }, + "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/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/echarts": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/echarts/-/echarts-5.5.1.tgz", + "integrity": "sha512-Fce8upazaAXUVUVsjgV6mBnGuqgO+JNDlcgF79Dksy4+wgGpQB2lmYoO4TSweFg/mZITdpGHomw/cNBJZj1icA==", + "dependencies": { + "tslib": "2.3.0", + "zrender": "5.6.0" + } + }, + "node_modules/echarts/node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.45", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.45.tgz", + "integrity": "sha512-vOzZS6uZwhhbkZbcRyiy99Wg+pYFV5hk+5YaECvx0+Z31NR3Tt5zS6dze2OepT6PCTzVzT0dIJItti+uAW5zmw==", + "dev": true + }, + "node_modules/element-plus": { + "version": "2.8.6", + "resolved": "https://registry.npmjs.org/element-plus/-/element-plus-2.8.6.tgz", + "integrity": "sha512-fk5jB8V3efM02/4roZ5SWOLArgaYXbxEydZLlXSr+KPAwjNyHBlk2+HO5em8YKo5+RLBoHnn6BaThj6IE4nXoQ==", + "dependencies": { + "@ctrl/tinycolor": "^3.4.1", + "@element-plus/icons-vue": "^2.3.1", + "@floating-ui/dom": "^1.0.1", + "@popperjs/core": "npm:@sxzz/popperjs-es@^2.11.7", + "@types/lodash": "^4.14.182", + "@types/lodash-es": "^4.17.6", + "@vueuse/core": "^9.1.0", + "async-validator": "^4.2.5", + "dayjs": "^1.11.3", + "escape-html": "^1.0.3", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21", + "lodash-unified": "^1.0.2", + "memoize-one": "^6.0.0", + "normalize-wheel-es": "^1.2.0" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "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/eslint": { + "version": "9.13.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.13.0.tgz", + "integrity": "sha512-EYZK6SX6zjFHST/HRytOdA/zE72Cq/bfw45LSyuwrdvcclb/gqV8RRQxywOBEWO2+WDpva6UZa4CcDeJKzUCFA==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.11.0", + "@eslint/config-array": "^0.18.0", + "@eslint/core": "^0.7.0", + "@eslint/eslintrc": "^3.1.0", + "@eslint/js": "9.13.0", + "@eslint/plugin-kit": "^0.2.0", + "@humanfs/node": "^0.16.5", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.3.1", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.1.0", + "eslint-visitor-keys": "^4.1.0", + "espree": "^10.2.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-prettier": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.1.tgz", + "integrity": "sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==", + "dev": true, + "dependencies": { + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.9.1" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-plugin-prettier" + }, + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": "*", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-vue": { + "version": "9.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.29.1.tgz", + "integrity": "sha512-MH/MbVae4HV/tM8gKAVWMPJbYgW04CK7SuzYRrlNERpxbO0P3+Zdsa2oAcFBW6xNu7W6lIkGOsFAMCRTYmrlWQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "globals": "^13.24.0", + "natural-compare": "^1.4.0", + "nth-check": "^2.1.1", + "postcss-selector-parser": "^6.0.15", + "semver": "^7.6.3", + "vue-eslint-parser": "^9.4.3", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-vue/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/eslint-plugin-vue/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-scope": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.1.0.tgz", + "integrity": "sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.1.0.tgz", + "integrity": "sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/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/eslint/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/eslint/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/eslint/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/eslint/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==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/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/eslint/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/espree": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.2.0.tgz", + "integrity": "sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==", + "dev": true, + "dependencies": { + "acorn": "^8.12.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "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/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "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/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-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true + }, + "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/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "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/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.1.tgz", + "integrity": "sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "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/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "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/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "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/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz", + "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==", + "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==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "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/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/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "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==", + "dev": true + }, + "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/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "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-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/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "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/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/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-unified": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/lodash-unified/-/lodash-unified-1.0.3.tgz", + "integrity": "sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ==", + "peerDependencies": { + "@types/lodash-es": "*", + "lodash": "*", + "lodash-es": "*" + } + }, + "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/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.30.12", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.12.tgz", + "integrity": "sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0" + } + }, + "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/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/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/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "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/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true + }, + "node_modules/normalize-wheel-es": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/normalize-wheel-es/-/normalize-wheel-es-1.2.0.tgz", + "integrity": "sha512-Wj7+EJQ8mSuXr2iWfnujrimU35R2W4FAErEyTmJoJ7ucwTn2hOUSsRehMb5RSYkxXGTM7Y9QpvPmp++w5ftoJw==" + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "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/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==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "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-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/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" + }, + "node_modules/pinia": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/pinia/-/pinia-2.2.4.tgz", + "integrity": "sha512-K7ZhpMY9iJ9ShTC0cR2+PnxdQRuwVIsXDO/WIEV/RnMC/vmSoKDTKW/exNQYPI+4ij10UjXqdNiEHwn47McANQ==", + "dependencies": { + "@vue/devtools-api": "^6.6.3", + "vue-demi": "^0.14.10" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "@vue/composition-api": "^1.4.0", + "typescript": ">=4.4.4", + "vue": "^2.6.14 || ^3.3.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/pinia-persistedstate-plugin": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/pinia-persistedstate-plugin/-/pinia-persistedstate-plugin-0.1.0.tgz", + "integrity": "sha512-ToKR/EJzhhXElQ5YL8PVVY4CqLJjywxszAJjOCgprjmIVkTrPBsEOY4b/ATOzHQc1TtuaJs/3MJuoCpA3pv8Ew==", + "dependencies": { + "@types/js-cookie": "^3.0.1", + "pinia": "^2.0.12" + } + }, + "node_modules/pinia/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "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.1.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "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/prettier": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "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/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/qweather-icons": { + "version": "1.6.0", + "resolved": "https://r.cnpmjs.org/qweather-icons/-/qweather-icons-1.6.0.tgz", + "integrity": "sha512-uINrSOteHHarEeHRpP37aBnuuwYnWc1eyZ2gbnujoEqOVabIPDiEseF7a9eIOnBn7GZBlo5nYj29eOEfLH/bEA==", + "engines": { + "node": ">=10" + } + }, + "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==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/rollup": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.24.0.tgz", + "integrity": "sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==", + "dev": true, + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.24.0", + "@rollup/rollup-android-arm64": "4.24.0", + "@rollup/rollup-darwin-arm64": "4.24.0", + "@rollup/rollup-darwin-x64": "4.24.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.24.0", + "@rollup/rollup-linux-arm-musleabihf": "4.24.0", + "@rollup/rollup-linux-arm64-gnu": "4.24.0", + "@rollup/rollup-linux-arm64-musl": "4.24.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.24.0", + "@rollup/rollup-linux-riscv64-gnu": "4.24.0", + "@rollup/rollup-linux-s390x-gnu": "4.24.0", + "@rollup/rollup-linux-x64-gnu": "4.24.0", + "@rollup/rollup-linux-x64-musl": "4.24.0", + "@rollup/rollup-win32-arm64-msvc": "4.24.0", + "@rollup/rollup-win32-ia32-msvc": "4.24.0", + "@rollup/rollup-win32-x64-msvc": "4.24.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "dev": true, + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/sass-embedded": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded/-/sass-embedded-1.80.4.tgz", + "integrity": "sha512-lPzKX5g79ZxohlPxh0pXTPFseWj9RfgYI0cPm14CH5ok77Ujuheq/DCp7RStvNDWS8RCQ8Ii6gJC/5WTkGyrhA==", + "dev": true, + "dependencies": { + "@bufbuild/protobuf": "^2.0.0", + "buffer-builder": "^0.2.0", + "colorjs.io": "^0.5.0", + "immutable": "^4.0.0", + "rxjs": "^7.4.0", + "supports-color": "^8.1.1", + "varint": "^6.0.0" + }, + "bin": { + "sass": "dist/bin/sass.js" + }, + "engines": { + "node": ">=16.0.0" + }, + "optionalDependencies": { + "sass-embedded-android-arm": "1.80.4", + "sass-embedded-android-arm64": "1.80.4", + "sass-embedded-android-ia32": "1.80.4", + "sass-embedded-android-riscv64": "1.80.4", + "sass-embedded-android-x64": "1.80.4", + "sass-embedded-darwin-arm64": "1.80.4", + "sass-embedded-darwin-x64": "1.80.4", + "sass-embedded-linux-arm": "1.80.4", + "sass-embedded-linux-arm64": "1.80.4", + "sass-embedded-linux-ia32": "1.80.4", + "sass-embedded-linux-musl-arm": "1.80.4", + "sass-embedded-linux-musl-arm64": "1.80.4", + "sass-embedded-linux-musl-ia32": "1.80.4", + "sass-embedded-linux-musl-riscv64": "1.80.4", + "sass-embedded-linux-musl-x64": "1.80.4", + "sass-embedded-linux-riscv64": "1.80.4", + "sass-embedded-linux-x64": "1.80.4", + "sass-embedded-win32-arm64": "1.80.4", + "sass-embedded-win32-ia32": "1.80.4", + "sass-embedded-win32-x64": "1.80.4" + } + }, + "node_modules/sass-embedded-android-arm": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-android-arm/-/sass-embedded-android-arm-1.80.4.tgz", + "integrity": "sha512-iAZ7AiKTLGxQGTkZ37c2/7YC4lkbP1o3eP/K74YaF8O+qhKTLyLOwV7OcmzIywac7dqLcNuGqhFCmFqTYpewZw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-android-arm64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-android-arm64/-/sass-embedded-android-arm64-1.80.4.tgz", + "integrity": "sha512-htAuBmRvvN2d4smrqxZ6WBw4+OOURaoHzq5oZKqS/E35zYl5FHmrJzp4S5e26a0tEBcjca014tfb/uu9cQgnqA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-android-ia32": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-android-ia32/-/sass-embedded-android-ia32-1.80.4.tgz", + "integrity": "sha512-IIee89Jco8/ad2s/oRJTFqpLhBMzg0UXteJyZ5waZPZmkeSR/t9l67Ef1lLQVh9t9/fJ1ViTTiGYm/g/zu6UGw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-android-riscv64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-android-riscv64/-/sass-embedded-android-riscv64-1.80.4.tgz", + "integrity": "sha512-iJM2kqmWrOeE1aUyTp3uMAG86hyAqbpbOEV7tv828fUsMRDM4uHsHtmyp2n8P2Y0Y2FnLzJpvIm3SwDXGDzT1Q==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-android-x64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-android-x64/-/sass-embedded-android-x64-1.80.4.tgz", + "integrity": "sha512-vd8VrLvUoHeTcsDoIJesXLbQYZH26a8lAzXy6u4+vEuAwikF4WiXBDFrpqiv38QeD3faLeoPtksRsFbAdQqJAA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-darwin-arm64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-darwin-arm64/-/sass-embedded-darwin-arm64-1.80.4.tgz", + "integrity": "sha512-SJz7EM1i4NXa7CT/njIWMNYJ6CvbHljDIzUAZEe3V3u1KWl/eNO3pbWAnnDN62tBppwgWx/UdDUbAKowsT6Z8w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-darwin-x64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-darwin-x64/-/sass-embedded-darwin-x64-1.80.4.tgz", + "integrity": "sha512-J/QlBVO66DLtgALgCmM8rZ5zG0dBCIYW1eXIAnnDwC7vGkbAXMtO60M0O/2WNrAfmFfJz1hvKDLjlsxB2XGBLg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-arm": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-arm/-/sass-embedded-linux-arm-1.80.4.tgz", + "integrity": "sha512-vuaWhc4ebnaY1AgIWNvFv1snxmkWfvlCU7vnQf4qkn3R2Yyd2J+sjkO8o0NgMX8n5XRUSkAaYUJFCH+Nim6KgQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-arm64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-arm64/-/sass-embedded-linux-arm64-1.80.4.tgz", + "integrity": "sha512-hI6zQyrR6qJbvyEHfj8UGXNB8VyUa72jel46406AuxUnViA0RyZDSqXUF8vwVw/Hjv1LkA5ihK9dBmWNbLz1zQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-ia32": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-ia32/-/sass-embedded-linux-ia32-1.80.4.tgz", + "integrity": "sha512-wcPExI8UbYrrJvGvo4v2Q+RktbCp44i3qZQ18hglPcVZOC1IzT9NPqZn0XmrqD4hmNbgsYR+picODkvqGw7iDA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-musl-arm": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm/-/sass-embedded-linux-musl-arm-1.80.4.tgz", + "integrity": "sha512-HWo0G/9tuhj/uSEwte9KiDK2Xezrfh7nhdEH69ZIfOAqP5byTXL7o08TYagbvMAoljR43Vfna6MelV7NUX4WCw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-musl-arm64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-arm64/-/sass-embedded-linux-musl-arm64-1.80.4.tgz", + "integrity": "sha512-y8slzQ8Jjkl+53mUDkp3zxcDrTXVVxzpa+6nKh5Ue8l1YU2KdVZG1v2PoDXxE6o99B5I2TVBG8i02IsdYoL8jQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-musl-ia32": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-ia32/-/sass-embedded-linux-musl-ia32-1.80.4.tgz", + "integrity": "sha512-A2WSwnomho491iCeHh3c0YRympfAoJOKr+IyxalTcRH/pjENOWZWZUt00WE2q0tTpEd2V+goWvgS5pmUGewgmg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-musl-riscv64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-riscv64/-/sass-embedded-linux-musl-riscv64-1.80.4.tgz", + "integrity": "sha512-tYQsAHZLr2mnlJQBJ8Z/n/ySIFJ9JWpsUsoLe9fYgGDaBUfItdzUnj15CChRWld8vFe/I84hb7fbCtYXrI60Jg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-musl-x64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-musl-x64/-/sass-embedded-linux-musl-x64-1.80.4.tgz", + "integrity": "sha512-NZnr+SYbWlmXx0IaSQ8oF0jYkOULp9qKWMmmZQ1mxuGQ3z7tJqFhpH3M+hYkrFNeOq+GaH+nhHGOD4ZNBxeRkg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-riscv64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-riscv64/-/sass-embedded-linux-riscv64-1.80.4.tgz", + "integrity": "sha512-h/BmU7QONa7ScvQztFp4Th4aSo3X+Olu3I+RYsaH9s7P683WT3f2w5zr+wwP1V4roM5eyKDCRJBuefT3Fkkkgw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-linux-x64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-linux-x64/-/sass-embedded-linux-x64-1.80.4.tgz", + "integrity": "sha512-aZbZFs/X9bEmzDiBEiV4IAsKEA0zrCM+s/u2OzvrX4GRvZFJ+/XRTTvf+RTm7mgvTFgfPwCkNGVECQZ1eHh+6A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-win32-arm64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-win32-arm64/-/sass-embedded-win32-arm64-1.80.4.tgz", + "integrity": "sha512-8JiatFi2VVFqCdJzKNDteaPC4KPmh8/giaVh7TyMcDhKjnvRLeu3v5V1egTMiwwpnQHuwzU3uqBlm/llVNR2Pw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-win32-ia32": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-win32-ia32/-/sass-embedded-win32-ia32-1.80.4.tgz", + "integrity": "sha512-SodmTD6mjxEgoq44jWMibmBQvWkCfENK/70zp4qsztcBSOggg3nYUzwG0YpraClAMXpB1xOvzrArWu9/9fguAg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded-win32-x64": { + "version": "1.80.4", + "resolved": "https://registry.npmjs.org/sass-embedded-win32-x64/-/sass-embedded-win32-x64-1.80.4.tgz", + "integrity": "sha512-7+oRRwCCcnOmw152qDiC7x7SphYBo1eLB4KdyThO+7+rYRO8AftXO+kqBPTVSkM8kGp4wxCMF9auPpYBZbjsow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-embedded/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/sass-embedded/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/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/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/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "engines": { + "node": ">=0.10.0" + } + }, + "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/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/svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "dev": true + }, + "node_modules/synckit": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz", + "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==", + "dev": true, + "dependencies": { + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, + "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/tslib": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.0.tgz", + "integrity": "sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==", + "dev": true + }, + "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/update-browserslist-db": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", + "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.2.0", + "picocolors": "^1.1.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/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/varint": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/varint/-/varint-6.0.0.tgz", + "integrity": "sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==", + "dev": true + }, + "node_modules/vite": { + "version": "5.4.10", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.10.tgz", + "integrity": "sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==", + "dev": true, + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vue": { + "version": "3.5.12", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.5.12.tgz", + "integrity": "sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==", + "dependencies": { + "@vue/compiler-dom": "3.5.12", + "@vue/compiler-sfc": "3.5.12", + "@vue/runtime-dom": "3.5.12", + "@vue/server-renderer": "3.5.12", + "@vue/shared": "3.5.12" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vue-eslint-parser": { + "version": "9.4.3", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz", + "integrity": "sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.6" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/vue-eslint-parser/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/vue-eslint-parser/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/vue-eslint-parser/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/vue-eslint-parser/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/vue-router": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.4.5.tgz", + "integrity": "sha512-4fKZygS8cH1yCyuabAXGUAsyi1b2/o/OKgu/RUb+znIYOxPRxdkytJEx+0wGcpBE1pX6vUgh5jwWOKRGvuA/7Q==", + "dependencies": { + "@vue/devtools-api": "^6.6.4" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "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/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", + "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "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/zrender": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/zrender/-/zrender-5.6.0.tgz", + "integrity": "sha512-uzgraf4njmmHAbEUxMJ8Oxg+P3fT04O+9p7gY+wJRVxo8Ge+KmYv0WJev945EH4wFuc4OY2NLXz46FZrWS9xJg==", + "dependencies": { + "tslib": "2.3.0" + } + }, + "node_modules/zrender/node_modules/tslib": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz", + "integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==" + } + } +} diff --git a/express-distribution-sys/package.json b/express-distribution-sys/package.json new file mode 100644 index 0000000..e950376 --- /dev/null +++ b/express-distribution-sys/package.json @@ -0,0 +1,35 @@ +{ + "name": "express-distribution-sys", + "version": "0.0.0", + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview", + "lint": "eslint . --fix", + "format": "prettier --write src/" + }, + "dependencies": { + "@element-plus/icons-vue": "^2.3.1", + "axios": "^1.7.7", + "echarts": "^5.5.1", + "element-plus": "^2.8.6", + "pinia": "^2.2.4", + "pinia-persistedstate-plugin": "^0.1.0", + "qweather-icons": "^1.6.0", + "vue": "^3.5.12", + "vue-router": "^4.4.5" + }, + "devDependencies": { + "@eslint/js": "^9.13.0", + "@vitejs/plugin-vue": "^5.1.4", + "@vitejs/plugin-vue-jsx": "^4.0.1", + "@vue/eslint-config-prettier": "^10.0.0", + "eslint": "^9.13.0", + "eslint-plugin-vue": "^9.29.0", + "prettier": "^3.3.3", + "sass-embedded": "^1.80.4", + "vite": "^5.4.10" + } +} diff --git a/express-distribution-sys/public/favicon.ico b/express-distribution-sys/public/favicon.ico new file mode 100644 index 0000000..df36fcf Binary files /dev/null and b/express-distribution-sys/public/favicon.ico differ diff --git a/express-distribution-sys/src/App.vue b/express-distribution-sys/src/App.vue new file mode 100644 index 0000000..4d73cf6 --- /dev/null +++ b/express-distribution-sys/src/App.vue @@ -0,0 +1,7 @@ + + + + + diff --git a/express-distribution-sys/src/api/admin.js b/express-distribution-sys/src/api/admin.js new file mode 100644 index 0000000..559e0c4 --- /dev/null +++ b/express-distribution-sys/src/api/admin.js @@ -0,0 +1,19 @@ +import request from '@/utils/request.js' + +// 获取用户或者快递员信息 +export const getInfoListService = (page, pageSize, mark) => { + return request.get('/admin/infoList', { + params: { + page: page, + pageSize: pageSize, + mark: mark, + }, + }) +} + +// 账号禁用、启用、删除 +export const disabledControllerService = (id, operation) => { + return request.delete(`/admin/delete/${id}`, { + params: { operation: operation }, + }) +} diff --git a/express-distribution-sys/src/api/common.js b/express-distribution-sys/src/api/common.js new file mode 100644 index 0000000..b5743e5 --- /dev/null +++ b/express-distribution-sys/src/api/common.js @@ -0,0 +1,16 @@ +import request from '@/utils/request.js' + +// 登录 +export const loginService = loginModelData => { + return request.post('/common/loginByAccount', loginModelData) +} + +// 注册 +export const registerService = registerModelData => { + return request.post('/common/register', registerModelData) +} + +// 获取个人信息 +export const getInfoService = () => { + return request.get('common/info') +} diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/LICENSE b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/LICENSE new file mode 100644 index 0000000..aa2286b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 QWeather 和风天气 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/README.md b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/README.md new file mode 100644 index 0000000..ac8826e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/README.md @@ -0,0 +1,159 @@ +# 和风天气图标 QWeather Icons + +[English](#qweather-icons) + +和风天气图标是一个开源、漂亮的天气图标库,支持SVG和Web Font,兼容[和风天气API](https://dev.qweather.com),适用于任何需要天气图标的项目。 + +## 下载和安装 + +你可以通过多种方式下载和安装和风天气图标: + +**npm** + +```bash +npm i qweather-icons +``` + +**CDN** + +```bash + +``` + +或[下载.zip](https://github.com/qwd/Icons/releases) + +## 如何使用 + +- 在HTML中嵌入SVG +- 在`img`中使用 +- 通过web font加载 + +> 如果你是[和风天气开发者](https://dev.qweather.com/),图标和字体的命名与`icon`字段是一致的,因此你可以直接通过`icon`字段找到你需要的图标和字体。 + +具体使用方式请参考[使用文档](https://icons.qweather.com/usage/)。 + +## 设计文件 + +所有图标的设计资源可以[在Figma中查看](https://www.figma.com/community/file/1196353857920331062)。 + +## 开发 + +假设你已经拥有[Node.js](https://nodejs.org)环境。克隆本项目到本地,并安装依赖。 + +```bash +git clone https://github.com/qwd/Icons.git +cd Icons +npm install +``` + +### 运行文档 + +```bash +npm run docs +``` + +在浏览器打开`https://localhost:1313`即可。 + +### 创建图标 + +```bash +npm run icons +``` + +### 其他scripts + +请查看`package.json`。 + +## 自定义图标 + +参考[自定义文档](https://icons.qweather.com/customize/)。 + +## 灵感 + +灵感来自[Boogstrap Icons](https://icons.getbootstrap.com/) + +## 许可 + +版权所属 [QWeather](https://www.qweather.com/) + +代码 [MIT](https://github.com/qwd/Icons/blob/main/LICENSE) + +图标 [知识共享署名4.0](https://creativecommons.org/licenses/by/4.0/deed.zh) + +# QWeather Icons + +QWeather Icons is an open source, beautiful weather icon library that supports SVG and Web Font, compatible with [QWeather API](https://dev.qweather.com/en/), and also works in any project that needs weather icons. + +## Install + +**npm** + +```bash +npm i qweather-icons +``` + +**CDN** + +```bash + +``` + +Or [Download .zip](https://github.com/qwd/Icons/releases) + +## How to Use + +- Embedding SVG in HTML +- Use `img` element +- Loading via web font + +> For [QWeather developers](https://dev.qweather.com/en/), the icons and fonts are named the same as the `icon` field, so you can find the icons and fonts you need directly through the `icon` field. + +See [Usage](https://icons.qweather.com/en/usage/) for more. + +## Design resources + +All design resources for icons can be found in [Figma](https://www.figma.com/community/file/1196353857920331062). + +## Development + +Assume you already have a [Node.js](https://nodejs.org) environment. Clone this project locally and install the dependencies. + +```bash +git clone https://github.com/qwd/Icons.git +cd Icons +npm install +``` + +### Run docs server + +```bash +npm run docs +``` + +Open `https://localhost:1313` in your browser. + +### Build icons + +```bash +npm run icons +``` + +### Other scripts + +See `package.json` for more. + +## Customize + +See [Customize](https://icons.qweather.com/customize/) for more. + +## Inspiration + +Inspired by [Boogstrap Icons](https://icons.getbootstrap.com/) + +## License + +Copyright [QWeather](https://www.qweather.com/en/) + +Code for [MIT](https://github.com/qwd/Icons/blob/main/LICENSE) + +Icon for [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/demo.html b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/demo.html new file mode 100644 index 0000000..878b7f1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/demo.html @@ -0,0 +1,3878 @@ + + + + + qweather-icons + + + + + + + +

qweather-icons

+ +
+
+ +
100
+
+
+ +
101
+
+
+ +
102
+
+
+ +
103
+
+
+ +
104
+
+
+ +
150
+
+
+ +
151
+
+
+ +
152
+
+
+ +
153
+
+
+ +
300
+
+
+ +
301
+
+
+ +
302
+
+
+ +
303
+
+
+ +
304
+
+
+ +
305
+
+
+ +
306
+
+
+ +
307
+
+
+ +
308
+
+
+ +
309
+
+
+ +
310
+
+
+ +
311
+
+
+ +
312
+
+
+ +
313
+
+
+ +
314
+
+
+ +
315
+
+
+ +
316
+
+
+ +
317
+
+
+ +
318
+
+
+ +
350
+
+
+ +
351
+
+
+ +
399
+
+
+ +
400
+
+
+ +
401
+
+
+ +
402
+
+
+ +
403
+
+
+ +
404
+
+
+ +
405
+
+
+ +
406
+
+
+ +
407
+
+
+ +
408
+
+
+ +
409
+
+
+ +
410
+
+
+ +
456
+
+
+ +
457
+
+
+ +
499
+
+
+ +
500
+
+
+ +
501
+
+
+ +
502
+
+
+ +
503
+
+
+ +
504
+
+
+ +
507
+
+
+ +
508
+
+
+ +
509
+
+
+ +
510
+
+
+ +
511
+
+
+ +
512
+
+
+ +
513
+
+
+ +
514
+
+
+ +
515
+
+
+ +
800
+
+
+ +
801
+
+
+ +
802
+
+
+ +
803
+
+
+ +
804
+
+
+ +
805
+
+
+ +
806
+
+
+ +
807
+
+
+ +
900
+
+
+ +
901
+
+
+ +
999
+
+
+ +
1001
+
+
+ +
1002
+
+
+ +
1003
+
+
+ +
1004
+
+
+ +
1005
+
+
+ +
1006
+
+
+ +
1007
+
+
+ +
1008
+
+
+ +
1009
+
+
+ +
1010
+
+
+ +
1011
+
+
+ +
1012
+
+
+ +
1013
+
+
+ +
1014
+
+
+ +
1015
+
+
+ +
1016
+
+
+ +
1017
+
+
+ +
1018
+
+
+ +
1019
+
+
+ +
1020
+
+
+ +
1021
+
+
+ +
1022
+
+
+ +
1023
+
+
+ +
1024
+
+
+ +
1025
+
+
+ +
1026
+
+
+ +
1027
+
+
+ +
1028
+
+
+ +
1029
+
+
+ +
1030
+
+
+ +
1031
+
+
+ +
1032
+
+
+ +
1033
+
+
+ +
1034
+
+
+ +
1035
+
+
+ +
1036
+
+
+ +
1037
+
+
+ +
1038
+
+
+ +
1039
+
+
+ +
1040
+
+
+ +
1041
+
+
+ +
1042
+
+
+ +
1043
+
+
+ +
1044
+
+
+ +
1045
+
+
+ +
1046
+
+
+ +
1047
+
+
+ +
1048
+
+
+ +
1049
+
+
+ +
1050
+
+
+ +
1051
+
+
+ +
1052
+
+
+ +
1053
+
+
+ +
1054
+
+
+ +
1055
+
+
+ +
1056
+
+
+ +
1057
+
+
+ +
1058
+
+
+ +
1059
+
+
+ +
1060
+
+
+ +
1061
+
+
+ +
1062
+
+
+ +
1063
+
+
+ +
1064
+
+
+ +
1065
+
+
+ +
1066
+
+
+ +
1067
+
+
+ +
1068
+
+
+ +
1069
+
+
+ +
1071
+
+
+ +
1072
+
+
+ +
1073
+
+
+ +
1074
+
+
+ +
1075
+
+
+ +
1076
+
+
+ +
1077
+
+
+ +
1078
+
+
+ +
1079
+
+
+ +
1080
+
+
+ +
1081
+
+
+ +
1082
+
+
+ +
1084
+
+
+ +
1085
+
+
+ +
1086
+
+
+ +
1087
+
+
+ +
1088
+
+
+ +
1089
+
+
+ +
1201
+
+
+ +
1202
+
+
+ +
1203
+
+
+ +
1204
+
+
+ +
1205
+
+
+ +
1206
+
+
+ +
1207
+
+
+ +
1208
+
+
+ +
1209
+
+
+ +
1210
+
+
+ +
1211
+
+
+ +
1212
+
+
+ +
1213
+
+
+ +
1214
+
+
+ +
1215
+
+
+ +
1216
+
+
+ +
1217
+
+
+ +
1218
+
+
+ +
1219
+
+
+ +
1221
+
+
+ +
1241
+
+
+ +
1242
+
+
+ +
1243
+
+
+ +
1244
+
+
+ +
1245
+
+
+ +
1246
+
+
+ +
1247
+
+
+ +
1248
+
+
+ +
1249
+
+
+ +
1250
+
+
+ +
1251
+
+
+ +
1271
+
+
+ +
1272
+
+
+ +
1273
+
+
+ +
1274
+
+
+ +
1601
+
+
+ +
1602
+
+
+ +
1603
+
+
+ +
1604
+
+
+ +
1605
+
+
+ +
1606
+
+
+ +
1607
+
+
+ +
1608
+
+
+ +
1609
+
+
+ +
1610
+
+
+ +
1701
+
+
+ +
1702
+
+
+ +
1703
+
+
+ +
1801
+
+
+ +
1802
+
+
+ +
1803
+
+
+ +
1804
+
+
+ +
1805
+
+
+ +
2001
+
+
+ +
2002
+
+
+ +
2003
+
+
+ +
2004
+
+
+ +
2005
+
+
+ +
2006
+
+
+ +
2007
+
+
+ +
2029
+
+
+ +
2030
+
+
+ +
2031
+
+
+ +
2032
+
+
+ +
2033
+
+
+ +
2050
+
+
+ +
2051
+
+
+ +
2052
+
+
+ +
2053
+
+
+ +
2054
+
+
+ +
2070
+
+
+ +
2071
+
+
+ +
2072
+
+
+ +
2073
+
+
+ +
2074
+
+
+ +
2075
+
+
+ +
2076
+
+
+ +
2077
+
+
+ +
2078
+
+
+ +
2079
+
+
+ +
2080
+
+
+ +
2081
+
+
+ +
2082
+
+
+ +
2083
+
+
+ +
2084
+
+
+ +
2085
+
+
+ +
2100
+
+
+ +
2101
+
+
+ +
2102
+
+
+ +
2103
+
+
+ +
2104
+
+
+ +
2105
+
+
+ +
2106
+
+
+ +
2107
+
+
+ +
2108
+
+
+ +
2109
+
+
+ +
2111
+
+
+ +
2120
+
+
+ +
2121
+
+
+ +
2122
+
+
+ +
2123
+
+
+ +
2124
+
+
+ +
2125
+
+
+ +
2126
+
+
+ +
2127
+
+
+ +
2128
+
+
+ +
2129
+
+
+ +
2130
+
+
+ +
2131
+
+
+ +
2132
+
+
+ +
2133
+
+
+ +
2134
+
+
+ +
2135
+
+
+ +
2150
+
+
+ +
2151
+
+
+ +
2152
+
+
+ +
2153
+
+
+ +
2154
+
+
+ +
2155
+
+
+ +
2156
+
+
+ +
2157
+
+
+ +
2158
+
+
+ +
2159
+
+
+ +
2160
+
+
+ +
2161
+
+
+ +
2162
+
+
+ +
2163
+
+
+ +
2164
+
+
+ +
2165
+
+
+ +
2166
+
+
+ +
2190
+
+
+ +
2191
+
+
+ +
2192
+
+
+ +
2193
+
+
+ +
2200
+
+
+ +
2201
+
+
+ +
2202
+
+
+ +
2203
+
+
+ +
2204
+
+
+ +
2205
+
+
+ +
2207
+
+
+ +
2208
+
+
+ +
2209
+
+
+ +
2210
+
+
+ +
2211
+
+
+ +
2212
+
+
+ +
2213
+
+
+ +
2214
+
+
+ +
2215
+
+
+ +
2216
+
+
+ +
2217
+
+
+ +
2218
+
+
+ +
2300
+
+
+ +
2301
+
+
+ +
2302
+
+
+ +
2303
+
+
+ +
2304
+
+
+ +
2305
+
+
+ +
2306
+
+
+ +
2307
+
+
+ +
2308
+
+
+ +
2309
+
+
+ +
2311
+
+
+ +
2312
+
+
+ +
2313
+
+
+ +
2314
+
+
+ +
2315
+
+
+ +
2316
+
+
+ +
2317
+
+
+ +
2318
+
+
+ +
2319
+
+
+ +
2320
+
+
+ +
2321
+
+
+ +
2322
+
+
+ +
2323
+
+
+ +
2324
+
+
+ +
2325
+
+
+ +
2326
+
+
+ +
2327
+
+
+ +
2328
+
+
+ +
2330
+
+
+ +
2331
+
+
+ +
2332
+
+
+ +
2333
+
+
+ +
2341
+
+
+ +
2343
+
+
+ +
2345
+
+
+ +
2346
+
+
+ +
2348
+
+
+ +
2349
+
+
+ +
2350
+
+
+ +
2351
+
+
+ +
2352
+
+
+ +
2353
+
+
+ +
2354
+
+
+ +
2355
+
+
+ +
2356
+
+
+ +
2357
+
+
+ +
2358
+
+
+ +
2359
+
+
+ +
2360
+
+
+ +
2361
+
+
+ +
2362
+
+
+ +
2363
+
+
+ +
2364
+
+
+ +
2365
+
+
+ +
2366
+
+
+ +
2367
+
+
+ +
2368
+
+
+ +
2369
+
+
+ +
2370
+
+
+ +
2371
+
+
+ +
2372
+
+
+ +
2373
+
+
+ +
2374
+
+
+ +
2375
+
+
+ +
2376
+
+
+ +
2377
+
+
+ +
2378
+
+
+ +
2379
+
+
+ +
2380
+
+
+ +
2381
+
+
+ +
2382
+
+
+ +
2383
+
+
+ +
2384
+
+
+ +
2385
+
+
+ +
2386
+
+
+ +
2387
+
+
+ +
2388
+
+
+ +
2389
+
+
+ +
2390
+
+
+ +
2391
+
+
+ +
2392
+
+
+ +
2393
+
+
+ +
2394
+
+
+ +
2395
+
+
+ +
2396
+
+
+ +
2397
+
+
+ +
2398
+
+
+ +
2399
+
+
+ +
2400
+
+
+ +
2409
+
+
+ +
2411
+
+
+ +
2412
+
+
+ +
2413
+
+
+ +
2414
+
+
+ +
2415
+
+
+ +
2416
+
+
+ +
2417
+
+
+ +
2418
+
+
+ +
2419
+
+
+ +
2420
+
+
+ +
2421
+
+
+ +
2422
+
+
+ +
2423
+
+
+ +
2424
+
+
+ +
2425
+
+
+ +
2426
+
+
+ +
9998
+
+
+ +
9999
+
+
+ +
100-fill
+
+
+ +
101-fill
+
+
+ +
102-fill
+
+
+ +
103-fill
+
+
+ +
104-fill
+
+
+ +
150-fill
+
+
+ +
151-fill
+
+
+ +
152-fill
+
+
+ +
153-fill
+
+
+ +
300-fill
+
+
+ +
301-fill
+
+
+ +
302-fill
+
+
+ +
303-fill
+
+
+ +
304-fill
+
+
+ +
305-fill
+
+
+ +
306-fill
+
+
+ +
307-fill
+
+
+ +
308-fill
+
+
+ +
309-fill
+
+
+ +
310-fill
+
+
+ +
311-fill
+
+
+ +
312-fill
+
+
+ +
313-fill
+
+
+ +
314-fill
+
+
+ +
315-fill
+
+
+ +
316-fill
+
+
+ +
317-fill
+
+
+ +
318-fill
+
+
+ +
350-fill
+
+
+ +
351-fill
+
+
+ +
399-fill
+
+
+ +
400-fill
+
+
+ +
401-fill
+
+
+ +
402-fill
+
+
+ +
403-fill
+
+
+ +
404-fill
+
+
+ +
405-fill
+
+
+ +
406-fill
+
+
+ +
407-fill
+
+
+ +
408-fill
+
+
+ +
409-fill
+
+
+ +
410-fill
+
+
+ +
456-fill
+
+
+ +
457-fill
+
+
+ +
499-fill
+
+
+ +
500-fill
+
+
+ +
501-fill
+
+
+ +
502-fill
+
+
+ +
503-fill
+
+
+ +
504-fill
+
+
+ +
507-fill
+
+
+ +
508-fill
+
+
+ +
509-fill
+
+
+ +
510-fill
+
+
+ +
511-fill
+
+
+ +
512-fill
+
+
+ +
513-fill
+
+
+ +
514-fill
+
+
+ +
515-fill
+
+
+ +
900-fill
+
+
+ +
901-fill
+
+
+ +
999-fill
+
+
+ +
qweather-fill
+
+
+ +
qweather
+
+
+ +
sunny
+
+
+ +
cloudy
+
+
+ +
few-clouds
+
+
+ +
partly-cloudy
+
+
+ +
overcast
+
+
+ +
clear-night
+
+
+ +
cloudy-night
+
+
+ +
few-clouds-night
+
+
+ +
partly-cloudy-night
+
+
+ +
shower-rain
+
+
+ +
heavy-shower-rain
+
+
+ +
thundershower
+
+
+ +
heavy-thunderstorm
+
+
+ +
thundershower-with-hail
+
+
+ +
light-rain
+
+
+ +
moderate-rain
+
+
+ +
heavy-rain
+
+
+ +
extreme-rain
+
+
+ +
drizzle-rain
+
+
+ +
storm
+
+
+ +
heavy-storm
+
+
+ +
severe-storm
+
+
+ +
freezing-rain
+
+
+ +
light-to-moderate-rain
+
+
+ +
moderate-to-heavy-rain
+
+
+ +
heavy-rain-to-storm
+
+
+ +
storm-to-heavy-storm
+
+
+ +
heavy-to-severe-storm
+
+
+ +
shower-rain-night
+
+
+ +
heavy-shower-rain-night
+
+
+ +
rain
+
+
+ +
light-snow
+
+
+ +
moderate-snow
+
+
+ +
heavy-snow
+
+
+ +
snowstorm
+
+
+ +
sleet
+
+
+ +
rain-and-snow
+
+
+ +
shower-snow
+
+
+ +
snow-flurry
+
+
+ +
light-to-moderate-snow
+
+
+ +
moderate-to-heavy-snow
+
+
+ +
heavy-snow-to-snowstorm
+
+
+ +
shower-snow-night
+
+
+ +
snow-flurry-night
+
+
+ +
snow
+
+
+ +
mist
+
+
+ +
foggy
+
+
+ +
haze
+
+
+ +
sand
+
+
+ +
dust
+
+
+ +
duststorm
+
+
+ +
sandstorm
+
+
+ +
dense-fog
+
+
+ +
strong-fog
+
+
+ +
moderate-haze
+
+
+ +
heavy-haze
+
+
+ +
severe-haze
+
+
+ +
heavy-fog
+
+
+ +
extra-heavy-fog
+
+
+ +
new-moon
+
+
+ +
waxing-crescent
+
+
+ +
first-quarter
+
+
+ +
waxing-gibbous
+
+
+ +
full-moon
+
+
+ +
waning-gibbous
+
+
+ +
last-quarter
+
+
+ +
waning-crescent
+
+
+ +
hot
+
+
+ +
cold
+
+
+ +
unknown
+
+
+ +
typhoon
+
+
+ +
tornado
+
+
+ +
rainstorm
+
+
+ +
snow-storm
+
+
+ +
cold-wave
+
+
+ +
gale
+
+
+ +
sandstorm-warning
+
+
+ +
low-temperature-freeze
+
+
+ +
high-temperature
+
+
+ +
heat-wave
+
+
+ +
dry-hot-wind
+
+
+ +
downburst
+
+
+ +
avalanche
+
+
+ +
lightning
+
+
+ +
hail
+
+
+ +
frost
+
+
+ +
heavy-fog-warning
+
+
+ +
low-level-wind-shearl
+
+
+ +
haze-warning
+
+
+ +
thunder-gust
+
+
+ +
road-icing
+
+
+ +
drought
+
+
+ +
gale-at-sea
+
+
+ +
heat-stroke
+
+
+ +
wildfire
+
+
+ +
grassland-fire
+
+
+ +
freeze
+
+
+ +
space-weather
+
+
+ +
heavy-air-pollution
+
+
+ +
low-temperature-rain-and-snow
+
+
+ +
strong-convection
+
+
+ +
ozone
+
+
+ +
heavy-snow-warning
+
+
+ +
cold-warning
+
+
+ +
continuous-rain
+
+
+ +
waterlogging
+
+
+ +
geological-hazard
+
+
+ +
heavy-rainfall
+
+
+ +
severely-falling-temperature
+
+
+ +
snow-disaster
+
+
+ +
wildfire-grassland
+
+
+ +
medical-meteorology
+
+
+ +
thunderstorm
+
+
+ +
school-closure
+
+
+ +
factory-closure
+
+
+ +
maritime-risk
+
+
+ +
spring-dust
+
+
+ +
falling-temperature
+
+
+ +
typhoon-and-rainstorm
+
+
+ +
severe-cold
+
+
+ +
sand-dust
+
+
+ +
sea-thunderstorms
+
+
+ +
sea-fog
+
+
+ +
sea-thunder
+
+
+ +
sea-typhoon
+
+
+ +
low-temperature
+
+
+ +
road-ice-and-snow
+
+
+ +
thunderstorm-and-gale
+
+
+ +
continuous-low-temperature
+
+
+ +
low-visibility
+
+
+ +
strong-dust
+
+
+ +
gale-in-sea-area
+
+
+ +
short-duration-heavy-shower-rain
+
+
+ +
short-lived-heavy-shower-rain
+
+
+ +
sea-area-fog
+
+
+ +
heat-stroke-conditions
+
+
+ +
heavy-pollution-weather
+
+
+ +
co-poisoning-weather-conditions
+
+
+ +
respiratory-disease-weather-wonditions
+
+
+ +
intestinal-disease-weather-wonditions
+
+
+ +
cardiovascular-disease-weather-wonditions
+
+
+ +
flooding-weather-risk
+
+
+ +
heavy-pollution-weather-conditions
+
+
+ +
urban-flooding-weather-risk
+
+
+ +
flooding-weather-risk-2
+
+
+ +
wildfire-weather-risk
+
+
+ +
meteorological-drought
+
+
+ +
agricultural-weather-risk
+
+
+ +
strong-monsoon
+
+
+ +
ice-accretion-on-wire
+
+
+ +
stroke-weather-risk
+
+
+ +
wildfire-grassland-risk
+
+
+ +
thunderstorm-and-strong-winds
+
+
+ +
low-temperature-freeze2
+
+
+ +
low-temperature-damage
+
+
+ +
national-agricultural-meteorological-risk
+
+
+ +
dry-hot-wind-risk-for-winter-wheat
+
+
+ +
flood
+
+
+ +
urban-flooding
+
+
+ +
reservoir-danger
+
+
+ +
dike-danger
+
+
+ +
ice-flood
+
+
+ +
waterlogging2
+
+
+ +
flood-and-waterlogging
+
+
+ +
dry-water
+
+
+ +
flood-and-flash-flood-in-small-and-medium-rivers
+
+
+ +
difficulty-drinking-water-for-rural-people-and-animals
+
+
+ +
flood-in-small-and-medium-rivers
+
+
+ +
flood-and-drought-advisory
+
+
+ +
urban-flood-risk
+
+
+ +
flash-flood
+
+
+ +
agricultural-drought
+
+
+ +
urban-water-shortage
+
+
+ +
ecological-drought
+
+
+ +
disaster-risk-early-warning
+
+
+ +
flash-flood-weather-risk
+
+
+ +
water-conservancy-and-drought
+
+
+ +
landslide
+
+
+ +
debris-flows
+
+
+ +
landslide-event
+
+
+ +
ground-collapses
+
+
+ +
ground-fissure
+
+
+ +
land-subsidence
+
+
+ +
volcanic-eruption
+
+
+ +
geological-hazard-weather-risk
+
+
+ +
geological-hazard-weather
+
+
+ +
geological-hazard2
+
+
+ +
geological-hazard-risk
+
+
+ +
air-pollution-incident
+
+
+ +
heavy-air-pollution-2
+
+
+ +
air-pollution
+
+
+ +
heavy-pollution-weather-2
+
+
+ +
very-hot-weather
+
+
+ +
strong-monsoon-signal
+
+
+ +
landslip
+
+
+ +
tropical-cyclone
+
+
+ +
fire-danger
+
+
+ +
flooding-in-the-northern-new-territories
+
+
+ +
cold-weather
+
+
+ +
thunderstorm2
+
+
+ +
rainstorm2
+
+
+ +
frost2
+
+
+ +
cold-surge-advisory
+
+
+ +
strong-wind-advisory
+
+
+ +
rainfall-advisory
+
+
+ +
strong-monsoon-signal2
+
+
+ +
storm-surge2
+
+
+ +
tropical-cyclone2
+
+
+ +
rainstorm3
+
+
+ +
thunderstorm3
+
+
+ +
wind-warning
+
+
+ +
snow-ice
+
+
+ +
fog
+
+
+ +
coastal-event
+
+
+ +
forest-fire
+
+
+ +
rain-warning
+
+
+ +
rain-flood
+
+
+ +
thunderstorm4
+
+
+ +
high-temperature2
+
+
+ +
low-temperature2
+
+
+ +
avalanches
+
+
+ +
flooding
+
+
+ +
rain-warning2
+
+
+ +
wind
+
+
+ +
snow-warning
+
+
+ +
zonda-wind
+
+
+ +
storm-warning
+
+
+ +
dust-raising-winds2
+
+
+ +
strong-surface-winds2
+
+
+ +
hot-day2
+
+
+ +
warm-night2
+
+
+ +
cold-day2
+
+
+ +
thunderstorm-and-lightning2
+
+
+ +
hailstorm2
+
+
+ +
sea-area-warning2
+
+
+ +
fishermen-warning2
+
+
+ +
heavy-snow-warning2
+
+
+ +
dust-storm
+
+
+ +
heat-wave2
+
+
+ +
cold-wave2
+
+
+ +
fog2
+
+
+ +
heavy-rain-warning
+
+
+ +
ground-frost2
+
+
+ +
fog3
+
+
+ +
thunder-rain2
+
+
+ +
thunder-storm
+
+
+ +
light-rain-warning
+
+
+ +
heavy-rain-warning2
+
+
+ +
fresh-wind
+
+
+ +
thunderstorm-and-dust
+
+
+ +
dust-warning
+
+
+ +
high-wave
+
+
+ +
frost3
+
+
+ +
drop-in-visibility
+
+
+ +
low-humidity2
+
+
+ +
accumulated-rain2
+
+
+ +
cold-wave3
+
+
+ +
tornado2
+
+
+ +
thunderstorm5
+
+
+ +
hail2
+
+
+ +
heavy-rainfall2
+
+
+ +
gale2
+
+
+ +
heat-wave3
+
+
+ +
cold-warning2
+
+
+ +
frost4
+
+
+ +
drought2
+
+
+ +
forest-fire2
+
+
+ +
severely-falling-temperature2
+
+
+ +
rainstorm4
+
+
+ +
wind2
+
+
+ +
snow-ice2
+
+
+ +
freeze2
+
+
+ +
thunderstorms
+
+
+ +
fog4
+
+
+ +
high-temperature3
+
+
+ +
low-temperature3
+
+
+ +
coastal-event2
+
+
+ +
forest-fire3
+
+
+ +
avalanches2
+
+
+ +
flood2
+
+
+ +
rain-flood2
+
+
+ +
mudflow2
+
+
+ +
duststorm-warning
+
+
+ +
freezing-rain-and-icing
+
+
+ +
other-dangers
+
+
+ +
severe-thunderstorms
+
+
+ +
damaging-winds2
+
+
+ +
veld-fire-conditions2
+
+
+ +
weather-advisory2
+
+
+ +
thunderstorm6
+
+
+ +
squall
+
+
+ +
air-quality
+
+
+ +
rainfall
+
+
+ +
fog5
+
+
+ +
heat
+
+
+ +
wildfire2
+
+
+ +
wind3
+
+
+ +
freezing-rain-warning
+
+
+ +
tornado3
+
+
+ +
blizzard
+
+
+ +
weather-warning
+
+
+ +
winter-storm
+
+
+ +
freezing-drizzle
+
+
+ +
snowfall
+
+
+ +
blowing-snow
+
+
+ +
extreme-cold
+
+
+ +
frost5
+
+
+ +
hazardous-seas-warning
+
+
+ +
heavy-freezing-spray-warning
+
+
+ +
red-flag-warning
+
+
+ +
freeze-warning
+
+
+ +
hard-freeze-warning
+
+
+ +
extreme-cold-warning
+
+
+ +
wind-chill-warning
+
+
+ +
gale-warning
+
+
+ +
excessive-heat-warning
+
+
+ +
lake-effect-snow-warning
+
+
+ +
blowing-dust-warning
+
+
+ +
dust-storm-warning
+
+
+ +
storm-warning2
+
+
+ +
tropical-storm-warning
+
+
+ +
high-wind-warning
+
+
+ +
high-surf-warning
+
+
+ +
flood-warning
+
+
+ +
lakeshore-flood-warning
+
+
+ +
coastal-flood-warning
+
+
+ +
ashfall-warning
+
+
+ +
volcano-warning
+
+
+ +
earthquake-warning
+
+
+ +
avalanche-warning
+
+
+ +
winter-storm-warning
+
+
+ +
ice-storm-warning
+
+
+ +
snow-squall-warning
+
+
+ +
blizzard-warning
+
+
+ +
special-marine-warning
+
+
+ +
typhoon-warning
+
+
+ +
hurricane-warning
+
+
+ +
hurricane-force-wind-warning
+
+
+ +
storm-surge-warning
+
+
+ +
flash-flood-warning
+
+
+ +
severe-thunderstorm-warning
+
+
+ +
extreme-wind-warning
+
+
+ +
tornado-warning
+
+
+ +
tsunami-warning
+
+
+ +
fire-weather-watch
+
+
+ +
freeze-watch
+
+
+ +
hard-freeze-watch
+
+
+ +
wind-chill-watch
+
+
+ +
extreme-cold-watch
+
+
+ +
excessive-heat-watch
+
+
+ +
high-wind-watch
+
+
+ +
flood-watch
+
+
+ +
lakeshore-flood-watch
+
+
+ +
coastal-flood-watch
+
+
+ +
heavy-freezing-spray-watch
+
+
+ +
hazardous-seas-watch
+
+
+ +
winter-storm-watch
+
+
+ +
gale-watch
+
+
+ +
avalanche-watch
+
+
+ +
storm-watch
+
+
+ +
tropical-storm-watch
+
+
+ +
typhoon-watch
+
+
+ +
hurricane-force-wind-watch
+
+
+ +
hurricane-watch
+
+
+ +
storm-surge-watch
+
+
+ +
flash-flood-watch
+
+
+ +
severe-thunderstorm-watch
+
+
+ +
tornado-watch
+
+
+ +
tsunami-watch
+
+
+ +
air-stagnation-advisory
+
+
+ +
low-water-advisory
+
+
+ +
freezing-spray-advisory
+
+
+ +
freezing-fog-advisory
+
+
+ +
ashfall-advisory
+
+
+ +
frost-advisory
+
+
+ +
wind-advisory
+
+
+ +
lake-wind-advisory
+
+
+ +
blowing-dust-advisory
+
+
+ +
dust-advisory
+
+
+ +
brisk-wind-advisory
+
+
+ +
small-craft-advisory
+
+
+ +
small-craft-advisory-for-winds
+
+
+ +
small-craft-advisory-for-rough-bar
+
+
+ +
small-craft-advisory-for-hazardous-seas
+
+
+ +
dense-smoke-advisory
+
+
+ +
dense-fog-advisory
+
+
+ +
high-surf-advisory
+
+
+ +
coastal-flood-advisory
+
+
+ +
lakeshore-flood-advisory
+
+
+ +
hydrologic-advisory
+
+
+ +
flood-advisory
+
+
+ +
heat-advisory
+
+
+ +
wind-chill-advisory
+
+
+ +
winter-weather-advisory
+
+
+ +
avalanche-advisory
+
+
+ +
tsunami-advisory
+
+
+ +
flood-statement
+
+
+ +
hydrologic-outlook
+
+
+ +
hazardous-weather-outlook
+
+
+ +
air-quality-alert
+
+
+ +
extreme-fire-danger
+
+
+ +
marine-weather-statement
+
+
+ +
special-weather-statement
+
+
+ +
lakeshore-flood-statement
+
+
+ +
coastal-flood-statement
+
+
+ +
beach-hazards-statement
+
+
+ +
rip-current-statement
+
+
+ +
tropical-depression-local-statement
+
+
+ +
tropical-storm-local-statement
+
+
+ +
typhoon-local-statement
+
+
+ +
hurricane-local-statement
+
+
+ +
severe-weather-statement
+
+
+ +
flash-flood-statement
+
+
+ +
severe-weather-warning
+
+
+ +
warning-default
+
+
+ +
sunny-fill
+
+
+ +
cloudy-fill
+
+
+ +
few-clouds-fill
+
+
+ +
partly-cloudy-fill
+
+
+ +
overcast-fill
+
+
+ +
clear-night-fill
+
+
+ +
cloudy-night-fill
+
+
+ +
few-clouds-night-fill
+
+
+ +
partly-cloudy-night-fill
+
+
+ +
shower-rain-fill
+
+
+ +
heavy-shower-rain-fill
+
+
+ +
thundershower-fill
+
+
+ +
heavy-thunderstorm-fill
+
+
+ +
thundershower-with-hail-fill
+
+
+ +
light-rain-fill
+
+
+ +
moderate-rain-fill
+
+
+ +
heavy-rain-fill
+
+
+ +
extreme-rain-fill
+
+
+ +
drizzle-rain-fill
+
+
+ +
storm-fill
+
+
+ +
heavy-storm-fill
+
+
+ +
severe-storm-fill
+
+
+ +
freezing-rain-fill
+
+
+ +
light-to-moderate-rain-fill
+
+
+ +
moderate-to-heavy-rain-fill
+
+
+ +
heavy-rain-to-storm-fill
+
+
+ +
storm-to-heavy-storm-fill
+
+
+ +
heavy-to-severe-storm-fill
+
+
+ +
shower-rain-night-fill
+
+
+ +
heavy-shower-rain-night-fill
+
+
+ +
rain-fill
+
+
+ +
light-snow-fill
+
+
+ +
moderate-snow-fill
+
+
+ +
heavy-snow-fill
+
+
+ +
snowstorm-fill
+
+
+ +
sleet-fill
+
+
+ +
rain-and-snow-fill
+
+
+ +
shower-snow-fill
+
+
+ +
snow-flurry-fill
+
+
+ +
light-to-moderate-snow-fill
+
+
+ +
moderate-to-heavy-snow-fill
+
+
+ +
heavy-snow-to-snowstorm-fill
+
+
+ +
shower-snow-night-fill
+
+
+ +
snow-flurry-night-fill
+
+
+ +
snow-fill
+
+
+ +
mist-fill
+
+
+ +
foggy-fill
+
+
+ +
haze-fill
+
+
+ +
sand-fill
+
+
+ +
dust-fill
+
+
+ +
duststorm-fill
+
+
+ +
sandstorm-fill
+
+
+ +
dense-fog-fill
+
+
+ +
strong-fog-fill
+
+
+ +
moderate-haze-fill
+
+
+ +
heavy-haze-fill
+
+
+ +
severe-haze-fill
+
+
+ +
heavy-fog-fill
+
+
+ +
extra-heavy-fog-fill
+
+
+ +
hot-fill
+
+
+ +
cold-fill
+
+
+ +
unknown-fill
+
+
+ + + diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/fonts/qweather-icons.ttf b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/fonts/qweather-icons.ttf new file mode 100644 index 0000000..2945de7 Binary files /dev/null and b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/fonts/qweather-icons.ttf differ diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/fonts/qweather-icons.woff b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/fonts/qweather-icons.woff new file mode 100644 index 0000000..c531c4e Binary files /dev/null and b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/fonts/qweather-icons.woff differ diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/fonts/qweather-icons.woff2 b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/fonts/qweather-icons.woff2 new file mode 100644 index 0000000..aaddf77 Binary files /dev/null and b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/fonts/qweather-icons.woff2 differ diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/qweather-icons.css b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/qweather-icons.css new file mode 100644 index 0000000..ed92a11 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/qweather-icons.css @@ -0,0 +1,985 @@ +/*! +* QWeather Icons (https://icons.qweather.com) +* Copyright QWeather 和风天气 (https://www.qweather.com) +* License: Code for MIT, Icons for CC BY 4.0 +*/ + +@font-face { + font-family: "qweather-icons"; + src: url("./fonts/qweather-icons.woff2?c4a8eb216e1e59e6c4df464b9ee6f9be") format("woff2"), +url("./fonts/qweather-icons.woff?c4a8eb216e1e59e6c4df464b9ee6f9be") format("woff"), +url("./fonts/qweather-icons.ttf?c4a8eb216e1e59e6c4df464b9ee6f9be") format("truetype"); +} + +[class^="qi-"]::before, +[class*=" qi-"]::before { + display: inline-block; + font-family: "qweather-icons" !important; + font-style: normal; + font-weight: normal !important; + font-variant: normal; + text-transform: none; + line-height: 1; + vertical-align: -.125em; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.qi-100::before { content: "\f101"; } +.qi-101::before { content: "\f102"; } +.qi-102::before { content: "\f103"; } +.qi-103::before { content: "\f104"; } +.qi-104::before { content: "\f105"; } +.qi-150::before { content: "\f106"; } +.qi-151::before { content: "\f107"; } +.qi-152::before { content: "\f108"; } +.qi-153::before { content: "\f109"; } +.qi-300::before { content: "\f10a"; } +.qi-301::before { content: "\f10b"; } +.qi-302::before { content: "\f10c"; } +.qi-303::before { content: "\f10d"; } +.qi-304::before { content: "\f10e"; } +.qi-305::before { content: "\f10f"; } +.qi-306::before { content: "\f110"; } +.qi-307::before { content: "\f111"; } +.qi-308::before { content: "\f112"; } +.qi-309::before { content: "\f113"; } +.qi-310::before { content: "\f114"; } +.qi-311::before { content: "\f115"; } +.qi-312::before { content: "\f116"; } +.qi-313::before { content: "\f117"; } +.qi-314::before { content: "\f118"; } +.qi-315::before { content: "\f119"; } +.qi-316::before { content: "\f11a"; } +.qi-317::before { content: "\f11b"; } +.qi-318::before { content: "\f11c"; } +.qi-350::before { content: "\f11d"; } +.qi-351::before { content: "\f11e"; } +.qi-399::before { content: "\f11f"; } +.qi-400::before { content: "\f120"; } +.qi-401::before { content: "\f121"; } +.qi-402::before { content: "\f122"; } +.qi-403::before { content: "\f123"; } +.qi-404::before { content: "\f124"; } +.qi-405::before { content: "\f125"; } +.qi-406::before { content: "\f126"; } +.qi-407::before { content: "\f127"; } +.qi-408::before { content: "\f128"; } +.qi-409::before { content: "\f129"; } +.qi-410::before { content: "\f12a"; } +.qi-456::before { content: "\f12b"; } +.qi-457::before { content: "\f12c"; } +.qi-499::before { content: "\f12d"; } +.qi-500::before { content: "\f12e"; } +.qi-501::before { content: "\f12f"; } +.qi-502::before { content: "\f130"; } +.qi-503::before { content: "\f131"; } +.qi-504::before { content: "\f132"; } +.qi-507::before { content: "\f133"; } +.qi-508::before { content: "\f134"; } +.qi-509::before { content: "\f135"; } +.qi-510::before { content: "\f136"; } +.qi-511::before { content: "\f137"; } +.qi-512::before { content: "\f138"; } +.qi-513::before { content: "\f139"; } +.qi-514::before { content: "\f13a"; } +.qi-515::before { content: "\f13b"; } +.qi-800::before { content: "\f13c"; } +.qi-801::before { content: "\f13d"; } +.qi-802::before { content: "\f13e"; } +.qi-803::before { content: "\f13f"; } +.qi-804::before { content: "\f140"; } +.qi-805::before { content: "\f141"; } +.qi-806::before { content: "\f142"; } +.qi-807::before { content: "\f143"; } +.qi-900::before { content: "\f144"; } +.qi-901::before { content: "\f145"; } +.qi-999::before { content: "\f146"; } +.qi-1001::before { content: "\f147"; } +.qi-1002::before { content: "\f148"; } +.qi-1003::before { content: "\f149"; } +.qi-1004::before { content: "\f14a"; } +.qi-1005::before { content: "\f14b"; } +.qi-1006::before { content: "\f14c"; } +.qi-1007::before { content: "\f14d"; } +.qi-1008::before { content: "\f14e"; } +.qi-1009::before { content: "\f14f"; } +.qi-1010::before { content: "\f150"; } +.qi-1011::before { content: "\f151"; } +.qi-1012::before { content: "\f152"; } +.qi-1013::before { content: "\f153"; } +.qi-1014::before { content: "\f154"; } +.qi-1015::before { content: "\f155"; } +.qi-1016::before { content: "\f156"; } +.qi-1017::before { content: "\f157"; } +.qi-1018::before { content: "\f158"; } +.qi-1019::before { content: "\f159"; } +.qi-1020::before { content: "\f15a"; } +.qi-1021::before { content: "\f15b"; } +.qi-1022::before { content: "\f15c"; } +.qi-1023::before { content: "\f15d"; } +.qi-1024::before { content: "\f15e"; } +.qi-1025::before { content: "\f15f"; } +.qi-1026::before { content: "\f160"; } +.qi-1027::before { content: "\f161"; } +.qi-1028::before { content: "\f162"; } +.qi-1029::before { content: "\f163"; } +.qi-1030::before { content: "\f164"; } +.qi-1031::before { content: "\f165"; } +.qi-1032::before { content: "\f166"; } +.qi-1033::before { content: "\f167"; } +.qi-1034::before { content: "\f168"; } +.qi-1035::before { content: "\f169"; } +.qi-1036::before { content: "\f16a"; } +.qi-1037::before { content: "\f16b"; } +.qi-1038::before { content: "\f16c"; } +.qi-1039::before { content: "\f16d"; } +.qi-1040::before { content: "\f16e"; } +.qi-1041::before { content: "\f16f"; } +.qi-1042::before { content: "\f170"; } +.qi-1043::before { content: "\f171"; } +.qi-1044::before { content: "\f172"; } +.qi-1045::before { content: "\f173"; } +.qi-1046::before { content: "\f174"; } +.qi-1047::before { content: "\f175"; } +.qi-1048::before { content: "\f176"; } +.qi-1049::before { content: "\f177"; } +.qi-1050::before { content: "\f178"; } +.qi-1051::before { content: "\f179"; } +.qi-1052::before { content: "\f17a"; } +.qi-1053::before { content: "\f17b"; } +.qi-1054::before { content: "\f17c"; } +.qi-1055::before { content: "\f17d"; } +.qi-1056::before { content: "\f17e"; } +.qi-1057::before { content: "\f17f"; } +.qi-1058::before { content: "\f180"; } +.qi-1059::before { content: "\f181"; } +.qi-1060::before { content: "\f182"; } +.qi-1061::before { content: "\f183"; } +.qi-1062::before { content: "\f184"; } +.qi-1063::before { content: "\f185"; } +.qi-1064::before { content: "\f186"; } +.qi-1065::before { content: "\f187"; } +.qi-1066::before { content: "\f188"; } +.qi-1067::before { content: "\f189"; } +.qi-1068::before { content: "\f18a"; } +.qi-1069::before { content: "\f18b"; } +.qi-1071::before { content: "\f18c"; } +.qi-1072::before { content: "\f18d"; } +.qi-1073::before { content: "\f18e"; } +.qi-1074::before { content: "\f18f"; } +.qi-1075::before { content: "\f190"; } +.qi-1076::before { content: "\f191"; } +.qi-1077::before { content: "\f192"; } +.qi-1078::before { content: "\f193"; } +.qi-1079::before { content: "\f194"; } +.qi-1080::before { content: "\f195"; } +.qi-1081::before { content: "\f196"; } +.qi-1082::before { content: "\f197"; } +.qi-1084::before { content: "\f198"; } +.qi-1085::before { content: "\f199"; } +.qi-1086::before { content: "\f19a"; } +.qi-1087::before { content: "\f19b"; } +.qi-1088::before { content: "\f19c"; } +.qi-1089::before { content: "\f19d"; } +.qi-1201::before { content: "\f2c5"; } +.qi-1202::before { content: "\f2c6"; } +.qi-1203::before { content: "\f2c7"; } +.qi-1204::before { content: "\f2c8"; } +.qi-1205::before { content: "\f2c9"; } +.qi-1206::before { content: "\f2ca"; } +.qi-1207::before { content: "\f2cb"; } +.qi-1208::before { content: "\f2cc"; } +.qi-1209::before { content: "\f2cd"; } +.qi-1210::before { content: "\f2ce"; } +.qi-1211::before { content: "\f2cf"; } +.qi-1212::before { content: "\f2d0"; } +.qi-1213::before { content: "\f2d1"; } +.qi-1214::before { content: "\f2d2"; } +.qi-1215::before { content: "\f2d3"; } +.qi-1216::before { content: "\f2d4"; } +.qi-1217::before { content: "\f2d5"; } +.qi-1218::before { content: "\f2d6"; } +.qi-1219::before { content: "\f2d7"; } +.qi-1221::before { content: "\f2d8"; } +.qi-1241::before { content: "\f2d9"; } +.qi-1242::before { content: "\f2da"; } +.qi-1243::before { content: "\f2db"; } +.qi-1244::before { content: "\f2dc"; } +.qi-1245::before { content: "\f2dd"; } +.qi-1246::before { content: "\f2de"; } +.qi-1247::before { content: "\f2df"; } +.qi-1248::before { content: "\f2e0"; } +.qi-1249::before { content: "\f2e1"; } +.qi-1250::before { content: "\f2e2"; } +.qi-1251::before { content: "\f2e3"; } +.qi-1271::before { content: "\f2f6"; } +.qi-1272::before { content: "\f2f7"; } +.qi-1273::before { content: "\f2f8"; } +.qi-1274::before { content: "\f2f9"; } +.qi-1601::before { content: "\f1a1"; } +.qi-1602::before { content: "\f1a2"; } +.qi-1603::before { content: "\f1a3"; } +.qi-1604::before { content: "\f1a4"; } +.qi-1605::before { content: "\f1a5"; } +.qi-1606::before { content: "\f1a6"; } +.qi-1607::before { content: "\f1a7"; } +.qi-1608::before { content: "\f20c"; } +.qi-1609::before { content: "\f20d"; } +.qi-1610::before { content: "\f20e"; } +.qi-1701::before { content: "\f1a8"; } +.qi-1702::before { content: "\f1a9"; } +.qi-1703::before { content: "\f1aa"; } +.qi-1801::before { content: "\f20f"; } +.qi-1802::before { content: "\f210"; } +.qi-1803::before { content: "\f211"; } +.qi-1804::before { content: "\f212"; } +.qi-1805::before { content: "\f213"; } +.qi-2001::before { content: "\f1ab"; } +.qi-2002::before { content: "\f1ac"; } +.qi-2003::before { content: "\f1ad"; } +.qi-2004::before { content: "\f1ae"; } +.qi-2005::before { content: "\f1af"; } +.qi-2006::before { content: "\f1b0"; } +.qi-2007::before { content: "\f1b1"; } +.qi-2029::before { content: "\f214"; } +.qi-2030::before { content: "\f215"; } +.qi-2031::before { content: "\f216"; } +.qi-2032::before { content: "\f217"; } +.qi-2033::before { content: "\f218"; } +.qi-2050::before { content: "\f219"; } +.qi-2051::before { content: "\f21a"; } +.qi-2052::before { content: "\f1c7"; } +.qi-2053::before { content: "\f1c8"; } +.qi-2054::before { content: "\f1c9"; } +.qi-2070::before { content: "\f21b"; } +.qi-2071::before { content: "\f21c"; } +.qi-2072::before { content: "\f21d"; } +.qi-2073::before { content: "\f21e"; } +.qi-2074::before { content: "\f21f"; } +.qi-2075::before { content: "\f220"; } +.qi-2076::before { content: "\f221"; } +.qi-2077::before { content: "\f222"; } +.qi-2078::before { content: "\f223"; } +.qi-2079::before { content: "\f224"; } +.qi-2080::before { content: "\f225"; } +.qi-2081::before { content: "\f226"; } +.qi-2082::before { content: "\f227"; } +.qi-2083::before { content: "\f228"; } +.qi-2084::before { content: "\f229"; } +.qi-2085::before { content: "\f22a"; } +.qi-2100::before { content: "\f22b"; } +.qi-2101::before { content: "\f22c"; } +.qi-2102::before { content: "\f22d"; } +.qi-2103::before { content: "\f22e"; } +.qi-2104::before { content: "\f22f"; } +.qi-2105::before { content: "\f230"; } +.qi-2106::before { content: "\f231"; } +.qi-2107::before { content: "\f232"; } +.qi-2108::before { content: "\f233"; } +.qi-2109::before { content: "\f234"; } +.qi-2111::before { content: "\f235"; } +.qi-2120::before { content: "\f236"; } +.qi-2121::before { content: "\f237"; } +.qi-2122::before { content: "\f238"; } +.qi-2123::before { content: "\f239"; } +.qi-2124::before { content: "\f23a"; } +.qi-2125::before { content: "\f23b"; } +.qi-2126::before { content: "\f23c"; } +.qi-2127::before { content: "\f23d"; } +.qi-2128::before { content: "\f23e"; } +.qi-2129::before { content: "\f23f"; } +.qi-2130::before { content: "\f240"; } +.qi-2131::before { content: "\f241"; } +.qi-2132::before { content: "\f242"; } +.qi-2133::before { content: "\f243"; } +.qi-2134::before { content: "\f244"; } +.qi-2135::before { content: "\f245"; } +.qi-2150::before { content: "\f246"; } +.qi-2151::before { content: "\f247"; } +.qi-2152::before { content: "\f248"; } +.qi-2153::before { content: "\f249"; } +.qi-2154::before { content: "\f24a"; } +.qi-2155::before { content: "\f24b"; } +.qi-2156::before { content: "\f24c"; } +.qi-2157::before { content: "\f24d"; } +.qi-2158::before { content: "\f24e"; } +.qi-2159::before { content: "\f24f"; } +.qi-2160::before { content: "\f250"; } +.qi-2161::before { content: "\f251"; } +.qi-2162::before { content: "\f252"; } +.qi-2163::before { content: "\f253"; } +.qi-2164::before { content: "\f254"; } +.qi-2165::before { content: "\f255"; } +.qi-2166::before { content: "\f256"; } +.qi-2190::before { content: "\f257"; } +.qi-2191::before { content: "\f258"; } +.qi-2192::before { content: "\f259"; } +.qi-2193::before { content: "\f25a"; } +.qi-2200::before { content: "\f2e4"; } +.qi-2201::before { content: "\f2e5"; } +.qi-2202::before { content: "\f2e6"; } +.qi-2203::before { content: "\f2e7"; } +.qi-2204::before { content: "\f2e8"; } +.qi-2205::before { content: "\f2e9"; } +.qi-2207::before { content: "\f2ea"; } +.qi-2208::before { content: "\f2eb"; } +.qi-2209::before { content: "\f2ec"; } +.qi-2210::before { content: "\f2ed"; } +.qi-2211::before { content: "\f2ee"; } +.qi-2212::before { content: "\f2ef"; } +.qi-2213::before { content: "\f2f0"; } +.qi-2214::before { content: "\f2f1"; } +.qi-2215::before { content: "\f2f2"; } +.qi-2216::before { content: "\f2f3"; } +.qi-2217::before { content: "\f2f4"; } +.qi-2218::before { content: "\f2f5"; } +.qi-2300::before { content: "\f25b"; } +.qi-2301::before { content: "\f25c"; } +.qi-2302::before { content: "\f25d"; } +.qi-2303::before { content: "\f25e"; } +.qi-2304::before { content: "\f25f"; } +.qi-2305::before { content: "\f260"; } +.qi-2306::before { content: "\f261"; } +.qi-2307::before { content: "\f262"; } +.qi-2308::before { content: "\f263"; } +.qi-2309::before { content: "\f264"; } +.qi-2311::before { content: "\f265"; } +.qi-2312::before { content: "\f266"; } +.qi-2313::before { content: "\f267"; } +.qi-2314::before { content: "\f268"; } +.qi-2315::before { content: "\f269"; } +.qi-2316::before { content: "\f26a"; } +.qi-2317::before { content: "\f26b"; } +.qi-2318::before { content: "\f26c"; } +.qi-2319::before { content: "\f26d"; } +.qi-2320::before { content: "\f26e"; } +.qi-2321::before { content: "\f26f"; } +.qi-2322::before { content: "\f270"; } +.qi-2323::before { content: "\f271"; } +.qi-2324::before { content: "\f272"; } +.qi-2325::before { content: "\f273"; } +.qi-2326::before { content: "\f274"; } +.qi-2327::before { content: "\f275"; } +.qi-2328::before { content: "\f276"; } +.qi-2330::before { content: "\f277"; } +.qi-2331::before { content: "\f278"; } +.qi-2332::before { content: "\f279"; } +.qi-2333::before { content: "\f27a"; } +.qi-2341::before { content: "\f27b"; } +.qi-2343::before { content: "\f27c"; } +.qi-2345::before { content: "\f27d"; } +.qi-2346::before { content: "\f27e"; } +.qi-2348::before { content: "\f27f"; } +.qi-2349::before { content: "\f280"; } +.qi-2350::before { content: "\f281"; } +.qi-2351::before { content: "\f282"; } +.qi-2352::before { content: "\f283"; } +.qi-2353::before { content: "\f284"; } +.qi-2354::before { content: "\f285"; } +.qi-2355::before { content: "\f286"; } +.qi-2356::before { content: "\f287"; } +.qi-2357::before { content: "\f288"; } +.qi-2358::before { content: "\f289"; } +.qi-2359::before { content: "\f28a"; } +.qi-2360::before { content: "\f28b"; } +.qi-2361::before { content: "\f28c"; } +.qi-2362::before { content: "\f28d"; } +.qi-2363::before { content: "\f28e"; } +.qi-2364::before { content: "\f28f"; } +.qi-2365::before { content: "\f290"; } +.qi-2366::before { content: "\f291"; } +.qi-2367::before { content: "\f292"; } +.qi-2368::before { content: "\f293"; } +.qi-2369::before { content: "\f294"; } +.qi-2370::before { content: "\f295"; } +.qi-2371::before { content: "\f296"; } +.qi-2372::before { content: "\f297"; } +.qi-2373::before { content: "\f298"; } +.qi-2374::before { content: "\f299"; } +.qi-2375::before { content: "\f29a"; } +.qi-2376::before { content: "\f29b"; } +.qi-2377::before { content: "\f29c"; } +.qi-2378::before { content: "\f29d"; } +.qi-2379::before { content: "\f29e"; } +.qi-2380::before { content: "\f29f"; } +.qi-2381::before { content: "\f2a0"; } +.qi-2382::before { content: "\f2a1"; } +.qi-2383::before { content: "\f2a2"; } +.qi-2384::before { content: "\f2a3"; } +.qi-2385::before { content: "\f2a4"; } +.qi-2386::before { content: "\f2a5"; } +.qi-2387::before { content: "\f2a6"; } +.qi-2388::before { content: "\f2a7"; } +.qi-2389::before { content: "\f2a8"; } +.qi-2390::before { content: "\f2a9"; } +.qi-2391::before { content: "\f2aa"; } +.qi-2392::before { content: "\f2ab"; } +.qi-2393::before { content: "\f2ac"; } +.qi-2394::before { content: "\f2ad"; } +.qi-2395::before { content: "\f2ae"; } +.qi-2396::before { content: "\f2af"; } +.qi-2397::before { content: "\f2b0"; } +.qi-2398::before { content: "\f2b1"; } +.qi-2399::before { content: "\f2b2"; } +.qi-2400::before { content: "\f2b3"; } +.qi-2409::before { content: "\f2b4"; } +.qi-2411::before { content: "\f2b5"; } +.qi-2412::before { content: "\f2b6"; } +.qi-2413::before { content: "\f2b7"; } +.qi-2414::before { content: "\f2b8"; } +.qi-2415::before { content: "\f2b9"; } +.qi-2416::before { content: "\f2ba"; } +.qi-2417::before { content: "\f2bb"; } +.qi-2418::before { content: "\f2bc"; } +.qi-2419::before { content: "\f2bd"; } +.qi-2420::before { content: "\f2be"; } +.qi-2421::before { content: "\f2bf"; } +.qi-2422::before { content: "\f2c0"; } +.qi-2423::before { content: "\f2c1"; } +.qi-2424::before { content: "\f2c2"; } +.qi-2425::before { content: "\f2c3"; } +.qi-2426::before { content: "\f2c4"; } +.qi-9998::before { content: "\f1ca"; } +.qi-9999::before { content: "\f1cb"; } +.qi-100-fill::before { content: "\f1cc"; } +.qi-101-fill::before { content: "\f1cd"; } +.qi-102-fill::before { content: "\f1ce"; } +.qi-103-fill::before { content: "\f1cf"; } +.qi-104-fill::before { content: "\f1d0"; } +.qi-150-fill::before { content: "\f1d1"; } +.qi-151-fill::before { content: "\f1d2"; } +.qi-152-fill::before { content: "\f1d3"; } +.qi-153-fill::before { content: "\f1d4"; } +.qi-300-fill::before { content: "\f1d5"; } +.qi-301-fill::before { content: "\f1d6"; } +.qi-302-fill::before { content: "\f1d7"; } +.qi-303-fill::before { content: "\f1d8"; } +.qi-304-fill::before { content: "\f1d9"; } +.qi-305-fill::before { content: "\f1da"; } +.qi-306-fill::before { content: "\f1db"; } +.qi-307-fill::before { content: "\f1dc"; } +.qi-308-fill::before { content: "\f1dd"; } +.qi-309-fill::before { content: "\f1de"; } +.qi-310-fill::before { content: "\f1df"; } +.qi-311-fill::before { content: "\f1e0"; } +.qi-312-fill::before { content: "\f1e1"; } +.qi-313-fill::before { content: "\f1e2"; } +.qi-314-fill::before { content: "\f1e3"; } +.qi-315-fill::before { content: "\f1e4"; } +.qi-316-fill::before { content: "\f1e5"; } +.qi-317-fill::before { content: "\f1e6"; } +.qi-318-fill::before { content: "\f1e7"; } +.qi-350-fill::before { content: "\f1e8"; } +.qi-351-fill::before { content: "\f1e9"; } +.qi-399-fill::before { content: "\f1ea"; } +.qi-400-fill::before { content: "\f1eb"; } +.qi-401-fill::before { content: "\f1ec"; } +.qi-402-fill::before { content: "\f1ed"; } +.qi-403-fill::before { content: "\f1ee"; } +.qi-404-fill::before { content: "\f1ef"; } +.qi-405-fill::before { content: "\f1f0"; } +.qi-406-fill::before { content: "\f1f1"; } +.qi-407-fill::before { content: "\f1f2"; } +.qi-408-fill::before { content: "\f1f3"; } +.qi-409-fill::before { content: "\f1f4"; } +.qi-410-fill::before { content: "\f1f5"; } +.qi-456-fill::before { content: "\f1f6"; } +.qi-457-fill::before { content: "\f1f7"; } +.qi-499-fill::before { content: "\f1f8"; } +.qi-500-fill::before { content: "\f1f9"; } +.qi-501-fill::before { content: "\f1fa"; } +.qi-502-fill::before { content: "\f1fb"; } +.qi-503-fill::before { content: "\f1fc"; } +.qi-504-fill::before { content: "\f1fd"; } +.qi-507-fill::before { content: "\f1fe"; } +.qi-508-fill::before { content: "\f1ff"; } +.qi-509-fill::before { content: "\f200"; } +.qi-510-fill::before { content: "\f201"; } +.qi-511-fill::before { content: "\f202"; } +.qi-512-fill::before { content: "\f203"; } +.qi-513-fill::before { content: "\f204"; } +.qi-514-fill::before { content: "\f205"; } +.qi-515-fill::before { content: "\f206"; } +.qi-900-fill::before { content: "\f207"; } +.qi-901-fill::before { content: "\f208"; } +.qi-999-fill::before { content: "\f209"; } +.qi-qweather-fill::before { content: "\f20a"; } +.qi-qweather::before { content: "\f20b"; } +.qi-sunny::before { content: "\f101"; } +.qi-cloudy::before { content: "\f102"; } +.qi-few-clouds::before { content: "\f103"; } +.qi-partly-cloudy::before { content: "\f104"; } +.qi-overcast::before { content: "\f105"; } +.qi-clear-night::before { content: "\f106"; } +.qi-cloudy-night::before { content: "\f107"; } +.qi-few-clouds-night::before { content: "\f108"; } +.qi-partly-cloudy-night::before { content: "\f109"; } +.qi-shower-rain::before { content: "\f10a"; } +.qi-heavy-shower-rain::before { content: "\f10b"; } +.qi-thundershower::before { content: "\f10c"; } +.qi-heavy-thunderstorm::before { content: "\f10d"; } +.qi-thundershower-with-hail::before { content: "\f10e"; } +.qi-light-rain::before { content: "\f10f"; } +.qi-moderate-rain::before { content: "\f110"; } +.qi-heavy-rain::before { content: "\f111"; } +.qi-extreme-rain::before { content: "\f112"; } +.qi-drizzle-rain::before { content: "\f113"; } +.qi-storm::before { content: "\f114"; } +.qi-heavy-storm::before { content: "\f115"; } +.qi-severe-storm::before { content: "\f116"; } +.qi-freezing-rain::before { content: "\f117"; } +.qi-light-to-moderate-rain::before { content: "\f118"; } +.qi-moderate-to-heavy-rain::before { content: "\f119"; } +.qi-heavy-rain-to-storm::before { content: "\f11a"; } +.qi-storm-to-heavy-storm::before { content: "\f11b"; } +.qi-heavy-to-severe-storm::before { content: "\f11c"; } +.qi-shower-rain-night::before { content: "\f11d"; } +.qi-heavy-shower-rain-night::before { content: "\f11e"; } +.qi-rain::before { content: "\f11f"; } +.qi-light-snow::before { content: "\f120"; } +.qi-moderate-snow::before { content: "\f121"; } +.qi-heavy-snow::before { content: "\f122"; } +.qi-snowstorm::before { content: "\f123"; } +.qi-sleet::before { content: "\f124"; } +.qi-rain-and-snow::before { content: "\f125"; } +.qi-shower-snow::before { content: "\f126"; } +.qi-snow-flurry::before { content: "\f127"; } +.qi-light-to-moderate-snow::before { content: "\f128"; } +.qi-moderate-to-heavy-snow::before { content: "\f129"; } +.qi-heavy-snow-to-snowstorm::before { content: "\f12a"; } +.qi-shower-snow-night::before { content: "\f12b"; } +.qi-snow-flurry-night::before { content: "\f12c"; } +.qi-snow::before { content: "\f12d"; } +.qi-mist::before { content: "\f12e"; } +.qi-foggy::before { content: "\f12f"; } +.qi-haze::before { content: "\f130"; } +.qi-sand::before { content: "\f131"; } +.qi-dust::before { content: "\f132"; } +.qi-duststorm::before { content: "\f133"; } +.qi-sandstorm::before { content: "\f134"; } +.qi-dense-fog::before { content: "\f135"; } +.qi-strong-fog::before { content: "\f136"; } +.qi-moderate-haze::before { content: "\f137"; } +.qi-heavy-haze::before { content: "\f138"; } +.qi-severe-haze::before { content: "\f139"; } +.qi-heavy-fog::before { content: "\f13a"; } +.qi-extra-heavy-fog::before { content: "\f13b"; } +.qi-new-moon::before { content: "\f13c"; } +.qi-waxing-crescent::before { content: "\f13d"; } +.qi-first-quarter::before { content: "\f13e"; } +.qi-waxing-gibbous::before { content: "\f13f"; } +.qi-full-moon::before { content: "\f140"; } +.qi-waning-gibbous::before { content: "\f141"; } +.qi-last-quarter::before { content: "\f142"; } +.qi-waning-crescent::before { content: "\f143"; } +.qi-hot::before { content: "\f144"; } +.qi-cold::before { content: "\f145"; } +.qi-unknown::before { content: "\f146"; } +.qi-typhoon::before { content: "\f147"; } +.qi-tornado::before { content: "\f148"; } +.qi-rainstorm::before { content: "\f149"; } +.qi-snow-storm::before { content: "\f14a"; } +.qi-cold-wave::before { content: "\f14b"; } +.qi-gale::before { content: "\f14c"; } +.qi-sandstorm-warning::before { content: "\f14d"; } +.qi-low-temperature-freeze::before { content: "\f14e"; } +.qi-high-temperature::before { content: "\f14f"; } +.qi-heat-wave::before { content: "\f150"; } +.qi-dry-hot-wind::before { content: "\f151"; } +.qi-downburst::before { content: "\f152"; } +.qi-avalanche::before { content: "\f153"; } +.qi-lightning::before { content: "\f154"; } +.qi-hail::before { content: "\f155"; } +.qi-frost::before { content: "\f156"; } +.qi-heavy-fog-warning::before { content: "\f157"; } +.qi-low-level-wind-shearl::before { content: "\f158"; } +.qi-haze-warning::before { content: "\f159"; } +.qi-thunder-gust::before { content: "\f15a"; } +.qi-road-icing::before { content: "\f15b"; } +.qi-drought::before { content: "\f15c"; } +.qi-gale-at-sea::before { content: "\f15d"; } +.qi-heat-stroke::before { content: "\f15e"; } +.qi-wildfire::before { content: "\f15f"; } +.qi-grassland-fire::before { content: "\f160"; } +.qi-freeze::before { content: "\f161"; } +.qi-space-weather::before { content: "\f162"; } +.qi-heavy-air-pollution::before { content: "\f163"; } +.qi-low-temperature-rain-and-snow::before { content: "\f164"; } +.qi-strong-convection::before { content: "\f165"; } +.qi-ozone::before { content: "\f166"; } +.qi-heavy-snow-warning::before { content: "\f167"; } +.qi-cold-warning::before { content: "\f168"; } +.qi-continuous-rain::before { content: "\f169"; } +.qi-waterlogging::before { content: "\f16a"; } +.qi-geological-hazard::before { content: "\f16b"; } +.qi-heavy-rainfall::before { content: "\f16c"; } +.qi-severely-falling-temperature::before { content: "\f16d"; } +.qi-snow-disaster::before { content: "\f16e"; } +.qi-wildfire-grassland::before { content: "\f16f"; } +.qi-medical-meteorology::before { content: "\f170"; } +.qi-thunderstorm::before { content: "\f171"; } +.qi-school-closure::before { content: "\f172"; } +.qi-factory-closure::before { content: "\f173"; } +.qi-maritime-risk::before { content: "\f174"; } +.qi-spring-dust::before { content: "\f175"; } +.qi-falling-temperature::before { content: "\f176"; } +.qi-typhoon-and-rainstorm::before { content: "\f177"; } +.qi-severe-cold::before { content: "\f178"; } +.qi-sand-dust::before { content: "\f179"; } +.qi-sea-thunderstorms::before { content: "\f17a"; } +.qi-sea-fog::before { content: "\f17b"; } +.qi-sea-thunder::before { content: "\f17c"; } +.qi-sea-typhoon::before { content: "\f17d"; } +.qi-low-temperature::before { content: "\f17e"; } +.qi-road-ice-and-snow::before { content: "\f17f"; } +.qi-thunderstorm-and-gale::before { content: "\f180"; } +.qi-continuous-low-temperature::before { content: "\f181"; } +.qi-low-visibility::before { content: "\f182"; } +.qi-strong-dust::before { content: "\f183"; } +.qi-gale-in-sea-area::before { content: "\f184"; } +.qi-short-duration-heavy-shower-rain::before { content: "\f185"; } +.qi-short-lived-heavy-shower-rain::before { content: "\f186"; } +.qi-sea-area-fog::before { content: "\f187"; } +.qi-heat-stroke-conditions::before { content: "\f188"; } +.qi-heavy-pollution-weather::before { content: "\f189"; } +.qi-co-poisoning-weather-conditions::before { content: "\f18a"; } +.qi-respiratory-disease-weather-wonditions::before { content: "\f18b"; } +.qi-intestinal-disease-weather-wonditions::before { content: "\f18c"; } +.qi-cardiovascular-disease-weather-wonditions::before { content: "\f18d"; } +.qi-flooding-weather-risk::before { content: "\f18e"; } +.qi-heavy-pollution-weather-conditions::before { content: "\f18f"; } +.qi-urban-flooding-weather-risk::before { content: "\f190"; } +.qi-flooding-weather-risk-2::before { content: "\f191"; } +.qi-wildfire-weather-risk::before { content: "\f192"; } +.qi-meteorological-drought::before { content: "\f193"; } +.qi-agricultural-weather-risk::before { content: "\f194"; } +.qi-strong-monsoon::before { content: "\f195"; } +.qi-ice-accretion-on-wire::before { content: "\f196"; } +.qi-stroke-weather-risk::before { content: "\f197"; } +.qi-wildfire-grassland-risk::before { content: "\f198"; } +.qi-thunderstorm-and-strong-winds::before { content: "\f199"; } +.qi-low-temperature-freeze2::before { content: "\f19a"; } +.qi-low-temperature-damage::before { content: "\f19b"; } +.qi-national-agricultural-meteorological-risk::before { content: "\f19c"; } +.qi-dry-hot-wind-risk-for-winter-wheat::before { content: "\f19d"; } +.qi-flood::before { content: "\f2c5"; } +.qi-urban-flooding::before { content: "\f2c6"; } +.qi-reservoir-danger::before { content: "\f2c7"; } +.qi-dike-danger::before { content: "\f2c8"; } +.qi-ice-flood::before { content: "\f2c9"; } +.qi-waterlogging2::before { content: "\f2ca"; } +.qi-flood-and-waterlogging::before { content: "\f2cb"; } +.qi-dry-water::before { content: "\f2cc"; } +.qi-flood-and-flash-flood-in-small-and-medium-rivers::before { content: "\f2cd"; } +.qi-difficulty-drinking-water-for-rural-people-and-animals::before { content: "\f2ce"; } +.qi-flood-in-small-and-medium-rivers::before { content: "\f2cf"; } +.qi-flood-and-drought-advisory::before { content: "\f2d0"; } +.qi-urban-flood-risk::before { content: "\f2d1"; } +.qi-flash-flood::before { content: "\f2d2"; } +.qi-agricultural-drought::before { content: "\f2d3"; } +.qi-urban-water-shortage::before { content: "\f2d4"; } +.qi-ecological-drought::before { content: "\f2d5"; } +.qi-disaster-risk-early-warning::before { content: "\f2d6"; } +.qi-flash-flood-weather-risk::before { content: "\f2d7"; } +.qi-water-conservancy-and-drought::before { content: "\f2d8"; } +.qi-landslide::before { content: "\f2d9"; } +.qi-debris-flows::before { content: "\f2da"; } +.qi-landslide-event::before { content: "\f2db"; } +.qi-ground-collapses::before { content: "\f2dc"; } +.qi-ground-fissure::before { content: "\f2dd"; } +.qi-land-subsidence::before { content: "\f2de"; } +.qi-volcanic-eruption::before { content: "\f2df"; } +.qi-geological-hazard-weather-risk::before { content: "\f2e0"; } +.qi-geological-hazard-weather::before { content: "\f2e1"; } +.qi-geological-hazard2::before { content: "\f2e2"; } +.qi-geological-hazard-risk::before { content: "\f2e3"; } +.qi-air-pollution-incident::before { content: "\f2f6"; } +.qi-heavy-air-pollution-2::before { content: "\f2f7"; } +.qi-air-pollution::before { content: "\f2f8"; } +.qi-heavy-pollution-weather-2::before { content: "\f2f9"; } +.qi-very-hot-weather::before { content: "\f1a1"; } +.qi-strong-monsoon-signal::before { content: "\f1a2"; } +.qi-landslip::before { content: "\f1a3"; } +.qi-tropical-cyclone::before { content: "\f1a4"; } +.qi-fire-danger::before { content: "\f1a5"; } +.qi-flooding-in-the-northern-new-territories::before { content: "\f1a6"; } +.qi-cold-weather::before { content: "\f1a7"; } +.qi-thunderstorm2::before { content: "\f20c"; } +.qi-rainstorm2::before { content: "\f20d"; } +.qi-frost2::before { content: "\f20e"; } +.qi-cold-surge-advisory::before { content: "\f1a8"; } +.qi-strong-wind-advisory::before { content: "\f1a9"; } +.qi-rainfall-advisory::before { content: "\f1aa"; } +.qi-strong-monsoon-signal2::before { content: "\f20f"; } +.qi-storm-surge2::before { content: "\f210"; } +.qi-tropical-cyclone2::before { content: "\f211"; } +.qi-rainstorm3::before { content: "\f212"; } +.qi-thunderstorm3::before { content: "\f213"; } +.qi-wind-warning::before { content: "\f1ab"; } +.qi-snow-ice::before { content: "\f1ac"; } +.qi-fog::before { content: "\f1ad"; } +.qi-coastal-event::before { content: "\f1ae"; } +.qi-forest-fire::before { content: "\f1af"; } +.qi-rain-warning::before { content: "\f1b0"; } +.qi-rain-flood::before { content: "\f1b1"; } +.qi-thunderstorm4::before { content: "\f214"; } +.qi-high-temperature2::before { content: "\f215"; } +.qi-low-temperature2::before { content: "\f216"; } +.qi-avalanches::before { content: "\f217"; } +.qi-flooding::before { content: "\f218"; } +.qi-rain-warning2::before { content: "\f250"; } +.qi-wind::before { content: "\f21a"; } +.qi-snow-warning::before { content: "\f1c7"; } +.qi-zonda-wind::before { content: "\f1c8"; } +.qi-storm-warning::before { content: "\f1c9"; } +.qi-dust-raising-winds2::before { content: "\f21b"; } +.qi-strong-surface-winds2::before { content: "\f21c"; } +.qi-hot-day2::before { content: "\f21d"; } +.qi-warm-night2::before { content: "\f21e"; } +.qi-cold-day2::before { content: "\f21f"; } +.qi-thunderstorm-and-lightning2::before { content: "\f220"; } +.qi-hailstorm2::before { content: "\f221"; } +.qi-sea-area-warning2::before { content: "\f222"; } +.qi-fishermen-warning2::before { content: "\f223"; } +.qi-heavy-snow-warning2::before { content: "\f243"; } +.qi-dust-storm::before { content: "\f225"; } +.qi-heat-wave2::before { content: "\f226"; } +.qi-cold-wave2::before { content: "\f227"; } +.qi-fog2::before { content: "\f228"; } +.qi-heavy-rain-warning::before { content: "\f229"; } +.qi-ground-frost2::before { content: "\f22a"; } +.qi-fog3::before { content: "\f22b"; } +.qi-thunder-rain2::before { content: "\f22c"; } +.qi-thunder-storm::before { content: "\f22d"; } +.qi-light-rain-warning::before { content: "\f22e"; } +.qi-heavy-rain-warning2::before { content: "\f22f"; } +.qi-fresh-wind::before { content: "\f230"; } +.qi-thunderstorm-and-dust::before { content: "\f231"; } +.qi-dust-warning::before { content: "\f232"; } +.qi-high-wave::before { content: "\f233"; } +.qi-frost3::before { content: "\f234"; } +.qi-drop-in-visibility::before { content: "\f235"; } +.qi-low-humidity2::before { content: "\f236"; } +.qi-accumulated-rain2::before { content: "\f237"; } +.qi-cold-wave3::before { content: "\f238"; } +.qi-tornado2::before { content: "\f239"; } +.qi-thunderstorm5::before { content: "\f23a"; } +.qi-hail2::before { content: "\f23b"; } +.qi-heavy-rainfall2::before { content: "\f23c"; } +.qi-gale2::before { content: "\f23d"; } +.qi-heat-wave3::before { content: "\f23e"; } +.qi-cold-warning2::before { content: "\f23f"; } +.qi-frost4::before { content: "\f240"; } +.qi-drought2::before { content: "\f241"; } +.qi-forest-fire2::before { content: "\f242"; } +.qi-severely-falling-temperature2::before { content: "\f244"; } +.qi-rainstorm4::before { content: "\f245"; } +.qi-wind2::before { content: "\f246"; } +.qi-snow-ice2::before { content: "\f247"; } +.qi-freeze2::before { content: "\f248"; } +.qi-thunderstorms::before { content: "\f249"; } +.qi-fog4::before { content: "\f24a"; } +.qi-high-temperature3::before { content: "\f24b"; } +.qi-low-temperature3::before { content: "\f24c"; } +.qi-coastal-event2::before { content: "\f24d"; } +.qi-forest-fire3::before { content: "\f24e"; } +.qi-avalanches2::before { content: "\f24f"; } +.qi-flood2::before { content: "\f251"; } +.qi-rain-flood2::before { content: "\f252"; } +.qi-mudflow2::before { content: "\f253"; } +.qi-duststorm-warning::before { content: "\f254"; } +.qi-freezing-rain-and-icing::before { content: "\f255"; } +.qi-other-dangers::before { content: "\f256"; } +.qi-severe-thunderstorms::before { content: "\f257"; } +.qi-damaging-winds2::before { content: "\f258"; } +.qi-veld-fire-conditions2::before { content: "\f259"; } +.qi-weather-advisory2::before { content: "\f25a"; } +.qi-thunderstorm6::before { content: "\f2e4"; } +.qi-squall::before { content: "\f2e5"; } +.qi-air-quality::before { content: "\f2e6"; } +.qi-rainfall::before { content: "\f2e7"; } +.qi-fog5::before { content: "\f2e8"; } +.qi-heat::before { content: "\f2e9"; } +.qi-wildfire2::before { content: "\f2ea"; } +.qi-wind3::before { content: "\f2eb"; } +.qi-freezing-rain-warning::before { content: "\f2ec"; } +.qi-tornado3::before { content: "\f2ed"; } +.qi-blizzard::before { content: "\f2ee"; } +.qi-weather-warning::before { content: "\f2ef"; } +.qi-winter-storm::before { content: "\f2f0"; } +.qi-freezing-drizzle::before { content: "\f2f1"; } +.qi-snowfall::before { content: "\f2f2"; } +.qi-blowing-snow::before { content: "\f2f3"; } +.qi-extreme-cold::before { content: "\f2f4"; } +.qi-frost5::before { content: "\f2f5"; } +.qi-hazardous-seas-warning::before { content: "\f25b"; } +.qi-heavy-freezing-spray-warning::before { content: "\f25c"; } +.qi-red-flag-warning::before { content: "\f25d"; } +.qi-freeze-warning::before { content: "\f25e"; } +.qi-hard-freeze-warning::before { content: "\f25f"; } +.qi-extreme-cold-warning::before { content: "\f260"; } +.qi-wind-chill-warning::before { content: "\f261"; } +.qi-gale-warning::before { content: "\f262"; } +.qi-excessive-heat-warning::before { content: "\f263"; } +.qi-lake-effect-snow-warning::before { content: "\f264"; } +.qi-blowing-dust-warning::before { content: "\f265"; } +.qi-dust-storm-warning::before { content: "\f266"; } +.qi-storm-warning2::before { content: "\f267"; } +.qi-tropical-storm-warning::before { content: "\f268"; } +.qi-high-wind-warning::before { content: "\f269"; } +.qi-high-surf-warning::before { content: "\f26a"; } +.qi-flood-warning::before { content: "\f26b"; } +.qi-lakeshore-flood-warning::before { content: "\f26c"; } +.qi-coastal-flood-warning::before { content: "\f26d"; } +.qi-ashfall-warning::before { content: "\f26e"; } +.qi-volcano-warning::before { content: "\f26f"; } +.qi-earthquake-warning::before { content: "\f270"; } +.qi-avalanche-warning::before { content: "\f271"; } +.qi-winter-storm-warning::before { content: "\f272"; } +.qi-ice-storm-warning::before { content: "\f273"; } +.qi-snow-squall-warning::before { content: "\f274"; } +.qi-blizzard-warning::before { content: "\f275"; } +.qi-special-marine-warning::before { content: "\f276"; } +.qi-typhoon-warning::before { content: "\f277"; } +.qi-hurricane-warning::before { content: "\f278"; } +.qi-hurricane-force-wind-warning::before { content: "\f279"; } +.qi-storm-surge-warning::before { content: "\f27a"; } +.qi-flash-flood-warning::before { content: "\f27b"; } +.qi-severe-thunderstorm-warning::before { content: "\f27c"; } +.qi-extreme-wind-warning::before { content: "\f27d"; } +.qi-tornado-warning::before { content: "\f27e"; } +.qi-tsunami-warning::before { content: "\f27f"; } +.qi-fire-weather-watch::before { content: "\f280"; } +.qi-freeze-watch::before { content: "\f281"; } +.qi-hard-freeze-watch::before { content: "\f282"; } +.qi-wind-chill-watch::before { content: "\f283"; } +.qi-extreme-cold-watch::before { content: "\f284"; } +.qi-excessive-heat-watch::before { content: "\f285"; } +.qi-high-wind-watch::before { content: "\f286"; } +.qi-flood-watch::before { content: "\f287"; } +.qi-lakeshore-flood-watch::before { content: "\f288"; } +.qi-coastal-flood-watch::before { content: "\f289"; } +.qi-heavy-freezing-spray-watch::before { content: "\f28a"; } +.qi-hazardous-seas-watch::before { content: "\f28b"; } +.qi-winter-storm-watch::before { content: "\f28c"; } +.qi-gale-watch::before { content: "\f28d"; } +.qi-avalanche-watch::before { content: "\f28e"; } +.qi-storm-watch::before { content: "\f28f"; } +.qi-tropical-storm-watch::before { content: "\f290"; } +.qi-typhoon-watch::before { content: "\f291"; } +.qi-hurricane-force-wind-watch::before { content: "\f292"; } +.qi-hurricane-watch::before { content: "\f293"; } +.qi-storm-surge-watch::before { content: "\f294"; } +.qi-flash-flood-watch::before { content: "\f295"; } +.qi-severe-thunderstorm-watch::before { content: "\f296"; } +.qi-tornado-watch::before { content: "\f297"; } +.qi-tsunami-watch::before { content: "\f298"; } +.qi-air-stagnation-advisory::before { content: "\f299"; } +.qi-low-water-advisory::before { content: "\f29a"; } +.qi-freezing-spray-advisory::before { content: "\f29b"; } +.qi-freezing-fog-advisory::before { content: "\f29c"; } +.qi-ashfall-advisory::before { content: "\f29d"; } +.qi-frost-advisory::before { content: "\f29e"; } +.qi-wind-advisory::before { content: "\f29f"; } +.qi-lake-wind-advisory::before { content: "\f2a0"; } +.qi-blowing-dust-advisory::before { content: "\f2a1"; } +.qi-dust-advisory::before { content: "\f2a2"; } +.qi-brisk-wind-advisory::before { content: "\f2a3"; } +.qi-small-craft-advisory::before { content: "\f2a4"; } +.qi-small-craft-advisory-for-winds::before { content: "\f2a5"; } +.qi-small-craft-advisory-for-rough-bar::before { content: "\f2a6"; } +.qi-small-craft-advisory-for-hazardous-seas::before { content: "\f2a7"; } +.qi-dense-smoke-advisory::before { content: "\f2a8"; } +.qi-dense-fog-advisory::before { content: "\f2a9"; } +.qi-high-surf-advisory::before { content: "\f2aa"; } +.qi-coastal-flood-advisory::before { content: "\f2ab"; } +.qi-lakeshore-flood-advisory::before { content: "\f2ac"; } +.qi-hydrologic-advisory::before { content: "\f2ad"; } +.qi-flood-advisory::before { content: "\f2ae"; } +.qi-heat-advisory::before { content: "\f2af"; } +.qi-wind-chill-advisory::before { content: "\f2b0"; } +.qi-winter-weather-advisory::before { content: "\f2b1"; } +.qi-avalanche-advisory::before { content: "\f2b2"; } +.qi-tsunami-advisory::before { content: "\f2b3"; } +.qi-flood-statement::before { content: "\f2b4"; } +.qi-hydrologic-outlook::before { content: "\f2b5"; } +.qi-hazardous-weather-outlook::before { content: "\f2b6"; } +.qi-air-quality-alert::before { content: "\f2b7"; } +.qi-extreme-fire-danger::before { content: "\f2b8"; } +.qi-marine-weather-statement::before { content: "\f2b9"; } +.qi-special-weather-statement::before { content: "\f2ba"; } +.qi-lakeshore-flood-statement::before { content: "\f2bb"; } +.qi-coastal-flood-statement::before { content: "\f2bc"; } +.qi-beach-hazards-statement::before { content: "\f2bd"; } +.qi-rip-current-statement::before { content: "\f2be"; } +.qi-tropical-depression-local-statement::before { content: "\f2bf"; } +.qi-tropical-storm-local-statement::before { content: "\f2c0"; } +.qi-typhoon-local-statement::before { content: "\f2c1"; } +.qi-hurricane-local-statement::before { content: "\f2c2"; } +.qi-severe-weather-statement::before { content: "\f2c3"; } +.qi-flash-flood-statement::before { content: "\f2c4"; } +.qi-severe-weather-warning::before { content: "\f1ca"; } +.qi-warning-default::before { content: "\f1cb"; } +.qi-sunny-fill::before { content: "\f1cc"; } +.qi-cloudy-fill::before { content: "\f1cd"; } +.qi-few-clouds-fill::before { content: "\f1ce"; } +.qi-partly-cloudy-fill::before { content: "\f1cf"; } +.qi-overcast-fill::before { content: "\f1d0"; } +.qi-clear-night-fill::before { content: "\f1d1"; } +.qi-cloudy-night-fill::before { content: "\f1d2"; } +.qi-few-clouds-night-fill::before { content: "\f1d3"; } +.qi-partly-cloudy-night-fill::before { content: "\f1d4"; } +.qi-shower-rain-fill::before { content: "\f1d5"; } +.qi-heavy-shower-rain-fill::before { content: "\f1d6"; } +.qi-thundershower-fill::before { content: "\f1d7"; } +.qi-heavy-thunderstorm-fill::before { content: "\f1d8"; } +.qi-thundershower-with-hail-fill::before { content: "\f1d9"; } +.qi-light-rain-fill::before { content: "\f1da"; } +.qi-moderate-rain-fill::before { content: "\f1db"; } +.qi-heavy-rain-fill::before { content: "\f1dc"; } +.qi-extreme-rain-fill::before { content: "\f1dd"; } +.qi-drizzle-rain-fill::before { content: "\f1de"; } +.qi-storm-fill::before { content: "\f1df"; } +.qi-heavy-storm-fill::before { content: "\f1e0"; } +.qi-severe-storm-fill::before { content: "\f1e1"; } +.qi-freezing-rain-fill::before { content: "\f1e2"; } +.qi-light-to-moderate-rain-fill::before { content: "\f1e3"; } +.qi-moderate-to-heavy-rain-fill::before { content: "\f1e4"; } +.qi-heavy-rain-to-storm-fill::before { content: "\f1e5"; } +.qi-storm-to-heavy-storm-fill::before { content: "\f1e6"; } +.qi-heavy-to-severe-storm-fill::before { content: "\f1e7"; } +.qi-shower-rain-night-fill::before { content: "\f1e8"; } +.qi-heavy-shower-rain-night-fill::before { content: "\f1e9"; } +.qi-rain-fill::before { content: "\f1ea"; } +.qi-light-snow-fill::before { content: "\f1eb"; } +.qi-moderate-snow-fill::before { content: "\f1ec"; } +.qi-heavy-snow-fill::before { content: "\f1ed"; } +.qi-snowstorm-fill::before { content: "\f1ee"; } +.qi-sleet-fill::before { content: "\f1ef"; } +.qi-rain-and-snow-fill::before { content: "\f1f0"; } +.qi-shower-snow-fill::before { content: "\f1f1"; } +.qi-snow-flurry-fill::before { content: "\f1f2"; } +.qi-light-to-moderate-snow-fill::before { content: "\f1f3"; } +.qi-moderate-to-heavy-snow-fill::before { content: "\f1f4"; } +.qi-heavy-snow-to-snowstorm-fill::before { content: "\f1f5"; } +.qi-shower-snow-night-fill::before { content: "\f1f6"; } +.qi-snow-flurry-night-fill::before { content: "\f1f7"; } +.qi-snow-fill::before { content: "\f1f8"; } +.qi-mist-fill::before { content: "\f1f9"; } +.qi-foggy-fill::before { content: "\f1fa"; } +.qi-haze-fill::before { content: "\f1fb"; } +.qi-sand-fill::before { content: "\f1fc"; } +.qi-dust-fill::before { content: "\f1fd"; } +.qi-duststorm-fill::before { content: "\f1fe"; } +.qi-sandstorm-fill::before { content: "\f1ff"; } +.qi-dense-fog-fill::before { content: "\f200"; } +.qi-strong-fog-fill::before { content: "\f201"; } +.qi-moderate-haze-fill::before { content: "\f202"; } +.qi-heavy-haze-fill::before { content: "\f203"; } +.qi-severe-haze-fill::before { content: "\f204"; } +.qi-heavy-fog-fill::before { content: "\f205"; } +.qi-extra-heavy-fog-fill::before { content: "\f206"; } +.qi-hot-fill::before { content: "\f207"; } +.qi-cold-fill::before { content: "\f208"; } +.qi-unknown-fill::before { content: "\f209"; } diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/qweather-icons.json b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/qweather-icons.json new file mode 100644 index 0000000..f3d1fbd --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/font/qweather-icons.json @@ -0,0 +1,960 @@ +{ + "100": 61697, + "101": 61698, + "102": 61699, + "103": 61700, + "104": 61701, + "150": 61702, + "151": 61703, + "152": 61704, + "153": 61705, + "300": 61706, + "301": 61707, + "302": 61708, + "303": 61709, + "304": 61710, + "305": 61711, + "306": 61712, + "307": 61713, + "308": 61714, + "309": 61715, + "310": 61716, + "311": 61717, + "312": 61718, + "313": 61719, + "314": 61720, + "315": 61721, + "316": 61722, + "317": 61723, + "318": 61724, + "350": 61725, + "351": 61726, + "399": 61727, + "400": 61728, + "401": 61729, + "402": 61730, + "403": 61731, + "404": 61732, + "405": 61733, + "406": 61734, + "407": 61735, + "408": 61736, + "409": 61737, + "410": 61738, + "456": 61739, + "457": 61740, + "499": 61741, + "500": 61742, + "501": 61743, + "502": 61744, + "503": 61745, + "504": 61746, + "507": 61747, + "508": 61748, + "509": 61749, + "510": 61750, + "511": 61751, + "512": 61752, + "513": 61753, + "514": 61754, + "515": 61755, + "800": 61756, + "801": 61757, + "802": 61758, + "803": 61759, + "804": 61760, + "805": 61761, + "806": 61762, + "807": 61763, + "900": 61764, + "901": 61765, + "999": 61766, + "1001": 61767, + "1002": 61768, + "1003": 61769, + "1004": 61770, + "1005": 61771, + "1006": 61772, + "1007": 61773, + "1008": 61774, + "1009": 61775, + "1010": 61776, + "1011": 61777, + "1012": 61778, + "1013": 61779, + "1014": 61780, + "1015": 61781, + "1016": 61782, + "1017": 61783, + "1018": 61784, + "1019": 61785, + "1020": 61786, + "1021": 61787, + "1022": 61788, + "1023": 61789, + "1024": 61790, + "1025": 61791, + "1026": 61792, + "1027": 61793, + "1028": 61794, + "1029": 61795, + "1030": 61796, + "1031": 61797, + "1032": 61798, + "1033": 61799, + "1034": 61800, + "1035": 61801, + "1036": 61802, + "1037": 61803, + "1038": 61804, + "1039": 61805, + "1040": 61806, + "1041": 61807, + "1042": 61808, + "1043": 61809, + "1044": 61810, + "1045": 61811, + "1046": 61812, + "1047": 61813, + "1048": 61814, + "1049": 61815, + "1050": 61816, + "1051": 61817, + "1052": 61818, + "1053": 61819, + "1054": 61820, + "1055": 61821, + "1056": 61822, + "1057": 61823, + "1058": 61824, + "1059": 61825, + "1060": 61826, + "1061": 61827, + "1062": 61828, + "1063": 61829, + "1064": 61830, + "1065": 61831, + "1066": 61832, + "1067": 61833, + "1068": 61834, + "1069": 61835, + "1071": 61836, + "1072": 61837, + "1073": 61838, + "1074": 61839, + "1075": 61840, + "1076": 61841, + "1077": 61842, + "1078": 61843, + "1079": 61844, + "1080": 61845, + "1081": 61846, + "1082": 61847, + "1084": 61848, + "1085": 61849, + "1086": 61850, + "1087": 61851, + "1088": 61852, + "1089": 61853, + "1201": 62149, + "1202": 62150, + "1203": 62151, + "1204": 62152, + "1205": 62153, + "1206": 62154, + "1207": 62155, + "1208": 62156, + "1209": 62157, + "1210": 62158, + "1211": 62159, + "1212": 62160, + "1213": 62161, + "1214": 62162, + "1215": 62163, + "1216": 62164, + "1217": 62165, + "1218": 62166, + "1219": 62167, + "1221": 62168, + "1241": 62169, + "1242": 62170, + "1243": 62171, + "1244": 62172, + "1245": 62173, + "1246": 62174, + "1247": 62175, + "1248": 62176, + "1249": 62177, + "1250": 62178, + "1251": 62179, + "1271": 62198, + "1272": 62199, + "1273": 62200, + "1274": 62201, + "1601": 61857, + "1602": 61858, + "1603": 61859, + "1604": 61860, + "1605": 61861, + "1606": 61862, + "1607": 61863, + "1608": 61964, + "1609": 61965, + "1610": 61966, + "1701": 61864, + "1702": 61865, + "1703": 61866, + "1801": 61967, + "1802": 61968, + "1803": 61969, + "1804": 61970, + "1805": 61971, + "2001": 61867, + "2002": 61868, + "2003": 61869, + "2004": 61870, + "2005": 61871, + "2006": 61872, + "2007": 61873, + "2029": 61972, + "2030": 61973, + "2031": 61974, + "2032": 61975, + "2033": 61976, + "2050": 61977, + "2051": 61978, + "2052": 61895, + "2053": 61896, + "2054": 61897, + "2070": 61979, + "2071": 61980, + "2072": 61981, + "2073": 61982, + "2074": 61983, + "2075": 61984, + "2076": 61985, + "2077": 61986, + "2078": 61987, + "2079": 61988, + "2080": 61989, + "2081": 61990, + "2082": 61991, + "2083": 61992, + "2084": 61993, + "2085": 61994, + "2100": 61995, + "2101": 61996, + "2102": 61997, + "2103": 61998, + "2104": 61999, + "2105": 62000, + "2106": 62001, + "2107": 62002, + "2108": 62003, + "2109": 62004, + "2111": 62005, + "2120": 62006, + "2121": 62007, + "2122": 62008, + "2123": 62009, + "2124": 62010, + "2125": 62011, + "2126": 62012, + "2127": 62013, + "2128": 62014, + "2129": 62015, + "2130": 62016, + "2131": 62017, + "2132": 62018, + "2133": 62019, + "2134": 62020, + "2135": 62021, + "2150": 62022, + "2151": 62023, + "2152": 62024, + "2153": 62025, + "2154": 62026, + "2155": 62027, + "2156": 62028, + "2157": 62029, + "2158": 62030, + "2159": 62031, + "2160": 62032, + "2161": 62033, + "2162": 62034, + "2163": 62035, + "2164": 62036, + "2165": 62037, + "2166": 62038, + "2190": 62039, + "2191": 62040, + "2192": 62041, + "2193": 62042, + "2200": 62180, + "2201": 62181, + "2202": 62182, + "2203": 62183, + "2204": 62184, + "2205": 62185, + "2207": 62186, + "2208": 62187, + "2209": 62188, + "2210": 62189, + "2211": 62190, + "2212": 62191, + "2213": 62192, + "2214": 62193, + "2215": 62194, + "2216": 62195, + "2217": 62196, + "2218": 62197, + "2300": 62043, + "2301": 62044, + "2302": 62045, + "2303": 62046, + "2304": 62047, + "2305": 62048, + "2306": 62049, + "2307": 62050, + "2308": 62051, + "2309": 62052, + "2311": 62053, + "2312": 62054, + "2313": 62055, + "2314": 62056, + "2315": 62057, + "2316": 62058, + "2317": 62059, + "2318": 62060, + "2319": 62061, + "2320": 62062, + "2321": 62063, + "2322": 62064, + "2323": 62065, + "2324": 62066, + "2325": 62067, + "2326": 62068, + "2327": 62069, + "2328": 62070, + "2330": 62071, + "2331": 62072, + "2332": 62073, + "2333": 62074, + "2341": 62075, + "2343": 62076, + "2345": 62077, + "2346": 62078, + "2348": 62079, + "2349": 62080, + "2350": 62081, + "2351": 62082, + "2352": 62083, + "2353": 62084, + "2354": 62085, + "2355": 62086, + "2356": 62087, + "2357": 62088, + "2358": 62089, + "2359": 62090, + "2360": 62091, + "2361": 62092, + "2362": 62093, + "2363": 62094, + "2364": 62095, + "2365": 62096, + "2366": 62097, + "2367": 62098, + "2368": 62099, + "2369": 62100, + "2370": 62101, + "2371": 62102, + "2372": 62103, + "2373": 62104, + "2374": 62105, + "2375": 62106, + "2376": 62107, + "2377": 62108, + "2378": 62109, + "2379": 62110, + "2380": 62111, + "2381": 62112, + "2382": 62113, + "2383": 62114, + "2384": 62115, + "2385": 62116, + "2386": 62117, + "2387": 62118, + "2388": 62119, + "2389": 62120, + "2390": 62121, + "2391": 62122, + "2392": 62123, + "2393": 62124, + "2394": 62125, + "2395": 62126, + "2396": 62127, + "2397": 62128, + "2398": 62129, + "2399": 62130, + "2400": 62131, + "2409": 62132, + "2411": 62133, + "2412": 62134, + "2413": 62135, + "2414": 62136, + "2415": 62137, + "2416": 62138, + "2417": 62139, + "2418": 62140, + "2419": 62141, + "2420": 62142, + "2421": 62143, + "2422": 62144, + "2423": 62145, + "2424": 62146, + "2425": 62147, + "2426": 62148, + "9998": 61898, + "9999": 61899, + "100-fill": 61900, + "101-fill": 61901, + "102-fill": 61902, + "103-fill": 61903, + "104-fill": 61904, + "150-fill": 61905, + "151-fill": 61906, + "152-fill": 61907, + "153-fill": 61908, + "300-fill": 61909, + "301-fill": 61910, + "302-fill": 61911, + "303-fill": 61912, + "304-fill": 61913, + "305-fill": 61914, + "306-fill": 61915, + "307-fill": 61916, + "308-fill": 61917, + "309-fill": 61918, + "310-fill": 61919, + "311-fill": 61920, + "312-fill": 61921, + "313-fill": 61922, + "314-fill": 61923, + "315-fill": 61924, + "316-fill": 61925, + "317-fill": 61926, + "318-fill": 61927, + "350-fill": 61928, + "351-fill": 61929, + "399-fill": 61930, + "400-fill": 61931, + "401-fill": 61932, + "402-fill": 61933, + "403-fill": 61934, + "404-fill": 61935, + "405-fill": 61936, + "406-fill": 61937, + "407-fill": 61938, + "408-fill": 61939, + "409-fill": 61940, + "410-fill": 61941, + "456-fill": 61942, + "457-fill": 61943, + "499-fill": 61944, + "500-fill": 61945, + "501-fill": 61946, + "502-fill": 61947, + "503-fill": 61948, + "504-fill": 61949, + "507-fill": 61950, + "508-fill": 61951, + "509-fill": 61952, + "510-fill": 61953, + "511-fill": 61954, + "512-fill": 61955, + "513-fill": 61956, + "514-fill": 61957, + "515-fill": 61958, + "900-fill": 61959, + "901-fill": 61960, + "999-fill": 61961, + "qweather-fill": 61962, + "qweather": 61963, + "sunny": 61697, + "cloudy": 61698, + "few-clouds": 61699, + "partly-cloudy": 61700, + "overcast": 61701, + "clear-night": 61702, + "cloudy-night": 61703, + "few-clouds-night": 61704, + "partly-cloudy-night": 61705, + "shower-rain": 61706, + "heavy-shower-rain": 61707, + "thundershower": 61708, + "heavy-thunderstorm": 61709, + "thundershower-with-hail": 61710, + "light-rain": 61711, + "moderate-rain": 61712, + "heavy-rain": 61713, + "extreme-rain": 61714, + "drizzle-rain": 61715, + "storm": 61716, + "heavy-storm": 61717, + "severe-storm": 61718, + "freezing-rain": 61719, + "light-to-moderate-rain": 61720, + "moderate-to-heavy-rain": 61721, + "heavy-rain-to-storm": 61722, + "storm-to-heavy-storm": 61723, + "heavy-to-severe-storm": 61724, + "shower-rain-night": 61725, + "heavy-shower-rain-night": 61726, + "rain": 61727, + "light-snow": 61728, + "moderate-snow": 61729, + "heavy-snow": 61730, + "snowstorm": 61731, + "sleet": 61732, + "rain-and-snow": 61733, + "shower-snow": 61734, + "snow-flurry": 61735, + "light-to-moderate-snow": 61736, + "moderate-to-heavy-snow": 61737, + "heavy-snow-to-snowstorm": 61738, + "shower-snow-night": 61739, + "snow-flurry-night": 61740, + "snow": 61741, + "mist": 61742, + "foggy": 61743, + "haze": 61744, + "sand": 61745, + "dust": 61746, + "duststorm": 61747, + "sandstorm": 61748, + "dense-fog": 61749, + "strong-fog": 61750, + "moderate-haze": 61751, + "heavy-haze": 61752, + "severe-haze": 61753, + "heavy-fog": 61754, + "extra-heavy-fog": 61755, + "new-moon": 61756, + "waxing-crescent": 61757, + "first-quarter": 61758, + "waxing-gibbous": 61759, + "full-moon": 61760, + "waning-gibbous": 61761, + "last-quarter": 61762, + "waning-crescent": 61763, + "hot": 61764, + "cold": 61765, + "unknown": 61766, + "typhoon": 61767, + "tornado": 61768, + "rainstorm": 61769, + "snow-storm": 61770, + "cold-wave": 61771, + "gale": 61772, + "sandstorm-warning": 61773, + "low-temperature-freeze": 61774, + "high-temperature": 61775, + "heat-wave": 61776, + "dry-hot-wind": 61777, + "downburst": 61778, + "avalanche": 61779, + "lightning": 61780, + "hail": 61781, + "frost": 61782, + "heavy-fog-warning": 61783, + "low-level-wind-shearl": 61784, + "haze-warning": 61785, + "thunder-gust": 61786, + "road-icing": 61787, + "drought": 61788, + "gale-at-sea": 61789, + "heat-stroke": 61790, + "wildfire": 61791, + "grassland-fire": 61792, + "freeze": 61793, + "space-weather": 61794, + "heavy-air-pollution": 61795, + "low-temperature-rain-and-snow": 61796, + "strong-convection": 61797, + "ozone": 61798, + "heavy-snow-warning": 61799, + "cold-warning": 61800, + "continuous-rain": 61801, + "waterlogging": 61802, + "geological-hazard": 61803, + "heavy-rainfall": 61804, + "severely-falling-temperature": 61805, + "snow-disaster": 61806, + "wildfire-grassland": 61807, + "medical-meteorology": 61808, + "thunderstorm": 61809, + "school-closure": 61810, + "factory-closure": 61811, + "maritime-risk": 61812, + "spring-dust": 61813, + "falling-temperature": 61814, + "typhoon-and-rainstorm": 61815, + "severe-cold": 61816, + "sand-dust": 61817, + "sea-thunderstorms": 61818, + "sea-fog": 61819, + "sea-thunder": 61820, + "sea-typhoon": 61821, + "low-temperature": 61822, + "road-ice-and-snow": 61823, + "thunderstorm-and-gale": 61824, + "continuous-low-temperature": 61825, + "low-visibility": 61826, + "strong-dust": 61827, + "gale-in-sea-area": 61828, + "short-duration-heavy-shower-rain": 61829, + "short-lived-heavy-shower-rain": 61830, + "sea-area-fog": 61831, + "heat-stroke-conditions": 61832, + "heavy-pollution-weather": 61833, + "co-poisoning-weather-conditions": 61834, + "respiratory-disease-weather-wonditions": 61835, + "intestinal-disease-weather-wonditions": 61836, + "cardiovascular-disease-weather-wonditions": 61837, + "flooding-weather-risk": 61838, + "heavy-pollution-weather-conditions": 61839, + "urban-flooding-weather-risk": 61840, + "flooding-weather-risk-2": 61841, + "wildfire-weather-risk": 61842, + "meteorological-drought": 61843, + "agricultural-weather-risk": 61844, + "strong-monsoon": 61845, + "ice-accretion-on-wire": 61846, + "stroke-weather-risk": 61847, + "wildfire-grassland-risk": 61848, + "thunderstorm-and-strong-winds": 61849, + "low-temperature-freeze2": 61850, + "low-temperature-damage": 61851, + "national-agricultural-meteorological-risk": 61852, + "dry-hot-wind-risk-for-winter-wheat": 61853, + "flood": 62149, + "urban-flooding": 62150, + "reservoir-danger": 62151, + "dike-danger": 62152, + "ice-flood": 62153, + "waterlogging2": 62154, + "flood-and-waterlogging": 62155, + "dry-water": 62156, + "flood-and-flash-flood-in-small-and-medium-rivers": 62157, + "difficulty-drinking-water-for-rural-people-and-animals": 62158, + "flood-in-small-and-medium-rivers": 62159, + "flood-and-drought-advisory": 62160, + "urban-flood-risk": 62161, + "flash-flood": 62162, + "agricultural-drought": 62163, + "urban-water-shortage": 62164, + "ecological-drought": 62165, + "disaster-risk-early-warning": 62166, + "flash-flood-weather-risk": 62167, + "water-conservancy-and-drought": 62168, + "landslide": 62169, + "debris-flows": 62170, + "landslide-event": 62171, + "ground-collapses": 62172, + "ground-fissure": 62173, + "land-subsidence": 62174, + "volcanic-eruption": 62175, + "geological-hazard-weather-risk": 62176, + "geological-hazard-weather": 62177, + "geological-hazard2": 62178, + "geological-hazard-risk": 62179, + "air-pollution-incident": 62198, + "heavy-air-pollution-2": 62199, + "air-pollution": 62200, + "heavy-pollution-weather-2": 62201, + "very-hot-weather": 61857, + "strong-monsoon-signal": 61858, + "landslip": 61859, + "tropical-cyclone": 61860, + "fire-danger": 61861, + "flooding-in-the-northern-new-territories": 61862, + "cold-weather": 61863, + "thunderstorm2": 61964, + "rainstorm2": 61965, + "frost2": 61966, + "cold-surge-advisory": 61864, + "strong-wind-advisory": 61865, + "rainfall-advisory": 61866, + "strong-monsoon-signal2": 61967, + "storm-surge2": 61968, + "tropical-cyclone2": 61969, + "rainstorm3": 61970, + "thunderstorm3": 61971, + "wind-warning": 61867, + "snow-ice": 61868, + "fog": 61869, + "coastal-event": 61870, + "forest-fire": 61871, + "rain-warning": 61872, + "rain-flood": 61873, + "thunderstorm4": 61972, + "high-temperature2": 61973, + "low-temperature2": 61974, + "avalanches": 61975, + "flooding": 61976, + "rain-warning2": 62032, + "wind": 61978, + "snow-warning": 61895, + "zonda-wind": 61896, + "storm-warning": 61897, + "dust-raising-winds2": 61979, + "strong-surface-winds2": 61980, + "hot-day2": 61981, + "warm-night2": 61982, + "cold-day2": 61983, + "thunderstorm-and-lightning2": 61984, + "hailstorm2": 61985, + "sea-area-warning2": 61986, + "fishermen-warning2": 61987, + "heavy-snow-warning2": 62019, + "dust-storm": 61989, + "heat-wave2": 61990, + "cold-wave2": 61991, + "fog2": 61992, + "heavy-rain-warning": 61993, + "ground-frost2": 61994, + "fog3": 61995, + "thunder-rain2": 61996, + "thunder-storm": 61997, + "light-rain-warning": 61998, + "heavy-rain-warning2": 61999, + "fresh-wind": 62000, + "thunderstorm-and-dust": 62001, + "dust-warning": 62002, + "high-wave": 62003, + "frost3": 62004, + "drop-in-visibility": 62005, + "low-humidity2": 62006, + "accumulated-rain2": 62007, + "cold-wave3": 62008, + "tornado2": 62009, + "thunderstorm5": 62010, + "hail2": 62011, + "heavy-rainfall2": 62012, + "gale2": 62013, + "heat-wave3": 62014, + "cold-warning2": 62015, + "frost4": 62016, + "drought2": 62017, + "forest-fire2": 62018, + "severely-falling-temperature2": 62020, + "rainstorm4": 62021, + "wind2": 62022, + "snow-ice2": 62023, + "freeze2": 62024, + "thunderstorms": 62025, + "fog4": 62026, + "high-temperature3": 62027, + "low-temperature3": 62028, + "coastal-event2": 62029, + "forest-fire3": 62030, + "avalanches2": 62031, + "flood2": 62033, + "rain-flood2": 62034, + "mudflow2": 62035, + "duststorm-warning": 62036, + "freezing-rain-and-icing": 62037, + "other-dangers": 62038, + "severe-thunderstorms": 62039, + "damaging-winds2": 62040, + "veld-fire-conditions2": 62041, + "weather-advisory2": 62042, + "thunderstorm6": 62180, + "squall": 62181, + "air-quality": 62182, + "rainfall": 62183, + "fog5": 62184, + "heat": 62185, + "wildfire2": 62186, + "wind3": 62187, + "freezing-rain-warning": 62188, + "tornado3": 62189, + "blizzard": 62190, + "weather-warning": 62191, + "winter-storm": 62192, + "freezing-drizzle": 62193, + "snowfall": 62194, + "blowing-snow": 62195, + "extreme-cold": 62196, + "frost5": 62197, + "hazardous-seas-warning": 62043, + "heavy-freezing-spray-warning": 62044, + "red-flag-warning": 62045, + "freeze-warning": 62046, + "hard-freeze-warning": 62047, + "extreme-cold-warning": 62048, + "wind-chill-warning": 62049, + "gale-warning": 62050, + "excessive-heat-warning": 62051, + "lake-effect-snow-warning": 62052, + "blowing-dust-warning": 62053, + "dust-storm-warning": 62054, + "storm-warning2": 62055, + "tropical-storm-warning": 62056, + "high-wind-warning": 62057, + "high-surf-warning": 62058, + "flood-warning": 62059, + "lakeshore-flood-warning": 62060, + "coastal-flood-warning": 62061, + "ashfall-warning": 62062, + "volcano-warning": 62063, + "earthquake-warning": 62064, + "avalanche-warning": 62065, + "winter-storm-warning": 62066, + "ice-storm-warning": 62067, + "snow-squall-warning": 62068, + "blizzard-warning": 62069, + "special-marine-warning": 62070, + "typhoon-warning": 62071, + "hurricane-warning": 62072, + "hurricane-force-wind-warning": 62073, + "storm-surge-warning": 62074, + "flash-flood-warning": 62075, + "severe-thunderstorm-warning": 62076, + "extreme-wind-warning": 62077, + "tornado-warning": 62078, + "tsunami-warning": 62079, + "fire-weather-watch": 62080, + "freeze-watch": 62081, + "hard-freeze-watch": 62082, + "wind-chill-watch": 62083, + "extreme-cold-watch": 62084, + "excessive-heat-watch": 62085, + "high-wind-watch": 62086, + "flood-watch": 62087, + "lakeshore-flood-watch": 62088, + "coastal-flood-watch": 62089, + "heavy-freezing-spray-watch": 62090, + "hazardous-seas-watch": 62091, + "winter-storm-watch": 62092, + "gale-watch": 62093, + "avalanche-watch": 62094, + "storm-watch": 62095, + "tropical-storm-watch": 62096, + "typhoon-watch": 62097, + "hurricane-force-wind-watch": 62098, + "hurricane-watch": 62099, + "storm-surge-watch": 62100, + "flash-flood-watch": 62101, + "severe-thunderstorm-watch": 62102, + "tornado-watch": 62103, + "tsunami-watch": 62104, + "air-stagnation-advisory": 62105, + "low-water-advisory": 62106, + "freezing-spray-advisory": 62107, + "freezing-fog-advisory": 62108, + "ashfall-advisory": 62109, + "frost-advisory": 62110, + "wind-advisory": 62111, + "lake-wind-advisory": 62112, + "blowing-dust-advisory": 62113, + "dust-advisory": 62114, + "brisk-wind-advisory": 62115, + "small-craft-advisory": 62116, + "small-craft-advisory-for-winds": 62117, + "small-craft-advisory-for-rough-bar": 62118, + "small-craft-advisory-for-hazardous-seas": 62119, + "dense-smoke-advisory": 62120, + "dense-fog-advisory": 62121, + "high-surf-advisory": 62122, + "coastal-flood-advisory": 62123, + "lakeshore-flood-advisory": 62124, + "hydrologic-advisory": 62125, + "flood-advisory": 62126, + "heat-advisory": 62127, + "wind-chill-advisory": 62128, + "winter-weather-advisory": 62129, + "avalanche-advisory": 62130, + "tsunami-advisory": 62131, + "flood-statement": 62132, + "hydrologic-outlook": 62133, + "hazardous-weather-outlook": 62134, + "air-quality-alert": 62135, + "extreme-fire-danger": 62136, + "marine-weather-statement": 62137, + "special-weather-statement": 62138, + "lakeshore-flood-statement": 62139, + "coastal-flood-statement": 62140, + "beach-hazards-statement": 62141, + "rip-current-statement": 62142, + "tropical-depression-local-statement": 62143, + "tropical-storm-local-statement": 62144, + "typhoon-local-statement": 62145, + "hurricane-local-statement": 62146, + "severe-weather-statement": 62147, + "flash-flood-statement": 62148, + "severe-weather-warning": 61898, + "warning-default": 61899, + "sunny-fill": 61900, + "cloudy-fill": 61901, + "few-clouds-fill": 61902, + "partly-cloudy-fill": 61903, + "overcast-fill": 61904, + "clear-night-fill": 61905, + "cloudy-night-fill": 61906, + "few-clouds-night-fill": 61907, + "partly-cloudy-night-fill": 61908, + "shower-rain-fill": 61909, + "heavy-shower-rain-fill": 61910, + "thundershower-fill": 61911, + "heavy-thunderstorm-fill": 61912, + "thundershower-with-hail-fill": 61913, + "light-rain-fill": 61914, + "moderate-rain-fill": 61915, + "heavy-rain-fill": 61916, + "extreme-rain-fill": 61917, + "drizzle-rain-fill": 61918, + "storm-fill": 61919, + "heavy-storm-fill": 61920, + "severe-storm-fill": 61921, + "freezing-rain-fill": 61922, + "light-to-moderate-rain-fill": 61923, + "moderate-to-heavy-rain-fill": 61924, + "heavy-rain-to-storm-fill": 61925, + "storm-to-heavy-storm-fill": 61926, + "heavy-to-severe-storm-fill": 61927, + "shower-rain-night-fill": 61928, + "heavy-shower-rain-night-fill": 61929, + "rain-fill": 61930, + "light-snow-fill": 61931, + "moderate-snow-fill": 61932, + "heavy-snow-fill": 61933, + "snowstorm-fill": 61934, + "sleet-fill": 61935, + "rain-and-snow-fill": 61936, + "shower-snow-fill": 61937, + "snow-flurry-fill": 61938, + "light-to-moderate-snow-fill": 61939, + "moderate-to-heavy-snow-fill": 61940, + "heavy-snow-to-snowstorm-fill": 61941, + "shower-snow-night-fill": 61942, + "snow-flurry-night-fill": 61943, + "snow-fill": 61944, + "mist-fill": 61945, + "foggy-fill": 61946, + "haze-fill": 61947, + "sand-fill": 61948, + "dust-fill": 61949, + "duststorm-fill": 61950, + "sandstorm-fill": 61951, + "dense-fog-fill": 61952, + "strong-fog-fill": 61953, + "moderate-haze-fill": 61954, + "heavy-haze-fill": 61955, + "severe-haze-fill": 61956, + "heavy-fog-fill": 61957, + "extra-heavy-fog-fill": 61958, + "hot-fill": 61959, + "cold-fill": 61960, + "unknown-fill": 61961 +} \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/100-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/100-fill.svg new file mode 100644 index 0000000..8eb998a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/100-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/100.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/100.svg new file mode 100644 index 0000000..c09c805 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/100.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1001.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1001.svg new file mode 100644 index 0000000..94a63dc --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1001.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1002.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1002.svg new file mode 100644 index 0000000..40812fa --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1002.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1003.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1003.svg new file mode 100644 index 0000000..62f2797 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1003.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1004.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1004.svg new file mode 100644 index 0000000..436bba6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1004.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1005.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1005.svg new file mode 100644 index 0000000..e20a99b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1005.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1006.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1006.svg new file mode 100644 index 0000000..4c7c42c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1006.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1007.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1007.svg new file mode 100644 index 0000000..4e0cca2 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1007.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1008.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1008.svg new file mode 100644 index 0000000..329f6c7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1008.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1009.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1009.svg new file mode 100644 index 0000000..e066c19 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1009.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/101-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/101-fill.svg new file mode 100644 index 0000000..dae24c3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/101-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/101.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/101.svg new file mode 100644 index 0000000..690c923 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/101.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1010.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1010.svg new file mode 100644 index 0000000..ce17e9b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1010.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1011.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1011.svg new file mode 100644 index 0000000..791c2a9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1011.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1012.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1012.svg new file mode 100644 index 0000000..0ca6ee6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1012.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1013.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1013.svg new file mode 100644 index 0000000..b1f0cdf --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1013.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1014.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1014.svg new file mode 100644 index 0000000..4800932 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1014.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1015.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1015.svg new file mode 100644 index 0000000..9876330 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1015.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1016.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1016.svg new file mode 100644 index 0000000..903efef --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1016.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1017.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1017.svg new file mode 100644 index 0000000..d8ef224 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1017.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1018.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1018.svg new file mode 100644 index 0000000..4a06063 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1018.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1019.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1019.svg new file mode 100644 index 0000000..7d81f72 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1019.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/102-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/102-fill.svg new file mode 100644 index 0000000..2add978 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/102-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/102.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/102.svg new file mode 100644 index 0000000..a37a503 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/102.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1020.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1020.svg new file mode 100644 index 0000000..adcca8e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1020.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1021.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1021.svg new file mode 100644 index 0000000..24eb564 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1021.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1022.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1022.svg new file mode 100644 index 0000000..af2a3af --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1022.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1023.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1023.svg new file mode 100644 index 0000000..8d07633 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1023.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1024.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1024.svg new file mode 100644 index 0000000..0dd41ac --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1024.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1025.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1025.svg new file mode 100644 index 0000000..469aede --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1025.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1026.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1026.svg new file mode 100644 index 0000000..5ebad73 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1026.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1027.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1027.svg new file mode 100644 index 0000000..434aa1e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1027.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1028.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1028.svg new file mode 100644 index 0000000..6369a48 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1028.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1029.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1029.svg new file mode 100644 index 0000000..178c3d0 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1029.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/103-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/103-fill.svg new file mode 100644 index 0000000..d629442 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/103-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/103.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/103.svg new file mode 100644 index 0000000..bbc124f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/103.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1030.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1030.svg new file mode 100644 index 0000000..e9b8501 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1030.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1031.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1031.svg new file mode 100644 index 0000000..43f8d44 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1031.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1032.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1032.svg new file mode 100644 index 0000000..da53958 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1032.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1033.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1033.svg new file mode 100644 index 0000000..bb7787b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1033.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1034.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1034.svg new file mode 100644 index 0000000..c277460 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1034.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1035.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1035.svg new file mode 100644 index 0000000..a168b4c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1035.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1036.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1036.svg new file mode 100644 index 0000000..6437f27 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1036.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1037.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1037.svg new file mode 100644 index 0000000..db7dcef --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1037.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1038.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1038.svg new file mode 100644 index 0000000..5bc07b1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1038.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1039.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1039.svg new file mode 100644 index 0000000..3822b50 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1039.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/104-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/104-fill.svg new file mode 100644 index 0000000..02d8ee1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/104-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/104.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/104.svg new file mode 100644 index 0000000..4c6fec8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/104.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1040.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1040.svg new file mode 100644 index 0000000..e4c9118 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1040.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1041.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1041.svg new file mode 100644 index 0000000..4746bee --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1041.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1042.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1042.svg new file mode 100644 index 0000000..54015f7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1042.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1043.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1043.svg new file mode 100644 index 0000000..4f04d54 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1043.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1044.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1044.svg new file mode 100644 index 0000000..0dad496 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1044.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1045.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1045.svg new file mode 100644 index 0000000..e3c7f50 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1045.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1046.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1046.svg new file mode 100644 index 0000000..53a56aa --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1046.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1047.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1047.svg new file mode 100644 index 0000000..34cbaf0 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1047.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1048.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1048.svg new file mode 100644 index 0000000..a58beb9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1048.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1049.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1049.svg new file mode 100644 index 0000000..5ffaa6a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1049.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1050.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1050.svg new file mode 100644 index 0000000..037e525 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1050.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1051.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1051.svg new file mode 100644 index 0000000..f0fd308 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1051.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1052.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1052.svg new file mode 100644 index 0000000..39d4662 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1052.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1053.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1053.svg new file mode 100644 index 0000000..d79c9f6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1053.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1054.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1054.svg new file mode 100644 index 0000000..464c044 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1054.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1055.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1055.svg new file mode 100644 index 0000000..9d8315c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1055.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1056.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1056.svg new file mode 100644 index 0000000..b106fed --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1056.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1057.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1057.svg new file mode 100644 index 0000000..b0a541e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1057.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1058.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1058.svg new file mode 100644 index 0000000..aea2b8f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1058.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1059.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1059.svg new file mode 100644 index 0000000..d17130e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1059.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1060.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1060.svg new file mode 100644 index 0000000..1133fd3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1060.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1061.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1061.svg new file mode 100644 index 0000000..4c4adf2 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1061.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1062.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1062.svg new file mode 100644 index 0000000..34161da --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1062.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1063.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1063.svg new file mode 100644 index 0000000..ec0e1b6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1063.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1064.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1064.svg new file mode 100644 index 0000000..ae669d9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1064.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1065.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1065.svg new file mode 100644 index 0000000..98f95e5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1065.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1066.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1066.svg new file mode 100644 index 0000000..1883b60 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1066.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1067.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1067.svg new file mode 100644 index 0000000..d2fde3e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1067.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1068.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1068.svg new file mode 100644 index 0000000..3feab39 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1068.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1069.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1069.svg new file mode 100644 index 0000000..a4680fa --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1069.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1071.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1071.svg new file mode 100644 index 0000000..c27ced5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1071.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1072.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1072.svg new file mode 100644 index 0000000..5a382fe --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1072.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1073.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1073.svg new file mode 100644 index 0000000..415717d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1073.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1074.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1074.svg new file mode 100644 index 0000000..daa1694 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1074.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1075.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1075.svg new file mode 100644 index 0000000..423056b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1075.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1076.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1076.svg new file mode 100644 index 0000000..3cfd9ba --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1076.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1077.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1077.svg new file mode 100644 index 0000000..0c69bd8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1077.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1078.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1078.svg new file mode 100644 index 0000000..0f1a9e0 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1078.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1079.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1079.svg new file mode 100644 index 0000000..55b72f8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1079.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1080.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1080.svg new file mode 100644 index 0000000..72f8233 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1080.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1081.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1081.svg new file mode 100644 index 0000000..a9a9a8f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1081.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1082.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1082.svg new file mode 100644 index 0000000..ad1de1a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1082.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1084.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1084.svg new file mode 100644 index 0000000..3335919 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1084.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1085.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1085.svg new file mode 100644 index 0000000..70e0797 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1085.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1086.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1086.svg new file mode 100644 index 0000000..7848e85 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1086.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1087.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1087.svg new file mode 100644 index 0000000..f54d9f8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1087.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1088.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1088.svg new file mode 100644 index 0000000..dcdb94f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1088.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1089.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1089.svg new file mode 100644 index 0000000..073fcc6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1089.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1201.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1201.svg new file mode 100644 index 0000000..a354837 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1201.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1202.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1202.svg new file mode 100644 index 0000000..eccdcef --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1202.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1203.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1203.svg new file mode 100644 index 0000000..39db56e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1203.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1204.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1204.svg new file mode 100644 index 0000000..d895006 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1204.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1205.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1205.svg new file mode 100644 index 0000000..77c8f22 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1205.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1206.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1206.svg new file mode 100644 index 0000000..890a97f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1206.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1207.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1207.svg new file mode 100644 index 0000000..51a2e30 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1207.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1208.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1208.svg new file mode 100644 index 0000000..a8c10e0 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1208.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1209.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1209.svg new file mode 100644 index 0000000..095caf5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1209.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1210.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1210.svg new file mode 100644 index 0000000..2d9ceea --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1210.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1211.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1211.svg new file mode 100644 index 0000000..2a1b965 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1211.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1212.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1212.svg new file mode 100644 index 0000000..781c77e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1212.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1213.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1213.svg new file mode 100644 index 0000000..943fdbe --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1213.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1214.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1214.svg new file mode 100644 index 0000000..6193798 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1214.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1215.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1215.svg new file mode 100644 index 0000000..9cc0964 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1215.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1216.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1216.svg new file mode 100644 index 0000000..7d92e74 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1216.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1217.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1217.svg new file mode 100644 index 0000000..275a382 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1217.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1218.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1218.svg new file mode 100644 index 0000000..3b5fb1e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1218.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1219.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1219.svg new file mode 100644 index 0000000..6467fd9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1219.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1221.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1221.svg new file mode 100644 index 0000000..a4532ad --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1221.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1241.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1241.svg new file mode 100644 index 0000000..354ff65 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1241.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1242.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1242.svg new file mode 100644 index 0000000..d9d61bd --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1242.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1243.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1243.svg new file mode 100644 index 0000000..19c10b5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1243.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1244.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1244.svg new file mode 100644 index 0000000..cd74ff5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1244.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1245.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1245.svg new file mode 100644 index 0000000..e39e90b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1245.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1246.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1246.svg new file mode 100644 index 0000000..a56c005 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1246.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1247.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1247.svg new file mode 100644 index 0000000..a064864 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1247.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1248.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1248.svg new file mode 100644 index 0000000..e89ad75 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1248.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1249.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1249.svg new file mode 100644 index 0000000..506e4bd --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1249.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1250.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1250.svg new file mode 100644 index 0000000..886d7a6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1250.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1251.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1251.svg new file mode 100644 index 0000000..46acf7d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1251.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1271.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1271.svg new file mode 100644 index 0000000..91e62d9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1271.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1272.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1272.svg new file mode 100644 index 0000000..2a7bca4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1272.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1273.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1273.svg new file mode 100644 index 0000000..aff1cc8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1273.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1274.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1274.svg new file mode 100644 index 0000000..cf9db92 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1274.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/150-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/150-fill.svg new file mode 100644 index 0000000..18b4fc0 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/150-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/150.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/150.svg new file mode 100644 index 0000000..3b78903 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/150.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/151-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/151-fill.svg new file mode 100644 index 0000000..f0ac138 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/151-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/151.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/151.svg new file mode 100644 index 0000000..48b4502 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/151.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/152-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/152-fill.svg new file mode 100644 index 0000000..d26dada --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/152-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/152.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/152.svg new file mode 100644 index 0000000..091390d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/152.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/153-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/153-fill.svg new file mode 100644 index 0000000..daa1a1e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/153-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/153.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/153.svg new file mode 100644 index 0000000..052f33f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/153.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1601.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1601.svg new file mode 100644 index 0000000..7fe3c0e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1601.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1602.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1602.svg new file mode 100644 index 0000000..2761af8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1602.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1603.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1603.svg new file mode 100644 index 0000000..890ed8f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1603.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1604.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1604.svg new file mode 100644 index 0000000..18d5ecb --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1604.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1605.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1605.svg new file mode 100644 index 0000000..a1158fd --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1605.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1606.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1606.svg new file mode 100644 index 0000000..8441735 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1606.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1607.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1607.svg new file mode 100644 index 0000000..45662d8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1607.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1608.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1608.svg new file mode 100644 index 0000000..ca87c16 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1608.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1609.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1609.svg new file mode 100644 index 0000000..235ab40 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1609.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1610.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1610.svg new file mode 100644 index 0000000..cd61c4a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1610.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1701.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1701.svg new file mode 100644 index 0000000..44a5c13 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1701.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1702.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1702.svg new file mode 100644 index 0000000..a372af1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1702.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1703.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1703.svg new file mode 100644 index 0000000..8cb4bbf --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1703.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1801.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1801.svg new file mode 100644 index 0000000..16d1e6c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1801.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1802.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1802.svg new file mode 100644 index 0000000..55c9185 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1802.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1803.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1803.svg new file mode 100644 index 0000000..f363401 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1803.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1804.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1804.svg new file mode 100644 index 0000000..392f65c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1804.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1805.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1805.svg new file mode 100644 index 0000000..8452bed --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/1805.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2001.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2001.svg new file mode 100644 index 0000000..89bc944 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2001.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2002.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2002.svg new file mode 100644 index 0000000..8fadf83 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2002.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2003.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2003.svg new file mode 100644 index 0000000..c0fdedf --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2003.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2004.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2004.svg new file mode 100644 index 0000000..7dba2cb --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2004.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2005.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2005.svg new file mode 100644 index 0000000..c7f67c7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2005.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2006.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2006.svg new file mode 100644 index 0000000..11fac49 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2006.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2007.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2007.svg new file mode 100644 index 0000000..cf3cb87 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2007.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2029.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2029.svg new file mode 100644 index 0000000..dd3759b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2029.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2030.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2030.svg new file mode 100644 index 0000000..a22023c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2030.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2031.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2031.svg new file mode 100644 index 0000000..8800e51 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2031.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2032.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2032.svg new file mode 100644 index 0000000..05848d8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2032.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2033.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2033.svg new file mode 100644 index 0000000..4a79897 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2033.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2050.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2050.svg new file mode 100644 index 0000000..393e8b2 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2050.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2051.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2051.svg new file mode 100644 index 0000000..b8e6133 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2051.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2052.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2052.svg new file mode 100644 index 0000000..6a68373 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2052.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2053.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2053.svg new file mode 100644 index 0000000..85417c2 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2053.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2054.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2054.svg new file mode 100644 index 0000000..040dbc3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2054.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2070.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2070.svg new file mode 100644 index 0000000..8ff2960 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2070.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2071.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2071.svg new file mode 100644 index 0000000..090b0aa --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2071.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2072.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2072.svg new file mode 100644 index 0000000..8fd9e7c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2072.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2073.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2073.svg new file mode 100644 index 0000000..0f1cc40 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2073.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2074.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2074.svg new file mode 100644 index 0000000..87ffaa3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2074.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2075.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2075.svg new file mode 100644 index 0000000..243f0e1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2075.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2076.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2076.svg new file mode 100644 index 0000000..2cde19f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2076.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2077.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2077.svg new file mode 100644 index 0000000..7587cf9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2077.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2078.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2078.svg new file mode 100644 index 0000000..993893d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2078.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2079.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2079.svg new file mode 100644 index 0000000..9f60056 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2079.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2080.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2080.svg new file mode 100644 index 0000000..19d181d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2080.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2081.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2081.svg new file mode 100644 index 0000000..dc016b3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2081.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2082.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2082.svg new file mode 100644 index 0000000..b46b251 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2082.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2083.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2083.svg new file mode 100644 index 0000000..dd730aa --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2083.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2084.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2084.svg new file mode 100644 index 0000000..fe9aaf4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2084.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2085.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2085.svg new file mode 100644 index 0000000..5ad4117 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2085.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2100.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2100.svg new file mode 100644 index 0000000..06a3379 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2100.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2101.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2101.svg new file mode 100644 index 0000000..dc1e4f7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2101.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2102.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2102.svg new file mode 100644 index 0000000..c669238 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2102.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2103.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2103.svg new file mode 100644 index 0000000..69142bb --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2103.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2104.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2104.svg new file mode 100644 index 0000000..c17aaf3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2104.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2105.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2105.svg new file mode 100644 index 0000000..4bd7f83 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2105.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2106.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2106.svg new file mode 100644 index 0000000..6d2b09f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2106.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2107.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2107.svg new file mode 100644 index 0000000..ee9602b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2107.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2108.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2108.svg new file mode 100644 index 0000000..1bc2bd6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2108.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2109.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2109.svg new file mode 100644 index 0000000..0fc99a2 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2109.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2111.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2111.svg new file mode 100644 index 0000000..73e82ae --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2111.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2120.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2120.svg new file mode 100644 index 0000000..d3b8b5d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2120.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2121.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2121.svg new file mode 100644 index 0000000..d282d3d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2121.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2122.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2122.svg new file mode 100644 index 0000000..80c4740 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2122.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2123.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2123.svg new file mode 100644 index 0000000..39b692e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2123.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2124.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2124.svg new file mode 100644 index 0000000..edba0a2 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2124.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2125.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2125.svg new file mode 100644 index 0000000..8eece54 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2125.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2126.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2126.svg new file mode 100644 index 0000000..abbf223 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2126.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2127.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2127.svg new file mode 100644 index 0000000..298108f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2127.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2128.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2128.svg new file mode 100644 index 0000000..843a5eb --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2128.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2129.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2129.svg new file mode 100644 index 0000000..addaf56 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2129.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2130.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2130.svg new file mode 100644 index 0000000..df294f1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2130.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2131.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2131.svg new file mode 100644 index 0000000..265c5f6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2131.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2132.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2132.svg new file mode 100644 index 0000000..f0e5344 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2132.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2133.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2133.svg new file mode 100644 index 0000000..dd1aec0 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2133.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2134.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2134.svg new file mode 100644 index 0000000..24d8846 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2134.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2135.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2135.svg new file mode 100644 index 0000000..9bd2ae5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2135.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2150.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2150.svg new file mode 100644 index 0000000..2f62269 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2150.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2151.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2151.svg new file mode 100644 index 0000000..78a04a9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2151.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2152.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2152.svg new file mode 100644 index 0000000..be19f65 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2152.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2153.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2153.svg new file mode 100644 index 0000000..c2a0f29 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2153.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2154.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2154.svg new file mode 100644 index 0000000..5dd08ee --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2154.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2155.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2155.svg new file mode 100644 index 0000000..ea4bf54 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2155.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2156.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2156.svg new file mode 100644 index 0000000..7e8a21f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2156.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2157.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2157.svg new file mode 100644 index 0000000..d9cba84 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2157.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2158.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2158.svg new file mode 100644 index 0000000..78649a9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2158.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2159.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2159.svg new file mode 100644 index 0000000..cdc4d82 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2159.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2160.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2160.svg new file mode 100644 index 0000000..50af78c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2160.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2161.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2161.svg new file mode 100644 index 0000000..10d94a6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2161.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2162.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2162.svg new file mode 100644 index 0000000..bee6977 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2162.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2163.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2163.svg new file mode 100644 index 0000000..3917621 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2163.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2164.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2164.svg new file mode 100644 index 0000000..37cab87 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2164.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2165.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2165.svg new file mode 100644 index 0000000..c9d3df8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2165.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2166.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2166.svg new file mode 100644 index 0000000..da8ad78 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2166.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2190.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2190.svg new file mode 100644 index 0000000..80584de --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2190.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2191.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2191.svg new file mode 100644 index 0000000..eea7488 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2191.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2192.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2192.svg new file mode 100644 index 0000000..6b43507 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2192.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2193.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2193.svg new file mode 100644 index 0000000..5c4a9d0 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2193.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2200.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2200.svg new file mode 100644 index 0000000..4670433 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2200.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2201.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2201.svg new file mode 100644 index 0000000..6efab12 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2201.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2202.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2202.svg new file mode 100644 index 0000000..e58a023 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2202.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2203.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2203.svg new file mode 100644 index 0000000..ef22be7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2203.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2204.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2204.svg new file mode 100644 index 0000000..633600d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2204.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2205.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2205.svg new file mode 100644 index 0000000..487da31 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2205.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2207.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2207.svg new file mode 100644 index 0000000..e633e5b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2207.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2208.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2208.svg new file mode 100644 index 0000000..03da20d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2208.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2209.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2209.svg new file mode 100644 index 0000000..1b77a50 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2209.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2210.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2210.svg new file mode 100644 index 0000000..23aec9b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2210.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2211.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2211.svg new file mode 100644 index 0000000..2c05724 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2211.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2212.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2212.svg new file mode 100644 index 0000000..0bc1621 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2212.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2213.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2213.svg new file mode 100644 index 0000000..d4ff0e3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2213.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2214.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2214.svg new file mode 100644 index 0000000..ce6daa6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2214.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2215.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2215.svg new file mode 100644 index 0000000..3b00639 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2215.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2216.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2216.svg new file mode 100644 index 0000000..88c40d7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2216.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2217.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2217.svg new file mode 100644 index 0000000..98dc35b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2217.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2218.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2218.svg new file mode 100644 index 0000000..833ab49 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2218.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2300.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2300.svg new file mode 100644 index 0000000..dbf3bec --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2300.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2301.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2301.svg new file mode 100644 index 0000000..1bd72fa --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2301.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2302.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2302.svg new file mode 100644 index 0000000..87df1b4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2302.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2303.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2303.svg new file mode 100644 index 0000000..a0a5dab --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2303.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2304.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2304.svg new file mode 100644 index 0000000..4a3f01e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2304.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2305.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2305.svg new file mode 100644 index 0000000..73a797f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2305.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2306.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2306.svg new file mode 100644 index 0000000..31631aa --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2306.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2307.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2307.svg new file mode 100644 index 0000000..1ec69e7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2307.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2308.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2308.svg new file mode 100644 index 0000000..32d9db1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2308.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2309.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2309.svg new file mode 100644 index 0000000..21640bb --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2309.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2311.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2311.svg new file mode 100644 index 0000000..ae172f5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2311.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2312.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2312.svg new file mode 100644 index 0000000..c5e5320 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2312.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2313.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2313.svg new file mode 100644 index 0000000..ac90056 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2313.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2314.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2314.svg new file mode 100644 index 0000000..10e7fb6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2314.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2315.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2315.svg new file mode 100644 index 0000000..32f99f6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2315.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2316.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2316.svg new file mode 100644 index 0000000..4841bdd --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2316.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2317.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2317.svg new file mode 100644 index 0000000..903299a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2317.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2318.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2318.svg new file mode 100644 index 0000000..eb3667a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2318.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2319.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2319.svg new file mode 100644 index 0000000..c3e387e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2319.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2320.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2320.svg new file mode 100644 index 0000000..685bebf --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2320.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2321.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2321.svg new file mode 100644 index 0000000..91ee16c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2321.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2322.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2322.svg new file mode 100644 index 0000000..bee58cd --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2322.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2323.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2323.svg new file mode 100644 index 0000000..0480365 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2323.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2324.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2324.svg new file mode 100644 index 0000000..7d9db6d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2324.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2325.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2325.svg new file mode 100644 index 0000000..57c8084 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2325.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2326.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2326.svg new file mode 100644 index 0000000..9d99f04 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2326.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2327.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2327.svg new file mode 100644 index 0000000..8e68119 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2327.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2328.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2328.svg new file mode 100644 index 0000000..252677e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2328.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2330.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2330.svg new file mode 100644 index 0000000..474c74d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2330.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2331.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2331.svg new file mode 100644 index 0000000..f00559b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2331.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2332.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2332.svg new file mode 100644 index 0000000..5d95372 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2332.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2333.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2333.svg new file mode 100644 index 0000000..58ed7da --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2333.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2341.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2341.svg new file mode 100644 index 0000000..185eef0 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2341.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2343.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2343.svg new file mode 100644 index 0000000..d44a28a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2343.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2345.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2345.svg new file mode 100644 index 0000000..8d3ada2 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2345.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2346.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2346.svg new file mode 100644 index 0000000..4607eb1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2346.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2348.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2348.svg new file mode 100644 index 0000000..1b6944e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2348.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2349.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2349.svg new file mode 100644 index 0000000..386a3e8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2349.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2350.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2350.svg new file mode 100644 index 0000000..7c05490 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2350.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2351.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2351.svg new file mode 100644 index 0000000..74b5eb8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2351.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2352.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2352.svg new file mode 100644 index 0000000..9924426 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2352.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2353.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2353.svg new file mode 100644 index 0000000..fb480b4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2353.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2354.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2354.svg new file mode 100644 index 0000000..1c92250 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2354.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2355.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2355.svg new file mode 100644 index 0000000..92b8540 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2355.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2356.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2356.svg new file mode 100644 index 0000000..3a2ffb0 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2356.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2357.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2357.svg new file mode 100644 index 0000000..57cb5d7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2357.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2358.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2358.svg new file mode 100644 index 0000000..55c509b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2358.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2359.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2359.svg new file mode 100644 index 0000000..b8ce8d4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2359.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2360.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2360.svg new file mode 100644 index 0000000..91e4e3e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2360.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2361.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2361.svg new file mode 100644 index 0000000..f731066 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2361.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2362.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2362.svg new file mode 100644 index 0000000..e141b7f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2362.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2363.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2363.svg new file mode 100644 index 0000000..f69a147 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2363.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2364.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2364.svg new file mode 100644 index 0000000..dba246d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2364.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2365.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2365.svg new file mode 100644 index 0000000..b22301e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2365.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2366.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2366.svg new file mode 100644 index 0000000..07e3d4a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2366.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2367.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2367.svg new file mode 100644 index 0000000..79bbbff --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2367.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2368.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2368.svg new file mode 100644 index 0000000..09a5345 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2368.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2369.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2369.svg new file mode 100644 index 0000000..fb5e7b5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2369.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2370.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2370.svg new file mode 100644 index 0000000..6a6c308 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2370.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2371.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2371.svg new file mode 100644 index 0000000..b548764 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2371.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2372.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2372.svg new file mode 100644 index 0000000..1f2084f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2372.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2373.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2373.svg new file mode 100644 index 0000000..ca1c0b6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2373.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2374.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2374.svg new file mode 100644 index 0000000..341d923 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2374.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2375.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2375.svg new file mode 100644 index 0000000..16e6d50 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2375.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2376.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2376.svg new file mode 100644 index 0000000..8b27291 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2376.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2377.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2377.svg new file mode 100644 index 0000000..fe09b42 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2377.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2378.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2378.svg new file mode 100644 index 0000000..db5587b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2378.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2379.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2379.svg new file mode 100644 index 0000000..ea7cfbe --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2379.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2380.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2380.svg new file mode 100644 index 0000000..2638ba5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2380.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2381.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2381.svg new file mode 100644 index 0000000..4043048 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2381.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2382.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2382.svg new file mode 100644 index 0000000..768764a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2382.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2383.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2383.svg new file mode 100644 index 0000000..b54aec8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2383.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2384.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2384.svg new file mode 100644 index 0000000..0fe5430 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2384.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2385.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2385.svg new file mode 100644 index 0000000..845881c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2385.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2386.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2386.svg new file mode 100644 index 0000000..21583a6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2386.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2387.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2387.svg new file mode 100644 index 0000000..0e1055a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2387.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2388.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2388.svg new file mode 100644 index 0000000..7424b52 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2388.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2389.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2389.svg new file mode 100644 index 0000000..ecf82d3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2389.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2390.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2390.svg new file mode 100644 index 0000000..85194ed --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2390.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2391.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2391.svg new file mode 100644 index 0000000..75cb711 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2391.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2392.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2392.svg new file mode 100644 index 0000000..b0f2e10 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2392.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2393.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2393.svg new file mode 100644 index 0000000..c5f8160 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2393.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2394.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2394.svg new file mode 100644 index 0000000..70b2078 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2394.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2395.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2395.svg new file mode 100644 index 0000000..4b0e634 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2395.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2396.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2396.svg new file mode 100644 index 0000000..246cfe9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2396.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2397.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2397.svg new file mode 100644 index 0000000..5d11876 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2397.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2398.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2398.svg new file mode 100644 index 0000000..7b9888f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2398.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2399.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2399.svg new file mode 100644 index 0000000..3eb4246 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2399.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2400.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2400.svg new file mode 100644 index 0000000..5d98903 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2400.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2409.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2409.svg new file mode 100644 index 0000000..d4de888 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2409.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2411.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2411.svg new file mode 100644 index 0000000..c73b9be --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2411.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2412.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2412.svg new file mode 100644 index 0000000..40405d9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2412.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2413.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2413.svg new file mode 100644 index 0000000..55f8e73 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2413.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2414.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2414.svg new file mode 100644 index 0000000..dda86d6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2414.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2415.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2415.svg new file mode 100644 index 0000000..ba163d7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2415.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2416.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2416.svg new file mode 100644 index 0000000..7a34c89 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2416.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2417.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2417.svg new file mode 100644 index 0000000..22f8f22 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2417.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2418.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2418.svg new file mode 100644 index 0000000..f0b2ea1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2418.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2419.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2419.svg new file mode 100644 index 0000000..64f7f3e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2419.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2420.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2420.svg new file mode 100644 index 0000000..9928b68 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2420.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2421.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2421.svg new file mode 100644 index 0000000..c36b000 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2421.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2422.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2422.svg new file mode 100644 index 0000000..a688a1f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2422.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2423.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2423.svg new file mode 100644 index 0000000..8fdd950 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2423.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2424.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2424.svg new file mode 100644 index 0000000..d618b99 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2424.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2425.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2425.svg new file mode 100644 index 0000000..b970315 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2425.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2426.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2426.svg new file mode 100644 index 0000000..1ea0713 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/2426.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/300-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/300-fill.svg new file mode 100644 index 0000000..1ee4a8b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/300-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/300.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/300.svg new file mode 100644 index 0000000..4a70d96 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/300.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/301-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/301-fill.svg new file mode 100644 index 0000000..b0b043f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/301-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/301.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/301.svg new file mode 100644 index 0000000..50c116f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/301.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/302-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/302-fill.svg new file mode 100644 index 0000000..2a2f2e5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/302-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/302.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/302.svg new file mode 100644 index 0000000..51c6536 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/302.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/303-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/303-fill.svg new file mode 100644 index 0000000..d92a701 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/303-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/303.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/303.svg new file mode 100644 index 0000000..64b5cf9 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/303.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/304-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/304-fill.svg new file mode 100644 index 0000000..bb4a8b4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/304-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/304.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/304.svg new file mode 100644 index 0000000..167ed4f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/304.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/305-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/305-fill.svg new file mode 100644 index 0000000..788d595 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/305-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/305.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/305.svg new file mode 100644 index 0000000..5190dcd --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/305.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/306-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/306-fill.svg new file mode 100644 index 0000000..9eb78ac --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/306-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/306.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/306.svg new file mode 100644 index 0000000..e2fedd5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/306.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/307-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/307-fill.svg new file mode 100644 index 0000000..a672532 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/307-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/307.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/307.svg new file mode 100644 index 0000000..73e3025 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/307.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/308-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/308-fill.svg new file mode 100644 index 0000000..22aba0f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/308-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/308.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/308.svg new file mode 100644 index 0000000..950f6e4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/308.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/309-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/309-fill.svg new file mode 100644 index 0000000..dd03e77 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/309-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/309.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/309.svg new file mode 100644 index 0000000..5268dd1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/309.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/310-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/310-fill.svg new file mode 100644 index 0000000..6d438c1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/310-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/310.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/310.svg new file mode 100644 index 0000000..b1a16f4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/310.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/311-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/311-fill.svg new file mode 100644 index 0000000..c1f4cd2 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/311-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/311.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/311.svg new file mode 100644 index 0000000..211cf25 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/311.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/312-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/312-fill.svg new file mode 100644 index 0000000..8f12212 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/312-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/312.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/312.svg new file mode 100644 index 0000000..d98270a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/312.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/313-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/313-fill.svg new file mode 100644 index 0000000..b2a5830 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/313-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/313.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/313.svg new file mode 100644 index 0000000..c32f953 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/313.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/314-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/314-fill.svg new file mode 100644 index 0000000..2c2ea76 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/314-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/314.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/314.svg new file mode 100644 index 0000000..a384dee --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/314.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/315-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/315-fill.svg new file mode 100644 index 0000000..e4bc831 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/315-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/315.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/315.svg new file mode 100644 index 0000000..68fba7d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/315.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/316-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/316-fill.svg new file mode 100644 index 0000000..74a63b7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/316-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/316.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/316.svg new file mode 100644 index 0000000..32119ec --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/316.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/317-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/317-fill.svg new file mode 100644 index 0000000..a7db999 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/317-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/317.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/317.svg new file mode 100644 index 0000000..c1b1d9e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/317.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/318-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/318-fill.svg new file mode 100644 index 0000000..1198ceb --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/318-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/318.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/318.svg new file mode 100644 index 0000000..8349d00 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/318.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/350-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/350-fill.svg new file mode 100644 index 0000000..bc33bc1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/350-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/350.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/350.svg new file mode 100644 index 0000000..3639e45 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/350.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/351-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/351-fill.svg new file mode 100644 index 0000000..f497a28 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/351-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/351.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/351.svg new file mode 100644 index 0000000..35811eb --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/351.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/399-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/399-fill.svg new file mode 100644 index 0000000..6165118 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/399-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/399.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/399.svg new file mode 100644 index 0000000..01946d3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/399.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/400-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/400-fill.svg new file mode 100644 index 0000000..8b2855e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/400-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/400.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/400.svg new file mode 100644 index 0000000..7e726e5 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/400.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/401-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/401-fill.svg new file mode 100644 index 0000000..9fccde0 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/401-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/401.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/401.svg new file mode 100644 index 0000000..8fe4027 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/401.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/402-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/402-fill.svg new file mode 100644 index 0000000..c3446d7 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/402-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/402.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/402.svg new file mode 100644 index 0000000..9ae768e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/402.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/403-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/403-fill.svg new file mode 100644 index 0000000..e801c0b --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/403-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/403.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/403.svg new file mode 100644 index 0000000..4707249 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/403.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/404-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/404-fill.svg new file mode 100644 index 0000000..fd74359 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/404-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/404.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/404.svg new file mode 100644 index 0000000..38e6570 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/404.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/405-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/405-fill.svg new file mode 100644 index 0000000..e9a5ef1 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/405-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/405.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/405.svg new file mode 100644 index 0000000..5b9f849 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/405.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/406-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/406-fill.svg new file mode 100644 index 0000000..d995ccb --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/406-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/406.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/406.svg new file mode 100644 index 0000000..4b83f04 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/406.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/407-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/407-fill.svg new file mode 100644 index 0000000..7e839fb --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/407-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/407.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/407.svg new file mode 100644 index 0000000..8a85a5f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/407.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/408-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/408-fill.svg new file mode 100644 index 0000000..ef30073 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/408-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/408.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/408.svg new file mode 100644 index 0000000..e40c728 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/408.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/409-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/409-fill.svg new file mode 100644 index 0000000..7810ae4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/409-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/409.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/409.svg new file mode 100644 index 0000000..f03f720 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/409.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/410-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/410-fill.svg new file mode 100644 index 0000000..408854e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/410-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/410.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/410.svg new file mode 100644 index 0000000..a0d3f10 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/410.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/456-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/456-fill.svg new file mode 100644 index 0000000..edd6df4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/456-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/456.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/456.svg new file mode 100644 index 0000000..c85ae19 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/456.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/457-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/457-fill.svg new file mode 100644 index 0000000..946990e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/457-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/457.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/457.svg new file mode 100644 index 0000000..b5fdf64 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/457.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/499-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/499-fill.svg new file mode 100644 index 0000000..412acfe --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/499-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/499.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/499.svg new file mode 100644 index 0000000..c6c1111 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/499.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/500-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/500-fill.svg new file mode 100644 index 0000000..7f23e70 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/500-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/500.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/500.svg new file mode 100644 index 0000000..0fed18c --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/500.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/501-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/501-fill.svg new file mode 100644 index 0000000..4293cb4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/501-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/501.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/501.svg new file mode 100644 index 0000000..4ff02b6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/501.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/502-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/502-fill.svg new file mode 100644 index 0000000..c77fc0a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/502-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/502.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/502.svg new file mode 100644 index 0000000..f0f0afb --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/502.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/503-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/503-fill.svg new file mode 100644 index 0000000..46775e3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/503-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/503.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/503.svg new file mode 100644 index 0000000..c866876 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/503.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/504-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/504-fill.svg new file mode 100644 index 0000000..51b1f72 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/504-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/504.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/504.svg new file mode 100644 index 0000000..d65b694 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/504.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/507-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/507-fill.svg new file mode 100644 index 0000000..56d21bf --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/507-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/507.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/507.svg new file mode 100644 index 0000000..5c566db --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/507.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/508-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/508-fill.svg new file mode 100644 index 0000000..40e1d12 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/508-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/508.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/508.svg new file mode 100644 index 0000000..9794844 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/508.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/509-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/509-fill.svg new file mode 100644 index 0000000..f23ab92 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/509-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/509.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/509.svg new file mode 100644 index 0000000..15c4552 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/509.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/510-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/510-fill.svg new file mode 100644 index 0000000..98f8fe4 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/510-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/510.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/510.svg new file mode 100644 index 0000000..3eb2d13 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/510.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/511-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/511-fill.svg new file mode 100644 index 0000000..ada9420 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/511-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/511.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/511.svg new file mode 100644 index 0000000..44c91b3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/511.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/512-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/512-fill.svg new file mode 100644 index 0000000..aaa7215 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/512-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/512.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/512.svg new file mode 100644 index 0000000..af48401 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/512.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/513-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/513-fill.svg new file mode 100644 index 0000000..95646d8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/513-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/513.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/513.svg new file mode 100644 index 0000000..30e9382 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/513.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/514-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/514-fill.svg new file mode 100644 index 0000000..47af727 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/514-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/514.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/514.svg new file mode 100644 index 0000000..9167a40 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/514.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/515-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/515-fill.svg new file mode 100644 index 0000000..6ff6c6a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/515-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/515.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/515.svg new file mode 100644 index 0000000..36f0cc3 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/515.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/800.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/800.svg new file mode 100644 index 0000000..7a5f34d --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/800.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/801.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/801.svg new file mode 100644 index 0000000..4f6c991 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/801.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/802.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/802.svg new file mode 100644 index 0000000..2ed2032 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/802.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/803.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/803.svg new file mode 100644 index 0000000..c713455 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/803.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/804.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/804.svg new file mode 100644 index 0000000..ed21f1e --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/804.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/805.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/805.svg new file mode 100644 index 0000000..7601207 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/805.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/806.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/806.svg new file mode 100644 index 0000000..a0b70b6 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/806.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/807.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/807.svg new file mode 100644 index 0000000..38e5727 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/807.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/900-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/900-fill.svg new file mode 100644 index 0000000..193c0b8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/900-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/900.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/900.svg new file mode 100644 index 0000000..4991e01 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/900.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/901-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/901-fill.svg new file mode 100644 index 0000000..be28bd8 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/901-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/901.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/901.svg new file mode 100644 index 0000000..7f1fe14 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/901.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/999-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/999-fill.svg new file mode 100644 index 0000000..91d9d4f --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/999-fill.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/999.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/999.svg new file mode 100644 index 0000000..865cc87 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/999.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/9998.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/9998.svg new file mode 100644 index 0000000..9c4daba --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/9998.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/9999.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/9999.svg new file mode 100644 index 0000000..51a7425 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/9999.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/qweather-fill.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/qweather-fill.svg new file mode 100644 index 0000000..819aa6a --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/qweather-fill.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/qweather.svg b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/qweather.svg new file mode 100644 index 0000000..6a7cd02 --- /dev/null +++ b/express-distribution-sys/src/assets/QWeather-Icons-1.6.0/icons/qweather.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/express-distribution-sys/src/assets/img/logo1.png b/express-distribution-sys/src/assets/img/logo1.png new file mode 100644 index 0000000..ceccef1 Binary files /dev/null and b/express-distribution-sys/src/assets/img/logo1.png differ diff --git a/express-distribution-sys/src/assets/img/logo2.png b/express-distribution-sys/src/assets/img/logo2.png new file mode 100644 index 0000000..8527451 Binary files /dev/null and b/express-distribution-sys/src/assets/img/logo2.png differ diff --git a/express-distribution-sys/src/assets/img/logo3.png b/express-distribution-sys/src/assets/img/logo3.png new file mode 100644 index 0000000..71480f5 Binary files /dev/null and b/express-distribution-sys/src/assets/img/logo3.png differ diff --git a/express-distribution-sys/src/assets/main.scss b/express-distribution-sys/src/assets/main.scss new file mode 100644 index 0000000..da98258 --- /dev/null +++ b/express-distribution-sys/src/assets/main.scss @@ -0,0 +1,20 @@ +body { + margin: 0; + background-color: #f5f5f5; +} + +/* fade-slide */ +.fade-slide-leave-active, +.fade-slide-enter-active { + transition: all 0.3s; +} + +.fade-slide-enter-from { + transform: translateX(-30px); + opacity: 0; +} + +.fade-slide-leave-to { + transform: translateX(30px); + opacity: 0; +} diff --git a/express-distribution-sys/src/components/Admin/HomePage.vue b/express-distribution-sys/src/components/Admin/HomePage.vue new file mode 100644 index 0000000..f031045 --- /dev/null +++ b/express-distribution-sys/src/components/Admin/HomePage.vue @@ -0,0 +1,117 @@ + + + + + diff --git a/express-distribution-sys/src/components/Admin/HomePageComponents/InfoList.vue b/express-distribution-sys/src/components/Admin/HomePageComponents/InfoList.vue new file mode 100644 index 0000000..b5948e8 --- /dev/null +++ b/express-distribution-sys/src/components/Admin/HomePageComponents/InfoList.vue @@ -0,0 +1,144 @@ + + + + + diff --git a/express-distribution-sys/src/components/Admin/HomePageComponents/WeatherPage.vue b/express-distribution-sys/src/components/Admin/HomePageComponents/WeatherPage.vue new file mode 100644 index 0000000..15fba4d --- /dev/null +++ b/express-distribution-sys/src/components/Admin/HomePageComponents/WeatherPage.vue @@ -0,0 +1,247 @@ + + + + + diff --git a/express-distribution-sys/src/components/Admin/UserController.vue b/express-distribution-sys/src/components/Admin/UserController.vue new file mode 100644 index 0000000..6a2c2f7 --- /dev/null +++ b/express-distribution-sys/src/components/Admin/UserController.vue @@ -0,0 +1,269 @@ + + + + + diff --git a/express-distribution-sys/src/components/Admin/employeeController.vue b/express-distribution-sys/src/components/Admin/employeeController.vue new file mode 100644 index 0000000..f18bc01 --- /dev/null +++ b/express-distribution-sys/src/components/Admin/employeeController.vue @@ -0,0 +1,269 @@ + + + + + diff --git a/express-distribution-sys/src/main.js b/express-distribution-sys/src/main.js new file mode 100644 index 0000000..e5d9792 --- /dev/null +++ b/express-distribution-sys/src/main.js @@ -0,0 +1,28 @@ +import { createApp } from 'vue' +import { createPinia } from 'pinia' +import { createPersistedState } from 'pinia-persistedstate-plugin' + +import App from './App.vue' +import router from './router/index.js' +import ElementPlus from 'element-plus' +import * as ElementPlusIconsVue from '@element-plus/icons-vue' +import zhCN from 'element-plus/dist/locale/zh-cn.mjs' + +import 'element-plus/dist/index.css' +import '@/assets/main.scss' + +const app = createApp(App) +const pinia = createPinia() +const persist = createPersistedState() + +for (const [key, component] of Object.entries(ElementPlusIconsVue)) { + app.component(key, component) +} + +pinia.use(persist) +app.use(pinia) +app.use(router) +app.use(ElementPlus, { + locale: zhCN, +}) +app.mount('#app') diff --git a/express-distribution-sys/src/router/index.js b/express-distribution-sys/src/router/index.js new file mode 100644 index 0000000..28a7167 --- /dev/null +++ b/express-distribution-sys/src/router/index.js @@ -0,0 +1,36 @@ +import { createRouter, createWebHistory } from 'vue-router' +import Login from '@/views/Login.vue' +import Common from '@/views/Common.vue' +import Admin from '@/views/Admin.vue' +import HomePage from '@/components/Admin/HomePage.vue' +import UserController from '@/components/Admin/UserController.vue' +import employeeController from '@/components/Admin/employeeController.vue' + +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes: [ + { + path: '/', + component: Common, + }, + { + path: '/admin', + component: Admin, + redirect: '/home', + children: [ + { path: '/home', component: HomePage }, + { + path: '/userAccount', + component: UserController, + }, + { path: '/employeeController', component: employeeController }, + ], + }, + { + path: '/login', + component: Login, + }, + ], +}) + +export default router diff --git a/express-distribution-sys/src/stores/info.js b/express-distribution-sys/src/stores/info.js new file mode 100644 index 0000000..e784092 --- /dev/null +++ b/express-distribution-sys/src/stores/info.js @@ -0,0 +1,26 @@ +import { defineStore } from 'pinia' +import { ref } from 'vue' + +export const useInfoStore = defineStore( + 'info', + () => { + const info = ref('') + //定义函数修改info的值 + const setInfo = newInfo => { + info.value = newInfo + } + //移除token + const removeInfo = () => { + info.value = '' + } + return { + info, + setInfo, + removeInfo, + } + }, + { + //持久化 + persist: true, + }, +) diff --git a/express-distribution-sys/src/stores/token.js b/express-distribution-sys/src/stores/token.js new file mode 100644 index 0000000..428cacc --- /dev/null +++ b/express-distribution-sys/src/stores/token.js @@ -0,0 +1,26 @@ +import { defineStore } from 'pinia' +import { ref } from 'vue' + +export const useTokenStore = defineStore( + 'token', + () => { + const token = ref('') + //定义函数修改token的值 + const setToken = newToken => { + token.value = newToken + } + //移除token + const removeToken = () => { + token.value = '' + } + return { + token, + setToken, + removeToken, + } + }, + { + //持久化 + persist: true, + }, +) diff --git a/express-distribution-sys/src/utils/message.js b/express-distribution-sys/src/utils/message.js new file mode 100644 index 0000000..21c6f1e --- /dev/null +++ b/express-distribution-sys/src/utils/message.js @@ -0,0 +1,5 @@ +// 处理消息 +export const MessageUtil = object => { + const valuesArray = Object.values(object) + return valuesArray +} diff --git a/express-distribution-sys/src/utils/request.js b/express-distribution-sys/src/utils/request.js new file mode 100644 index 0000000..17a90cf --- /dev/null +++ b/express-distribution-sys/src/utils/request.js @@ -0,0 +1,70 @@ +import router from '@/router/index.js' +import axios from 'axios' +import { ElMessage } from 'element-plus' +import { useTokenStore } from '@/stores/token.js' +import { MessageUtil } from './message.js' + +//定义一个变量,记录公共的前缀 +const baseURL = '/api' +const instance = axios.create({ baseURL }) + +//添加请求拦截器 +instance.interceptors.request.use( + config => { + //请求前回调 + const tokenStore = useTokenStore() + if (tokenStore.token) { + config.headers.Authorization = tokenStore.token + } + return config + }, + err => { + //请求错误 + Promise.reject(err) + }, +) + +//添加响应拦截器 +instance.interceptors.response.use( + result => { + //判断业务状态码 + if (result.data.code >= 200 && result.data.code < 500) { + return result.data + } + //操作失败 + let arrayList = MessageUtil(result.data.message) + arrayList.forEach(value => { + ElMessage({ + message: value ? value : '服务异常, 请检查网络', + grouping: true, + type: 'error', + }) + }) + // } + //异步状态变成失败 + return Promise.reject(result.data) + }, + err => { + if (err.response.status === 401) { + ElMessage({ + message: '请先登录', + grouping: true, + type: 'error', + }) + router.push('/login') + } else { + let valuesArray = MessageUtil(err.response.data) + valuesArray.forEach(value => { + ElMessage({ + message: value ? value : '服务异常', + grouping: true, + type: 'error', + }) + }) + } + //异步的状态转化成失败的状态 + return Promise.reject(err) + }, +) + +export default instance diff --git a/express-distribution-sys/src/views/Admin.vue b/express-distribution-sys/src/views/Admin.vue new file mode 100644 index 0000000..4f695ee --- /dev/null +++ b/express-distribution-sys/src/views/Admin.vue @@ -0,0 +1,212 @@ + + + + + diff --git a/express-distribution-sys/src/views/Common.vue b/express-distribution-sys/src/views/Common.vue new file mode 100644 index 0000000..e980e98 --- /dev/null +++ b/express-distribution-sys/src/views/Common.vue @@ -0,0 +1,9 @@ + + + + + diff --git a/express-distribution-sys/src/views/Login.vue b/express-distribution-sys/src/views/Login.vue new file mode 100644 index 0000000..9f3436e --- /dev/null +++ b/express-distribution-sys/src/views/Login.vue @@ -0,0 +1,569 @@ + + + + + diff --git a/express-distribution-sys/vite.config.js b/express-distribution-sys/vite.config.js new file mode 100644 index 0000000..72b9e6e --- /dev/null +++ b/express-distribution-sys/vite.config.js @@ -0,0 +1,28 @@ +import { fileURLToPath, URL } from 'node:url' + +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' +import vueJsx from '@vitejs/plugin-vue-jsx' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [vue(), vueJsx()], + resolve: { + alias: { + '@': fileURLToPath(new URL('./src', import.meta.url)), + }, + }, + server: { + proxy: { + //获取路径当中包含了/api的请求 + '/api': { + //后台服务所在的源 + target: 'http://localhost:5678', + //修改源 + changeOrigin: true, + rewrite: path => path.replace(/^\/api/, ''), + }, + }, + port: 8765, + }, +})